diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-05-07 20:53:59 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-05-07 20:53:59 +0000 |
commit | e4496548155ba6606f107fbdc10ea17e58fd3401 (patch) | |
tree | 17c17dc523c763cbea08e75f19e757c40ad8777c /tools/lli/RecordingMemoryManager.h | |
parent | baa52fff392bbf2133eb0c948d56bdc4e4c1b7f9 (diff) | |
download | external_llvm-e4496548155ba6606f107fbdc10ea17e58fd3401.zip external_llvm-e4496548155ba6606f107fbdc10ea17e58fd3401.tar.gz external_llvm-e4496548155ba6606f107fbdc10ea17e58fd3401.tar.bz2 |
Remove exception handling support from the old JIT.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181354 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/lli/RecordingMemoryManager.h')
-rw-r--r-- | tools/lli/RecordingMemoryManager.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tools/lli/RecordingMemoryManager.h b/tools/lli/RecordingMemoryManager.h index 991f535..f3d026f 100644 --- a/tools/lli/RecordingMemoryManager.h +++ b/tools/lli/RecordingMemoryManager.h @@ -75,11 +75,6 @@ public: uint8_t *allocateSpace(intptr_t Size, unsigned Alignment); uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment); void deallocateFunctionBody(void *Body); - uint8_t* startExceptionTable(const Function* F, uintptr_t &ActualSize); - void endExceptionTable(const Function *F, uint8_t *TableStart, - uint8_t *TableEnd, uint8_t* FrameRegister); - void deallocateExceptionTable(void *ET); - }; } // end namespace llvm |