]> granicus.if.org Git - clang/commitdiff
[AST] It should be impossible to get Int128 or UInt128 into VisitIntegerLiteral
authorDavid Majnemer <david.majnemer@gmail.com>
Sun, 26 Jul 2015 18:33:32 +0000 (18:33 +0000)
committerDavid Majnemer <david.majnemer@gmail.com>
Sun, 26 Jul 2015 18:33:32 +0000 (18:33 +0000)
These cases should now be impossible as of r243243.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@243252 91177308-0d34-0410-b5e6-96231b3b80d8

lib/AST/StmtPrinter.cpp

index 242877395d029d2e04b16e39dae5059ccb9e6fae..30f15e037baa2606d672363cd6873f2fe5cade4a 100644 (file)
@@ -1115,8 +1115,6 @@ void StmtPrinter::VisitIntegerLiteral(IntegerLiteral *Node) {
   case BuiltinType::ULong:     OS << "UL"; break;
   case BuiltinType::LongLong:  OS << "LL"; break;
   case BuiltinType::ULongLong: OS << "ULL"; break;
-  case BuiltinType::Int128:    OS << "i128"; break;
-  case BuiltinType::UInt128:   OS << "Ui128"; break;
   }
 }