1 /* PR tree-optimization/86400 - set<string>::set<char (*)[2]) constructor
2 does not work with array argument
3 Verify that strlen() calls with two-character array elements of
4 multidimensional arrays whose higher order dimension is 1 are not
7 { dg-options "-O2 -Wall -fdump-tree-optimized" } */
22 int n
= strlen (b
[0]);
30 int n
= strlen (&c
[0][0]);
35 /* { dg-final { scan-tree-dump-times "= strlen" 3 "optimized" } }
36 { dg-final { scan-tree-dump-times "abort" 3 "optimized" } } */