1 /* PR tree-optimization/86428 - strlen of const array initialized with
2 a string of the same length not folded
4 { dg-options "-O0 -Wall -fdump-tree-gimple" } */
8 const char a1
[1] = "\0";
9 const char a2
[2] = "1\0";
10 const char a3
[3] = "12\0";
11 const char a8
[8] = "1234567\0";
12 const char a9
[9] = "12345678\0";
14 const char ax
[9] = "12345678\0\0\0\0"; /* { dg-warning "initializer-string for array of 'char' is too long" } */
15 const char ay
[9] = "\00012345678\0\0\0\0"; /* { dg-warning "initializer-string for array of 'char' is too long" } */
20 size_t len0
= strlen (a1
);
26 size_t len
= strlen (a2
) + strlen (a3
) + strlen (a8
) + strlen (a9
);
32 size_t lenx
= strlen (ax
);
38 size_t leny
= strlen (ay
);
44 int cmp88
= memcmp (a8
, "1234567\0", sizeof a8
);
48 /* { dg-final { scan-tree-dump-times "strlen1" 0 "gimple" } }
49 { dg-final { scan-tree-dump-times "len0 = 0;" 1 "gimple" } }
50 { dg-final { scan-tree-dump-times "len = 18;" 1 "gimple" } }
51 { dg-final { scan-tree-dump-times "lenx = 8;" 1 "gimple" } }
52 { dg-final { scan-tree-dump-times "leny = 0;" 1 "gimple" } }
53 { dg-final { scan-tree-dump-times "cmp88 = 0;" 1 "gimple" } } */