summaryrefslogtreecommitdiff
path: root/unittests/VMCore/IRBuilderTest.cpp
diff options
context:
space:
mode:
authorMichael Ilseman <milseman@apple.com>2012-12-09 21:12:04 +0000
committerMichael Ilseman <milseman@apple.com>2012-12-09 21:12:04 +0000
commit1638b839090a35adcd5a4b4cc0a649352276e703 (patch)
tree75ebe44245b37a5d6355fee63d6d7b0216bcf4f6 /unittests/VMCore/IRBuilderTest.cpp
parent880166684e5af0f5b4bfe26870b9f7813e537354 (diff)
downloadllvm-1638b839090a35adcd5a4b4cc0a649352276e703.tar.gz
llvm-1638b839090a35adcd5a4b4cc0a649352276e703.tar.bz2
llvm-1638b839090a35adcd5a4b4cc0a649352276e703.tar.xz
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/VMCore/IRBuilderTest.cpp')
-rw-r--r--unittests/VMCore/IRBuilderTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/unittests/VMCore/IRBuilderTest.cpp b/unittests/VMCore/IRBuilderTest.cpp
index 86482fa056..d1d59c71eb 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);