1 /* Check that we move DFmode values via memory between FP and GP.  */
2 /* { dg-skip-if "code quality test" { *-*-* } { "-O0" } { "" } } */
3 /* { dg-options "-mabi=32 -mfpxx isa=2" } */
4 
5 void bar (void);
6 
7 double
foo(int x,double a)8 foo (int x, double a)
9 {
10   return a;
11 }
12 /* { dg-final { scan-assembler-not "mthc1" } } */
13 /* { dg-final { scan-assembler-not "mtc1" } } */
14 /* { dg-final { scan-assembler-times "ldc1" 1 } } */
15