URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [gcc.dg/] [format/] [nonlit-3.c] - Rev 20
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test for warnings for non-string-literal formats. Test for strftime formats. */ /* Origin: Joseph Myers <jsm28@cam.ac.uk> */ /* { dg-do compile } */ /* { dg-options "-std=gnu99 -Wformat -Wformat-nonliteral" } */ #include "format.h" void foo (char *s, size_t m, const struct tm *tp, char *fmt) { strftime (s, m, fmt, tp); /* { dg-warning "format string" "non-literal" } */ }
Go to most recent revision | Compare with Previous | Blame | View Log