summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/AVR/AVRInstrInfo.h
diff options
context:
space:
mode:
authorMatt Arsenault <Matthew.Arsenault@amd.com>2016-09-14 17:23:48 +0000
committerMatt Arsenault <Matthew.Arsenault@amd.com>2016-09-14 17:23:48 +0000
commita2b036e88b8f31c4a2169c1d5634e21c9c8eb927 (patch)
tree42c193d75f862e2c4580fe41e0da38f3a3d5765c /llvm/lib/Target/AVR/AVRInstrInfo.h
parentc531c9ebf555c2c96d62e2d0e956697fe7011cc3 (diff)
downloadbcm5719-llvm-a2b036e88b8f31c4a2169c1d5634e21c9c8eb927.tar.gz
bcm5719-llvm-a2b036e88b8f31c4a2169c1d5634e21c9c8eb927.zip
AArch64: Use TTI branch functions in branch relaxation
The main change is to return the code size from InsertBranch/RemoveBranch. Patch mostly by Tim Northover llvm-svn: 281505
Diffstat (limited to 'llvm/lib/Target/AVR/AVRInstrInfo.h')
-rw-r--r--llvm/lib/Target/AVR/AVRInstrInfo.h6
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;
OpenPOWER on IntegriCloud