PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / Woverlength-strings-pedantic-c89-no.c
bloba2ccbddf2569f9dd7d7c87c503fe242394b269c9
1 /* -Woverlength-strings complains about string constants which are too long
2 for the C standard's "minimum maximum" limits. It is off by default,
3 but implied by -pedantic. */
5 /* { dg-options "-std=c89 -pedantic -Wno-overlength-strings" } */
7 #define TEN "xxxxxxxxxx"
8 #define HUN TEN TEN TEN TEN TEN TEN TEN TEN TEN TEN
9 #define THO HUN HUN HUN HUN HUN HUN HUN HUN HUN HUN
11 /* C89's minimum-maximum is 509. */
12 const char x510[] = HUN HUN HUN HUN HUN TEN;
14 /* C99's minimum-maximum is 4095. */
15 const char x4096[] =
16 THO THO THO THO /* 4000 */
17 TEN TEN TEN TEN TEN /* 4050 */
18 TEN TEN TEN TEN /* 4090 */
19 "123456";