URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [pr40753.c] - Rev 302
Go to most recent revision | Compare with Previous | Blame | View Log
typedef struct { unsigned nargs; } ffi_cif; typedef struct { char tramp[24]; ffi_cif *cif; } ffi_closure; extern void *memcpy (void *, const void *, __SIZE_TYPE__); extern void ffi_closure_LINUX64 (void); int ffi_prep_closure_loc (ffi_closure *closure, ffi_cif *cif) { void **tramp = (void **) &closure->tramp[0]; memcpy (tramp, (char *) ffi_closure_LINUX64, 16); closure->cif = cif; return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log