URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [obj-c++.dg/] [warn7.mm] - Rev 714
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/50757
// { dg-options "-Wformat -Wno-nonnull" }
extern void *f (void *__s) __attribute__ ((__nonnull__ (1)));
int main()
{
void* const s = 0;
f(s);
}
Go to most recent revision | Compare with Previous | Blame | View Log