diff options
author | Justin Bogner <mail@justinbogner.com> | 2015-12-16 00:17:34 +0000 |
---|---|---|
committer | Justin Bogner <mail@justinbogner.com> | 2015-12-16 00:17:34 +0000 |
commit | e0fde5c6d0bcaec2a424a03c7141e41b4154585c (patch) | |
tree | d417f01d0eab8eea48a405b9f0e38243784360e8 /llvm/lib/Analysis | |
parent | 90ae7922b50273b70396d00fc91fa6c78ec42576 (diff) | |
download | bcm5719-llvm-e0fde5c6d0bcaec2a424a03c7141e41b4154585c.tar.gz bcm5719-llvm-e0fde5c6d0bcaec2a424a03c7141e41b4154585c.zip |
Fix typo in r255720
llvm-svn: 255724
Diffstat (limited to 'llvm/lib/Analysis')
-rw-r--r-- | llvm/lib/Analysis/LoopInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/LoopInfo.cpp b/llvm/lib/Analysis/LoopInfo.cpp index ee311c50eee..dc97340a1f6 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()) { |