diff options
author | Alina Sbirlea <asbirlea@google.com> | 2019-02-21 21:13:34 +0000 |
---|---|---|
committer | Alina Sbirlea <asbirlea@google.com> | 2019-02-21 21:13:34 +0000 |
commit | 97468e9282b25639de0181c94eba6972519f4e84 (patch) | |
tree | 14ab72969730f23fa40af65e84924277f156e496 /llvm/lib/Transforms/Utils/LoopSimplify.cpp | |
parent | 475042d5b1be6187094699a76ce03ce70b147a47 (diff) | |
download | bcm5719-llvm-97468e9282b25639de0181c94eba6972519f4e84.tar.gz bcm5719-llvm-97468e9282b25639de0181c94eba6972519f4e84.zip |
[MemorySSA & LoopPassManager] Update MemorySSA in formDedicatedExitBlocks.
MemorySSA is now updated when forming dedicated exit blocks.
Resolves PR40037.
llvm-svn: 354623
Diffstat (limited to 'llvm/lib/Transforms/Utils/LoopSimplify.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/LoopSimplify.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Utils/LoopSimplify.cpp b/llvm/lib/Transforms/Utils/LoopSimplify.cpp index ca29f6787e2..c347b5e26e3 100644 --- a/llvm/lib/Transforms/Utils/LoopSimplify.cpp +++ b/llvm/lib/Transforms/Utils/LoopSimplify.cpp @@ -317,7 +317,7 @@ static Loop *separateNestedLoop(Loop *L, BasicBlock *Preheader, // Split edges to exit blocks from the inner loop, if they emerged in the // process of separating the outer one. - formDedicatedExitBlocks(L, DT, LI, PreserveLCSSA); + formDedicatedExitBlocks(L, DT, LI, nullptr, PreserveLCSSA); if (PreserveLCSSA) { // Fix LCSSA form for L. Some values, which previously were only used inside @@ -530,7 +530,7 @@ ReprocessLoop: // predecessors that are inside of the loop. This check guarantees that the // loop preheader/header will dominate the exit blocks. If the exit block has // predecessors from outside of the loop, split the edge now. - if (formDedicatedExitBlocks(L, DT, LI, PreserveLCSSA)) + if (formDedicatedExitBlocks(L, DT, LI, nullptr, PreserveLCSSA)) Changed = true; // If the header has more than two predecessors at this point (from the |