diff options
author | Gabor Greif <ggreif@gmail.com> | 2008-05-20 22:07:21 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2008-05-20 22:07:21 +0000 |
commit | afb4e8c89c98ebf333a425cbd410a7c7c90748c3 (patch) | |
tree | 6723f351a395699f151b28406a31db847f14c3b2 /test/Linker | |
parent | 337c1ca1c56ac11c8f8c2f158206e49cd003f129 (diff) | |
download | external_llvm-afb4e8c89c98ebf333a425cbd410a7c7c90748c3.zip external_llvm-afb4e8c89c98ebf333a425cbd410a7c7c90748c3.tar.gz external_llvm-afb4e8c89c98ebf333a425cbd410a7c7c90748c3.tar.bz2 |
Eliminate questionable syntax for stdin redirection. This probably also speeds things up a bit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51357 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Linker')
-rw-r--r-- | test/Linker/2003-01-30-LinkerRename.ll | 2 | ||||
-rw-r--r-- | test/Linker/2003-04-21-Linkage.ll | 2 | ||||
-rw-r--r-- | test/Linker/2003-04-23-LinkOnceLost.ll | 2 | ||||
-rw-r--r-- | test/Linker/2003-04-26-NullPtrLinkProblem.ll | 2 | ||||
-rw-r--r-- | test/Linker/2004-05-07-TypeResolution1.ll | 2 | ||||
-rw-r--r-- | test/Linker/2006-01-19-ConstantPacked.ll | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/test/Linker/2003-01-30-LinkerRename.ll b/test/Linker/2003-01-30-LinkerRename.ll index c5f3bde..6881246 100644 --- a/test/Linker/2003-01-30-LinkerRename.ll +++ b/test/Linker/2003-01-30-LinkerRename.ll @@ -2,7 +2,7 @@ ; one... ; RUN: echo {define internal i32 @foo() \{ ret i32 7 \} } | llvm-as > %t.1.bc -; RUN: llvm-as < %s -o %t.2.bc -f +; RUN: llvm-as %s -o %t.2.bc -f ; RUN: llvm-link %t.1.bc %t.2.bc | llvm-dis | grep @foo() | grep -v internal define i32 @foo() { ret i32 0 } diff --git a/test/Linker/2003-04-21-Linkage.ll b/test/Linker/2003-04-21-Linkage.ll index 7e00943..31aace8 100644 --- a/test/Linker/2003-04-21-Linkage.ll +++ b/test/Linker/2003-04-21-Linkage.ll @@ -1,6 +1,6 @@ ; RUN: echo {@X = linkonce global i32 5 \ ; RUN: define linkonce i32 @foo() \{ ret i32 7 \} } | llvm-as > %t.1.bc -; RUN: llvm-as < %s -o %t.2.bc -f +; RUN: llvm-as %s -o %t.2.bc -f ; RUN: llvm-link %t.1.bc %t.2.bc @X = external global i32 diff --git a/test/Linker/2003-04-23-LinkOnceLost.ll b/test/Linker/2003-04-23-LinkOnceLost.ll index cf63fb3..d0858d9 100644 --- a/test/Linker/2003-04-23-LinkOnceLost.ll +++ b/test/Linker/2003-04-23-LinkOnceLost.ll @@ -3,7 +3,7 @@ ; RUN: echo { define linkonce void @foo() \{ ret void \} } | \ ; RUN: llvm-as -o %t.2.bc -f -; RUN: llvm-as < %s -o %t.1.bc -f +; RUN: llvm-as %s -o %t.1.bc -f ; RUN: llvm-link %t.1.bc %t.2.bc | llvm-dis | grep foo | grep linkonce declare void @foo() diff --git a/test/Linker/2003-04-26-NullPtrLinkProblem.ll b/test/Linker/2003-04-26-NullPtrLinkProblem.ll index c384ead..df12fb3 100644 --- a/test/Linker/2003-04-26-NullPtrLinkProblem.ll +++ b/test/Linker/2003-04-26-NullPtrLinkProblem.ll @@ -2,7 +2,7 @@ ; the same type to be created! ; RUN: echo {%T = type i32} | llvm-as > %t.2.bc -; RUN: llvm-as < %s -f > %t.1.bc +; RUN: llvm-as %s -f -o %t.1.bc ; RUN: llvm-link %t.1.bc %t.2.bc %T = type opaque diff --git a/test/Linker/2004-05-07-TypeResolution1.ll b/test/Linker/2004-05-07-TypeResolution1.ll index 970a6d2..3665154 100644 --- a/test/Linker/2004-05-07-TypeResolution1.ll +++ b/test/Linker/2004-05-07-TypeResolution1.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t1.bc +; RUN: llvm-as %s -f -o %t1.bc ; RUN: llvm-as < %p/2004-05-07-TypeResolution2.ll -o %t2.bc -f ; RUN: llvm-link -f -o %t3.bc %t1.bc %t2.bc diff --git a/test/Linker/2006-01-19-ConstantPacked.ll b/test/Linker/2006-01-19-ConstantPacked.ll index 1cb4749..d7d864b 100644 --- a/test/Linker/2006-01-19-ConstantPacked.ll +++ b/test/Linker/2006-01-19-ConstantPacked.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t1.bc +; RUN: llvm-as %s -f -o %t1.bc ; RUN: llvm-link -f -o %t2.bc %t1.bc target datalayout = "E-p:32:32" |