diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-11-07 23:58:46 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-11-07 23:58:46 +0000 |
commit | 624685d9a1ad18e4f9e29692c4c2bb754685c186 (patch) | |
tree | b007c09c065e3f3ca6e108b57fa10aa09603a414 /llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | |
parent | 0dcaaafa0b5c3c56fd4534cf7be76c5c2e99f2c2 (diff) | |
download | bcm5719-llvm-624685d9a1ad18e4f9e29692c4c2bb754685c186.tar.gz bcm5719-llvm-624685d9a1ad18e4f9e29692c4c2bb754685c186.zip |
Implement ExecutionEngine::freeMachineCodeForFunction()
llvm-svn: 17601
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/Interpreter.h')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h index e146135cf5f..8af2361ebae 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h @@ -120,6 +120,10 @@ public: return getPointerToFunction(F); } + /// freeMachineCodeForFunction - The interpreter does not generate any code. + /// + void freeMachineCodeForFunction(Function *F) { } + // Methods used to execute code: // Place a call on the stack void callFunction(Function *F, const std::vector<GenericValue> &ArgVals); |