URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [compat/] [scalar-by-value-6_main.c] - Rev 867
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test that function args can be passed in various positions to both fixed and variable arg functions. */ /* { dg-options "-O" } */ /* { dg-options "-O -mlong-double-128" { target powerpc*-*-* } } */ extern void exit (int); extern void longdouble_i_doit (void); extern void longdouble_d_doit (void); extern void complexlongdouble_i_doit (void); extern void complexlongdouble_d_doit (void); int main (void) { longdouble_i_doit (); longdouble_d_doit (); complexlongdouble_i_doit (); complexlongdouble_d_doit (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log