[llvm] [InstCombine] Fold fneg/fabs patterns with ppc_f128 (PR #130557)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 10 01:04:47 PDT 2025


================
@@ -2637,18 +2637,15 @@ Instruction *InstCombinerImpl::visitAnd(BinaryOperator &I) {
   // This is a generous interpretation for noimplicitfloat, this is not a true
   // floating-point operation.
   //
-  // Assumes any IEEE-represented type has the sign bit in the high bit.
+  // Assumes any floating point type has the sign bit in the high bit.
   // TODO: Unify with APInt matcher. This version allows undef unlike m_APInt
   Value *CastOp;
   if (match(Op0, m_ElementWiseBitCast(m_Value(CastOp))) &&
-      match(Op1, m_MaxSignedValue()) &&
+      CastOp->getType()->isFPOrFPVectorTy() && match(Op1, m_MaxSignedValue()) &&
----------------
arsenm wrote:

It might be worth wrapping this in a predicate with this explicit property 

https://github.com/llvm/llvm-project/pull/130557


More information about the llvm-commits mailing list