[MIParser] Set RegClassOrRegBank during instruction parsing
[llvm-complete.git] / test / MC / MachO / temp-labels.s
blob8be5919bf02b4be23b7efaeb1f88c9a492885f98
1 // RUN: llvm-mc -triple x86_64-apple-darwin10 %s -filetype=obj -save-temp-labels -o - | llvm-readobj --symbols | FileCheck %s
3 _f0:
4 .long 0
5 L0:
6 .long 0
8 // CHECK: Symbols [
9 // CHECK: Symbol {
10 // CHECK: Name: _f0 (1)
11 // CHECK: Type: Section (0xE)
12 // CHECK: Section: __text (0x1)
13 // CHECK: RefType: UndefinedNonLazy (0x0)
14 // CHECK: Flags [ (0x0)
15 // CHECK: ]
16 // CHECK: Value: 0x0
17 // CHECK: }
18 // CHECK: Symbol {
19 // CHECK: Name: L0 (5)
20 // CHECK: Type: Section (0xE)
21 // CHECK: Section: __text (0x1)
22 // CHECK: RefType: UndefinedNonLazy (0x0)
23 // CHECK: Flags [ (0x0)
24 // CHECK: ]
25 // CHECK: Value: 0x4
26 // CHECK: }
27 // CHECK: ]