llvm-svn: 219221
This commit is contained in:
Sanjay Patel 2014-10-07 17:38:33 +00:00
parent eb0cc1bbf3
commit 25d3c1cf61
1 changed files with 2 additions and 2 deletions

View File

@ -38,9 +38,9 @@ using namespace llvm;
STATISTIC(LoadsClustered, "Number of loads clustered together");
// This allows latency based scheduler to notice high latency instructions
// This allows the latency-based scheduler to notice high latency instructions
// without a target itinerary. The choice of number here has more to do with
// balancing scheduler heursitics than with the actual machine latency.
// balancing scheduler heuristics than with the actual machine latency.
static cl::opt<int> HighLatencyCycles(
"sched-high-latency-cycles", cl::Hidden, cl::init(10),
cl::desc("Roughly estimate the number of cycles that 'long latency'"