X86: produce more friendly errors during MachO relocation handling
[oota-llvm.git] / test / MC / Mips / micromips-label-test-sections.s
1 # RUN: llvm-mc %s -triple=mipsel-unknown-linux -mcpu=mips32r2 \
2 # RUN:   -mattr=+micromips -filetype=obj -o - | llvm-readobj -t | FileCheck %s
3   .text
4   .set micromips
5 f:
6   nop
7 g:
8   .section .text
9 h:
10   nop
11
12 # CHECK: Symbols [
13 # CHECK:   Symbol {
14 # CHECK:     Name: f
15 # CHECK:     Binding: Local
16 # CHECK:     Type: None
17 # CHECK:     Other: 128
18 # CHECK:     Section: .text
19 # CHECK:   }
20 # CHECK:   Symbol {
21 # CHECK:     Name: g
22 # CHECK:     Binding: Local
23 # CHECK:     Type: None
24 # CHECK:     Other: 0
25 # CHECK:     Section: .text
26 # CHECK:   }
27 # CHECK:   Symbol {
28 # CHECK:     Name: h
29 # CHECK:     Binding: Local
30 # CHECK:     Type: None
31 # CHECK:     Other: 128
32 # CHECK:     Section: .text
33 # CHECK:   }
34 # CHECK: ]
35