diff options
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 |