Update ChangeLog and version files for release
[official-gcc.git] / gcc / testsuite / gcc.target / arm / vfp-ldmdbs.c
blob0187c01606c4cb3e44da84973b15af1ba8b761b2
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 extern void bar (float);
8 void
9 foo (float *p, float a, int n)
12 bar (*--p + a);
13 while (n--);
16 /* { dg-final { scan-assembler "vldmdb.32" } } */