]> granicus.if.org Git - clang/commitdiff
tidy some code.
authorChris Lattner <sabre@nondot.org>
Fri, 17 Apr 2009 17:44:48 +0000 (17:44 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 17 Apr 2009 17:44:48 +0000 (17:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69360 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGExpr.cpp

index f7f3a5ea72f8eb4197766afe32c02d13d482a43b..f98e6748b219cd3d478d7df9dd91e558efd2f869 100644 (file)
@@ -1154,11 +1154,8 @@ LValue CodeGenFunction::EmitLValueForIvar(QualType ObjectTy,
   if (CGM.getObjCRuntime().LateBoundIVars())
     assert(0 && "late-bound ivars are unsupported");
   
-  LValue LV = CGM.getObjCRuntime().EmitObjCValueForIvar(*this,
-                                                        ObjectTy,
-                                                        BaseValue, Ivar, Field,
-                                                        CVRQualifiers);
-  return LV;
+  return CGM.getObjCRuntime().EmitObjCValueForIvar(*this, ObjectTy, BaseValue,
+                                                   Ivar, Field, CVRQualifiers);
 }
 
 LValue CodeGenFunction::EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E) {