* tree-loop-distribution.c (INCLUDE_ALGORITHM): New header file.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / sra-3.c
blobe1d7af7775a62672d6b50d498a4fc9c1508cf47b
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fdump-tree-optimized" } */
4 /* Test for SRA. */
6 typedef struct teststruct
8 double d;
9 char f1;
10 } teststruct;
12 teststruct *globf1;
14 extern void link_error (void);
16 void
17 copystruct1 (void)
19 teststruct local;
20 globf1->f1 = 0;
21 local = *globf1;
22 if (local.f1 != 0)
23 link_error ();
26 /* There should be no reference to link_error. */
27 /* { dg-final { scan-tree-dump-times "link_error" 0 "optimized" } } */