Relocate with .bss instead of using the symbol. Matches gas behavior.
[oota-llvm.git] / test / MC / ELF / relocation-386.s
1 // RUN: llvm-mc -filetype=obj -triple i386-pc-linux-gnu %s -o - | elf-dump | FileCheck  %s
2
3 // Test that we produce the correct relocation types and that the relocation
4 // to .Lfoo uses the symbol and not the section.
5
6 // Section 3 is bss
7 // CHECK:      # Section 3
8 // CHECK-NEXT: (('sh_name', 13) # '.bss'
9
10 // CHECK:      # Symbol 1
11 // CHECK-NEXT: (('st_name', 5) # '.Lfoo'
12
13 // Symbol 6 is section 3
14 // CHECK:      # Symbol 6
15 // CHECK-NEXT: (('st_name', 0) # ''
16 // CHECK-NEXT:  ('st_value', 0)
17 // CHECK-NEXT:  ('st_size', 0)
18 // CHECK-NEXT:  ('st_bind', 0)
19 // CHECK-NEXT:  ('st_type', 3)
20 // CHECK-NEXT:  ('st_other', 0)
21 // CHECK-NEXT:  ('st_shndx', 3)
22
23 // CHECK:      # Relocation 0
24 // CHECK-NEXT: (('r_offset', 2)
25 // CHECK-NEXT:  ('r_sym', 1)
26 // CHECK-NEXT:  ('r_type', 9)
27 // CHECK-NEXT: ),
28 // CHECK-NEXT:  # Relocation 1
29 // CHECK-NEXT: (('r_offset',
30 // CHECK-NEXT:  ('r_sym',
31 // CHECK-NEXT:  ('r_type', 4)
32 // CHECK-NEXT: ),
33 // CHECK-NEXT:  # Relocation 2
34 // CHECK-NEXT: (('r_offset',
35 // CHECK-NEXT:  ('r_sym',
36 // CHECK-NEXT:  ('r_type', 10)
37 // CHECK-NEXT: ),
38
39 // Relocation 3 (bar3@GOTOFF) is done symbol 6 (bss)
40 // CHECK-NEXT:  # Relocation 3
41 // CHECK-NEXT: (('r_offset',
42 // CHECK-NEXT:  ('r_sym', 6
43 // CHECK-NEXT:  ('r_type',
44 // CHECK-NEXT: ),
45
46         .text
47 bar:
48         leal    .Lfoo@GOTOFF(%ebx), %eax
49
50         .global bar2
51 bar2:
52         calll   bar2@PLT
53         addl    $_GLOBAL_OFFSET_TABLE_, %ebx
54         movb    bar3@GOTOFF(%ebx), %al
55
56         .type   bar3,@object
57         .local  bar3
58         .comm   bar3,1,1
59
60         .section        .rodata.str1.16,"aMS",@progbits,1
61 .Lfoo:
62         .asciz   "bool llvm::llvm_start_multithreaded()"