From 5736385164c5bc4d478a06f853e5b28e63a15b55 Mon Sep 17 00:00:00 2001 From: Matt Arsenault Date: Thu, 23 Feb 2017 03:16:44 +0000 Subject: [PATCH] TargetOptions: Fix not accounting for NoSignedZerosFPMath in == git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@295928 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Target/TargetOptions.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/llvm/Target/TargetOptions.h b/include/llvm/Target/TargetOptions.h index a74afa17282..f7d07b95eb2 100644 --- a/include/llvm/Target/TargetOptions.h +++ b/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) && -- 2.40.0