summaryrefslogtreecommitdiff
path: root/compiler-rt/test/profile/Inputs/instrprof-debug-info-correlate-foo.cpp
blob: 042bfef98203b2b063530e3a1a9140ef1130fcb6 (plain)
1
2
3
4
5
6
7
8
9
#include "instrprof-debug-info-correlate-bar.h"

int foo(int a) {
  if (a % 2)
    return 4 * a + 1;
  return bar(a);
}

int unused(int a) { return a * a; }