[cfe-commits] r62295 - /cfe/trunk/lib/CodeGen/CGObjC.cpp

Daniel Dunbar daniel at zuster.org
Thu Jan 15 17:50:29 PST 2009


Author: ddunbar
Date: Thu Jan 15 19:50:29 2009
New Revision: 62295

URL: http://llvm.org/viewvc/llvm-project?rev=62295&view=rev
Log:
Attempt to unbreak Windows build.

Modified:
    cfe/trunk/lib/CodeGen/CGObjC.cpp

Modified: cfe/trunk/lib/CodeGen/CGObjC.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGObjC.cpp?rev=62295&r1=62294&r2=62295&view=diff

==============================================================================
--- cfe/trunk/lib/CodeGen/CGObjC.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGObjC.cpp Thu Jan 15 19:50:29 2009
@@ -302,11 +302,11 @@
                                  false, CallArgList());
   }
   else {
-    const ObjCKVCRefExpr *E = cast<ObjCKVCRefExpr>(Exp);
-    Selector S = E->getGetterMethod()->getSelector();
+    const ObjCKVCRefExpr *KE = cast<ObjCKVCRefExpr>(Exp);
+    Selector S = KE->getGetterMethod()->getSelector();
     return CGM.getObjCRuntime().
              GenerateMessageSend(*this, Exp->getType(), S, 
-                                 EmitScalarExpr(E->getBase()), 
+                                 EmitScalarExpr(KE->getBase()), 
                                  false, CallArgList());
   }
 }





More information about the cfe-commits mailing list