PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20080117-1.c
blob94b7c75312fd573ac0dce3c193f812c048adb9f1
1 typedef struct gs_imager_state_s {
2 struct {
3 int half_width;
4 int cap;
5 float miter_limit;
6 } line_params;
7 } gs_imager_state;
8 static const gs_imager_state gstate_initial = { { 1 } };
9 void gstate_path_memory(gs_imager_state *pgs) {
10 *pgs = gstate_initial;
12 int gs_state_update_overprint(void)
14 return gstate_initial.line_params.half_width;
17 extern void abort (void);
18 int main()
20 if (gs_state_update_overprint() != 1)
21 abort ();
22 return 0;