aboutsummaryrefslogtreecommitdiff
path: root/unittests/AST/StmtPrinterTest.cpp
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2012-09-24 00:34:18 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2012-09-24 00:34:18 +0000
commit11e141d61637ac04f7de71141de9d371df728a38 (patch)
treeade377d08394ec7dfee80dce8c6072e0320a1eb6 /unittests/AST/StmtPrinterTest.cpp
parent525394e6c2b0cd0ef4de47a402e82029402ff360 (diff)
unittests/AST/StmtPrinterTest.cpp: Suppress a LP64-assumed test, "0x100000000i128 => 4294967296L", for now.
LONG_MAX is 2147483647L on common 32 bit and LLP64 (Windows x64). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@164478 91177308-0d34-0410-b5e6-96231b3b80d8
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.