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/] [ms_c99-strftime-2.c] - Rev 437

Go to most recent revision | Compare with Previous | Blame | View Log

/* Test for strftime formats.  Rejection of extensions in pedantic mode.  */
/* Origin: Joseph Myers <jsm28@cam.ac.uk> */
/* { dg-do compile { target { *-*-mingw* } } } */
/* { dg-options "-std=iso9899:1999 -pedantic -Wformat" } */
 
#define USE_SYSTEM_FORMATS
#include "format.h"
 
void
foo (char *s, size_t m, const struct tm *tp)
{
  /* %P is a lowercase version of %p.  */
  strftime (s, m, "%P", tp); /* { dg-warning "unknown" "strftime %P" } */
  /* %k is %H but padded with a space rather than 0 if necessary.  */
  strftime (s, m, "%k", tp); /* { dg-warning "unknown" "strftime %k" } */
  /* %l is %I but padded with a space rather than 0 if necessary.  */
  strftime (s, m, "%l", tp); /* { dg-warning "unknown" "strftime %l" } */
  /* %s is the number of seconds since the Epoch.  */
  strftime (s, m, "%s", tp); /* { dg-warning "unknown" "strftime %s" } */
}
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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