diff options
author | Dan Gohman <gohman@apple.com> | 2009-09-11 18:17:12 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-09-11 18:17:12 +0000 |
commit | cabfea2a5887cc6cfe91db4a694f74261a317f3d (patch) | |
tree | 5031483a0f311ad1809cf921b6fb17aa2e0e6d46 /test/Transforms | |
parent | d5b9cbacbc5874038a2b6581f8810960b0bf0a2e (diff) | |
download | external_llvm-cabfea2a5887cc6cfe91db4a694f74261a317f3d.zip external_llvm-cabfea2a5887cc6cfe91db4a694f74261a317f3d.tar.gz external_llvm-cabfea2a5887cc6cfe91db4a694f74261a317f3d.tar.bz2 |
Eliminate more redundant llvm-as calls.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81540 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms')
-rw-r--r-- | test/Transforms/Inline/PR4909.ll | 2 | ||||
-rw-r--r-- | test/Transforms/LoopUnswitch/2007-05-09-tl.ll | 2 | ||||
-rw-r--r-- | test/Transforms/RaiseAllocations/2007-10-17-InvokeFree.ll | 2 | ||||
-rw-r--r-- | test/Transforms/SCCP/2007-05-16-InvokeCrash.ll | 4 | ||||
-rw-r--r-- | test/Transforms/SCCP/2008-03-10-sret.ll | 2 | ||||
-rw-r--r-- | test/Transforms/SCCP/2008-04-22-multiple-ret-sccp.ll | 2 | ||||
-rw-r--r-- | test/Transforms/SCCP/apint-bigint.ll | 2 | ||||
-rw-r--r-- | test/Transforms/SCCP/apint-bigint2.ll | 2 | ||||
-rw-r--r-- | test/Transforms/SCCP/apint-ipsccp3.ll | 2 | ||||
-rw-r--r-- | test/Transforms/SCCP/apint-select.ll | 2 | ||||
-rw-r--r-- | test/Transforms/TailCallElim/dont_reorder_load.ll | 2 | ||||
-rw-r--r-- | test/Transforms/TailCallElim/reorder_load.ll | 2 |
12 files changed, 13 insertions, 13 deletions
diff --git a/test/Transforms/Inline/PR4909.ll b/test/Transforms/Inline/PR4909.ll index 48b2526..24545f9 100644 --- a/test/Transforms/Inline/PR4909.ll +++ b/test/Transforms/Inline/PR4909.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | opt -partial-inliner -disable-output +; RUN: opt < %s -partial-inliner -disable-output define i32 @f() { entry: diff --git a/test/Transforms/LoopUnswitch/2007-05-09-tl.ll b/test/Transforms/LoopUnswitch/2007-05-09-tl.ll index c987dae..61615d0 100644 --- a/test/Transforms/LoopUnswitch/2007-05-09-tl.ll +++ b/test/Transforms/LoopUnswitch/2007-05-09-tl.ll @@ -1,5 +1,5 @@ +; RUN: opt < %s -loop-unswitch -disable-output ; PR1333 -; RUN: llvm-as < %s | opt -loop-unswitch -disable-output define void @pp_cxx_expression() { entry: diff --git a/test/Transforms/RaiseAllocations/2007-10-17-InvokeFree.ll b/test/Transforms/RaiseAllocations/2007-10-17-InvokeFree.ll index 513cf6f..675bb3d 100644 --- a/test/Transforms/RaiseAllocations/2007-10-17-InvokeFree.ll +++ b/test/Transforms/RaiseAllocations/2007-10-17-InvokeFree.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as <%s | opt -raiseallocs -stats -disable-output |& \ +; RUN: opt < %s -raiseallocs -stats -disable-output |& \ ; RUN: not grep {Number of allocations raised} define void @foo() { entry: diff --git a/test/Transforms/SCCP/2007-05-16-InvokeCrash.ll b/test/Transforms/SCCP/2007-05-16-InvokeCrash.ll index c099b88..b84fe6d 100644 --- a/test/Transforms/SCCP/2007-05-16-InvokeCrash.ll +++ b/test/Transforms/SCCP/2007-05-16-InvokeCrash.ll @@ -1,5 +1,5 @@ -; RUN: llvm-as < %s | opt -sccp -disable-output -; PR 1431 +; RUN: opt < %s -sccp -disable-output +; PR1431 define void @_ada_bench() { entry: diff --git a/test/Transforms/SCCP/2008-03-10-sret.ll b/test/Transforms/SCCP/2008-03-10-sret.ll index 6fdebf7..85bcaf4 100644 --- a/test/Transforms/SCCP/2008-03-10-sret.ll +++ b/test/Transforms/SCCP/2008-03-10-sret.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | opt -ipsccp -S > %t +; RUN: opt < %s -ipsccp -S > %t ; RUN: grep {ret i32 36} %t ; RUN: grep {%mrv = insertvalue %T undef, i32 18, 0} %t ; RUN: grep {%mrv1 = insertvalue %T %mrv, i32 17, 1} %t diff --git a/test/Transforms/SCCP/2008-04-22-multiple-ret-sccp.ll b/test/Transforms/SCCP/2008-04-22-multiple-ret-sccp.ll index a3b18a6..1b26ca9 100644 --- a/test/Transforms/SCCP/2008-04-22-multiple-ret-sccp.ll +++ b/test/Transforms/SCCP/2008-04-22-multiple-ret-sccp.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | opt -sccp -S | grep {ret i32 %Z} +; RUN: opt < %s -sccp -S | grep {ret i32 %Z} ; rdar://5778210 declare {i32, i32} @bar(i32 %A) diff --git a/test/Transforms/SCCP/apint-bigint.ll b/test/Transforms/SCCP/apint-bigint.ll index d52d51d..36a96c3 100644 --- a/test/Transforms/SCCP/apint-bigint.ll +++ b/test/Transforms/SCCP/apint-bigint.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | opt -sccp -S | not grep xor +; RUN: opt < %s -sccp -S | not grep xor define i11129 @test1() { %B = shl i11129 1, 11128 diff --git a/test/Transforms/SCCP/apint-bigint2.ll b/test/Transforms/SCCP/apint-bigint2.ll index c7a1065..660eaad 100644 --- a/test/Transforms/SCCP/apint-bigint2.ll +++ b/test/Transforms/SCCP/apint-bigint2.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | opt -sccp -S | not grep load +; RUN: opt < %s -sccp -S | not grep load @Y = constant [6 x i101] [ i101 12, i101 123456789000000, i101 -12, i101 -123456789000000, i101 0,i101 9123456789000000] diff --git a/test/Transforms/SCCP/apint-ipsccp3.ll b/test/Transforms/SCCP/apint-ipsccp3.ll index 366895f..68987ae 100644 --- a/test/Transforms/SCCP/apint-ipsccp3.ll +++ b/test/Transforms/SCCP/apint-ipsccp3.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | opt -ipsccp -S | not grep global +; RUN: opt < %s -ipsccp -S | not grep global @G = internal global i66 undef diff --git a/test/Transforms/SCCP/apint-select.ll b/test/Transforms/SCCP/apint-select.ll index 57f1804..c797519 100644 --- a/test/Transforms/SCCP/apint-select.ll +++ b/test/Transforms/SCCP/apint-select.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | opt -sccp -S | not grep select +; RUN: opt < %s -sccp -S | not grep select @A = constant i32 10 diff --git a/test/Transforms/TailCallElim/dont_reorder_load.ll b/test/Transforms/TailCallElim/dont_reorder_load.ll index ba8a4f0..7b3b232 100644 --- a/test/Transforms/TailCallElim/dont_reorder_load.ll +++ b/test/Transforms/TailCallElim/dont_reorder_load.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as <%s | opt -tailcallelim -S | grep call | count 3 +; RUN: opt < %s -tailcallelim -S | grep call | count 3 ; PR4323 ; Several cases where tail call elimination should not move the load above the diff --git a/test/Transforms/TailCallElim/reorder_load.ll b/test/Transforms/TailCallElim/reorder_load.ll index efa2910..7f8af7e 100644 --- a/test/Transforms/TailCallElim/reorder_load.ll +++ b/test/Transforms/TailCallElim/reorder_load.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as <%s | opt -tailcallelim -S | not grep call +; RUN: opt < %s -tailcallelim -S | not grep call ; PR4323 ; Several cases where tail call elimination should move the load above the call, |