diff options
author | James Molloy <james.molloy@arm.com> | 2014-09-04 13:23:08 +0000 |
---|---|---|
committer | James Molloy <james.molloy@arm.com> | 2014-09-04 13:23:08 +0000 |
commit | 6b95d8ed36d4587ce6013f89a09f6f067c4d8881 (patch) | |
tree | d1cb1e1ae298f09b0a2d0f65720fc90d30ee0d8b /llvm/lib/Transforms/Utils/InlineFunction.cpp | |
parent | 169eeb913d31c737ad53fb3966170c6dc977ae71 (diff) | |
download | llvm-6b95d8ed36d4587ce6013f89a09f6f067c4d8881.zip llvm-6b95d8ed36d4587ce6013f89a09f6f067c4d8881.tar.gz llvm-6b95d8ed36d4587ce6013f89a09f6f067c4d8881.tar.bz2 |
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
Diffstat (limited to 'llvm/lib/Transforms/Utils/InlineFunction.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/InlineFunction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/InlineFunction.cpp b/llvm/lib/Transforms/Utils/InlineFunction.cpp index f2930dc..935d6b8 100644 --- a/llvm/lib/Transforms/Utils/InlineFunction.cpp +++ b/llvm/lib/Transforms/Utils/InlineFunction.cpp @@ -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.")); |