aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/PostRASchedulerList.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-01-16 17:55:08 +0000
committerDan Gohman <gohman@apple.com>2009-01-16 17:55:08 +0000
commit79ce4cea4701259c1aa70d59d3544ed00e9ab7f0 (patch)
tree5e6d997536e215361be36b945fcef12cd2509ee5 /lib/CodeGen/PostRASchedulerList.cpp
parentd1f5fabd15c340273dc118dab95e97a3e76c4f87 (diff)
Fix a "comparison between signed and unsigned integer expressions"
warning. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62327 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/PostRASchedulerList.cpp')
-rw-r--r--lib/CodeGen/PostRASchedulerList.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/PostRASchedulerList.cpp b/lib/CodeGen/PostRASchedulerList.cpp
index 1d42bf13fc..b7bfe3fefd 100644
--- a/lib/CodeGen/PostRASchedulerList.cpp
+++ b/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)