mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-14 14:24:05 +00:00
Fix a copy+pasto in an assertion message.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61217 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -76,7 +76,7 @@ bool LowerSubregsInstructionPass::LowerExtract(MachineInstr *MI) {
|
|||||||
assert(TargetRegisterInfo::isPhysicalRegister(SuperReg) &&
|
assert(TargetRegisterInfo::isPhysicalRegister(SuperReg) &&
|
||||||
"Extract supperg source must be a physical register");
|
"Extract supperg source must be a physical register");
|
||||||
assert(TargetRegisterInfo::isPhysicalRegister(DstReg) &&
|
assert(TargetRegisterInfo::isPhysicalRegister(DstReg) &&
|
||||||
"Insert destination must be in a physical register");
|
"Extract destination must be in a physical register");
|
||||||
|
|
||||||
DOUT << "subreg: CONVERTING: " << *MI;
|
DOUT << "subreg: CONVERTING: " << *MI;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user