aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/expect/expect.c
blob: 30e0742a95cb3fa5d937369144296fcee54dc9d1 (plain)
1
2
3
4
5
6
7
#ifndef PREDICTED
#define PREDICTED 0
#endif

int expect(int x, int *y, int *z) {
  return __builtin_expect(x, PREDICTED) ? *y : *z;
}