aboutsummaryrefslogtreecommitdiffstats
path: root/test/tools/dsymutil/Inputs/basic3.c
blob: f20998a00dbe6864a7da5093b48932d5e0865348 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* 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);
}