mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-01 00:17:01 +00:00
Fix typos
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@213285 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -273,17 +273,17 @@ bool SIInsertWaits::insertWait(MachineBasicBlock &MBB,
|
||||
continue;
|
||||
|
||||
NeedWait = true;
|
||||
|
||||
|
||||
if (Ordered[i]) {
|
||||
unsigned Value = LastIssued.Array[i] - Required.Array[i];
|
||||
|
||||
// adjust the value to the real hardware posibilities
|
||||
// Adjust the value to the real hardware possibilities.
|
||||
Counts.Array[i] = std::min(Value, WaitCounts.Array[i]);
|
||||
|
||||
} else
|
||||
Counts.Array[i] = 0;
|
||||
|
||||
// Remember on what we have waited on
|
||||
// Remember on what we have waited on.
|
||||
WaitedOn.Array[i] = LastIssued.Array[i] - Counts.Array[i];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user