r243252 - [AST] It should be impossible to get Int128 or UInt128 into VisitIntegerLiteral
David Majnemer
david.majnemer at gmail.com
Sun Jul 26 11:33:32 PDT 2015
Author: majnemer
Date: Sun Jul 26 13:33:32 2015
New Revision: 243252
URL: http://llvm.org/viewvc/llvm-project?rev=243252&view=rev
Log:
[AST] It should be impossible to get Int128 or UInt128 into VisitIntegerLiteral
These cases should now be impossible as of r243243.
Modified:
cfe/trunk/lib/AST/StmtPrinter.cpp
Modified: cfe/trunk/lib/AST/StmtPrinter.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/StmtPrinter.cpp?rev=243252&r1=243251&r2=243252&view=diff
==============================================================================
--- cfe/trunk/lib/AST/StmtPrinter.cpp (original)
+++ cfe/trunk/lib/AST/StmtPrinter.cpp Sun Jul 26 13:33:32 2015
@@ -1115,8 +1115,6 @@ void StmtPrinter::VisitIntegerLiteral(In
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;
}
}
More information about the cfe-commits
mailing list