projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
84879b7
)
[AST] It should be impossible to get Int128 or UInt128 into VisitIntegerLiteral
author
David Majnemer
<david.majnemer@gmail.com>
Sun, 26 Jul 2015 18:33:32 +0000
(18:33 +0000)
committer
David 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
patch
|
blob
|
history
diff --git
a/clang/lib/AST/StmtPrinter.cpp
b/clang/lib/AST/StmtPrinter.cpp
index
2428773
..
30f15e0
100644
(file)
--- a/
clang/lib/AST/StmtPrinter.cpp
+++ b/
clang/lib/AST/StmtPrinter.cpp
@@
-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;
}
}