Disable the new SROA pass to get the tree back in working order. We don't yet

have testcases for the current problems.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164731 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Nick Lewycky 2012-09-26 22:43:04 +00:00
parent 8a63f99f03
commit bfc342d412

View File

@ -41,7 +41,7 @@ UseGVNAfterVectorization("use-gvn-after-vectorization",
cl::desc("Run GVN instead of Early CSE after vectorization passes")); cl::desc("Run GVN instead of Early CSE after vectorization passes"));
static cl::opt<bool> UseNewSROA("use-new-sroa", static cl::opt<bool> UseNewSROA("use-new-sroa",
cl::init(true), cl::Hidden, cl::init(false), cl::Hidden,
cl::desc("Enable the new, experimental SROA pass")); cl::desc("Enable the new, experimental SROA pass"));
PassManagerBuilder::PassManagerBuilder() { PassManagerBuilder::PassManagerBuilder() {