* tree-loop-distribution.c (INCLUDE_ALGORITHM): New header file.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-fre-37.c
blobd847e8d98caf36385cfdd325a29bbf22b87d261a
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-fre1" } */
4 int a[256];
5 int *b, *c;
6 void foo (int i, int j)
8 b = &a[i+j];
9 c = &a[i+j];
12 /* We should remove the redundant address computation. */
14 /* { dg-final { scan-tree-dump-times " = &a" 1 "fre1" } } */