[PATCH] D18079: [MCSchedule] Remove comments about MinLatency. NFC
Junmo Park via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 11 02:32:06 PST 2016
flyingforyou created this revision.
flyingforyou added reviewers: spatel, hfinkel.
flyingforyou added a subscriber: llvm-commits.
Herald added a subscriber: MatzeB.
There is no definition about MinLatency any more.
http://reviews.llvm.org/D18079
Files:
include/llvm/MC/MCSchedule.h
Index: include/llvm/MC/MCSchedule.h
===================================================================
--- include/llvm/MC/MCSchedule.h
+++ include/llvm/MC/MCSchedule.h
@@ -165,17 +165,13 @@
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;
// HighLatency is the expected latency of "very high latency" operations.
// 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;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D18079.50406.patch
Type: text/x-patch
Size: 924 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160311/f054b2a5/attachment.bin>
More information about the llvm-commits
mailing list