mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-21 04:25:45 -04:00

Summary: This patch extends the `SBThreadPlan` to allow retrieving of thread plans for scripted steps. Reviewers: labath, zturner, jingham Reviewed By: jingham Subscribers: lldb-commits Tags: #lldb Differential Revision: https://reviews.llvm.org/D53361 llvm-svn: 345247
11 lines
110 B
C
11 lines
110 B
C
#include <stdio.h>
|
|
|
|
void foo() {
|
|
printf("Set a breakpoint here.\n");
|
|
}
|
|
|
|
int main() {
|
|
foo();
|
|
return 0;
|
|
}
|