diff options
author | Mike Stump <mrs@apple.com> | 2009-10-02 02:23:37 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-10-02 02:23:37 +0000 |
commit | 944e705766490162a5c56b2d4452a8b23f5e632e (patch) | |
tree | 3ae235a41f4e83d5e547a0ee568e0bb5d5b4b352 /lib/CodeGen/CGDebugInfo.cpp | |
parent | 31f2f9ced8ed2dd17ac43b6addc84eb08a05442e (diff) |
Fix up debug information for block pointers a bit more.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@83231 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGDebugInfo.cpp')
-rw-r--r-- | lib/CodeGen/CGDebugInfo.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/CodeGen/CGDebugInfo.cpp b/lib/CodeGen/CGDebugInfo.cpp index 0b386841f1..c937e8ec67 100644 --- a/lib/CodeGen/CGDebugInfo.cpp +++ b/lib/CodeGen/CGDebugInfo.cpp @@ -350,8 +350,10 @@ llvm::DIType CGDebugInfo::CreateType(const BlockPointerType *Ty, FieldOffset += FieldSize; Elements = DebugFactory.GetOrCreateArray(EltTys.data(), EltTys.size()); + unsigned Flags = llvm::DIType::FlagAppleBlock; + EltTy = DebugFactory.CreateCompositeType(Tag, Unit, "__block_literal_generic", - DefUnit, 0, FieldOffset, 0, 0, 0, + DefUnit, 0, FieldOffset, 0, 0, Flags, llvm::DIType(), Elements); BlockLiteralGenericSet = true; |