diff options
author | Chris Lattner <sabre@nondot.org> | 2005-01-12 04:51:37 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-01-12 04:51:37 +0000 |
commit | 507bdf9488e6be6fac3a7122a603cd3b989ba2b0 (patch) | |
tree | f6cf35502caaf14e9cb780b319d7e80c02b08122 /lib/Analysis/DataStructure/PgmDependenceGraph.cpp | |
parent | bf7c1521f59a68481a311fb3fc2a506a087aeed9 (diff) |
Silence VC++ warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19506 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/PgmDependenceGraph.cpp')
-rw-r--r-- | lib/Analysis/DataStructure/PgmDependenceGraph.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/DataStructure/PgmDependenceGraph.cpp b/lib/Analysis/DataStructure/PgmDependenceGraph.cpp index 69201c2df9..f35cd079ef 100644 --- a/lib/Analysis/DataStructure/PgmDependenceGraph.cpp +++ b/lib/Analysis/DataStructure/PgmDependenceGraph.cpp @@ -176,7 +176,7 @@ void DepIterState::Next() firstSsaDone = true; // flags if we just rolled over } - if (depFlags & ControlDeps != 0) + if ((depFlags & ControlDeps) != 0) { assert(0 && "Cannot handle control deps"); // iterFlags &= ~FirstTimeFlag; // clear "firstTime" flag |