bolt/deps/llvm-18.1.8/llvm/test/tools/dsymutil/Inputs/basic3.c

21 lines
273 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
/* For compilation instructions see basic1.c. */
volatile int val;
extern int foo(int);
int unused2() {
return foo(val);
}
static int inc() {
return ++val;
}
__attribute__((noinline))
int bar(int arg) {
if (arg > 42)
return inc();
return foo(val + arg);
}