aboutsummaryrefslogtreecommitdiffstats
path: root/test/aarch64/c/if.c
blob: 7d2e249a843e9a3319a48e2f5cadcd1aa36ff17d (plain)
1
2
3
4
5
6
7
int main(int x)
{
  if (x > 27)
    return 11;
  else x--;
  return x;
}