1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

wire up ARM's printMCInst method. Now llvm-mc should be able to produce

"something" when printing MCInsts, it will just be missing all the 
operand info.

llvm-svn: 84528
This commit is contained in:
Chris Lattner 2009-10-19 19:59:05 +00:00
parent 11fcbad759
commit d2f263e74f

View File

@ -17,6 +17,7 @@
#include "ARMAddressingModes.h"
#include "ARMConstantPoolValue.h"
#include "ARMMachineFunctionInfo.h"
#include "ARMInstPrinter.h"
#include "llvm/Constants.h"
#include "llvm/Module.h"
#include "llvm/Assembly/Writer.h"
@ -73,6 +74,10 @@ namespace {
virtual const char *getPassName() const {
return "ARM Assembly Printer";
}
void printMCInst(const MCInst *MI) {
ARMInstPrinter(O, *MAI).printInstruction(MI);
}
void printOperand(const MachineInstr *MI, int OpNum,
const char *Modifier = 0);