]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/tree-ssa/20030807-11.c
Merge tree-ssa-20020619-branch into mainline.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / 20030807-11.c
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fdump-tree-dom3" } */
3
4 struct rtx_def;
5 typedef struct rtx_def *rtx;
6 struct rtx_def
7 {
8 int code;
9 };
10 foo (reg)
11 rtx reg;
12 {
13 reg->code = 42;
14 if (reg->code != 42)
15 abort ();
16 }
17
18 /* There should be no IF conditionals. */
19 /* { dg-final { scan-tree-dump-times "if " 0 "dom3"} } */