Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-fre-53.c
blob34d1ac6b5234f157532cd94dd56c72d5cc0d2338
1 /* { dg-do compile } */
2 /* { dg-options "-O -fno-tree-forwprop -fdump-tree-fre1" } */
4 const int a[]={1,2,3};
5 int f(){
6 int*b=__builtin_malloc(12);
7 __builtin_memcpy(b,a,12);
8 return b[0];
11 /* { dg-final { scan-tree-dump "return 1;" "fre1" } } */