summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2009-09-06 12:56:52 +0000
committerDuncan Sands <baldrick@free.fr>2009-09-06 12:56:52 +0000
commitd216b05e756b59a6cbddb24307248520e0aa8b6a (patch)
treed5afabe06819542d44a3a1a320754fb9d2fb537e /llvm/lib/CodeGen
parent89720bbd11abddfacb35034a06176abe4eee419b (diff)
downloadbcm5719-llvm-d216b05e756b59a6cbddb24307248520e0aa8b6a.tar.gz
bcm5719-llvm-d216b05e756b59a6cbddb24307248520e0aa8b6a.zip
Mark more constants unsigned, as warned about by icc (#68).
Patch by Erick Tryzelaar. llvm-svn: 81116
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r--llvm/lib/CodeGen/PBQP/Heuristics/Briggs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/PBQP/Heuristics/Briggs.h b/llvm/lib/CodeGen/PBQP/Heuristics/Briggs.h
index 255ffef529d..3ac9e707bab 100644
--- a/llvm/lib/CodeGen/PBQP/Heuristics/Briggs.h
+++ b/llvm/lib/CodeGen/PBQP/Heuristics/Briggs.h
@@ -118,7 +118,7 @@ class Briggs {
if (!add) {
udTarget = 1;
- dir = -1;
+ dir = ~0;
}
EdgeData &linkEdgeData = g.getEdgeData(edgeItr).getHeuristicData();
OpenPOWER on IntegriCloud