8625704ad8
Former-commit-id: 67aa10e65b237e1c4537630979ee99ebe1374215
21 lines
273 B
C
21 lines
273 B
C
/* 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);
|
|
}
|