From 9471c8a93b117d8ac01c4ef1cb9faa583e03dec0 Mon Sep 17 00:00:00 2001 From: Jeff Cohen Date: Thu, 26 Jan 2006 20:41:32 +0000 Subject: Improve compatibility with VC2005, patch by Morten Ofstad! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25661 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Scalar/CorrelatedExprs.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib/Transforms/Scalar/CorrelatedExprs.cpp') diff --git a/lib/Transforms/Scalar/CorrelatedExprs.cpp b/lib/Transforms/Scalar/CorrelatedExprs.cpp index d00614b5d3..3da7e6e2df 100644 --- a/lib/Transforms/Scalar/CorrelatedExprs.cpp +++ b/lib/Transforms/Scalar/CorrelatedExprs.cpp @@ -135,7 +135,8 @@ namespace { Relation &getRelation(Value *V) { // Binary search for V's entry... std::vector::iterator I = - std::lower_bound(Relationships.begin(), Relationships.end(), V); + std::lower_bound(Relationships.begin(), Relationships.end(), + Relation(V)); // If we found the entry, return it... if (I != Relationships.end() && I->getValue() == V) @@ -148,7 +149,8 @@ namespace { const Relation *requestRelation(Value *V) const { // Binary search for V's entry... std::vector::const_iterator I = - std::lower_bound(Relationships.begin(), Relationships.end(), V); + std::lower_bound(Relationships.begin(), Relationships.end(), + Relation(V)); if (I != Relationships.end() && I->getValue() == V) return &*I; return 0; -- cgit v1.2.3