[llvm] [RISCV][VLOPT] Added support for vmv.s.x and vfmv.s.f (PR #149562)
Mikhail R. Gadelha via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 30 10:17:00 PDT 2025
================
@@ -1026,6 +1026,11 @@ static bool isSupportedInstr(const MachineInstr &MI) {
case RISCV::VSSRA_VV:
case RISCV::VSSRA_VX:
case RISCV::VSSRA_VI:
+ // Vector Permutation Instructions
+ // Integer Scalar Move Instructions
+ // Floating-Point Scalar Move Instructions
+ case RISCV::VMV_S_X:
+ case RISCV::VFMV_S_F:
----------------
mikhailramalho wrote:
done
https://github.com/llvm/llvm-project/pull/149562
More information about the llvm-commits
mailing list