diff options
Diffstat (limited to 'llvm/lib/Target/AVR/AVRInstrInfo.h')
-rw-r--r-- | llvm/lib/Target/AVR/AVRInstrInfo.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/lib/Target/AVR/AVRInstrInfo.h b/llvm/lib/Target/AVR/AVRInstrInfo.h index 468bf9aa0e9..f6a3210e28b 100644 --- a/llvm/lib/Target/AVR/AVRInstrInfo.h +++ b/llvm/lib/Target/AVR/AVRInstrInfo.h @@ -96,8 +96,10 @@ public: bool AllowModify = false) const override; unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB, MachineBasicBlock *FBB, ArrayRef<MachineOperand> Cond, - const DebugLoc &DL) const override; - unsigned RemoveBranch(MachineBasicBlock &MBB) const override; + const DebugLoc &DL, + int *BytesAdded = nullptr) const override; + unsigned RemoveBranch(MachineBasicBlock &MBB, + int *BytesRemoved = nullptr) const override; bool ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const override; |