[llvm] [IR][RISCV] Add llvm.vector.(de)interleave3/5/7 (PR #124825)
Min-Yih Hsu via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 5 09:18:41 PST 2025
================
@@ -300,6 +300,8 @@ def IIT_V1 : IIT_Vec<1, 28>;
def IIT_VARARG : IIT_VT<isVoid, 29>;
def IIT_HALF_VEC_ARG : IIT_Base<30>;
def IIT_SAME_VEC_WIDTH_ARG : IIT_Base<31>;
+def IIT_ONE_THIRD_VEC_ARG : IIT_Base<32>;
----------------
mshockwave wrote:
> (I don't know why we have a bubble between 31 and 34...)
There were two IIT w.r.t legacy pointer types that got deprecated after we adopted opaque pointers.
> Why don't we make them consecutive?
I was going to make them more compact, but now you pointed out I think it's not really necessary. It is fixed now.
https://github.com/llvm/llvm-project/pull/124825
More information about the llvm-commits
mailing list