Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / 20031106-6.c
blob51fcd9788f2e90da027d76d7ca096e47c15d8b33
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fno-tree-sra -fdump-tree-optimized" } */
4 extern void link_error (void);
6 /* Check for copyprop on structs. */
8 struct s
10 char d;
11 int a, b;
12 double m;
15 struct s foo (struct s r)
17 struct s temp_struct1;
18 struct s temp_struct2;
19 struct s temp_struct3;
20 temp_struct1 = r;
21 temp_struct2 = temp_struct1;
22 temp_struct3 = temp_struct2;
23 return temp_struct3;
26 /* There should be no references to any of "temp_struct*"
27 temporaries. */
28 /* { dg-final { scan-tree-dump-times "temp_struct" 0 "optimized" { xfail *-*-* } } } */
29 /* { dg-final { cleanup-tree-dump "optimized" } } */