Update ChangeLog and version files for release
[official-gcc.git] / gcc / testsuite / gcc.target / arm / vfp-stmdbs.c
blob6570defa71eedaf1e9b9bf7bba54afe756bdaebf
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 (float *p, float a, float b, int n)
9 float c = a + b;
11 *--p = c;
12 while (n--);
15 /* { dg-final { scan-assembler "vstmdb.32" } } */