diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-02-28 01:32:25 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-02-28 01:32:25 +0000 |
commit | 89ee6822d8a6ac9fad18105c8f68194315c6edc5 (patch) | |
tree | 5924f75913729abf792257d488d767f90fbb1cae /clang/lib/CodeGen/CGDebugInfo.cpp | |
parent | 2f235908eda485e9100876245da88a1d01d2c6e0 (diff) | |
download | bcm5719-llvm-89ee6822d8a6ac9fad18105c8f68194315c6edc5.tar.gz bcm5719-llvm-89ee6822d8a6ac9fad18105c8f68194315c6edc5.zip |
Eliminate CXXRecordType
llvm-svn: 65671
Diffstat (limited to 'clang/lib/CodeGen/CGDebugInfo.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGDebugInfo.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGDebugInfo.cpp b/clang/lib/CodeGen/CGDebugInfo.cpp index 62b9f4aff72..101dae05926 100644 --- a/clang/lib/CodeGen/CGDebugInfo.cpp +++ b/clang/lib/CodeGen/CGDebugInfo.cpp @@ -508,7 +508,6 @@ llvm::DIType CGDebugInfo::getOrCreateType(QualType Ty, case Type::Pointer: Slot = CreateType(cast<PointerType>(Ty), Unit); break; case Type::Typedef: Slot = CreateType(cast<TypedefType>(Ty), Unit); break; case Type::Record: - case Type::CXXRecord: case Type::Enum: Slot = CreateType(cast<TagType>(Ty), Unit); break; |