From f8f140dd559f8385eb2a5fbbdafe83b6e1fef153 Mon Sep 17 00:00:00 2001 From: Fangrui Song Date: Sun, 11 Nov 2018 18:54:58 +0000 Subject: [PATCH] [ELF] Fix relocation-common.s after rL346610 llvm-svn: 346614 --- lld/test/ELF/relocation-common.s | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lld/test/ELF/relocation-common.s b/lld/test/ELF/relocation-common.s index 26d98508dd7f..392c495b1f17 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 -- 2.34.1