Fix value ranges.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37713 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Nick Lewycky 2007-06-24 20:14:22 +00:00
parent 79a6370133
commit 4390feb7ae

View File

@ -842,7 +842,7 @@ namespace {
bool operator<(const ScopedRange &range) const {
if (V != range.V) return V < range.V;
else return Subtree < range.Subtree;
else return *Subtree < *range.Subtree;
}
bool operator<(const Value *value) const {