From: Zhongxing Xu Date: Mon, 6 Oct 2008 03:03:33 +0000 (+0000) Subject: Fix typos. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=722c288d15fd7c41ebfc22de7688de5fe34611d9;p=clang Fix typos. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@57146 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/MemRegion.cpp b/lib/Analysis/MemRegion.cpp index 7c2af428d3..49c58f6496 100644 --- a/lib/Analysis/MemRegion.cpp +++ b/lib/Analysis/MemRegion.cpp @@ -138,8 +138,8 @@ ObjCIvarRegion* MemRegionManager::getObjCIvarRegion(const ObjCIvarDecl* d, ObjCIvarRegion* R = cast_or_null(data); if (!R) { - R = (ObjCIvarRegion*) A.Allocate(); - new (R) FieldRegion(d, superRegion); + R = (ObjCIvarRegion*) A.Allocate(); + new (R) ObjCIvarRegion(d, superRegion); Regions.InsertNode(R, InsertPos); }