OSDN Git Service

Use POINTER_PLUS_EXPR for pointer types.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / graphite / id-19.c
1 void byte_insert_op1 (unsigned char *loc, unsigned char *end)
2 {
3   register unsigned char *pto = end + 1 + 2;
4   while (end != loc)
5     *--pto = *--end;
6 }