mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-27 14:34:58 +00:00
Unbreak SPARC backend: addPassesToJITCompile and
addPassesToEmitMachineCode now both take a FunctionPassManager. Factory methods for function passes now return type FunctionPass *. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7835 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
01189952bb
commit
d7d6bbe697
@ -683,12 +683,12 @@ public:
|
||||
virtual const TargetOptInfo &getOptInfo() const { return optInfo; }
|
||||
|
||||
virtual bool addPassesToEmitAssembly(PassManager &PM, std::ostream &Out);
|
||||
virtual bool addPassesToJITCompile(PassManager &PM);
|
||||
virtual bool addPassesToEmitMachineCode(PassManager &PM,
|
||||
virtual bool addPassesToJITCompile(FunctionPassManager &PM);
|
||||
virtual bool addPassesToEmitMachineCode(FunctionPassManager &PM,
|
||||
MachineCodeEmitter &MCE);
|
||||
|
||||
// getPrologEpilogInsertionPass - Inserts prolog/epilog code.
|
||||
Pass* getPrologEpilogInsertionPass();
|
||||
FunctionPass* getPrologEpilogInsertionPass();
|
||||
|
||||
// getFunctionAsmPrinterPass - Writes out machine code for a single function
|
||||
Pass* getFunctionAsmPrinterPass(std::ostream &Out);
|
||||
|
Loading…
x
Reference in New Issue
Block a user