aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/Woverlength-strings-pedantic-c89-no.c
blob: a2ccbddf2569f9dd7d7c87c503fe242394b269c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* -Woverlength-strings complains about string constants which are too long
   for the C standard's "minimum maximum" limits.  It is off by default,
   but implied by -pedantic.  */

/* { dg-options "-std=c89 -pedantic -Wno-overlength-strings" } */

#define TEN "xxxxxxxxxx"
#define HUN TEN TEN TEN TEN TEN  TEN TEN TEN TEN TEN
#define THO HUN HUN HUN HUN HUN  HUN HUN HUN HUN HUN

/* C89's minimum-maximum is 509. */
const char x510[] = HUN HUN HUN HUN HUN TEN;

/* C99's minimum-maximum is 4095.  */
const char x4096[] =
  THO THO THO THO     /* 4000 */
  TEN TEN TEN TEN TEN /* 4050 */
  TEN TEN TEN TEN     /* 4090 */
  "123456";