1 /* Execution test for argument passing with SSE and local functions
2 Written by Paolo Bonzini, 25 January 2005 */
5 /* { dg-options "-O2 -msse -mfpmath=sse" } */
6 /* { dg-require-effective-target sse } */
12 static float xs (void)
22 static double xd (void)
35 assert (ys (1) == xs ());
36 assert (ys (2) == xs () * 2);
37 assert (yd (1) == xd ());
38 assert (yd (2) == xd () * 2);