summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/graphite/pr44391.c
blob: de9889668916cc9100270b91088c0a60954df752 (plain)
1
2
3
4
5
6
7
/* { dg-options "-Os -fgraphite-identity -ffast-math" } */

void byte_insert_op1 (unsigned char *loc, unsigned char *end, unsigned *pto)
{
  while (end != loc)
    *pto = *--end;
}