diff options
author | Duncan Sands <baldrick@free.fr> | 2010-05-02 15:36:26 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2010-05-02 15:36:26 +0000 |
commit | 211427bda9e3537c651db35f09ccd07406e7b543 (patch) | |
tree | 10ce8da9ad44ebd6306a188492f1dc748b65fffd /llvm/lib/ExecutionEngine | |
parent | 2718b4d757494cdc33593827c690bb6fc5b5b5ac (diff) | |
download | bcm5719-llvm-211427bda9e3537c651db35f09ccd07406e7b543.tar.gz bcm5719-llvm-211427bda9e3537c651db35f09ccd07406e7b543.zip |
Remove the -enable-sjlj-eh option, which doesn't do anything.
Remove the -enable-eh option which is only used by the JIT,
and replace it with -jit-enable-eh.
llvm-svn: 102865
Diffstat (limited to 'llvm/lib/ExecutionEngine')
-rw-r--r-- | llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp b/llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp index 36d4ada7c95..e3855b27792 100644 --- a/llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp +++ b/llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp @@ -384,7 +384,7 @@ namespace { DEBUG(dbgs() << "JIT is managing a GOT\n"); } - if (DwarfExceptionHandling || JITEmitDebugInfo) { + if (JITExceptionHandling || JITEmitDebugInfo) { DE.reset(new JITDwarfEmitter(jit)); } if (JITEmitDebugInfo) { @@ -1259,7 +1259,7 @@ bool JITEmitter::finishFunction(MachineFunction &F) { } }); - if (DwarfExceptionHandling || JITEmitDebugInfo) { + if (JITExceptionHandling || JITEmitDebugInfo) { uintptr_t ActualSize = 0; SavedBufferBegin = BufferBegin; SavedBufferEnd = BufferEnd; @@ -1282,7 +1282,7 @@ bool JITEmitter::finishFunction(MachineFunction &F) { BufferEnd = SavedBufferEnd; CurBufferPtr = SavedCurBufferPtr; - if (DwarfExceptionHandling) { + if (JITExceptionHandling) { TheJIT->RegisterTable(FrameRegister); } |