diff options
author | Oscar Fuentes <ofv@wanadoo.es> | 2011-03-01 23:11:57 +0000 |
---|---|---|
committer | Oscar Fuentes <ofv@wanadoo.es> | 2011-03-01 23:11:57 +0000 |
commit | 9bf9aa5106eb663a371b2b0bc7ab929500ad6ff9 (patch) | |
tree | b5363e683e19c72b50582f092707d3ae203c7b8c /unittests | |
parent | 0478c15d1ecdbc53cf106419629479bcb2a0f4af (diff) | |
download | external_llvm-9bf9aa5106eb663a371b2b0bc7ab929500ad6ff9.zip external_llvm-9bf9aa5106eb663a371b2b0bc7ab929500ad6ff9.tar.gz external_llvm-9bf9aa5106eb663a371b2b0bc7ab929500ad6ff9.tar.bz2 |
Fixes warnings emitted by Visual Studio 2010 compiler.
Patch by Erik Olofsson!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126796 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r-- | unittests/Support/MathExtrasTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/Support/MathExtrasTest.cpp b/unittests/Support/MathExtrasTest.cpp index 3db1f77..0a6724c 100644 --- a/unittests/Support/MathExtrasTest.cpp +++ b/unittests/Support/MathExtrasTest.cpp @@ -73,7 +73,7 @@ TEST(MathExtras, CountLeadingOnes_64) { } TEST(MathExtras, FloatBits) { - static const float kValue = 5632.34; + static const float kValue = 5632.34f; EXPECT_FLOAT_EQ(kValue, BitsToFloat(FloatToBits(kValue))); } |