llvm-project/lldb/test/API/tools/lldb-vscode/breakpoint-events/foo.cpp

12 lines
191 B
C++

#include <stdio.h>
static void unique_function_name() {
puts(__PRETTY_FUNCTION__); // foo breakpoint 2
}
int foo(int x) {
// foo breakpoint 1
unique_function_name();
return x+42;
}