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 | d01c562e48f88d864199494b34bf0839945d127d (patch) | |
tree | c0c38c8c91875cc347ea5778223fbe943d0bb82c /llvm/test | |
parent | b76ad168dcd46552240d85d6ebe4314da9b05e39 (diff) | |
download | bcm5719-llvm-d01c562e48f88d864199494b34bf0839945d127d.tar.gz bcm5719-llvm-d01c562e48f88d864199494b34bf0839945d127d.zip |
Eliminate questionable syntax for stdin redirection. This probably also speeds things up a bit.
llvm-svn: 51357
Diffstat (limited to 'llvm/test')
93 files changed, 94 insertions, 94 deletions
diff --git a/llvm/test/Assembler/2002-01-24-BadSymbolTableAssert.ll b/llvm/test/Assembler/2002-01-24-BadSymbolTableAssert.ll index 0a10d9db18e..b2a48f55689 100644 --- a/llvm/test/Assembler/2002-01-24-BadSymbolTableAssert.ll +++ b/llvm/test/Assembler/2002-01-24-BadSymbolTableAssert.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f ; This testcase failed due to a bad assertion in SymbolTable.cpp, removed in ; the 1.20 revision. Basically the symbol table assumed that if there was an diff --git a/llvm/test/Assembler/2002-01-24-ValueRefineAbsType.ll b/llvm/test/Assembler/2002-01-24-ValueRefineAbsType.ll index 2561b05dd2b..fb7c4fbf587 100644 --- a/llvm/test/Assembler/2002-01-24-ValueRefineAbsType.ll +++ b/llvm/test/Assembler/2002-01-24-ValueRefineAbsType.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f ; This testcase used to fail due to a lack of this diff in Value.cpp: ; diff -r1.16 Value.cpp diff --git a/llvm/test/Assembler/2002-02-19-TypeParsing.ll b/llvm/test/Assembler/2002-02-19-TypeParsing.ll index b5ddb5f5fb7..b7cadbdb056 100644 --- a/llvm/test/Assembler/2002-02-19-TypeParsing.ll +++ b/llvm/test/Assembler/2002-02-19-TypeParsing.ll @@ -1,3 +1,3 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f %Hosp = type { i32, i32, i32, { \2*, { i32, i32, i32, { [4 x \3], \2, \5, %Hosp, i32, i32 }* }*, \2* }, { \2*, { i32, i32, i32, { [4 x \3], \2, \5, %Hosp, i32, i32 }* }*, \2* }, { \2*, { i32, i32, i32, { [4 x \3], \2, \5, %Hosp, i32, i32 }* }*, \2* }, { \2*, { i32, i32, i32, { [4 x \3], \2, \5, %Hosp, i32, i32 }* }*, \2* } } diff --git a/llvm/test/Assembler/2002-03-08-NameCollision.ll b/llvm/test/Assembler/2002-03-08-NameCollision.ll index e74332cbb27..539dfd67198 100644 --- a/llvm/test/Assembler/2002-03-08-NameCollision.ll +++ b/llvm/test/Assembler/2002-03-08-NameCollision.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f ; Method arguments were being checked for collisions at the global scope before ; the method object was created by the parser. Because of this, false diff --git a/llvm/test/Assembler/2002-03-08-NameCollision2.ll b/llvm/test/Assembler/2002-03-08-NameCollision2.ll index f545376761e..57dc517d3bb 100644 --- a/llvm/test/Assembler/2002-03-08-NameCollision2.ll +++ b/llvm/test/Assembler/2002-03-08-NameCollision2.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f ; Another name collision problem. Here the problem was that if a forward ; declaration for a method was found, that this would cause spurious conflicts diff --git a/llvm/test/Assembler/2002-04-04-PureVirtMethCall.ll b/llvm/test/Assembler/2002-04-04-PureVirtMethCall.ll index 6831854c0f8..4c63e44e9d2 100644 --- a/llvm/test/Assembler/2002-04-04-PureVirtMethCall.ll +++ b/llvm/test/Assembler/2002-04-04-PureVirtMethCall.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f type { { \2 *, \4 ** }, { \2 *, \4 ** } diff --git a/llvm/test/Assembler/2002-04-04-PureVirtMethCall2.ll b/llvm/test/Assembler/2002-04-04-PureVirtMethCall2.ll index 9dd86ee7433..553401f5636 100644 --- a/llvm/test/Assembler/2002-04-04-PureVirtMethCall2.ll +++ b/llvm/test/Assembler/2002-04-04-PureVirtMethCall2.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f %t = type { { \2*, \2 }, { \2*, \2 } diff --git a/llvm/test/Assembler/2002-04-05-TypeParsing.ll b/llvm/test/Assembler/2002-04-05-TypeParsing.ll index 60e704fbed2..82db75f1ce9 100644 --- a/llvm/test/Assembler/2002-04-05-TypeParsing.ll +++ b/llvm/test/Assembler/2002-04-05-TypeParsing.ll @@ -1,3 +1,3 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f %Hosp = type { { \2*, { \2, %Hosp }* }, { \2*, { \2, %Hosp }* } } diff --git a/llvm/test/Assembler/2002-05-02-InvalidForwardRef.ll b/llvm/test/Assembler/2002-05-02-InvalidForwardRef.ll index 8203365c1c4..00a0a015377 100644 --- a/llvm/test/Assembler/2002-05-02-InvalidForwardRef.ll +++ b/llvm/test/Assembler/2002-05-02-InvalidForwardRef.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f ; It looks like the assembler is not forward resolving the function declaraion ; correctly. diff --git a/llvm/test/Assembler/2002-07-08-HugePerformanceProblem.ll b/llvm/test/Assembler/2002-07-08-HugePerformanceProblem.ll index d961ce6fbad..b9ebfbe2ad6 100644 --- a/llvm/test/Assembler/2002-07-08-HugePerformanceProblem.ll +++ b/llvm/test/Assembler/2002-07-08-HugePerformanceProblem.ll @@ -1,6 +1,6 @@ ; This file takes about 48 __MINUTES__ to assemble using as. This is WAY too ; long. The type resolution code needs to be sped up a lot. -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f %ALL_INTERSECTIONS_METHOD = type i32 (%OBJECT*, %RAY*, %ISTACK*)* %BBOX = type { %BBOX_VECT, %BBOX_VECT } %BBOX_TREE = type { i16, i16, %BBOX, %BBOX_TREE** } diff --git a/llvm/test/Assembler/2002-07-25-ParserAssertionFailure.ll b/llvm/test/Assembler/2002-07-25-ParserAssertionFailure.ll index 57ca2ffeb5f..e1fa9346be5 100644 --- a/llvm/test/Assembler/2002-07-25-ParserAssertionFailure.ll +++ b/llvm/test/Assembler/2002-07-25-ParserAssertionFailure.ll @@ -1,6 +1,6 @@ ; Make sure we don't get an assertion failure, even though this is a parse ; error -; RUN: not llvm-as < %s -o /dev/null -f |& grep {No arguments} +; RUN: not llvm-as %s -o /dev/null -f |& grep {No arguments} %ty = type void (i32) diff --git a/llvm/test/Assembler/2002-08-15-CastAmbiguity.ll b/llvm/test/Assembler/2002-08-15-CastAmbiguity.ll index 267a0d33ee4..c10f91103fd 100644 --- a/llvm/test/Assembler/2002-08-15-CastAmbiguity.ll +++ b/llvm/test/Assembler/2002-08-15-CastAmbiguity.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f define void @test(i32 %X) { call void @test( i32 6 ) diff --git a/llvm/test/Assembler/2002-08-15-ConstantExprProblem.ll b/llvm/test/Assembler/2002-08-15-ConstantExprProblem.ll index c6f434aff22..d02c26a80cd 100644 --- a/llvm/test/Assembler/2002-08-15-ConstantExprProblem.ll +++ b/llvm/test/Assembler/2002-08-15-ConstantExprProblem.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f @.LC0 = internal global [12 x i8] c"hello world\00" ; <[12 x i8]*> [#uses=1] diff --git a/llvm/test/Assembler/2002-08-15-UnresolvedGlobalReference.ll b/llvm/test/Assembler/2002-08-15-UnresolvedGlobalReference.ll index 38802f0cf26..5252be266a1 100644 --- a/llvm/test/Assembler/2002-08-15-UnresolvedGlobalReference.ll +++ b/llvm/test/Assembler/2002-08-15-UnresolvedGlobalReference.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f @.LC0 = internal global [12 x i8] c"hello world\00" ; <[12 x i8]*> [#uses=1] diff --git a/llvm/test/Assembler/2002-08-22-DominanceProblem.ll b/llvm/test/Assembler/2002-08-22-DominanceProblem.ll index 81c6129d85e..a841dfa8385 100644 --- a/llvm/test/Assembler/2002-08-22-DominanceProblem.ll +++ b/llvm/test/Assembler/2002-08-22-DominanceProblem.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f ; Dominance relationships is not calculated correctly for unreachable blocks, ; which causes the verifier to barf on this input. diff --git a/llvm/test/Assembler/2002-10-08-LargeArrayPerformance.ll b/llvm/test/Assembler/2002-10-08-LargeArrayPerformance.ll index b067ea538dd..2c4cba412b1 100644 --- a/llvm/test/Assembler/2002-10-08-LargeArrayPerformance.ll +++ b/llvm/test/Assembler/2002-10-08-LargeArrayPerformance.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f ; This testcase comes from the following really simple c file: ;; int foo[30000] ;;; We should not be soo slow for such a simple case! diff --git a/llvm/test/Assembler/2002-10-15-NameClash.ll b/llvm/test/Assembler/2002-10-15-NameClash.ll index 278c98a7ef2..8ba5ed2507c 100644 --- a/llvm/test/Assembler/2002-10-15-NameClash.ll +++ b/llvm/test/Assembler/2002-10-15-NameClash.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f declare i32 @"ArrayRef"([100 x i32] * %Array) diff --git a/llvm/test/Assembler/2002-12-15-GlobalResolve.ll b/llvm/test/Assembler/2002-12-15-GlobalResolve.ll index 222721921d7..da049c4f432 100644 --- a/llvm/test/Assembler/2002-12-15-GlobalResolve.ll +++ b/llvm/test/Assembler/2002-12-15-GlobalResolve.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f @X = external global i32* @X1 = external global %T* diff --git a/llvm/test/Assembler/2003-01-30-UnsignedString.ll b/llvm/test/Assembler/2003-01-30-UnsignedString.ll index 6d221a8cda6..5eaa9c2c838 100644 --- a/llvm/test/Assembler/2003-01-30-UnsignedString.ll +++ b/llvm/test/Assembler/2003-01-30-UnsignedString.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f @spell_order = global [4 x i8] c"\FF\00\F7\00" diff --git a/llvm/test/Assembler/2003-04-25-UnresolvedGlobalReference.ll b/llvm/test/Assembler/2003-04-25-UnresolvedGlobalReference.ll index 663acbbb227..608eb6ae343 100644 --- a/llvm/test/Assembler/2003-04-25-UnresolvedGlobalReference.ll +++ b/llvm/test/Assembler/2003-04-25-UnresolvedGlobalReference.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f ; There should be absolutely no problem with this testcase. define i32 @test(i32 %arg1, i32 %arg2) { diff --git a/llvm/test/Assembler/2003-05-15-AssemblerProblem.ll b/llvm/test/Assembler/2003-05-15-AssemblerProblem.ll index 10cde2877ce..17967a93650 100644 --- a/llvm/test/Assembler/2003-05-15-AssemblerProblem.ll +++ b/llvm/test/Assembler/2003-05-15-AssemblerProblem.ll @@ -1,6 +1,6 @@ ; This bug was caused by two CPR's existing for the same global variable, ; colliding in the Module level CPR map. -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f define void @test() { call void (...)* bitcast (void (i16*, i32)* @AddString to void (...)*)( i16* null, i32 0 ) diff --git a/llvm/test/Assembler/2003-05-15-SwitchBug.ll b/llvm/test/Assembler/2003-05-15-SwitchBug.ll index 78c5f9af1be..af42020ca16 100644 --- a/llvm/test/Assembler/2003-05-15-SwitchBug.ll +++ b/llvm/test/Assembler/2003-05-15-SwitchBug.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f ; Check minimal switch statement diff --git a/llvm/test/Assembler/2003-05-21-ConstantShiftExpr.ll b/llvm/test/Assembler/2003-05-21-ConstantShiftExpr.ll index 904c755dca3..667bc9b9332 100644 --- a/llvm/test/Assembler/2003-05-21-ConstantShiftExpr.ll +++ b/llvm/test/Assembler/2003-05-21-ConstantShiftExpr.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f ; Test that shift instructions can be used in constant expressions. global i32 3670016 diff --git a/llvm/test/Assembler/2003-05-21-EmptyStructTest.ll b/llvm/test/Assembler/2003-05-21-EmptyStructTest.ll index 333ab39f29a..6925d269325 100644 --- a/llvm/test/Assembler/2003-05-21-EmptyStructTest.ll +++ b/llvm/test/Assembler/2003-05-21-EmptyStructTest.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f ; The old C front-end never generated empty structures, now the new one ; can. For some reason we never handled them in the parser. Weird. diff --git a/llvm/test/Assembler/2003-06-30-RecursiveTypeProblem.ll b/llvm/test/Assembler/2003-06-30-RecursiveTypeProblem.ll index 1a5d8b50e38..33f63a62171 100644 --- a/llvm/test/Assembler/2003-06-30-RecursiveTypeProblem.ll +++ b/llvm/test/Assembler/2003-06-30-RecursiveTypeProblem.ll @@ -1,3 +1,3 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f %MidFnTy = type void (%MidFnTy*) diff --git a/llvm/test/Assembler/2003-10-04-NotMergingGlobalConstants.ll b/llvm/test/Assembler/2003-10-04-NotMergingGlobalConstants.ll index 9acea591bf6..10a0280e906 100644 --- a/llvm/test/Assembler/2003-10-04-NotMergingGlobalConstants.ll +++ b/llvm/test/Assembler/2003-10-04-NotMergingGlobalConstants.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f %T = type i32 @X = global i32* null ; <i32**> [#uses=0] diff --git a/llvm/test/Assembler/2003-12-30-TypeMapInvalidMemory.ll b/llvm/test/Assembler/2003-12-30-TypeMapInvalidMemory.ll index a0f99c63d8f..db39490d5a4 100644 --- a/llvm/test/Assembler/2003-12-30-TypeMapInvalidMemory.ll +++ b/llvm/test/Assembler/2003-12-30-TypeMapInvalidMemory.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as < %s -o /dev/null -f |& grep {Undefined type remains} +; RUN: not llvm-as %s -o /dev/null -f |& grep {Undefined type remains} ; END. @d_reduction_0_dparser_gram = global { diff --git a/llvm/test/Assembler/2004-02-27-SelfUseAssertError.ll b/llvm/test/Assembler/2004-02-27-SelfUseAssertError.ll index 73a9f5422b9..ff4c0b43e48 100644 --- a/llvm/test/Assembler/2004-02-27-SelfUseAssertError.ll +++ b/llvm/test/Assembler/2004-02-27-SelfUseAssertError.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f ; %inc2 uses it's own value, but that's ok, as it's unreachable! diff --git a/llvm/test/Assembler/2004-04-04-GetElementPtrIndexTypes.ll b/llvm/test/Assembler/2004-04-04-GetElementPtrIndexTypes.ll index 73ce7e68ce4..c9363dbcdca 100644 --- a/llvm/test/Assembler/2004-04-04-GetElementPtrIndexTypes.ll +++ b/llvm/test/Assembler/2004-04-04-GetElementPtrIndexTypes.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f define i32* @t1({ float, i32 }* %X) { %W = getelementptr { float, i32 }* %X, i32 20, i32 1 ; <i32*> [#uses=0] diff --git a/llvm/test/Assembler/2004-09-29-VerifierIsReallySlow.ll b/llvm/test/Assembler/2004-09-29-VerifierIsReallySlow.ll index 3d1db5419da..44af9973c18 100644 --- a/llvm/test/Assembler/2004-09-29-VerifierIsReallySlow.ll +++ b/llvm/test/Assembler/2004-09-29-VerifierIsReallySlow.ll @@ -1,6 +1,6 @@ ; Check to see that the verifier does not take an outrageous amount of time on ; this testcase. -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f %"complex long double" = type { double, double } %"struct.std::dcomplex" = type { %"complex long double" } diff --git a/llvm/test/Assembler/2004-10-22-BCWriterUndefBug.ll b/llvm/test/Assembler/2004-10-22-BCWriterUndefBug.ll index 3c2654456c8..4b2ebeee934 100644 --- a/llvm/test/Assembler/2004-10-22-BCWriterUndefBug.ll +++ b/llvm/test/Assembler/2004-10-22-BCWriterUndefBug.ll @@ -1,5 +1,5 @@ ;; The bytecode writer was trying to treat undef values as ConstantArray's when ;; they looked like strings. -;; RUN: llvm-as < %s -o /dev/null -f +;; RUN: llvm-as %s -o /dev/null -f @G = internal global [8 x i8] undef diff --git a/llvm/test/Assembler/2004-11-28-InvalidTypeCrash.ll b/llvm/test/Assembler/2004-11-28-InvalidTypeCrash.ll index 4ae4765169e..5f800774fa3 100644 --- a/llvm/test/Assembler/2004-11-28-InvalidTypeCrash.ll +++ b/llvm/test/Assembler/2004-11-28-InvalidTypeCrash.ll @@ -1,5 +1,5 @@ ; Test for PR463. This program is erroneous, but should not crash llvm-as. -; RUN: not llvm-as < %s -o /dev/null -f |& \ +; RUN: not llvm-as %s -o /dev/null -f |& \ ; RUN: grep {Cannot create a null initialized value of this type} @.FOO = internal global %struct.none zeroinitializer diff --git a/llvm/test/Assembler/2005-01-31-CallingAggregateFunction.ll b/llvm/test/Assembler/2005-01-31-CallingAggregateFunction.ll index 9bd6e31e39d..14045138f81 100644 --- a/llvm/test/Assembler/2005-01-31-CallingAggregateFunction.ll +++ b/llvm/test/Assembler/2005-01-31-CallingAggregateFunction.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f define void @test() { call {i32} @foo() diff --git a/llvm/test/Assembler/2007-01-02-Undefined-Arg-Type.ll b/llvm/test/Assembler/2007-01-02-Undefined-Arg-Type.ll index 9304a389f18..9521b43897c 100644 --- a/llvm/test/Assembler/2007-01-02-Undefined-Arg-Type.ll +++ b/llvm/test/Assembler/2007-01-02-Undefined-Arg-Type.ll @@ -1,5 +1,5 @@ ; The assembler should catch an undefined argument type . -; RUN: not llvm-as < %s -o /dev/null -f |& grep {Reference to abstract argument} +; RUN: not llvm-as %s -o /dev/null -f |& grep {Reference to abstract argument} ; %typedef.bc_struct = type opaque diff --git a/llvm/test/Assembler/2007-01-05-Cmp-ConstExpr.ll b/llvm/test/Assembler/2007-01-05-Cmp-ConstExpr.ll index c9efe177fe7..8c25989d21a 100644 --- a/llvm/test/Assembler/2007-01-05-Cmp-ConstExpr.ll +++ b/llvm/test/Assembler/2007-01-05-Cmp-ConstExpr.ll @@ -1,5 +1,5 @@ ; Test Case for PR1080 -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f @str = internal constant [4 x i8] c"-ga\00" ; <[4 x i8]*> [#uses=2] diff --git a/llvm/test/Assembler/2007-01-16-CrashOnBadCast.ll b/llvm/test/Assembler/2007-01-16-CrashOnBadCast.ll index e2bb59e88ba..33666b8cb2c 100644 --- a/llvm/test/Assembler/2007-01-16-CrashOnBadCast.ll +++ b/llvm/test/Assembler/2007-01-16-CrashOnBadCast.ll @@ -1,5 +1,5 @@ ; PR1117 -; RUN: not llvm-as < %s -o /dev/null -f |& grep {invalid cast opcode for cast from} +; RUN: not llvm-as %s -o /dev/null -f |& grep {invalid cast opcode for cast from} define i8* @nada(i64 %X) { %result = trunc i64 %X to i8* diff --git a/llvm/test/Assembler/2007-01-16-CrashOnBadCast2.ll b/llvm/test/Assembler/2007-01-16-CrashOnBadCast2.ll index ff6b5352a99..49c539f5024 100644 --- a/llvm/test/Assembler/2007-01-16-CrashOnBadCast2.ll +++ b/llvm/test/Assembler/2007-01-16-CrashOnBadCast2.ll @@ -1,4 +1,4 @@ ; PR1117 -; RUN: not llvm-as < %s -o /dev/null -f |& grep {invalid cast opcode for cast from} +; RUN: not llvm-as %s -o /dev/null -f |& grep {invalid cast opcode for cast from} @X = constant i8* trunc (i64 0 to i8*) diff --git a/llvm/test/Assembler/2007-04-15-BadIntrinsic.ll b/llvm/test/Assembler/2007-04-15-BadIntrinsic.ll index 25c35409693..c3aac4ee314 100644 --- a/llvm/test/Assembler/2007-04-15-BadIntrinsic.ll +++ b/llvm/test/Assembler/2007-04-15-BadIntrinsic.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as < %s -o /dev/null -f |& grep {Call to invalid LLVM intrinsic} +; RUN: not llvm-as %s -o /dev/null -f |& grep {Call to invalid LLVM intrinsic} declare i32 @llvm.foobar(i32 %foo) diff --git a/llvm/test/Assembler/select.ll b/llvm/test/Assembler/select.ll index f204c950506..b018fbe9c41 100644 --- a/llvm/test/Assembler/select.ll +++ b/llvm/test/Assembler/select.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f define i32 @test(i1 %C, i32 %V1, i32 %V2) { diff --git a/llvm/test/Bitcode/memcpy.ll b/llvm/test/Bitcode/memcpy.ll index 13daeeb181c..fb509b8e8ee 100644 --- a/llvm/test/Bitcode/memcpy.ll +++ b/llvm/test/Bitcode/memcpy.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f define void @test(i32* %P, i32* %Q) { entry: diff --git a/llvm/test/CodeGen/Generic/2002-04-14-UnexpectedUnsignedType.ll b/llvm/test/CodeGen/Generic/2002-04-14-UnexpectedUnsignedType.ll index 879c4c8baa1..f6d95cbd53f 100644 --- a/llvm/test/CodeGen/Generic/2002-04-14-UnexpectedUnsignedType.ll +++ b/llvm/test/CodeGen/Generic/2002-04-14-UnexpectedUnsignedType.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o - | llc +; RUN: llvm-as %s -o - | llc ; This caused the backend to assert out with: ; SparcInstrInfo.cpp:103: failed assertion `0 && "Unexpected unsigned type"' diff --git a/llvm/test/CodeGen/Generic/spillccr.ll b/llvm/test/CodeGen/Generic/spillccr.ll index 120668aa774..85451333174 100644 --- a/llvm/test/CodeGen/Generic/spillccr.ll +++ b/llvm/test/CodeGen/Generic/spillccr.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o - | llc +; RUN: llvm-as %s -o - | llc ; July 6, 2002 -- LLC Regression test ; This test case checks if the integer CC register %xcc (or %ccr) diff --git a/llvm/test/ExecutionEngine/2002-12-16-ArgTest.ll b/llvm/test/ExecutionEngine/2002-12-16-ArgTest.ll index 6a8d100e676..a51e3a110c3 100644 --- a/llvm/test/ExecutionEngine/2002-12-16-ArgTest.ll +++ b/llvm/test/ExecutionEngine/2002-12-16-ArgTest.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null @.LC0 = internal global [10 x i8] c"argc: %d\0A\00" ; <[10 x i8]*> [#uses=1] diff --git a/llvm/test/ExecutionEngine/2003-01-04-ArgumentBug.ll b/llvm/test/ExecutionEngine/2003-01-04-ArgumentBug.ll index 6a8f07bad5b..89106b5b2aa 100644 --- a/llvm/test/ExecutionEngine/2003-01-04-ArgumentBug.ll +++ b/llvm/test/ExecutionEngine/2003-01-04-ArgumentBug.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null define i32 @foo(i32 %X, i32 %Y, double %A) { diff --git a/llvm/test/ExecutionEngine/2003-01-04-LoopTest.ll b/llvm/test/ExecutionEngine/2003-01-04-LoopTest.ll index fce0b00a044..07cb1d3c926 100644 --- a/llvm/test/ExecutionEngine/2003-01-04-LoopTest.ll +++ b/llvm/test/ExecutionEngine/2003-01-04-LoopTest.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o %t.bc -f +; RUN: llvm-as %s -o %t.bc -f ; RUN: lli %t.bc > /dev/null define i32 @main() { diff --git a/llvm/test/ExecutionEngine/2003-01-04-PhiTest.ll b/llvm/test/ExecutionEngine/2003-01-04-PhiTest.ll index cadb19e7775..649ed0b2427 100644 --- a/llvm/test/ExecutionEngine/2003-01-04-PhiTest.ll +++ b/llvm/test/ExecutionEngine/2003-01-04-PhiTest.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null define i32 @main() { diff --git a/llvm/test/ExecutionEngine/2003-01-09-SARTest.ll b/llvm/test/ExecutionEngine/2003-01-09-SARTest.ll index eeb43267924..a9df7f2036b 100644 --- a/llvm/test/ExecutionEngine/2003-01-09-SARTest.ll +++ b/llvm/test/ExecutionEngine/2003-01-09-SARTest.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null ; We were accidentally inverting the signedness of right shifts. Whoops. diff --git a/llvm/test/ExecutionEngine/2003-01-10-FUCOM.ll b/llvm/test/ExecutionEngine/2003-01-10-FUCOM.ll index c45674c1bc9..628be16e319 100644 --- a/llvm/test/ExecutionEngine/2003-01-10-FUCOM.ll +++ b/llvm/test/ExecutionEngine/2003-01-10-FUCOM.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null define i32 @main() { diff --git a/llvm/test/ExecutionEngine/2003-01-15-AlignmentTest.ll b/llvm/test/ExecutionEngine/2003-01-15-AlignmentTest.ll index 02872f6958b..7529eb4770a 100644 --- a/llvm/test/ExecutionEngine/2003-01-15-AlignmentTest.ll +++ b/llvm/test/ExecutionEngine/2003-01-15-AlignmentTest.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null define i32 @bar(i8* %X) { diff --git a/llvm/test/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll b/llvm/test/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll index 850654f2346..7b48f579af0 100644 --- a/llvm/test/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll +++ b/llvm/test/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null target datalayout = "e-p:32:32" diff --git a/llvm/test/ExecutionEngine/2003-06-04-bzip2-bug.ll b/llvm/test/ExecutionEngine/2003-06-04-bzip2-bug.ll index ff758cf14c6..6dee717f4b6 100644 --- a/llvm/test/ExecutionEngine/2003-06-04-bzip2-bug.ll +++ b/llvm/test/ExecutionEngine/2003-06-04-bzip2-bug.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null ; Testcase distilled from 256.bzip2. diff --git a/llvm/test/ExecutionEngine/2003-06-05-PHIBug.ll b/llvm/test/ExecutionEngine/2003-06-05-PHIBug.ll index 3a55f72c97d..2cd9c1b2110 100644 --- a/llvm/test/ExecutionEngine/2003-06-05-PHIBug.ll +++ b/llvm/test/ExecutionEngine/2003-06-05-PHIBug.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null ; Testcase distilled from 256.bzip2. diff --git a/llvm/test/ExecutionEngine/2003-08-15-AllocaAssertion.ll b/llvm/test/ExecutionEngine/2003-08-15-AllocaAssertion.ll index ce5e1ed3ad8..8a96377aefd 100644 --- a/llvm/test/ExecutionEngine/2003-08-15-AllocaAssertion.ll +++ b/llvm/test/ExecutionEngine/2003-08-15-AllocaAssertion.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null ; This testcase failed to work because two variable sized allocas confused the diff --git a/llvm/test/ExecutionEngine/2003-08-21-EnvironmentTest.ll b/llvm/test/ExecutionEngine/2003-08-21-EnvironmentTest.ll index ec36a85d7d3..23efbeed0fc 100644 --- a/llvm/test/ExecutionEngine/2003-08-21-EnvironmentTest.ll +++ b/llvm/test/ExecutionEngine/2003-08-21-EnvironmentTest.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null ; diff --git a/llvm/test/ExecutionEngine/2003-08-23-RegisterAllocatePhysReg.ll b/llvm/test/ExecutionEngine/2003-08-23-RegisterAllocatePhysReg.ll index 42e8dc3b131..25a24f5e5c4 100644 --- a/llvm/test/ExecutionEngine/2003-08-23-RegisterAllocatePhysReg.ll +++ b/llvm/test/ExecutionEngine/2003-08-23-RegisterAllocatePhysReg.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null ; This testcase exposes a bug in the local register allocator where it runs out diff --git a/llvm/test/ExecutionEngine/2003-10-18-PHINode-ConstantExpr-CondCode-Failure.ll b/llvm/test/ExecutionEngine/2003-10-18-PHINode-ConstantExpr-CondCode-Failure.ll index 32d99d50516..e289e10c0e4 100644 --- a/llvm/test/ExecutionEngine/2003-10-18-PHINode-ConstantExpr-CondCode-Failure.ll +++ b/llvm/test/ExecutionEngine/2003-10-18-PHINode-ConstantExpr-CondCode-Failure.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null @A = global i32 0 ; <i32*> [#uses=1] diff --git a/llvm/test/ExecutionEngine/2004-12-04-LazyCompileFuncs.ll b/llvm/test/ExecutionEngine/2004-12-04-LazyCompileFuncs.ll index 0e2cbcb0e22..1320ba53b29 100644 --- a/llvm/test/ExecutionEngine/2004-12-04-LazyCompileFuncs.ll +++ b/llvm/test/ExecutionEngine/2004-12-04-LazyCompileFuncs.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli -debug-only=jit %t.bc |& not grep {Finished CodeGen of .*Function: F} @.str_1 = internal constant [7 x i8] c"IN F!\0A\00" ; <[7 x i8]*> [#uses=1] @.str_2 = internal constant [7 x i8] c"IN G!\0A\00" ; <[7 x i8]*> [#uses=1] diff --git a/llvm/test/ExecutionEngine/2007-12-10-APIntLoadStore.ll b/llvm/test/ExecutionEngine/2007-12-10-APIntLoadStore.ll index 7a337f90cb6..f347f5d3572 100644 --- a/llvm/test/ExecutionEngine/2007-12-10-APIntLoadStore.ll +++ b/llvm/test/ExecutionEngine/2007-12-10-APIntLoadStore.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o - | lli -force-interpreter +; RUN: llvm-as %s -o - | lli -force-interpreter ; PR1836 define i32 @main() { diff --git a/llvm/test/ExecutionEngine/2007-12-14-BigEndian.ll b/llvm/test/ExecutionEngine/2007-12-14-BigEndian.ll index 68059fd59a2..6286cea5d13 100644 --- a/llvm/test/ExecutionEngine/2007-12-14-BigEndian.ll +++ b/llvm/test/ExecutionEngine/2007-12-14-BigEndian.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o - | lli -force-interpreter +; RUN: llvm-as %s -o - | lli -force-interpreter target datalayout = "E" diff --git a/llvm/test/ExecutionEngine/2007-12-14-LittleEndian.ll b/llvm/test/ExecutionEngine/2007-12-14-LittleEndian.ll index afaed5148b1..8637ad92b69 100644 --- a/llvm/test/ExecutionEngine/2007-12-14-LittleEndian.ll +++ b/llvm/test/ExecutionEngine/2007-12-14-LittleEndian.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o - | lli -force-interpreter +; RUN: llvm-as %s -o - | lli -force-interpreter target datalayout = "e" diff --git a/llvm/test/ExecutionEngine/hello.ll b/llvm/test/ExecutionEngine/hello.ll index a0c5e1a48de..3cd29f62a40 100644 --- a/llvm/test/ExecutionEngine/hello.ll +++ b/llvm/test/ExecutionEngine/hello.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null @.LC0 = internal global [12 x i8] c"Hello World\00" ; <[12 x i8]*> [#uses=1] diff --git a/llvm/test/ExecutionEngine/hello2.ll b/llvm/test/ExecutionEngine/hello2.ll index 772dc0493e5..a6a6194ca4d 100644 --- a/llvm/test/ExecutionEngine/hello2.ll +++ b/llvm/test/ExecutionEngine/hello2.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null @X = global i32 7 ; <i32*> [#uses=0] diff --git a/llvm/test/ExecutionEngine/simplesttest.ll b/llvm/test/ExecutionEngine/simplesttest.ll index 82e8a2dc869..fa69533fa9a 100644 --- a/llvm/test/ExecutionEngine/simplesttest.ll +++ b/llvm/test/ExecutionEngine/simplesttest.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null define i32 @main() { diff --git a/llvm/test/ExecutionEngine/simpletest.ll b/llvm/test/ExecutionEngine/simpletest.ll index cca3499db34..0ed5b44c1b3 100644 --- a/llvm/test/ExecutionEngine/simpletest.ll +++ b/llvm/test/ExecutionEngine/simpletest.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null define i32 @bar() { diff --git a/llvm/test/ExecutionEngine/test-branch.ll b/llvm/test/ExecutionEngine/test-branch.ll index 55b7ef1d80c..d7251f8e6b8 100644 --- a/llvm/test/ExecutionEngine/test-branch.ll +++ b/llvm/test/ExecutionEngine/test-branch.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null ; test unconditional branch diff --git a/llvm/test/ExecutionEngine/test-call.ll b/llvm/test/ExecutionEngine/test-call.ll index 645396fe758..a1b3cd66a3b 100644 --- a/llvm/test/ExecutionEngine/test-call.ll +++ b/llvm/test/ExecutionEngine/test-call.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null declare void @exit(i32) diff --git a/llvm/test/ExecutionEngine/test-cast.ll b/llvm/test/ExecutionEngine/test-cast.ll index bc48716937a..1458f6cc66c 100644 --- a/llvm/test/ExecutionEngine/test-cast.ll +++ b/llvm/test/ExecutionEngine/test-cast.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null define i32 @foo() { diff --git a/llvm/test/ExecutionEngine/test-constantexpr.ll b/llvm/test/ExecutionEngine/test-constantexpr.ll index 2bf1949ead8..3623cf4bd26 100644 --- a/llvm/test/ExecutionEngine/test-constantexpr.ll +++ b/llvm/test/ExecutionEngine/test-constantexpr.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null ; This tests to make sure that we can evaluate weird constant expressions diff --git a/llvm/test/ExecutionEngine/test-fp.ll b/llvm/test/ExecutionEngine/test-fp.ll index aa136ddf2d1..a119b40c34a 100644 --- a/llvm/test/ExecutionEngine/test-fp.ll +++ b/llvm/test/ExecutionEngine/test-fp.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null define double @test(double* %DP, double %Arg) { diff --git a/llvm/test/ExecutionEngine/test-loadstore.ll b/llvm/test/ExecutionEngine/test-loadstore.ll index ca2ecbfb0a1..298ea96fd72 100644 --- a/llvm/test/ExecutionEngine/test-loadstore.ll +++ b/llvm/test/ExecutionEngine/test-loadstore.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null define void @test(i8* %P, i16* %P.upgrd.1, i32* %P.upgrd.2, i64* %P.upgrd.3) { diff --git a/llvm/test/ExecutionEngine/test-logical.ll b/llvm/test/ExecutionEngine/test-logical.ll index 800de1fc8ca..f30c3343173 100644 --- a/llvm/test/ExecutionEngine/test-logical.ll +++ b/llvm/test/ExecutionEngine/test-logical.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null define i32 @main() { diff --git a/llvm/test/ExecutionEngine/test-loop.ll b/llvm/test/ExecutionEngine/test-loop.ll index d428adcddbd..78fc3144aab 100644 --- a/llvm/test/ExecutionEngine/test-loop.ll +++ b/llvm/test/ExecutionEngine/test-loop.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null define i32 @main() { diff --git a/llvm/test/ExecutionEngine/test-malloc.ll b/llvm/test/ExecutionEngine/test-malloc.ll index 843a38989f2..bc857ed5edc 100644 --- a/llvm/test/ExecutionEngine/test-malloc.ll +++ b/llvm/test/ExecutionEngine/test-malloc.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null define i32 @main() { diff --git a/llvm/test/ExecutionEngine/test-phi.ll b/llvm/test/ExecutionEngine/test-phi.ll index 9ca1eb40bce..69d1b0866f8 100644 --- a/llvm/test/ExecutionEngine/test-phi.ll +++ b/llvm/test/ExecutionEngine/test-phi.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null ; test phi node diff --git a/llvm/test/ExecutionEngine/test-ret.ll b/llvm/test/ExecutionEngine/test-ret.ll index 2d7994583e6..e684fd5e3aa 100644 --- a/llvm/test/ExecutionEngine/test-ret.ll +++ b/llvm/test/ExecutionEngine/test-ret.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null ; test return instructions diff --git a/llvm/test/ExecutionEngine/test-setcond-fp.ll b/llvm/test/ExecutionEngine/test-setcond-fp.ll index 2f53e901870..235c4027b99 100644 --- a/llvm/test/ExecutionEngine/test-setcond-fp.ll +++ b/llvm/test/ExecutionEngine/test-setcond-fp.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null diff --git a/llvm/test/ExecutionEngine/test-setcond-int.ll b/llvm/test/ExecutionEngine/test-setcond-int.ll index 5ec4ec936d7..f80c2477a8a 100644 --- a/llvm/test/ExecutionEngine/test-setcond-int.ll +++ b/llvm/test/ExecutionEngine/test-setcond-int.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null define i32 @main() { diff --git a/llvm/test/ExecutionEngine/test-shift.ll b/llvm/test/ExecutionEngine/test-shift.ll index ebb85d3e8ae..330de0bfbc9 100644 --- a/llvm/test/ExecutionEngine/test-shift.ll +++ b/llvm/test/ExecutionEngine/test-shift.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -f -o %t.bc +; RUN: llvm-as %s -f -o %t.bc ; RUN: lli %t.bc > /dev/null define i32 @main() { diff --git a/llvm/test/Feature/globalredefinition3.ll b/llvm/test/Feature/globalredefinition3.ll index d40d3e9056c..bbac2e985aa 100644 --- a/llvm/test/Feature/globalredefinition3.ll +++ b/llvm/test/Feature/globalredefinition3.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as < %s -o /dev/null -f |& grep \ +; RUN: not llvm-as %s -o /dev/null -f |& grep \ ; RUN: "Redefinition of global variable named 'B'" ; END. diff --git a/llvm/test/Linker/2003-01-30-LinkerRename.ll b/llvm/test/Linker/2003-01-30-LinkerRename.ll index c5f3bde4d63..68812467e78 100644 --- a/llvm/test/Linker/2003-01-30-LinkerRename.ll +++ b/llvm/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/llvm/test/Linker/2003-04-21-Linkage.ll b/llvm/test/Linker/2003-04-21-Linkage.ll index 7e00943c28b..31aace8e44c 100644 --- a/llvm/test/Linker/2003-04-21-Linkage.ll +++ b/llvm/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/llvm/test/Linker/2003-04-23-LinkOnceLost.ll b/llvm/test/Linker/2003-04-23-LinkOnceLost.ll index cf63fb35ced..d0858d95ab1 100644 --- a/llvm/test/Linker/2003-04-23-LinkOnceLost.ll +++ b/llvm/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/llvm/test/Linker/2003-04-26-NullPtrLinkProblem.ll b/llvm/test/Linker/2003-04-26-NullPtrLinkProblem.ll index c384eadd57f..df12fb3a7a5 100644 --- a/llvm/test/Linker/2003-04-26-NullPtrLinkProblem.ll +++ b/llvm/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/llvm/test/Linker/2004-05-07-TypeResolution1.ll b/llvm/test/Linker/2004-05-07-TypeResolution1.ll index 970a6d2f0f2..36651541e4d 100644 --- a/llvm/test/Linker/2004-05-07-TypeResolution1.ll +++ b/llvm/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/llvm/test/Linker/2006-01-19-ConstantPacked.ll b/llvm/test/Linker/2006-01-19-ConstantPacked.ll index 1cb47497d01..d7d864b41b1 100644 --- a/llvm/test/Linker/2006-01-19-ConstantPacked.ll +++ b/llvm/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" diff --git a/llvm/test/Transforms/Inline/2007-12-19-InlineNoUnwind.ll b/llvm/test/Transforms/Inline/2007-12-19-InlineNoUnwind.ll index 6264f8f01c3..5f7da15fc1b 100644 --- a/llvm/test/Transforms/Inline/2007-12-19-InlineNoUnwind.ll +++ b/llvm/test/Transforms/Inline/2007-12-19-InlineNoUnwind.ll @@ -1,5 +1,5 @@ -; RUN: llvm-as < %s -o - | opt -inline | llvm-dis | grep nounwind -; RUN: llvm-as < %s -o - | opt -inline | llvm-dis | grep unreachable +; RUN: llvm-as %s -o - | opt -inline | llvm-dis | grep nounwind +; RUN: llvm-as %s -o - | opt -inline | llvm-dis | grep unreachable declare i1 @extern() diff --git a/llvm/test/Transforms/InstCombine/2004-11-27-SetCCForCastLargerAndConstant.ll b/llvm/test/Transforms/InstCombine/2004-11-27-SetCCForCastLargerAndConstant.ll index afb573b6ef2..53bb4965cb4 100644 --- a/llvm/test/Transforms/InstCombine/2004-11-27-SetCCForCastLargerAndConstant.ll +++ b/llvm/test/Transforms/InstCombine/2004-11-27-SetCCForCastLargerAndConstant.ll @@ -9,7 +9,7 @@ ; be eliminated. In many cases the setCC is also eliminated based on the ; constant value and the range of the casted value. ; -; RUN: llvm-as < %s -o - | opt -instcombine | llvm-dis | \ +; RUN: llvm-as %s -o - | opt -instcombine | llvm-dis | \ ; RUN: notcast .*int ; END. define i1 @lt_signed_to_large_unsigned(i8 %SB) { diff --git a/llvm/test/Transforms/InstCombine/2006-10-19-SignedToUnsignedCastAndConst-2.ll b/llvm/test/Transforms/InstCombine/2006-10-19-SignedToUnsignedCastAndConst-2.ll index eca315f6f8a..4ca3dc1ec1c 100644 --- a/llvm/test/Transforms/InstCombine/2006-10-19-SignedToUnsignedCastAndConst-2.ll +++ b/llvm/test/Transforms/InstCombine/2006-10-19-SignedToUnsignedCastAndConst-2.ll @@ -1,5 +1,5 @@ ; The optimizer should be able to remove cast operation here. -; RUN: llvm-as < %s -o - | opt -instcombine | llvm-dis | \ +; RUN: llvm-as %s -o - | opt -instcombine | llvm-dis | \ ; RUN: not grep sext.*i32 define i1 @eq_signed_to_small_unsigned(i8 %SB) { diff --git a/llvm/test/Verifier/2008-01-11-VarargAttrs.ll b/llvm/test/Verifier/2008-01-11-VarargAttrs.ll index e8e9c41c6df..e44a94b63b1 100644 --- a/llvm/test/Verifier/2008-01-11-VarargAttrs.ll +++ b/llvm/test/Verifier/2008-01-11-VarargAttrs.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as < %s -o /dev/null +; RUN: not llvm-as %s -o /dev/null %struct = type { } diff --git a/llvm/test/Verifier/byval-1.ll b/llvm/test/Verifier/byval-1.ll index 9c2cb98451a..01207e757c2 100644 --- a/llvm/test/Verifier/byval-1.ll +++ b/llvm/test/Verifier/byval-1.ll @@ -1,2 +1,2 @@ -; RUN: not llvm-as < %s -o /dev/null -f +; RUN: not llvm-as %s -o /dev/null -f declare void @h(i32 byval %num) diff --git a/llvm/test/Verifier/byval-2.ll b/llvm/test/Verifier/byval-2.ll index 43cea4ee1ec..d7bfedfcd6a 100644 --- a/llvm/test/Verifier/byval-2.ll +++ b/llvm/test/Verifier/byval-2.ll @@ -1,3 +1,3 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f %s = type opaque declare void @h(%s* byval %num) diff --git a/llvm/test/Verifier/byval-4.ll b/llvm/test/Verifier/byval-4.ll index ff733a5bdc9..d69f66caec3 100644 --- a/llvm/test/Verifier/byval-4.ll +++ b/llvm/test/Verifier/byval-4.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f %struct.foo = type { i64 } declare void @h(%struct.foo* byval %num) diff --git a/llvm/test/Verifier/invoke-2.ll b/llvm/test/Verifier/invoke-2.ll index 27375fa7f5a..9201f4d9fb0 100644 --- a/llvm/test/Verifier/invoke-2.ll +++ b/llvm/test/Verifier/invoke-2.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as < %s -f |& grep {not verify as correct} +; RUN: not llvm-as %s -f |& grep {not verify as correct} ; PR1042 define i32 @foo() { |