bolt/deps/llvm-18.1.8/lldb/test/API/tools/lldb-dap/breakpoint/other.c

6 lines
89 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
extern int foo(int x) {
int y = x + 42; // break other
int z = y + 42;
return z;
}