diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-05-05 18:30:58 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-05-05 18:30:58 +0000 |
commit | 591bfc8aa66d4d415be0d947e2764bcc9f5e25b7 (patch) | |
tree | eefdfb1d225da0317e7f7912079c430b5c3ed92c /include/llvm/Analysis/DominatorInternals.h | |
parent | d2dcb090a5db3cf20f4b74cc5c31424f758a7fa6 (diff) | |
download | external_llvm-591bfc8aa66d4d415be0d947e2764bcc9f5e25b7.zip external_llvm-591bfc8aa66d4d415be0d947e2764bcc9f5e25b7.tar.gz external_llvm-591bfc8aa66d4d415be0d947e2764bcc9f5e25b7.tar.bz2 |
Fix more -Wshorten-64-to-32 warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50659 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/DominatorInternals.h')
-rw-r--r-- | include/llvm/Analysis/DominatorInternals.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Analysis/DominatorInternals.h b/include/llvm/Analysis/DominatorInternals.h index 063602e..1564774 100644 --- a/include/llvm/Analysis/DominatorInternals.h +++ b/include/llvm/Analysis/DominatorInternals.h @@ -248,7 +248,8 @@ void Calculate(DominatorTreeBase<typename GraphTraits<NodeT>::NodeType>& DT, // Step #1: Number blocks in depth-first order and initialize variables used // in later stages of the algorithm. - for (unsigned i = 0, e = DT.Roots.size(); i != e; ++i) + for (unsigned i = 0, e = static_cast<unsigned>(DT.Roots.size()); + i != e; ++i) N = DFSPass<GraphT>(DT, DT.Roots[i], N); // it might be that some blocks did not get a DFS number (e.g., blocks of |