Fix 80-column violation.

llvm-svn: 167932
This commit is contained in:
Fariborz Jahanian 2012-11-14 17:27:27 +00:00
parent a9d4464baf
commit cad7e371d0
1 changed files with 5 additions and 3 deletions

View 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);