diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/MC/ELF/got.s | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/MC/ELF/got.s b/test/MC/ELF/got.s new file mode 100644 index 0000000..c44245d --- /dev/null +++ b/test/MC/ELF/got.s @@ -0,0 +1,14 @@ +// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | elf-dump | FileCheck %s + +// Test that this produces a R_X86_64_GOT32. + + movl foo@GOT, %eax + +// CHECK: ('_relocations', [ +// CHECK-NEXT: # Relocation 0 +// CHECK-NEXT: (('r_offset', +// CHECK-NEXT: ('r_sym', +// CHECK-NEXT: ('r_type', 3) +// CHECK-NEXT: ('r_addend', +// CHECK-NEXT: ), +// CHECK-NEXT: ]) |