summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/ARM/ARMBaseInstrInfo.h
diff options
context:
space:
mode:
authorCong Hou <congh@google.com>2015-09-10 23:10:42 +0000
committerCong Hou <congh@google.com>2015-09-10 23:10:42 +0000
commitc536bd9e73a4a525771e41b15b209dd1149040cd (patch)
treed970ad9b5d98a82d28a8f3c51d04b2dd1db6b27a /llvm/lib/Target/ARM/ARMBaseInstrInfo.h
parenta29c612ddd84e91718fbb8915a25a50f9c4a3f88 (diff)
downloadbcm5719-llvm-c536bd9e73a4a525771e41b15b209dd1149040cd.tar.gz
bcm5719-llvm-c536bd9e73a4a525771e41b15b209dd1149040cd.zip
Pass BranchProbability/BlockMass by value instead of const& as they are small. NFC.
llvm-svn: 247357
Diffstat (limited to 'llvm/lib/Target/ARM/ARMBaseInstrInfo.h')
-rw-r--r--llvm/lib/Target/ARM/ARMBaseInstrInfo.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/ARM/ARMBaseInstrInfo.h b/llvm/lib/Target/ARM/ARMBaseInstrInfo.h
index b4706e34893..80257afdcb9 100644
--- a/llvm/lib/Target/ARM/ARMBaseInstrInfo.h
+++ b/llvm/lib/Target/ARM/ARMBaseInstrInfo.h
@@ -224,15 +224,15 @@ public:
bool isProfitableToIfCvt(MachineBasicBlock &MBB,
unsigned NumCycles, unsigned ExtraPredCycles,
- const BranchProbability &Probability) const override;
+ BranchProbability Probability) const override;
bool isProfitableToIfCvt(MachineBasicBlock &TMBB, unsigned NumT,
unsigned ExtraT, MachineBasicBlock &FMBB,
unsigned NumF, unsigned ExtraF,
- const BranchProbability &Probability) const override;
+ BranchProbability Probability) const override;
bool isProfitableToDupForIfCvt(MachineBasicBlock &MBB, unsigned NumCycles,
- const BranchProbability &Probability) const override {
+ BranchProbability Probability) const override {
return NumCycles == 1;
}
OpenPOWER on IntegriCloud