[SystemZ] Define the call instructions as pseudo aliases.
[oota-llvm.git] / lib / Target / SystemZ / InstPrinter / SystemZInstPrinter.cpp
index 37ebff3f1638787f3de2f3b2f422d54758c73965..e1e64d3ac177977fc6a28968a2773c2c5ea09c74 100644 (file)
@@ -124,18 +124,6 @@ void SystemZInstPrinter::printPCRelOperand(const MCInst *MI, int OpNum,
     O << *MO.getExpr();
 }
 
-void SystemZInstPrinter::printCallOperand(const MCInst *MI, int OpNum,
-                                          raw_ostream &O) {
-  const MCOperand &MO = MI->getOperand(OpNum);
-  if (MO.isImm()) {
-    O << "0x";
-    O.write_hex(MO.getImm());
-  } else {
-    O << *MO.getExpr();
-    O << "@PLT";
-  }
-}
-
 void SystemZInstPrinter::printOperand(const MCInst *MI, int OpNum,
                                       raw_ostream &O) {
   printOperand(MI->getOperand(OpNum), O);