Try to avoid "integer literal too big" warnings from older GCCs.
authorBenjamin Kramer <benny.kra@googlemail.com>
Sat, 1 Jun 2013 22:29:41 +0000 (22:29 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Sat, 1 Jun 2013 22:29:41 +0000 (22:29 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183081 91177308-0d34-0410-b5e6-96231b3b80d8

unittests/ADT/APFloatTest.cpp

index 72403f4f142cb337703228fefeb4f5a25b5c4394..14e99159a97cf745a9eeecee1caf64f7e1908bb1 100644 (file)
@@ -1280,19 +1280,19 @@ TEST(APFloatTest, getZero) {
     const bool sign;
     const unsigned long long bitPattern[2];
     const unsigned bitPatternLength;
-  } GetZeroTest[] = {
+  } const GetZeroTest[] = {
     { &APFloat::IEEEhalf, false, {0, 0}, 1},
-    { &APFloat::IEEEhalf, true, {0x8000, 0}, 1},
+    { &APFloat::IEEEhalf, true, {0x8000ULL, 0}, 1},
     { &APFloat::IEEEsingle, false, {0, 0}, 1},
-    { &APFloat::IEEEsingle, true, {0x80000000, 0}, 1},
+    { &APFloat::IEEEsingle, true, {0x80000000ULL, 0}, 1},
     { &APFloat::IEEEdouble, false, {0, 0}, 1},
-    { &APFloat::IEEEdouble, true, {0x8000000000000000, 0}, 1},
+    { &APFloat::IEEEdouble, true, {0x8000000000000000ULL, 0}, 1},
     { &APFloat::IEEEquad, false, {0, 0}, 2},
-    { &APFloat::IEEEquad, true, {0, 0x8000000000000000}, 2},
+    { &APFloat::IEEEquad, true, {0, 0x8000000000000000ULL}, 2},
     { &APFloat::PPCDoubleDouble, false, {0, 0}, 2},
-    { &APFloat::PPCDoubleDouble, true, {0x8000000000000000, 0}, 2},
+    { &APFloat::PPCDoubleDouble, true, {0x8000000000000000ULL, 0}, 2},
     { &APFloat::x87DoubleExtended, false, {0, 0}, 2},
-    { &APFloat::x87DoubleExtended, true, {0, 0x8000}, 2},
+    { &APFloat::x87DoubleExtended, true, {0, 0x8000ULL}, 2},
   };
   const unsigned NumGetZeroTests = 12;
   for (unsigned i = 0; i < NumGetZeroTests; ++i) {