1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
// PR tree-optimization/46864 // { dg-do compile } // { dg-options "-O -fnon-call-exceptions" } int baz (); struct S { int k; bool bar () throw () { int m = baz (); for (int i = 0; i < m; i++) k = i; return m; } }; extern S *s; void foo () { while (baz () && s->bar ()) ; }