]> granicus.if.org Git - clang/commitdiff
Fix 80-column violation.
authorFariborz Jahanian <fjahanian@apple.com>
Wed, 14 Nov 2012 17:27:27 +0000 (17:27 +0000)
committerFariborz Jahanian <fjahanian@apple.com>
Wed, 14 Nov 2012 17:27:27 +0000 (17:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@167932 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGDebugInfo.cpp

index 1d9f8ed146790e9408499a05fd543527ab71877d..7fe12b5e7fc1e2a3a4ce46daf90ba668e022a0fe 100644 (file)
@@ -2258,9 +2258,11 @@ llvm::DIType CGDebugInfo::EmitTypeForVarWithBlocksAttr(const ValueDecl *VD,
   }
   bool HasByrefExtendedLayout;
   Qualifiers::ObjCLifetime Lifetime;
-  if (CGM.getContext().getByrefLifetime(Type, Lifetime, HasByrefExtendedLayout) &&
-      HasByrefExtendedLayout)
-    EltTys.push_back(CreateMemberType(Unit, FType, "__byref_variable_layout",
+  if (CGM.getContext().getByrefLifetime(Type,
+                                        Lifetime, HasByrefExtendedLayout)
+      && HasByrefExtendedLayout)
+    EltTys.push_back(CreateMemberType(Unit, FType,
+                                      "__byref_variable_layout",
                                       &FieldOffset));
   
   CharUnits Align = CGM.getContext().getDeclAlign(VD);