relocations.test revision 4edf092787cab37d46da96eb1e9df0677ca30b1d
1RUN: llvm-readobj -r %p/Inputs/trivial.obj.coff-i386 \
2RUN:   | FileCheck %s -check-prefix COFF
3RUN: llvm-readobj -r %p/Inputs/trivial.obj.elf-i386 \
4RUN:   | FileCheck %s -check-prefix ELF
5RUN: llvm-readobj -r %p/Inputs/trivial.obj.macho-i386 \
6RUN:   | FileCheck %s -check-prefix MACHO-I386
7RUN: llvm-readobj -r %p/Inputs/trivial.obj.macho-x86-64 \
8RUN:   | FileCheck %s -check-prefix MACHO-X86-64
9
10COFF:      Relocations [
11COFF-NEXT:   Section (1) .text {
12COFF-NEXT:     0x4 IMAGE_REL_I386_DIR32 .data
13COFF-NEXT:     0x9 IMAGE_REL_I386_REL32 _puts
14COFF-NEXT:     0xE IMAGE_REL_I386_REL32 _SomeOtherFunction
15COFF-NEXT:   }
16COFF-NEXT: ]
17
18ELF:      Relocations [
19ELF-NEXT:   Section (1) .text {
20ELF-NEXT:     0xC R_386_GOTPC _GLOBAL_OFFSET_TABLE_ 0x0
21ELF-NEXT:     0x12 R_386_GOTOFF .L.str 0x0
22ELF-NEXT:     0x1A R_386_PLT32 puts 0x0
23ELF-NEXT:     0x1F R_386_PLT32 SomeOtherFunction 0x0
24ELF-NEXT:   }
25ELF-NEXT: ]
26
27MACHO-I386:      Relocations [
28MACHO-I386-NEXT:   Section __text {
29MACHO-I386-NEXT:     0x18 1 2 1 GENERIC_RELOC_VANILLA 0 _SomeOtherFunction
30MACHO-I386-NEXT:     0x13 1 2 1 GENERIC_RELOC_VANILLA 0 _puts
31MACHO-I386-NEXT:     0xB 0 2 n/a GENERIC_RELOC_LOCAL_SECTDIFF 1 _main
32MACHO-I386-NEXT:     0x0 0 2 n/a GENERIC_RELOC_PAIR 1 _main
33MACHO-I386-NEXT:   }
34MACHO-I386-NEXT: ]
35
36MACHO-X86-64: Relocations [
37MACHO-X86-64-NEXT:  Section __text {
38MACHO-X86-64-NEXT:    0xE 1 2 1 X86_64_RELOC_BRANCH 0 _SomeOtherFunction
39MACHO-X86-64-NEXT:    0x9 1 2 1 X86_64_RELOC_BRANCH 0 _puts
40MACHO-X86-64-NEXT:    0x4 1 2 1 X86_64_RELOC_SIGNED 0 L_.str
41MACHO-X86-64-NEXT:  }
42MACHO-X86-64-NEXT:]
43