diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2012-11-14 17:27:27 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2012-11-14 17:27:27 +0000 |
commit | cad7e371d0fa2398e4156bab9d3c1c89f6cd22f9 (patch) | |
tree | 9f169e40d9337f12e7eb23ae6879ca91825767a6 /clang/lib/CodeGen/CGDebugInfo.cpp | |
parent | a9d4464baf0cce5a11b481bec96c280d2c513dee (diff) | |
download | bcm5719-llvm-cad7e371d0fa2398e4156bab9d3c1c89f6cd22f9.tar.gz bcm5719-llvm-cad7e371d0fa2398e4156bab9d3c1c89f6cd22f9.zip |
Fix 80-column violation.
llvm-svn: 167932
Diffstat (limited to 'clang/lib/CodeGen/CGDebugInfo.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGDebugInfo.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CGDebugInfo.cpp b/clang/lib/CodeGen/CGDebugInfo.cpp index 1d9f8ed1467..7fe12b5e7fc 100644 --- a/clang/lib/CodeGen/CGDebugInfo.cpp +++ b/clang/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); |