mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-12 13:38:21 +00:00
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
This commit is contained in:
@ -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.
|
||||
|
Reference in New Issue
Block a user