cfgexpand: Expand comment on when non-var clobbers can show up
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr95856.c
blob19a86a62d9533f6e83745d3e67ed274f54cbccba
1 /* { dg-do compile } */
3 typedef struct {
4 float xmin, xmax;
5 } rctf;
7 typedef struct {
8 rctf tot;
9 } View2D;
11 View2D graph_main_area_draw_v2d;
13 void get_graph_keyframe_extents();
15 void
16 graph_main_area_draw() {
17 get_graph_keyframe_extents();
18 graph_main_area_draw_v2d.tot.xmin -= 10.0f;
19 graph_main_area_draw_v2d.tot.xmax += 10.0f;