diff options
| author | Paul Robinson <paul.robinson@sony.com> | 2016-07-29 16:05:50 +0000 |
|---|---|---|
| committer | Paul Robinson <paul.robinson@sony.com> | 2016-07-29 16:05:50 +0000 |
| commit | fd0fb094be0ab0701a4495d6c7c1e3b9ca15902a (patch) | |
| tree | d1aea0e909ac8cda0d9cb21c1ae898fe90f47a05 /llvm/test/Feature | |
| parent | 2485dc42dbf1950367121d2b12ce48a4b0df5b7d (diff) | |
| download | bcm5719-llvm-fd0fb094be0ab0701a4495d6c7c1e3b9ca15902a.tar.gz bcm5719-llvm-fd0fb094be0ab0701a4495d6c7c1e3b9ca15902a.zip | |
Reinstate optnone test for GVN Hoisting, removed in r276479.
llvm-svn: 277158
Diffstat (limited to 'llvm/test/Feature')
| -rw-r--r-- | llvm/test/Feature/optnone-opt.ll | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/test/Feature/optnone-opt.ll b/llvm/test/Feature/optnone-opt.ll index a17f97785f0..f53877d4aea 100644 --- a/llvm/test/Feature/optnone-opt.ll +++ b/llvm/test/Feature/optnone-opt.ll @@ -2,7 +2,7 @@ ; RUN: opt -O1 -S -debug %s 2>&1 | FileCheck %s --check-prefix=OPT-O1 ; RUN: opt -O2 -S -debug %s 2>&1 | FileCheck %s --check-prefix=OPT-O1 --check-prefix=OPT-O2O3 ; RUN: opt -O3 -S -debug %s 2>&1 | FileCheck %s --check-prefix=OPT-O1 --check-prefix=OPT-O2O3 -; RUN: opt -bb-vectorize -dce -die -loweratomic -S -debug %s 2>&1 | FileCheck %s --check-prefix=OPT-MORE +; RUN: opt -bb-vectorize -dce -die -gvn-hoist -loweratomic -S -debug %s 2>&1 | FileCheck %s --check-prefix=OPT-MORE ; RUN: opt -indvars -licm -loop-deletion -loop-extract -loop-idiom -loop-instsimplify -loop-reduce -loop-reroll -loop-rotate -loop-unroll -loop-unswitch -S -debug %s 2>&1 | FileCheck %s --check-prefix=OPT-LOOP ; REQUIRES: asserts @@ -58,6 +58,7 @@ attributes #0 = { optnone noinline } ; OPT-MORE-DAG: Skipping pass 'Basic-Block Vectorization' ; OPT-MORE-DAG: Skipping pass 'Dead Code Elimination' ; OPT-MORE-DAG: Skipping pass 'Dead Instruction Elimination' +; OPT-MORE-DAG: Skipping pass 'Early GVN Hoisting of Expressions' ; OPT-MORE-DAG: Skipping pass 'Lower atomic intrinsics ; Loop IR passes that opt doesn't turn on by default. |

