diff options
Diffstat (limited to 'test/Transforms/CondProp')
-rw-r--r-- | test/Transforms/CondProp/2006-08-14-SingleEntryPhiCrash.ll | 2 | ||||
-rw-r--r-- | test/Transforms/CondProp/2006-11-01-PhiNodeCrash.ll | 2 | ||||
-rw-r--r-- | test/Transforms/CondProp/2007-08-01-InvalidRead.ll | 2 | ||||
-rw-r--r-- | test/Transforms/CondProp/2009-01-25-SingleEntryPHI.ll | 2 | ||||
-rw-r--r-- | test/Transforms/CondProp/basictest-dbg.ll | 2 | ||||
-rw-r--r-- | test/Transforms/CondProp/basictest.ll | 4 | ||||
-rw-r--r-- | test/Transforms/CondProp/phisimplify.ll | 2 | ||||
-rw-r--r-- | test/Transforms/CondProp/phisimplify2.ll | 2 | ||||
-rw-r--r-- | test/Transforms/CondProp/phisimplify3.ll | 2 |
9 files changed, 10 insertions, 10 deletions
diff --git a/test/Transforms/CondProp/2006-08-14-SingleEntryPhiCrash.ll b/test/Transforms/CondProp/2006-08-14-SingleEntryPhiCrash.ll index fa08379..754d19d 100644 --- a/test/Transforms/CondProp/2006-08-14-SingleEntryPhiCrash.ll +++ b/test/Transforms/CondProp/2006-08-14-SingleEntryPhiCrash.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | opt -condprop -disable-output +; RUN: opt < %s -condprop -disable-output ; PR877 target datalayout = "E-p:32:32" target triple = "powerpc-apple-darwin9.0.0d1" diff --git a/test/Transforms/CondProp/2006-11-01-PhiNodeCrash.ll b/test/Transforms/CondProp/2006-11-01-PhiNodeCrash.ll index 573ee6c..4df8ff9 100644 --- a/test/Transforms/CondProp/2006-11-01-PhiNodeCrash.ll +++ b/test/Transforms/CondProp/2006-11-01-PhiNodeCrash.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | opt -condprop -disable-output +; RUN: opt < %s -condprop -disable-output ; PR979 target datalayout = "e-p:32:32" diff --git a/test/Transforms/CondProp/2007-08-01-InvalidRead.ll b/test/Transforms/CondProp/2007-08-01-InvalidRead.ll index 1e1f8cb..6d5f0f5 100644 --- a/test/Transforms/CondProp/2007-08-01-InvalidRead.ll +++ b/test/Transforms/CondProp/2007-08-01-InvalidRead.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | opt -inline -tailduplicate -condprop -simplifycfg -disable-output +; RUN: opt < %s -inline -tailduplicate -condprop -simplifycfg -disable-output ; PR1575 target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64" target triple = "i686-pc-linux-gnu" diff --git a/test/Transforms/CondProp/2009-01-25-SingleEntryPHI.ll b/test/Transforms/CondProp/2009-01-25-SingleEntryPHI.ll index d14ce38..58dd29f 100644 --- a/test/Transforms/CondProp/2009-01-25-SingleEntryPHI.ll +++ b/test/Transforms/CondProp/2009-01-25-SingleEntryPHI.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | opt -condprop | llvm-dis +; RUN: opt < %s -condprop | llvm-dis ; PR3405 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128" target triple = "x86_64-unknown-linux-gnu" diff --git a/test/Transforms/CondProp/basictest-dbg.ll b/test/Transforms/CondProp/basictest-dbg.ll index d8a680b..9e05ff1 100644 --- a/test/Transforms/CondProp/basictest-dbg.ll +++ b/test/Transforms/CondProp/basictest-dbg.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | opt -condprop | llvm-dis | \ +; RUN: opt < %s -condprop -S | \ ; RUN: not grep {br label} %llvm.dbg.anchor.type = type { i32, i32 } diff --git a/test/Transforms/CondProp/basictest.ll b/test/Transforms/CondProp/basictest.ll index 317247c..49d4735 100644 --- a/test/Transforms/CondProp/basictest.ll +++ b/test/Transforms/CondProp/basictest.ll @@ -1,6 +1,6 @@ -; RUN: llvm-as < %s | opt -condprop | llvm-dis | \ +; RUN: opt < %s -condprop -S | \ ; RUN: not grep {br label} -; RUN: llvm-as < %s | opt -condprop | llvm-dis | not grep T2 +; RUN: opt < %s -condprop -S | not grep T2 define i32 @test(i1 %C) { diff --git a/test/Transforms/CondProp/phisimplify.ll b/test/Transforms/CondProp/phisimplify.ll index 5b5a304..ce33f1e 100644 --- a/test/Transforms/CondProp/phisimplify.ll +++ b/test/Transforms/CondProp/phisimplify.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | opt -condprop | llvm-dis | not grep phi +; RUN: opt < %s -condprop -S | not grep phi define i32 @test(i32 %C, i1 %Val) { switch i32 %C, label %T1 [ diff --git a/test/Transforms/CondProp/phisimplify2.ll b/test/Transforms/CondProp/phisimplify2.ll index 03d12e3..4ecbd88 100644 --- a/test/Transforms/CondProp/phisimplify2.ll +++ b/test/Transforms/CondProp/phisimplify2.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | opt -condprop | llvm-dis | not grep phi +; RUN: opt < %s -condprop -S | not grep phi declare i1 @foo() diff --git a/test/Transforms/CondProp/phisimplify3.ll b/test/Transforms/CondProp/phisimplify3.ll index 1678597..6166efb 100644 --- a/test/Transforms/CondProp/phisimplify3.ll +++ b/test/Transforms/CondProp/phisimplify3.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | opt -condprop | llvm-dis | not grep phi +; RUN: opt < %s -condprop -S | not grep phi define i32 @foo(i1, i32, i32) { prologue: |