[ARM] Rewrite how VCMP are lowered, using a single node
[llvm-core.git] / test / tools / dsymutil / Inputs / basic3.c
blobf20998a00dbe6864a7da5093b48932d5e0865348
1 /* For compilation instructions see basic1.c. */
3 volatile int val;
5 extern int foo(int);
7 int unused2() {
8 return foo(val);
11 static int inc() {
12 return ++val;
15 __attribute__((noinline))
16 int bar(int arg) {
17 if (arg > 42)
18 return inc();
19 return foo(val + arg);