mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-31 10:34:17 +00: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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217144 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fa9120f514
commit
1c9848f305
@ -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…
x
Reference in New Issue
Block a user