mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
Check if printing of implicit uses is required for all types of shift
instructions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12258 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
bd1c2853e8
commit
519f4e76b7
@ -668,6 +668,7 @@ void Printer::printMachineInstruction(const MachineInstr *MI) {
|
||||
O << ", ";
|
||||
printOp(MI->getOperand(2));
|
||||
}
|
||||
checkImplUses(Desc);
|
||||
O << "\n";
|
||||
return;
|
||||
}
|
||||
@ -689,6 +690,7 @@ void Printer::printMachineInstruction(const MachineInstr *MI) {
|
||||
O << ", ";
|
||||
printOp(MI->getOperand(5));
|
||||
}
|
||||
checkImplUses(Desc);
|
||||
O << "\n";
|
||||
return;
|
||||
}
|
||||
@ -839,6 +841,7 @@ void Printer::printMachineInstruction(const MachineInstr *MI) {
|
||||
O << ", ";
|
||||
printOp(MI->getOperand(4));
|
||||
}
|
||||
checkImplUses(Desc);
|
||||
O << "\n";
|
||||
return;
|
||||
}
|
||||
|
@ -668,6 +668,7 @@ void Printer::printMachineInstruction(const MachineInstr *MI) {
|
||||
O << ", ";
|
||||
printOp(MI->getOperand(2));
|
||||
}
|
||||
checkImplUses(Desc);
|
||||
O << "\n";
|
||||
return;
|
||||
}
|
||||
@ -689,6 +690,7 @@ void Printer::printMachineInstruction(const MachineInstr *MI) {
|
||||
O << ", ";
|
||||
printOp(MI->getOperand(5));
|
||||
}
|
||||
checkImplUses(Desc);
|
||||
O << "\n";
|
||||
return;
|
||||
}
|
||||
@ -839,6 +841,7 @@ void Printer::printMachineInstruction(const MachineInstr *MI) {
|
||||
O << ", ";
|
||||
printOp(MI->getOperand(4));
|
||||
}
|
||||
checkImplUses(Desc);
|
||||
O << "\n";
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user