diff options
author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2017-02-23 03:16:44 +0000 |
---|---|---|
committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2017-02-23 03:16:44 +0000 |
commit | 3e9ce44eee72818c753184afc77b0537b4709c69 (patch) | |
tree | 0b6ef61e70f2f105d9a9b3a07fe58428acf15571 | |
parent | 65316d7b36107395c4fc4736495077b025bca518 (diff) | |
download | bcm5719-llvm-3e9ce44eee72818c753184afc77b0537b4709c69.tar.gz bcm5719-llvm-3e9ce44eee72818c753184afc77b0537b4709c69.zip |
TargetOptions: Fix not accounting for NoSignedZerosFPMath in ==
llvm-svn: 295928
-rw-r--r-- | llvm/include/llvm/Target/TargetOptions.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/include/llvm/Target/TargetOptions.h b/llvm/include/llvm/Target/TargetOptions.h index a74afa17282..f7d07b95eb2 100644 --- a/llvm/include/llvm/Target/TargetOptions.h +++ b/llvm/include/llvm/Target/TargetOptions.h @@ -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) && |