summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2013-06-01 22:29:41 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2013-06-01 22:29:41 +0000
commit0bb474fdb20d867304f846bdd5e8d5b6775200a2 (patch)
tree1640777017c1012e02380a06368a94975a8f2c07
parent3f715e260a372e32fe4635d7510eaee11d53129d (diff)
downloadbcm5719-llvm-0bb474fdb20d867304f846bdd5e8d5b6775200a2.tar.gz
bcm5719-llvm-0bb474fdb20d867304f846bdd5e8d5b6775200a2.zip
Try to avoid "integer literal too big" warnings from older GCCs.
llvm-svn: 183081
-rw-r--r--llvm/unittests/ADT/APFloatTest.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/llvm/unittests/ADT/APFloatTest.cpp b/llvm/unittests/ADT/APFloatTest.cpp
index 72403f4f142..14e99159a97 100644
--- a/llvm/unittests/ADT/APFloatTest.cpp
+++ b/llvm/unittests/ADT/APFloatTest.cpp
@@ -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) {
OpenPOWER on IntegriCloud