[cfe-commits] r167932 - /cfe/trunk/lib/CodeGen/CGDebugInfo.cpp
Fariborz Jahanian
fjahanian at apple.com
Wed Nov 14 09:27:27 PST 2012
Author: fjahanian
Date: Wed Nov 14 11:27:27 2012
New Revision: 167932
URL: http://llvm.org/viewvc/llvm-project?rev=167932&view=rev
Log:
Fix 80-column violation.
Modified:
cfe/trunk/lib/CodeGen/CGDebugInfo.cpp
Modified: cfe/trunk/lib/CodeGen/CGDebugInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGDebugInfo.cpp?rev=167932&r1=167931&r2=167932&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGDebugInfo.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGDebugInfo.cpp Wed Nov 14 11:27:27 2012
@@ -2258,9 +2258,11 @@
}
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);
More information about the cfe-commits
mailing list