diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2012-08-06 22:34:51 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2012-08-06 22:34:51 +0000 |
commit | ebd78710eb12794d9b8ca0307ae1f916e0ecbe80 (patch) | |
tree | b683a951f3536f59d22a6574be2cceac71de5f3e /include | |
parent | 9ac0aaa6afe4162b4db32833f9f176ac05ce6f8f (diff) | |
download | external_llvm-ebd78710eb12794d9b8ca0307ae1f916e0ecbe80.zip external_llvm-ebd78710eb12794d9b8ca0307ae1f916e0ecbe80.tar.gz external_llvm-ebd78710eb12794d9b8ca0307ae1f916e0ecbe80.tar.bz2 |
Fix typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@161354 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/MC/MCSchedule.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/MC/MCSchedule.h b/include/llvm/MC/MCSchedule.h index 49e3fee..626accb 100644 --- a/include/llvm/MC/MCSchedule.h +++ b/include/llvm/MC/MCSchedule.h @@ -90,7 +90,7 @@ public: // target code can use it in static initializers. The defaults need to be // initialized in this default ctor because some clients directly instantiate // MCSchedModel instead of using a generated itinerary. - MCSchedModel(): IssueWidth(DefaultMinLatency), + MCSchedModel(): IssueWidth(DefaultIssueWidth), MinLatency(DefaultMinLatency), LoadLatency(DefaultLoadLatency), HighLatency(DefaultHighLatency), |