1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Silencing an MSVC warning.

llvm-svn: 192042
This commit is contained in:
Aaron Ballman 2013-10-05 19:41:41 +00:00
parent 3a6afef4e7
commit 197142c475

View File

@ -187,8 +187,8 @@ TEST_F(IRBuilderTest, RAIIHelpersTest) {
EXPECT_FALSE(Builder.getFastMathFlags().allowReciprocal());
MDBuilder MDB(M->getContext());
MDNode *FPMathA = MDB.createFPMath(0.01);
MDNode *FPMathB = MDB.createFPMath(0.1);
MDNode *FPMathA = MDB.createFPMath(0.01f);
MDNode *FPMathB = MDB.createFPMath(0.1f);
Builder.SetDefaultFPMathTag(FPMathA);