URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [warn/] [format5.C] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/38980
// { dg-options "-Wformat" }
extern "C"
int printf(const char *format, ...) __attribute__((format(printf, 1, 2) ));
const char fmt1[] = "Hello, %s";
void f()
{
printf(fmt1, 3); // { dg-warning "expects argument" }
}
Go to most recent revision | Compare with Previous | Blame | View Log