projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d1f5fab
)
Fix a "comparison between signed and unsigned integer expressions"
author
Dan Gohman
<gohman@apple.com>
Fri, 16 Jan 2009 17:55:08 +0000
(17:55 +0000)
committer
Dan Gohman
<gohman@apple.com>
Fri, 16 Jan 2009 17:55:08 +0000
(17:55 +0000)
warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62327
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/PostRASchedulerList.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/PostRASchedulerList.cpp
b/lib/CodeGen/PostRASchedulerList.cpp
index 1d42bf13fc7afe7025a3b935afaf2e9a74e02db1..b7bfe3fefd9d39beea97f2a3ee33e6cb8d0666a0 100644
(file)
--- 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)