URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20080117-1.c] - Rev 308
Go to most recent revision | Compare with Previous | Blame | View Log
typedef struct gs_imager_state_s { struct { int half_width; int cap; float miter_limit; } line_params; } gs_imager_state; static const gs_imager_state gstate_initial = { { 1 } }; void gstate_path_memory(gs_imager_state *pgs) { *pgs = gstate_initial; } int gs_state_update_overprint(void) { return gstate_initial.line_params.half_width; } extern void abort (void); int main() { if (gs_state_update_overprint() != 1) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log