1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fdump-tree-dom3" } */
5 typedef struct rtx_def
*rtx
;
13 typedef union rtunion_def rtunion
;
24 static int max_uid_cuid
;
31 if (place
->fld
[0].rtint
<= max_uid_cuid
32 && (place
->fld
[0].rtint
> max_uid_cuid
? insn_cuid (place
) :
33 uid_cuid
[place
->fld
[0].rtint
]))
39 /* There should be two IF conditionals. One tests <= max_uid_cuid, the
40 other tets the value in uid_cuid. If either is false the jumps
41 are threaded to the return 0. Which in turn means the path
42 which combines the result of those two tests into a new test
43 must always be true and it is optimized appropriately. */
44 /* { dg-final { scan-tree-dump-times "if " 2 "dom3"} } */
45 /* { dg-final { cleanup-tree-dump "dom3" } } */