blob: 3ce81b646919754114ebe7203d8152b8f857ed54 [file] [log] [blame]
/* PR target/50749: Verify that post-increment addressing is generated
inside a loop. */
/* { dg-do compile { target { any_fpu } } } */
/* { dg-options "-O2" } */
/* { dg-final { scan-assembler-times "fmov.s\t@r\[0-9]\+\\+,fr\[0-9]\+" 1 } } */
float
test_func_00 (float* p, int c)
{
float r = 0;
do
{
r += *p++;
} while (--c);
return r;
}