e19d552987
Former-commit-id: 4db48158d3a35497b8f118ab21b5f08ac3d86d98
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);
|
|
}
|