diff options
author | Leonard Chan <leonardchan@google.com> | 2018-06-02 03:27:13 +0000 |
---|---|---|
committer | Leonard Chan <leonardchan@google.com> | 2018-06-02 03:27:13 +0000 |
commit | 0d485dbb40b151ae20e6a8133d46a12c9fddd1fe (patch) | |
tree | 15ec55bb97a84f42ea7b4775f2ef1082db49830e /clang/lib/CodeGen/CGDebugInfo.cpp | |
parent | db55d8331e631e84b07e6fbad923085b4baa9597 (diff) | |
download | bcm5719-llvm-0d485dbb40b151ae20e6a8133d46a12c9fddd1fe.tar.gz bcm5719-llvm-0d485dbb40b151ae20e6a8133d46a12c9fddd1fe.zip |
Revert "This diff includes changes for supporting the following types."
This reverts commit r333814, which fails for a test checking the bit
width on ubuntu.
llvm-svn: 333815
Diffstat (limited to 'clang/lib/CodeGen/CGDebugInfo.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGDebugInfo.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/clang/lib/CodeGen/CGDebugInfo.cpp b/clang/lib/CodeGen/CGDebugInfo.cpp index db6a82b415d..9e99a646b0b 100644 --- a/clang/lib/CodeGen/CGDebugInfo.cpp +++ b/clang/lib/CodeGen/CGDebugInfo.cpp @@ -702,16 +702,6 @@ llvm::DIType *CGDebugInfo::CreateType(const BuiltinType *BT) { // floating point types of the same size. Encoding = llvm::dwarf::DW_ATE_float; break; - case BuiltinType::ShortAccum: - case BuiltinType::Accum: - case BuiltinType::LongAccum: - Encoding = llvm::dwarf::DW_ATE_signed_fixed; - break; - case BuiltinType::UShortAccum: - case BuiltinType::UAccum: - case BuiltinType::ULongAccum: - Encoding = llvm::dwarf::DW_ATE_unsigned_fixed; - break; } switch (BT->getKind()) { |