Commit f779b9ae by Richard Guenther Committed by Richard Biener

20080117-1.c: New testcase.

2008-01-17  Richard Guenther  <rguenther@suse.de>

        * gcc.c-torture/execute/20080117-1.c: New testcase.

From-SVN: r131594
parent 57c8cf5d
2008-01-17 Richard Guenther <rguenther@suse.de>
* gcc.c-torture/execute/20080117-1.c: New testcase.
2008-01-17 Revital Eres <eres@il.ibm.com>
PR30957
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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment