diff options
author | Chris Lattner <sabre@nondot.org> | 2003-12-20 10:19:18 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-12-20 10:19:18 +0000 |
commit | 028565b14b9dcf7b615b6617c2df8618e9b673ef (patch) | |
tree | 249e689c9b7f0eefec5dc50ee3d96722666ed1b2 /lib/ExecutionEngine/JIT/JIT.cpp | |
parent | 3e200e6c3b22610ef27eb5364bb10a485b1e8e2c (diff) |
This should not be needed anymore
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10558 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/JIT/JIT.cpp')
-rw-r--r-- | lib/ExecutionEngine/JIT/JIT.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/ExecutionEngine/JIT/JIT.cpp b/lib/ExecutionEngine/JIT/JIT.cpp index ab362a64ba..d39741438a 100644 --- a/lib/ExecutionEngine/JIT/JIT.cpp +++ b/lib/ExecutionEngine/JIT/JIT.cpp @@ -175,10 +175,6 @@ void *JIT::recompileAndRelinkFunction(Function *F) { // Delete the old function mapping. addGlobalMapping(F, 0); - // Destroy the machine code for this function. FIXME: this should be - // incorporated into the code generator! - MachineFunction::destruct(F); - // Recodegen the function runJITOnFunction(F); |