diff --git a/lib/CodeGen/LiveInterval.cpp b/lib/CodeGen/LiveInterval.cpp index 6a6ecf78f68..199e5000b60 100644 --- a/lib/CodeGen/LiveInterval.cpp +++ b/lib/CodeGen/LiveInterval.cpp @@ -30,14 +30,18 @@ #include using namespace llvm; -// compEnd - Compare LiveRange end to Pos. -// This argument ordering works for upper_bound. -static inline bool compEnd(SlotIndex Pos, const LiveRange &LR) { - return Pos < LR.end; -} +// CompEnd - Compare LiveRange end to Pos. +struct CompEnd { + bool operator()(SlotIndex Pos, const LiveRange &LR) const { + return Pos < LR.end; + } + bool operator()(const LiveRange &LR, SlotIndex Pos) const { + return LR.end < Pos; + } +}; LiveInterval::iterator LiveInterval::find(SlotIndex Pos) { - return std::upper_bound(begin(), end(), Pos, compEnd); + return std::upper_bound(begin(), end(), Pos, CompEnd()); } /// killedInRange - Return true if the interval has kills in [Start,End).