Implement 16-bit microMIPS jump instruction with no delay slot - JRC.
Details
Details
Diff Detail
Diff Detail
Event Timeline
lib/Target/Mips/MicroMipsInstrInfo.td | ||
---|---|---|
139 | jrc is not a call instruction, so isCall should be set to 0, and also comment should be changed. | |
test/MC/Mips/micromips-16-bit-instructions.s | ||
16 | jrc has no delay slot, so you should check it here, by using NEXT to ensure that next instruction is the one that follows in the .s file. | |
28 | Same here. |
jrc is not a call instruction, so isCall should be set to 0, and also comment should be changed.