diff options
author | Devang Patel <dpatel@apple.com> | 2011-05-05 17:06:30 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2011-05-05 17:06:30 +0000 |
commit | 979aba5d09f58703d4ba90914a0cb30834319770 (patch) | |
tree | dcf577bb1b21d52345711e2b2fdefc15d09c7ed6 /clang/lib/CodeGen/CGDebugInfo.cpp | |
parent | 441a01a2b8f57d04ea613ce4c22e9fd6e0114788 (diff) | |
download | bcm5719-llvm-979aba5d09f58703d4ba90914a0cb30834319770.tar.gz bcm5719-llvm-979aba5d09f58703d4ba90914a0cb30834319770.zip |
Do not drop uint128 on the floor.
llvm-svn: 130929
Diffstat (limited to 'clang/lib/CodeGen/CGDebugInfo.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGDebugInfo.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CGDebugInfo.cpp b/clang/lib/CodeGen/CGDebugInfo.cpp index 38bfcf22b74..3c411f4ffed 100644 --- a/clang/lib/CodeGen/CGDebugInfo.cpp +++ b/clang/lib/CodeGen/CGDebugInfo.cpp @@ -335,10 +335,12 @@ llvm::DIType CGDebugInfo::CreateType(const BuiltinType *BT) { case BuiltinType::SChar: Encoding = llvm::dwarf::DW_ATE_signed_char; break; case BuiltinType::UShort: case BuiltinType::UInt: + case BuiltinType::UInt128: case BuiltinType::ULong: case BuiltinType::ULongLong: Encoding = llvm::dwarf::DW_ATE_unsigned; break; case BuiltinType::Short: case BuiltinType::Int: + case BuiltinType::Int128: case BuiltinType::Long: case BuiltinType::LongLong: Encoding = llvm::dwarf::DW_ATE_signed; break; case BuiltinType::Bool: Encoding = llvm::dwarf::DW_ATE_boolean; break; |