1 /* Check that we move DFmode values using mtc1 between FP and GP.  */
2 /* { dg-skip-if "code quality test" { *-*-* } { "-O0" } { "" } } */
3 /* { dg-options "-mabi=32 -mfp32 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-times "mtc1" 2 } } */
13 /* { dg-final { scan-assembler-not "ldc1" } } */
14