mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-07 14:33:15 +00:00
Fix output of live intervals to show correctly its closed, open
ranges, i.e. [a,b) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10822 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c55640f019
commit
63841bc85d
@ -415,7 +415,7 @@ std::ostream& llvm::operator<<(std::ostream& os,
|
||||
os << "%reg" << li.reg << ',' << li.weight << " = ";
|
||||
for (LiveIntervals::Interval::Ranges::const_iterator
|
||||
i = li.ranges.begin(), e = li.ranges.end(); i != e; ++i) {
|
||||
os << "[" << i->first << "," << i->second << "]";
|
||||
os << "[" << i->first << "," << i->second << ")";
|
||||
}
|
||||
return os;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user