PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / pr58742-2.c
blobf16289355893fb6cfd9afab848ff71dff5e6bf24
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-cddce1" } */
4 __SIZE_TYPE__
5 fx (char *a, __SIZE_TYPE__ sz)
7 char *b = a + sz;
8 /* The first forwprop pass should optimize this to return sz; */
9 return b - a;
12 /* { dg-final { scan-tree-dump "return sz" "cddce1" } } */