Update ChangeLog and version files for release
[official-gcc.git] / gcc / testsuite / gcc.target / arm / vfp-stmiad.c
blob28e9d73b3f6e01556f3d86ed5e822dfa2209eb8b
1 /* { dg-do compile } */
2 /* { dg-require-effective-target arm_vfp_ok } */
3 /* { dg-skip-if "need fp instructions" { *-*-* } { "-mfloat-abi=soft" } { "" } } */
4 /* { dg-options "-O2 -mfpu=vfp -mfloat-abi=softfp" } */
6 void
7 foo (double *p, double a, double b, int n)
9 double c = a + b;
11 *p++ = c;
12 while (n--);
15 /* { dg-final { scan-assembler "vstmia.64" } } */