blob: de9889668916cc9100270b91088c0a60954df752 [file] [log] [blame]
/* { dg-options "-Os -fgraphite-identity -ffast-math" } */
void byte_insert_op1 (unsigned char *loc, unsigned char *end, unsigned *pto)
{
while (end != loc)
*pto = *--end;
}