diff options
author | Michael Ilseman <milseman@apple.com> | 2012-12-09 21:12:04 +0000 |
---|---|---|
committer | Michael Ilseman <milseman@apple.com> | 2012-12-09 21:12:04 +0000 |
commit | 1638b839090a35adcd5a4b4cc0a649352276e703 (patch) | |
tree | 75ebe44245b37a5d6355fee63d6d7b0216bcf4f6 /unittests | |
parent | 880166684e5af0f5b4bfe26870b9f7813e537354 (diff) | |
download | external_llvm-1638b839090a35adcd5a4b4cc0a649352276e703.zip external_llvm-1638b839090a35adcd5a4b4cc0a649352276e703.tar.gz external_llvm-1638b839090a35adcd5a4b4cc0a649352276e703.tar.bz2 |
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
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); |