diff options
Diffstat (limited to 'llvm/include/llvm/CodeGen/CommandFlags.h')
| -rw-r--r-- | llvm/include/llvm/CodeGen/CommandFlags.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/include/llvm/CodeGen/CommandFlags.h b/llvm/include/llvm/CodeGen/CommandFlags.h index 0eacf07c710..65ca7a7e613 100644 --- a/llvm/include/llvm/CodeGen/CommandFlags.h +++ b/llvm/include/llvm/CodeGen/CommandFlags.h @@ -155,8 +155,8 @@ EnableNoTrappingFPMath("enable-no-trapping-fp-math", "attribute not to use exceptions"), cl::init(false)); -cl::opt<llvm::FPDenormal::DenormalType> -DenormalType("denormal-fp-math", +cl::opt<llvm::FPDenormal::DenormalMode> +DenormalMode("denormal-fp-math", cl::desc("Select which denormal numbers the code is permitted to require"), cl::init(FPDenormal::IEEE), cl::values( @@ -310,7 +310,7 @@ static inline TargetOptions InitTargetOptionsFromCodeGenFlags() { Options.NoInfsFPMath = EnableNoInfsFPMath; Options.NoNaNsFPMath = EnableNoNaNsFPMath; Options.NoTrappingFPMath = EnableNoTrappingFPMath; - Options.FPDenormalType = DenormalType; + Options.FPDenormalMode = DenormalMode; Options.HonorSignDependentRoundingFPMathOption = EnableHonorSignDependentRoundingFPMath; if (FloatABIForCalls != FloatABI::Default) |

