diff options
author | Anders Carlsson <andersca@mac.com> | 2009-07-10 19:20:26 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-07-10 19:20:26 +0000 |
commit | 563a03b1338d31c2462def43253a722bc885d384 (patch) | |
tree | 0de700b6b1a11f69e804f33de53498360a04c06e /lib/CodeGen/CGDebugInfo.cpp | |
parent | eeea45611d45238c34474c183cee96d47ae79e24 (diff) |
Fix a problem that Eli noticed, and that Doug helped me fix.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@75265 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGDebugInfo.cpp')
-rw-r--r-- | lib/CodeGen/CGDebugInfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/CGDebugInfo.cpp b/lib/CodeGen/CGDebugInfo.cpp index cf8e19af32..8fa1e9c920 100644 --- a/lib/CodeGen/CGDebugInfo.cpp +++ b/lib/CodeGen/CGDebugInfo.cpp @@ -792,8 +792,8 @@ llvm::DIType CGDebugInfo::getOrCreateType(QualType Ty, return Slot = getOrCreateType(cast<TypeOfType>(Ty)->getUnderlyingType(), Unit); case Type::Decltype: - return Slot = getOrCreateType(cast<DecltypeType>(Ty)->getUnderlyingExpr() - ->getType(), Unit); + return Slot = getOrCreateType(cast<DecltypeType>(Ty)->getUnderlyingType(), + Unit); } return Slot; |