diff options
author | Evan Cheng <evan.cheng@apple.com> | 2010-07-15 22:07:12 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2010-07-15 22:07:12 +0000 |
commit | 55f0c6b9fc7e97429897191d3ab170281cd39fdf (patch) | |
tree | 350533241373cedd887bda96676a912a2810abe5 /llvm/lib/CodeGen/Analysis.cpp | |
parent | ec624b2d19a976388490ebc5d8ca81f81fd16602 (diff) | |
download | bcm5719-llvm-55f0c6b9fc7e97429897191d3ab170281cd39fdf.tar.gz bcm5719-llvm-55f0c6b9fc7e97429897191d3ab170281cd39fdf.zip |
Split -enable-finite-only-fp-math to two options:
-enable-no-nans-fp-math and -enable-no-infs-fp-math. All of the current codegen fp math optimizations only care whether the fp arithmetics arguments and results can never be NaN.
llvm-svn: 108465
Diffstat (limited to 'llvm/lib/CodeGen/Analysis.cpp')
-rw-r--r-- | llvm/lib/CodeGen/Analysis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/Analysis.cpp b/llvm/lib/CodeGen/Analysis.cpp index f71eee5d01b..a20d8107dc4 100644 --- a/llvm/lib/CodeGen/Analysis.cpp +++ b/llvm/lib/CodeGen/Analysis.cpp @@ -171,7 +171,7 @@ ISD::CondCode llvm::getFCmpCondCode(FCmpInst::Predicate Pred) { FOC = FPC = ISD::SETFALSE; break; } - if (FiniteOnlyFPMath()) + if (NoNaNsFPMath) return FOC; else return FPC; |