bolt/deps/llvm-18.1.8/lldb/test/API/commands/gui/basicdebug/func.c
2025-02-14 19:21:04 +01:00

12 lines
161 B
C

int func() {
return 1; // In function
}
void func_down() {
int dummy = 1; // In func_down
(void)dummy;
}
void func_up() {
func_down(); // In func_up
}