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
This commit is contained in:
Dan Gohman 2009-01-16 17:55:08 +00:00
parent d1f5fabd15
commit 79ce4cea47

View File

@ -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)