From: Chris Lattner Date: Sun, 6 Aug 2006 18:12:50 +0000 (+0000) Subject: Silence a warning on x86-64, reported by chandlerc. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=cfb3ba060acb3af49dfa0f59070ff43f16df6e6b;p=oota-llvm.git Silence a warning on x86-64, reported by chandlerc. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29535 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/SCCIterator.h b/include/llvm/ADT/SCCIterator.h index 050353d20db..cbc4cd64fb4 100644 --- a/include/llvm/ADT/SCCIterator.h +++ b/include/llvm/ADT/SCCIterator.h @@ -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; }