Reland "[lldb] Make CommandInterpreter's execution context the same as debugger's one"

This commit is contained in:
Tatyana Krasnukha
2020-12-18 16:36:15 +03:00
parent a39bcbca92
commit 36de94cf54
15 changed files with 191 additions and 141 deletions

View File

@@ -0,0 +1,9 @@
// This simple program is to test the lldb Python API SBDebugger.
int func(int val) {
return val - 1;
}
int main (int argc, char const *argv[]) {
return func(argc);
}