OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [Woverlength-strings-pedantic-c90.c] - Diff between revs 816 and 826

Only display areas with differences | Details | Blame | View Log

Rev 816 Rev 826
/* -Woverlength-strings complains about string constants which are too long
/* -Woverlength-strings complains about string constants which are too long
   for the C standard's "minimum maximum" limits.  It is off by default,
   for the C standard's "minimum maximum" limits.  It is off by default,
   but implied by -pedantic.  */
   but implied by -pedantic.  */
 
 
/* { dg-options "-std=c90 -pedantic" } */
/* { dg-options "-std=c90 -pedantic" } */
 
 
#define TEN "xxxxxxxxxx"
#define TEN "xxxxxxxxxx"
#define HUN TEN TEN TEN TEN TEN  TEN TEN TEN TEN TEN
#define HUN TEN TEN TEN TEN TEN  TEN TEN TEN TEN TEN
#define THO HUN HUN HUN HUN HUN  HUN HUN HUN HUN HUN
#define THO HUN HUN HUN HUN HUN  HUN HUN HUN HUN HUN
 
 
/* C89's minimum-maximum is 509. */
/* C89's minimum-maximum is 509. */
const char x510[] = HUN HUN HUN HUN HUN TEN; /* { dg-warning "greater than" } */
const char x510[] = HUN HUN HUN HUN HUN TEN; /* { dg-warning "greater than" } */
 
 
/* C99's minimum-maximum is 4095.  */
/* C99's minimum-maximum is 4095.  */
const char x4096[] =
const char x4096[] =
  THO THO THO THO     /* 4000 */
  THO THO THO THO     /* 4000 */
  TEN TEN TEN TEN TEN /* 4050 */
  TEN TEN TEN TEN TEN /* 4050 */
  TEN TEN TEN TEN     /* 4090 */
  TEN TEN TEN TEN     /* 4090 */
  "123456";  /* { dg-warning "greater than" } */
  "123456";  /* { dg-warning "greater than" } */
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.