aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/arm/vfp-stmias.c
blob: 3da632745f43db3f3d86497ee6ed416b740f9c2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* { 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 "fstmias" } } */