1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* { dg-do compile } */ /* { dg-options "-O2 -g -fdump-tree-optimized --param logical-op-non-short-circuit=1" } */ int t (int a, int b) { if (a > 0) goto L1; else goto L2; L1: if (b > 0) goto L2; return 5; L2: return 6; } /* { dg-final { scan-tree-dump "\|" "optimized" } } */