1 /* PR tree-optimization/55288 - Improve handling/suppression of
2 maybe-uninitialized warnings
4 { dg-options "-O2 -Wall" } */
9 iterator operator++ (int);
14 static void foo (int x)
16 bar (x); // { dg-bogus "uninitialized" }
19 int baz (iterator j, iterator end, int p)
23 for (; j != end; j++) {