IRA: Ignore debug insns for uses in split_live_ranges_for_shrink_wrap. [PR116179]
[official-gcc.git] / gcc / testsuite / c-c++-common / analyzer / pr94047.c
bloba5796735c231ad787dc56c438e5cc662994afaab
1 typedef struct list
3 struct list *next;
4 } tlist;
6 void
7 bar (struct list *l)
9 l->next = l->next->next;
12 void
13 foo (void)
15 struct list l; /* { dg-message "region created on stack here" } */
16 tlist t = l; /* { dg-warning "use of uninitialized value 'l'" } */
17 for (;;)
18 bar (&t);