OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [testsuite/] [gcc.dg/] [format/] [cast-1.c] - Diff between revs 298 and 384

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

Rev 298 Rev 384
/* Test for strings cast through integer types: should not be treated
/* Test for strings cast through integer types: should not be treated
   as format strings unless the types are of the same width as
   as format strings unless the types are of the same width as
   pointers (intptr_t or similar).  */
   pointers (intptr_t or similar).  */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-do compile } */
/* { dg-options "-Wformat" } */
/* { dg-options "-Wformat" } */
 
 
#include "format.h"
#include "format.h"
 
 
void
void
f (int x)
f (int x)
{
{
  printf("%s", x); /* { dg-warning "format" } */
  printf("%s", x); /* { dg-warning "format" } */
  printf((char *)(size_t)"%s", x); /* { dg-warning "format" } */
  printf((char *)(size_t)"%s", x); /* { dg-warning "format" } */
  printf((char *)(char)"%s", x); /* { dg-warning "cast from pointer to integer of different size" } */
  printf((char *)(char)"%s", x); /* { dg-warning "cast from pointer to integer of different size" } */
}
}
 
 

powered by: WebSVN 2.1.0

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