blob: bb19d902b5db96de617729b3cadc3af35e958cb0 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-require-effective-target arm_vfp_ok } */
/* { dg-skip-if "need fp instructions" { *-*-* } { "-mfloat-abi=soft" } { "" } } */
/* { dg-options "-O2 -mfpu=vfp -mfloat-abi=softfp" } */
void
foo (float *p, float a, float b, int n)
{
float c = a + b;
do
*--p = c;
while (n--);
}
/* { dg-final { scan-assembler "fstmdbs" } } */