diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-03-01 05:44:08 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-03-01 05:44:08 +0000 |
commit | 0312c0e09c9de480d78607972ac64a88f4e94a33 (patch) | |
tree | b0bfc5b4e7abc182a7cfe0ec1540078449ba3b0b /lib/Analysis/CFRefCount.cpp | |
parent | 17a8e07f122856d474633f437e77674923a98eb0 (diff) |
Rename AnonTypedRegion to TypedViewRegion.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65764 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/CFRefCount.cpp')
-rw-r--r-- | lib/Analysis/CFRefCount.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/CFRefCount.cpp b/lib/Analysis/CFRefCount.cpp index d42a936834..59669976b1 100644 --- a/lib/Analysis/CFRefCount.cpp +++ b/lib/Analysis/CFRefCount.cpp @@ -1643,9 +1643,9 @@ void CFRefCount::EvalSummary(ExplodedNodeSet<GRState>& Dst, const TypedRegion* R = dyn_cast<TypedRegion>(MR->getRegion()); - // Blast through AnonTypedRegions to get the original region type. + // Blast through TypedViewRegions to get the original region type. while (R) { - const AnonTypedRegion* ATR = dyn_cast<AnonTypedRegion>(R); + const TypedViewRegion* ATR = dyn_cast<TypedViewRegion>(R); if (!ATR) break; R = dyn_cast<TypedRegion>(ATR->getSuperRegion()); } |