Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.target / arm / vfp-ldmiad.c
blob422e3ed602b025eb5b6985784814931cc5331ea1
1 /* { dg-do compile } */
2 /* { dg-require-effective-target arm_fp_ok } */
3 /* { dg-skip-if "need fp instructions" { *-*-* } { "-mfloat-abi=soft" } { "" } } */
4 /* { dg-options "-O2" } */
5 /* { dg-add-options arm_fp } */
7 extern void bar (double);
9 void
10 foo (double *p, double a, int n)
13 bar (*p++ + a);
14 while (n--);
17 /* { dg-final { scan-assembler "vldmia.64" } } */