mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
Check if printing of implicit uses is required for all types of shift
instructions. llvm-svn: 12258
This commit is contained in:
parent
b50d7fc23c
commit
a13672fd71
@ -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