-
Notifications
You must be signed in to change notification settings - Fork 14.9k
Closed as not planned
Labels
backend:RISC-VquestionA question, not bug report. Check out https://llvm.org/docs/GettingInvolved.html instead!A question, not bug report. Check out https://llvm.org/docs/GettingInvolved.html instead!
Description
The common root class Instruction
defines several flags to roughly classify the semantics of an instruction, among them is an isCall
and isBranch
flags.
bit isBranch = false; // Is this instruction a branch instruction? |

This flag is not set correctly in the definition of the JAL
and the JALR
instruction in RISCVInstrInfo.td
The instruction C_JR
also doesn't have the isBranch
flag set in RISCVInstrInfoC.td

Metadata
Metadata
Assignees
Labels
backend:RISC-VquestionA question, not bug report. Check out https://llvm.org/docs/GettingInvolved.html instead!A question, not bug report. Check out https://llvm.org/docs/GettingInvolved.html instead!