URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [opt/] [empty2.C] - Rev 764
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/46160
// { dg-do compile }
struct S
{
enum E { A };
} s;
volatile S t;
void f (S::E);
void
g ()
{
volatile S *p = &s;
f (p->A);
f (t.A);
}
Go to most recent revision | Compare with Previous | Blame | View Log