1 /* PR tree-optimization/61677 - False positive with -Wmaybe-uninitialized
3 { dg-options "-O2 -Wall" } */
7 struct menu
{ struct menu
*parent
; };
9 struct jump_key
{ int offset
; };
11 void f (struct menu
*menu
)
14 struct menu
*submenu
[8], *location
;
15 struct jump_key
*jump
;
17 for (i
= 0; menu
&& i
< 8; menu
= menu
->parent
)