annotate libquadmath/ChangeLog @ 122:fb3d53c41846

do not expand code segment
author mir3636
date Thu, 22 Mar 2018 17:37:58 +0900
parents 04ced10e8804
children 84e7813d76e9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents: 68
diff changeset
1 2017-09-01 Michael Meissner <meissner@linux.vnet.ibm.com>
kono
parents: 68
diff changeset
2
kono
parents: 68
diff changeset
3 PR libquadmath/81848
kono
parents: 68
diff changeset
4 * configure.ac (powerpc*-linux*): Use attribute mode KC to create
kono
parents: 68
diff changeset
5 complex __float128 on PowerPC instead of attribute mode TC.
kono
parents: 68
diff changeset
6 * quadmath.h (__complex128): Likewise.
kono
parents: 68
diff changeset
7 * configure: Regenerate.
kono
parents: 68
diff changeset
8 * math/cbrtq.c (CBRT2): Use __float128 not long double.
kono
parents: 68
diff changeset
9 (CBRT4): Likewise.
kono
parents: 68
diff changeset
10 (CBRT2I): Likewise.
kono
parents: 68
diff changeset
11 (CBRT4I): Likewise.
kono
parents: 68
diff changeset
12 * math/j0q.c (U0): Likewise.
kono
parents: 68
diff changeset
13 * math/sqrtq.c (sqrtq): Don't depend on implicit conversion
kono
parents: 68
diff changeset
14 between __float128, instead explicitly convert the __float128
kono
parents: 68
diff changeset
15 value to long double because the PowerPC does not allow __float128
kono
parents: 68
diff changeset
16 and long double in the same expression.
kono
parents: 68
diff changeset
17
kono
parents: 68
diff changeset
18 2017-07-19 Gerald Pfeifer <gerald@pfeifer.com>
kono
parents: 68
diff changeset
19
kono
parents: 68
diff changeset
20 * math/powq.c (powq): Use uint32_t instead of u_int32_t.
kono
parents: 68
diff changeset
21
kono
parents: 68
diff changeset
22 2017-07-19 Jakub Jelinek <jakub@redhat.com>
kono
parents: 68
diff changeset
23
kono
parents: 68
diff changeset
24 PR libquadmath/65757
kono
parents: 68
diff changeset
25 * quadmath-imp.h (math_opt_barrier, math_force_eval,
kono
parents: 68
diff changeset
26 math_narrow_eval, math_check_force_underflow,
kono
parents: 68
diff changeset
27 math_check_force_underflow_nonneg): Define.
kono
parents: 68
diff changeset
28 * math/ceilq.c: Backport changes from upstream glibc
kono
parents: 68
diff changeset
29 between 2012-11-01 and 2017-07-13.
kono
parents: 68
diff changeset
30 * math/remquoq.c: Likewise.
kono
parents: 68
diff changeset
31 * math/expq.c: Likewise.
kono
parents: 68
diff changeset
32 * math/llroundq.c: Likewise.
kono
parents: 68
diff changeset
33 * math/logq.c: Likewise.
kono
parents: 68
diff changeset
34 * math/atanq.c: Likewise.
kono
parents: 68
diff changeset
35 * math/nearbyintq.c: Likewise.
kono
parents: 68
diff changeset
36 * math/scalblnq.c: Likewise.
kono
parents: 68
diff changeset
37 * math/finiteq.c: Likewise.
kono
parents: 68
diff changeset
38 * math/atanhq.c: Likewise.
kono
parents: 68
diff changeset
39 * math/expm1q.c: Likewise.
kono
parents: 68
diff changeset
40 * math/sinhq.c: Likewise.
kono
parents: 68
diff changeset
41 * math/log10q.c: Likewise.
kono
parents: 68
diff changeset
42 * math/rintq.c: Likewise.
kono
parents: 68
diff changeset
43 * math/roundq.c: Likewise.
kono
parents: 68
diff changeset
44 * math/fmaq.c: Likewise.
kono
parents: 68
diff changeset
45 * math/erfq.c: Likewise.
kono
parents: 68
diff changeset
46 * math/log2q.c: Likewise.
kono
parents: 68
diff changeset
47 * math/lroundq.c: Likewise.
kono
parents: 68
diff changeset
48 * math/j1q.c: Likewise.
kono
parents: 68
diff changeset
49 * math/scalbnq.c: Likewise.
kono
parents: 68
diff changeset
50 * math/truncq.c: Likewise.
kono
parents: 68
diff changeset
51 * math/frexpq.c: Likewise.
kono
parents: 68
diff changeset
52 * math/sincosq.c: Likewise.
kono
parents: 68
diff changeset
53 * math/tanhq.c: Likewise.
kono
parents: 68
diff changeset
54 * math/asinq.c: Likewise.
kono
parents: 68
diff changeset
55 * math/coshq.c: Likewise.
kono
parents: 68
diff changeset
56 * math/j0q.c: Likewise.
kono
parents: 68
diff changeset
57 * math/asinhq.c: Likewise.
kono
parents: 68
diff changeset
58 * math/floorq.c: Likewise.
kono
parents: 68
diff changeset
59 * math/sinq_kernel.c: Likewise.
kono
parents: 68
diff changeset
60 * math/powq.c: Likewise.
kono
parents: 68
diff changeset
61 * math/hypotq.c: Likewise.
kono
parents: 68
diff changeset
62 * math/sincos_table.c: Likewise.
kono
parents: 68
diff changeset
63 * math/rem_pio2q.c: Likewise.
kono
parents: 68
diff changeset
64 * math/nextafterq.c: Likewise.
kono
parents: 68
diff changeset
65 * math/log1pq.c: Likewise.
kono
parents: 68
diff changeset
66 * math/sincosq_kernel.c: Likewise.
kono
parents: 68
diff changeset
67 * math/tanq.c: Likewise.
kono
parents: 68
diff changeset
68 * math/acosq.c: Likewise.
kono
parents: 68
diff changeset
69 * math/lrintq.c: Likewise.
kono
parents: 68
diff changeset
70 * math/llrintq.c: Likewise.
kono
parents: 68
diff changeset
71
kono
parents: 68
diff changeset
72 2017-02-09 Gerald Pfeifer <gerald@pfeifer.com>
kono
parents: 68
diff changeset
73
kono
parents: 68
diff changeset
74 * configure.ac (ACX_BUGURL): Update.
kono
parents: 68
diff changeset
75 * configure: Regenerate.
kono
parents: 68
diff changeset
76
kono
parents: 68
diff changeset
77 2017-01-17 Jakub Jelinek <jakub@redhat.com>
kono
parents: 68
diff changeset
78
kono
parents: 68
diff changeset
79 PR other/79046
kono
parents: 68
diff changeset
80 * configure.ac: Add GCC_BASE_VER.
kono
parents: 68
diff changeset
81 * Makefile.am (gcc_version): Use @get_gcc_base_ver@ instead of cat to
kono
parents: 68
diff changeset
82 get version from BASE-VER file.
kono
parents: 68
diff changeset
83 * configure: Regenerated.
kono
parents: 68
diff changeset
84 * Makefile.in: Regenerated.
kono
parents: 68
diff changeset
85
kono
parents: 68
diff changeset
86 2017-01-01 Jakub Jelinek <jakub@redhat.com>
kono
parents: 68
diff changeset
87
kono
parents: 68
diff changeset
88 * libquadmath.texi: Bump @copying's copyright year.
kono
parents: 68
diff changeset
89
kono
parents: 68
diff changeset
90 2016-11-15 Matthias Klose <doko@ubuntu.com>
kono
parents: 68
diff changeset
91
kono
parents: 68
diff changeset
92 * configure: Regenerate.
kono
parents: 68
diff changeset
93
kono
parents: 68
diff changeset
94 2016-01-04 Jakub Jelinek <jakub@redhat.com>
kono
parents: 68
diff changeset
95
kono
parents: 68
diff changeset
96 * libquadmath.texi: Bump @copying's copyright year.
kono
parents: 68
diff changeset
97
kono
parents: 68
diff changeset
98 2015-08-09 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
kono
parents: 68
diff changeset
99
kono
parents: 68
diff changeset
100 * Makefile.am (libquadmath_la_SOURCES): Add matha/logbq.c.
kono
parents: 68
diff changeset
101 * Makefile.in: Regenerate.
kono
parents: 68
diff changeset
102 * libquadmath.texi: Document logbq.
kono
parents: 68
diff changeset
103 * quadmath.h: Add logbq prototype.
kono
parents: 68
diff changeset
104 * quadmath.map: Add logbq.
kono
parents: 68
diff changeset
105 * quadmath_weak.h: Add logbq prototype.
kono
parents: 68
diff changeset
106 * math/logbq.c: New file
kono
parents: 68
diff changeset
107
kono
parents: 68
diff changeset
108 2015-05-13 Michael Haubenwallner <michael.haubenwallner@ssi-schaefer.com>
kono
parents: 68
diff changeset
109
kono
parents: 68
diff changeset
110 * Makefile.in: Regenerated with automake-1.11.6.
kono
parents: 68
diff changeset
111 * aclocal.m4: Likewise.
kono
parents: 68
diff changeset
112 * configure: Likewise.
kono
parents: 68
diff changeset
113
kono
parents: 68
diff changeset
114 2015-01-26 Matthias Klose <doko@ubuntu.com>
kono
parents: 68
diff changeset
115
kono
parents: 68
diff changeset
116 * configure.ac: Move AM_ENABLE_MULTILIB before AC_PROG_CC.
kono
parents: 68
diff changeset
117 * configure: Regenerate.
kono
parents: 68
diff changeset
118
kono
parents: 68
diff changeset
119 2015-01-05 Jakub Jelinek <jakub@redhat.com>
kono
parents: 68
diff changeset
120
kono
parents: 68
diff changeset
121 * libquadmath.texi: Bump @copying's copyright year.
kono
parents: 68
diff changeset
122
kono
parents: 68
diff changeset
123 2014-11-21 H.J. Lu <hongjiu.lu@intel.com>
kono
parents: 68
diff changeset
124
kono
parents: 68
diff changeset
125 PR bootstrap/63784
kono
parents: 68
diff changeset
126 * configure: Regenerated.
kono
parents: 68
diff changeset
127
kono
parents: 68
diff changeset
128 2014-11-11 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
kono
parents: 68
diff changeset
129
kono
parents: 68
diff changeset
130 PR target/63610
kono
parents: 68
diff changeset
131 * configure: Regenerate.
kono
parents: 68
diff changeset
132
kono
parents: 68
diff changeset
133 2014-10-21 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
kono
parents: 68
diff changeset
134
kono
parents: 68
diff changeset
135 PR libquadmath/55821
kono
parents: 68
diff changeset
136 * Makefile.am: Unconditionally define libquadmath_TEXINFOS.
kono
parents: 68
diff changeset
137 * Makefile.in: Regenerate.
kono
parents: 68
diff changeset
138
kono
parents: 68
diff changeset
139 2014-10-09 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
kono
parents: 68
diff changeset
140
kono
parents: 68
diff changeset
141 PR libquadmath/55821
kono
parents: 68
diff changeset
142 * Makefile.am: Conditionally define info_TEXINFOS and
kono
parents: 68
diff changeset
143 libquadmath_TEXINFOS.
kono
parents: 68
diff changeset
144 * Makefile.in: Regenerate.
kono
parents: 68
diff changeset
145
kono
parents: 68
diff changeset
146 2014-10-08 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
kono
parents: 68
diff changeset
147
kono
parents: 68
diff changeset
148 PR libquadmath/63487
kono
parents: 68
diff changeset
149 * libquadmath.texi (sincosq): Fix typo.
kono
parents: 68
diff changeset
150
kono
parents: 68
diff changeset
151 2014-01-02 Tobias Burnus <burnus@net-b.de>
kono
parents: 68
diff changeset
152
kono
parents: 68
diff changeset
153 * libquadmath.texi: Bump @copying's copyright year.
kono
parents: 68
diff changeset
154
kono
parents: 68
diff changeset
155 2013-12-04 Richard Sandiford <rdsandiford@googlemail.com>
kono
parents: 68
diff changeset
156
kono
parents: 68
diff changeset
157 * Makefile.am (AM_CPPFLAGS): Define.
kono
parents: 68
diff changeset
158 * Makefile.in: Regenerate.
kono
parents: 68
diff changeset
159 * printf/gmp-impl.h: Remove path from longlong.h include.
kono
parents: 68
diff changeset
160
kono
parents: 68
diff changeset
161 2013-09-20 Alan Modra <amodra@gmail.com>
kono
parents: 68
diff changeset
162
kono
parents: 68
diff changeset
163 * configure: Regenerate.
kono
parents: 68
diff changeset
164
kono
parents: 68
diff changeset
165 2013-03-06 Shakthi Kannan <shakthimaan@gmail.com>
kono
parents: 68
diff changeset
166
kono
parents: 68
diff changeset
167 PR libquadmath/55473
kono
parents: 68
diff changeset
168 * quadmath.h: Add 'extern "C"' block for C++ use.
kono
parents: 68
diff changeset
169
kono
parents: 68
diff changeset
170 2013-02-19 Jakub Jelinek <jakub@redhat.com>
kono
parents: 68
diff changeset
171
kono
parents: 68
diff changeset
172 PR libquadmath/56379
kono
parents: 68
diff changeset
173 * strtod/strtod_l.c (mpn_lshift_1): Rewritten as function-like
kono
parents: 68
diff changeset
174 macro.
kono
parents: 68
diff changeset
175
kono
parents: 68
diff changeset
176 2013-02-17 Tobias Burnus <burnus@net-b.de>
kono
parents: 68
diff changeset
177
kono
parents: 68
diff changeset
178 * math/cacoshq.c (cacoshq): Call signbitq instead of signbit.
kono
parents: 68
diff changeset
179
kono
parents: 68
diff changeset
180 2013-02-06 Richard Sandiford <rdsandiford@googlemail.com>
kono
parents: 68
diff changeset
181
kono
parents: 68
diff changeset
182 Revert previous patch.
kono
parents: 68
diff changeset
183
kono
parents: 68
diff changeset
184 2013-02-03 Richard Sandiford <rdsandiford@googlemail.com>
kono
parents: 68
diff changeset
185
kono
parents: 68
diff changeset
186 Update copyright years.
kono
parents: 68
diff changeset
187
kono
parents: 68
diff changeset
188 2013-01-22 Jakub Jelinek <jakub@redhat.com>
kono
parents: 68
diff changeset
189
kono
parents: 68
diff changeset
190 PR libquadmath/56072
kono
parents: 68
diff changeset
191 * libquadmath.texi (M_PI_2q, M_PI_4q): Fix up description.
kono
parents: 68
diff changeset
192
kono
parents: 68
diff changeset
193 2012-12-13 Jakub Jelinek <jakub@redhat.com>
kono
parents: 68
diff changeset
194
kono
parents: 68
diff changeset
195 * math/cbrtq.c (cbrtq): Use Q suffixed floating point constants
kono
parents: 68
diff changeset
196 instead of L suffixed ones.
kono
parents: 68
diff changeset
197 * math/fmaq.c (fmaq): Likewise.
kono
parents: 68
diff changeset
198 * math/rintq.c (TWO112): Likewise.
kono
parents: 68
diff changeset
199
kono
parents: 68
diff changeset
200 2012-12-03 Tobias Burnus <burnus@net-b.de>
kono
parents: 68
diff changeset
201
kono
parents: 68
diff changeset
202 * strtod/strtod_l.c (___STRTOF_INTERNAL): Fix exponent
kono
parents: 68
diff changeset
203 reading.
kono
parents: 68
diff changeset
204
kono
parents: 68
diff changeset
205 2012-11-25 Tobias Burnus <burnus@net-b.de>
kono
parents: 68
diff changeset
206
kono
parents: 68
diff changeset
207 PR libquadmath/55462
kono
parents: 68
diff changeset
208 * strtod/strtod_l.c (round_and_return): Use HAVE_FENV_H
kono
parents: 68
diff changeset
209 instead of nonexisting HAVE_GET_ROUNDING_MODE.
kono
parents: 68
diff changeset
210
kono
parents: 68
diff changeset
211 2012-11-23 H.J. Lu <hongjiu.lu@intel.com>
kono
parents: 68
diff changeset
212
kono
parents: 68
diff changeset
213 PR bootstrap/55455
kono
parents: 68
diff changeset
214 * quadmath-rounding-mode.h (get_rounding_mode): Don't pass
kono
parents: 68
diff changeset
215 void to fegetround.
kono
parents: 68
diff changeset
216
kono
parents: 68
diff changeset
217 2012-11-23 Tobias Burnus <burnus@net-b.de>
kono
parents: 68
diff changeset
218 Joseph Myers <joseph@codesourcery.com>
kono
parents: 68
diff changeset
219
kono
parents: 68
diff changeset
220 * quadmath-rounding-mode.h: New.
kono
parents: 68
diff changeset
221 * printf/fpioconst.c: Update from GLIBC. Fix strtod rounding.
kono
parents: 68
diff changeset
222 * printf/fpioconst.h: Ditto.
kono
parents: 68
diff changeset
223 * printf/printf_fp.c (__quadmath_printf_fp): Update from GLIBC.
kono
parents: 68
diff changeset
224 Make printf respect the rounding mode for decimal output.
kono
parents: 68
diff changeset
225 * printf/printf_fphex.c (__quadmath_printf_fphex): Update from
kono
parents: 68
diff changeset
226 GLIBC. Make printf respect the rounding mode for hex output.
kono
parents: 68
diff changeset
227 * strtod/strtod_l.c: Update from GLIBC. Make strtod respect the
kono
parents: 68
diff changeset
228 rounding mode. Fix strtod handling of underflow.
kono
parents: 68
diff changeset
229
kono
parents: 68
diff changeset
230 2012-11-22 David S. Miller <davem@davemloft.net>
kono
parents: 68
diff changeset
231 Tobias Burnus <burnus@net-b.de>
kono
parents: 68
diff changeset
232 Joseph Myers <joseph@codesourcery.com>
kono
parents: 68
diff changeset
233
kono
parents: 68
diff changeset
234 * math/atanq.c (atanq): Update from GLIBC. Handle tiny and
kono
parents: 68
diff changeset
235 very large arguments properly.
kono
parents: 68
diff changeset
236 * math/j0q.c (y0q): Update from GLIBC. Avoid arithmetic
kono
parents: 68
diff changeset
237 underflow when 'x' is very small.
kono
parents: 68
diff changeset
238 * math/j1q.c (y1q): Ditto.
kono
parents: 68
diff changeset
239 * math/log1pq.c (log1pq): Update from GLIBC. Saturate
kono
parents: 68
diff changeset
240 nonzero exponents with absolute value below 0x1p-128 to
kono
parents: 68
diff changeset
241 +/- 0x1p-128.
kono
parents: 68
diff changeset
242 * math/powq.c (powq): Update from GLIBC. If xm1 is
kono
parents: 68
diff changeset
243 smaller than LDBL_EPSILON/2.0L, just return xm1.
kono
parents: 68
diff changeset
244
kono
parents: 68
diff changeset
245 2012-11-21 Tobias Burnus <burnus@net-b.de>
kono
parents: 68
diff changeset
246
kono
parents: 68
diff changeset
247 PR libquadmath/55225
kono
parents: 68
diff changeset
248 * math/lgammaq.c (lgammaq): Use local variable if
kono
parents: 68
diff changeset
249 math.h does not provide signgam.
kono
parents: 68
diff changeset
250 * acinclude.m4 (LIBQUAD_CHECK_MATH_H_SIGNGAM): New check.
kono
parents: 68
diff changeset
251 * configure.ac: Use it.
kono
parents: 68
diff changeset
252 * configure: Regenerate.
kono
parents: 68
diff changeset
253 * config.h.in: Regenerate.
kono
parents: 68
diff changeset
254
kono
parents: 68
diff changeset
255 2012-11-15 Tobias Burnus <burnus@net-b.de>
kono
parents: 68
diff changeset
256 Joseph Myers <joseph@codesourcery.com>
kono
parents: 68
diff changeset
257
kono
parents: 68
diff changeset
258 * math/fmaq.c (fmaq): Merge from GLIBC. Fix fma
kono
parents: 68
diff changeset
259 underflows with small x * y; Fix overflow results
kono
parents: 68
diff changeset
260 outside round-to-nearest mode; make use of Dekker
kono
parents: 68
diff changeset
261 and Knuth algorithms use round-to-nearest.
kono
parents: 68
diff changeset
262
kono
parents: 68
diff changeset
263 2012-11-01 Tobias Burnus <burnus@net-b.de>
kono
parents: 68
diff changeset
264
kono
parents: 68
diff changeset
265 * math/fmaq.c (fmaq): Fix build.
kono
parents: 68
diff changeset
266
kono
parents: 68
diff changeset
267 2012-11-01 Tobias Burnus <burnus@net-b.de>
kono
parents: 68
diff changeset
268 Joseph Myers <joseph@codesourcery.com>
kono
parents: 68
diff changeset
269
kono
parents: 68
diff changeset
270 * math/fmaq.c (fmaq): Merge from GLIBC. Handle cases
kono
parents: 68
diff changeset
271 with small x * y using scaling, not as x * y + z.
kono
parents: 68
diff changeset
272 * math/lgammaq.c (lgammaq): Fix signgam handling.
kono
parents: 68
diff changeset
273
kono
parents: 68
diff changeset
274 2012-11-01 Tobias Burnus <burnus@net-b.de>
kono
parents: 68
diff changeset
275
kono
parents: 68
diff changeset
276 * Makefile.am (libquadmath_la_SOURCES): Add new math/* files.
kono
parents: 68
diff changeset
277 * Makefile.in: Regenerated.
kono
parents: 68
diff changeset
278 * math/acoshq.c: Update comment.
kono
parents: 68
diff changeset
279 * math/acosq.c: Ditto.
kono
parents: 68
diff changeset
280 * math/asinhq.c: Ditto.
kono
parents: 68
diff changeset
281 * math/asinq.c: Ditto.
kono
parents: 68
diff changeset
282 * math/atan2q.c: Ditto.
kono
parents: 68
diff changeset
283 * math/atanhq.c: Ditto.
kono
parents: 68
diff changeset
284 * math/ceilq.c: Ditto.
kono
parents: 68
diff changeset
285 * math/copysignq.c: Ditto.
kono
parents: 68
diff changeset
286 * math/cosq.c: Ditto.
kono
parents: 68
diff changeset
287 * math/coshq.c: Ditto.
kono
parents: 68
diff changeset
288 * math/erfq.c: Ditto.
kono
parents: 68
diff changeset
289 * math/fabsq.c: Ditto.
kono
parents: 68
diff changeset
290 * math/finiteq.c: Ditto.
kono
parents: 68
diff changeset
291 * math/floorq.c: Ditto.
kono
parents: 68
diff changeset
292 * math/fmodq.c: Ditto.
kono
parents: 68
diff changeset
293 * math/frexpq.c: Ditto.
kono
parents: 68
diff changeset
294 * math/isnanq.c: Ditto.
kono
parents: 68
diff changeset
295 * math/j0q.c: Ditto.
kono
parents: 68
diff changeset
296 * math/j1q.c: Ditto.
kono
parents: 68
diff changeset
297 * math/ldexpq.c: Ditto.
kono
parents: 68
diff changeset
298 * math/llroundq.c: Ditto.
kono
parents: 68
diff changeset
299 * math/log10q.c: Ditto.
kono
parents: 68
diff changeset
300 * math/log1pq.c: Ditto.
kono
parents: 68
diff changeset
301 * math/log2q.c: Ditto.
kono
parents: 68
diff changeset
302 * math/logq.c: Ditto.
kono
parents: 68
diff changeset
303 * math/lroundq.c: Ditto.
kono
parents: 68
diff changeset
304 * math/modfq.c: Ditto.
kono
parents: 68
diff changeset
305 * math/nextafterq.c: Ditto.
kono
parents: 68
diff changeset
306 * math/powq.c: Ditto.
kono
parents: 68
diff changeset
307 * math/rem_pio2q.c: Ditto.
kono
parents: 68
diff changeset
308 * math/remainderq.c: Ditto.
kono
parents: 68
diff changeset
309 * math/rintq.c: Ditto.
kono
parents: 68
diff changeset
310 * math/roundq.c: Ditto.
kono
parents: 68
diff changeset
311 * math/scalblnq.c: Ditto.
kono
parents: 68
diff changeset
312 * math/scalbnq.c: Ditto.
kono
parents: 68
diff changeset
313 * math/sincosq_kernel.c: Ditto.
kono
parents: 68
diff changeset
314 * math/sinq.c: Ditto.
kono
parents: 68
diff changeset
315 * math/tanq.c: Ditto.
kono
parents: 68
diff changeset
316 * math/expq.c: Ditto.
kono
parents: 68
diff changeset
317 (__expq_table, expq): Renamed local array from __expl_table.
kono
parents: 68
diff changeset
318 * math/cosq_kernel.c (__quadmath_kernel_cosq): Fix sign handling.
kono
parents: 68
diff changeset
319 * math/cacoshq.c: Changes from GLIBC; fix returned sign.
kono
parents: 68
diff changeset
320 * math/casinhq.c: Changes from GLIBC to fix special-case.
kono
parents: 68
diff changeset
321 * math/cbrtq.c: Use modified GLIBC version.
kono
parents: 68
diff changeset
322 * math/complex.c (ccoshd, cexpq, clog10q, clogq, csinhq, csinq,
kono
parents: 68
diff changeset
323 ctanhq, ctanq): Moved to separates files.
kono
parents: 68
diff changeset
324 (mult_c128, div_c128): Removed no longer needed functions.
kono
parents: 68
diff changeset
325 (cexpiq): Call sincosq instead of sinq and cosq.
kono
parents: 68
diff changeset
326 (cosq): Call cosh(-re,im) instead of cosq/sinq/sinh/cosh.
kono
parents: 68
diff changeset
327 * math/ccoshq.c (ccoshq): New file, moved from complex.c and
kono
parents: 68
diff changeset
328 modified based on GLIBC.
kono
parents: 68
diff changeset
329 * math/cexpq.c (cexp): Ditto.
kono
parents: 68
diff changeset
330 * math/clog10q.c (clog10q): Ditto.
kono
parents: 68
diff changeset
331 * math/clogq.c (clogq): Ditto.
kono
parents: 68
diff changeset
332 * math/csinhq.c: Ditto.
kono
parents: 68
diff changeset
333 * math/csinq.c: Ditto.
kono
parents: 68
diff changeset
334 * math/csqrtq.c: Ditto.
kono
parents: 68
diff changeset
335 * math/ctanhq.c: Ditto.
kono
parents: 68
diff changeset
336 * math/ctanq.c: Ditto.
kono
parents: 68
diff changeset
337 * math/fmaq.c (fmaq): Port TININESS_AFTER_ROUNDING handling
kono
parents: 68
diff changeset
338 from GLIBC.
kono
parents: 68
diff changeset
339 * math/ilogbq.c (ilogbq): Add errno = EDOM handling.
kono
parents: 68
diff changeset
340 * math/isinf_nsq.c (__quadmath_isinf_nsq): New file, ported
kono
parents: 68
diff changeset
341 from GLIBC.
kono
parents: 68
diff changeset
342 * math/lgammaq.c (lgammaq): Add signgam handling.
kono
parents: 68
diff changeset
343 * math/sinhq.c (sinhq): Fix sign handling.
kono
parents: 68
diff changeset
344 * math/sinq_kernel.c (__quadmath_kernel_sinq): Ditto.
kono
parents: 68
diff changeset
345 * math/tgammaq.c (tgammaq): Ditto.
kono
parents: 68
diff changeset
346 * math/x2y2m1q.c: New file.
kono
parents: 68
diff changeset
347 * quadmath-imp.h (TININESS_AFTER_ROUNDING): New define.
kono
parents: 68
diff changeset
348 (__quadmath_x2y2m1q, __quadmath_isinf_nsq): New prototypes.
kono
parents: 68
diff changeset
349
kono
parents: 68
diff changeset
350 2012-10-31 Tobias Burnus <burnus@net-b.de>
kono
parents: 68
diff changeset
351 Joseph Myers <joseph@codesourcery.com>
kono
parents: 68
diff changeset
352 David S. Miller <davem@davemloft.net>
kono
parents: 68
diff changeset
353 Ulrich Drepper <drepper@redhat.com>
kono
parents: 68
diff changeset
354 Marek Polacek <polacek@redhat.com>:
kono
parents: 68
diff changeset
355 Petr Baudis <pasky@suse.cz>
kono
parents: 68
diff changeset
356
kono
parents: 68
diff changeset
357 * math/complex.c (csqrtq): NaN and INF fixes.
kono
parents: 68
diff changeset
358 * math/sqrtq.c (sqrt): NaN, INF and < 0 fixes.
kono
parents: 68
diff changeset
359 * math/expm1q.c (expm1q): Changes from GLIBC. Use expq for
kono
parents: 68
diff changeset
360 large parameters. Fix errno for boundary conditions.
kono
parents: 68
diff changeset
361 * math/finiteq.c (finiteq): Add comment.
kono
parents: 68
diff changeset
362 * math/fmaq.c (fmaq): Changes from GLIBC. Fix missing underflows
kono
parents: 68
diff changeset
363 and bad results for some subnormal results. Fix sign of inexact
kono
parents: 68
diff changeset
364 zero return. Fix sign of exact zero return.
kono
parents: 68
diff changeset
365 Ensure additions are not scheduled after fetestexcept.
kono
parents: 68
diff changeset
366 * math/jnq.c (jnq): Changes from GLIBC. Set up errno properly
kono
parents: 68
diff changeset
367 for ynq. Fix jnq precision.
kono
parents: 68
diff changeset
368 * math/nearbyintq.c (nearbyintq): Changes from GLIBC. Do not
kono
parents: 68
diff changeset
369 manipulate bits before adding and subtracting TWO112[sx].
kono
parents: 68
diff changeset
370 * math/rintq.c (rintq): Ditto.
kono
parents: 68
diff changeset
371 * math/scalbnq.c (scalbnq): Changes from GLIBC. Fix integer
kono
parents: 68
diff changeset
372 overflow.
kono
parents: 68
diff changeset
373
kono
parents: 68
diff changeset
374 2012-09-14 David Edelsohn <dje.gcc@gmail.com>
kono
parents: 68
diff changeset
375
kono
parents: 68
diff changeset
376 * configure: Regenerated.
kono
parents: 68
diff changeset
377
kono
parents: 68
diff changeset
378 2012-05-29 Benjamin Kosnik <bkoz@redhat.com>
kono
parents: 68
diff changeset
379
kono
parents: 68
diff changeset
380 PR libstdc++/51007
kono
parents: 68
diff changeset
381 * configure.ac: Allow gnu, gnu* variants for --enable-symvers argument.
kono
parents: 68
diff changeset
382 * configure: Regenerated.
kono
parents: 68
diff changeset
383
kono
parents: 68
diff changeset
384 2012-05-16 H.J. Lu <hongjiu.lu@intel.com>
kono
parents: 68
diff changeset
385
kono
parents: 68
diff changeset
386 * configure: Regenerated.
kono
parents: 68
diff changeset
387
kono
parents: 68
diff changeset
388 2011-11-21 Andreas Tobler <andreast@fgznet.ch>
kono
parents: 68
diff changeset
389
kono
parents: 68
diff changeset
390 * configure: Regenerate.
kono
parents: 68
diff changeset
391
kono
parents: 68
diff changeset
392 2011-11-07 Kai Tietz <ktietz@redhat.com>
kono
parents: 68
diff changeset
393
kono
parents: 68
diff changeset
394 PR target/51007
kono
parents: 68
diff changeset
395 * quadmath-imp.h (ieee854_float128): Adjust
kono
parents: 68
diff changeset
396 for ms-bitfield layout.
kono
parents: 68
diff changeset
397
kono
parents: 68
diff changeset
398 2011-11-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
kono
parents: 68
diff changeset
399
kono
parents: 68
diff changeset
400 * printf/gmp-impl.h: Adapt path to longlong.h.
kono
parents: 68
diff changeset
401
kono
parents: 68
diff changeset
402 2011-09-21 Joseph Myers <joseph@codesourcery.com>
kono
parents: 68
diff changeset
403
kono
parents: 68
diff changeset
404 * Makefile.am (FLAGS_TO_PASS): Define.
kono
parents: 68
diff changeset
405 * Makefile.in: Regenerate.
kono
parents: 68
diff changeset
406
kono
parents: 68
diff changeset
407 2011-08-01 Jakub Jelinek <jakub@redhat.com>
kono
parents: 68
diff changeset
408
kono
parents: 68
diff changeset
409 * math/rem_pio2q.c (__quadmath_kernel_rem_pio2): Fix up fq to y
kono
parents: 68
diff changeset
410 conversion for prec 3 and __FLT_EVAL_METHOD__ != 0.
kono
parents: 68
diff changeset
411
kono
parents: 68
diff changeset
412 2011-04-03 Tobias Burnus <burnus@net-b.de>
kono
parents: 68
diff changeset
413
kono
parents: 68
diff changeset
414 PR fortran/48311
kono
parents: 68
diff changeset
415 * libquadmath.texi (strtoflt128): Fix typo.
kono
parents: 68
diff changeset
416 (quadmath_snprintf): Move note up, make @item.
kono
parents: 68
diff changeset
417
kono
parents: 68
diff changeset
418 2011-03-25 Jakub Jelinek <jakub@redhat.com>
kono
parents: 68
diff changeset
419
kono
parents: 68
diff changeset
420 * printf/printf_fp.c (__quadmath_printf_fp): Use memcpy instead of
kono
parents: 68
diff changeset
421 mempcpy.
kono
parents: 68
diff changeset
422
kono
parents: 68
diff changeset
423 2011-03-21 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
kono
parents: 68
diff changeset
424
kono
parents: 68
diff changeset
425 PR bootstrap/48135
kono
parents: 68
diff changeset
426 * configure.ac (quadmath_use_symver): Handle --disable-symvers.
kono
parents: 68
diff changeset
427 * configure: Regenerate.
kono
parents: 68
diff changeset
428
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
429 2011-02-28 Jakub Jelinek <jakub@redhat.com>
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
430
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
431 * printf/quadmath-printf.c (quadmath_snprintf): Make sure
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
432 that for size > 0 str is always zero terminated.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
433
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
434 2011-02-20 Jakub Jelinek <jakub@redhat.com>
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
435
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
436 PR bootstrap/47827
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
437 * printf/quadmath-printf.h (NAN): Redefine to __builtin_nanf ("").
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
438
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
439 2011-02-17 Jakub Jelinek <jakub@redhat.com>
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
440
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
441 * libquadmath.texi (FLT128_DIG, FLT128_MIN_10_EXP,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
442 FLT128_MAX_10_EXP): Document.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
443 (strtoflt128): Remove obsolete comment.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
444 * configure.ac (HAVE_STRTOULL): New check.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
445 * printf/gmp-impl.h (mpn_construct_float128): New prototype,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
446 define.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
447 * printf/mul_n.c: Include <config.h>.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
448 * printf/add_n.c: Likewise.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
449 * printf/cmp.c: Likewise.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
450 * printf/fpioconst.c: Likewise.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
451 * printf/mul_1.c: Likewise.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
452 * printf/rshift.c: Likewise.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
453 * printf/lshift.c: Likewise.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
454 * printf/submul_1.c: Likewise.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
455 * printf/sub_n.c: Likewise.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
456 * printf/divrem.c: Likewise.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
457 * printf/addmul_1.c: Likewise.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
458 * printf/mul.c: Likewise.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
459 * printf/quadmath-printf.h (isupper, isdigit, tolower): Change
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
460 to avoid evaluating argument multiple times.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
461 (isxdigit): Redefine.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
462 * strtod/strtoflt128.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
463 * strtod/strtod_l.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
464 * strtod/mpn2flt128.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
465 * strtod/grouping.h: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
466 * strtod/tens_in_limb.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
467 * gdtoa/arith.h: Removed.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
468 * gdtoa/gd_qnan.h: Removed.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
469 * gdtoa/gdtoa_fltrnds.h: Removed.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
470 * gdtoa/gdtoa.h: Removed.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
471 * gdtoa/gdtoaimp.h: Removed.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
472 * gdtoa/gethex.c: Removed.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
473 * gdtoa/gmisc.c: Removed.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
474 * gdtoa/hd_init.c: Removed.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
475 * gdtoa/hexnan.c: Removed.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
476 * gdtoa/makefile: Removed.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
477 * gdtoa/misc.c: Removed.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
478 * gdtoa/README.gdtoa: Removed.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
479 * gdtoa/smisc.c: Removed.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
480 * gdtoa/strtodg.c: Removed.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
481 * gdtoa/strtopQ.c: Removed.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
482 * gdtoa/sum.c: Removed.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
483 * quadmath.h (FLT128_DIG, FLT128_MIN_10_EXP, FLT128_MAX_10_EXP):
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
484 Define.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
485 * Makefile.am (libquadmath_la_SOURCES): Remove gdtoa/*, add
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
486 strtod/strtoflt128.c, strtod/mpn2flt128.c and strtod/tens_in_limb.c.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
487 * config.h.in: Regenerated.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
488 * configure: Regenerated.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
489 * Makefile.in: Regenerated.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
490
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
491 2011-02-16 Jakub Jelinek <jakub@redhat.com>
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
492
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
493 * printf/quadmath-printf.c: Also check __GLIBC__ when checking
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
494 whether workarounds for printf hook handling should be added.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
495
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
496 * configure.ac: Check for locale.h too.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
497 (USE_LOCALE_SUPPORT): Remove check.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
498 (USE_NL_LANGINFO, USE_NL_LANGINFO_WC, USE_LOCALECONV): New checks.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
499 (USE_I18_NUMBER_H): Check also for _NL_CTYPE_MB_CUR_MAX.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
500 * printf/printf_fphex.c (__quadmath_printf_fphex): Use nl_langinfo
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
501 or localeconv for narrow version and nl_langinfo if USE_NL_LANGINFO_WC
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
502 for wide version.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
503 * printf/quadmath-printf.h: Include locale.h if HAVE_LOCALE_H.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
504 * printf/printf_fp.c (USE_I18N_NUMBER_H): Don't define to 0.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
505 (__quadmath_printf_fp): Use nl_langinfo or localeconv for narrow
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
506 version and nl_langinfo if USE_NL_LANGINFO_WC for wide version.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
507 Guard nl_langinfo (_NL_CTYPE_MB_CUR_MAX) use with
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
508 USE_I18N_NUMBER_H #ifdef.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
509 * configure: Regenerated.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
510 * config.h.in: Regenerated.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
511
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
512 2011-02-14 Jakub Jelinek <jakub@redhat.com>
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
513
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
514 PR bootstrap/47736
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
515 * configure.ac (HAVE_PRINTF_HOOKS): Test if printf_info struct has
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
516 user field.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
517 * printf/quadmath-printf.c (quadmath_snprintf): Clear whole info
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
518 field instead of setting individual fields to 0. Don't set info.user
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
519 to -1.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
520 * configure: Regenerated.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
521
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
522 * configure.ac (HAVE_HIDDEN_VISIBILITY): Test with -Werror in CFLAGS.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
523 * printf/printf_fp.c: Don't include <alloca.h>.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
524 * printf/quadmath-printf.h (_itoa): Redefine to __quadmath_itoa.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
525 * configure: Regenerated.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
526
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
527 PR fortran/47642
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
528 * libquadmath.texi (quadmath_snprintf): Document.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
529 (quadmath_flt128tostr): Remove.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
530 * Makefile.am (libquadmath_la_SOURCES): Add printf/*.c.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
531 Remove quadmath_io.c, gdtoa/gdtoa.c, gdtoa/g__fmt.c,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
532 gdtoa/g_Qfmt.c, gdtoa/dmisc.c and gdtoa/ulp.c.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
533 * quadmath.h (quadmath_snprintf): New prototype.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
534 (quadmath_flt128tostr): Remove.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
535 * quadmath_weak.h (quadmath_snprintf): Add.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
536 (quadmath_flt128tostr): Remove.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
537 * configure.ac: New AC_CHECK_HEADERS headers: langinfo.h, wchar.h,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
538 wctype.h, limits.h, ctype.h, printf.h, errno.h.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
539 (AC_USE_SYSTEM_EXTENSIONS): Add.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
540 (HAVE_HIDDEN_VISIBILITY, HAVE_PRINTF_HOOKS,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
541 USE_LOCALE_SUPPORT, USE_I18N_NUMBER_H): New checks.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
542 * quadmath.map (QUADMATH_1.0): Add quadmath_snprintf. Remove
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
543 quadmath_flt128tostr.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
544 * printf/printf_fphex.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
545 * printf/_itowa.h: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
546 * printf/mul_n.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
547 * printf/quadmath-printf.h: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
548 * printf/submul_1.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
549 * printf/quadmath-printf.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
550 * printf/gmp-impl.h: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
551 * printf/lshift.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
552 * printf/fpioconst.h: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
553 * printf/add_n.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
554 * printf/cmp.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
555 * printf/sub_n.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
556 * printf/mul.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
557 * printf/divrem.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
558 * printf/addmul_1.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
559 * printf/printf_fp.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
560 * printf/_itoa.h: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
561 * printf/fpioconst.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
562 * printf/_i18n_number.h: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
563 * printf/flt1282mpn.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
564 * printf/rshift.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
565 * printf/mul_1.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
566 * quadmath_io.c: Removed.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
567 * gdtoa/gdtoa.c: Removed.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
568 * gdtoa/g__fmt.c: Removed.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
569 * gdtoa/g_Qfmt.c: Removed.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
570 * gdtoa/dmisc.c: Removed.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
571 * gdtoa/ulp.c: Removed.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
572 * config.h.in: Regenerated.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
573 * configure: Regenerated.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
574 * Makefile.in: Regenerated.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
575
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
576 2011-02-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
577
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
578 * Makefile.in: Regenerate.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
579 * aclocal.m4: Likewise.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
580 * configure: Likewise.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
581
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
582 2011-01-31 Jerry DeLisle <jvdelisle@gcc.gnu.org>
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
583
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
584 PR libquadmath/47293
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
585 * gdtoa/qd_qnan.h: Fix NAN bit patterns.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
586 * gdtoa/strtopQ.c (strtoflt128): Handle endianess with NAN.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
587
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
588 2011-01-17 Tobias Burnus <burnus@net-b.de>
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
589
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
590 PR fortran/47295
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
591 * libquadmath.text: Document typedef and constants.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
592
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
593 2011-01-17 Tobias Burnus <burnus@net-b.de>
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
594
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
595 PR fortran/46817
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
596 * quadmath-imp.h: Refer to libquadmath not ot libiberty,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
597 bump copyright year and use /**/ instead of // comments.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
598 * quadmath.h: Ditto.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
599 * quadmath-weak.h: Ditto.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
600 * quadmath_io.c: Ditto.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
601
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
602 2011-01-16 Jakub Jelinek <jakub@redhat.com>
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
603
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
604 PR libfortran/47322
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
605 * math/remquoq.c (remquoq): Use uint64_t type instead of u_int64_t.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
606
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
607 PR fortran/46625
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
608 * quadmath.map (QUADMATH_1.0): Remove quadmath_strtopQ
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
609 and quadmath_dtoaq. Add strtoflt128 and quadmath_flt128tostr.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
610 * quadmath_weak.h (quadmath_strtopQ, quadmath_dtoaq): Remove.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
611 (strtoflt128, quadmath_flt128tostr): Add.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
612 * gdtoa/strtopQ.c (quadmath_strtopQ): Rename to...
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
613 (strtoflt128): ... this. Return __float128, instead of writing
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
614 to memory pointed by last argument.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
615 * quadmath.h: Use C style comments instead of C++ style.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
616 (quadmath_strtopQ, quadmath_dtoaq): Remove prototypes.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
617 (strtoflt128, quadmath_flt128tostr): Add prototypes.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
618 * libquadmath.texi (quadmath_dtoaq): Rename to quadmath_flt128tostr.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
619 (quadmath_strtopQ): Rename to strtoflt128. Adjust prototype,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
620 adjust examples.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
621 * quadmath_io.c (quadmath_dtoaq): Rename to...
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
622 (quadmath_flt128tostr): ... this.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
623
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
624 * quadmath.h (__quadmath_throw, __quadmath_nth): Define.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
625 Use it for all prototypes.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
626
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
627 PR fortran/46416
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
628 * quadmath.h (cbrtq, finiteq, isnanq, signbitq, sqrtq): Remove
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
629 const from prototype argument.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
630 (cimagq, conjq, cprojq, crealq, fdimq, fmaxq, fminq, ilogbq,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
631 llrintq, log2q, lrintq, nearbyintq, remquoq): New prototypes.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
632 (__quadmath_extern_inline): Define.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
633 (cimagq, conjq, crealq): New inlines.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
634 * Makefile.am (libquadmath_la_SOURCES): Add math/cimagq.c,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
635 math/conjq.c, math/cprojq.c, math/crealq.c, math/fdimq.c,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
636 math/fmaxq.c, math/fminq.c, math/ilogbq.c, math/llrintq.c,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
637 math/log2q.c, math/lrintq.c, math/nearbyintq.c and math/remquoq.c.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
638 * Makefile.in: Regenerated.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
639 * quadmath_weak.h (cimagq, conjq, cprojq, crealq, fdimq, fmaxq,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
640 fminq, ilogbq, llrintq, log2q, lrintq, nearbyintq, remquoq): Add.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
641 * quadmath-imp.h (__LITTLE_ENDIAN__): Don't define.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
642 (ieee854_float128): Use __BYTE_ORDER == __ORDER_BIG_ENDIAN__
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
643 tests instead of __BIG_ENDIAN__.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
644 * quadmath.map (QUADMATH_1.0): Add cimagq, conjq, cprojq, crealq,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
645 fdimq, fmaxq, fminq, ilogbq, llrintq, log2q, lrintq, nearbyintq
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
646 and remquoq.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
647 * libquadmath.texi (cimagq, conjq, cprojq, crealq, fdimq, fmaxq,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
648 fminq, ilogbq, llrintq, log2q, lrintq, nearbyintq, remquoq): Add.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
649 * math/cprojq.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
650 * math/ilogbq.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
651 * math/fminq.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
652 * math/llrintq.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
653 * math/log2q.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
654 * math/lrintq.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
655 * math/crealq.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
656 * math/nearbyintq.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
657 * math/fmaxq.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
658 * math/conjq.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
659 * math/remquoq.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
660 * math/cimagq.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
661 * math/fdimq.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
662
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
663 * math/ldexpq.c: Include errno.h. Set errno to ERANGE if needed.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
664
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
665 PR fortran/46416
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
666 * quadmath.h (cacosq, cacoshq, casinq, casinhq, catanq, catanhq):
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
667 New prototypes.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
668 (M_Eq, M_LOG2Eq, M_LOG10Eq, M_LN2q, M_LN10q, M_PIq, M_PI_2q, M_PI_4q,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
669 M_1_PIq, M_2_PIq, M_2_SQRTPIq, M_SQRT2q, M_SQRT1_2q): Define.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
670 * quadmath_weak.h (cacosq, cacoshq, casinq, casinhq, catanq,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
671 catanhq): Add.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
672 * quadmath-imp.h (fpclassifyq, QUADFP_NAN, QUADFP_INFINITE,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
673 QUADFP_ZERO, QUADFP_SUBNORMAL, QUADFP_NORMAL): Define.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
674 * quadmath.map (QUADMATH_1.0): Add cacosq, cacoshq, casinq, casinhq,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
675 catanq and catanhq.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
676 * Makefile.am (libquadmath_la_SOURCES): Add math/cacosq.c,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
677 math/cacoshq.c, math/casinq.c, math/casinhq.c, math/catanq.c
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
678 and math/catanhq.c.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
679 * Makefile.in: Regenerated.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
680 * libquadmath.texi (cacosq, cacoshq, casinq, casinhq,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
681 catanq, catanhq): Add.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
682 * math/cacoshq.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
683 * math/cacosq.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
684 * math/catanq.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
685 * math/catanhq.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
686 * math/casinq.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
687 * math/casinhq.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
688
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
689 * math/hypotq.c (hypotq): Use Q suffix instead of L.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
690 * math/atan2q.c (tiny, pi_o_4, pi_o_2, pi, pi_lo, atan2q): Likewise.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
691 * math/cosq.c (cosq): Likewise.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
692
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
693 PR fortran/46402
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
694 * quadmath.map (QUADMATH_1.0): Add fmaq.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
695 * configure.ac: Check for fenv.h, feholdexcept, fesetround,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
696 feupdateenv, fesetenv and fetestexcept.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
697 * configure: Regenerated.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
698 * config.h.in: Regenerated.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
699 * quadmath.h (fmaq): New prototype.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
700 * quadmath_weak.h (fmaq): Add.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
701 * Makefile.am (libquadmath_la_SOURCES): Add math/fmaq.c.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
702 * Makefile.in: Regenerated.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
703 * quadmath-imp.h: Include config.h.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
704 * math/expq.c: Include fenv.h.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
705 (USE_FENV_H): Define if libm support for fe* is there.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
706 (expq): Add fesetround etc. support if USE_FENV_H is defined.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
707 * math/fmaq.c: New file.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
708 * libquadmath.texi (fmaq): Add.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
709
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
710 2011-01-14 Tobias Burnus <burnus@net-b.de>
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
711
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
712 PR fortran/47182
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
713 * configure.ac: Use ACX_BUGURL.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
714 * libquadmath.texi: Include libquadmath-vers.texi for BUGURL.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
715 * Makefile.am: Create libquadmath-vers.texi.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
716 * configure.in: Regenerate.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
717 * Makefile.in: Regenerate.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
718
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
719 2011-01-06 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
720
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
721 PR fortran/47174
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
722 * Makefile.am (libquadmath.info): Unconditionally override
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
723 target, not only if BUILD_LIBQUADMATH.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
724 * Makefile.in: Regenerate.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
725 * configure.ac (AM_INIT_AUTOMAKE): Add -Wno-override option to
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
726 avoid warning from automake.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
727
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
728 2010-12-19 Tobias Burnus <burnus@net-b.de>
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
729
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
730 PR fortran/46520
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
731 * configure.ac: Do not call AC_CHECK_LIB for gcc_no_link.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
732 * configure: Regenerate
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
733
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
734 2010-12-13 Tobias Burnus <burnus@net-b.de>
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
735
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
736 PR fortran/46625
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
737 * gdtoa/gdtoaimp.h: Mangle internal functions by
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
738 prefixing them with __quadmath. Don't use gdtoa's strcp(y).
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
739 * gdtoa/g_Qfmt.c (g_Qfmt): Use strcpy instead of strcp.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
740 * gdtoa/misc.c (strcpy): Renamed from strcp and only use
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
741 if NO_STRING_H is set.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
742 * quadmath-imp.h (__quadmath_rem_pio2q, __quadmath_kernel_sincosq
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
743 __quadmath_kernel_sinq, __quadmath_kernel_cosq): Added
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
744 __quadmath prefix to internal functions.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
745 * math/cosq.c (cosq): Ditto.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
746 * math/sinq.c (cosq): Ditto.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
747 * math/tanq.c (tanq,__quadmath_kernel_tanq): Ditto.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
748 * math/rem_pio2q.c (rem_pio2, __quadmath_kernel_rem_pio2): Ditto.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
749 * math/sinq_kernel.c (__quadmath_kernel_sinq): Ditto.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
750 * math/cosq_kernel.c (__quadmath_kernel_cosq): Ditto.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
751
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
752 2010-12-08 Tobias Burnus <burnus@net-b.de>
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
753
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
754 PR fortran/46772
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
755 * gdtoa/gdtoa.h: Include stdlib.h instead of declare strtod.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
756 * gdtoa/gdtoaimp.h: Don't declare strtod.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
757
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
758 2010-12-08 Tobias Burnus <burnus@net-b.de>
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
759
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
760 PR fortran/46520
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
761 * configure.ac: Use GCC_TRY_COMPILE_OR_LINK instead of
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
762 AC_TRY_LINK and cache libquad_have_float128.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
763 * configure: Regenerate.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
764
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
765 2010-12-08 Tobias Burnus <burnus@net-b.de>
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
766
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
767 PR fortran/46543
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
768 * configure.ac: Add texinfo checks.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
769 * Makefile.am: Handle .texi documentation.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
770 * libquadmath.texi: New.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
771 * configure: Regenerated.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
772 * Makefile.in: Regenerated.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
773
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
774 2010-12-06 Tobias Burnus <burnus@net-b.de>
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
775
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
776 PR fortran/46817
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
777 * quadmath-imp.h: Add LGPL header.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
778 * quadmath.h: Add LGPL header.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
779 * quadmath_io.c: Add LGPL header.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
780 * quadmath_weak.h: Add LGPL header.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
781
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
782 2010-12-06 Dave Korn <dave.korn.cygwin@gmail.com>
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
783
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
784 PR target/40125
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
785 PR lto/46695
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
786 * configure.ac: Invoke ACX_LT_HOST_FLAGS.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
787 * Makefile.am (libquadmath_la_LDFLAGS): Use lt_host_flags.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
788 * aclocal.m4: Regenerate.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
789 * configure: Regenerate.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
790 * Makefile.in: Regenerate.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
791
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
792 2010-11-30 Tobias Burnus <burnus@net-b.de>
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
793
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
794 PR fortran/46594
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
795 * Makefile.am: Install include files in
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
796 target/version specific directory.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
797 * Makefile.in: Regenerate.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
798
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
799 2010-11-30 Tobias Burnus <burnus@net-b.de>
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
800
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
801 * acinclude.m4 (LIBGOMP_CHECK_SYNC_BUILTINS,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
802 LIBGOMP_CHECK_ATTRIBUTE_VISIBILITY,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
803 LIBGOMP_CHECK_ATTRIBUTE_DLLEXPORT): Remove.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
804
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
805 2010-11-29 Kai Tietz <kai.tietz@onevision.com>
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
806
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
807 * configure: Regenerated.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
808 * Makefile.in: Regenerated.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
809 * configure.ac (ACX_NONCANONICAL_TARGET): Call it.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
810 (target_alias): Use AC_SUBST for it.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
811 (GCC_NO_EXECUTABLES): Call it.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
812 (AC_PROG_CC): Improve multilib handling.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
813 Check that gcc is used for compilation.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
814 Use pattern from libssp for symbol versioning checking.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
815 * Makefile.am (LTLDFLAGS): Removed.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
816 (libquadmath_la_LDFLAGS): Add -no-undefined.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
817 (libquadmath_la_LINK): Commented out.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
818 (libquadmath_la_DEPENDENCIES): Add libquadmath_la_LIBADD.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
819 (AM_MAKEFLAGS): Add hack for argument passing by top-level.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
820 (MAKEOVERRIDES): New.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
821 * aclocal.m4: Regenerated.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
822
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
823 2010-11-19 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
824
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
825 * Makefile.am (libquadmath_la_LIBADD): Move -lm ...
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
826 (libquadmath_la_LDFLAGS): ... here.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
827 (quadmath.map-sun): Tabify.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
828 Fix sed expression.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
829 * Makefile.in: Regenerate.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
830
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
831 2010-11-16 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
832 Tobias Burnus <burnus@net-b.de>
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
833
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
834 PR fortran/32049
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
835 Initial implementation and checkin.
111
kono
parents: 68
diff changeset
836
kono
parents: 68
diff changeset
837 Copyright (C) 2010-2017 Free Software Foundation, Inc.
kono
parents: 68
diff changeset
838
kono
parents: 68
diff changeset
839 Copying and distribution of this file, with or without modification,
kono
parents: 68
diff changeset
840 are permitted in any medium without royalty provided the copyright
kono
parents: 68
diff changeset
841 notice and this notice are preserved.