Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / 20030711-2.c
blobc9431f2d2d2a177e1a0d95a441c09e69557d8b19
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-dom3" } */
5 struct rtx_def;
6 typedef struct rtx_def *rtx;
7 struct rtvec_def;
8 typedef struct rtvec_def *rtvec;
9 union tree_node;
10 typedef union tree_node *tree;
11 typedef struct mem_attrs
13 long alias;
15 mem_attrs;
16 union rtunion_def
18 mem_attrs *rtmem;
20 typedef union rtunion_def rtunion;
21 struct rtx_def
23 int code;
24 rtunion fld[1];
26 struct tree_decl
28 rtx rtl;
30 union tree_node
32 struct tree_decl decl;
34 long
35 get_alias_set (t,z)
36 tree t;
37 rtx z;
39 if (t->decl.rtl && (((t->decl.rtl ? z
40 : (make_decl_rtl (t, 0), t->decl.rtl)))->code))
41 return (((((t->decl.rtl ? z : (make_decl_rtl (t, 0), t->decl.rtl)))->
42 fld[1]).rtmem) == 0 ? 0 : (((((
44 t;}
45 )->decl.
46 rtl ? z : (make_decl_rtl (t, 0),
47 t->decl.rtl)))->
48 fld[1]).rtmem)->alias);
51 /* The calls to make_decl_rtl should be eliminated
52 /* { dg-final { scan-tree-dump-not "make_decl_rtl \\(\\)" "dom3" } } */
54 /* There should be three IF conditionals. */
55 /* { dg-final { scan-tree-dump-times "if " 3 "dom3"} } */
57 /* There should be one loads of decl.rtl. */
58 /* { dg-final { scan-tree-dump-times "decl\\.rtl" 1 "dom3"} } */
60 /* There should be one load of code. */
61 /* { dg-final { scan-tree-dump-times "code" 1 "dom3"} } */
63 /* There should be one load of rtmem. */
64 /* { dg-final { scan-tree-dump-times "rtmem" 1 "dom3"} } */
66 /* There should be one load of alias. */
67 /* { dg-final { scan-tree-dump-times "->alias" 1 "dom3"} } */