aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/instantiate12.C
blob: ce1efe0c7314a067d9e8ebfbfb72099e6cd867ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60

// Copyright (C) 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 14 Nov 2000 <nathan@codesourcery.com>

// Bug 635. We failed to emit initializer code for out-of-class defined
// static const members of template instantiations.

static int inited = 0;

static bool setFlag()
{
  inited++;
  return true;
}

template<typename T> struct X
{
  static const bool cflag;
  static bool flag;
  static const bool iflag = true;
  static const bool jflag = true;
};

template<typename T> const bool X<T>::cflag (setFlag ());
template<typename T> bool X<T>::flag (setFlag ());
template<typename T> const bool X<T>::iflag;

int main ()
{
  X<int> a;
  if (!a.flag)
    return 1;
  if (!a.cflag)
    return 2;
  if (!a.iflag)
    return 3;
  if (!a.jflag)
    return 5;
  if (!X<float>::flag)
    return 5;
  if (!X<float>::cflag)
    return 6;
  if (!X<float>::iflag)
    return 7;
  if (!X<float>::jflag)
    return 8;
  if (inited != 4)
    return 9;
  return 0;
}

// On platforms that do not have weak symbols, these static data
// members must be explicitly instantiated.  The iflag and jflag data
// members should not have to be explicitly instantiated because their
// const-ness should allow the compiler to elide references to the
// actual variables.
template const bool X<int>::cflag;
template const bool X<int>::flag;
template const bool X<float>::cflag;
template const bool X<float>::flag;