URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [lto/] [20091002-2_0.C] - Rev 751
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-lto-do link }
// { dg-require-effective-target fpic }
// { dg-lto-options {{-fPIC}} }
// { dg-extra-ld-options "-fPIC -r -nostdlib" }
class DataArray {
int max() const { }
};
template < class HashItem >
class DataHashTable {
template < class ElemHashItem >
class Element { };
typedef Element< HashItem > Elem;
DataArray m_elem;
};
class Name { };
class NameSet {
DataHashTable < Name > hashtab;
};
NameSet p;
Go to most recent revision | Compare with Previous | Blame | View Log