xref: /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/920429-1.c (revision c87b03e512fc05ed6e0222f6fb0ae86264b1d05b)
1 typedef unsigned char t;int i,j;
f(t * p)2 t*f(t*p){t c;c=*p++;i=((c&2)?1:0);j=(c&7)+1;return p;}
main()3 main(){t*p0="ab",*p1;p1=f(p0);if(p0+1!=p1)abort();exit(0);}
4