diff options
Diffstat (limited to 'llvm/lib/Target')
| -rw-r--r-- | llvm/lib/Target/RISCV/RISCVInstrInfo.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/llvm/lib/Target/RISCV/RISCVInstrInfo.cpp b/llvm/lib/Target/RISCV/RISCVInstrInfo.cpp index 2608906bb43..99c8d2ef73d 100644 --- a/llvm/lib/Target/RISCV/RISCVInstrInfo.cpp +++ b/llvm/lib/Target/RISCV/RISCVInstrInfo.cpp @@ -290,9 +290,9 @@ unsigned RISCVInstrInfo::removeBranch(MachineBasicBlock &MBB,      return 0;    // Remove the branch. -  I->eraseFromParent();    if (BytesRemoved)      *BytesRemoved += getInstSizeInBytes(*I); +  I->eraseFromParent();    I = MBB.end(); @@ -303,9 +303,9 @@ unsigned RISCVInstrInfo::removeBranch(MachineBasicBlock &MBB,      return 1;    // Remove the branch. -  I->eraseFromParent();    if (BytesRemoved)      *BytesRemoved += getInstSizeInBytes(*I); +  I->eraseFromParent();    return 2;  } | 

