modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/execute/20000121-1.c (about) 1 void big(long long u) { } 2 3 void doit(unsigned int a,unsigned int b,char *id) 4 { 5 big(*id); 6 big(a); 7 big(b); 8 } 9 10 int main(void) 11 { 12 doit(1,1,"\n"); 13 return 0; 14 }