diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-01-16 01:50:29 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-01-16 01:50:29 +0000 |
commit | f479cea608dae347bc06c7a7279ab54fe34d47f6 (patch) | |
tree | 696e6e9ae24c08fb760f1e6b6dedfbd9a1d3cb05 /lib/CodeGen/CGObjC.cpp | |
parent | 67303c1c78345c53abbf19516170f5bd79b0534d (diff) |
Attempt to unbreak Windows build.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62295 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGObjC.cpp')
-rw-r--r-- | lib/CodeGen/CGObjC.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/CodeGen/CGObjC.cpp b/lib/CodeGen/CGObjC.cpp index 29740fdf8f..1dcf1be9a0 100644 --- a/lib/CodeGen/CGObjC.cpp +++ b/lib/CodeGen/CGObjC.cpp @@ -302,11 +302,11 @@ RValue CodeGenFunction::EmitObjCPropertyGet(const Expr *Exp) { 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()); } } |