aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorEdwin Török <edwintorok@gmail.com>2009-04-07 17:23:02 +0000
committerEdwin Török <edwintorok@gmail.com>2009-04-07 17:23:02 +0000
commit29258f722284c2a216704db0ffde6166ab382ba1 (patch)
treeb793da35332f1226c35e906bebdd064a19c92915 /examples
parent0d7304214178758c1eac6f8f3e8a598c5ed478c4 (diff)
downloadexternal_llvm-29258f722284c2a216704db0ffde6166ab382ba1.zip
external_llvm-29258f722284c2a216704db0ffde6166ab382ba1.tar.gz
external_llvm-29258f722284c2a216704db0ffde6166ab382ba1.tar.bz2
Another attempt at fixing PR2975.
Types can have references to eachother, so we can't just call destroy on them. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68523 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples')
-rw-r--r--examples/HowToUseJIT/HowToUseJIT.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/HowToUseJIT/HowToUseJIT.cpp b/examples/HowToUseJIT/HowToUseJIT.cpp
index 0482df6..b5c6d11 100644
--- a/examples/HowToUseJIT/HowToUseJIT.cpp
+++ b/examples/HowToUseJIT/HowToUseJIT.cpp
@@ -42,6 +42,7 @@
#include "llvm/ExecutionEngine/JIT.h"
#include "llvm/ExecutionEngine/Interpreter.h"
#include "llvm/ExecutionEngine/GenericValue.h"
+#include "llvm/Support/ManagedStatic.h"
#include "llvm/Support/raw_ostream.h"
using namespace llvm;
@@ -109,5 +110,8 @@ int main() {
// Import result of execution:
outs() << "Result: " << gv.IntVal << "\n";
+ EE->freeMachineCodeForFunction(FooF);
+ delete EE;
+ llvm_shutdown();
return 0;
}