Files
clang-p2996/lldb/lit/tools/lldb-mi/exec/inputs/main.c
Alexander Polyakov fc018b071b [lldb-mi] Re-implement a few MI commands.
Summary: This patch updates exec-next-instruction, exec-step-instruction,
exec-finish, exec-interrupt commands to use SB API instead of HandleCommand.

Reviewers: aprantl, clayborg

Reviewed By: aprantl

Subscribers: ki.stfu, lldb-commits

Differential Revision: https://reviews.llvm.org/D48520

llvm-svn: 336155
2018-07-02 23:54:06 +00:00

10 lines
102 B
C

void dummyFunction() {
int a = 0;
}
int main(void) {
int x = 0;
dummyFunction();
return x;
}