URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [opt/] [pr13066-1.C] - Rev 764
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */
/* { dg-options "-O2" } */
class nsIURI;
struct nsCOMPtr
{
operator nsIURI*() const
{
return mRawPtr;
}
nsIURI *mRawPtr;
};
void func()
{
nsCOMPtr u1;
if (!u1 == !u1)
return;
}
Go to most recent revision | Compare with Previous | Blame | View Log