aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGDebugInfo.cpp
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2012-11-14 17:27:27 +0000
committerFariborz Jahanian <fjahanian@apple.com>2012-11-14 17:27:27 +0000
commitccf57eab4ed02fca61e6996c8aebb5e04f46c0e7 (patch)
tree46e8d2a377429b0ddfa0dd85f94f382a589a725a /lib/CodeGen/CGDebugInfo.cpp
parent3ca23d7dc6cb61e6f363a58d9256d548199d120c (diff)
Fix 80-column violation.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@167932 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGDebugInfo.cpp')
-rw-r--r--lib/CodeGen/CGDebugInfo.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/CodeGen/CGDebugInfo.cpp b/lib/CodeGen/CGDebugInfo.cpp
index 1d9f8ed146..7fe12b5e7f 100644
--- a/lib/CodeGen/CGDebugInfo.cpp
+++ b/lib/CodeGen/CGDebugInfo.cpp
@@ -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);