diff options
author | Hal Finkel <hfinkel@anl.gov> | 2012-12-25 23:21:29 +0000 |
---|---|---|
committer | Hal Finkel <hfinkel@anl.gov> | 2012-12-25 23:21:29 +0000 |
commit | 1d59f5fa53cac23b6debc1d7214451c65b0399a7 (patch) | |
tree | e6fd24edccb715577c291c34bb801f4c63dffa44 /lib/Transforms/Vectorize/LoopVectorize.cpp | |
parent | 64a7a24edf719bb6ffacc030c23f4cd99312f3fb (diff) |
LoopVectorize: Enable vectorization of the fmuladd intrinsic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171076 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Vectorize/LoopVectorize.cpp')
-rw-r--r-- | lib/Transforms/Vectorize/LoopVectorize.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Transforms/Vectorize/LoopVectorize.cpp b/lib/Transforms/Vectorize/LoopVectorize.cpp index d571903984..b8b934a07d 100644 --- a/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/lib/Transforms/Vectorize/LoopVectorize.cpp @@ -711,6 +711,7 @@ isTriviallyVectorizableIntrinsic(Instruction *Inst) { case Intrinsic::nearbyint: case Intrinsic::pow: case Intrinsic::fma: + case Intrinsic::fmuladd: return true; default: return false; |