mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Couple of small changes. Delay Slot handle header declared.
Newline added after macros at function init on generated asm! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41157 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e88c36819e
commit
250a1714be
@ -23,9 +23,10 @@ namespace llvm {
|
||||
class FunctionPass;
|
||||
class MachineCodeEmitter;
|
||||
|
||||
FunctionPass *createMipsISelDag(MipsTargetMachine &TM);
|
||||
FunctionPass *createMipsDelaySlotFillerPass(MipsTargetMachine &TM);
|
||||
FunctionPass *createMipsCodePrinterPass(std::ostream &OS,
|
||||
MipsTargetMachine &TM);
|
||||
FunctionPass *createMipsISelDag(MipsTargetMachine &TM);
|
||||
} // end namespace llvm;
|
||||
|
||||
// Defines symbolic names for Mips registers. This defines a mapping from
|
||||
|
@ -209,9 +209,9 @@ emitFunctionStart(MachineFunction &MF)
|
||||
emitFrameDirective(MF);
|
||||
emitMaskDirective(MF);
|
||||
emitFMaskDirective();
|
||||
|
||||
emitSetDirective(NOREORDER);
|
||||
emitSetDirective(NOMACRO);
|
||||
O << "\n";
|
||||
}
|
||||
|
||||
/// Emit the directives used by GAS on the end of functions
|
||||
|
Loading…
Reference in New Issue
Block a user