URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.target/] [arm/] [vfp-stmias.c] - Rev 764
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-require-effective-target arm_vfp_ok } */ /* { dg-skip-if "need fp instructions" { *-*-* } { "-mfloat-abi=soft" } { "" } } */ /* { dg-options "-O2 -mfpu=vfp -mfloat-abi=softfp" } */ void foo (float *p, float a, float b, int n) { float c = a + b; do *p++ = c; while (n--); } /* { dg-final { scan-assembler "fstmias" } } */
Go to most recent revision | Compare with Previous | Blame | View Log