Silence a warning on x86-64, reported by chandlerc.

llvm-svn: 29535
This commit is contained in:
Chris Lattner 2006-08-06 18:12:50 +00:00
parent 927f95b5cf
commit de48f1ba0a
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ class scc_iterator
do {
CurrentSCC.push_back(SCCNodeStack.back());
SCCNodeStack.pop_back();
nodeVisitNumbers[CurrentSCC.back()] = ~0UL;
nodeVisitNumbers[CurrentSCC.back()] = ~0U;
} while (CurrentSCC.back() != visitingN);
return;
}