mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
Enable noalias metadata by default and swap the order of the SLP and Loop vectorizers by default.
After some time maturing, hopefully the flags themselves will be removed. llvm-svn: 217144
This commit is contained in:
parent
28798580ec
commit
ddb6b63cb3
@ -62,7 +62,7 @@ static cl::opt<bool> RunLoadCombine("combine-loads", cl::init(false),
|
||||
|
||||
static cl::opt<bool>
|
||||
RunSLPAfterLoopVectorization("run-slp-after-loop-vectorization",
|
||||
cl::init(false), cl::Hidden,
|
||||
cl::init(true), cl::Hidden,
|
||||
cl::desc("Run the SLP vectorizer (and BB vectorizer) after the Loop "
|
||||
"vectorizer instead of before"));
|
||||
|
||||
|
@ -42,7 +42,7 @@
|
||||
using namespace llvm;
|
||||
|
||||
static cl::opt<bool>
|
||||
EnableNoAliasConversion("enable-noalias-to-md-conversion", cl::init(false),
|
||||
EnableNoAliasConversion("enable-noalias-to-md-conversion", cl::init(true),
|
||||
cl::Hidden,
|
||||
cl::desc("Convert noalias attributes to metadata during inlining."));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user