OSDN Git Service

* g++.dg/abi/vague1.C (dg-final): Return if target is hppa*-*-hpux*.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / abi / vague1.C
1 // Test that we don't emit unneeded copies of static data member template
2 // instantiations.
3
4 // Disable debug info so we don't get confused by the symbol name there.
5 // The test fails on hppa*-*-hpux* because the symbol _ZN1AIiE1tE is imported.
6 // { dg-options "-g0" }
7 // { dg-final { if { [istarget hppa*-*-hpux*] } { return } } }
8 // { dg-final { scan-assembler-not "_ZN1AIiE1tE" } }
9
10 template <class T> struct A {
11   static const T t = 0;
12 };
13
14 template <class T> const T A<T>::t;
15
16 int i;
17 int main ()
18 {
19   i = A<int>::t;                // Should just use the value
20 }