mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-05 09:24:28 +00:00
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:
@ -842,7 +842,7 @@ namespace {
|
|||||||
|
|
||||||
bool operator<(const ScopedRange &range) const {
|
bool operator<(const ScopedRange &range) const {
|
||||||
if (V != range.V) return V < range.V;
|
if (V != range.V) return V < range.V;
|
||||||
else return Subtree < range.Subtree;
|
else return *Subtree < *range.Subtree;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool operator<(const Value *value) const {
|
bool operator<(const Value *value) const {
|
||||||
|
Reference in New Issue
Block a user