mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-01-10 13:22:59 +00:00
Register AsmPrinter for XCore, MSP430, and PIC16 targets.
- Switch to standard addAssemblyEmitter logic. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75854 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -40,7 +40,7 @@ STATISTIC(EmittedInsts, "Number of machine instrs printed");
|
||||
namespace {
|
||||
class VISIBILITY_HIDDEN MSP430AsmPrinter : public AsmPrinter {
|
||||
public:
|
||||
MSP430AsmPrinter(formatted_raw_ostream &O, MSP430TargetMachine &TM,
|
||||
MSP430AsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
|
||||
const TargetAsmInfo *TAI, bool V)
|
||||
: AsmPrinter(O, TM, TAI, V) {}
|
||||
|
||||
@@ -76,7 +76,7 @@ namespace {
|
||||
/// regardless of whether the function is in SSA form.
|
||||
///
|
||||
FunctionPass *llvm::createMSP430CodePrinterPass(formatted_raw_ostream &o,
|
||||
MSP430TargetMachine &tm,
|
||||
TargetMachine &tm,
|
||||
bool verbose) {
|
||||
return new MSP430AsmPrinter(o, tm, tm.getTargetAsmInfo(), verbose);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user