Merge tree-ssa-20020619-branch into mainline.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / 20030922-1.c
blob8876071c81f53a9781d5586c3b4f31a3123bd0cb
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fdump-tree-dom3" } */
5 union tree_node;
6 typedef union tree_node *tree;
7 enum tree_code
9 BIND_EXPR,
11 struct tree_common
13 enum tree_code code:8;
15 union tree_node
17 struct tree_common common;
19 tree
20 voidify_wrapper_expr (tree wrapper)
22 switch (wrapper->common.code)
24 case BIND_EXPR:
25 if (wrapper->common.code != BIND_EXPR)
26 abort ();
31 /* There should be no IF conditionals. */
32 /* { dg-final { scan-tree-dump-times "if " 0 "dom3"} } */