aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/20000121-1.c
blob: 71f0914d3657def7e030a78b547ec1293bafa0fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
void big(long long u) { }

void doit(unsigned int a,unsigned int b,char *id)
{
  big(*id);
  big(a);
  big(b);
}

int main(void)
{
  doit(1,1,"\n");
  return 0;
}