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
10 lines
102 B
C
10 lines
102 B
C
void dummyFunction() {
|
|
int a = 0;
|
|
}
|
|
|
|
int main(void) {
|
|
int x = 0;
|
|
dummyFunction();
|
|
return x;
|
|
}
|