[PATCH] D18079: [MCSchedule] Remove comments about MinLatency. NFC
Junmo Park via llvm-commits
llvm-commits at lists.llvm.org
Sun Mar 13 17:41:19 PDT 2016
This revision was automatically updated to reflect the committed changes.
Closed by commit rL263403: [MCSchedule] Remove comments about MinLatency. NFC (authored by flyingforyou).
Changed prior to commit:
http://reviews.llvm.org/D18079?vs=50406&id=50562#toc
Repository:
rL LLVM
http://reviews.llvm.org/D18079
Files:
llvm/trunk/include/llvm/MC/MCSchedule.h
Index: llvm/trunk/include/llvm/MC/MCSchedule.h
===================================================================
--- llvm/trunk/include/llvm/MC/MCSchedule.h
+++ llvm/trunk/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.50562.patch
Type: text/x-patch
Size: 957 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160314/49544d55/attachment.bin>
More information about the llvm-commits
mailing list