[llvm] [AArch64][GISel] Assign registers into FPR if they feed into FP instructions indirectly via PHI (PR #94618)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 6 08:11:40 PDT 2024


================
@@ -117,6 +117,7 @@ class MachineInstr
     NoConvergent = 1 << 17,  // Call does not require convergence guarantees.
     NonNeg = 1 << 18,        // The operand is non-negative.
     Disjoint = 1 << 19,      // Each bit is zero in at least one of the inputs.
+    DefinesFP = 1 << 20,     // Defines floating-point value
----------------
arsenm wrote:

This does not belong as an instruction flag 

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


More information about the llvm-commits mailing list