From 1638b839090a35adcd5a4b4cc0a649352276e703 Mon Sep 17 00:00:00 2001 From: Michael Ilseman Date: Sun, 9 Dec 2012 21:12:04 +0000 Subject: Reorganize FastMathFlags to be a wrapper around unsigned, and streamline some interfaces. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169712 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/VMCore/IRBuilderTest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'unittests') 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); -- cgit v1.1