IRA: Ignore debug insns for uses in split_live_ranges_for_shrink_wrap. [PR116179]
[official-gcc.git] / gcc / testsuite / c-c++-common / analyzer / paths-1a.c
bloba1b842ff54fb248705e26ba2c6e8a5a30a36196f
1 #include "analyzer-decls.h"
3 union foo
5 int m_flag;
6 };
8 extern void bar (int);
10 void test (union foo *pf)
12 if (pf->m_flag)
13 bar (0);
14 else
15 bar (1);
16 __analyzer_dump_exploded_nodes (0); /* { dg-warning "1 processed enode" } */