[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.

llvm-svn: 243252

clang/lib/AST/StmtPrinter.cpp

index 2428773..30f15e0 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;
   }
 }