aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-12-14 17:06:50 +0000
committerDan Gohman <gohman@apple.com>2009-12-14 17:06:50 +0000
commit440b40d86521305d631e6461314540f54659d4a2 (patch)
tree0690a7c4a6a37b7000a076b3c3a115648f5a1ee2 /lib/Analysis
parentd7d72d66b799aaab1c48a67a0cbb5c9a70794cec (diff)
downloadexternal_llvm-440b40d86521305d631e6461314540f54659d4a2.zip
external_llvm-440b40d86521305d631e6461314540f54659d4a2.tar.gz
external_llvm-440b40d86521305d631e6461314540f54659d4a2.tar.bz2
Drop Loop::isNotAlreadyContainedIn in favor of Loop::contains. The
former was just exposing a LoopInfoBase implementation detail. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91286 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis')
-rw-r--r--lib/Analysis/IVUsers.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/IVUsers.cpp b/lib/Analysis/IVUsers.cpp
index 37747b6..7898679 100644
--- a/lib/Analysis/IVUsers.cpp
+++ b/lib/Analysis/IVUsers.cpp
@@ -53,7 +53,7 @@ static bool containsAddRecFromDifferentLoop(const SCEV *S, Loop *L) {
if (newLoop == L)
return false;
// if newLoop is an outer loop of L, this is OK.
- if (!LoopInfo::isNotAlreadyContainedIn(L, newLoop))
+ if (!newLoop->contains(L->getHeader()))
return false;
}
return true;