Skip to content
Snippets Groups Projects
Commit 3cab3740 authored by Aaron Ballman's avatar Aaron Ballman
Browse files

Silencing an MSVC warning.

llvm-svn: 192042
parent 7200a46c
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment