This implements the packet as described in https://github.com/llvm/llvm-project/pull/192910 The following PRs are related to the MultiBreakpoint feature: * https://github.com/llvm/llvm-project/pull/192910 * https://github.com/llvm/llvm-project/pull/192914 * https://github.com/llvm/llvm-project/pull/192915 * https://github.com/llvm/llvm-project/pull/192919 * https://github.com/llvm/llvm-project/pull/192962 * https://github.com/llvm/llvm-project/pull/192964 * https://github.com/llvm/llvm-project/pull/192971 * https://github.com/llvm/llvm-project/pull/192988
8 lines
93 B
C
8 lines
93 B
C
void func_a() {}
|
|
void func_b() {}
|
|
void func_c() {}
|
|
|
|
int main() {
|
|
return 0; // break here
|
|
}
|