OSDN Git Service

2010-08-26 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / graphite / pr44391.c
1 /* { dg-options "-Os -m32 -fgraphite-identity -ffast-math" } */
2
3 void byte_insert_op1 (unsigned char *loc, unsigned char *end, unsigned *pto)
4 {
5   while (end != loc)
6     *pto = *--end;
7 }