diff options
Diffstat (limited to 'llvm/lib/CodeGen/PostRASchedulerList.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/PostRASchedulerList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/PostRASchedulerList.cpp b/llvm/lib/CodeGen/PostRASchedulerList.cpp index 1d42bf13fc7..b7bfe3fefd9 100644 --- a/llvm/lib/CodeGen/PostRASchedulerList.cpp +++ b/llvm/lib/CodeGen/PostRASchedulerList.cpp @@ -155,7 +155,7 @@ namespace { if (C == Other) return NoHazard; unsigned Score = 0; - for (int i = 0; i != array_lengthof(Window); ++i) + for (unsigned i = 0; i != array_lengthof(Window); ++i) if (Window[i] == C) Score += i + 1; if (Score > array_lengthof(Window) * 2) |

