[llvm] [RISCV][GISel] Support select vector load intrinsics (PR #160720)
Jianjian Guan via llvm-commits
llvm-commits at lists.llvm.org
Sat Oct 11 02:21:45 PDT 2025
================
@@ -716,6 +825,9 @@ bool RISCVInstructionSelector::select(MachineInstr &MI) {
return true;
}
+ if (earlySelect(MI, MIB))
----------------
jacquesguan wrote:
The motivation is that we process those intrinsics before pattern match in SelectionDAG. Now I move it after selectImpl.
https://github.com/llvm/llvm-project/pull/160720
More information about the llvm-commits
mailing list