diff options
Diffstat (limited to 'lld/test/ELF/lto/comdat2.ll')
-rw-r--r-- | lld/test/ELF/lto/comdat2.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/test/ELF/lto/comdat2.ll b/lld/test/ELF/lto/comdat2.ll index 283182155ae..e7c6ea10b5e 100644 --- a/lld/test/ELF/lto/comdat2.ll +++ b/lld/test/ELF/lto/comdat2.ll @@ -1,9 +1,9 @@ ; REQUIRES: x86 ; RUN: llvm-as %s -o %t.o ; RUN: llvm-mc -triple=x86_64-pc-linux %p/Inputs/comdat.s -o %t2.o -filetype=obj -; RUN: ld.lld -m elf_x86_64 %t.o %t2.o -o %t.so -shared +; RUN: ld.lld %t.o %t2.o -o %t.so -shared ; RUN: llvm-readobj -t %t.so | FileCheck %s -; RUN: ld.lld -m elf_x86_64 %t2.o %t.o -o %t2.so -shared +; RUN: ld.lld %t2.o %t.o -o %t2.so -shared ; RUN: llvm-readobj -t %t2.so | FileCheck %s --check-prefix=OTHER |