Disable the new SROA pass to get the tree back in working order. We don't yet
authorNick Lewycky <nicholas@mxc.ca>
Wed, 26 Sep 2012 22:43:04 +0000 (22:43 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Wed, 26 Sep 2012 22:43:04 +0000 (22:43 +0000)
have testcases for the current problems.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164731 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/IPO/PassManagerBuilder.cpp

index 105b2886d92ace0d006242345380f6efb1f7e622..c81b333813e6c3326ff5a599f326adfe7cbbc292 100644 (file)
@@ -41,7 +41,7 @@ UseGVNAfterVectorization("use-gvn-after-vectorization",
   cl::desc("Run GVN instead of Early CSE after vectorization passes"));
 
 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"));
 
 PassManagerBuilder::PassManagerBuilder() {