mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-19 20:34:38 +00:00
Missed one silly assert :-)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11048 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
01e74a2aab
commit
676cf8cb1d
@ -401,7 +401,7 @@ void LiveIntervals::joinIntervals()
|
|||||||
assert(MRegisterInfo::isPhysicalRegister(intA->reg) &&
|
assert(MRegisterInfo::isPhysicalRegister(intA->reg) &&
|
||||||
MRegisterInfo::isVirtualRegister(intB->reg) &&
|
MRegisterInfo::isVirtualRegister(intB->reg) &&
|
||||||
"A must be physical and B must be virtual");
|
"A must be physical and B must be virtual");
|
||||||
assert(intA->reg != intB->reg);
|
|
||||||
if (!intA->overlaps(*intB) &&
|
if (!intA->overlaps(*intB) &&
|
||||||
!overlapsAliases(*intA, *intB)) {
|
!overlapsAliases(*intA, *intB)) {
|
||||||
intA->join(*intB);
|
intA->join(*intB);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user