This patch adds support for masked scatter intrinsics on scalable vector
types. It is mostly an extension of the earlier masked gather support
introduced in D96263, since the addressing mode legalization is the
same.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
llvm/lib/Target/RISCV/RISCVISelLowering.cpp | ||
---|---|---|
3511 | Is there a truncating scatter? Should we assert that this isn't one like we do for extending MGATHER? |
Comment Actions
- add assertion against truncating scatters
llvm/lib/Target/RISCV/RISCVISelLowering.cpp | ||
---|---|---|
3511 | Yes, we should. It was tested in this MR but I forgot to put the assert in. Cheers! |
Is there a truncating scatter? Should we assert that this isn't one like we do for extending MGATHER?