Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
llvm/lib/Target/RISCV/RISCVISelLowering.cpp | ||
---|---|---|
6641 | Nit: you could replace this with for (SDValue Op : N->ops()) |
llvm/lib/Target/RISCV/RISCVISelLowering.cpp | ||
---|---|---|
6641 | Sorry, you'd actually need for (SDValue Op : drop_begin(N->ops())). Not quite as compelling a replacement, but might be worth considering. |
llvm/lib/Target/RISCV/RISCVISelLowering.cpp | ||
---|---|---|
6639 | 8 seems high. Are we ever using more than 3? |
llvm/lib/Target/RISCV/RISCVISelLowering.cpp | ||
---|---|---|
6639 | Name should be plural |
Comment Actions
LGTM, but please update the commit title since you also changed becompress, bdecompress and bfp.
8 seems high. Are we ever using more than 3?