From: James Molloy Date: Thu, 4 Sep 2014 13:23:08 +0000 (+0000) Subject: Enable noalias metadata by default and swap the order of the SLP and Loop vectorizers... X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=1c9848f3059f7d7fabcce098e994458627ba140f;p=oota-llvm.git 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 --- diff --git a/lib/Transforms/IPO/PassManagerBuilder.cpp b/lib/Transforms/IPO/PassManagerBuilder.cpp index 69189f389b7..75714713172 100644 --- a/lib/Transforms/IPO/PassManagerBuilder.cpp +++ b/lib/Transforms/IPO/PassManagerBuilder.cpp @@ -62,7 +62,7 @@ static cl::opt RunLoadCombine("combine-loads", cl::init(false), static cl::opt 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")); diff --git a/lib/Transforms/Utils/InlineFunction.cpp b/lib/Transforms/Utils/InlineFunction.cpp index f2930dcd61d..935d6b813e6 100644 --- a/lib/Transforms/Utils/InlineFunction.cpp +++ b/lib/Transforms/Utils/InlineFunction.cpp @@ -42,7 +42,7 @@ using namespace llvm; static cl::opt -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."));