mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Print subreg information in MachineInstr::dump.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61213 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
af9b952627
commit
2ccc839669
@ -187,7 +187,11 @@ void MachineOperand::print(raw_ostream &OS, const TargetMachine *TM) const {
|
||||
else
|
||||
OS << "%mreg" << getReg();
|
||||
}
|
||||
|
||||
|
||||
if (getSubReg() != 0) {
|
||||
OS << ":" << getSubReg();
|
||||
}
|
||||
|
||||
if (isDef() || isKill() || isDead() || isImplicit() || isEarlyClobber()) {
|
||||
OS << "<";
|
||||
bool NeedComma = false;
|
||||
|
Loading…
Reference in New Issue
Block a user