File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -6502,13 +6502,11 @@ bool SITargetLowering::enableAggressiveFMAFusion(EVT VT) const {
65026502 // When fma is quarter rate, for f64 where add / sub are at best half rate,
65036503 // most of these combines appear to be cycle neutral but save on instruction
65046504 // count / code size.
6505- return Subtarget->hasFastFMAF32() &&
6506- !Subtarget->hasDisableAggressiveFMAFusion();
6505+ return !Subtarget->hasDisableAggressiveFMAFusion();
65076506}
65086507
65096508bool SITargetLowering::enableAggressiveFMAFusion(LLT Ty) const {
6510- return Subtarget->hasFastFMAF32() &&
6511- !Subtarget->hasDisableAggressiveFMAFusion();
6509+ return !Subtarget->hasDisableAggressiveFMAFusion();
65126510}
65136511
65146512EVT SITargetLowering::getSetCCResultType(const DataLayout &DL, LLVMContext &Ctx,
You can’t perform that action at this time.
0 commit comments