summaryrefslogtreecommitdiffstats
path: root/lib/AST/ItaniumMangle.cpp
diff options
context:
space:
mode:
authorLeonard Chan <leonardchan@google.com>2018-06-02 03:27:13 +0000
committerLeonard Chan <leonardchan@google.com>2018-06-02 03:27:13 +0000
commita07c88c0e8122047e77954a885af7dfc8bcdd87f (patch)
treefe1a59748ccd21c133c66c67c42c69a4b0b7e506 /lib/AST/ItaniumMangle.cpp
parentd10551520b50a0c7c847b35ae27066fee5a6617e (diff)
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. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@333815 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/ItaniumMangle.cpp')
-rw-r--r--lib/AST/ItaniumMangle.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/AST/ItaniumMangle.cpp b/lib/AST/ItaniumMangle.cpp
index 80b91dca7f..1a656b5719 100644
--- a/lib/AST/ItaniumMangle.cpp
+++ b/lib/AST/ItaniumMangle.cpp
@@ -2552,13 +2552,6 @@ void CXXNameMangler::mangleType(const BuiltinType *T) {
case BuiltinType::Float16:
Out << "DF16_";
break;
- case BuiltinType::ShortAccum:
- case BuiltinType::Accum:
- case BuiltinType::LongAccum:
- case BuiltinType::UShortAccum:
- case BuiltinType::UAccum:
- case BuiltinType::ULongAccum:
- llvm_unreachable("Fixed point types are disabled for c++");
case BuiltinType::Half:
Out << "Dh";
break;