merge with trunk @ 139506
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / 20030814-6.c
blob170526547d2170fb0ffaf307f49d6d5f9bafc787
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fdump-tree-dom2" } */
4 extern void abort (void);
5 union tree_node;
6 typedef union tree_node *tree;
7 enum tree_code
9 LAST_AND_UNUSED_TREE_CODE
11 extern const char tree_code_type[];
12 struct tree_common
14 enum tree_code code:8;
16 struct tree_type
18 double alias_set;
20 union tree_node
22 struct tree_common common;
23 struct tree_type type;
25 long
26 foo (t, set)
27 tree t;
28 double set;
30 if (tree_code_type[t->common.code] != 't')
31 abort ();
33 t->type.alias_set = set;
35 if (t->common.code == 42)
36 return 1;
37 else
38 return 0;
40 /* There should be precisely one load of common.code. If there is
41 more than one, then the dominator optimizations failed. */
42 /* ??? Will fail until we properly distinguish member stores. At
43 present the write to type.alias_set kills the previous load. */
44 /* { dg-final { scan-tree-dump-times "common.code" 1 "dom2" { xfail *-*-* } } } */
45 /* { dg-final { cleanup-tree-dump "dom2" } } */