summaryrefslogtreecommitdiff
path: root/include/llvm/Target
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-05-07 20:53:59 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-05-07 20:53:59 +0000
commite4496548155ba6606f107fbdc10ea17e58fd3401 (patch)
tree17c17dc523c763cbea08e75f19e757c40ad8777c /include/llvm/Target
parentbaa52fff392bbf2133eb0c948d56bdc4e4c1b7f9 (diff)
downloadllvm-e4496548155ba6606f107fbdc10ea17e58fd3401.tar.gz
llvm-e4496548155ba6606f107fbdc10ea17e58fd3401.tar.bz2
llvm-e4496548155ba6606f107fbdc10ea17e58fd3401.tar.xz
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 'include/llvm/Target')
-rw-r--r--include/llvm/Target/TargetOptions.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/include/llvm/Target/TargetOptions.h b/include/llvm/Target/TargetOptions.h
index c763a595dd..31c4c75e60 100644
--- a/include/llvm/Target/TargetOptions.h
+++ b/include/llvm/Target/TargetOptions.h
@@ -45,7 +45,7 @@ namespace llvm {
NoFramePointerElimNonLeaf(false), LessPreciseFPMADOption(false),
UnsafeFPMath(false), NoInfsFPMath(false),
NoNaNsFPMath(false), HonorSignDependentRoundingFPMathOption(false),
- UseSoftFloat(false), NoZerosInBSS(false), JITExceptionHandling(false),
+ UseSoftFloat(false), NoZerosInBSS(false),
JITEmitDebugInfo(false), JITEmitDebugInfoToDisk(false),
GuaranteedTailCallOpt(false), DisableTailCalls(false),
StackAlignmentOverride(0), RealignStack(true), SSPBufferSize(0),
@@ -123,10 +123,6 @@ namespace llvm {
/// crt*.o compiling).
unsigned NoZerosInBSS : 1;
- /// JITExceptionHandling - This flag indicates that the JIT should emit
- /// exception handling information.
- unsigned JITExceptionHandling : 1;
-
/// JITEmitDebugInfo - This flag indicates that the JIT should try to emit
/// debug information and notify a debugger about it.
unsigned JITEmitDebugInfo : 1;