Files
clang-p2996/lldb/lit/tools/lldb-mi/breakpoint/inputs/break-insert.c
Adrian Prantl 512ccd7e6f [lldb-mi] Add possibility to set breakpoints without selecting a target.
Now it's possible to set breakpoints before selecting a target, they
will be set to the dummy target and then copied to an each added one.

Patch by Alexander Polyakov!

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

llvm-svn: 333205
2018-05-24 16:45:59 +00:00

8 lines
104 B
C

int breakpoint() { // Breakpoint will be set here.
return 0;
}
int main() {
return breakpoint();
}