Deconstify parameter to getPointerToFunction().

Use a FunctionPassManager instead of a PassManager.

llvm-svn: 7820
This commit is contained in:
Brian Gaeke 2003-08-13 18:16:50 +00:00
parent 5896956ff0
commit 2b804a2797
1 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ class MachineCodeEmitter;
class VM : public ExecutionEngine {
TargetMachine &TM; // The current target we are compiling to
PassManager PM; // Passes to compile a function
FunctionPassManager PM; // Passes to compile a function
MachineCodeEmitter *MCE; // MCE object
public:
@ -49,7 +49,7 @@ public:
/// getPointerToFunction - This returns the address of the specified function,
/// compiling it if necessary.
void *getPointerToFunction(const Function *F);
void *getPointerToFunction(Function *F);
private:
static MachineCodeEmitter *createEmitter(VM &V);