1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 12:12:47 +01:00

Actually keep the flag default-off for now. =/ That's what I get for

being busy testing this...

llvm-svn: 163890
This commit is contained in:
Chandler Carruth 2012-09-14 10:18:54 +00:00
parent 7d9c189818
commit e8c0e13d8b

View 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() {