1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00

Add prototype for replaceMachineCodeForFunction().

llvm-svn: 9202
This commit is contained in:
Brian Gaeke 2003-10-17 18:27:25 +00:00
parent d32cfacbc7
commit 4380148f33
2 changed files with 3 additions and 0 deletions

View File

@ -677,6 +677,7 @@ public:
virtual bool addPassesToJITCompile(FunctionPassManager &PM);
virtual bool addPassesToEmitMachineCode(FunctionPassManager &PM,
MachineCodeEmitter &MCE);
virtual bool replaceMachineCodeForFunction(void *Old, void *New);
// getPrologEpilogInsertionPass - Inserts prolog/epilog code.
FunctionPass* getPrologEpilogInsertionPass();

View File

@ -44,6 +44,8 @@ public:
MachineCodeEmitter &MCE);
virtual bool addPassesToEmitAssembly(PassManager &PM, std::ostream &Out);
virtual bool replaceMachineCodeForFunction (void *Old, void *New);
};
#endif