diff options
author | Sean Silva <chisophugis@gmail.com> | 2016-03-09 22:30:09 +0000 |
---|---|---|
committer | Sean Silva <chisophugis@gmail.com> | 2016-03-09 22:30:09 +0000 |
commit | 1c82b7f64d44d5db2166ed0480554a7f5306c38b (patch) | |
tree | 1620e6fe4050b183a2cbc26fe9a7560f9a3ebf9e | |
parent | 4aaeac6ad3e3bf8c33274b6daf67c1c0d917c5d1 (diff) | |
download | bcm5719-llvm-1c82b7f64d44d5db2166ed0480554a7f5306c38b.tar.gz bcm5719-llvm-1c82b7f64d44d5db2166ed0480554a7f5306c38b.zip |
Use %t as the output file name to avoid repetition. NFC.
llvm-svn: 263071
-rw-r--r-- | lld/test/ELF/lto/save-temps.ll | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lld/test/ELF/lto/save-temps.ll b/lld/test/ELF/lto/save-temps.ll index 2764095ff31..aa876d24b4c 100644 --- a/lld/test/ELF/lto/save-temps.ll +++ b/lld/test/ELF/lto/save-temps.ll @@ -1,11 +1,11 @@ ; REQUIRES: x86 -; RUN: rm -f %t.so %t.so.lto.bc %t.so.lto.o +; RUN: rm -f %t %t.lto.bc %t.lto.o ; RUN: llvm-as %s -o %t.o ; RUN: llvm-as %p/Inputs/save-temps.ll -o %t2.o -; RUN: ld.lld -shared -m elf_x86_64 %t.o %t2.o -o %t.so -save-temps -; RUN: llvm-nm %t.so | FileCheck %s -; RUN: llvm-nm %t.so.lto.bc | FileCheck %s -; RUN: llvm-nm %t.so.lto.o | FileCheck %s +; RUN: ld.lld -shared -m elf_x86_64 %t.o %t2.o -o %t -save-temps +; RUN: llvm-nm %t | FileCheck %s +; RUN: llvm-nm %t.lto.bc | FileCheck %s +; RUN: llvm-nm %t.lto.o | FileCheck %s target triple = "x86_64-unknown-linux-gnu" target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" |