diff options
-rw-r--r-- | Analysis/DataflowSolver.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Analysis/DataflowSolver.h b/Analysis/DataflowSolver.h index d3d4d9f917..b89b45b677 100644 --- a/Analysis/DataflowSolver.h +++ b/Analysis/DataflowSolver.h @@ -228,7 +228,7 @@ private: M[E].copyValues(V); WorkList.enqueue(TargetBlock); } - else if (!V.equal(I->second)) { + else if (!(V==I->second)) { I->second.copyValues(V); WorkList.enqueue(TargetBlock); } |