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 | b1bbd7c7f6c524b31268cea06e63eab8f5f13c16 (patch) | |
tree | 442b110f62f335501d2b145bc785cdfdd8772dd2 /llvm/lib | |
parent | 5219159892076c3b64c492974b4dd8d22822f2aa (diff) | |
download | bcm5719-llvm-b1bbd7c7f6c524b31268cea06e63eab8f5f13c16.tar.gz bcm5719-llvm-b1bbd7c7f6c524b31268cea06e63eab8f5f13c16.zip |
This should not be needed anymore
llvm-svn: 10558
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/ExecutionEngine/JIT/JIT.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/JIT.cpp b/llvm/lib/ExecutionEngine/JIT/JIT.cpp index ab362a64ba1..d39741438aa 100644 --- a/llvm/lib/ExecutionEngine/JIT/JIT.cpp +++ b/llvm/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); |