PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr83648.c
blob884faf81167414684f10544ec00bb8fe515de036
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-local-pure-const-details" } */
4 void *g(unsigned n)
6 return n ? __builtin_malloc (n) : 0;
9 void *h()
11 return 0;
14 /* { dg-final { scan-tree-dump "Function found to be malloc: g" "local-pure-const1" } } */
15 /* { dg-final { scan-tree-dump-not "Function found to be malloc: h" "local-pure-const1" } } */