URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [warn/] [format1.C] - Rev 307
Go to most recent revision | Compare with Previous | Blame | View Log
// Test that formats get checked according to C94.
// Origin: Joseph Myers <jsm28@cam.ac.uk>.
// { dg-do compile }
// { dg-options "-ansi -pedantic -Wformat" }
#include <cstdio>
void
foo (int i, int *ip, __WINT_TYPE__ lc, wchar_t *ls)
{
std::printf ("%d%ls%lc\n", i, ls, lc);
std::printf ("%d", ls); // { dg-warning "format" "printf warning" }
std::scanf ("%d%lc%ls%l[abc]", ip, ls, ls, ls);
std::scanf ("%hd", ip); // { dg-warning "format" "scanf warning" }
}
Go to most recent revision | Compare with Previous | Blame | View Log