No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / gcc.dg / tree-ssa / ssa-dom-thread-1.c
blobd89394a2698a43ceefa957a5a34e4e4eda9ee2b6
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-dom1-details" } */
3 void t(void);
4 void q(void);
5 void q1(void);
6 void
7 threading(int a,int b)
9 if (a>b)
10 t();
11 else
12 q();
13 if (a<=b)
14 q1();
16 /* We should thread the jump twice and elliminate it. */
17 /* { dg-final { scan-tree-dump-times "Threaded" 2 "dom1"} } */
18 /* { dg-final { cleanup-tree-dump "dom1" } } */