summaryrefslogtreecommitdiffstats
path: root/llvm/tools/lli/lli.cpp
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
commit9a383405a7faa52da11fe9c59bd2ff7aecbf5bfd (patch)
tree02bb45c3a5b7aaf371b196038f97d2ed4ce0c807 /llvm/tools/lli/lli.cpp
parenteaf9798d2a45b6eabc65ded63fddc2f28b858222 (diff)
downloadbcm5719-llvm-9a383405a7faa52da11fe9c59bd2ff7aecbf5bfd.tar.gz
bcm5719-llvm-9a383405a7faa52da11fe9c59bd2ff7aecbf5bfd.zip
Remove exception handling support from the old JIT.
llvm-svn: 181354
Diffstat (limited to 'llvm/tools/lli/lli.cpp')
-rw-r--r--llvm/tools/lli/lli.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/tools/lli/lli.cpp b/llvm/tools/lli/lli.cpp
index 297763fcfbd..1866403cf80 100644
--- a/llvm/tools/lli/lli.cpp
+++ b/llvm/tools/lli/lli.cpp
@@ -159,11 +159,6 @@ namespace {
clEnumValEnd));
cl::opt<bool>
- EnableJITExceptionHandling("jit-enable-eh",
- cl::desc("Emit exception handling information"),
- cl::init(false));
-
- cl::opt<bool>
GenerateSoftFloatCalls("soft-float",
cl::desc("Generate software floating point library calls"),
cl::init(false));
@@ -381,7 +376,6 @@ int main(int argc, char **argv, char * const *envp) {
// Remote target execution doesn't handle EH or debug registration.
if (!RemoteMCJIT) {
- Options.JITExceptionHandling = EnableJITExceptionHandling;
Options.JITEmitDebugInfo = EmitJitDebugInfo;
Options.JITEmitDebugInfoToDisk = EmitJitDebugInfoToDisk;
}
OpenPOWER on IntegriCloud