aboutsummaryrefslogtreecommitdiff
path: root/lib/Debugger/Debugger.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-03-10 22:39:48 +0000
committerChris Lattner <sabre@nondot.org>2006-03-10 22:39:48 +0000
commit89b192690ad3c513cfc8f093ca6dcbd59800a971 (patch)
treefc0655d1dab647b5abe79265c6be4842e1f77a8d /lib/Debugger/Debugger.cpp
parent502fe92a688859370e30d04e59c9707a24d829b5 (diff)
Remove UnixLocalInferiorProcess: debugging via the JIT isn't a good idea.
Perhaps llvm-db will turn into a read debugger someday. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26700 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Debugger/Debugger.cpp')
-rw-r--r--lib/Debugger/Debugger.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/Debugger/Debugger.cpp b/lib/Debugger/Debugger.cpp
index f7108e492f..a0505bda57 100644
--- a/lib/Debugger/Debugger.cpp
+++ b/lib/Debugger/Debugger.cpp
@@ -113,6 +113,12 @@ void Debugger::createProgram() {
Process = InferiorProcess::create(Program, Args, Environment);
}
+InferiorProcess *
+InferiorProcess::create(Module *M, const std::vector<std::string> &Arguments,
+ const char * const *envp) {
+ throw"No supported binding to inferior processes (debugger not implemented).";
+}
+
/// killProgram - If the program is currently executing, kill off the
/// process and free up any state related to the currently running program. If
/// there is no program currently running, this just silently succeeds.