diff options
author | John McCall <rjmccall@apple.com> | 2011-03-04 04:00:19 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2011-03-04 04:00:19 +0000 |
commit | 14aa2175416f79ef17811282afbf425f87d54ebf (patch) | |
tree | acbbf7f9240a5d923fc6b0ce209671d2ad5dbf63 /lib/CodeGen/CGDebugInfo.cpp | |
parent | 0498247f87ea0d716e0c2931fea812280649e33d (diff) | |
download | clang-14aa2175416f79ef17811282afbf425f87d54ebf.tar.gz |
Make AttributedTypes for GC-qualified types and fix some miscellaneous
bugs with such types. Not sure this is quite how I want the desugaring
and a.k.a. logic to go, but it suffices.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@126986 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGDebugInfo.cpp')
-rw-r--r-- | lib/CodeGen/CGDebugInfo.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/CGDebugInfo.cpp b/lib/CodeGen/CGDebugInfo.cpp index e6d2af3a53..bccf6e77cd 100644 --- a/lib/CodeGen/CGDebugInfo.cpp +++ b/lib/CodeGen/CGDebugInfo.cpp @@ -1364,6 +1364,7 @@ static QualType UnwrapTypeForDebugInfo(QualType T) { break; case Type::Attributed: T = cast<AttributedType>(T)->getEquivalentType(); + break; case Type::Elaborated: T = cast<ElaboratedType>(T)->getNamedType(); break; |