The previous T2 ADC instruction requires three operands. This patch
supports its shortened forms.
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
llvm/lib/Target/ARM/ARMInstrThumb2.td | ||
---|---|---|
1026–1027 | Nit: It looks like PostISelHook needn't be a parameter if it is always passed 1. |
llvm/lib/Target/ARM/ARMInstrThumb2.td | ||
---|---|---|
1026–1027 | I wasn't sure if other instructions wanted to use T2I_adde_sube_irs without PostISelHook, even though none do right now, which is why i suggested this approach, but maybe the instruction definitions are now stable enough that this would be fine? |
llvm/lib/Target/ARM/ARMInstrThumb2.td | ||
---|---|---|
1026–1027 | It's not a big deal either way. Arm is fairly stable though, and if the parameter is needed by another patch I would suggest it should be simple enough to add there. |
Nit: It looks like PostISelHook needn't be a parameter if it is always passed 1.