See description in test.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
LGTM.
llvm/test/CodeGen/RISCV/rv64zba.ll | ||
---|---|---|
377 | I'm not quite sure what The shl usage is unnecessary means here. I think it's the word "usage" here which is a bit overloaded in this context. Is this saying that the shl user of the sext_inreg shouldn't "count" if it's selected as sllw because it sign extends its input anyway? My first thought was "usage" meant the shl itself is unnecessary in the program, which isn't right. I might be overcomplicating things based on my initial reading. |
llvm/test/CodeGen/RISCV/rv64zba.ll | ||
---|---|---|
377 | It means the shl usage of the sext_inreg. I'll fix it. |
I'm not quite sure what The shl usage is unnecessary means here. I think it's the word "usage" here which is a bit overloaded in this context. Is this saying that the shl user of the sext_inreg shouldn't "count" if it's selected as sllw because it sign extends its input anyway?
My first thought was "usage" meant the shl itself is unnecessary in the program, which isn't right. I might be overcomplicating things based on my initial reading.