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
8 lines
104 B
C
8 lines
104 B
C
int breakpoint() { // Breakpoint will be set here.
|
|
return 0;
|
|
}
|
|
|
|
int main() {
|
|
return breakpoint();
|
|
}
|