]> granicus.if.org Git - clang/commitdiff
fix 80 col violation
authorChris Lattner <sabre@nondot.org>
Sun, 22 May 2011 22:09:06 +0000 (22:09 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 22 May 2011 22:09:06 +0000 (22:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@131870 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGExpr.cpp

index 59f700efb85967c8d84a72a7d9e4d76fd027220e..2f6b55bd7b0bc46fe999bda1f5528f39cf69444a 100644 (file)
@@ -1635,7 +1635,8 @@ LValue CodeGenFunction::EmitLValueForAnonRecordField(llvm::Value *BaseValue,
   IndirectFieldDecl::chain_iterator I = Field->chain_begin(),
     IEnd = Field->chain_end();
   while (true) {
-    LValue LV = EmitLValueForField(BaseValue, cast<FieldDecl>(*I), CVRQualifiers);
+    LValue LV = EmitLValueForField(BaseValue, cast<FieldDecl>(*I),
+                                   CVRQualifiers);
     if (++I == IEnd) return LV;
 
     assert(LV.isSimple());