aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Analysis/LoopInfo.cpp
diff options
context:
space:
mode:
authorJustin Bogner <mail@justinbogner.com>2015-12-16 00:17:34 +0000
committerJustin Bogner <mail@justinbogner.com>2015-12-16 00:17:34 +0000
commite0fde5c6d0bcaec2a424a03c7141e41b4154585c (patch)
treed417f01d0eab8eea48a405b9f0e38243784360e8 /llvm/lib/Analysis/LoopInfo.cpp
parent90ae7922b50273b70396d00fc91fa6c78ec42576 (diff)
downloadllvm-e0fde5c6d0bcaec2a424a03c7141e41b4154585c.zip
llvm-e0fde5c6d0bcaec2a424a03c7141e41b4154585c.tar.gz
llvm-e0fde5c6d0bcaec2a424a03c7141e41b4154585c.tar.bz2
Fix typo in r255720
llvm-svn: 255724
Diffstat (limited to 'llvm/lib/Analysis/LoopInfo.cpp')
-rw-r--r--llvm/lib/Analysis/LoopInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/LoopInfo.cpp b/llvm/lib/Analysis/LoopInfo.cpp
index ee311c5..dc97340 100644
--- a/llvm/lib/Analysis/LoopInfo.cpp
+++ b/llvm/lib/Analysis/LoopInfo.cpp
@@ -631,7 +631,7 @@ LoopInfo::LoopInfo(const DominatorTreeBase<BasicBlock> &DomTree) {
}
void LoopInfo::updateUnloop(Loop *Unloop) {
- Unloop->markAsUnloop();
+ Unloop->markUnlooped();
// First handle the special case of no parent loop to simplify the algorithm.
if (!Unloop->getParentLoop()) {