Update ChangeLog and version files for release
[official-gcc.git] / gcc / testsuite / gcc.target / arm / vfp-stmias.c
blobefa5fbe57f62bd0a85959a8fca04beeee5eef2f3
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 "vstmia.32" } } */