diff options
author | Jim Ingham <jingham@apple.com> | 2014-03-06 03:47:34 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2014-03-06 03:47:34 +0000 |
commit | 82536bdbbfa2bbc8fe5dd97f8bbe276c5a8952d4 (patch) | |
tree | 94f6674977c53d23c702cfa30a265739f7598045 /lldb/source/Target/Process.cpp | |
parent | 00fa3f7bf197c9e308afd506aa922f64fdf2517a (diff) | |
download | bcm5719-llvm-82536bdbbfa2bbc8fe5dd97f8bbe276c5a8952d4.tar.gz bcm5719-llvm-82536bdbbfa2bbc8fe5dd97f8bbe276c5a8952d4.zip |
Temporarily disable the JIT loading detector till we figure out why it crashes when lldb follows through exec's...
llvm-svn: 203068
Diffstat (limited to 'lldb/source/Target/Process.cpp')
-rw-r--r-- | lldb/source/Target/Process.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Target/Process.cpp b/lldb/source/Target/Process.cpp index 2899ef7d2d3..793cdec4fce 100644 --- a/lldb/source/Target/Process.cpp +++ b/lldb/source/Target/Process.cpp @@ -3068,7 +3068,7 @@ Process::Launch (ProcessLaunchInfo &launch_info) if (dyld) dyld->DidLaunch(); - GetJITLoaders().DidLaunch(); + // GetJITLoaders().DidLaunch(); SystemRuntime *system_runtime = GetSystemRuntime (); if (system_runtime) @@ -3117,7 +3117,7 @@ Process::LoadCore () if (dyld) dyld->DidAttach(); - GetJITLoaders().DidAttach(); + //GetJITLoaders().DidAttach(); SystemRuntime *system_runtime = GetSystemRuntime (); if (system_runtime) @@ -3396,7 +3396,7 @@ Process::CompleteAttach () if (dyld) dyld->DidAttach(); - GetJITLoaders().DidAttach(); + // GetJITLoaders().DidAttach(); SystemRuntime *system_runtime = GetSystemRuntime (); if (system_runtime) |