URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [ipa/] [pr45565.C] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }
// { dg-options "-O -fno-toplevel-reorder -fno-inline -fipa-cp -fipa-cp-clone -fkeep-inline-functions" }
template < typename Derived > struct AnyMatrixBase
{
};
struct Matrix Random ();
struct Matrix:AnyMatrixBase < Matrix >
{
void bar ()
{
throw;
}
void foo (Matrix other)
{
bar ();
Matrix (AnyMatrixBase < Matrix > (Random ()));
}
template
< typename OtherDerived > Matrix (AnyMatrixBase < OtherDerived > other)
{
foo (other);
}
};
Matrix x (Random ());
Go to most recent revision | Compare with Previous | Blame | View Log