diff options
author | Jeffrey Yasskin <jyasskin@google.com> | 2009-10-13 21:32:57 +0000 |
---|---|---|
committer | Jeffrey Yasskin <jyasskin@google.com> | 2009-10-13 21:32:57 +0000 |
commit | d162dbac7fa371fcb9d657c744865f8f95d5642e (patch) | |
tree | 3c9546c9b764c9ebce959144aa66df5ec451b278 /llvm/lib/ExecutionEngine/JIT/JIT.h | |
parent | 7373095ebf27093d88878fd1b13ee0f04750f1e1 (diff) | |
download | bcm5719-llvm-d162dbac7fa371fcb9d657c744865f8f95d5642e.tar.gz bcm5719-llvm-d162dbac7fa371fcb9d657c744865f8f95d5642e.zip |
Keep track of stubs that are created. This fixes PR5162 and probably PR4822 and
4406. Patch by Nick Lewycky!
llvm-svn: 84032
Diffstat (limited to 'llvm/lib/ExecutionEngine/JIT/JIT.h')
-rw-r--r-- | llvm/lib/ExecutionEngine/JIT/JIT.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/JIT.h b/llvm/lib/ExecutionEngine/JIT/JIT.h index dfeffb516e1..525cc84f945 100644 --- a/llvm/lib/ExecutionEngine/JIT/JIT.h +++ b/llvm/lib/ExecutionEngine/JIT/JIT.h @@ -16,6 +16,7 @@ #include "llvm/ExecutionEngine/ExecutionEngine.h" #include "llvm/PassManager.h" +#include "llvm/Support/ValueHandle.h" namespace llvm { @@ -33,7 +34,7 @@ private: /// PendingFunctions - Functions which have not been code generated yet, but /// were called from a function being code generated. - std::vector<Function*> PendingFunctions; + std::vector<AssertingVH<Function> > PendingFunctions; public: explicit JITState(ModuleProvider *MP) : PM(MP), MP(MP) {} @@ -43,7 +44,7 @@ public: } ModuleProvider *getMP() const { return MP; } - std::vector<Function*> &getPendingFunctions(const MutexGuard &L) { + std::vector<AssertingVH<Function> > &getPendingFunctions(const MutexGuard &L){ return PendingFunctions; } }; |