summaryrefslogtreecommitdiffstats
path: root/llvm/test/tools/llvm-opt-report/Inputs/dm.c
blob: b031cd2b02918e9bef0233ca1995e8a4f48e58f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
void bar(void);
void foo(int n) {
  if (n) { bar(); } else { while (1) {} }
}

void quack(void) {
  foo(0);
}

void quack2(void) {
  foo(4);
}

OpenPOWER on IntegriCloud