diff options
-rw-r--r-- | lld/test/ELF/relocation-common.s | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lld/test/ELF/relocation-common.s b/lld/test/ELF/relocation-common.s index 26d98508dd7..392c495b1f1 100644 --- a/lld/test/ELF/relocation-common.s +++ b/lld/test/ELF/relocation-common.s @@ -1,7 +1,7 @@ -// REQUIRES: x86 -// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t -// RUN: ld.lld %t -o %tout -// RUN: llvm-objdump -t -d %tout | FileCheck %s +# REQUIRES: x86 +# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o +# RUN: ld.lld %t.o -o %t +# RUN: llvm-objdump -t -d %t | FileCheck %s .global _start _start: @@ -10,5 +10,5 @@ _start: .global sym1 .comm sym1,4,4 -// CHECK: 201000: {{.*}} movl $1, 4086(%rip) -// CHECK: 0000000000202000 g .bss O 00000004 sym1 +# CHECK: 201000: {{.*}} movl $1, 4086(%rip) +# CHECK: 0000000000202000 g O .bss 00000004 sym1 |