]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/src/ostream-inst.cc
re PR rtl-optimization/29841 (ICE with scheduling and __builtin_trap)
[thirdparty/gcc.git] / libstdc++-v3 / src / ostream-inst.cc
CommitLineData
248a9163
BK
1// Explicit instantiation file.
2
6defecc2 3// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
248a9163
BK
4// Free Software Foundation, Inc.
5//
6// This file is part of the GNU ISO C++ Library. This library is free
7// software; you can redistribute it and/or modify it under the
8// terms of the GNU General Public License as published by the
9// Free Software Foundation; either version 2, or (at your option)
10// any later version.
11
12// This library is distributed in the hope that it will be useful,
13// but WITHOUT ANY WARRANTY; without even the implied warranty of
14// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15// GNU General Public License for more details.
16
17// You should have received a copy of the GNU General Public License along
18// with this library; see the file COPYING. If not, write to the Free
83f51799 19// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
248a9163
BK
20// USA.
21
22// As a special exception, you may use this file as part of a free software
23// library without restriction. Specifically, if other files instantiate
24// templates or use macros or inline functions from this file, or you compile
25// this file and link it with other files to produce an executable, this
26// file does not by itself cause the resulting executable to be covered by
27// the GNU General Public License. This exception does not however
28// invalidate any other reasons why the executable file might be covered by
29// the GNU General Public License.
30
31//
32// ISO C++ 14882:
33//
34
35#include <ostream>
36#include <iomanip>
37
3cbc7af0
BK
38_GLIBCXX_BEGIN_NAMESPACE(std)
39
248a9163
BK
40 // ostream
41 template class basic_ostream<char>;
42 template ostream& endl(ostream&);
43 template ostream& ends(ostream&);
44 template ostream& flush(ostream&);
45 template ostream& operator<<(ostream&, char);
46 template ostream& operator<<(ostream&, unsigned char);
47 template ostream& operator<<(ostream&, signed char);
48 template ostream& operator<<(ostream&, const char*);
49 template ostream& operator<<(ostream&, const unsigned char*);
50 template ostream& operator<<(ostream&, const signed char*);
51
52 template ostream& operator<<(ostream&, _Setfill<char>);
53 template ostream& operator<<(ostream&, _Setiosflags);
54 template ostream& operator<<(ostream&, _Resetiosflags);
55 template ostream& operator<<(ostream&, _Setbase);
56 template ostream& operator<<(ostream&, _Setprecision);
57 template ostream& operator<<(ostream&, _Setw);
11202768 58 template ostream& __ostream_insert(ostream&, const char*, streamsize);
248a9163 59
49d5c016
PC
60 template ostream& ostream::_M_insert(long);
61 template ostream& ostream::_M_insert(unsigned long);
62 template ostream& ostream::_M_insert(bool);
63#ifdef _GLIBCXX_USE_LONG_LONG
64 template ostream& ostream::_M_insert(long long);
65 template ostream& ostream::_M_insert(unsigned long long);
66#endif
67 template ostream& ostream::_M_insert(double);
68 template ostream& ostream::_M_insert(long double);
69 template ostream& ostream::_M_insert(const void*);
70
3d7c150e 71#ifdef _GLIBCXX_USE_WCHAR_T
248a9163
BK
72 template class basic_ostream<wchar_t>;
73 template wostream& endl(wostream&);
74 template wostream& ends(wostream&);
75 template wostream& flush(wostream&);
76 template wostream& operator<<(wostream&, wchar_t);
77 template wostream& operator<<(wostream&, char);
78 template wostream& operator<<(wostream&, const wchar_t*);
79 template wostream& operator<<(wostream&, const char*);
80
81 template wostream& operator<<(wostream&, _Setfill<wchar_t>);
82 template wostream& operator<<(wostream&, _Setiosflags);
83 template wostream& operator<<(wostream&, _Resetiosflags);
84 template wostream& operator<<(wostream&, _Setbase);
85 template wostream& operator<<(wostream&, _Setprecision);
86 template wostream& operator<<(wostream&, _Setw);
11202768 87 template wostream& __ostream_insert(wostream&, const wchar_t*, streamsize);
49d5c016
PC
88
89 template wostream& wostream::_M_insert(long);
90 template wostream& wostream::_M_insert(unsigned long);
91 template wostream& wostream::_M_insert(bool);
92#ifdef _GLIBCXX_USE_LONG_LONG
93 template wostream& wostream::_M_insert(long long);
94 template wostream& wostream::_M_insert(unsigned long long);
95#endif
96 template wostream& wostream::_M_insert(double);
97 template wostream& wostream::_M_insert(long double);
98 template wostream& wostream::_M_insert(const void*);
248a9163 99#endif
3cbc7af0
BK
100
101_GLIBCXX_END_NAMESPACE
6defecc2
JJ
102
103// XXX GLIBCXX_ABI Deprecated
104#ifdef _GLIBCXX_LONG_DOUBLE_COMPAT
105
106#define _GLIBCXX_LDBL_COMPAT(dbl, ldbl) \
107 extern "C" void ldbl (void) __attribute__ ((alias (#dbl), weak))
108_GLIBCXX_LDBL_COMPAT (_ZNSolsEd, _ZNSolsEe);
109_GLIBCXX_LDBL_COMPAT (_ZNSt13basic_ostreamIwSt11char_traitsIwEElsEd,
110 _ZNSt13basic_ostreamIwSt11char_traitsIwEElsEe);
111_GLIBCXX_LDBL_COMPAT (_ZNSo9_M_insertIdEERSoT_,
112 _ZNSo9_M_insertIeEERSoT_);
113_GLIBCXX_LDBL_COMPAT (_ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIdEERS2_T_,
114 _ZNSt13basic_ostreamIwSt11char_traitsIwEE9_M_insertIeEERS2_T_);
115
116#endif // _GLIBCXX_LONG_DOUBLE_COMPAT