URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [abi/] [vague1.C] - Rev 154
Compare with Previous | Blame | View Log
// Test that we don't emit unneeded copies of static data member template
// instantiations.
// Disable debug info so we don't get confused by the symbol name there.
// { dg-options "-g0" }
template <class T> struct A {
static const T t = 0;
};
template <class T> const T A<T>::t;
int i;
int main ()
{
i = A<int>::t; // Should just use the value
}