Like the comment says...

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23737 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-10-14 22:48:24 +00:00
parent 617742b1b8
commit e87bc1f3a8

View File

@ -343,12 +343,6 @@ void PowerPCAsmPrinter::printOp(const MachineOperand &MO, bool IsCallOp) {
void PowerPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
++EmittedInsts;
/// NOTE: THIS SHOULD NEVER BE CHECKED IN. STAY LOCAL IN CHRIS'S TREE.
if (0 && MI->getOpcode() == PPC::OR)
assert((MI->getOperand(0).getReg() != MI->getOperand(1).getReg() ||
MI->getOperand(2).getReg() != MI->getOperand(1).getReg()) &&
"noop copy emitted!");
// Check for slwi/srwi mnemonics.
if (MI->getOpcode() == PPC::RLWINM) {
bool FoundMnemonic = false;