Add fixed-length vector instrinsics for segment load.
Inspired by reviews.llvm.org/D107790.
These fixed-length vector segNload instrinsics would be helpful to https://reviews.llvm.org/D107210.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
llvm/lib/Target/RISCV/RISCVISelLowering.cpp | ||
---|---|---|
4913 | Unexcepted -> Unexpected | |
4921 | You don't need a SmallVector, the number of items is fixed. You can use a plain array. | |
4925 | I think you can do SmallVector<EVT, 8> ContainerVTs(NF, ContainerVT); and avoid the loop. | |
4935 | Drop the curly braces around a single line body. |
Unexcepted -> Unexpected