URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [warn/] [pr5310.C] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
// PR 5310
// { dg-do compile }
// { dg-options "-pedantic -Wall -Wextra -Wpointer-arith -Wconversion" }
void foo (int);
void foo (long);
void bar()
{
foo ((int)__null);
foo ((long)__null);
}
Go to most recent revision | Compare with Previous | Blame | View Log