forked from OSchip/llvm-project
TargetOptions: Fix not accounting for NoSignedZerosFPMath in ==
llvm-svn: 295928
This commit is contained in:
parent
65316d7b36
commit
3e9ce44eee
|
@ -283,6 +283,7 @@ inline bool operator==(const TargetOptions &LHS,
|
|||
ARE_EQUAL(NoInfsFPMath) &&
|
||||
ARE_EQUAL(NoNaNsFPMath) &&
|
||||
ARE_EQUAL(NoTrappingFPMath) &&
|
||||
ARE_EQUAL(NoSignedZerosFPMath) &&
|
||||
ARE_EQUAL(HonorSignDependentRoundingFPMathOption) &&
|
||||
ARE_EQUAL(NoZerosInBSS) &&
|
||||
ARE_EQUAL(GuaranteedTailCallOpt) &&
|
||||
|
|
Loading…
Reference in New Issue