diff options
author | Xinliang David Li <davidxl@google.com> | 2016-06-09 03:22:39 +0000 |
---|---|---|
committer | Xinliang David Li <davidxl@google.com> | 2016-06-09 03:22:39 +0000 |
commit | ecde1c7f3de37f009723645935afc1badacf79a7 (patch) | |
tree | 7b08cde1307bdb9a0985781ee117c75e0e395112 /llvm/lib/Transforms/Scalar/LoopDistribute.cpp | |
parent | d3568e3ba32712603c2bfe53b2dafa948ec46a3e (diff) | |
download | llvm-ecde1c7f3de37f009723645935afc1badacf79a7.zip llvm-ecde1c7f3de37f009723645935afc1badacf79a7.tar.gz llvm-ecde1c7f3de37f009723645935afc1badacf79a7.tar.bz2 |
Revert r272194 No need for it if loop Analysis Manager is used
llvm-svn: 272243
Diffstat (limited to 'llvm/lib/Transforms/Scalar/LoopDistribute.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/LoopDistribute.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/LoopDistribute.cpp b/llvm/lib/Transforms/Scalar/LoopDistribute.cpp index 3d82eb8..48405a2 100644 --- a/llvm/lib/Transforms/Scalar/LoopDistribute.cpp +++ b/llvm/lib/Transforms/Scalar/LoopDistribute.cpp @@ -608,7 +608,7 @@ public: return fail("multiple exit blocks"); // LAA will check that we only have a single exiting block. - LAI = &LAA->getResult().getInfo(L, ValueToValueMap()); + LAI = &LAA->getInfo(L, ValueToValueMap()); // Currently, we only distribute to isolate the part of the loop with // dependence cycles to enable partial vectorization. |