summaryrefslogtreecommitdiff
path: root/lib/Bitcode/Writer
diff options
context:
space:
mode:
authorMichael Ilseman <milseman@apple.com>2012-12-09 20:23:16 +0000
committerMichael Ilseman <milseman@apple.com>2012-12-09 20:23:16 +0000
commit855d0255d0bc388da7554d05f8cf184e26f5a00d (patch)
tree3c558d1c44cbb948f52796118854d2e8444cbb31 /lib/Bitcode/Writer
parentb48fdbc811b0bf7dec0780b4d03169d8ee835d03 (diff)
downloadllvm-855d0255d0bc388da7554d05f8cf184e26f5a00d.tar.gz
llvm-855d0255d0bc388da7554d05f8cf184e26f5a00d.tar.bz2
llvm-855d0255d0bc388da7554d05f8cf184e26f5a00d.tar.xz
Have the bitcode reader/writer just use FPMathOperator's fast math enum directly
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169710 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bitcode/Writer')
-rw-r--r--lib/Bitcode/Writer/BitcodeWriter.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/Bitcode/Writer/BitcodeWriter.cpp b/lib/Bitcode/Writer/BitcodeWriter.cpp
index d616eda9b9..f2fe0aef68 100644
--- a/lib/Bitcode/Writer/BitcodeWriter.cpp
+++ b/lib/Bitcode/Writer/BitcodeWriter.cpp
@@ -552,15 +552,15 @@ static uint64_t GetOptimizationFlags(const Value *V) {
} else if (const FPMathOperator *FPMO =
dyn_cast<const FPMathOperator>(V)) {
if (FPMO->hasUnsafeAlgebra())
- Flags |= 1 << bitc::FMF_UNSAFE_ALGEBRA;
+ Flags |= FPMathOperator::UnsafeAlgebra;
if (FPMO->hasNoNaNs())
- Flags |= 1 << bitc::FMF_NO_NANS;
+ Flags |= FPMathOperator::NoNaNs;
if (FPMO->hasNoInfs())
- Flags |= 1 << bitc::FMF_NO_INFS;
+ Flags |= FPMathOperator::NoInfs;
if (FPMO->hasNoSignedZeros())
- Flags |= 1 << bitc::FMF_NO_SIGNED_ZEROS;
+ Flags |= FPMathOperator::NoSignedZeros;
if (FPMO->hasAllowReciprocal())
- Flags |= 1 << bitc::FMF_ALLOW_RECIPROCAL;
+ Flags |= FPMathOperator::AllowReciprocal;
}
return Flags;