diff options
author | Junmo Park <junmoz.park@samsung.com> | 2016-03-14 00:36:19 +0000 |
---|---|---|
committer | Junmo Park <junmoz.park@samsung.com> | 2016-03-14 00:36:19 +0000 |
commit | 917cceb6fa124da37aee711db9a81b74f2cadd55 (patch) | |
tree | eb8fca251c5a6e56eece8937a9e0aaa22c029567 | |
parent | 9b7aaafc6af558e8cd01d1bd79fd73ea3fe1ed05 (diff) | |
download | bcm5719-llvm-917cceb6fa124da37aee711db9a81b74f2cadd55.tar.gz bcm5719-llvm-917cceb6fa124da37aee711db9a81b74f2cadd55.zip |
[MCSchedule] Remove comments about MinLatency. NFC
Summary:
There is no definition about MinLatency any more.
Reviewers: mcrosier, spatel, hfinkel
Differential Revision: http://reviews.llvm.org/D18079
llvm-svn: 263403
-rw-r--r-- | llvm/include/llvm/MC/MCSchedule.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/include/llvm/MC/MCSchedule.h b/llvm/include/llvm/MC/MCSchedule.h index d7f9b69a9a2..37728797f62 100644 --- a/llvm/include/llvm/MC/MCSchedule.h +++ b/llvm/include/llvm/MC/MCSchedule.h @@ -165,9 +165,6 @@ struct MCSchedModel { static const unsigned DefaultLoopMicroOpBufferSize = 0; // LoadLatency is the expected latency of load instructions. - // - // If MinLatency >= 0, this may be overriden for individual load opcodes by - // InstrItinerary OperandCycles. unsigned LoadLatency; static const unsigned DefaultLoadLatency = 4; @@ -175,7 +172,6 @@ struct MCSchedModel { // See TargetInstrInfo::isHighLatencyDef(). // By default, this is set to an arbitrarily high number of cycles // likely to have some impact on scheduling heuristics. - // If MinLatency >= 0, this may be overriden by InstrItinData OperandCycles. unsigned HighLatency; static const unsigned DefaultHighLatency = 10; |