diff options
Diffstat (limited to 'unittests')
-rw-r--r-- | unittests/VMCore/IRBuilderTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unittests/VMCore/IRBuilderTest.cpp b/unittests/VMCore/IRBuilderTest.cpp index 86482fa..d1d59c7 100644 --- a/unittests/VMCore/IRBuilderTest.cpp +++ b/unittests/VMCore/IRBuilderTest.cpp @@ -129,7 +129,7 @@ TEST_F(IRBuilderTest, FastMathFlags) { F = Builder.CreateFAdd(F, F); EXPECT_FALSE(Builder.getFastMathFlags().any()); - FMF.UnsafeAlgebra = true; + FMF.setUnsafeAlgebra(); Builder.SetFastMathFlags(FMF); F = Builder.CreateFAdd(F, F); @@ -153,7 +153,7 @@ TEST_F(IRBuilderTest, FastMathFlags) { EXPECT_FALSE(FDiv->hasAllowReciprocal()); FMF.clear(); - FMF.AllowReciprocal = true; + FMF.setAllowReciprocal(); Builder.SetFastMathFlags(FMF); F = Builder.CreateFDiv(F, F); |