URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [warn/] [Wunused-var-6.C] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }
// { dg-options "-Wunused" }
template <int N>
int
f1 (void)
{
int c = ({
int a;
a = 1;
a; });
return c;
}
template <int N>
void
f2 (void)
{
int f;
f = 0;
__asm__ __volatile__ ("" : "+r" (f));
}
void
test ()
{
(void) f1<0> ();
f2<0> ();
}
Go to most recent revision | Compare with Previous | Blame | View Log