diff options
| author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-09-24 00:34:18 +0000 |
|---|---|---|
| committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-09-24 00:34:18 +0000 |
| commit | f5a898c30598ca6c9e1dc320197ede869b12692b (patch) | |
| tree | 112fa91112c9f4fe66c701de6926eb7cb0e56924 | |
| parent | 24bef9a4e99efa159cc0577f19625d2a97839475 (diff) | |
| download | bcm5719-llvm-f5a898c30598ca6c9e1dc320197ede869b12692b.tar.gz bcm5719-llvm-f5a898c30598ca6c9e1dc320197ede869b12692b.zip | |
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).
llvm-svn: 164478
| -rw-r--r-- | clang/unittests/AST/StmtPrinterTest.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/clang/unittests/AST/StmtPrinterTest.cpp b/clang/unittests/AST/StmtPrinterTest.cpp index f4ca312730e..0fd1b2e6c3c 100644 --- a/clang/unittests/AST/StmtPrinterTest.cpp +++ b/clang/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. |

