Assign result of get_string_lenth to a SSA_NAME (PR tree-optimization/83552).
[official-gcc.git] / gcc / testsuite / gcc.dg / pr83552.c
blob993cdd265819c693ebb3b9b59860fd4beb43e383
1 /* PR tree-optimization/83364 */
2 /* { dg-options "-O2" } */
4 char *b;
5 char d[100];
6 void a ();
7 void
8 c (void)
10 __builtin_strcat (d, "12345");
11 if (__builtin_strstr (b, d) == b)
12 a ();