[llvm] [SLP]Enable float point math ops as copyables elements. (PR #169857)
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Wed Dec 3 08:39:28 PST 2025
================
@@ -11198,6 +11197,10 @@ class InstructionsCompatibilityAnalysis {
case Instruction::And:
case Instruction::Or:
case Instruction::Xor:
+ case Instruction::FAdd:
+ case Instruction::FMul:
+ case Instruction::FSub:
+ case Instruction::FDiv:
----------------
RKSimon wrote:
Instruction::FRem?
https://github.com/llvm/llvm-project/pull/169857
More information about the llvm-commits
mailing list