aboutsummaryrefslogtreecommitdiff
path: root/unittests/AST/StmtPrinterTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'unittests/AST/StmtPrinterTest.cpp')
-rw-r--r--unittests/AST/StmtPrinterTest.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/unittests/AST/StmtPrinterTest.cpp b/unittests/AST/StmtPrinterTest.cpp
index f4ca312730..0fd1b2e6c3 100644
--- a/unittests/AST/StmtPrinterTest.cpp
+++ b/unittests/AST/StmtPrinterTest.cpp
@@ -148,7 +148,6 @@ TEST(StmtPrinter, TestMSIntegerLiteral) {
" 1i32, -1i32, 1ui32, "
" 1i64, -1i64, 1ui64, "
" 1i128, -1i128, 1ui128, 1Ui128,"
- " 0x100000000i128,"
" 0x10000000000000000i128;"
"}",
"A",
@@ -157,7 +156,6 @@ TEST(StmtPrinter, TestMSIntegerLiteral) {
"1L , -1L , 1UL , "
"1LL , -1LL , 1ULL , "
"1 , -1 , 1U , 1U , "
- "4294967296L , "
"18446744073709551616i128"));
// Should be: with semicolon
// WRONG; all 128-bit literals should be printed as 128-bit.