aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Target/TargetInstrInfo.h
diff options
context:
space:
mode:
authorKay Tiong Khoo <kkhoo@perfwizard.com>2012-06-13 15:53:04 +0000
committerKay Tiong Khoo <kkhoo@perfwizard.com>2012-06-13 15:53:04 +0000
commit575e90e955064f60ac66230dce6c27653973c149 (patch)
tree97458bc6a87b9b785af8b80e2ff40341cb65fce5 /include/llvm/Target/TargetInstrInfo.h
parent4f81768d448f909f503885520928b1723f0388a3 (diff)
downloadexternal_llvm-575e90e955064f60ac66230dce6c27653973c149.zip
external_llvm-575e90e955064f60ac66230dce6c27653973c149.tar.gz
external_llvm-575e90e955064f60ac66230dce6c27653973c149.tar.bz2
*typo: Cyles changed to Cycles
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158404 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target/TargetInstrInfo.h')
-rw-r--r--include/llvm/Target/TargetInstrInfo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Target/TargetInstrInfo.h b/include/llvm/Target/TargetInstrInfo.h
index 0db9b52..4e73139 100644
--- a/include/llvm/Target/TargetInstrInfo.h
+++ b/include/llvm/Target/TargetInstrInfo.h
@@ -320,7 +320,7 @@ public:
/// being executed is given by Probability, and Confidence is a measure
/// of our confidence that it will be properly predicted.
virtual
- bool isProfitableToIfCvt(MachineBasicBlock &MBB, unsigned NumCyles,
+ bool isProfitableToIfCvt(MachineBasicBlock &MBB, unsigned NumCycles,
unsigned ExtraPredCycles,
const BranchProbability &Probability) const {
return false;
@@ -348,7 +348,7 @@ public:
/// Probability, and Confidence is a measure of our confidence that it
/// will be properly predicted.
virtual bool
- isProfitableToDupForIfCvt(MachineBasicBlock &MBB, unsigned NumCyles,
+ isProfitableToDupForIfCvt(MachineBasicBlock &MBB, unsigned NumCycles,
const BranchProbability &Probability) const {
return false;
}