Fix value ranges.

llvm-svn: 37713
This commit is contained in:
Nick Lewycky 2007-06-24 20:14:22 +00:00
parent 7fb6da8e4d
commit 8735f44104
1 changed files with 1 additions and 1 deletions

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 {