Update.
[deliverable/binutils-gdb.git] / libiberty / ChangeLog
CommitLineData
a104c397
PB
12007-06-14 Paolo Bonzini <bonzini@gnu.org>
2
3 * aclocal.m4: Include config/warnings.m4.
4 * configure.ac: Use ACX_PROG_CC_WARNING_OPTS.
5 * configure: Regenerate.
6
958afec3
GK
72007-06-07 Geoffrey Keating <geoffk@apple.com>
8
9 * configure.ac: Non-default multilibs can be cross compilations.
10 * configure: Regenerate
11
0c18fee5
DD
122007-05-07 Nathan Froyd <froydnj@codesourcery.com>
13
14 * argv.c (writeargv): New function.
15
8bf955e1
GK
162007-05-05 Geoffrey Keating <geoffk@apple.com>
17
18 * cp-demangle.c (d_name): Detect local-source-name.
19 (d_prefix): Likewise.
20 (d_unqualified_name): Implement local-source-name.
21
73bdefcf
JB
222007-05-03 Joel Brobecker <brobecker@adacore.com>
23
24 * filename_cmp.c: Replace include of ctype.h by include of
25 safe-ctype.h.
26 (filename_cmp): Use TOLOWER instead of tolower for conversions
27 that are locale-independent.
28 * Makefile.in (filename_cmp.o): Add dependency on safe-ctype.h.
29
8535fe17
DD
302007-04-11 Thomas Neumann tneumann@users.sourceforge.net
31
32 * argv.c: Use ANSI C declarations.
33 * make-relative-prefix.c: Likewise.
34
34d8f01b
JB
352007-04-06 Joel Brobecker <brobecker@adacore.com>
36
37 * filename_cmp.c (filename_cmp): Improve documentation.
38
2657faa6
AS
392007-04-02 Andreas Schwab <schwab@suse.de>
40
41 * filename_cmp.c: Include "config.h".
42
9c577e89
DD
432007-03-29 Joel Brobecker <brobecker@adacore.com>
44
45 * filename_cmp.c: New file.
46 * Makefile.in (CFILES): Add filename_cmp.c.
47 (REQUIRED_OFILES): Add filename_cmp.o
48 (filename_cmp.o): New rule.
49 * functions.texi: Regenerate.
50
8d301070
GK
512007-03-15 Geoffrey Keating <geoffk@apple.com>
52
53 * cp-demangle.c (d_encoding): Exit early on error.
54 (d_pointer_to_member_type): Exit early if cplus_demangle_type
55 returns NULL.
56 (cplus_demangle_type): Likewise.
57 * testsuite/demangle-expected: New testcase.
58
d7831e7c
DD
592007-03-01 Brooks Moses <brooks.moses@codesourcery.com>
60
61 * Makefile.in: Add install-pdf target as copied from
62 automake v1.10 rules.
63 * testsuite/Makefile.in: Add dummy install-pdf target.
64
563d09a5
EB
652007-03-01 Peter Breitenlohner <peb@mppmu.mpg.de>
66 Eric Botcazou <ebotcazou@libertysurf.fr>
67
68 PR other/16513
69 * Makefile.in: Install library under $(MULTIOSDIR), not $(MULTISUBDIR).
70 Install headers in multilib independent location.
71
1f92e180
DD
722007-02-26 DJ Delorie <dj@redhat.com>
73
74 * configure.ac: add djgpp-specific results, so we don't have to
75 link during a cross compilation.
76 * configure: Regenerated.
77
6dd7f013
DD
782007-01-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
79
80 * hex.c: Fix typo.
81 * choose-temp.c: Likewise.
82 * functions.texi: Regenerate.
83
53d7966f
VP
842007-01-31 Vladimir Prus <vladimir@codesourcery.com>
85
86 * pex-common.h (struct pex_obj): New fields
87 stderr_pipe and read_err.
88 * pex-common.c (pex_init_common): Initialize
89 stderr_pipe.
90 (pex_run_in_environment): Add error checking
91 for PEX_STDERR_TO_PIPE. Create a pipe
92 for stderr if necessary.
93 (pex_read_err): New.
94 (pex_free): Close read_err.
95 * pexecute.txh: Document changes.
96 * functions.texi: Regenerated.
97
71f2e6f4
BE
982007-01-31 Ben Elliston <bje@au.ibm.com>
99
100 * strsignal.c (psignal): Change type of signo to int.
101 * functions.texi: Regenerate.
102
208c1674
DD
1032007-01-29 Simon Baldwin <simonb@google.com>
104
105 * cp-demangle.h (cplus_demangle_operators): External definition
106 suppressed if not building for libstdc++.
107 * cp-demangle.c (__gcclibcxx_demangle_callback): Augmented interface
108 to demangling, provides a malloc-less version of __cxa_demangle.
109 (cplus_demangle_print_callback): Public callback version of
110 cplus_demangle_print.
111 (struct d_growable_string): New growable string structure.
112 (d_growable_string_init): New function, provides support for
113 growable strings separate from print info.
114 (d_growable_string_resize): Likewise.
115 (d_growable_string_append_buffer): Likewise.
116 (d_growable_string_callback_adapter):): Likewise.
117 (d_print_init): New print info initialization function.
118 (d_print_error): Macro replace by inline function.
119 (d_print_saw_error): Likewise.
120 (d_append_char): Likewise.
121 (d_append_buffer): Likewise.
122 (d_append_string): New inline function, replaces the
123 d_append_string_constant macro.
124 (d_flush_buffer): New function, flushes buffer to callback.
125 (d_demangle_callback, is_ctor_or_dtor): Malloc-based fallback
126 for unsupported dynamic arrays replaced by alloca().
127 (d_demangle): Return string length estimating removed.
128 (d_dump): Moved error case handling from call site into function.
129 (d_print_resize): Function removed.
130 (d_print_append_char): Likewise.
131 (d_print_append_buffer): Likewise.
132 (d_print_error): Likewise.
133 (d_print_comp): Added special case handling for Java arrays.
134 (java_demangle_v3): Removed string post-processing for Java arrays,
135 now replaced by special case handling in d_print_comp.
136 (cplus_demangle_v3_callback): Augmented interface to demangling,
137 provides a malloc-less version of cplus_demangle_v3.
138 (java_demangle_v3_callback): Augmented interface to demangling,
139 provides a malloc-less version of java_demangle_v3.
140
cc0732ba
BE
1412007-01-12 Ben Elliston <bje@au.ibm.com>
142
0bbe7a79
BE
143 * pex-unix.c (writeerr): Cast write result to void.
144
cc0732ba
BE
145 * choose-temp.c (choose_temp_base): Check the result of the call
146 to mktemp rather than testing the length of the modified string.
2da20a1b 147
6ef6358e
GK
1482006-12-20 Geoffrey Keating <geoffk@apple.com>
149
150 * cp-demangle.h: Add comment explaining what to do to avoid
151 overrunning string.
152 (d_check_char): New.
153 (d_next_char): Don't advance past trailing '\0'.
154 * cp-demangle.c (cplus_demangle_mangled_name): Use d_check_char.
155 (d_nested_name): Likewise.
156 (d_special_name): Likewise.
157 (d_call_offset): Likewise.
158 (d_function_type): Likewise.
159 (d_array_type): Likewise.
160 (d_pointer_to_member_type): Likewise.
161 (d_template_param): Likewise.
162 (d_template_args): Likewise.
163 (d_template_arg): Likewise.
164 (d_expr_primary): Likewise.
165 (d_local_name): Likewise.
166 (d_substitution): Likewise.
167 (d_ctor_dtor_name): Use d_advance rather than d_next_char.
168 * testsuite/test-demangle.c: Include sys/mman.h.
169 (MAP_ANONYMOUS): Define.
170 (protect_end): New.
171 (main): Use protect_end.
172 * testsuite/demangle-expected: Add testcases for overrunning
173 the end of the string.
174
d8f813d4
JR
1752006-11-30 Andrew Stubbs <andrew.stubbs@st.com>
176 J"orn Rennecke <joern.rennecke@st.com>
177
178 PR driver/29931
179 * make-relative-prefix.c (make_relative_prefix_1): New function,
180 broken out of make_relative_prefix. Make link resolution dependent
181 on new parameter.
182 (make_relative_prefix): Use make_relative_prefix_1.
183 (make_relative_prefix_ignore_links): New function.
184
fb347196
VP
1852006-11-08 Vladimir Prus <vladimir@codesourcery.com>
186
187 * pex-win32.c (no_suffixes): Remove.
188 (std_suffixes): Add "" as first element.
189 (find_executable): Remove detection of already-present
190 extension. Try all suffixes in std_suffixes.
3c9f59e4 191
9e59254c
JB
1922006-11-07 Julian Brown <julian@codesourcery.com>
193
194 * floatformat.c (get_field): Fix segfault with little-endian word
195 order on 64-bit hosts.
196 (put_field): Likewise.
197 (min): Move definition.
198
3ac01eb2
DD
1992006-10-26 Danny Smith <dannysmith@users.sourceforge.net>
200
201 pex-win32.c (argv_to_cmdline): Replace xmalloc with XNEWVEC.
202 (find_executable): Likewise.
203 (win32_spawn): Cast alloca return to (char**).
204 Replace malloc with XNEWVEC.
205 bcopy.c (bcopy): Add explict casts in assignments.
206
78de3ccc
DD
2072006-10-25 Ben Elliston <bje@au.ibm.com>
208
209 * pexecute.txh: Wrap pexecute's "flag" argument with @var {..}.
210
bff368bd
DD
2112006-10-10 Brooks Moses <bmoses@stanford.edu>
212
213 * Makefile.in: Added "pdf", "libiberty.pdf" target support.
214 * testsuite/Makefile.in: Added empty "pdf" target.
215
e63f184e
DD
2162006-09-22 Ian Lance Taylor <ian@airs.com>
217
218 PR other/29176
219 * cp-demangle.c (d_substitution): Check for overflow when
220 computing substitution index.
221
069e4b19
CV
2222006-08-30 Corinna Vinschen <corinna@vinschen.de>
223
224 * configure.ac: Add case for Mingw as host.
225 * configure: Regenerate.
226
cb6c09ac
DD
2272006-08-27 Ian Lance Taylor <ian@airs.com>
228
229 PR driver/27622
230 * pex-common.h (struct pex_funcs): Add toclose parameter to
231 exec_child field.
232 * pex-common.c (pex_run_in_environment): Pass toclose to
233 exec_child.
234 * pex-djgpp.c (pex_djgpp_exec_child): Add toclose parameter.
235 * pex-unix.c (pex_unix_exec_child): Likewise.
236 * pex-msdos.c (pex_msdos_exec_child): Likewise.
237 * pex-win32.c (pex_win32_exec_child): Likewise.
238
239 PR other/28797
240 * cp-demangle.c (d_pointer_to_member_type): Do add a substitution
241 for a qualified member which is not a function.
242 * testsuite/demangle-expected: Add test case.
243
a7d421b8
DD
2442006-07-27 Jan Hubicka <jh@suse.cz>
245
246 PR rtl-optimization/28071
247 * hashtab.c (htab_empty): Clear out n_deleted/n_elements;
248 downsize the hashtable.
249
6816f995
AO
2502006-07-04 Peter O'Gorman <peter@pogma.com>
251
252 * Makefile.in: chmod 644 before ranlib during install.
253
7741be99
DD
2542006-06-02 Mark Shinwell <shinwell@codesourcery.com>
255
256 * pex-unix.c (pex_unix_exec_child): Insert cast when assigning
257 to environ.
258
014a8caf
DD
2592006-06-01 Mark Shinwell <shinwell@codesourcery.com>
260
261 * pex-common.c: New function pex_run_in_environment.
262 * pex-common.h: Add environment parameter to exec_child.
263 * pex-msdos.c: Add environment parameter to pex_msdos_exec_child.
264 * pex-djgpp.c: Add environment parameter to pex_djgpp_exec_child.
265 (pex_djgpp_exec_child): Pass environment to child process.
266 * pex-unix.c: Add environment parameter to pex_unix_exec_child.
267 (pex_unix_exec_child): Pass environment to child process.
268 * pex-win32.c: Add environment parameter to pex_win32_exec_child.
269 New function env_compare for comparing VAR=VALUE pairs.
270 (win32_spawn): Assemble environment block and pass to CreateProcess.
271 (spawn_script): Pass environment through to win32_spawn.
272 (pex_win32_exec_child): Pass environment through to spawn_script and
273 win32_spawn.
274 * functions.texi: Regenerate.
275 * pexecute.txh: Document pex_run_in_environment.
276
069c63e2
DD
2772006-05-28 Mark Shinwell <shinwell@codesourcery.com>
278
279 * mkstemps.c: Open temporary files in binary mode.
280
f6b66e90
DD
2812006-05-12 Anton Blanchard <anton@samba.org>
282
283 * cplus-dem.c (demangle_fund_type): Ensure buf is large enough to
284 hold "int%u_t".
285
c77d28ac
JB
2862006-04-24 Julian Brown <julian@codesourcery.com>
287
288 * floatformat.c (floatformat_to_double): Fix (biased) exponent=0 case.
289
3db2e6dd
DD
2902006-03-29 Jim Blandy <jimb@codesourcery.com>
291
b5d60b68 292 * pex-common.c (pex_input_file, pex_input_pipe): New functions.
3db2e6dd
DD
293 (pex_init_common): Initialize obj->input_file.
294 (pex_run): Close any file opened by pex_input_file.
b5d60b68
DD
295 * pexecute.txh (pex_input_file, pex_input_pipe): New docs.
296 * pex-common.h (struct pex_obj): New field input_file.
3db2e6dd 297 (struct pex_funcs): New function ptr fdopenw.
b5d60b68
DD
298 * pex-unix.c (pex_unix_fdopenw): New function.
299 (funcs): List it as our fdopenw function.
300 * pex-win32.c (pex_win32_fdopenw): New function.
301 (funcs): List it as our fdopenw function.
302 * pex-djgpp.c (funcs): Leave fdopenw null.
303 * pex-msdos (funcs): Same.
304 * functions.texi: Regenerated.
3db2e6dd
DD
305
3062006-04-10 Jim Blandy <jimb@codesourcery.com>
307
308 * pex-common.c (temp_file): New function, containing guts of
309 pex-style temporary file name generation.
310 (pex_run): Use it.
311
545c9aee
DD
3122006-04-06 Carlos O'Donell <carlos@codesourcery.com>
313
314 * Makefile.in: Add install-html, install-html-am, and
315 install-html-recursive targets. Define mkdir_p and
316 NORMAL_INSTALL.
317 * configure.ac: AC_SUBST datarootdir, docdir, htmldir.
318 * configure: Regenerate.
319 * testsuite/Makefile.in: Add install-html and html targets.
320
8e1e9959
DD
3212006-03-31 Mark Mitchell <mark@codesourcery.com>
322
323 * pex-win32.c (<errno.h>): Include.
324 (fix_argv): Remove.
325 (argv_to_cmdline): New function.
326 (std_suffixes): New variable.
327 (no_suffixes): Likewise.
328 (find_executable): New function.
329 (win32_spawn): Likewise.
330 (spawn_script): Use win32_spawn instead of _spawnv[p].
331 (pex_win32_exec_child): Replace MSVCRT calls with Win32 API calls.
332 (pex_win32_wait): Likewise.
333
57b126a3
DD
3342006-03-24 Jim Blandy <jimb@codesourcery.com>
335
336 * pex-common.c (pex_run): Simplify output name handling.
337
9223c945
DD
3382006-03-12 Jim Blandy <jimb@red-bean.com>
339
340 * pex-common.h (struct pex_obj): Doc fixes.
341
3422006-03-11 Jim Blandy <jimb@red-bean.com>
343
344 * functions.texi: Regenerate.
345
96f4851a
DD
3462006-02-21 Ben Elliston <bje@au.ibm.com>
347
348 * pexecute.c (pwait): Syntax fix for previous change.
349
1c7a49d2
DD
3502006-02-17 Uttam Pawar <uttamp@us.ibm.com>
351
352 * pexecute.c (pwait): Free vector pointer.
353 * partition.c (partition_print): Free class_elements pointer.
354
e27d251e
DD
3552006-02-11 Roger Sayle <roger@eyesopen.com>
356 R. Scott Bailey <scott.bailey@eds.com>
357 Bill Northcott <w.northcott@unsw.edu.au>
358
359 PR bootstrap/16787
360 * floatformat.c: Include <float.h> where available.
361 (NAN): Use value of DBL_QNAN if defined, and NAN isn't.
362
fd7d450d
DD
3632006-01-29 Gabriel Dos Reis <gdr@integrable-solutions.net>
364
365 * configure.ac: Add -Wc++-compat to ac_libibety_warn_cflags where
366 supported.
367 * configure: Regenerated.
368
67d78caa
DD
3692006-01-20 Carlos O'Donell <carlos@codesourcery.com>
370
371 * testsuite/Makefile.in: Add test-expandargv test.
372 * testsuite/test-expandargv.c: New test.
373 * argv.c (expandargv): Check for errors with ferror,
374 rather than just by looking at return value from fread.
375
648c3dc0
DD
3762005-12-17 Gabriel Dos Reis <gdr@integrable-solutions.net>
377
378 * floatformat.c (floatformat_i387_ext_is_valid): Use explicit cast
379 to convert from "from".
380 (floatformat_to_double): Likewise.
381 (floatformat_from_double): Use explicit cast to convert from "to".
382
7887b2ce
DD
3832005-12-10 Terry Laurenzo <tlaurenzo@gmail.com>
384
385 PR java/9861
386 * cp-demangle.c (d_bare_function_type): Recognize new 'J' qualifer
387 and include return type when found.
388 (d_print_comp)[DEMANGLE_COMPONENT_FUNCTION_TYPE]: Add
389 conditional logic to change printing order of return type.when
390 the DMGL_RET_POSTFIX option is present.
391 (java_demangle_v3): Add DMGL_RET_POSTFIX option to d_demangle
392 call.
393 * testsuite/test-demangle.c (main): Recognize option --ret-postfix
394 * testsuite/demangle-expected: Test cases to verify extended encoding.
395 Updated comment to document --ret-postfix option.
396
718c0ded
DD
3972005-11-06 Richard Guenther <rguenther@suse.de>
398
399 * splay-tree.c (rotate_left): New function.
400 (rotate_right): Likewise.
401 (splay_tree_splay_helper): Remove.
402 (splay_tree_splay): Re-implement.
403
fb10537e
DD
4042005-10-31 Mark Kettenis <kettenis@gnu.org>
405
406 * floatformat.c (floatformat_vax_aingle, floatformat_vax_double):
407 New variables.
408
5209596c
MM
4092005-10-07 Mark Mitchell <mark@codesourcery.com>
410
411 * at-file.texi: Fix typo.
412
7b96829c
MM
4132005-10-03 Mark Mitchell <mark@codesourcery.com>
414
415 * at-file.texi: New file.
416
48e79b0a
MM
4172005-09-27 Mark Mitchell <mark@codesourcery.com>
418
419 * argv.c (expandargv): Do not use xmalloc_failed.
420
7b17bc29
MM
4212005-09-26 Mark Mitchell <mark@codesourcery.com>
422
423 * argv.c (safe-ctype.h): Include it.
424 (ISBLANK): Remove.
425 (stdio.h): Include.
426 (buildargv): Use ISSPACE instead of ISBLANK.
427 (expandargv): New function.
428 * Makefile.in: Regenerated.
429
f59e96e0
DD
4302005-09-14 Christopher Faylor <cgf@timesys.com>
431
432 * pex-win32.c: Include "windows.h".
433 (backslashify): New function.
434 (fix_argv): Use backslashify to convert path to windows format.
435 Allocate one more place in new argv for potential executable from '#!'
436 parsing.
437 (tack_on_executable): New function. Conditional on USE_MINGW_MSYS
438 (openkey): Ditto.
439 (mingw_rootify): Ditto.
440 (msys_rootify): Ditto.
441 (spawn_script): New function.
442 (pex_win32_exec_child): Save translated argv in newargv. Pass to
443 spawn_script if spawnv* fails.
444 (main): New function. Conditional on MAIN. Useful for testing.
445
3b6940c0
DD
4462005-08-17 Mark Kettenis <kettenis@gnu.org>
447
448 * floatformat.c (floatformat_always_valid): Change type of last
449 argument to `void *'.
450 (floatformat_i387_ext_is_valid): Likewise.
451 (floatformat_to_double): Change type of second argument to `const
452 void *'.
453 (floatformat_from_double): Change type of last argument to `void
454 *'.
455 (floatformat_is_valid): Change type of last argument to `const
456 void *'.
457 (ieee_test): Remove redundant casts.
458
a9479c3f
KC
4592005-08-17 Kelley Cook <kcook@gcc.gnu.org>
460
461 * strverscmp.c: Update FSF address.
462 * testsuite/Makefile.in: Likewise.
463 * testsuite/test-demangle.c: Likewise.
464 * testsuite/test-pexecute.c: Likewise.
465
55060c0b
DD
4662005-07-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
467
468 * getopt.c: Include ansidecl.h before system headers.
469
6038baea
DD
4702005-07-22 Ben Elliston <bje@gnu.org>
471
472 * getopt.c: Include "ansidecl.h".
473 (_getopt_initialize): Mark argc and argv parameters as unused.
474
4752005-07-22 Ben Elliston <bje@gnu.org>
476
477 * regex.c (regcomp): Change type of `i' from unsigned to int.
478
c750388a
DD
4792005-07-22 Ben Elliston <bje@gnu.org>
480
481 Recover patch lost in the sourceware repository:
482 2005-07-09 Ben Elliston <bje@au.ibm.com>
483 * memcpy.c: Remove ANSI_PROTOTYPES conditional code.
484 * memmove.c: Likewise.
485 * objalloc.c: Likewise.
486
a4e5c0d8
DD
4872005-07-22 Ben Elliston <bje@gnu.org>
488
489 * configure.ac: Check for a getopt(3) declaration.
490 * configure, config.in: Regenerate.
491
4fe19082
DD
4922005-07-15 Ben Elliston <bje@au.ibm.com>
493
494 * regex.c (TRANSLATE): Cast rhs of ternary expression to char.
495
f2942ea4
DD
4962005-07-12 Ben Elliston <bje@au.ibm.com>
497
498 * floatformat.c (floatformat_to_double): Add a comment about a
499 potential source of warnings when compiling this file.
500
5012005-07-12 Ben Elliston <bje@au.ibm.com>
502
503 * pexecute.c (pexecute): Cast string litrals to char *.
504 * regex.c (re_comp): Cast a call to gettext() to char *.
505
4cf896a5
KC
5062005-07-07 Kelley Cook <kcook@gcc.gnu.org>
507
508 * config.table: Delete file. Move former contents into ...
509 * configure.ac: ... here and escape any brackets for m4.
510 * Makefile.in (config.status): Remove dependency on config.table.
511 * configure: Regenerate.
512
20ae7c34
KC
5132005-07-07 Kelley Cook <kcook@gcc.gnu.org>
514
515 * config.in: Regenerate for 6/20 change.
516
6ba85b8c
DD
5172005-07-03 Steve Ellcey <sje@cup.hp.com>
518
519 PR other/13906
520 * md5.c (md5_process_bytes): Check alignment.
521
5222005-07-01 Ian Lance Taylor <ian@airs.com>
523
524 PR other/22268
525 * cp-demangle.c (d_expr_primary): Don't run off the end of the
526 string while looking for the end of a literal value.
527 * testsuite/demangle-expected: Add test case.
528
c3cca4c9
DD
5292005-06-30 Daniel Berlin <dberlin@dberlin.org>
530
531 * hashtab.c (EMPTY_ENTRY): Moved and renamed.
532 (DELETED_ENTRY): Ditto.
533
67f3cb05
GK
5342005-06-20 Geoffrey Keating <geoffk@apple.com>
535
536 * strverscmp.c: New.
537 * Makefile.in (CFILES): Add strverscmp.c.
538 (CONFIGURED_OFILES): Add strverscmp.o.
539 (strverscmp.o): New rule.
540 (stamp-functions): Add $(srcdir) to files in source directory.
541 * configure.ac (funcs): Add strverscmp.
542 (AC_CHECK_FUNCS): Add strverscmp.
543 * configure: Regenerate.
544 * functions.texi: Regenerate.
545
01e94249
DD
5462005-05-28 Eli Zaretskii <eliz@gnu.org>
547
548 * configure.ac: Add snprintf and vsnprintf to AC_CHEK_DECLS.
549 * config.in, configure: Regenerate.
550
839e4798
RH
5512005-05-25 Richard Henderson <rth@redhat.com>
552
553 * cp-demangle.c (d_dump): Handle DEMANGLE_COMPONENT_HIDDEN_ALIAS.
554 (d_make_comp, d_print_comp): Likewise.
555 (d_special_name): Generate one.
556 * testsuite/demangle-expected: Add a hidden alias test.
557
abf6a75b
DD
5582005-05-24 Gabriel Dos Reis <gdr@integrable-solutions.net>
559
560 * configure.ac: Check declarations for calloc(), getenv(),
01e94249 561 malloc(), realloc() and sbrk().
abf6a75b
DD
562 * config.in: Regenerate.
563 * configure: Likewise.
564
565 * alloca.c (C_alloca): Change "new" to "new_storage". Use XNEWVEC
566 instead of xmalloc.
567 * choose-temp.c (choose_temp_base): Use XNEWVEC instea od xmalloc.
568 * concat.c (liiberty_concat_ptr): Surround definition with an
569 extern "C" block, if __cplusplus.
570 (concat): Use XNEWVEC instead of xmalloc.
571 (reconcat): Likewise.
572 * cp-demangle.c (struct d_print_template): Rename member
01e94249 573 "template" to "template_decl". Adjust use throughout the file.
abf6a75b
DD
574 (d_print_resize): Properly cast return value of realloc().
575 (cplus_demangle_print): Same for malloc().
576 (d_demangle): Likewise.
577 * cp-demint.c (cplus_demangle_fill_builtin_type): Rename parameter
578 "typename" to "type_name".
579 * cplus-dem.c (grow_vect): Use XRESIZEVEC instead of xrealloc().
580 (work_stuff_copy_to_from): Use XNEWVEC insteand of xmalloc().
581 (demangle_template_value_parm): Likewise.
582 (demangle_template): Likewise.
583 (recursively_demangle): Likewise.
584 (do_hpacc_template_literal): Likewise.
585 (do_arg): Likewise.
586 (remember_type): Likewise.
587 (remember_Ktype): Likewise.
588 (register_Btype): Likewise.
589 (string_need): Use XRESIZEVEC instead of xrealloc().
590 * dyn-string.c (dyn_string_init): Use XNEWVEC.
591 (dyn_string_new): Use XNEW.
592 (dyn_string_resize): Use XRESIZEVEC.
593 * fnmatch.c (fnmatch): Rename local variable "not" to "negate".
594 * getopt.c (getenv): Declare only if !__cplusplus and !getenv.
595 Otherwise include <stdlib.h>.
596 (exchange): Cast return value of malloc().
597 * hashtab.c (htab_size): Define as both macro and non-inline
598 function.
599 (htab_elements): Likewise.
600 * getpwd.c (getpwd): Use XNEWVEC.
601 (htab_create_alloc_ex): Use C90 prototype-style.
602 * lrealpath.c (lrealpath): Appropriately cast return value of
01e94249 603 malloc().
abf6a75b
DD
604 * make-relative-prefix.c (save_string): Likewise.
605 * make-temp-file.c (try_dir): Rename from "try". Adjust use in
606 the file.
607 (choose_tmpdir): Use XNEWVEC.
608 * mkstemps.c (mkstemps): Rename parameter "template" to "pattern".
609 * pex-common.c (pex_init_common): Use XNEW.
610 (pex_add_remove): Use XRESIZEVEC.
611 (pex_run): Likewise.
612 (pex_get_status_and_time): Likewise.
613 * pex-djgpp.c (pex_djgpp_exec_child): Likewise.
614 * pex-msdos.c (pex_init): Use XNEW.
615 (pex_msdos_exec_child): Likewise.
616 (pex_msdos_exec_child): Use XRESIZEVEC.
617 * pex-unix.c (pex_wait): Use XNEW.
618 * pex-win32.c (fix_argv): Use XNEWVEC.
619 * pexecute.c (pwait): Likewise.
620 * setenv.c (setenv): Properly cast return value of malloc().
621 * sigsetmask.c (sigsetmask): Rename local variables "old" and
622 "new" to "old_sig" and "new_sig".
623 * sort.c (main): Use XNEWVEC.
624 * spaces.c (spaces): Cast return value of malloc().
625 * strndup.c (strndup): Likewise.
626 * ternary.c (ternary_insert): Use XNEW.
627 * xmalloc.c (malloc, realloc, calloc, sbrk): Surround declaration
628 with an extern "C" block if __cplusplus.
629 * xstrdup.c (xstrdup): Cast return value of memcpy().
630 * xstrerror.c (strerror): Enclose declaration in an extern "C"
631 block if __cplusplus.
632 * xstrndup.c (xstrndup): Use XNEW. Cast return value of memcpy().
633
2349f557
DD
6342005-05-16 Andreas Jaeger <aj@suse.de>
635
636 * getpwd.c: Remove unneeded prototype getcwd and move getwd so
637 that it's only declared if needed.
638
639 * getopt1.c: Change order of includes so that __GNU_LIBRARY__ is
640 defined.
641
e9edcedc
DD
6422005-05-15 Andreas Jaeger <aj@suse.de>
643
644 * functions.texi: Regenerated.
645
f13c9bea
DD
6462005-05-15 Eli Zaretskii <eliz@gnu.org>
647
648 * pexecute.txh: Enclose multi-word data types in @deftypefn in
649 braces. Minor wording fixes. Use --- for em-dash. Use
650 @enumerate in enumerated lists.
651
e9edcedc
DD
652 * fopen_unlocked.c: Enclose multi-word data types in @deftypefn in
653 braces.
654
282d9ec3
ILT
6552005-05-11 Eli Zaretskii <eliz@gnu.org>
656
657 * pex-djgpp.c: Include string.h, fcntl.h, unistd.h, and
658 sys/stat.h.
659 (pex_init): Fix last argument to pex_init_common.
660 (pex_djgpp_exec_child): Remove leading underscore from _open,
661 _dup, _dup2, _close, and _spawnv/_spawnvp. Replace `program',
662 which is undeclared, with `executable', which was unused. Remove
663 unused variable `e'. Fix casting of last arg to spawnv/spawnvp.
664 (pex_djgpp_wait): Declare arguments with ATTRIBUTE_UNUSED.
665
75919f94
DD
6662005-05-11 Paul Brook <paul@codesourcery.com>
667
668 * Makefile.in: Regenerate dependencies.
669
979c05d3
NC
6702005-05-10 Nick Clifton <nickc@redhat.com>
671
672 * Update the address and phone number of the FSF organization in
673 the GPL notices in the following files:
75919f94
DD
674 COPYING.LIB, Makefile.in, _doprnt.c, argv.c, asprintf.c,
675 choose-temp.c, clock.c, concat.c, copying-lib.texi, cp-demangle.c,
676 cp-demangle.h, cp-demint.c, cplus-dem.c, dyn-string.c, fdmatch.c,
677 fibheap.c, floatformat.c, fnmatch.c, fopen_unlocked.c,
678 gather-docs, getopt.c, getopt1.c, getruntime.c, hashtab.c, hex.c,
679 lbasename.c, lrealpath.c, maint-tool, make-relative-prefix.c,
680 make-temp-file.c, md5.c, mempcpy.c, mkstemps.c, objalloc.c,
681 obstack.c, partition.c, pex-common.c, pex-common.h, pex-djgpp.c,
682 pex-msdos.c, pex-one.c, pex-unix.c, pex-win32.c, pexecute.c,
683 physmem.c, putenv.c, regex.c, safe-ctype.c, setenv.c, snprintf.c,
684 sort.c, spaces.c, splay-tree.c, stpcpy.c, stpncpy.c, strndup.c,
685 strtod.c, ternary.c, unlink-if-ordinary.c, vasprintf.c,
686 vsnprintf.c, vsprintf.c, xexit.c, xmalloc.c, xstrndup.c
979c05d3 687
0093138c
DD
6882005-05-06 Kelley Cook <kcook@gcc.gnu.org>
689
690 * aclocal.m4 (AC_DEFINE_NOAUTOHEADER): Remove.
691 * configure.ac: Replace any AC_DEFINE_NOAUTOHEADER with AC_DEFINE.
692 * configure: Regenerate.
693
6942005-05-06 Kelley Cook <kcook@gcc.gnu.org>
695
696 * configure.ac: Use AC_C_BIGENDIAN instead of AC_C_BIGENDIAN_CROSS.
697 Use AC_CHECK_SIZEOF instead of AC_COMPILE_CHECK_SIZEOF.
698 * aclocal.m4: Don't include accross.m4.
699 * configure, config.in: Regenerate.
700
c631edf1
DD
7012005-04-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
702
703 * fopen_unlocked.c (unlock_std_streams): New.
f13c9bea 704
c631edf1
DD
705 * functions.texi: Regenerate.
706
7b6f6286
DD
7072005-04-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
708
709 * fopen_unlocked.c (unlock_stream): New.
710 Consolidate unlocking code into a helper function.
711
712 * functions.texi: Regenerate.
713
fa99459d
DD
7142005-04-13 Gabriel Dos Reis <gdr@integrable-solutions.net>
715
716 * asprintf.c: Include config.h.
717 * basename.c: Likewise.
718 * fdmatch.c: Likewise.
719 * hex.c: Likewise.
720 * lbasename.c: Likewise.
721 * spaces.c: Likewise.
722 * xatexit.c:Likewise.
f13c9bea 723 * configure.ac: Do check declarations for basename, ffs, asprintf
fa99459d
DD
724 and vasprintf for real.
725 * configure: Regenerate.
726
ab70e2a5
DD
7272005-04-13 Gabriel Dos Reis <gdr@integrable-solutions.net>
728
f13c9bea 729 * argv.c (dupargv): Allocate space of argv[argc], not
ab70e2a5
DD
730 sizeof(char *) of that amount. Cast result to char *.
731
ea7143ac
DD
7322005-04-12 Gabriel Dos Reis <gdr@integrable-solutions.net>
733
734 * regex.c (wcs_re_match_2_internal, byte_re_match_2_internal):
f13c9bea 735 Replace not with negate.
ea7143ac 736
41c953f9
DD
7372005-04-12 Gabriel Dos Reis <gdr@integrable-solutions.net>
738
739 * configure.ac: Check declarations for basename, ffs, asprintf,
740 vasprintf.
741 * configure: Regenerate.
742 * config.in: Likewise.
743
ac119ae8
DD
7442005-04-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
745
746 * Makefile.in (CFILES): Add fopen_unlocked.c.
747 (REQUIRED_OFILES): Add ./fopen_unlocked.o.
748 Regenerate dependencies.
749
750 * configure.ac: Check for stdio_ext.h and __fsetlocking.
751
752 * fopen_unlocked.c: New file.
753
754 * functions.texi, configure, config.in: Regenerate.
755
6e933b47
DD
7562005-04-04 Ian Lance Taylor <ian@airs.com>
757
758 * testsuite/test-pexecute.c (TEST_PEX_RUN): Move variable
759 declaration before statement.
760
aa55ccb1
DD
7612005-04-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
762
14a88c49
DD
763 * bcmp.c: Fix warnings and implement using memcmp.
764 * bcopy.c: Fix warnings.
765 * bzero.c: Fix warnings and implement using memset.
766
aa55ccb1
DD
767 * configure.ac (ac_libiberty_warn_cflags): Add -Wwrite-strings
768 -Wstrict-prototypes.
769 * configure, config.in: Regenerate.
770
771 * bsearch.c, index.c, rindex.c, strstr.c, strtol.c, waitpid.c: Fix
772 warnings and reconcile interfaces with relevant standards.
773
b31a49d7
ILT
7742005-04-02 Ian Lance Taylor <ian@airs.com>
775
776 * cp-demangle.c: Update copyright.
777
0e867e79
DD
7782005-03-31 Joseph S. Myers <joseph@codesourcery.com>
779
780 * gettimeofday.c: Add "Supplemental" to @deftypefn.
781 * functions.texi: Regenerate.
782
b109e79a
ILT
7832005-03-28 Ian Lance Taylor <ian@airs.com>
784
785 * pex-common.c: New file.
786 * pex-one.c: New file.
787 * pexecute.c: New file.
788 * pex-common.h: Include <stdio.h>.
789 (struct pex_obj): Define.
790 (struct pex_funcs): Define.
791 (pex_init_common): Declare.
792 * pex-unix.c: Rewrite.
793 * pex-win32.c: Rewrite.
794 * pex-djgpp.c: Rewrite.
795 * pex-msdos.c: Rewrite.
796 * testsuite/text-pexecute.c: New file.
797 * pexecute.txh: Rewrite.
798 * configure.ac: Check for wait3 and wait4. Set CHECK to
799 really-check rather than check-cplus-dem.
800 * functions.texi: Rebuild.
801 * Makefile.in: Rebuild dependencies.
802 (CFILES): Add pexecute.c, pex-common.c, pex-one.c.
803 (REQUIRED_OFILES): Add pexecute.o, pex-common.o, pex-one.o.
804 * testsuite/Makefile.in (really-check): New target.
805 (check-pexecute, test-pexecute): New targets.
806 * configure: Rebuild.
807
864e8148 8082005-03-28 Mark Kettenis <kettenis@gnu.org>
f13c9bea 809
864e8148
DD
810 * unlink-if-ordinary.c: Include <sys/types.h>.
811
e064c173
DD
8122005-03-27 Gabriel Dos Reis <gdr@integrable-solutions.net>
813
814 Convert libiberty to use ISO C prototype style 7/n.
815 * regex.c (PARAMS): Remove definition.
816 (PREFIX): Unconditionaly define using ISO C ## operator.
f13c9bea 817 (init_syntax_once, extract_number, extract_number_and_incr,
e064c173 818 print_fastmap, print_partial_compiled_pattern,
f13c9bea 819 print_compiled_pattern, print_double_string, printchar,
e064c173
DD
820 convert_mbs_to_wcs, re_set_syntax, regex_grow_registers,
821 regex_compile, store_op1, store_op2, insert_op1, insert_op2,
f13c9bea
DD
822 at_begline_loc_p, at_endline_p, group_in_compile_stack,
823 insert_space, wcs_compile_range, byte_compile_range,
824 truncate_wchar, re_compile_fastmap, re_compile_fastmap,
825 re_set_registers, re_search, re_search_2, re_search_3, re_match,
e064c173
DD
826 re_match_2, count_mbs_length, wcs_re_match_2_internal,
827 byte_re_match_2_internal, group_match_null_string_p,
828 alt_match_null_string_p, common_op_match_null_string_p,
f13c9bea 829 bcmp_translate, re_compile_pattern, re_comp, re_exec, regcomp,
e064c173
DD
830 regexec, regerror, regfree): Use ISO C prototype style.
831 * partition.c: (elem_compare): Likewise.
832 * cp-demangle.c (print_usage): Likewise.
833
1e45deed
DD
8342005-03-27 Gabriel Dos Reis <gdr@integrable-solutions.net>
835
836 Convert libiberty to use ISO C prototype style 5/n.
837 * random.c (srandom, initstate, setstate, random): Use ISO C
f13c9bea 838 prototypes.
1e45deed
DD
839 * putenv.c (putenv): Likewise.
840 * physmem.c (physmem_available, physmem_total, main): Likewise.
841 * pex-win32.c (fix_argv, pexecute, pwait): Likewise.
842 * pex-unix.c (pexecute, pwait): Likewise.
843 * pex-msdos.c (pexecute, pwait): Likewise.
844 * pex-djgpp.c (pexecute, pwait): Likewise.
f13c9bea 845 * partition.c (partition_new, partition_delete, partition_union)
1e45deed 846 (elem_compare, partition_print): Likewise.
f13c9bea
DD
847 * obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
848 _obstack_allocated_p, _obstack_free, obstack_free,
1e45deed
DD
849 _obstack_memory_used, print_and_abort, obstack_next_free,
850 obstack_object_size, obstack_base): Likewise. Remove codes
851 predicated on !defined(__STDC__).
f13c9bea 852 * objalloc.c (objalloc_create, _objalloc_alloc, objalloc_free,
1e45deed
DD
853 objalloc_free_block): Use ISO C prototypes.
854 * mkstemps.c (mkstemps): Likewise.
855 * memset.c (memset): Likewise.
856 * mempcpy.c (mempcpy): Likewise.
857 * rename.c (rename): Likewise.
858 * rindex.c (rindex): Likewise.
859 * setenv.c (setenv, unsetenv): Likewise.
860 * sigsetmask.c (sigsetmask): Likewise.
861 * snprintf.c (snprintf): Likewise.
f13c9bea 862 * sort.c (sort_pointers, xmalloc): Likewise.
1e45deed 863 * spaces.c (spaces): Likewise.
f13c9bea
DD
864 * splay-tree.c (splay_tree_delete_helper,
865 splay_tree_splay_helper, splay_tree_splay,
1e45deed 866 splay_tree_foreach_helper, splay_tree_xmalloc_allocate,
f13c9bea 867 splay_tree_new, splay_tree_xmalloc_allocate,
1e45deed 868 splay_tree_new_with_allocator, splay_tree_delete,
f13c9bea
DD
869 splay_tree_insert, splay_tree_remove, splay_tree_lookup,
870 splay_tree_max, splay_tree_min, splay_tree_predecessor,
871 splay_tree_successor, splay_tree_foreach,
1e45deed
DD
872 splay_tree_compare_ints, splay_tree_compare_pointers): Likewise.
873 * stpcpy.c (stpcpy): Likewise.
874 * stpncpy.c (stpncpy): Likewise.
875 * strcasecmp.c (strcasecmp): Likewise.
876 * strchr.c (strchr): Likewise.
877 * strdup.c (strdup): Likewise.
878
49b1fae4
DD
8792005-03-27 Gabriel Dos Reis <gdr@integrable-solutions.net>
880
881 Convert libiberty to use ISO C prototype style 6/n.
f13c9bea 882 * strerror.c (init_error_tables, errno_max, strerror, strerrno,
49b1fae4
DD
883 strtoerrno, main): Use ISO C prototype style.
884 * strncasecmp.c (strncasecmp): Likewise.
885 * strncmp.c (strncmp): Likewise.
886 * strndup.c (strndup): Likewise.
887 * strrchr.c (strrchr): Likewise.
f13c9bea 888 * strsignal.c (init_signal_tables, signo_max, strsignal,
49b1fae4
DD
889 strsigno, strtosigno, psignal, main): Likewise.
890 * strstr.c (strstr): Likewise.
891 * strtod.c (strtod, atof): Likewise.
892 * strtol.c (strtol): Likewise.
893 * strtoul.c (strtoul): Likewise.
f13c9bea 894 * ternary.c (ternary_insert, ternary_cleanup, ternary_search,
49b1fae4
DD
895 ternary_recursivesearch): Likewise.
896 * tmpnam.c (tmpnam): Likewise.
897 * unlink-if-ordinary.c (unlink_if_ordinary): Likewise.
898 * vasprintf.c (int_vasprintf, vasprintf, checkit, main): Likewise.
899 * vfork.c (vfork): Likewise.
900 * vfprintf.c (vfprintf): Likewise.
901 * vprintf.c (vprintf): Likewise.
902 * vsnprintf.c (vsnprintf, checkit, main): Likewise.
903 * vsprintf.c (vsprintf): Likewise.
904 * waitpid.c (waitpid): Likewise.
905 * xatexit.c (xatexit, xatexit_cleanup): Likewise.
906 * xexit.c (xexit): Likewise.
f13c9bea 907 * xmalloc.c (xmalloc_set_program_name, xmalloc_failed, xmalloc,
49b1fae4
DD
908 xcalloc, xrealloc): Likewise.
909 * xmemdup.c (xmemdup): Likewise.
910 * xstrdup.c (xstrdup): Likewise.
911 * xstrerror.c (xstrerror): Likewise.
912 * xstrndup.c (xstrndup): Likewise.
913
9142005-03-27 Andreas Jaeger <aj@suse.de>
915
916 * configure.ac (ac_c_preproc_warn_flag): Remove -Wtraditional
917 flags.
918 * configure: Regenerated.
919
9202005-03-27 Gabriel Dos Reis <gdr@integrable-solutions.net>
921
922 * getopt1.c (getopt_long_only): Fix thinko.
923
9242005-03-27 Gabriel Dos Reis <gdr@integrable-solutions.net>
925
926 Convert libiberty to use ISO C prototype style 4/n.
927 * hashtab.c (higher_prime_index, hash_pointer, eq_pointer,
928 htab_size, htab_elements, htab_mod_1, htab_mod, htab_mod_m2,
929 htab_create_alloc, htab_set_functions_ex, htab_create,
930 htab_try_create, htab_delete, htab_empty,
931 find_empty_slot_for_expand, htab_expand, htab_find_with_hash,
932 htab_find, htab_find_slot_with_hash, htab_find_slot,
933 htab_remove_elt, htab_remove_elt_with_hash, htab_clear_slot,
934 htab_traverse_noresize, htab_traverse, htab_collisions,
935 htab_hash_string, iterative_hash): Use ISO C prototype.
936 * hex.c (hex_init): Likewise.
937 * index.c (index): Likewise.
938 * insque.c (insque, remque): Likewise.
939 * lbasename.c (lbasename): Likewise.
940 * lrealpath.c (lrealpath): Likewise.
941 * make-relative-prefix.c (save_string, split_directories,
942 free_split_directories, make_relative_prefix): Likewise.
943 * make-temp-file.c (try, choose_tmpdir, make_temp_file): Likewise.
944 * md5.c (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
945 md5_buffer, md5_process_bytes, md5_process_block): Likewise.
946 * memchr.c (memchr): Likewise.
947 * memcpy.c (memcpy): Likewise.
948 * memmove.c (memmove): Likewise.
949 * gettimeofday.c (gettimeofday): Likewise.
950 * getruntime.c (get_run_time): Likewise.
951 * getpwd.c (getpwd, getpwd): Likewise.
952 * getpagesize.c (getpagesize): Likewise.
953 * getopt1.c (getopt_long, getopt_long_only, main): Likewise.
954 * getopt.c (my_index, exchange, _getopt_initialize,
955 _getopt_internal, getopt, main): Likewise.
956 * getcwd.c (getcwd): Likewise.
957 * fnmatch.c (fnmatch): Likewise.
958 * floatformat.c (floatformat_always_valid,
959 floatformat_i387_ext_is_valid, get_field, floatformat_to_double,
960 put_field, floatformat_from_double, floatformat_is_valid,
961 ieee_test, main): Likewise.
962 * fibheap.c (fibheap_new, fibnode_new, fibheap_compare,
963 fibheap_comp_data, fibheap_insert, fibheap_min, fibheap_min_key,
964 fibheap_union, fibheap_extract_min, fibheap_replace_key_data,
965 fibheap_replace_key, fibheap_replace_data, fibheap_delete_node,
966 fibheap_delete, fibheap_empty, fibheap_extr_min_node,
967 fibheap_ins_root, fibheap_rem_root, fibheap_consolidate,
968 fibheap_link, fibheap_cut, fibheap_cascading_cut,
969 fibnode_insert_after, fibnode_remove): Likewise.
970 * ffs.c (ffs): Likewise.
971 * fdmatch.c (fdmatch): Likewise.
972 * dyn-string.c (dyn_string_init, dyn_string_new,
973 dyn_string_delete, dyn_string_release, dyn_string_resize,
974 dyn_string_clear, dyn_string_copy, dyn_string_copy_cstr,
975 dyn_string_prepend, dyn_string_prepend_cstr, dyn_string_insert,
976 dyn_string_insert_cstr, dyn_string_insert_char,
977 dyn_string_append, dyn_string_append_cstr,
978 dyn_string_append_char, dyn_string_substring, dyn_string_eq):
979 Likewise.
980
9334f9c6
DD
9812005-03-27 Gabriel Dos Reis <gdr@integrable-solutions.net>
982
983 Convert libiberty to use ISO C prototype style 3/n.
49b1fae4
DD
984 * cplus-dem.c (set_cplus_marker_for_demangling, consume_count,
985 consume_count_with_underscores, code_for_qualifier,
986 qualifier_string, demangle_qualifier, cplus_demangle_opname,
987 cplus_mangle_opname, cplus_demangle_set_style,
988 cplus_demangle_name_to_style, cplus_demangle, grow_vect,
9334f9c6 989 ada_demangle, internal_cplus_demangle, squangle_mop_up,
49b1fae4
DD
990 work_stuff_copy_to_from, delete_non_B_K_work_stuff,
991 delete_work_stuff, mop_up, demangle_signature,
992 demangle_method_args, demangle_template_template_parm,
993 demangle_expression, demangle_integral_value,
994 demangle_real_value, demangle_template_value_parm,
995 demangle_template, arm_pt, demangle_arm_hp_template,
996 demangle_class_name, demangle_class, iterate_demangle_function,
997 demangle_prefix, gnu_special, recursively_demangle, arm_special,
998 demangle_qualified, get_count, do_type, demangle_fund_type,
999 do_hpacc_template_const_value, do_hpacc_template_literal,
1000 snarf_numeric_literal, do_arg, remember_type, remember_Ktype,
1001 register_Btype, remember_Btype, forget_B_and_K_types,
1002 forget_types, demangle_args, demangle_nested_args,
1003 demangle_function_name, string_need, string_delete, string_init,
1004 string_clear, string_empty, string_append, string_appends,
9334f9c6
DD
1005 string_appendn, string_prepend, string_prepends, string_prependn,
1006 string_append_template_idx): Use ISO C prootype style.
1007 * cp-demint.c (cplus_demangle_fill_component,
49b1fae4 1008 cplus_demangle_fill_builtin_type, cplus_demangle_fill_operator,
9334f9c6
DD
1009 cplus_demangle_v3_components): Likewise.
1010
10112005-03-26 Gabriel Dos Reis <gdr@integrable-solutions.net>
1012
1013 Convert libiberty to use ISO C prototype style 2/n.
1014 * cp-demangle.h: Remove uses of PARAMS.
1015 * cp-demangle.c: Likewise.
49b1fae4
DD
1016 (d_dump, cplus_demangle_fill_name,
1017 cplus_demangle_fill_extended_operator, cplus_demangle_fill_ctor,
1018 cplus_demangle_fill_dtor, d_make_empty, d_make_comp, d_make_name,
1019 d_make_builtin_type, d_make_operator, d_make_extended_operator,
1020 d_make_ctor, d_make_dtor, d_make_template_param, d_make_sub,
1021 cplus_demangle_mangled_name, has_return_type,
1022 is_ctor_dtor_or_conversion, d_encoding, d_name, d_nested_name,
1023 d_prefix, d_unqualified_name, d_source_name, d_number,
1024 d_identifier, d_operator_name, d_special_name, d_call_offset,
1025 d_ctor_dtor_name, cplus_demangle_type, d_cv_qualifiers,
1026 d_function_type, d_bare_function_type, d_class_enum_type,
1027 d_array_type, d_pointer_to_member_type, d_template_param,
1028 d_template_args, d_template_arg, d_expression, d_expr_primary,
1029 d_local_name, d_discriminator, d_add_substitution,
1030 d_substitution, d_print_resize, d_print_append_char,
1031 d_print_append_buffer, d_print_error, cplus_demangle_print,
1032 d_print_comp, d_print_java_identifier, d_print_mod_list,
1033 d_print_mod, d_print_function_type, d_print_array_type,
1034 d_print_expr_op, d_print_cast, cplus_demangle_init_info,
1035 d_demangle, __cxa_demangle, cplus_demangle_v3, java_demangle_v3,
9334f9c6 1036 is_ctor_or_dtor, is_gnu_v3_mangled_ctor, is_gnu_v3_mangled_dtor,
49b1fae4 1037 print_usage, main):
9334f9c6
DD
1038
10392005-03-26 Gabriel Dos Reis <gdr@integrable-solutions.net>
1040
1041 Convert libiberty to ISO C prototype style 1/n.
1042 * _doprnt.c: Remove conditional #include <varargs.h> on
1043 ANSI_PROTOTYPES as the latter is always assumed.
1044 (_doprnt, checkit, main): Use ISO C prototype.
1045 * alloca.c (find_stack_direction, C_alloca): Use ISO C prototype.
1046 * argv.c: Remove conditional #includes on ANSI_PROTOTYPES.
49b1fae4 1047 (dupargv, freeargv, buildargv, main): Use ISO C prototype.
9334f9c6
DD
1048 * atexit.c (atexit): Likewise
1049 * asprintf.c: Remove conditional include on ANSI_PROTOTYPES.
49b1fae4 1050 (asprintf): Use ISO C prototype.
9334f9c6
DD
1051 * basename.c (basename): Likewise
1052 * bcmp.c (bcmp): Likewise.
1053 * bcopy.c (bcopy): Likewise.
1054 * bzero.c (bzero): Likewise.
1055 * bsearch.c (bsearch): Likewise. Improve const-correctness.
1056 * choose-temp.c (choose_temp_base): Likewise.
1057 * calloc.c: Remove conditional #include on ANSI_PROTOTYPES.
1058 (calloc): Use ISO C prototype.
1059 * clock.c (clock): Likewise.
1060 * concat.c: Remove conditional #include on ANSI_PROTOTYPES.
49b1fae4 1061 (vconcat_length, vconcat_copy, concat_length, concat_copy,
9334f9c6
DD
1062 concat_copy2, concat, reconcat, main): Use ISO C prototype.
1063 * copysign.c (copysign): Likewise.
1064
0fad4bdb
DD
10652005-03-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1066
1067 * Makefile.in (CFILES): Add strndup.c and xstrndup.c.
1068 (REQUIRED_OFILES): Add xstrndup.o.
1069 (CONFIGURED_OFILES): Add strndup.o.
1070 Regenerate dependencies.
1071
1072 * configure.ac (funcs, AC_CHECK_FUNCS): Add strndup.
1073
1074 * strndup.c, xstrndup.c: New.
1075
1076 * config.in, configure, functions.texi: Regenerate.
1077
51e32d64
DD
10782005-03-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1079
1080 * xmemdup.c, xstrdup.c: Expose the tail call.
1081
8ec32723
DD
10822005-03-09 Mark Mitchell <mark@codesourcery.com>
1083
1084 * configure.ac (funcs): Add gettimeofday.
1085 * configure: Regenerated.
1086 * gettimeofday.c: New file.
1087 * Makefile.in (CFILES): Add gettimeofday.
1088 (CONFIGURED_OFILES): Add gettimeofday.o.
1089 (./gettimeofday.o): New rule.
1090
27ff8836
ILT
10912005-03-09 Ian Lance Taylor <ian@airs.com>
1092
1093 * pex-os2.c: Remove.
1094 * configure.ac: Remove *-*-os2-emx* case when setting pexecute.
1095 * Makefile.in (CFILES): Remove pex-os2.c.
1096 (CONFIGURED_OFILES): Remove pex-os2.o.
1097 (pex-os2.o): Remove target.
1098 * configure: Rebuild.
1099
48e39b59
ILT
11002005-03-07 Ian Lance Taylor <ian@airs.com>
1101
1102 * mpw-config.in: Remove.
1103 * mpw-make.sed: Remove.
1104 * mpw.c: Remove.
1105 * Makefile.in (CFILES): Remove pex-mpw.c.
1106 (CONFIGURED_OFILES): Remove pex-mpw.o.
1107 (mpw.o, pex-mpw.o): Remove targets.
1108 * maint-tool (undoc): Remove reference to mpw.c.
1109
65dce80e
DD
11102005-03-06 DJ Delorie <dj@redhat.com>
1111
1112 * configure.ac (target_header_dir): vfork is a stub under djgpp.
1113 * configure: Regenerated.
1114
190eb137
DD
11152005-03-01 Jan Beulich <jbeulich@novell.com>
1116
1117 * Makefile.in (CFILES): Add unlink-if-ordinary.c
1118 (REQUIRED_OFILES): Add unlink-if-ordinary.o.
1119 Add dependencies and rule for unlink-if-ordinary.o.
1120 * unlink-if-ordinary.c: New.
1121
bac7199c
DD
11222005-03-01 Ben Elliston <bje@au.ibm.com>
1123
1124 * hashtab.c (htab_find_slot_with_hash): Make function
1125 documentation clearer.
1126
aca9a742
JM
11272005-02-13 Jason Merrill <jason@redhat.com>
1128
1129 * cp-demangle.c (__cxa_demangle): Change resolution of ambiguous
1130 arguments.
1131
b5c3b3de
DD
11322005-01-11 Tobias Schl"uter <tobias.schlueter@physik.uni-muenchen.de>
1133
1134 * hex.c (hex_value): Group 'unsigned int' together to get correct
1135 markup.
1136 * functions.texi: Regenerated.
49b1fae4 1137
46a10049
DD
11382004-12-27 H.J. Lu <hongjiu.lu@intel.com>
1139
1140 * Makefile.in: Undo to 2004-12-17.
1141 * aclocal.m4: Likewise.
1142 * config.table: Likewise.
1143 * configure.ac: Likewise.
1144 * maint-tool: Likewise.
1145 * configure: Likewise.
1146
fbfdf750
DD
11472004-12-19 H.J. Lu <hongjiu.lu@intel.com>
1148
1149 PR bootstrap/19072
1150 * Makefile.in (enable_shared): New substitute.
1151 (LTTARGETLIB): New.
1152 (PREFIXTARGETLIB): New.
1153 (LTTESTLIB): New.
1154 (PREFIXTESTLIB): New.
1155 (CCLD): New.
1156 (LINK): New.
1157 ($(TARGETLIB)): Use $(LINK) to create libraries and create
1158 targets by hand.
1159 ($(TESTLIB)): Likewise.
1160 (mostlyclean): Don't remove .libs. Remove the libtool object
1161 directory.
1162
1163 * config.table (enable_shared): Removed.
1164
1165 * configure.ac (enable_static): Set to yes.
1166 (AC_PROG_LIBTOOL): Removed.
1167 (AM_DISABLE_SHARED): Uncommented.
1168 (AM_PROG_LIBTOOL): Likewise.
1169 (LIBOBJS): Add `./' to avoid VPATH.
1170 (LTLIBOBJS): Likewise.
1171 (enable_shared): Substitute.
1172 * configure: Regenerated.
1173
96e00b33
L
11742004-12-18 H.J. Lu <hongjiu.lu@intel.com>
1175
1176 * Makefile.in (top_builddir): Set to `.'.
1177 (OUTPUT_OPTION): Removed.
1178 (LIBTOOL): New.
1179 (LTLIBOBJS): New.
1180 (EXTRA_LTOFILES): New.
1181 (FLAGS_TO_PASS): Add EXTRA_LTOFILES.
1182 (all): Remove stamp-picdir.
1183 (LTCOMPILE): New.
1184 (.c.lo): New rule.
1185 (REQUIRED_LTOFILES): New.
1186 (CONFIGURED_LTOFILES): New.
1187 ($(TARGETLIB)): Check .libs for PIC object files. Depend on
1188 $(REQUIRED_LTOFILES) $(EXTRA_LTOFILES) $(LTLIBOBJS).
1189 (stamp-picdir): Completely removed.
1190 (maint-missing): Pass $(REQUIRED_LTOFILES)
1191 $(CONFIGURED_LTOFILES) instead of (REQUIRED_OFILES)
1192 $(CONFIGURED_OFILES)
1193 (maint-buildall): Depend on $(REQUIRED_LTOFILES)
1194 $(CONFIGURED_LTOFILES).
1195 (mostlyclean): Also remove *.lo .libs.
1196 Run "make maint-deps".
1197
1198 * aclocal.m4: Include ../libtool.m4.
1199
1200 * config.table: Don't check --enable-shared.
1201
1202 * configure.ac (AC_PROG_LIBTOOL): Add.
1203 (AC_PROG_CC_C_O): Removed.
1204 (OUTPUT_OPTION): Removed.
1205 (NO_MINUS_C_MINUS_O): Removed.
1206 (ltpexecute): New substitute.
1207 (LIBOBJS): Cleanup.
1208 * configure: Regenerated.
1209
1210 * maint-tool: Updated for .lo/libtool.
1211
40a59a4c
DD
12122004-12-11 Ben Elliston <bje@au.ibm.com>
1213
1214 * configure.ac: Invoke AC_CHECK_SIZEOF for sizeof (int).
1215 * configure: Regenerate.
1216 * config.in: Likewise.
1217
9923bc33
DD
12182004-12-07 DJ Delorie <dj@redhat.com>
1219
1220 * splay-tree.c (splay_tree_delete_helper): Redesign the logic so
1221 that recursion (and thus large stack space) is not needed.
1222
70615d15
DD
12232004-11-29 Matt Kraai <kraai@alumni.cmu.edu>
1224
1225 * pex-unix.c: Fix the spelling of longjmp.
1226
eb129e35
DD
12272004-11-23 Ian Lance Taylor <ian@wasabisystems.com>
1228
1229 PR other/18623
1230 * cp-demangle.c (d_call_offset): Remove useless local variables
1231 offset and virtual_offset.
1232 * cplus-dem.c (ada_demangle): Remove useless local variable
1233 at_start_name.
1234 (demangle_template): Remove useless local variable start.
1235
3e0f1404
DD
12362004-11-19 Roger Sayle <roger@eyesopen.com>
1237
1238 * objalloc.c, strsignal.c, xstrerror.c: Include "config.h" before
1239 "ansidecl.h" to avoid redeclaration errors with native compilers.
1240 * regex.c: Protect config.h from multiple inclusion.
1241
6cfb3176
DD
12422004-11-12 Mike Stump <mrs@apple.com>
1243
1244 * Makefile.in (libiberty.html): Fix html generation.
1245
f9b4e353
DD
12462004-09-08 Adam Nemet <anemet@lnxw.com>
1247
1248 * vasprintf.c: Accept __va_copy in addition to va_copy.
1249
49b1fae4 12502004-09-03 Paolo Bonzini <bonzini@gnu.org>
c7efc4d5
PB
1251
1252 * configure: Regenerate.
1253
49b1fae4 12542004-09-02 Paolo Bonzini <bonzini@gnu.org>
f5396bbe
PB
1255
1256 * configure.ac: Do not enable multilibs for build-side libiberty.
1257
49b1fae4 12582004-06-29 Danny Smith <dannysmith@users.sourceforge.net>
950ad202
DD
1259
1260 * lrealpath.c (lrealpath): Add _WIN32 support.
1261
a21da8bf
DD
12622004-06-28 Zack Weinberg <zack@codesourcery.com>
1263
1264 * cp-demangle.h: Declare cplus_demangle_operators,
1265 cplus_demangle_builtin_types, cplus_demangle_mangled_name, and
1266 cplus_demangle_type as static if IN_GLIBCPP_V3.
1267
12682004-06-28 Ian Lance Taylor <ian@wasabisystems.com>
1269
1270 PR other/16240
1271 * cp-demangle.c (d_expr_primary): Check for a failure return from
1272 cplus_demangle_type.
1273 * testsuite/demangle-expected: Add test case.
1274
9f7d3e7d
DD
12752004-05-31 Danny Smith <dannysmith@users.sourceforge.net>
1276
1277 * pex-win32.c (fix_argv): Expand comment.
1278
0cb2db3a
DD
12792004-05-25 Daniel Jacobowitz <drow@false.org>
1280
1281 * Makefile.in: Add .NOEXPORT.
1282
25319993
DD
12832004-04-29 Douglas B Rupp <rupp@gnat.com>
1284
1285 * mkstemps.c (mkstemps) [VMS]: Remove special open option. Update
1286 copyright.
1287
7e9f5c71
DD
12882004-04-26 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
1289
1290 * configure.ac (UNSIGNED_64BIT_TYPE): Unquote the definition.
1291 * configure: Regenerate.
1292
bb6a587d
DD
12932004-04-22 Richard Henderson <rth@redhat.com>
1294
1295 * hashtab.c: Include limits.h, stdint.h, ansidecl.h.
1296 (CHAR_BIT): Provide default.
1297 (struct prime_ent, prime_tab): New.
1298 (higher_prime_index): Rename from higher_prime_number, return index.
1299 (htab_mod_1): New.
1300 (htab_mod, htab_mod_m2): Use it.
1301 (htab_create_alloc, htab_create_alloc_ex): Store prime index.
1302 (htab_expand): Likewise.
1303 * configure.ac: Check for stdint.h.
1304 (UNSIGNED_64BIT_TYPE): New define and checks to fill it in.
1305 * config.in, configure: Rebuild.
1306
53239e41
DD
13072004-04-13 Ian Lance Taylor <ian@wasabisystems.com>
1308
1309 * strerror.c: Include config.h, and redefine sys_nerr and
1310 sys_errlist, before including ansidecl.h and libiberty.h.
1311
d6ea4e80
DD
13122004-04-13 Jeff Law <law@redhat.com>
1313
1314 * hashtab.c (htab_remove_elt_with_hash): New function.
1315 (htab_remove_elt): Implement in terms of htab_remove_elt_with_hash.
1316
fe046a17
DD
13172004-03-31 Richard Henderson <rth@redhat.com>
1318
1319 * hashtab.c (htab_size): Move to top of file; mark inline.
1320 (htab_elements): Likewise.
1321 (htab_mod, htab_mod_m2): New.
1322 (htab_delete): Refactor htab->size and htab->entries.
1323 (htab_empty): Likewise.
1324 (find_empty_slot_for_expand): Use htab_size, htab_mod, htab_mod_m2.
1325 (htab_find_with_hash, htab_find_slot_with_hash): Likewise.
1326 (htab_clear_slot): Use htab_size, htab_elements.
1327 (htab_traverse_noresize, htab_traverse): Likewise.
1328
e0c148a7
DD
13292004-03-17 Ian Lance Taylor <ian@wasabisystems.com>
1330
12a7367e
DD
1331 * pex-unix.c (pexecute): Use vfork instead of fork, with
1332 appropriate changes to make this safe.
1333 * pex-common.h (STDERR_FILE_NO): Define.
1334
e0c148a7
DD
1335 * Makefile.in: Clean up REQUIRED_OFILES and CONFIGURED_OFILES for
1336 an 80 column screen. Run maint-deps.
1337
85f969cd
DD
13382004-03-09 Kelley Cook <kcook@gcc.gnu.org>
1339
1340 * configure.ac: Bump version to 2.59. Apply suggested autoupdates.
1341 * acconfig.h: Delete redundant file.
1342 * config.in: Regenerate.
1343 * configure: Regenerate.
1344
58670637
DD
13452004-03-09 Hans-Peter Nilsson <hp@axis.com>
1346
1347 * configure: Regenerate for config/accross.m4 correction.
1348
758d77be
DD
13492004-03-07 Andreas Jaeger <aj@suse.de>
1350
1351 * testsuite/test-demangle.c: Include <string.h> and <stdlib.h> for
1352 prototypes.
1353 (main): Initialize style.
1354
74aee4eb
DD
13552004-02-24 Ian Lance Taylor <ian@wasabisystems.com>
1356
2d733211
DD
1357 * cp-demangle.h (enum d_builtin_type_print): Add D_PRINT_UNSIGNED,
1358 D_PRINT_UNSIGNED_LONG, D_PRINT_LONG_LONG,
1359 D_PRINT_UNSIGNED_LONG_LONG, D_PRINT_FLOAT.
1360 * cp-demangle.c (cplus_demangle_builtin_types): Change char and
1361 short types to D_PRINT_DEFAULT. Change other integer types to use
1362 new D_PRINT_* values where appropriate. Change float types to
1363 D_PRINT_FLOAT.
1364 (d_print_comp) [LITERAL, LITERAL_NEG]: Handle new D_PRINT_*
1365 values.
1366 * testsuite/demangle-expected: Adjust two test cases.
1367
1368 * cp-demangle.c (d_print_function_type): Print a space before the
1369 parenthesis around the function type in more cases.
1370 * testsuite/demangle-expected: Adjust one test case.
1371
099f84cf
DD
1372 * cp-demangle.c (d_print_comp) [UNARY]: Don't emit extra
1373 parentheses around a cast.
1374 * testsuite/demangle-expected: Adjust two test cases to match new
1375 output.
1376
74aee4eb
DD
1377 * cp-demangle.c (__cxa_demangle): Pass DMGL_PARAMS to d_demangle.
1378
1379 * cp-demangle.c (d_print_comp) [RESTRICT, VOLATILE, CONST]: Don't
1380 push more than one of the same CV-qualifier on the top of the
1381 stack.
1382 (d_print_comp) [ARRAY_TYPE]: If the array itself is CV-qualified,
1383 move the CV-qualifiers to apply to the element type instead.
1384 (d_print_array_type): When checking the modifiers, keep looking
1385 past ones which have been printed already.
1386 * testsuite/demangle-expected: Add three test cases.
1387
13882004-02-23 Ian Lance Taylor <ian@wasabisystems.com>
1389
1390 * cp-demangle.c (__cxa_demangle): Adjust last patch to handle
1391 empty string correctly.
1392
1393 * cp-demangle.c (__cxa_demangle): It is not an error if status is
1394 not NULL. It is an error if the mangled name is the same as a
1395 built-in type name.
1396 (main): If IN_GLIBCPP_V3 is defined, test __cxa_demangle rather
1397 than cplus_demangle_v3.
1398
1399 * dyn-string.c: Remove test of IN_LIBGCC2 and IN_GLIBCPP_V3 and
1400 the associated #define of RETURN_ON_ALLOCATION_FAILURE.
1401
f9375305
DD
14022004-02-16 Matt Kraai <kraai@alumni.cmu.edu>
1403
1404 * regex.c: Include <ansidecl.h>.
1405 (regcomp): Cast i to int.
1406 (regerror): Add ATTRIBUTE_UNUSED to parameter preg.
1407
cbf0ee79
DD
14082004-01-25 Ian Lance Taylor <ian@wasabisystems.com>
1409
1410 * configure.ac: Add m4_pattern_allow(LIBOBJS).
1411 * configure: Regenerate.
1412
37254c9a
DD
14132004-01-22 DJ Delorie <dj@redhat.com>
1414
1415 * Makefile.in: Convert to ./ throughout. Rebuild dependencies
1416 with explicit build rules.
1417 (VPATH): Remove.
1418 (.c.o): Poison.
1419 * configure.ac (pexecute, LIBOBJS): Add ./ .
1420 * maint-tool: Build dependencies with explicit rules.
1421
211333f6
DD
14222004-01-15 Kazu Hirata <kazu@cs.umass.edu>
1423
1424 * strdup.c (strdup): Constify the argument.
1425
3795d586
DD
14262004-01-14 Loren J. Rittle <ljrittle@acm.org>
1427
1428 * Makefile.in (distclean): Remove config.cache.
1429
2d6520ee
DJ
14302004-01-13 Daniel Jacobowitz <drow@mvista.com>
1431
1432 * cp-demangle.c (d_make_comp): DEMANGLE_COMPONENT_CONSTRUCTION_VTABLE
1433 takes two parameters.
1434 * cp-demint.c (cplus_demangle_fill_component): Likewise.
1435
59727473
DD
14362004-01-12 Ian Lance Taylor <ian@wasabisystems.com>
1437
1438 * cp-demangle.c: Include "cp-demangle.h". If IN_GLIBCPP_V3 is
1439 defined, rename some functions which are to become static via
1440 #define.
1441 (CP_STATIC_IF_GLIBCPP_V3): Define.
1442 (struct d_operator_info): Move definition to cp-demangle.h, and
1443 rename to demangle_operator_info. Change all uses.
1444 (enum d_builtin_type_print): Move definition to cp-demangle.h.
1445 (struct d_builtin_type_info): Move definition to cp-demangle.h,
1446 and rename to demangle_builtin_type_info. Change all uses.
1447 (enum d_comp_type): Move definition to include/demangle.h, and
1448 rename to demangle_component_type, and change all enums to start
1449 with DEMANGLE_COMPONENT_ instead of D_. Change all uses.
1450 (struct d_comp): Move definition to include/demangle.h, and rename
1451 to demangle_component. Change all uses.
1452 (struct d_info): Move definition to cp-demangle.h.
1453 (cplus_demangle_fill_name): New function.
1454 (cplus_demangle_fill_extended_operator): New function.
1455 (cplus_demangle_fill_ctor): New function.
1456 (cplus_demangle_fill_dtor): New function.
1457 (d_make_empty): Remove type parameter. Change all callers.
1458 (d_make_name): Use cplus_demangle_fill_name.
1459 (d_make_extended_operator): Use
1460 cplus_demangle_fill_extended_operator.
1461 (d_make_ctor): Use cplus_demangle_fill_ctor.
1462 (d_make_dtor): Use cplus_demangle_fill_dtor.
1463 (cplus_demangle_mangled_name): Rename from d_mangled_name. Make
1464 non-static by default. Change all callers.
1465 (cplus_demangle_operators): Rename from d_operators. Change all
1466 uses. Make non-static by default. Add sentinel at end of array.
1467 (d_operator_name): Adjust initialization of high for new sentinel
1468 in cplus_demangle_operators.
1469 (cplus_demangle_builtin_types): Rename from d_builtin_types.
1470 Change all uses. Make non-static by default. Change initializer
1471 to use D_BUILTIN_TYPE_COUNT instead of magic number 26.
1472 (cplus_demangle_type): Rename from d_type. Make non-static by
1473 default. Change all callers.
1474 (cplus_demangle_init_info): Rename from d_init_info. Make
1475 non-static by default. Change all callers.
1476 * cp-demangle.h: New file.
1477 * cp-demint.c: New file.
1478 * Makefile.in: Rebuild dependencies.
1479 (CFILES): Add cp-demint.c.
1480 (REQUIRED_OFILES): Add cp-demint.o.
1481
1a79b024
DD
14822004-01-09 Kelley Cook <kcook@gcc.gnu.org>
1483
1484 * configure.in: Rename file to ...
1485 * configure.ac: ... this.
1486 * Makefile.in: Update a comment for above change.
1487 * README: Likewise.
1488 * config.in: Regenerate.
1489
820542c9
DD
14902004-01-02 Ian Lance Taylor <ian@wasabisystems.com>
1491
1492 * cp-demangle.c (d_encoding): When DMGL_PARAMS is not set, strip
1493 CV-qualifiers from D_COMP_LOCAL_NAME right subtree.
1494 * cplus-dem.c (demangle_arm_hp_template): Set DMGL_PARAMS when
1495 demangling template parameters.
1496 * testsuite/test-demangle.c (fail): New static function.
1497 (main): Support new options in input file: --no-params,
1498 --is-v3-ctor, and --is-v3-dtor.
1499 * testsuite/demangle-expected: Add --no-params to most tests, and
1500 add the correct result when parameters are not demangled. Add
1501 some simple tests for V3 constructor/destructor recognition.
1502
2f9c4058
DD
15032003-12-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1504
1505 * cp-demangle.c (is_ctor_or_dtor): Fix error in last change.
1506
4fd47f10
DJ
15072003-12-22 Daniel Jacobowitz <drow@mvista.com>
1508
1509 PR debug/13272
1510 * Makefile.in (lbasename.o): Depend on filenames.h.
1511 * lbasename.c: Include "filenames.h" instead of defining
1512 its macros locally.
1513
b6fb00c0
DD
15142003-12-22 Ian Lance Taylor <ian@wasabisystems.com>
1515
1516 * cp-demangle.c (CP_DYNAMIC_ARRAYS): Define if compiler supports
1517 dynamic arrays.
1518 (struct d_operator_info): Add len field.
1519 (struct d_builtin_type_info): Add len and java_len fields.
1520 (struct d_standard_sub_info): Add simple_len, full_len, and
1521 set_last_name_len fields.
1522 (struct d_comp): Add len field to s_string.
1523 (struct d_info): Add send, did_subs, and expansion fields.
1524 (d_append_string_constant): Define.
1525 (d_append_string): Remove. Change all users to use
1526 d_append_string_constant or d_append_buffer instead.
1527 (d_make_sub): Add len parameter. Change all callers.
1528 (d_name): Increase expansion when substituting std::.
1529 (d_unqualified_name): Increase expansion for an operator.
1530 (d_number): Don't use multiplication for negative numbers.
1531 (d_identifier): Make sure there are enough characters in the
1532 string for the specified length. Adjust expansion for an
1533 anonymous namespace.
1534 (d_operators): Initialize len field.
1535 (d_special_name, d_ctor_dtor_name): Increase expansion.
1536 (d_builtin_types): Initialize len and java_len fields.
1537 (d_type): Increase expansion for a builtin type.
1538 (d_cv_qualifiers): Increase expansion for each qualifier.
1539 (d_bare_function_type): Decrease expansion when removing single
1540 void parameter.
1541 (d_template_param): Increment did_subs.
1542 (d_expression): Increase expansion for an operator.
1543 (d_expr_primary): Decrease expansion for a type we will print
1544 specially.
1545 (standard_subs): Initialize new fields.
1546 (d_substitution): Increment did_subs when doing a normal
1547 substitution. Increase expansion for a special substitution.
1548 (d_print): Add estimate parameter. Change all callers.
1549 (d_print_comp) [D_COMP_NAME]: Handle C++ case inline.
1550 (d_print_comp) [D_COMP_BINARY]: Use length to avoid strcmp call.
1551 (d_print_java_identifier): Rename from d_print_identifier. Handle
1552 only Java case. Change caller.
1553 (d_init_info): Change return type to void. Change all callers.
1554 Initialize send, did_subs, and expansion fields. Do not
1555 initialize comps and subs fields.
1556 (d_demangle): Ifdef CP_DYNAMIC_ARRAYS, allocate comps and subs
1557 arrays on stack. Make an estimate of the length of the demangled
1558 name. Ifdef CP_DEMANGLE_DEBUG, print estimation failures.
1559 (is_ctor_or_dtor): Ifdef CP_DYNAMIC_ARRAYS, allocate comps and
1560 subs arrays on stack.
1561
2730f651
DD
15622003-12-20 Ian Lance Taylor <ian@wasabisystems.com>
1563
1564 * cp-demangle.c (d_identifier): In Java mode, skip an optional '$'
1565 after the identifier.
1566 * testsuite/demangle-expected: Add test case.
1567
d4edd112
DD
15682003-12-19 Ian Lance Taylor <ian@wasabisystems.com>
1569
1570 Fix for PR c++/13447:
1571 * cp-demangle.c (enum d_comp_type): Add D_COMP_LOCAL_NAME.
1572 (d_dump, d_make_comp): Handle D_COMP_LOCAL_NAME.
1573 (is_ctor_dtor_or_conversion): Handle D_COMP_LOCAL_NAME like
1574 D_COMP_QUAL_NAME.
1575 (is_ctor_or_dtor): Likewise.
1576 (d_local_name): Use D_COMP_LOCAL_NAME rather than
1577 D_COMP_QUAL_NAME.
1578 (d_print_comp) [D_COMP_LOCAL_NAME]: New.
1579 (d_prinT_comp) [D_COMP_TYPED_NAME]: If the left tree is
1580 D_COMP_LOCAL_NAME, pull any qualifiers off its right subtree.
1581 (d_print_mod_list): Handle D_COMP_LOCAL_NAME.
1582 * testsuite/demangle-expected: Add two test cases.
1583
1584 * cp-demangle.c (d_print_function_type): Clear the global modifier
1585 list when printing the modifiers, not just when printing the
1586 function parameters.
1587 * testsuite/demangle-expected: Add two test cases.
1588
d35d0cd4
DD
15892003-12-15 Ian Lance Taylor <ian@wasabisystems.com>
1590
1591 * cp-demangle.c (d_print_function_type): Print the function
1592 parameters with no modifiers.
1593 * testsuite/demangle-expected: Add test case.
1594
1595 * cp-demangle.c (d_demangle): If DMGL_PARAMS is not set, don't
1596 expect that we've read the entire string.
1597 (is_ctor_or_dtor): Don't expect that we've read the entire
1598 string--reverse patch of 2003-11-29.
1599
09e9708c
DD
16002003-12-15 Brendan Kehoe <brendan@zen.org>
1601
1602 * libiberty/Makefile.in (floatformat.o): Add dependency on
1603 config.h to accompany change of 2003-12-03.
1604
97ceaf5b
DD
16052003-12-15 Ian Lance Taylor <ian@wasabisystems.com>
1606
1607 Fix handling of constructor/destructor of standard substitution:
1608 * cp-demangle.c (struct d_standard_sub_info): Define.
1609 (d_substitution): Add prefix argument. Change all callers.
1610 Rework handling of standard substitutions to print full name when
1611 qualifying a constructor/destructor, or when DMGL_VERBOSE is set.
1612 * testsuite/demangle-expected: Add test case.
1613
1614 Fix handling of negative literal constants:
1615 * cp-demangle.c (enum d_comp_type): Add D_COMP_LITERAL_NEG.
1616 (d_dump, d_make_comp): Handle D_COMP_LITERAL_NEG.
1617 (d_expr_primary): Use D_COMP_LITERAL_NEG for a negative number.
1618 (d_print_comp): Handle D_COMP_LITERAL_NEG.
1619 * testsuite/demangle-expected: Add test case.
1620
858b45cf
DD
16212003-12-04 Ian Lance Taylor <ian@wasabisystems.com>
1622
1623 * cp-demangle.c (IS_UPPER, IS_LOWER): Define.
1624 (d_last_char): Define new macro.
1625 (d_make_name): Reject an empty name.
1626 (d_prefix, d_unqualified_name, d_type): Use new IS_* macros.
1627 (d_substitution, d_print_identifier): Likewise.
1628 (d_print_comp) [D_COMP_OPERATOR]: Likewise.
1629 (d_print_comp) [D_COMP_TEMPLATE]: Use new d_last_char macro.
1630 (d_print_mod) Use new d_last_char macro.
1631 (d_print_cast): Use new d_last_char macro.
1632 (is_ctor_or_dtor): Don't leak memory.
1633
1634 Fix handling of member function modifiers:
1635 * cp-demangle.c (enum d_comp_type): Add D_COMP_RESTRICT_THIS,
1636 D_COMP_VOLATILE_THIS, and D_COMP_CONST_THIS.
1637 (d_dump): Dump new d_comp_type values.
1638 (d_make_comp): Accept new d_comp_type values.
1639 (has_return_type): Only accept _THIS variants of qualifiers.
1640 (d_encoding): Without DMGL_PARAMS, only remove _THIS variants of
1641 qualifiers.
1642 (d_cv_qualifiers): Add member_fn parameter. Change all callers.
1643 (d_print_comp) [D_COMP_TYPED_NAME]: Rather than removing
1644 qualifiers and printing them at the end, add _THIS qualifiers to
1645 the modifier list.
1646 (d_print_comp) [D_COMP_*_THIS]: New cases.
1647 (d_print_comp) [D_COMP_PTRMEM_TYPE]: Remove special handling of
1648 qualifiers.
1649 (d_print_mod_list): Add suffix parameter. Change all callers.
1650 Keep walking the list even if the current modifier has been
1651 printed.
1652 (d_print_mod): Handle new _THIS qualifiers.
1653 (d_print_function_type): Handle new _THIS qualifiers when deciding
1654 whether to print a parenthesis. Put a space before the
1655 parenthesis in some cases. Call d_print_mod_list again at the
1656 end, passing suffix as 1.
1657 (is_ctor_or_dtor): Look for new _THIS qualifiers.
1658 * testsuite/demangle-expected: Add test case.
1659
1660 Fix for PR gcc/13304:
1661 * cp-demangle.c (d_print_comp) [D_COMP_TEMPLATE]: If the character
1662 before the '<' is itself a '<', insert a space.
1663 (d_print_cast): Likewise.
1664 * testsuite/demangle-expected: Add test case.
1665
1666 Fix for PR gcc/13244:
1667 * cp-demangle.c (d_print_comp) [D_COMP_BINARY]: Wrap an expression
1668 which uses the '>' operator in an extra layer of parens.
1669 * testsuite/demangle-expected: Add test case.
1670
b52927b7
DD
16712003-12-03 Ian Lance Taylor <ian@wasabisystems.com>
1672
1673 * floatformat.c: Include "config.h" and <string.h> if available.
1674 (INFINITY, NAN): Define if not defined by <math.h>.
1675 (floatformat_to_double): Handle NaN, infinity, and denormalized
1676 numbers.
1677 (floatformat_from_double): Likewise.
1678 (ieee_test): In debugging code, use little endian rather than big
1679 endian. Correct tests to handle NaN and to check correct sign of
1680 zero. Omit m68k extended test.
1681 (main): Add more debugging cases.
1682
24afc00d
DD
16832003-11-29 Ian Lance Taylor <ian@wasabisystems.com>
1684
1685 * cp-demangle.c (d_demangle): Only return success if we consumed
1686 the entire demangled string.
1687 (is_ctor_or_dtor): Likewise.
1688
1689 * testsuite/demangle-expected: Revert one part of 2003-06-26 patch
1690 to restore expected result of EDG test case to original expected
1691 result.
1692
331c3da2
DD
16932003-11-26 Ian Lance Taylor <ian@wasabisystems.com>
1694
1695 * cp-demangle.c (struct d_print_mod): Add templates field.
1696 (d_make_builtin_type): Check for NULL type.
1697 (d_make_extended_operator): Check for NULL name.
1698 (d_make_ctor, d_make_dtor): Likewise.
1699 (d_mangled_name): Add top_level parameter. Change all callers.
1700 (d_encoding): If DMGL_PARAMS is not set, strip off initial
1701 CV-qualifiers.
1702 (d_type): Check some return values we rely on.
1703 (d_bare_function_type, d_array_type): Likewise.
1704 (d_pointer_to_member_type, d_template_args): Likewise.
1705 (d_add_substitution): Fail if argument is NULL.
1706 (d_print_resize): Check whether buf is NULL.
1707 (d_print_comp): Save current templates list with each modifier.
1708 Don't pass the modifier list down when printing a template.
1709 (d_print_cast): Don't pass the modifier list down when printing a
1710 template.
1711 (d_print_mod_list): Temporarily set templates list while printing
1712 a modifier.
1713 (d_print_mod): Check that buf is not NULL before using it.
1714 (d_print_function_type): Print parens if there is no modifier.
1715 (d_init_info): Permit as many substitutions as there are
1716 characters in the mangled name.
1717 * testsuite/demangle-expected: Add two new test cases.
1718
51948b34
DD
17192003-11-25 Ian Lance Taylor <ian@wasabisystems.com>
1720
1721 * cp-demangle.c (java_demangle_v3): Pass DMGL_PARAMS to
1722 d_demangle.
1723
6d95373e
DD
17242003-11-22 Ian Lance Taylor <ian@wasabisystems.com>
1725
1726 * cp-demangle.c (d_encoding): Add top_level parameter. Change all
1727 callers.
1728 (print_usage): Display new -p option.
1729 (long_options): Add --no-params.
1730 (main): Accept and handle -p.
1731
54a962d9
DD
17322003-11-21 Ian Lance Taylor <ian@wasabisystems.com>
1733
1734 * cp-demangle.c (has_return_type): Skip qualifiers when checking
1735 whether we have a template.
1736 * testsuite/demangle-expected: Add four new tests.
1737
8fe0d347
DD
17382003-11-20 Ian Lance Taylor <ian@wasabisystems.com>
1739
1740 * testsuite/demangle-expected: Minor changes to match output of
1741 new demangler: adjust whitespace in four tests, and change order
1742 of qualifiers in one test.
1743
1744 * cp-demangle.c: Complete rewrite.
1745
dd9d4b48
DD
17462003-11-19 Mark Mitchell <mark@codesourcery.com>
1747
1748 * cp-demangle.c (demangle_type): Correct thinko in substitution
1749 processing.
1750
0976f6a7
DD
17512003-11-18 Ian Lance Taylor <ian@wasabisystems.com>
1752
1753 * cp-demangle.c (demangle_operator_name): Remove space before
1754 "sizeof".
1755 (demangle_type_ptr): Put qualifiers in the right place. Handle
1756 qualifiers in pointer to member specially.
1757 (demangle_type): Handle qualifiers for pointer or reference
1758 specially. Handle function type.
1759 (demangle_local_name): Save and restore caret around demangling of
1760 initial encoding.
1761
1762 * testsuite/test-demangle.c (main): Don't pass DMGL_VERBOSE to
1763 cplus_demangle.
1764
1765 * testsuite/Makefile.in (test-demangle): Depend upon libiberty.a.
1766
e7e6980b
DD
17672003-10-31 Andreas Jaeger <aj@suse.de>
1768
1769 * floatformat.c (floatformat_always_valid): Add unused attribute.
1770
97ceaf5b
DD
17712003-10-30 Josef Zlomek <zlomekj@suse.cz>
1772
1773 Jan Hubicka <jh@suse.cz>
1774 * vasprintf.c (int_vasprintf): Pass va_list by value.
1775 Use va_copy for copying va_list.
1776 (vasprintf): Pass va_list by value.
1777
686e72d7
DD
17782003-10-30 Josef Zlomek <zlomekj@suse.cz>
1779
1780 * hashtab.c (htab_find_slot_with_hash): Decrease n_deleted
1781 instead of increasing n_elements when inserting to deleted slot.
1782
eec65ede
JB
17832003-10-20 J. Brobecker <brobecker@gnat.com>
1784
1785 * cplus-dem.c (demangle_template): Register a new Btype only
1786 when needed.
1787 * testsuite/demangle-expected: Add a new test.
1788
cd275bff
L
17892003-10-16 H.J. Lu <hongjiu.lu@intel.com>
1790
1791 * testsuite/demangle-expected: Update the expected output of
1792 _GLOBAL__I__Z2fnv.
1793
e3b1168e
DJ
17942003-10-02 Daniel Jacobowitz <drow@mvista.com>
1795
1796 * strerror.c: Revert last change. Declare static sys_nerr
1797 and sys_errlist using different names.
1798
efb150d5
DJ
17992003-10-01 Daniel Jacobowitz <drow@mvista.com>
1800
1801 * strerror.c: Don't provide or reference sys_errlist if
1802 strerror is available.
1803
b7ca9213
L
18042003-10-01 H.J. Lu <hongjiu.lu@intel.com>
1805
1806 * configure.in: Check if $MAKEINFO is missing.
1807 * configure: Regenerated.
1808
8ddbb593
DJ
18092003-09-24 Daniel Jacobowitz <drow@mvista.com>
1810
1811 * configure.in: Use AC_PROG_CPP_WERROR.
1812 * configure: Regenerated.
1813
5324d185
AC
18142003-09-22 Andrew Cagney <cagney@redhat.com>
1815
1816 * floatformat.c (floatformat_i387_ext_is_valid): New function.
1817 (floatformat_always_valid): New function.
1818 (floatformat_i387_ext): Initialize new "is_valid" field to
1819 "floatformat_i387_ext_is_valid".
1820 (floatformat_ieee_single_little): Initialize "is_valid" field to
1821 floatformat_always_valid.
1822 (floatformat_ieee_double_big): Ditto.
1823 (floatformat_ieee_double_little): Ditto.
1824 (floatformat_ieee_double_little): Ditto.
1825 (floatformat_ieee_double_littlebyte_bigword): Ditto.
1826 (floatformat_i960_ext): Ditto.
1827 (floatformat_m88110_ext): Ditto.
1828 (floatformat_m88110_harris_ext): Ditto.
1829 (floatformat_arm_ext_big): Ditto.
1830 (floatformat_arm_ext_littlebyte_bigword): Ditto.
1831 (floatformat_ia64_spill_big): Ditto.
1832 (floatformat_ia64_spill_little): Ditto.
1833 (floatformat_ia64_quad_big): Ditto.
1834 (floatformat_ia64_quad_little): Ditto.
1835 (floatformat_ia64_quad_little): Ditto.
1836 (floatformat_is_valid): Call "is_valid".
1837
34f4a113
AC
18382003-09-15 Andrew Cagney <cagney@redhat.com>
1839
1840 * floatformat.c (get_field): Make "data" constant.
1841 (floatformat_is_valid, floatformat_to_double): Make "from"
1842 constant, fix casts.
1843 (floatformat_from_double): Make "from" constant.
1844
3f2aacaf
DJ
18452003-09-15 Daniel Jacobowitz <drow@mvista.com>
1846
1847 * floatformat.c (floatformat_is_valid): New function.
1848 (get_field, put_field): Correct comments.
1849
aae66b9f
DD
18502003-09-06 Josef Zlomek <zlomekj@suse.cz>
1851
1852 * fibheap.c (fibheap_replace_key_data): Change type of OKEY to
1853 FIBHEAPKEY_T.
1854
60b04ee8
DD
18552003-09-02 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
1856
1857 PR bootstrap/12100
1858 * aclocal.m4 (AC_LANG_FUNC_LINK_TRY): Define.
1859 * configure: Rebuilt.
1860
2299a76d
DJ
18612003-08-27 Daniel Jacobowitz <drow@mvista.com>
1862
1863 * aclocal.m4: Include acx.m4 and no-executables.m4.
1864 (libiberty_AC_FUNC_STRNCMP): Use AC_LIBOBJ.
1865 (LIB_AC_PROG_CC): Remove.
1866 * configure.in: Update AC_PREREQ to 2.57. Use GCC_NO_EXECUTABLES.
1867 Use AC_PROG_CC and set ac_libiberty_warn_cflags instead of using
1868 LIB_AC_PROG_CC. Use AC_LIBOBJ. Call AC_ISC_POSIX later, only if
1869 performing link tests.
1870 * configure: Regenerated.
1871
9ad1aa29
DD
18722003-08-12 Nathanael Nerode <neroden@gcc.gnu.org>
1873
a21da8bf 1874 * cp-demangle.c: Clarify what package(s) this is part of.
9ad1aa29 1875
dbb9d0f3
DD
18762003-07-05 Danny Smith <dannysmith@users.sourceforge.net>
1877
1878 * pex-win32.c (pexecute): Mark parameters this_pname and
1879 temp_base as unused. Remove unused variables retries,
1880 sleep_interval. Initialize org_stdin, org_stdout.
1881 (pwait): Mark parameter flags as unused.
1882
18832003-07-02 Danny Smith <dannysmith@users.sourceforge.net>
ab8c7bb1
DD
1884
1885 * pex-win32.c (fix_argv): Ensure that the executable pathname
1886 uses Win32 backslashes.
1887 (pexecute): Cast away constness when assigning *errmsg_arg.
1888
78c5b0a5
L
18892003-06-26 H.J. Lu <hongjiu.lu@intel.com>
1890
1891 * testsuite/demangle-expected: Add more GNU V3 testcases.
1892
70ecf948
DD
18932003-06-22 Zack Weinberg <zack@codesourcery.com>
1894
1895 * safe-ctype.c: Use HOST_CHARSET_ASCII and HOST_CHARSET_EBCDIC,
1896 not HC_ASCII and HC_EBCDIC.
1897 Add documentation in form expected by gather-docs.
1898 * hex.c: Use HOST_CHARSET, not hand-coded check of character set.
1899 * Makefile.in, functions.texi: Regenerate.
1900
cbc0188b
DD
19012003-06-21 Zack Weinberg <zack@codesourcery.com>
1902
1903 * safe-ctype.c: Separate out EOF==-1 check. Use HOST_CHARSET
1904 for charset determination.
1905
5f73c378
DD
19062003-06-19 Dara Hazeghi <dhazeghi@yahoo.com>
1907
1908 * configure.in: Add check for malloc.h needed by
1909 m68k for function free().
1910 * configure: Regenerated.
1911 * config.in: Add HAVE_MALLOC_H.
1912 * hashtab.c: include malloc.h were available for
1913 free().
1914
e69f6c8c 19152003-06-09 Albert Chin-A-Young <china@thewrittenword.com>
cbc0188b 1916
e69f6c8c
DD
1917 PR bootstrap/10974
1918 * physmem.c: Update comment.
1919 * configure.in: Modify test for _system_configuration for older
1920 AIX systems.
1921
1922 * config.in, configure: Regenerated.
cbc0188b 1923
54c60684
DD
19242003-06-05 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
1925
1926 PR other/10810
1927 * test-demangle.c (getline): Fix fence-post error.
1928
5a4e47bd
NC
19292003-06-03 Nick Clifton <nickc@redhat.com>
1930
1931 * asprintf.c: Change comment to note that -1 is returned upon
1932 error.
1933 * vasprintf.c: Likewise.
1934 (vasprintf): Return -1 upon error.
1935 * functions.texi: Document changes to asprintf and vasprintf.
1936
916f5d13
DD
19372003-05-19 Kelley Cook <kelleycook@wideopenwest.com>
1938
1939 * config.table: Accept i[345867]86 variant.
1940
e4f79046
JB
19412003-05-15 Jim Blandy <jimb@redhat.com>
1942
1943 * hex.c (_hex_value): Make this unsigned.
1944 (hex_value): Update documentation for new return type. hex_value
1945 now expands to an unsigned int expression, to avoid unexpected
1946 sign extension when we store it in a bfd_vma, which is larger than
1947 int on some platforms.
1948 * functions.texi: Regenerated.
1949
0f3538e7
DD
19502003-05-07 Josef Zlomek <zlomekj@suse.cz>
1951
1952 * splay-tree.c (splay_tree_predecessor): Fix comment.
1953 (splay_tree_successor): Fix comment.
1954
7108c5dc
JM
19552003-05-07 Jason Merrill <jason@redhat.com>
1956
eafaf5eb 1957 * hashtab.c (iterative_hash): New fn.
7108c5dc
JM
1958 * configure.in: Add AC_C_BIGENDIAN_CROSS.
1959 * aclocal.m4: Include accross.m4.
1960 * configure, config.in: Regenerate.
1961
0b555173
DD
19622003-05-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1963
1964 * configure.in (AC_CHECK_FUNCS): Don't make multiple calls.
1965 * configure: Regenerate.
1966
8730135a
DD
19672003-05-03 Carlo Wood <carlo@alinoe.com>
1968
1969 * cp-demangle.c: Fix typo in "char_traints" string-literal.
1970
341eccbc
DD
19712003-04-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1972
1973 * vsnprintf.c (vsnprintf): Don't pad string with extra nulls.
1974 (main): Test that we don't write too much data.
1975
2ed1e5cc
DD
19762003-04-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1977
1978 * configure.in (funcs, AC_CHECK_FUNCS): Add snprintf and
1979 vsnprintf.
1980 * snprintf.c, vsnprintf.c: New files.
1981 * Makefile.in (CFILES): Add snprintf.c and vsnprintf.c.
1982 (CONFIGURED_OFILES): Add snprintf.o and vsnprintf.o.
1983 Regenerate dependencies.
1984
1985 * functions.texi, configure, config.in: Regenerated.
1986
10b57b38
DD
19872003-04-15 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1988
1989 * mempcpy.c, stpcpy.c, stpncpy.c: New files.
1990 * configure.in (funcs, AC_CHECK_FUNCS): Add mempcpy, stpcpy
1991 and stpncpy.
1992 * Makefile.in (CFILES): Add mempcpy.c, stpcpy.c and stpncpy.c.
1993 (CONFIGURED_OFILES): Add mempcpy.o, stpcpy.o and stpncpy.o.
1994 Regenerate dependencies.
1995
1996 * functions.texi, configure, config.in: Regenerated.
1997
ff773b85
DD
19982003-04-15 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1999
2000 * argv.c: Fix comments.
2001 * calloc.c: Don't unnecessarily include "libiberty.h".
2002 (bzero): Add prototype.
2003 * floatformat.c: Include "ansidecl.h", rely on ANSI_PROTOTYPES.
2004 * getcwd.c (getcwd): Use standard definition to avoid conflicts
2005 with system headers.
2006 * hashtab.c (htab_traverse): Delete unused variables.
2007 * rename.c: Include "ansidecl.h".
2008 (rename): Use standard definition to avoid conflicts with system
2009 headers.
2010 * strsignal.c: Rely on ANSI_PROTOTYPES.
2011 * strstr.c: Check GNUC >= 2, not GNUC == 2.
2012 * vfprintf.c: Include "ansidecl.h", rely on ANSI_PROTOTYPES.
2013 * vprintf.c: Include "ansidecl.h" earlier, rely on
2014 ANSI_PROTOTYPES.
2015 * vsprintf.c: Include "ansidecl.h" earlier, rely on
2016 ANSI_PROTOTYPES and possibly include <stdarg.h>.
cbc0188b 2017
ff773b85
DD
2018 * Makefile.in: Regenerate dependencies.
2019
bb325820
DD
20202003-04-15 DJ Delorie <dj@redhat.com>
2021
2022 * maint-tool (deps): Scan for headers in $srcdir also.
2023
258a4893
DD
20242003-04-15 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2025
2026 PR target/10338
2027 PR bootstrap/10198
2028 PR bootstrap/10140
2029 * getopt.c (exchange, _getopt_initialize): Use mempcpy not
2030 __mempcpy.
2031 * regex.c (regerror): Likewise.
2032
ff773b85
DD
20332003-04-14 Roger Sayle <roger@eyesopen.com>
2034
2035 * argv.c: Use ANSI_PROTOTYPES instead of __STDC__.
2036 * memchr.c: Likewise.
2037 * strcasecmp.c: Likewise.
2038 * strncasecmp.c: Likewise.
2039 * strncmp.c: Likewise.
2040 * xatexit.c: Likewise.
2041 * xmalloc.c: Likewise.
2042
2043 * copysign.c: Use traditional function declaration instead of DEFUN.
2044 * sigsetmask.c: Likewise.
2045
2046 * memcmp.c: Both of the above, ANSI_PROTOTYPES and DEFUN.
2047 * memset.c: Likewise.
2048
2049 * memcpy.c: ANSI_PROTOTYPES, DEFUN and prototype bcopy.
2050 * memmove.c: Likewise.
2051
eec539c7
DD
20522003-04-14 Roger Sayle <roger@eyesopen.com>
2053
2054 * strdup.c (strdup): Tweak implementation to use memcpy.
2055
daf7c4ad
DD
20562003-04-14 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2057
2058 * configure.in (HAVE_UINTPTR_T): Always define.
2059 * configure: Regenerated.
2060
aa072e59
AO
20612003-03-23 Alexandre Oliva <aoliva@redhat.com>
2062
2063 * Makefile.in (MULTIOSDIR): New macro. Use $(CC) $(LIBCFLAGS)
2064 instead of $$CC alone.
2065 (install_to_tooldir): Use it.
2066
f77ed96c
DD
20672003-17-03 Jan Hubicka <jh@suse.cz>
2068
2069 * hashtab.c (htab_traverse_noresize): Break out from ...
2070 * hashtab.c (htab_traverse): ... here.
2071
2336e177
DD
20722003-12-03 Jan Hubicka <jh@suse.cz>
2073
2074 * hashtab.c (htab_expand): Fix warning.
2075
2076 * hashtab.c (htab_expand): Compute the size of hashtable based
2077 on the number of elements actually used.
2078 (htab_traverse): Call htab_expand when table is too empty.
2079
d8cbbf95
DD
20802003-03-11 Carlo Wood <carlo@gnu.org>
2081
2082 * cplus-dem.c (demangle_integral_value): Correction to reflect
2083 patch of 2002-01-10 in order to also make negative multi-digits
2084 without leading underscore work.
2085
a01fefeb
DD
20862003-03-03 Mark Mitchell <mark@codesourcery.com>
2087
2088 * cplus-dem.c: Add license exception to copyright notice.
2089
638ceb1a
DD
20902003-02-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2091
2092 * physmem.c: Formatting changes from upstream.
2093
ef803806
DD
20942003-02-24 Danny Smith <dannysmith@users.source.forge.net>
2095
2096 * physmem.c (physmem_total): Add _WIN32 support.
2097 (physmem_available): Likewise.
2098
181fa229
DD
20992003-02-24 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
2100
2101 * physmem.c (physmem_total) [HAVE_GETSYSINFO]: Test for
2102 GSI_PHYSMEM.
2103 (physmem_available) [HAVE_TABLE]: Test for TBL_VMSTATS.
2104
cc529274
DD
21052003-02-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2106
2107 * configure.in: Check for sys/systemcfg.h and
2108 _system_configuration.
2109 * physmem.c: Add support for AIX. Tweek formatting as per
2110 upstream coreutils beta.
2111
21122003-02-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2113 Richard Earnshaw <rearnsha@arm.com>
2114 Geoffrey Keating <geoffk@apple.com>
cbc0188b 2115
cc529274
DD
2116 * configure.in: Check for sys/sysctl.h and sysctl.
2117 * physmem.c: Add support for *bsd and darwin.
2118 * Makefile.in: Generate depedency for physmem.o.
2119
192cbe66
DD
21202003-02-21 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
2121
2122 * physmem.c (physmem_total) [HAVE_GETSYSINFO]: Use getsysinfo on
2123 Tru64 UNIX.
2124 (physmem_available) [HAVE_TABLE && HAVE_SYS_TABLE_H]: Use table on
2125 Tru64 UNIX.
2126
2127 * configure.in (AC_CHECK_HEADERS): Check for sys/sysinfo.h,
2128 machine/hal_sysinfo.h, sys/table.h.
2129 (checkfuncs, AC_CHECKFUNCS): Check for getsysinfo, table.
2130 * configure, config.in: Regenerate.
2131
ff773b85
DD
21322003-02-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2133
2134 * configure.in: Check for sys/sysmp.h and sysmp.
2135 * physmem.c: Pull upstream copy, add support for irix6.
2136
2137 * config.in, configure: Regenerated.
2138
900d2082
DD
21392003-02-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2140
2141 * physmem.c (physmem_total, physmem_available): De-ANSI-fy.
2142 * configure.in (AC_CHECK_FUNCS): Add pstat_getstatic and
2143 pstat_getdynamic.
cbc0188b 2144
4938384a
DD
21452003-02-20 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2146
2147 * Makefile.in (CFILES): Add physmem.c.
2148 (REQUIRED_OFILES): Add physmem.o.
2149 * configure.in: Check for sys/pstat.h.
2150 (checkfuncs): Add pstat_getstatic and pstat_getdynamic.
2151 * physmem.c: New file, copied from textutils.
2152
2153 * config.in, configure: Regenerated.
2154
ba61a412
DJ
21552003-02-20 Daniel Jacobowitz <drow@mvista.com>
2156
2157 * Makefile.in (CFILES): Add lrealpath.c.
2158 (REQUIRED_OFILES): Add lrealpath.o.
2159 (lrealpath.o): Add rule.
2160 * aclocal.m4 (libiberty_NEED_DECLARATION): Add.
2161 * configure.in: Add realpath and canonicalize_file_name to
2162 checkfuncs and AC_CHECK_FUNCS. Use libiberty_NEED_DECLARATION
2163 for canonicalize_file_name.
2164 * lrealpath.c: New file.
2165 * make-relative-prefix.c: Update documentation.
2166 (make_relative_prefix): Simplify. Use lbasename and lrealpath.
2167 * config.in: Regenerated.
2168 * configure: Regenerated.
2169 * functions.texi: Regenerated.
2170
25dfe0ac
DD
21712003-02-20 jmc <jmc@prioris.mini.pw.edu.pl>
2172
2173 * cplus_dem.c: Fix typo: intializes -> initializes.
2174
8b90eef4
AO
21752003-02-20 Alexandre Oliva <aoliva@redhat.com>
2176
2177 * configure.in: Propagate ORIGINAL_LD_FOR_MULTILIBS to
2178 config.status.
2179 * configure: Rebuilt.
2180
fcd7c7c9
DD
21812003-02-13 Daniel Jacobowitz <drow@mvista.com>
2182
2183 Fix PR c++/7612.
2184 * cplus-dem.c (demangle_signature): Call string_delete.
2185 Remove extra string_init.
2186 (demangle_arm_hp_template): Call string_delete instead of
2187 string_clear. Add missing string_delete call.
2188 (demangle_qualified): Add missing string_delete call.
2189 (do_type): Remove unused variable btype. Add missing string_delete
2190 call. Call string_delete instead of string_clear.
2191 (demangle_fund_type): Move variable btype inside of the switch
2192 statement. Add missing string_delete call.
2193 (do_arg): Call string_delete instead of string_clear. Remove extra
2194 string_init.
2195 (demangle_nested_args): Free work->previous_argument.
2196
073c427b
DD
21972003-02-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2198
2199 * acconfig.h: New file. Add uintptr_t.
2200 * config.in: Regenerated.
2201
f8bd3000
DD
22022003-02-04 Joseph S. Myers <jsm@polyomino.org.uk>
2203
2204 * libiberty.texi: Update to GFDL 1.2.
2205
85b9a938
DD
22062003-01-30 Christian Cornelssen <ccorn@cs.tu-berlin.de>
2207
2208 * Makefile.in (libiberty_topdir): New subst.
2209 (mkinstalldirs): Redefine in terms of the above.
2210 * configure.in: AC_SUBST it.
2211 * configure: Regenerate.
2212
578460f2
AO
22132003-01-28 Christian Cornelssen <ccorn@cs.tu-berlin.de>
2214
2215 * Makefile.in (all-subdir, check-subdir, installcheck-subdir)
2216 (info-subdir, install-info-subdir, clean-info-subdir)
2217 (dvi-subdir, install-subdir, etags-subdir, mostlyclean-subdir)
2218 (clean-subdir, distclean-subdir, maintainer-clean-subdir):
2219 Pass $(FLAGS_TO_PASS).
2220
7f285245
AO
22212003-01-27 Alexandre Oliva <aoliva@redhat.com>
2222
2223 * Makefile.in (install_to_tooldir): Instead of $(MULTISUBDIR), use
2224 /`$$CC -print-multi-os-directory`.
2225
5f9624e3
DJ
22262003-01-26 Daniel Jacobowitz <drow@mvista.com>
2227
2228 * hashtab.c (htab_create_alloc_ex): New function.
2229 (hatab_set_functions_ex): New function.
2230 (htab_delete, htab_expand): Support alternate allocation functions.
2231
9c2259b8
DD
22322003-01-24 Christopher Faylor <cgf@redhat.com>
2233
2234 * configure.in: Remove special pex-cygwin consideration.
2235 * configure: Regenerate.
2236 * pex-cygwin.c: Remove.
2237 * Makefile.in: Remove pex-cygwin.[co] lines.
2238
5a17353c
DD
22392003-01-24 Zack Weinberg <zack@codesourcery.com>
2240
2241 * Makefile.in (CFILES): Add pex-*.c.
2242 (REQUIRED_OFILES): Change pexecute.o to @pexecute@
2243 (CONFIGURED_OFILES): Add pex-*.o.
2244 (TEXIFILES): Add pexecute.txh.
2245 (pexecute.o): Delete rule.
2246 (pex-cygwin.o, pex-djgpp.o, pex-mpw.o, pex-msdos.o, pex-os2.o,
2247 pex-unix.o, pex-win32.o): New rules.
2248 * configure.in: Change AC_INIT argument to xmalloc.c.
2249 Compute appropriate pexecute implementation and substitute it
2250 as @pexecute@.
2251
2252 * pexecute.c: Split up into...
2253 * pex-cygwin.c, pex-djgpp.c, pex-mpw.c, pex-msdos.c, pex-os2.c,
2254 pex-unix.c, pex-win32.c, pex-common.h, pexecute.txh: ... these
2255 new files.
2256
2257 * functions.texi: Regenerate.
2258 * configure: Regenerate.
2259
eed2b28c
DD
22602003-01-20 Josef Zlomek <zlomekj@suse.cz>
2261
2262 * hashtab.c (htab_expand): Fix allocation of new entries.
2263
27a39a5f
DD
22642003-01-09 Christian Cornelssen <ccorn@cs.tu-berlin.de>
2265
2266 * Makefile.in (FLAGS_TO_PASS): Also pass DESTDIR.
2267
2268 * Makefile.in (install_to_libdir, install_to_tooldir): Add a
2269 mkinstalldirs command.
2270
b51c1553
DD
22712002-12-04 Danny Smith <dannysmith@users.sourceforge.net>
2272
2273 * make-relative-prefix.c (HAVE_HOST_EXECUTABLE_SUFFIX):
2274 Define for hosts with HOST_EXECUTABLE_SUFFIX.
2275
756954c3
DD
22762002-11-24 Nick Clifton <nickc@redhat.com>
2277
2278 * make-relative-prefix.c (make_relative_prefix): Ensure return
2279 string is empty before using strcat to construct it.
2280
2a80c0a4
DD
22812002-11-22 Daniel Jacobowitz <drow@mvista.com>
2282
2283 * Makefile.in: Add make-relative-prefix.c.
2284 * make-relative-prefix.c: New file.
2285 * functions.texi: Rebuilt.
2286
768b20d8
JJ
22872002-11-16 Jakub Jelinek <jakub@redhat.com>
2288
2289 * md5.c (md5_process_block): Avoid `function-like macro "F{G,H,I}" must be
2290 used with arguments in traditional C' warnings.
2291
f52d1d64
JJ
22922002-10-16 Jakub Jelinek <jakub@redhat.com>
2293
2294 * config.table: Use mh-s390pic for s390x too.
2295
0d3deb8d
DD
22962002-10-06 Andreas Jaeger <aj@suse.de>
2297
2298 * libiberty/cplus-dem.c (ada_demangle): Get rid of unneeded
2299 variable and of strict-aliasing warning.
2300 (grow_vect): Use char as first parameter.
2301
1b67de92
DD
23022002-09-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2303
2304 * Makefile.in (all): Fix multilib parallel build.
2305
585cc78f
DD
23062002-09-19 John David Anglin <dave@hiuly1.hia.nrc.ca>
2307
2308 * cp-demangle.c (demangling_new): Cast 0 to enum.
2309 (demangle_char): Cast return of strdup to char *.
2310 (is_gnu_v3_mangled_ctor): Cast 0 to enum.
2311 (is_gnu_v3_mangled_dtor): Likewise.
2312 * cplus-dem.c (grow_vect): Cast return of xrealloc to void *.
2313 (work_stuff_copy_to_from): Cast return of xmalloc to char **.
2314 * fibheap.c (fibnode_new): Cast return of xcalloc to fibnode_t.
2315 * md5.c (md5_process_bytes): Cast results back to const void *.
2316 (md5_process_block): Add cast to const md5_uint32 *.
2317 * regex.c (re_compile_fastmap): Cast enum to UCHAR_T.
2318 * safe-ctype.c (L, XL, U, XU, D, P, _, C, Z, M, V, T, S): Add cast to
2319 unsigned short.
2320 * splay-tree.c (splay_tree_xmalloc_allocate): Cast return of xmalloc
2321 to void *.
2322 * vasprintf.c (int_vasprintf): Cast return of malloc to char *.
2323
e21b0cc1
NC
23242002-09-19 Nick Clifton <nickc@redhat.com>
2325
2326 * README: Update email addresses for bugs and patches.
2327
a54ba43f
DD
23282002-09-10 Mike Stump <mrs@apple.com>
2329
2330 * splay-tree.c (splay_tree_successor): Fix comments.
2331
23322002-09-11 Zack Weinberg <zack@codesourcery.com>
2333
2334 * cplus-dem.c: Code under #ifdef MAIN moved to gcc/cp/cxxfilt.c.
2335 * testsuite/Makefile.in: Adjust for test-demangle.
2336 * testsuite/regress-demangle: Deleted.
2337 * testsuite/test-demangle.c: New file.
2338 * testsuite/demangle-expected: Change \$ to $ throughout, now that
2339 this file is not being read by a shell script.
2340
01cea699
DD
23412002-09-05 Roger Sayle <roger@eyesopen.com>
2342
2343 * regex.c: Only use "#pragma alloca" on AIX when not using gcc.
2344
a2832523
DD
23452002-08-07 DJ Delorie <dj@redhat.com>
2346
2347 * regex.c (re_error_msgid): Just use a simple array of strings.
2348 (re_compile_pattern): Compensate.
2349 (re_comp): Likewise.
2350 (re_comp): Likewise.
2351 (regerror): Likewise.
2352
1e3f0be0
DD
23532002-07-29 Neil Booth <neil@daikokuya.co.uk>
2354
2355 * cplus-dem.c (PREPEND_BLANK): Remove.
2356
b851d07b
DD
23572002-07-10 Jason Merrill <jason@redhat.com>
2358
2359 * cp-demangle.c (demangle_identifier): Support extended Unicode
2360 characters.
2361
2a9dffbf
DD
23622002-07-08 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2363
2364 * cp-demangle.c (demangle_v3_with_details): Wrap in
2365 !defined IN_GLIBCPP_V3.
2366
793011ca
DD
23672002-07-01 Mark Mitchell <mark@codesourcery.com>
2368
2369 * cp-demangle.c (demangle_operator_name): Add type_arg parameter.
2370 Set it for the "st" operator.
2371 (demangle_expression): Handle expressions with types as arguments.
2372
b39b76b8
DD
23732002-06-30 Douglas Rupp <rupp@gnat.com>
2374
2375 * configure.in (OUTPUT_OPTION,NO_MINUS_C_MINUS_O): Configure.
2376 * Makefile.in (OUTPUT_OPTION): Use.
2377
4748c6d8
DD
23782002-06-22 Peter Breitenlohner <peb@mppmu.mpg.de>
2379
2380 * Makefile.in (install_to_libdir): Add $(DESTDIR).
2381 (install_to_tooldir): Likewise.
2382
f9c3326a
DD
23832002-06-17 Douglas Rupp <rupp@gnat.com>
2384
2385 * lbasename.c: Add 2002 to copyright.
2386 (IS_DIR_SEPARATOR): Remove VMS junk.
2387
18893690
DD
23882002-06-05 Geoffrey Keating <geoffk@redhat.com>
2389
2390 * hashtab.c (htab_create): New stub function for backward
2391 compatibility.
2392 (htab_try_create): Likewise.
2393
23942002-06-03 Geoffrey Keating <geoffk@redhat.com>
2395
2396 * hashtab.c (htab_create): Delete.
2397 (htab_try_create): Delete.
2398 (htab_create_alloc): New.
2399 (htab_delete): Support user-specified memory allocation.
2400 (htab_expand): Likewise.
2401
24022002-05-22 Roman Lechtchinsky <rl@cs.tu-berlin.de>
2403
2404 * configure.in: Fix typo in the code checking for sys_errlist.
2405 * configure: Regenerated.
2406
9296c8b2
DD
24072002-05-13 Andreas Schwab <schwab@suse.de>
2408
2409 * config.table: Use mh-x86pic also for x86-64.
2410
52d98c2d
DD
24112002-05-08 Alexandre Oliva <aoliva@redhat.com>
2412
2413 * configure.in (ORIGINAL_LD_FOR_MULTILIBS): Preserve LD at
2414 script entry, and set LD to it when configuring multilibs.
2415 * configure: Rebuilt.
2416
cafa3917
DD
24172002-05-07 Mark Mitchell <mark@codesourcery.com>
2418
2419 * configure.in (AC_TYPE_PID_T): Use it.
2420 * configure: Regenerated.
2421 * getruntime.c: Include <sys/types.h>.
2422 * waitpid.c: Likewise. Use pid_t, not int, as the type of "pid".
2423
b1c933fc
RH
24242002-04-09 Richard Henderson <rth@redhat.com>
2425
2426 * hashtab.c (higher_prime_number): Use 7 as minimum.
2427 (find_empty_slot_for_expand): Don't compute hash2 unless needed.
2428 (htab_find_slot_with_hash): Likewise.
2429
0c4460bb
DD
24302002-04-01 Phil Edwards <pme@gcc.gnu.org>
2431
2432 * cp-demangle.c (__cxa_demangle): Also protect with IN_GLIBCPP_V3.
2433 (is_gnu_v3_mangled_ctor, is_gnu_v3_mangled_ctor): Conditionally
2434 not compile if IN_GLIBCPP_V3 defined.
2435 * dyn-string.c: Also allow IN_GLIBCPP_V3 to change allocation scheme.
2436
f2160d2b
DD
24372002-03-30 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
2438
3ebf1f59 2439 * cp-demangle.c (java_demangle_v3): Don't try to release "demangled"
f2160d2b
DD
2440 if it is NULL.
2441
7dd4d42a
DD
24422002-03-27 DJ Delorie <dj@redhat.com>
2443
2444 * hex.c: Add documentation.
2445 (_hex_value): Provide non-ASCII empty table.
2446 (hex_init): Initialize the non-ASCII table.
2447 * functions.texi: Regenerate.
2448
38e57a35
DD
24492002-03-27 Mark Mitchell <mark@codesourcery.com>
2450
2451 * dyn-string.c: Add libgcc exception to copyright notice.
2452
cfed0715
DD
24532002-03-26 H.J. Lu (hjl@gnu.org)
2454
2455 * config.table: Support --with-build-subdir.
2456 * configure.in: Likewise.
2457 * configure: Rebuild.
2458
1504972f
DD
24592002-03-18 Stuart Griffith <Stuart_Griffith@credence.com>
2460
2461 * strtod.c (strtod): Increment 8 chars, not 7, when `infinity'
2462 seen.
2463
35efcd67
DD
24642002-03-12 Mark Mitchell <mark@codesourcery.com>
2465
2466 * cp-demangle.c: Add libgcc exception to cp-demangle.c copyright
2467 notice.
2468
dabc64ea
DD
24692002-03-11 Douglas B Rupp <rupp@gnat.com>
2470
2471 * xatexit.c [VMS]: Include stdlib.h and unixlib.h.
2472
3ddbd84c
JB
24732002-03-06 Jim Blandy <jimb@redhat.com>
2474
2475 * splay-tree.c (splay_tree_xmalloc_allocate,
2476 splay_tree_xmalloc_deallocate): Use K&R-style definitions, not
2477 prototyped definitions. Mark `data' arguments as unused.
2478
efdab807
AC
24792002-03-06 Andrew Cagney <ac131313@redhat.com>
2480
2481 * floatformat.c (floatformat_arm_ext_big): Delete definition.
2482
50d4562d
DD
24832002-03-04 Phil Edwards <pme@gcc.gnu.org>
2484
2485 * configure.in: Add --enable-install-libiberty option.
2486 * Makefile.in (INSTALLED_HEADERS): New variable.
2487 (install_to_libdir): Possibly also copy headers.
2488 * configure: Regenerated.
2489
24902002-03-04 Neil Booth <neil@daikokuya.demon.co.uk>
2491
2492 * xmalloc.c (xmalloc_fail): Clarify error message further.
2493
6e9980f5
DD
24942002-03-03 Neil Booth <neil@daikokuya.demon.co.uk>
2495
2496 * xmalloc.c (xmalloc_fail): Clarify error message.
2497
18893690 24982002-02-22 Jim Blandy <jimb@redhat.com>
2bbcdae9
JB
2499
2500 * splay-tree.c (splay_tree_xmalloc_allocate,
2501 splay_tree_xmalloc_deallocate): New functions.
2502 (splay_tree_new): Call splay_tree_new_with_allocator, passing the
2503 above functions and a dummy data pointer.
2504 (splay_tree_new_with_allocator): New function.
2505 (splay_tree_delete_helper, splay_tree_delete, splay_tree_insert,
2506 splay_tree_remove): Use the splay tree's allocation and
2507 deallocation functions.
2508
59ea9fe7
DD
25092002-02-19 Scott Snyder <snyder@fnal.gov>
2510
2511 * testsuite/demangle-expected: Add test case for infinite loop in
2512 demangler.
2513 * cplus-dem.c (demangle_arm_hp_template): Stop trying to demangle
2514 if do_type() doesn't make any progress --- prevents an infinite
2515 loop.
2516
6f848550
DD
25172002-02-18 Carlo Wood <carlo@gnu.org>
2518
2519 PR c++/5390
2520 * cplus-dem.c (demangle_integral_value): Accept multi-digit
2521 numbers that do not start with an underscore; This is needed
2522 for integer template parameters. This doesn't break anything
2523 because multi-digit numbers are never followed by a digit.
2524 * testsuite/demangle-expected: Corrected all mangled test
2525 cases with multi-digit template parameters: g++ 2.95.x does
2526 not generate underscores around these parameters.
2527
44354ae1
DD
25282002-02-05 Jason Merrill <jason@redhat.com>
2529
2530 * cplus-dem.c (flags): Add DMGL_VERBOSE
2531 (cplus_demangle_v3_p): Remove.
2532 (demangle_it): Add DMGL_TYPES to passed flags.
2533 * cp-demangle.c (cplus_demangle_v3_all): Remove.
2534 (cplus_demangle_v3_type): Remove.
2535 (cplus_demangle_v3): Add options parm.
2536
42da15d6
DD
25372002-02-02 H.J. Lu (hjl@gnu.org)
2538
2539 * cp-demangle.c (cp_demangle_type): Do not protect with
2540 IN_LIBGCC2.
2541 (cplus_demangle_v3_all): New.
2542 (cplus_demangle_v3): Call cplus_demangle_v3_all.
2543 (cplus_demangle_v3_type): Call cplus_demangle_v3_all.
2544
2545 * cplus-dem.c (cplus_demangle_v3_p): New function pointer.
2546 Initialized to cplus_demangle_v3.
2547 (cplus_demangle_with_style): Call cplus_demangle_v3_p instead
2548 of cplus_demangle_v3.
2549 (main): Set cplus_demangle_v3_p to cplus_demangle_v3_type for
2550 command line symbol.
2551
2552 * testsuite/regress-demangle: Pass the mangled name at the
2553 command line.
2554
b117c158
DD
25552002-02-01 H.J. Lu <hjl@gnu.org>
2556
2557 * cp-demangle.c (cp_demangle_type): Call demangling_new with
2558 DMGL_GNU_V3.
2559
c78d91b1
DD
25602002-01-31 Phil Edwards <pme@gcc.gnu.org>
2561
2562 * cp-demangle.c: Revert yesterday's change.
2563
bef8b55d
DD
25642002-01-31 Adam Megacz <adam@xwt.org>
2565
2566 * gcc/libiberty/configure.in: Treat mingw the same as cywin
2567 wrt HAVE_SYS_ERRLIST.
2568
2c955b8b
DD
25692002-01-30 Phil Edwards <pme@gcc.gnu.org>
2570
2571 * cp-demangle.c (cp_demangle_type): Do not protect with IN_LIBGCC2.
2572 (cplus_demangle_v3): Mimic __cxa_demangle and fall back on
2573 cp_demangle_type.
2574 * testsuite/demangle-expected: New gnu-v3 test.
2575
58b1717a
RH
25762002-01-22 Momchil Velikov <velco@fadata.bg>
2577
2578 * configure.in (variable detection): Use arrays of unspecified
2579 size instead of plain integers.
2580
cc096b71
DD
25812002-01-18 DJ Delorie <dj@redhat.com>
2582
2583 * Makefile.in (TESTLIB): New. This library is for future
2584 testsuites.
2585 (CFILES, REQUIRED_OFILES, CONFIGURED_OFILES): Re-alphabetize,
2586 break down by letter.
2587 (REQUIRED_OFILES): List long-to-compile files first.
2588 (maint-deps): New, target for updating dependencies.
2589 (dependencies): Update.
2590 * maint-tool: Add dependency-generating option.
2591 * configure.in: Check for _doprnt even if we're not providing it.
2592 * configure: Regenerate.
2593
2594 * _doprnt.c: Modifications to allow compiling on any platform.
2595 * copysign.c: Likewise.
2596 * putenv.c: Likewise.
2597 * setenv.c: Likewise.
2598 * vsprintf.c: Likewise.
2599
26002002-01-15 Douglas B Rupp <rupp@gnat.com>
2601
2602 * mkstemps.c (mkstemps): On VMS, open temp file with option
2603 that causes it to be deleted when closed.
2604
20d54542
DD
26052002-01-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2606
c23795e2
DD
2607 * cp-demangle.c (long_options): Const-ify.
2608 * cplus-dem.c (long_options): Likewise.
2609
20d54542
DD
2610 * cplus-dem.c (mystrstr): Delete. All callers changed to use
2611 strstr instead.
2612
f348a7b1
DD
26132001-12-31 Ira Ruben <ira@apple.com>
2614
2615 * aclocal.m4 (libiberty_AC_FUNC_STRNCMP): Use anon mmap as 2nd try.
2616 * configure: Regenerated.
2617
d86cd745
DD
26182001-12-24 Douglas B. Rupp <rupp@gnat.com>
2619
2620 * configure.in (uintptr_t): Use AC_CHECK_TYPE.
2621 * configure: Regenerated.
2622
ae533646
DD
26232001-12-12 Craig Rodrigues <rodrigc@gcc.gnu.org>
2624
2625 PR other/2719
2626 * cplus-dem.c (consume_count): Treat negative count as an error.
2627 * testsuite/demangle-expected: Added testcase.
2628
c0eb281b
DD
2629Tue Dec 11 07:08:57 2001 Douglas B. Rupp <rupp@gnat.com>
2630
2631 * configure.in: Hardcode that vfork works on VMS host.
2632 * configure: Regenerated.
2633
2da4c07f
RH
26342001-12-06 Richard Henderson <rth@redhat.com>
2635
2636 * cplus-dem.c (libiberty_demanglers): Add no_demangling case.
2637 (cplus_demangle): Support no_demangling.
2638
24acd898
DD
26392001-11-27 Zack Weinberg <zack@codesourcery.com>
2640
2641 * _doprnt.c: Moved here from gcc/doprint.c. Adjust to build
2642 in libiberty context. Fix typo in leading comment.
2643 * configure.in: Fix various AC_DEFINEs so autoheader works.
2644 If any of vprintf, vsprintf, vfprintf is missing from libc,
2645 then AC_REPLACE_FUNCS(_doprnt).
2646
fec50157 26472001-11-26 DJ Delorie <dj@redhat.com>
d86cd745 2648 Daniel Jacobowitz <drow@mvista.com>
fec50157
DD
2649
2650 * Makefile.in (stamp-h): Depend on Makefile for proper
2651 serialization.
2652 (*-subdir): Depend on config.h for proper serialization.
2653
5527febf
DD
26542001-11-26 DJ Delorie <dj@redhat.com>
2655
2656 * configure.in: Check for alloca.h (for regex.c and putenv.c).
2657 * configure: Regenerate.
2658 * config.h: Add HAVE_ALLOCA_H.
2659
941d74a0
DD
26602001-11-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2661
2662 * regex.c: Check defined(__STDC__) || defined(ALMOST_STDC) ||
2663 defined(HAVE_STRINGIZE) to determine whether ISO CPP token pasting
2664 is available.
2665
dc579051
DD
2666Thu Nov 15 11:06:25 2001 Jeffrey A Law (law@cygnus.com)
2667
2668 * config.in (HAVE_UINTPTR_T): Provide autoconf stub.
2669 * configure.in (HAVE_UINTPTR_T): Test for system defining
2670 uintptr_t and define HAVE_UINTPTR_T appropriately.
2671 * regex.c (uintptr_t): Do not provide a definition if the
2672 system provided one.
2673
2674 * regex.c (PREFIX): Provide an alternate definition for
2675 non-ANSI/ISO compilers.
2676 (ARG_PREFIX): Likewise.
2677
1a78a35a
DD
26782001-11-12 Jim Meyering <meyering@lucent.com>
2679
2680 * obstack.c (_): Honor the setting of ENABLE_NLS. Otherwise,
2681 this code would end up calling gettext even in packages built
2682 with --disable-nls.
2683 * getopt.c (_): Likewise.
2684 * regex.c (_): Likewise.
2685
4e55c4b6
DD
26862001-11-03 Alan Modra <amodra@bigpond.net.au>
2687
2688 * configure.in: Cope with missing makeinfo.
2689 * configure: Regenerate.
2690
d311a83a
DD
26912001-10-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2692
2693 * hex.c (hex_init): Provide empty stub.
2694
2695 * hex.c (hex_init): Delete.
2696 (_hex_value): Const-ify and initialize at compile-time.
2697
3bc62f91
DD
26982001-10-19 H.J. Lu <hjl@gnu.org>
2699
2700 * Makefile.in ($(TARGETLIB)): Also generate pic/$(TARGETLIB) if
2701 necessary.
2702
5d852400
DD
27032001-10-17 DJ Delorie <dj@redhat.com>
2704
2705 * argv.c, asprintf.c, choose-temp.c, concat.c, cplus-dem.c,
2706 ffs.c, fnmatch.txh, getruntime.c, make-temp-file.c,
5527febf 2707 mkstemps.c, pexecute.c, random.c, strsignal.c, vasprintf.c:
5d852400
DD
2708 Improve manual formatting.
2709 * functions.texi: Regenerate.
2710
ba19b94f
DD
27112001-10-15 DJ Delorie <dj@redhat.com>
2712
2713 * Makefile.in (TEXIFILES): Add fnmatch.txh.
2714 (maint-undoc): New.
2715 maint-tool: Add "undoc" tool.
2716 * alloca.c, argv.c, asprintf.c, choose-temp.c, concat.c,
2717 fdmatch.c, ffs.c, getruntime.c, insque.c, lbasename.c,
2718 make-temp-file.c, mkstemps.c, pexecute.c, random.c, spaces.c,
2719 strerror.s, strsignal.c, strtol.c, vasprintf.c: Add or update
2720 documentation.
2721 * fnmatch.txh: New.
2722 * functions.texi: Regenerate.
2723
56056af5
DD
27242001-10-10 Joseph S. Myers <jsm28@cam.ac.uk>
2725
2726 * bcmp.c, setenv.c: Use "nonzero" instead of "non-zero".
2727 * strtod.c: Use "ISO C" instead of "ANSI C".
2728 * functions.texi: Regenerate.
2729
99b58139
DD
27302001-10-07 Joseph S. Myers <jsm28@cam.ac.uk>
2731
2732 * alloca.c, clock.c, getcwd.c, getpagesize.c, getpwd.c, index.c,
2733 libiberty.texi, memchr.c, putenv.c, rindex.c, strchr.c, strdup.c,
2734 strerror.c, strrchr.c, strstr.c, strtod.c, tmpnam.c, vfork.c,
2735 xatexit.c, xmalloc.c, xstrerror.c: Improve manual formatting. Fix
2736 spelling. Give names to function arguments in documentation. Use
2737 (void) prototypes in documentation.
2738 * functions.texi: Regenerate.
2739
e6450fe5
DD
27402001-10-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2741
2742 * argv.c (buildargv, tests, main): Const-ify.
2743 * cp-demangle.c (operator_code): Likewise.
2744 * cplus-dem.c (optable, libiberty_demanglers,
2745 cplus_demangle_set_style, cplus_demangle_name_to_style,
2746 print_demangler_list): Likewise.
2747 * hashtab.c (higher_prime_number): Likewise.
2748 * strcasecmp.c (charmap): Likewise.
2749 * strerror.c (error_info, strerror, main): Likewise.
2750 * strncasecmp.c (charmap): Likewise.
2751 * strsignal.c (signal_info): Likewise.
2752
da191b5b
DD
27532001-09-29 DJ Delorie <dj@redhat.com>
2754
2755 * configure: Regenerate.
2756
916aaa12
DD
27572001-09-28 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2758
2759 * concat.c: Include stdlib.h.
2760
fa9f0e33
DD
27612001-09-27 Eli Zaretskii <eliz@is.elta.co.il>
2762
2763 * libiberty.texi: (Top level): Add syncodeindex pg. Add
2764 @dircategory and @direntry directives. Add @finalout.
2765 (many nodes): Lose the next,prev,up pointers on the @nide line.
2766 (Using, Supplemental Functions, Replacement Functions): Fix
2767 markup.
2768 (Functions): Move around, to allow makeinfo to build the manual
2769 without next,prev,up pointers in thye node lines.
2770 (Licenses): Fix typos.
2771
2772 * index.c, rindex.c, strchr.c, strerror.c, strrchr.c, strstr.c,
2773 strtol.c, xatexit.c, xexit.c, xmalloc.c: Fix spelling and markup.
2774 * functions.texi: Regenerate.
2775
2776 * copying-lib.texi: Lose the next,prev,up pointers on the @node
2777 line.
2778
27792001-09-27 DJ Delorie <dj@redhat.com>
2780
2781 * configure.in: Don't use in-tree texinfo, because libiberty must
2782 be built before it. Check for makeinfo version 4 or higher.
2783 * functions.texi: Regenerate.
2784
39423523
DD
27852001-09-20 DJ Delorie <dj@redhat.com>
2786 Phil Edwards <pedwards@disaster.jaj.com>
2787
2788 * configure.in (MAKEINFO, PERL): Detect these.
2789 (--enable-maintainer-mode): Add.
2790 * configure: Regenerate.
2791 * Makefile.in (MAKEINFO, PERL): Define.
2792 (libiberty.info, libiberty.dvi, libiberty.html): New.
2793 (CFILES): Add bsearch.c.
2794 (CONFIGURED_OFILES): New, list of objects configure might add.
2795 (maint-missing, maint-buildall): New, for maintainers only.
2796 (clean, mostlyclean): Add info/dvi/html files.
2797 * libiberty.texi, copying-lib.texi, obstacks.texi, functions.texi: New.
2798 * gather-docs: New, for maintainers.
2799 * maint-tool: New, for maintainers.
2800 * alloca.c, atexit.c, basename.c, bcmp.c, bcopy.c, bsearch.c,
2801 bzero.c, calloc.c, clock.c, configure.in, configure, getcwd.c,
2802 getpagesize.c, getpwd.c, index.c, memchr.c, memcmp.c, memcpy.c,
2803 memmove.c, memset.c, putenv.c, rename.c, rindex.c, setenv.c,
2804 sigsetmask.c, strcasecmp.c, strchr.c, strdup.c, strerror.c,
2805 strncasecmp.c, strncmp.c, strrchr.c, strstr.c, strtod.c, strtol.c,
2806 tmpnam.c, vfork.c, vprintf.c, waitpid.c, xatexit.c, xexit.c,
2807 xmalloc.c, xmemdup.c, xstrdup.c, xstrerror.c: Add or update
2808 documentation.
2809
66c94e19
DD
28102001-09-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2811
2812 * concat.c (reconcat): Fix for traditional C.
2813
99ee3a8f
DD
28142001-09-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2815
2816 * concat.c (reconcat): New function.
2817
54c20242
DD
28182001-09-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2819
2820 * concat.c (vconcat_length, vconcat_copy, concat_length,
2821 concat_copy, concat_copy2): New functions.
2822 (concat): Use vconcat_length/vconcat_copy.
2823
2824 * alloca.c (libiberty_optr, libiberty_nptr, libiberty_len):
2825 Define.
2826
843f21be
DD
28272001-09-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2828
2829 * asprintf.c: Don't define USE_STDARG. Use VPARAMS, VA_OPEN,
2830 VA_FIXEDARG & VA_CLOSE.
2831
2832 * vasprintf.c: Check HAVE_STRING_H when including string.h.
2833 (checkit): Delete redundant prototype. Add ATTRIBUTE_PRINTF_1.
2834 Use VA_OPEN, VA_FIXEDARG & VA_CLOSE. Free allocated string.
2835
8a423cb3
DD
28362001-08-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2837
2838 * concat.c (concat): Use VPARAMS, VA_OPEN, VA_FIXEDARG & VA_CLOSE.
2839
dc676635
DD
28402001-08-23 Ulrich Drepper <drepper@redhat.com>
2841
2842 * regex.c (truncate_wchar): Use wcrtomb not wctomb.
2843
28442001-08-23 Ulrich Drepper <drepper@redhat.com>
2845
2846 * posix/regex.c [_LIBC] (convert_mbs_to_wcs): Use __mbrtowc
2847 instead of mbrtowc.
2848 [_LIBC]: Use __iswctype instead of iswctype, __wcslen instead of
2849 wcslen, and __wcscoll instead of wcscoll.
2850
f080c76d
DD
28512001-08-22 Matt Kraai <kraai@alumni.carnegiemellon.edu>
2852
3ebf1f59
DD
2853 * fibheap.c (fibheap_init, fibnode_init): Remove.
2854 (fibheap_new, fibnode_new): Use xcalloc to allocate and
2855 initialize memory.
2856 (fibheap_insert): Remove check for node allocation failure.
f080c76d 2857
f01b59ed
DD
28582001-08-21 Richard Henderson <rth@redhat.com>
2859
2860 * Makefile.in (fibheap.o): Depend on config.h.
2861 * fibheap.c: Tidy formatting. Use config.h.` Rearrange some
2862 functions for inlining.
2863
2864Tue Aug 21 12:35:04 2001 Christopher Faylor <cgf@cygnus.com>
2865
2866 * configure.in: Need to set HAVE_SYS_ERRLIST and HAVE_SYS_NERR whenever
2867 hosting on cygwin.
2868 * configure: Regenerate.
2869
eb828599
AC
28702001-08-20 Andrew Cagney <ac131313@redhat.com>
2871
2872 * floatformat.c (floatformat_m88110_ext): Remove #ifdef
2873 HARRIS_FLOAT_FORMAT.
2874 (floatformat_ia64_spill_little, floatformat_ia64_quad_little)
2875 (floatformat_ia64_spill_big, floatformat_ia64_quad_big)
2876 (floatformat_arm_ext_big, floatformat_arm_ext_littlebyte_bigword)
2877 (floatformat_m88110_harris_ext): New float formats.
2878
4e55c4b6
DD
28792001-08-20 Daniel Berlin <dan@cgsoftware.com>
2880
2881 * fibheap.c: New file. Fibonacci heap.
2882
2883 * Makefile.in (CFILES): Add fibheap.c.
2884 (REQUIRED_OFILES): Add fibheap.o.
2885 (fibheap.o): Add dependencies for fibheap.o.
2886
68a41de7
DD
28872001-08-17 Christopher Faylor <cgf@cygnus.com>
2888
2889 * configure.in: Always set HAVE_SYS_ERRLIST when targetting cygwin.
2890 * configure: Regenerate.
2891
8fc34799
DD
28922001-08-16 Richard Henderson <rth@redhat.com>
2893
2894 * hashtab.c (htab_hash_string): New.
2895
16bad250
AC
28962001-08-13 Andrew Cagney <ac131313@redhat.com>
2897
2898 * floatformat.c (floatformat_ieee_double_littlebyte_bigword): Fix
2899 name.
2900
a9022147
DD
29012001-08-12 Isamu Hasegawa <isamu@yamato.ibm.com>
2902
2903 * regex.c (wcs_regex_compile): Use appropriate string
2904 to compare with collating element.
2905 Fix the padding for the alignment.
2906
8aefe91a 29072001-08-10 Andrew Cagney <ac131313@redhat.com>
3ea71002
AC
2908
2909 * lbasename.c (lbasename): Change function definition to return a
2910 const char pointer.
2911
e7e9b069
DD
29122001-08-07 Jason Merrill <jason_merrill@redhat.com>
2913
2914 * cp-demangle.c (demangle_special_name): "GR" -> "reference temporary
2915 for".
2916
cc5144f8
DD
29172001-08-03 Richard Henderson <rth@redhat.com>
2918
2919 * Makefile.in (concat.o): Depend on config.h.
2920
8aefe91a
DD
29212001-07-30 Andreas Jaeger <aj@suse.de>
2922
2923 * concat.c: Include "config.h".
2924
86710ce2
DD
29252001-07-30 Andreas Jaeger <aj@suse.de>
2926
2927 * regex.c: Declare wcs functions only if compiling with
2928 MBS_SUPPORT.
2929 Don't use #elif for traditional C.
2930
29312001-07-23 Ulrich Drepper <drepper@redhat.com>
2932
2933 * regex.c: Revamp memory allocation for WCHAR functions to
2934 not use too much stack.
2935
29362001-07-30 Andreas Jaeger <aj@suse.de>
2937
2938 * regex.c: Declare wcs functions only if compiling with
2939 MBS_SUPPORT.
2940 Don't use #elif for traditional C.
2941
a5d8f731
DD
29422001-07-25 Daniel Jacobowitz <drow@mvista.com>
2943
2944 * Makefile.in (regex.o): Add dependency on config.h.
2945
6ad8a379
DD
29462001-07-18 Andreas Schwab <schwab@suse.de>
2947
2948 * regex.c (WORDCHAR_P) [WCHAR]: Also return true for the
2949 underscore character.
2950
29512001-07-18 Ulrich Drepper <drepper@redhat.com>
2952
2953 * regex.c: Limit string length printed in debug messages to 100
2954 chars.
2955
29562001-07-18 Andreas Jaeger <aj@suse.de>
2957
2958 * regex.c: Place under LGPL version 2.1.
2959
2a6ef469
DD
29602001-07-10 Jeff Johnston <jjohnstn@redhat.com>
2961
2962 * Makefile.in: Add support for regex code.
2963 * regex.c: New file.
2964
7b78baae
DD
29652001-07-05 Mark Klein <mklein@dis.com>
2966
2967 * Makefile.in: Add ffs.c dependency.
2968 * configure.in: Add ffs.c.
2969 * ffs.c: New file.
2970
926150e2
DD
29712001-06-18 Richard Henderson <rth@redhat.com>
2972
2973 * concat.c: Include <sys/types.h>.
2974
11f6f21d
DD
29752001-06-11 Loren J. Rittle <ljrittle@acm.org>
2976
2977 bootstrap/3106
2978 * strerror.c (sys_nerr): Hide the OS header version.
2979 * strsignal.c (sys_nsig): Likewise.
2980
d42dae6c
DD
29812001-06-10 Richard Henderson <rth@redhat.com>
2982
2983 * concat.c: Include string.h. Fix int vs size_t usage.
2984 Simplify the iteration loops. Use memcpy.
2985
e05c6d27
DD
29862001-05-16 Matt Kraai <kraai@alumni.carnegiemellon.edu>
2987
2988 * partition.c: Fix misspelling of `implementation'.
2989
b50c4073
DD
29902001-05-09 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
2991
2992 * md5.c (md5_init_ctx): Declare constants as unsigned.
2993 (md5_process_block): Likewise.
2994
457161bf
DD
29952001-05-07 Zack Weinberg <zackw@stanford.edu>
2996
2997 * cp-demangle.c (demangle_v3_with_details,
2998 is_gnu_v3_mangled_ctor, is_gnu_v3_mangled_dtor): Use K+R style
2999 function definition.
3000 * ternary.c: Use K+R style function definitions. Use PTR, not
3001 void *. Make arguments constant where possible.
3002
e00bc6a7
DD
30032001-05-07 Mark Mitchell <mark@codesourcery.com>
3004
3005 * splay-tree.h (splay_tree_max): New function.
3006 (splay_tree_min): Likewise.
3007
400ee7e1
DB
30082001-04-15 Daniel Berlin <dan@cgsoftware.com>
3009
3010 * ternary.c: New file - Ternary search tree implementation.
a5dd804e
DB
3011
3012 * Makefile.in: Add ternary.o, and ternary.c dependencies.
400ee7e1 3013
d9697354
DD
30142001-04-03 Zack Weinberg <zackw@stanford.edu>
3015
3016 * make-temp-file.c (try): Inline.
3017
a7bf099b
DD
30182001-02-28 Richard Henderson <rth@redhat.com>
3019
3020 * Makefile.in (make-temp-file.o): Depend on config.h.
3021
30a1def2
DD
30222001-03-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3023
3024 * memchr.c (memchr): Adjust condition to avoid infinite loop.
3025
079c672a
DD
30262001-03-23 Jakub Jelinek <jakub@redhat.com>
3027
3028 * cp-demangle.c (demangle_discriminator): `_0' is discriminator #1,
3029 `_' not followed by a digit is invalid.
3030
a88e356a
JB
30312001-03-22 Jim Blandy <jimb@redhat.com>
3032
3033 * cp-demangle.c (string_list_delete): Use dyn_string_delete
3034 instead of free, to free the contents as well as the string
3035 structure.
3036
1dffcc66
DD
30372001-03-21 Zack Weinberg <zackw@stanford.edu>
3038
3039 * make-temp-file.c: Always default DIR_SEPARATOR to '/'.
3040 Don't default P_tmpdir to anything. Try /var/tmp before
3041 /usr/tmp.
3042
30432001-03-20 Zack Weinberg <zackw@stanford.edu>
3044
3045 * choose-temp.c: Split off make_temp_file, and the code
3046 duplicated between it and choose_temp_base, into...
3047 * make-temp-file.c: ... here; new file.
3048
3049 * Makefile.in (CFILES): Add make-temp-file.c.
3050 (REQUIRED_OFILES): Add make-temp-file.o.
3051
e61231f1
JB
30522001-03-20 Jim Blandy <jimb@redhat.com>
3053
3054 * cp-demangle.c (struct demangling_def): New fields:
3055 is_constructor and is_destructor.
3056 (demangling_new): Initialize them.
3057 (demangle_ctor_dtor_name): Set them, if we detect a constructor
3058 or destructor.
3059 (demangle_v3_with_details, is_gnu_v3_mangled_ctor,
3060 is_gnu_v3_mangled_dtor): New functions.
3061
a9cbbe6d
DD
30622001-03-20 Jason Merrill <jason@redhat.com>
3063
3064 * cplus-dem.c (main): Skip initial $.
3065
b1e51b3c
DD
30662001-03-15 Michael Meissner <meissner@redhat.com>
3067
3068 * hashtab.c (higher_prime_number): Silence warning that 4294967291
3069 might be a signed integer under pre-ISO C systems.
3070
8aa30e60 30712001-03-10 Neil Booth <neil@daikokuya.demon.co.uk>
fa03f0a7 3072 John David Anglin <dave@hiauly1.hia.nrc.ca>
8aa30e60 3073
8aa30e60
DD
3074 * libiberty/lbasename.c: New file.
3075 * libiberty/Makefile.in: Update for lbasename.
8aefe91a 3076
30673bf5
DD
30772001-03-06 Zack Weinberg <zackw@stanford.edu>
3078
3079 * aclocal.m4 (libiberty_AC_FUNC_C_ALLOCA): New.
3080 * configure.in: Replace all alloca logic with a simple use of
3081 the above new macro.
3082 * config.table: Kill *-*-beos* entry.
3083 * config/mh-beos: Delete.
3084 * configure, config.in: Regenerate.
fa03f0a7 3085
30673bf5
DD
3086 * Makefile.in (ALLOCA, HFILES): Kill.
3087 (REQUIRED_OFILES): Add alloca.o.
3088 (alloca.o): Depend on libiberty.h.
3089 (argv.o): Don't depend on alloca-conf.h.
3090 * alloca-conf.h: Delete.
3091 * alloca.c: Include libiberty.h. Kill all #ifdef emacs
3092 blocks. Provide the C alloca unconditionally. Use PTR where
3093 appropriate. Make i00afunc static.
3094 * argv.c: Don't include alloca-conf.h.
fa03f0a7 3095
5810f394
DD
30962001-03-04 John David Anglin <dave@hiauly1.hia.nrc.ca>
3097
3098 * cplus-dem.c (main): Cast enum style to int.
fa03f0a7 3099
a9db032a
DD
31002001-02-16 Loren J. Rittle <ljrittle@acm.org>
3101
3102 * cplus-dem.c (main): Initialize style.
fa03f0a7 3103
8aefe91a
DD
31042001-02-02 Phil Edwards <pme@sources.redhat.com>
3105
3106 * COPYING.LIB: Update to LGPL 2.1 from the FSF.
3107
bc9bf259
DD
31082001-01-31 Bryce McKinlay <bryce@albatross.co.nz>
3109
3110 Add support for Java demangling under the v3 ABI:
3111 * cp-demangle.c (NAMESPACE_SEPARATOR): New define.
3112 (struct demangling_def): Add `style' field.
3113 (demangling_new): New parameter `style'. Set it in demangling_t.
3114 (demangle_prefix): Use NAMESPACE_SEPARATOR.
3115 (demangle_type_ptr): Don't emit pointer symbol if doing Java output.
3116 (cp_demangle): New parameter `style'. Pass it to demangling_new().
3117 (main): Call cp_demangle with extra parameter.
3118 (java_demangle_v3): New function.
3119 (java_builtin_type_names): New. Table of primitive type names used
3120 for Java demangling.
3121 (demangle_builtin_type): Look up in java_builtin_type_names if doing
3122 Java output.
3123 * cplus-dem.c (cplus_demangle): Use java_demangle_v3 to do Java
3124 demangling.
3125 (long_options): Remove obsolete `java' option.
3126 (main): Remove explicit handling of `java' option. Instead, pass style
3127 parameter in cplus_demangle flags as gdb does.
3128 * testsuite/demangle.expected: Add some Java test cases.
fa03f0a7 3129
f6528837
DD
31302000-12-29 DJ Delorie <dj@redhat.com>
3131
3132 * fnmatch.c: Make the note about the origins of this file more
3133 accurate, at least until we can sync with glibc.
3134 * getopt.c: Ditto.
3135 * getopt1.c: Ditto.
3136 * md5.c: Ditto.
3137 * obstack.c: Ditto.
9d969b59 3138
c6da642e
DD
31392000-12-26 Michael Sokolov <msokolov@ivan.Harhan.ORG>
3140
3141 * bsearch.c: New file.
3142 * configure.in (funcs): Add bsearch.
3143 (AC_CHECK_FUNCS): Likewise.
3144 * configure, config.in: Regenerate.
3145
ae7d06ad 31462000-12-13 Michael Sokolov <msokolov@ivan.Harhan.ORG>
f021637a
DD
3147
3148 * safe-ctype.c: #include "ansidecl.h".
3149 * strtod.c: Likewise.
3150
ae7d06ad 31512000-12-13 Michael Sokolov <msokolov@ivan.Harhan.ORG>
f021637a
DD
3152
3153 * strtoul.c: Include safe-ctype.h, not ctype.h.
3154
ac424eb3
DD
31552000-12-07 Zack Weinberg <zack@wolery.stanford.edu>
3156
3157 * safe-ctype.c: New file.
3158 * Makefile.in (CFILES): Add safe-ctype.c.
3159 (REQUIRED_OFILES): Add safe-ctype.o.
3160
3161 * argv.c: Define ISBLANK and use it, not isspace.
3162 * basename.c, cplus-dem.c, fnmatch.c, pexecute.c, strtod.c,
3163 strtol.c, strtoul.c: Include safe-ctype.h, not ctype.h. Use
3164 uppercase ctype macros. Don't test ISUPPER(c)/ISLOWER(c)
3165 before calling TOLOWER(c)/TOUPPER(c).
3166
4415a860
DD
31672000-12-07 Mike Stump <mrs@wrs.com>
3168
3169 * Makefile.in (distclean): When cleaning, remove testsuite.
3170
849ee224
DD
31712000-12-05 Jason Merrill <jason@redhat.com>
3172
3173 * cp-demangle.c (cplus_demangle_v3): Check that it's a v3 mangled
3174 name before allocating the dyn_string.
3175
ae7d06ad 31762000-12-04 Jason Merrill <jason@redhat.com>
e49a569c
DD
3177
3178 * cp-demangle.c: s/new_abi/v3/.
3179 * cplus-dem.c: Likewise.
3180 (current_demangling_style): Now auto_demangling.
3181 (cplus_demangle): Try v3 demangling if AUTO_DEMANGLING.
ae7d06ad 3182 (main): Use standard symbol chars for auto_demangling.
e49a569c 3183
ae7d06ad 31842000-11-26 Mark Mitchell <mark@codesourcery.com>
5ca0f83d
DD
3185
3186 * hashtab.c (higher_prime_number): Use a table, rather than a
3187 seive, to find the next prime.
ae7d06ad
NC
3188
31892000-11-22 H.J. Lu <hjl@gnu.org>
3190
3191 * cplus-dem.c (main): Handle gnat_demangling.
3192
31932000-11-22 Zack Weinberg <zack@wolery.stanford.edu>
2ea7befd
DD
3194
3195 * aclocal.m4 (LIB_AC_PROG_CC): Moved here from configure.in.
3196 (AC_DEFINE_NOAUTOHEADER): New - work around bug in autoheader.
3197 * configure.in: Call AC_C_INLINE and AC_C_CONST. Use three
3198 argument form of AC_DEFINE in dummy definitions block. Use
3199 AC_DEFINE_NOAUTOHEADER for real definitions of things defined
3200 in dummy block. Preload cache variables instead of bypassing
3201 tests, where possible.
3202 * acconfig.h: Removed.
ae7d06ad 3203
2ea7befd
DD
3204 * xmalloc.c (xmalloc_failed): New function, does error
3205 reporting on failed allocation.
3206 (xmalloc, xcalloc, xrealloc): Use it.
9c26dc82 3207
f1775526
HPN
32082000-11-21 Hans-Peter Nilsson <hp@bitrange.com>
3209
3210 * cplus-dem.c (cplus_demangle): Fix formatting.
3211 (grow_vect): Ditto.
3212 (ada_demangle): Ditto.
3213 (internal_cplus_demangle): Ditto.
3214 (mop_up): Ditto.
3215
32162000-11-21 H.J. Lu <hjl@gnu.org>
3217
3218 * cplus-dem.c (main): Handle java_demangling.
3219
ae7d06ad 32202000-11-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
f1775526
HPN
3221
3222 * cplus-dem.c (grow_vect): Prototype.
3223 (ada_demangle): Cast the arg of ctype macros to unsigned char.
3224
5dd42ef4
HPN
32252000-11-15 Hans-Peter Nilsson <hp@bitrange.com>
3226
3227 * cplus-dem.c (ada_demangle): Add back ATTRIBUTE_UNUSED for
3228 parameter `option'.
3229
296731c1
DD
32302000-11-15 Kenneth Block <kenneth.block@compaq.com>
3231
8944fb9d 3232 * cplus-dem.c: Eliminate use of DEFUN, it is obsolete and cannot
296731c1
DD
3233 be used in GCC.
3234
6e53a714 32352000-11-15 Kenneth Block <kenneth.block@compaq.com>
16e85745 3236
5dd42ef4 3237 * cplus-dem.c: Add gnat demangler. Add java to demangle style
16e85745
HPN
3238 list.
3239
99a4c1bd
HPN
32402000-11-04 Hans-Peter Nilsson <hp@bitrange.com>
3241
3242 * hashtab.c (htab_expand): Change to return int. Use calloc or
8aefe91a
DD
3243 xcalloc depending on htab->return_allocation_failure. Return zero
3244 if calloc fails.
99a4c1bd
HPN
3245 (htab_create): Update comment to cover memory allocation.
3246 (htab_try_create): New.
3247 (htab_find_slot_with_hash): Return NULL if htab_expand fails.
8aefe91a 3248 Update comment to cover this.
99a4c1bd 3249
e0f3df8f
HPN
32502000-11-03 Hans-Peter Nilsson <hp@bitrange.com>
3251
3252 * hashtab.c: Change void * to PTR where necessary.
3253 (htab_create, htab_expand): Correct formatting of comment before
3254 function.
3255
ae7d06ad 32562000-10-22 Alex Samuel <samuel@codesourcery.com>
59666b35
DD
3257
3258 * cp-demangle.c (string_list_def): Add caret_position and comments.
3259 (result_caret_pos): New macro.
3260 (result_append_string): Rename to...
3261 (result_add_string): ... this, and insert at caret position.
ae7d06ad 3262 Rename throughout.
59666b35
DD
3263 (result_append): Rename to...
3264 (result_add): ... this, and insert at caret position. Rename
ae7d06ad 3265 throughout.
59666b35
DD
3266 (result_append_char): Rename to...
3267 (result_add_char): ... this, and insert at caret position. Rename
ae7d06ad 3268 throughout.
59666b35
DD
3269 (result_append_space): Remove.
3270 (string_list_new): Initialize caret position.
3271 (result_add_separated_char): Use caret position.
3272 (result_get_caret): New funtion.
3273 (result_set_caret): Likewise.
3274 (result_shift_caret): Likewise.
3275 (result_previous_char_is_space): Likewise.
3276 (substitution_start): Use caret position.
3277 (substitution_add): Likewise.
3278 (demangling_new): Initialize caret position.
3279 (demangle_encoding): Use caret position.
ae7d06ad 3280 (demanglin_nested_name): Put CV qualifiers after name.
59666b35
DD
3281 (demangle_type_ptr): Use switch statement. Handle pointers to
3282 arrays. Don't use result_append_space. Use caret position.
3283 (demangle_type): Emit CV qualifiers after underlying type. Adjust
ae7d06ad
NC
3284 call to demangle_array_type.
3285 (demangle_array_type): Add parameter to handle pointers to arrays.
74bcd529 3286
ae7d06ad 32872000-10-01 Mark Mitchell <mark@codesourcery.com>
74bcd529
DD
3288
3289 * splay-tree.c (splay_tree_insert): Fix formatting.
ae7d06ad
NC
3290
32912000-09-16 Mark Mitchell <mark@codesourcery.com>
74bcd529
DD
3292
3293 * splay-tree.c (splay_tree_predecessor): Fix typo in comment.
ae7d06ad
NC
3294
32952000-09-14 Michael Sokolov <msokolov@ivan.Harhan.ORG>
3296
3297 * splay-tree.c: #include <stdio.h>.
3298
32992000-09-14 Hans-Peter Nilsson <hp@axis.com>
3300
3301 * testsuite/demangle-expected: Add two tests for anonymous
3302 namespaces.
3303 * cplus-dem.c (gnu_special): Handle anonymous namespaces.
3304
33052000-09-10 Mark Mitchell <mark@codesourcery.com>
74bcd529
DD
3306
3307 * splay-tree.c (splay_tree_predecessor): New function.
3308 (splay_tree_successor): Likewise.
ae7d06ad
NC
3309
33102000-09-10 Hans-Peter Nilsson <hp@axis.com>
3311
3312 * testsuite/demangle-expected: Add four tests for type_info
3313 mangling.
3314 * cplus-dem.c (gnu_special): Use do_type, not demangle_fund_type,
3315 for a non-template non-qualified type_info function or node.
3316
33172000-09-08 Alex Samuel <samuel@codesourcery.com>
74bcd529
DD
3318
3319 * cp-demangle.c: Fix copyright banner.
ae7d06ad
NC
3320
33212000-09-07 Michael Sokolov <msokolov@ivan.Harhan.ORG>
3322
3323 * md5.c: #include "ansidecl.h".
3324
33252000-09-06 Alex Samuel <samuel@codesourcery.com>
74bcd529
DD
3326
3327 * cp-demangle.c (status_allocation_failed): Rearrange whitespace.
3328 (demangle_type): Handle substitution candidates correctly in the
3329 face of special substitutions.
ae7d06ad
NC
3330
33312000-09-05 Alex Samuel <samuel@codesourcery.com>
74bcd529
DD
3332
3333 * cp-demangle.c (demangle_encoding): Rename variable.
3334 (demangle_name): Rename parameter. Handle return type
3335 suppression.
3336 (demangle_nested_name): Rename parameter.
3337 (demangle_prefix): Likewise. Change return type suppression.
3338 (demangle_unqualified_name): Add parameter. Flag constructors and
3339 conversion operators.
3340 (demangle_special_name): Fix comment.
3341 (demangle_type): Rename variable.
3342 (demangle_bare_function_type): Check for missing return type and
3343 parameter.
3344 (demangle_class_enum_type): Rename parameter.
3345 (demangle_discriminator): Fix misspelling in comment.
ae7d06ad
NC
3346
33472000-08-31 DJ Delorie <dj@redhat.com>
3348
3349 * configure.in (Cygwin): special case cygwin only when we're
3350 building cygwin, not when we're hosting cygwin.
3351
33522000-09-04 Alex Samuel <samuel@codesourcery.com>
74bcd529
DD
3353
3354 * cp-demangle.c (demangle_template_arg): Eat an `E' after an
3355 <expression>.
ae7d06ad
NC
3356
33572000-09-04 Alex Samuel <samuel@codesourcery.com>
74bcd529
DD
3358
3359 * cp-demangle.c (demangle_type_ptr): Increment position past
3360 pointer and reference characters.
ae7d06ad
NC
3361
33622000-09-04 Alex Samuel <samuel@codesourcery.com>
74bcd529
DD
3363
3364 * cp-demangle.c (demangle_nv_offset): New function.
3365 (demangle_v_offset): Likewise.
3366 (demangle_call_offset): Likewise.
3367 (demangle_special_name): Update thunk demangling to comply with
3368 ABI changes.
ae7d06ad
NC
3369
33702000-09-03 Alex Samuel <samuel@codesourcery.com>
74bcd529
DD
3371
3372 * cp-demangle.c (ANONYMOUS_NAMESPACE_PREFIX): New macro.
3373 (substitution_def): Remove template_parm_number.
3374 (NOT_TEMPLATE_PARM): Remove.
3375 (result_insert_string): New macro.
3376 (result_insert): Likewise.
3377 (result_insert_char): Likewise.
3378 (substitution_add): Remove last parameter. Don't store template
3379 parm number.
3380 (BFT_NO_RETURN_TYPE): Define as NULL.
3381 (demangle_encoding): Adjust call to demangle_bare_function_type.
3382 (demangle_name): Adjust substitution. Adjust call to
3383 substitution_add.
3384 (demangle_prefix): Adjust call to substitution_add.
3385 (demangle_identifier): Handle anonymous namespaces.
3386 (demangle_operator_name): Change demangling of vendor-extended
3387 operator to match ABI changes.
3388 (demangle_type_ptr): Change parameters. Make recursive. Handle
3389 substitutions here.
3390 (demangle_type): Adjust calls to demangle_template_param,
3391 substitution_add, and demangle_type_ptr. Fix substitution of
3392 templated types.
3393 (demangle_function_type): Change parameter to a pointer.
3394 (demangle_bare_function_type): Likewise. Adjust insertion point.
3395 (demangle_template_param): Remove last parameter.
3396 (demangle_expr_primary): Remove unused variable. Adjust call to
3397 demangle_template_param.
3398 (is_mangled_char): Accept `$' and `.'.
3399 * cplus-dem.c (gnu_new_abi_symbol_characters): Add '$' and '.'.
3400 * dyn-string.c (dyn_string_insert_char): New function.
ae7d06ad
NC
3401
34022000-08-31 Hans-Peter Nilsson <hp@axis.com>
3403
3404 * testsuite/demangle-expected: Add nine tests for
3405 underscore-after-number followed by five tests for name-signature
3406 delimiter.
3407
34082000-08-28 Richard Henderson <rth@cygnus.com>
74bcd529
DD
3409
3410 * Makefile.in (md5.o): Depend on config.h.
ae7d06ad
NC
3411
34122000-08-28 Jason Merrill <jason@redhat.com>
3413
3414 * Makefile.in (REQUIRED_OFILES): Add md5.o.
3415 (CFILES): Add md5.c.
3416 * md5.c: New file.
3417
34182000-08-27 Alex Samuel <samuel@codesourcery.com>
74bcd529
DD
3419
3420 * cp-demangle.c (demangle_name): Initialize template_p in local
3421 name case. Don't re-add substitutions as candidates.
3422 (demangle_nested_name): Use <unqualified-name>.
3423 (demangle_prefix): Likewise. Don't add template names as
3424 substitution candidates twice, or re-add a substitution or the
3425 last prefix component.
3426 (demangle_local_name): Adjust output format.
ae7d06ad
NC
3427
34282000-08-25 Alex Samuel <samuel@codesourcery.com>
74bcd529
DD
3429
3430 * cp-demangle.c (result_add_separated_char): Change parameter to
3431 int.
3432 (substitution_add): Don't check for duplicates. Check if
3433 previously allocated size is zero.
3434 (demangle_name): Remove duplicate check for std substitution.
3435 Clear template flag appropriately.
3436 (demangle_prefix): Remove argument to demangle_substitution.
3437 Don't check that template flag is already set.
3438 (demangle_operator_name): Add pt operator.
3439 (demangle_type): Don't treat r as built-in type. Remove argument
3440 to demangle_substitution. Fix substitution candidate mechanics.
3441 Handle <template-template-parm>s. Improve comments.
3442 (demangle_template_param): Don't handle template arg lists here.
3443 (demangle_substitution): Remove parameter.
3444 (print_usage): Remove extra fprintf option.
ae7d06ad
NC
3445
34462000-08-24 Greg McGary <greg@mcgary.org>
74bcd529
DD
3447
3448 * libiberty/random.c (end_ptr): Revert previous change.
ae7d06ad
NC
3449
34502000-08-24 Greg McGary <greg@mcgary.org>
74bcd529
DD
3451
3452 * libiberty/cplus-dem.c (cplus_demangle_opname, cplus_mangle_opname,
3453 demangle_expression, demangle_function_name): Use ARRAY_SIZE.
3454 * libiberty/random.c (end_ptr): Likewise.
ae7d06ad
NC
3455
34562000-08-23 Alex Samuel <samuel@codesourcery.com>
74bcd529
DD
3457
3458 * cp-demangle.c (result_close_template_list): Remove function.
3459 (result_add_separated_char): New function.
3460 (result_open_template_list): New macro.
3461 (result_close_template_list): Likewise.
3462 (demangle_prefix): Don't set template_p if the
3463 prefix ends with a ctor name.
3464 (demangle_type_ptr): Remove duplicate RETURN_IF_ERROR.
3465 (demangle_type): Check for template args after substitution.
3466 (demangle_template_args): Use result_open_template_list.
d3e85005 3467
ae7d06ad 34682000-08-02 Zack Weinberg <zack@wolery.cumb.org>
64e3a659 3469
ae7d06ad 3470 * pexecute.c: Don't use vfork. Initialize 'pid' before retry loop.
050823ca 3471
ae7d06ad 34722000-07-26 Dave Pitts <dpitts@cozx.com>
d6e83f5f
JL
3473
3474 * config/mh-openedition.h: Added -DLE370 definition.
3475
a9f34fb6
JL
34762000-07-26 Mark Elbrecht <snowball3@bigfoot.com>
3477
3478 * pexecute.c (pexecute) [__MSDOS__]: Change __GO32__ to
3479 __DJGPP__. Use P_WAIT instead of constant in the spawnv* call.
3480 Cast program to 'char *' in errmsg_arg assignment.
3481 (PWAIT_ERROR): Define.
3482 (pwait): Use PWAIT_ERROR. Adjust DJGPP's status code to conform
3483 to DJGPP's WIF* macros.
3484
90aaccd1 34852000-07-27 RodneyBrown <RodneyBrown@pmsc.com>
ae7d06ad 3486 Jeff Law <law@cygnus.com>
90aaccd1 3487
ae7d06ad 3488 * getcwd.c: Include string.h, stdlib.h for prototypes
443519c1 3489
90aaccd1 3490 * Makefile.in (rename.o, waitpid.o): Depend on config.h
ae7d06ad
NC
3491 * rename.c: Include config.h, unistd.h
3492 * waitpid.c: Include config.h, sys/wait.h
90aaccd1 3493
6ef554e3
HPN
34942000-07-24 Hans-Peter Nilsson <hp@axis.com>
3495
3496 * cplus-dem.c (work_stuff_copy_to_from): New.
3497 (delete_non_B_K_work_stuff): New.
3498 (delete_work_stuff): New.
3499 (mop_up): Break out work_stuff partly destruction to
3500 delete_non_B_K_work_stuff.
3501 (iterate_demangle_function): New.
3502 (demangle_prefix): Call iterate_demangle_function instead of
3503 demangle_function_name. Leave handling of name-signature
3504 __-delimiters to iterate_demangle_function.
3505 (demangle_integral_value): Strip an optional
3506 following underscore cautiously. Handle negative numbers.
3507
ae7d06ad 35082000-07-24 Daniel Berlin <dberlin@redhat.com>
e8865c28 3509
ae7d06ad 3510 * cplus-dem.c (demangle_signature): Change if (GNU_DEMANGLING) to
e8865c28
DB
3511 if (AUTO_DEMANGLING || GNU_DEMANGLING)
3512
ae7d06ad
NC
35132000-07-21 Alex Samuel <samuel@codesourcery.com>
3514
3515 * cp-demangle.c (demangle_ctor_dtor_name): Remove not-in-charge
3516 allocating ctor mangling.
3517 (demangle_array_type): Handle empty and non-constant array length.
3518
b1233257 35192000-07-23 Michael Sokolov <msokolov@ivan.Harhan.ORG>
62df2065
JL
3520 Jeff Law <law@cygnus.com>
3521
3522 * configure.in (AC_CHECK_HEADERS): Add time.h.
3523 (AC_HEADER_TIME): Add check.
3524 * configure, config.in: Regenerate.
3525 * getruntime.c: Portably #include <sys/time.h> and/or <time.h>.
3526
3527 * configure.in (AC_CHECK_HEADERS): Add limits.h.
3528 * configure, config.in: Regenerate.
3529 * sort.c: Portably #include <limits.h> and/or <sys/param.h>.
3530 * strtol.c, strtoul.c: #include "config.h". Portably #include
3531 <limits.h> and/or <sys/param.h>.
3532 * Makefile.in (strtol.o, strtoul.o): Update dependencies.
b1233257 3533
7d3ffcaf
JL
3534 * aclocal.m4 (libiberty_AC_DECLARE_ERRNO): New macro.
3535 * configure.in (libiberty_AC_DECLARE_ERRNO): Add check.
3536 * configure, config.in: Regenerate.
3537 * pexecute.c, strtol.c, strtoul.c: Declare errno if necessary.
3538
b1233257
JL
3539 * cp-demangle.c, mkstemps.c: #include <sys/types.h>.
3540
ae7d06ad
NC
35412000-07-21 Mike Stump <mrs@wrs.com>
3542
3543 * Makefile.in (xexit.o): Add dependency for config.h in xexit.c.
3544 * (vasprintf.o): Add dependency for config.h in vasprintf.c.
3545
35462000-07-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3547
3548 * cp-demangle.c (cp_demangle_type): Wrap in IN_LIBGCC2.
3549
3550 * setenv.c (setenv): Initialize variable `ep'.
3551
3552 * sigsetmask.c (abort): Prototype.
3553
3554 * vasprintf.c: Include config.h. Check ANSI_PROTOTYPES, not
3555 __STDC__ for stdarg.h include.
3556 (int_vasprintf): Prototype.
3557 (checkit): Prototype. Use VPARAMS/ANSI_PROTOTYPES/VA_START in
3558 definition. Cast `global_total_width' in comparison.
3559 (main): Prototype. Return a value.
3560
3561 * vfork.c (fork): Prototype.
3562
3563 * xexit.c: Include config.h.
3564
9adf30b2
JL
35652000-07-20 Joseph S. Myers <jsm28@cam.ac.uk>
3566
3567 * cplus-dem.c (demangle_fund_type): Make 'dec' an unsigned int,
3568 and print it with %u.
3569
2ed78d1b
HPN
35702000-07-17 Hans-Peter Nilsson <hp@axis.com>
3571
3572 * testsuite/regress-demangle (failed test): Show result and
3573 expected output.
3574
0473bdf7
AH
35752000-07-07 Andrew Haley <aph@cygnus.com>
3576
3577 * cplus-dem.c (main): fflush() after emitting last char before
3578 waiting for input.
3579
03d5f569
JM
35802000-06-28 Alex Samuel <samuel@codesourcery.com>
3581
3582 * cp-demangle.c (demangle_encoding): Accept no substitutions.
3583 (demangle_name): Handle <substitution> followed by
3584 <unqualified-template-name>.
3585 (demangle_type): Follow special substitutions with
3586 <class-enum-type>
3587 (demangle_subtitution): Set template_p for special substitutions.
3588 (main): Fix typos.
ae7d06ad 3589
03d5f569
JM
35902000-06-27 Alex Samuel <samuel@codesourcery.com>
3591
3592 * cp-demangle.c (demangle_special_name): Swap base and derived
3593 class when demangling construction vtables.
3594
35952000-06-21 Alex Samuel <samuel@codesourcery.com>
3596
3597 * cp-demangle.c: Don't include ctype.h.
3598 (IS_DIGIT): New macro.
3599 (IS_ALPHA): Likewise. Use IS_DIGIT and IS_ALPHA throughout
3600 instead of isdigit and isalpanum.
3601 (demangling_def): Make name and next const pointers.
3602 (STATUS_ALLOCATION_FAILED): New status code.
3603 (dyn_string_append_space): Handle failure in
3604 dyn_string_append_char.
3605 (int_to_dyn_string): Likewise. Change return value to status_t.
3606 (string_list_new): Handle failure of dyn_string_init.
3607 (result_close_template_list): Change return type to status_t.
3608 Handle failure in dyn_string_append.
3609 (result_push): Change return value to status_t. Handle failure in
3610 string_list_new. Handle failure of result_push throughout.
3611 (substitution_add): Change return value to status_t. Handle
3612 dyn_string failures. Handle failure of substitution_add
3613 throughout.
3614 (template_arg_list_new): Return NULL on allocation failure.
3615 (result_append_string): Return STATUS_ALLOCATION_FAILED on error.
3616 Handle error result throughout.
3617 (result_append): Likewise.
3618 (result_append_char): Likewise.
3619 (result_append_space): Likewise.
3620 (demangling_new): Make argument a const pointer. Handle
3621 allocation failures.
3622 (demangle_template_args): Handle failure in template_arg_list_new
3623 and result_close_template_list.
3624 (demangle_discriminator): Return if int_to_dyn_string fails.
3625 (cp_demangle): Likewise.
3626 (cp_demangle_type): New function.
3627 (cplus_demangle_new_abi): Don't call dyn_string_delete. Abort on
3628 memory allocation failure.
3629 (main): Likewise.
3630 * dyn-string.c (RETURN_ON_ALLOCATION_FAILURE): Define if
3631 IN_LIBGCC2.
3632 (dyn_string_init): Change return value to int. Handle
3633 RETURN_ON_ALLOCATION_FAILURE case.
3634 (dyn_string_new): Handle RETURN_ON_ALLOCATION_FAILURE case.
3635 (dyn_string_release): Delete the dyn_string.
3636 (dyn_string_resize): Handle RETURN_ON_ALLOCATION_FAILURE case.
3637 (dyn_string_copy): Change return type to int.
3638 (dyn_string_copy_cstr): Likewise.
3639 (dyn_string_prepend): Likewise.
3640 (dyn_string_prepend_cstr): Likewise.
3641 (dyn_string_insert): Likewise.
3642 (dyn_string_insert_cstr): Likewise.
3643 (dyn_string_append): Likewise.
3644 (dyn_string_append_cstr): Likewise.
3645 (dyn_string_append_char): Likewise.
3646 (dyn_string_substring): Likewise.
ae7d06ad 3647
eb383413 36482000-06-09 Zack Weinberg <zack@wolery.cumb.org>
9cc28cc8 3649
eb383413
L
3650 * cp-demangle.c (demangle_operator_name): Add spaces before
3651 names beginning with a letter: delete, delete[], new, new[],
3652 sizeof.
3653 (demangle_special_name): Handle TF <type> and TJ <type>.
9cc28cc8 3654
eb383413
L
3655Thu Jun 8 18:52:24 2000 Philippe De Muyter <phdm@macqel.be>
3656
3657 * cp-demangle.c (template_arg_list_new): Revert previous PARAMS patch.
3658
3659Thu Jun 8 09:25:54 2000 Philippe De Muyter <phdm@macqel.be>
3660
3661 * cp-demangle.c (stdio.h): File included unconditionaly.
3662 (template_arg_list_new): Parameter list is PARAMS ((void)), not ().
3663 * dyn-string.c (stdio.h): File included.
3664 * partition.c (partition_print): No `&' needed to take the address of
3665 a function.
3666
36672000-06-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3668
3669 * configure.in (ac_libiberty_warn_cflags): Add -pedantic.
ae7d06ad 3670
eb383413
L
3671 * choose-temp.c (try, choose_temp_base, make_temp_file): Constify.
3672
3673 * cp-demangle.c (demangle_char): Change parameter from char to int.
3674 (demangle_expression, demangle_expr_primary): Remove extra
3675 semi-colon in prototype.
3676
3677 * dyn-string.c (dyn_string_append_char): Change parameter from
3678 char to int.
3679
3680 * memcmp.c (memcmp): Constify.
3681
3682 * mkstemps.c (gcc_uint64_t): Mark GNUC `long long' case with
3683 __extension__.
3684
3685 * partition.c (elem_compare): Prototype. Don't cast away
3686 const-ness.
3687
3688 * setenv.c (setenv): Use braces to avoid ambiguous `else'.
ae7d06ad 3689
eb383413
L
36902000-06-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3691
3692 * Makefile.in (cp-demangle.o): Depend on $(INCDIR)/demangle.h.
3693
3694 * cp-demangle.c: Include demangle.h.
3695 (template_arg_list_new): DeANSIfy.
3696 (cp_demangle): Make static and add prototype.
3697 (operator_code, operators): Constify.
3698 (demangle_operator_name): Likewise for variables `p1', `p2' and `p'.
3699
37002000-06-05 Alex Samuel <samuel@codesourcery.com>
3701
3702 * cp-demangle.c (demangle_prefix): Cast argument to isdigit to
3703 unsigned char.
3704 (demangle_unqualified_name): Likewise.
3705 (demangle_number_literally): Likewise.
3706 (demangle_type): Likewise.
3707 (demangle_substitution): Likewise.
3708 (is_mangled_char): Likewise, for isalnum.
3709
37102000-06-04 Alex Samuel <samuel@codesourcery.com>
3711
3712 * Makefile.in (CFILES): Add cp-demangle.c and dyn-string.c.
3713 (REQUIRED_OFILES): Add cp-demangle.o and dyn-string.o.
3714 (cp-demangle.o): New dependency.
3715 (dyn-string.o): Likewise.
3716
3717 * dyn-string.c: Move here from gcc/dyn-string.c. Add new functions.
3718
3719 * cplus-dem.c (libiberty_demanglers): Add initializer for new-ABI
3720 demangler.
3721 (cplus_demangle): Call cplus_demangle_new_abi if in new-ABI
3722 demangling mode.
3723 (gnu_new_abi_symbol_characters): New function.
3724 (main): Use gnu_new_abi_symbol_characters. * cp-demangle.c: New
3725 file.
3726 * cp-demangle.c: New file.
ae7d06ad 3727
f03aa80d
AC
3728Tue May 30 16:45:25 2000 Andrew Cagney <cagney@b1.cygnus.com>
3729
3730 * floatformat.c: Add name to each floatformat field.
3731
77bfb694
JL
3732Tue May 30 15:07:52 2000 Jeffrey A Law (law@cygnus.com)
3733
3734 * Makefile.in (objalloc.o): Depend on config.h
3735
5c82d20a
ZW
37362000-05-29 Zack Weinberg <zack@wolery.cumb.org>
3737
eb383413 3738 * hashtab.c, partition.c, sort.c, xmemdup.c: Include string.h
5c82d20a
ZW
3739 if HAVE_STRING_H.
3740 * pexecute.c, xexit.c: Include stdlib.h if HAVE_STDLIB_H.
3741 * objalloc.c: Include config.h. Include stdlib.h and don't
3742 declare malloc or free if HAVE_STDLIB_H.
3743 * strerror.c, strsignal.c: Include stdlib.h if HAVE_STDLIB_H,
3744 else declare malloc without prototype. Include string.h if
3745 HAVE_STRING_H, else declare memset without prototype. Don't
3746 include stddef.h.
3747
eb383413
L
37482000-05-23 Mike Stump <mrs@wrs.com>
3749
3750 * Makefile.in (xmalloc.o): Add dependency for config.h, fixes make
8aefe91a 3751 -j3.
eb383413
L
3752
37532000-05-18 J. David Anglin <dave@hiauly1.hia.nrc.ca>
3754
3755 * xmalloc.c: Include config.h for HAVE_SBRK definition.
3756
37572000-05-16 Horst von Brand <vonbrand@sleipnir.valparaiso.cl>
3758
ae7d06ad 3759 * hashtab.c (hash_pointer): Delete low-order bits which are
eb383413
L
3760 probably zero, also eliminate a warning on alpha.
3761
37622000-05-15 David Edelsohn <edelsohn@gnu.org>
3763
3764 * Makefile.in: Change "pic" to depend on $(PICFLAG), not
3765 on $(enable_shared).
3766
37672000-05-10 Jakub Jelinek <jakub@redhat.com>
3768
3769 * config.table: Use mh-sparcpic for sparc*-*-*.
3770
37712000-05-08 Nick Clifton <nickc@cygnus.com>
3772
3773 * Makefile.in (CFILES): Add strncmp.c.
3774 (NEEDED): Add strncmp.
3775
37762000-05-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5c82d20a 3777
eb383413
L
3778 * cplus-dem.c (cplus_demangle_opname, demangle_function_name):
3779 Cast the arguments to `islower' to `unsigned char'.
3780 (print_demangler_list): Prototype.
3781
3782Thu May 4 17:14:41 2000 Philippe De Muyter <phdm@macqel.be>
3783
3784 * sort.c (UCHAR_MAX): Provide fallback definition.
3785
37862000-04-29 Alexandre Oliva <aoliva@cygnus.com>
010c70e1
AO
3787
3788 * Makefile.in (maintainer-clean-subdir): Fix handling of empty
3789 SUBDIRS.
3790
eb383413
L
37912000-04-28 Kenneth Block <block@zk3.dec.com>
3792 Jason Merrill <jason@casey.cygnus.com>
3793
ae7d06ad
NC
3794 * cplus-dem.c (libiberty_demanglers): New table for demangle styles.
3795 (cplus_demangle_set_style): New function for setting style.
3796 (cplus_demangle_name_to_style): New function to translate name.
eb383413
L
3797
37982000-04-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3799
3800 * aclocal.m4: New file with new test libiberty_AC_FUNC_STRNCMP.
3801
3802 * configure.in (AC_CHECK_HEADERS): Add sys/mman.h fcntl.h.
3803 (libiberty_AC_FUNC_STRNCMP): Invoke.
3804
3805 * strncmp.c: New file.
3806
3807Thu Apr 27 16:58:43 MET DST 2000 Jan Hubicka <jh@suse.cz>
3808
3809 * hashtab.c (htab_expand): Add prototype.
3810 (find_empty_slot_for_expand): Likewise.
3811
38122000-04-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3813
3814 * hashtab.c (hash_pointer, eq_pointer): Make definition static to
3815 match prototype.
3816 (htab_expand): Cast the return value of xcalloc.
3817
38182000-04-24 Mark Mitchell <mark@codesourcery.com>
3819
3820 * hashtab.c (hash_pointer): New function.
3821 (eq_pointer): Likewise.
3822 (htab_hash_pointer): New variable.
3823 (htab_eq_pointer): Likewise.
3824
38252000-04-23 Mark Mitchell <mark@codesourcery.com>
3826
3827 * sort.c (sort_pointers): Fix endianness bugs.
3828
3829 * sort.c: New file.
3830 * Makefile.in (CFILES): Add sort.c
3831 (REQUIRED_OFILES): Add sort.o.
3832 (sort.o): New target.
3833
19be4303
JL
38342000-04-21 Michael Sokolov <msokolov@ivan.Harhan.ORG>
3835
3836 * Makefile.in (*-subdir): Revamp slightly to avoid losing on
3837 4.3BSD systems.
3838
eb383413
L
3839Tue Apr 18 16:23:31 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
3840
3841 * hashtab.c: Various minor cleanups.
3842 (htab_find_slot_with_hash): INSERT is now enum insert_option.
3843 (htab_find_slot): Likewise.
3844
38452000-04-16 Dave Pitts <dpitts@cozx.com>
3846
3847 * cplus-dem.c (cplus_demangle_opname): Changed to use islower.
ae7d06ad 3848
afe36a78
RH
38492000-04-05 Richard Henderson <rth@cygnus.com>
3850
3851 * splay-tree.c (splay_tree_remove): New.
3852
eb383413
L
38532000-03-30 Mark Mitchell <mark@codesourcery.com>
3854
3855 * hashtab.c (find_empty_slot_for_expand): Use hashval_t for hash
3856 codes.
3857 (htab_find_with_hash): Likewise.
3858 (htab_find_slot_with_hash): Likewise.
ae7d06ad 3859
eb383413
L
38602000-03-29 Zack Weinberg <zack@wolery.cumb.org>
3861
3862 * hashtab.c (htab_find_with_hash): Avoid calculating hash2
3863 unless it will be used. Rearrange loop for better
3864 optimization.
3865 (higher_prime_number): Add static prototype.
3866
b4fe2683
JM
3867Thu Mar 16 01:33:58 2000 Jeffrey A Law (law@cygnus.com)
3868
3869 * Makefile.in (partition.o): Depend on config.h
3870
38712000-03-14 Bernd Schmidt <bernds@cygnus.co.uk>
3872
3873 * hashtab.c (find_empty_slot_for_expand): New function.
3874 (htab_expand): Use it instead of htab_find_slot.
3875 (htab_find_with_hash): Renamed from htab_find; now accepts extra
3876 argument HASH.
3877 (htab_find_slot_with_hash): Likewise for htab_find_slot.
3878 (htab_find): New wrapper function.
3879 (htab_find_slot): Likewise.
3880 (htab_traverse): Pass slot, not entry, to called function.
3881
38822000-03-09 Alex Samuel <samuel@codesourcery.com>
3883
3884 * Makefile.in (CFILES): Add partition.c.
3885 (REQUIRED_OFILES): Add partition.o.
3886 (partition.o): New rule.
3887 * partition.c: New file.
ae7d06ad 3888
b4fe2683
JM
38892000-03-09 Zack Weinberg <zack@wolery.cumb.org>
3890
3891 * hashtab.c (htab_create): Set del_f.
3892 (htab_delete, htab_empty, htab_remove_elt, htab_clear_slot):
3893 Use it.
3894
38952000-03-08 Zack Weinberg <zack@wolery.cumb.org>
3896
3897 * hashtab.c: Remove debugging variables (all_searches,
3898 all_collisions, all_expansions). Delete
3899 all_hash_table_collisions.
3900 (create_hash_table, delete_hash_table, empty_hash_table,
3901 find_hash_table_entry, remove_element_from_hash_table_entry,
3902 clear_hash_table_slot, traverse_hash_table, hash_table_size,
3903 hash_table_elements_number, hash_table_collisions): Rename to:
3904 htab_create, htab_delete, htab_empty, htab_find_slot,
3905 htab_remove_elt, htab_clear_slot, htab_traverse, htab_size,
3906 htab_elements, htab_collisions.
3907 (htab_find): New function, handles common case where you don't
3908 plan to add or delete an entry.
3909 (htab_expand): Don't create a whole new table, just a new
3910 entry vector.
3911 (htab_find_slot): Simplify logic.
3912
08372f14
ILT
39131999-08-03 Ian Lance Taylor <ian@zembu.com>
3914
3915 * floatformat.c: Add casts to avoid signed/unsigned warnings.
3916 * pexecute.c: Add ATTRIBUTE_UNUSED as needed on Unix.
3917
3918 * Makefile.in (install_to_libdir): Change $(TARGETLIB).n to
3919 $(TARGETLIB)n so it works on MSDOS.
3920 (install_to_tooldir): Likewise.
3921
9c8ac5a9
ILT
39221999-07-21 Ian Lance Taylor <ian@zembu.com>
3923
3924 From Mark Elbrecht:
3925 * makefile.dos: Remove; obsolete.
8f36e47c 3926 * configure.bat: Remove; obsolete.
9c8ac5a9 3927
0c0a36a4
ILT
39281999-07-11 Ian Lance Taylor <ian@zembu.com>
3929
3930 * splay-tree.c (splay_tree_insert): Add initialization to avoid
3931 warning.
3932
39332000-01-04 Mumit Khan <khan@xraylith.wisc.edu>
3934
3935 * pexecute.c: Conditionally include string.h.
b4fe2683 3936 (fix_argv): Handle embedded whitespace in args for Mingw32.
0c0a36a4
ILT
3937
39382000-01-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3939
3940 * configure.in (ac_libiberty_warn_cflags): Turn on warnings if
3941 we're using gcc.
3942
3943 * Makefile.in (COMPILE.c): Add @ac_libiberty_warn_cflags@
3944
39451999-12-27 Geoff Keating <geoffk@cygnus.com>
3946
3947 * vasprintf.c (int_vasprintf): Don't re-read the format character
3948 as this mishandles strings like '%%s'.
3949
39501999-12-05 Mark Mitchell <mark@codesourcery.com>
3951
3952 * splay-tree.c (splay_tree_new): Use struct splay_tree_node_s
3953 rather than struct splay_tree_node.
3954 (splay_tree_insert): Use struct splay_tree_s rather than struct
3955 splay_tree.
3956
3957Sun Nov 28 00:59:39 1999 Philippe De Muyter <phdm@macqel.be>
3958
3959 * hashtab.c (sys/types.h): File included.
3960
39611999-11-22 Jason Merrill <jason@casey.cygnus.com>
3962
3963 * strtoul.c, strtol.c, random.c: Remove advertising clause from
3964 BSD license, pursuant with
3965
3966 ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change
3967
3968Wed Nov 10 09:42:39 1999 Jeffrey A Law (law@cygnus.com)
3969
3970 * hashtab.c: Include stdio.h.
3971
3972Mon Nov 8 09:23:41 1999 Jeffrey A Law (law@cygnus.com)
3973
3974 * hashtab.c (traverse_hash_table): Protect prototype with PARAMS.
3975
3976Tue Nov 2 03:23:13 1999 Philippe De Muyter <phdm@macqel.be>
3977
3978 * xstrdup (sys/types.h): Include this file.
3979
39801999-10-28 Nathan Sidwell <nathan@acm.org>
3981
3982 * Makefile.in (SUBDIRS): New macro.
3983 (mostlyclean, clean, distclean, maintainer-clean): Adjust to
3984 avoid multiple subdirectory cleaning.
3985 (*-subdir): Use SUBDIRS.
3986
39871999-10-25 Jim Kingdon <http://developer.redhat.com/>
3988
3989 * cplus-dem.c: Move declarations of standard_symbol_characters and
3990 hp_symbol_characters inside #ifdef MAIN to avoid compiler
3991 warnings.
3992
39931999-10-23 08:51 -0700 Zack Weinberg <zack@bitmover.com>
3994
3995 * hashtab.c (find_hash_table_entry): When returning a
3996 DELETED_ENTRY slot, change it to EMPTY_ENTRY first.
3997 (clear_hash_table_slot): New function which deletes an entry
3998 by its position in the table, not its value.
3999 (traverse_hash_table): New function which calls a hook
4000 function for every live entry in the table.
4001
40021999-10-19 Mark Mitchell <mark@codesourcery.com>
4003
4004 * cplus-dem.c (INTBUF_SIZE): New macro.
4005 (string_append_template_idx): New function.
4006 (demangle_expression): Likewise.
4007 (demangle_integral_value): Use it.
4008 (demangle_real_value): New function, split out from ...
4009 (demangle_template_value_parm): ... here. Use
4010 string_append_template_idx. Use demangle_real_value.
4011 (demangle_template): Use string_append_template_idx.
4012 (demangle_qualified): Use consume_count_with_underscores.
4013 (get_count): Tweak formatting.
4014 (do_type): Use string_append_template_idx.
b4fe2683 4015
0c0a36a4
ILT
40161999-10-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4017
4018 * calloc.c: Add a public domain notice.
4019
4020Mon Oct 18 02:30:47 1999 Philippe De Muyter <phdm@macqel.be>
4021
4022 * setenv.c (sys/types.h, stdio.h): Include those files unconditionaly.
4023
4024Fri Oct 15 01:47:51 1999 Vladimir Makarov <vmakarov@loony.cygnus.com>
4025
4026 * Makefile.in (CFILES): Add hashtab.c
4027 (REQUIRED_OFILES): Add hashtab.o
4028 (hashtab.o): Add dependencies.
4029 * hashtab.c: New file
4030
4031Wed Oct 13 01:16:47 1999 Mumit Khan <khan@xraylith.wisc.edu>
4032
4033 * basename.c (DIR_SEPARATOR): New macro.
4034 (DIR_SEPARATOR_2): Likewise.
4035 (HAVE_DOS_BASED_FILESYSTEM): Likewise.
4036 (IS_DIR_SEPARATOR): Likewise.
4037 (main): Handle MSDOS style pathname.
4038
40391999-10-11 Mark Mitchell <mark@codesourcery.com>
4040
4041 * cplus-dem.c (do_type): Handle pointer to member types whose
4042 enclosing classes have namespace scope.
4043
4044Sun Oct 10 01:23:50 1999 Marc Espie <espie@cvs.openbsd.org>
4045
4046 * config.table: Provide a backup shell for executing move-if-change.
4047
40481999-10-02 Mark Mitchell <mark@codesourcery.com>
4049
4050 * xmalloc.c (xmalloc): Fix spelling error.
4051 (xcalloc, xrealloc): Likewise.
4052
40531999-10-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4054
4055 * cplus-dem.c (fancy_abort, demangle_integral_value,
4056 demangle_arm_hp_template, recursively_demangle,
4057 standard_symbol_characters, hp_symbol_characters, main): Add prototype.
4058 (program_name, program_version, fatal): Constify a char*.
4059 (usage, fatal): Mark with ATTRIBUTE_NORETURN.
4060 (main): Call return, not exit.
4061
40621999-09-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4063
4064 * choose-temp.c: Remove obsolete comment about gcc.
4065 (make_temp_file): Constify a char*.
4066
4067Wed Sep 8 20:03:28 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4068
4069 * xmemdup.c: Include sys/types.h.
4070
40711999-09-07 Jeff Garzik <jgarzik@pobox.com>
4072
4073 * xmemdup.c: New xmemdup function.
4074 * Makefile.in, makefile.vms, vmsbuild.com: Use xmemdup.[co].
4075
4076Tue Sep 7 23:32:18 1999 Linas Vepstas <linas@linas.org>
4077
b4fe2683 4078 * config.table: Add openedition target.
0c0a36a4
ILT
4079 * config/mh-openedition: New file.
4080
4081Thu Sep 2 01:36:12 1999 Marc Espie <espie@cvs.openbsd.org>
4082
4083 * pexecute.c (pexecute): Fill in temp_base when needed.
4084
40851999-08-31 Richard Henderson <rth@cygnus.com>
4086
4087 * getpwd.c: Check HAVE_GETCWD before defining it away.
4088
40891999-08-30 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4090
4091 * Makefile.in (CFILES): Add calloc.c and getpwd.c.
4092 (REQUIRED_OFILES): Add getpwd.o.
4093 (getpwd.o): Add target.
4094
4095 * configure.in (AC_PREREQ): Bump to 2.13.
4096 (AC_CHECK_HEADERS): Add check for <sys/stat.h>.
4097
4098 * getpwd.c: New file, moved here from gcc.
4099
41001999-08-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4101
4102 * cplus-dem.c (gnu_special): Cast a `size_t' to `long' when
4103 comparing against a signed quantity.
4104 (arm_special): Likewise.
4105 (demangle_fund_type): Likewise.
4106 (do_hpacc_template_const_value): Mark parameter `work' with
b4fe2683 4107 ATTRIBUTE_UNUSED.
0c0a36a4
ILT
4108 (main): Constify variable `valid_symbols'.
4109
4110Tue Aug 24 02:50:45 1999 Philippe De Muyter <phdm@macqel.be>
4111
4112 * strtoul.c (strtoul): Add parentheses around && within ||.
4113
4114Fri Aug 6 23:32:29 1999 Daniel Jacobowitz <drow@drow.them.org>
4115
4116 * Makefile.in (FLAGS_TO_PASS): Include prefix, exec_prefix,
4117 libdir, libsubdir and tooldir.
4118
41191999-08-01 Mark Mitchell <mark@codesourcery.com>
4120
4121 * splay-tree.c (splay_tree_insert): Return the new node.
4122
35ca97ea
RH
41231999-07-14 Richard Henderson <rth@cygnus.com>
4124
b4fe2683 4125 * argv.c: Include stdlib.h and string.h instead of
35ca97ea
RH
4126 prototyping directly.
4127 * choose-temp.c: Conditionally include string.h.
4128
0c0a36a4
ILT
41291999-07-12 Jason Merrill <jason@yorick.cygnus.com>
4130
4131 * Makefile.in (NEEDED): Add bcmp, bcopy, bzero.
4132
af32ff69
ILT
41331999-07-11 Ian Lance Taylor <ian@zembu.com>
4134
4135 * splay-tree.c (splay_tree_insert): Add initialization to avoid
4136 warning.
4137
0c0a36a4
ILT
41381999-07-07 Jason Merrill <jason@yorick.cygnus.com>
4139
4140 * Makefile.in (needed-list): Only include stuff we actually need
4141 for libstdc++.
4142
41431999-06-21 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
4144
4145 * configure.in (checkfuncs): Add gettimeofday.
4146 * config.in, configure: Regenerated.
4147
4148Mon Jun 21 05:56:01 1999 Mumit Khan <khan@xraylith.wisc.edu>
4149
4150 * configure.in (*-*-uwin*): UWIN has sys_{errlist,nerr} even if
4151 the test fails.
4152 * configure: Regenerate.
4153
41541999-06-10 Mike Stump <mrs@wrs.com>
4155
4156 * Makefile.in (setenv.o): Add config.h dep for setenv.o to fix
4157 parallel builds.
4158
41591999-05-28 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4160
4161 * putenv.c: Include ansidecl.h to define `const'.
4162 * setenv.c: Likewise.
4163
4164Wed May 26 03:58:20 1999 "Melissa O'Neill" <oneill@cs.sfu.ca>
4165
4166 * Makefile.in (CFILES): Add putenv.c and setenv.c.
4167 * configure.in (funcs): Add putenv and setenv.
4168 (AC_CHECK_FUNCS): Check for putenv and setenv.
4169 * configure: Rebuilt.
4170 * putenv.c setenv.c: New files.
4171
4172 * getcwd.c (getcwd): If pathname is NULL, then obtain SIZE
4173 bytes of space using malloc.
4174
4175Mon May 17 01:42:34 1999 Stu Grossman <grossman@babylon-5.cygnus.com>
4176
4177 * cplus-dem.c (demangle_fund_type (near 'I' case)): Don't advance
4178 the *mangled pointer beyond the end of the string. Clean up code to
4179 match prevailing coding style.
4180
41811999-05-13 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
4182
4183 * tmpnam.c (L_tmpnam): Fix typo.
4184
4185Thu May 13 01:14:46 1999 Marc Espie <espie@cvs.openbsd.org>
4186
4187 * cplus-dem.c (standard_symbol_characters): Renamed from
4188 standard_symbol_alphabet. No longer modify TABLE.
4189 (hp_symbol_characters): Renamed from hp_symbol_alphabet. No longer
4190 modify TABLE.
4191 (main): Corresponding changes. Use strchr to determine if a
4192 character is valid.
4193
e9868447
JB
41941999-05-11 Jim Blandy <jimb@zwingli.cygnus.com>
4195
4196 * cplus-dem.c (main): Use table lookup to distinguish identifier
4197 characters from non-identifier characters.
4198 (standard_symbol_alphabet, hp_symbol_alphabet): New functions.
4199
33fbbfbc
RH
4200Thu May 6 20:34:42 1999 Fred Fish <fnf@be.com>
4201
4202 * configure.in (sys/resource.h): Add to AC_CHECK_HEADERS list.
4203 * getruntime.c: Only attempt to include sys/resource.h and
4204 use getrusage if both HAVE_GETRUSAGE and HAVE_SYS_RESOURCE_H
4205 are defined.
4206
0c0a36a4
ILT
4207Mon Apr 26 01:36:06 1999 Donn Terry (donn@interix.com)
4208
4209 * configure.in (alloca detection): Handle alloca directly for interix.
4210 * configure: Rebuilt.
4211
4212Sun Apr 25 01:18:21 1999 Mumit Khan <khan@xraylith.wisc.edu>
4213
4214 * choose-temp.c (DIR_SEPARATOR): Use '\\' only for native windows32.
4215
252b5132
RH
42161999-04-20 Jim Blandy <jimb@zwingli.cygnus.com>
4217
4218 Fix from Dale Hawkins:
b4fe2683 4219 * cplus-dem.c (mop_up): Set typevec_size to zero, so it'll be
252b5132
RH
4220 reallocated properly if we use it again.
4221
4222 * cplus-dem.c (demangle_fund_type): Check for buffer overrun. Be
4223 stricter about syntax. Always null-terminate string.
4224
c1687039
ILT
4225Thu Apr 15 23:00:55 1999 Mumit Khan <khan@xraylith.wisc.edu>
4226
4227 * configure.in (checkfuncs): Check for sbrk.
4228 * config.in: Rebuilt.
4229 * configure: Likewise.
4230 * xmalloc.c: Use HAVE_SBRK instead of the host specific definitions.
4231
0c0a36a4
ILT
42321999-04-12 Jim Blandy <jimb@zwingli.cygnus.com>
4233
4234 Fix from Marcus Daniels:
4235 * cplus-dem.c (demangle_fund_type): Don't run off the end of the
4236 identifier looking for another underscore.
4237
4238Sun Apr 11 23:20:59 1999 Mumit Khan <khan@xraylith.wisc.edu>
4239
4240 * pexecute.c: Change all references to __UWIN__ to _UWIN.
4241 * xmalloc.c: Likewise.
4242 (xcalloc): UWIN has sbrk.
4243 (xrealloc): Fix guard macro.
4244
252b5132
RH
42451999-04-11 Richard Henderson <rth@cygnus.com>
4246
4247 * alloca-conf.h (alloca) [C_ALLOCA]: Don't use Gcc builtin
4248 or <alloca.h>.
4249 * clock.c (GNU_HZ): New definition.
4250 (clock): Use it.
4251 * getruntime.c: Likewise.
4252
4253 * config.table: Use mh-beos.
4254 * config/mh-beos: New file.
4255
0c0a36a4
ILT
42561999-04-11 Mark Mitchell <mark@codesourcery.com>
4257
4258 * cplus-dem.c (demangle_template_value_parm): Handle
4259 pointers-to-members.
4260 (do_type): Handle template parameters as qualifiers.
4261
252b5132
RH
42621999-04-01 Jim Blandy <jimb@zwingli.cygnus.com>
4263
4264 * cplus-dem.c: Attempt to handle overflows in counts with some
4265 semblance of grace.
4266 (consume_count): Detect overflows. Return -1 to indicate errors,
4267 instead of zero.
4268 (demangle_template_value_parm, demangle_template): Handle change
4269 to consume_count's return convention.
4270
0c0a36a4
ILT
42711999-04-05 Tom Tromey <tromey@cygnus.com>
4272
4273 * testsuite/regress-demangle: New file.
4274 * testsuite/demangle-expected: New file.
252b5132 4275
0c0a36a4
ILT
4276 * Makefile.in (all, check, installcheck, info, install-info,
4277 clean-info, dvi, install, etags, tags, mostlyclean, clean,
4278 distclean, maintainer-clean, realclean): Depend on corresponding
4279 `-subdir' target.
4280 (all-subdir check-subdir installcheck-subdir info-subdir
4281 install-info-subdir clean-info-subdir dvi-subdir
4282 install-info-subdir etags-subdir mostlyclean-subdir clean-subdir
4283 distclean-subdir maintainer-clean-subdir): New target.
4284 * testsuite/Makefile.in: New file.
4285 * configure: Rebuilt.
4286 * configure.in: Create testsuite/Makefile.
252b5132
RH
4287
42881999-04-02 Mark Mitchell <mark@codesourcery.com>
4289
4290 * splay-tree.h (splay_tree_compare_pointers): Define.
4291
42921999-03-30 Mark Mitchell <mark@codesourcery.com>
4293
4294 * splay-tree.c (splay_tree_compare_ints): Define.
4295
42961999-03-30 Tom Tromey <tromey@cygnus.com>
4297
4298 * cplus-dem.c (consume_count): If `count' wraps, return 0 and
4299 don't advance input pointer.
4300 (demangle_class_name): If consume_count didn't find a count, do
4301 nothing. Don't bother with `strlen' sanity check; consume_count
4302 does it for us.
4303
43041999-03-16 Stan Shebs <shebs@andros.cygnus.com>
4305
4306 From Art Haas <ahaas@neosoft.com>:
4307 * cplus-dem.c (demangle_prefix): Don't grab all the '__' strings
4308 when doing arm or hp style.
4309 (demangle_nested_args): Decr forgetting_types field when done.
b4fe2683 4310
252b5132
RH
4311Thu Mar 11 01:22:58 1999 Mumit Khan <khan@xraylith.wisc.edu>
4312
4313 * pexecute.c (__CYGWIN32__): Rename to
4314 (__CYGWIN__): this.
4315 * xmalloc.c: Likewise.
4316
4317 Changes to support i386-pc-uwin.
4318 * configure.in (*-*-uwin*): Workaround for vfork bug.
4319 * configure: Regenerate.
4320 * pexecute.c (pexecute): Be like standard Unix.
4321 (pwait): Likewise.
4322 * xmalloc.c (first_break): Define.
4323 (xmalloc_set_program_name): Use.
4324 (xmalloc): Use.
4325
4326Thu Mar 11 01:07:55 1999 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
4327
4328 * config.table: Cleanup and add mh-*pic handling for alpha, arm, powerpc
4329
4330Sun Feb 28 22:30:44 1999 Geoffrey Noer <noer@cygnus.com>
4331
4332 * config.table: Check cygwin*, not cygwin32*.
4333
4334Tue Feb 9 16:39:01 1999 Dave Brolley <brolley@cygnus.com>
4335
4336 * Makefile.in: Change mkstemp -> mkstemps.
4337
4338Tue Feb 9 01:12:27 1999 Marc Espie <Marc.Espie@liafa.jussieu.fr>
4339
4340 * Makefile.in (REQUIRED_OFILES): remove mkstemp.o
4341 * configure.in (funcs): Check for and conditionally add mkstemps to
4342 the list of functions libiberty will provide.
4343 * configure: Rebuilt.
b4fe2683 4344
252b5132
RH
4345Wed Feb 3 00:01:15 1999 Mumit Khan <khan@xraylith.wisc.edu>
4346
b4fe2683 4347 * clock.c (HZ): Define in terms of (ISO C) CLOCKS_PER_SEC on
252b5132
RH
4348 platforms that don't have HZ.
4349 * getruntime.c (HZ): Likewise.
4350
4351Sat Jan 30 13:28:04 1999 Richard Henderson <rth@cygnus.com>
4352
4353 * Makefile.in (xstrdup.o): Depend on config.h.
4354
4355Wed Jan 13 07:26:44 1999 H.J. Lu (hjl@gnu.org)
4356
4357 * cplus-dem.c (mop_up): Set work->previous_argument to NULL after
4358 freeing it.
4359
4360Wed Jan 13 14:16:36 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4361
4362 * xstrdup.c (xstrdup): Switch from strcpy to memcpy for speed.
4363
4364Tue Jan 5 15:58:29 1999 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
4365
4366 * Makefile.in (CFILES): fix typo, splay-tree.c instead of
4367 splay-tree.o.
4368
43691999-01-04 Jason Molenda (jsm@bugshack.cygnus.com)
4370
4371 * configure.in: Require autoconf 2.12.1 or higher.
4372
43731998-12-30 Michael Meissner <meissner@cygnus.com>
4374
4375 * random.c (NULL): Don't redefine NULL if it is already defined.
4376
4377Tue Dec 22 09:43:35 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4378
4379 * argv.c (buildargv): Cast the result of alloca in assignment.
4380
4381 * choose-temp.c: Include stdlib.h.
4382
4383 * cplus-dem.c (demangle_arm_pt): Remove unused prototype.
8aefe91a
DD
4384 (snarf_numeric_literal): Constify first parameter.
4385 (code_for_qualifier): Avoid a gcc extension, make the parameter an
4386 int, not a char.
252b5132
RH
4387 (demangle_qualifier): Likewise.
4388 (demangle_signature): Cast the argument of a ctype function to
4389 unsigned char.
4390 (arm_pt): Add parens around assignment used as truth value.
4391 (demangle_arm_hp_template): Constify variable `args'.
4392 (do_hpacc_template_const_value): Cast the argument of a ctype
4393 function to unsigned char.
4394 (do_hpacc_template_literal): Remove unused variable `i'.
4395 (snarf_numeric_literal): Constify parameter `args'.
4396 Cast the argument of a ctype function to unsigned char.
4397
4398 * floatformat.c (floatformat_to_double): Add explicit braces to
8aefe91a 4399 avoid ambiguous `else'.
252b5132
RH
4400
4401 * fnmatch.c (fnmatch): Change type of variables `c', `c1',
8aefe91a
DD
4402 `cstart' and `cend' to unsigned char. Cast the argument of macro
4403 `FOLD', which uses ctype functions, to unsigned char.
252b5132
RH
4404
4405 * objalloc.c (free): Add prototype.
4406
4407Sun Dec 20 16:03:46 1998 Hans-Peter Nilsson <hp@axis.se>
4408
4409 * Makefile.in (CFILES): Fix typo: splay-tree.c, not splay-tree.o
4410
4411Fri Dec 18 17:50:18 1998 David Taylor <taylor@texas.cygnus.com>
4412
4413 * cplus-dem.c (demangle_arm_pt): remove declaration -- function
8aefe91a 4414 doesn't exist.
252b5132 4415 (do_hpacc_template_literal): remove unused variable `i'.
b4fe2683 4416
252b5132
RH
4417Fri Dec 18 16:11:43 EST 1998 Andrew MacLeod <amacleod@cygnus.com>
4418
4419 * cplus-dem.c (demangle_fund_type): Process CV and u codes before
4420 bumping the pointer we read from. Also prepend these codes,
4421 as we do in other places.
4422
44231998-12-18 Nick Clifton <nickc@cygnus.com>
4424
4425 * cplus-dem.c (demangle_arm_hp_template): Make variable 'args' be
4426 'const char *' in order to match its usage when calling siblings.
4427 (snarf_numeric_literal): Make first arg 'const char **' in order
4428 to match usage.
4429
4430Mon Dec 14 09:55:50 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4431
4432 * choose-temp.c: Don't check IN_GCC anymore.
4433
4434 * floatformat.c (floatformat_from_double): Use `const', not `CONST'.
4435 * memchr.c (memchr): Likewise.
4436 * memcpy.c (memcpy): Likewise.
4437 * memmove.c (memmove): Likewise.
4438
4439 * mkstemp.c: Don't check IN_GCC anymore.
4440 * pexecute.c: Likewise.
4441 * splay-tree.c: Likewise.
4442
4443 * strchr.c (strchr): Use `const', not `CONST'.
4444 * strrchr.c (strrchr): Likewise.
4445 * strtol.c (strtol): Likewise.
4446 * strtoul.c (strtoul): Likewise.
4447
4448Fri Dec 4 13:51:04 1998 David Taylor <taylor@texas.cygnus.com>
4449 Elena Zannoni <ezannoni@cygnus.com>
4450 Stan Shebs <shebs@cygnus.com>
4451 Edith Epstein <eepstein@cygnus.com>
4452 Andres MacLeod <amacleod@cygnus.com>
4453 Satish Pai <pai@apollo.hp.com>
4454
4455 * HP aCC demangling support.
4456 * cplus-dem.c
4457 (main): Remove default to HP style demangling, set to EDG
8aefe91a
DD
4458 demangling correctly when -edg specified; set the demangling style
4459 when user specifies 'edg'. Set strip_underscore to
4460 prepends_underscore, if not HPUXHPPA. Set
4461 current_demangling_style to hp_demangling if HPUXHPPA. Set
4462 current demangling style correctly if the switch is hp. Read
4463 label correctly also in the HP style case.
252b5132 4464 (work_stuff): add temp_start field; add field for volatile member
8aefe91a 4465 function.
252b5132 4466 (arm_pt): handle ARM_DEMANGLING and EDG_DEMANGLING styles; HP
8aefe91a 4467 style for this case is the same as ARM.
252b5132
RH
4468 (demangle_args): handle EDG_DEMANGLING style; support HP style.
4469 (demangle_arm_hp_template): new function. (It was
8aefe91a
DD
4470 demangle_arm_pt.); check and set value of temp_start field in
4471 multiple places. Also, when ceching for end of template args,
4472 check to see if at end of static member of template class.
252b5132 4473 (demangle_class): new local variable : save_class_name_end Don't
8aefe91a 4474 include template args in string defining class.
252b5132
RH
4475 (demangle_class_name): use demangel_arm_hp_template.
4476 (demangle_function_name): handle case where demangling style is
8aefe91a
DD
4477 HP_DEMANGLING and currently point at an 'X' in the mangled name.
4478 Handle EDG_DEMANGLING style. Handle constructor and destructor
4479 ops for HP style.
252b5132 4480 (demangle_prefix): handle EDG_DEMANGLING and ARM_DEMANGLING
8aefe91a
DD
4481 styles. global destructor and constructor for HP style are same
4482 as for ARM style. Same for local variables.
252b5132
RH
4483 (demangle_qualified): handle EDG_DEMANGLING style.
4484 (demangle_signature): add case for volatile member function. For
8aefe91a
DD
4485 cases '1' - '9' : initialize the temp_start field to -1 and handle
4486 the EDG_DEMANGLING style. for case 'F' : handle EDG_DEMANGLING
4487 and AUTO_DEMANGLING styles. If expecting a function and managed
4488 to demangle the funct args, then handle the LUCID_DEMANGLING,
4489 ARM_DEMANGLING, and EDG_DEMANGLING styles. Add case for local
4490 class name after "Lnnn_ in HP style case. HP style too needs to
4491 forget types. _nnn is OK for HP style, so don't report failure.
252b5132 4492 (do_hpacc_template_const_value): new function. Handle template's
8aefe91a 4493 value param for HP/aCC.
252b5132 4494 (do_hpacc_template_literal): new function. Handle a template's
8aefe91a 4495 literal parameter for HP aCC.
252b5132
RH
4496 (recursively_demangle): new function
4497 (snarf_numeric_literal): new function.
4498 (usage): add 'edg' to the list of demangling styles; add hp switch
8aefe91a 4499 to message.
252b5132
RH
4500
4501Sat Nov 28 17:25:22 1998 Christopher Faylor <cgf@cygnus.com>
4502
4503 * pexecute.c: Remove obsolete ifdefed cygwin code.
4504
4505Fri Nov 27 13:26:06 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4506
4507 * choose-temp.c: Always include libiberty.h. Avoid redundancies.
4508 * cplus-dem.c: Likewise. Conform to libiberty.h.
4509 * pexecute.c: Likewise.
4510 * splay-tree.c: Likewise.
4511
45121998-11-25 Mike Stump <mrs@wrs.com>
4513
4514 * Makefile.in (splay-tree.o): Add config.h dependency.
4515
4516Mon Nov 23 16:59:49 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4517
4518 * configure.in: Use AC_PREREQ(2.12.1).
4519
45201998-11-16 Benjamin Kosnik <bkoz@haight.constant.com>
4521
b4fe2683 4522 * cplus-dem.c (demangle_fund_type): Add demangling for C9x types.
252b5132
RH
4523
4524Thu Nov 19 22:15:50 1998 Jeffrey A Law (law@cygnus.com)
4525
4526 * mpw.c (mpw_access): Add missing parens.
4527
4528Thu Nov 19 12:59:21 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4529
4530 * configure.in: Call AC_HEADER_SYS_WAIT.
4531
4532 * pexecute.c: Include sys/wait.h when !IN_GCC.
4533
4534Thu Nov 19 14:38:20 1998 Geoffrey Noer <noer@cygnus.com>
4535
4536 * pexecute.c: revert back to checking old Cygwin
4537 preprocessor symbol until some time has passed.
4538
4539Wed Nov 18 08:52:26 1998 Christopher Faylor <cgf@cygnus.com>
4540
4541 * pexecute.c: Reorganize WIN32 case to accomodate Cygwin
4542 since it will now support similar constructs.
4543
4544Fri Nov 13 19:18:05 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4545
4546 * configure.in: Check for calloc.
4547
4548 * calloc.c: New file.
4549
4550 * xmalloc.c (xcalloc): New function.
4551
4552Fri Nov 13 08:51:46 EST 1998 Andrew MacLeod <amacleod@cygnus.com>
4553
4554 *cplus-dem.c (demangle_prefix): Use the last "__"
4555 in the mangled name when looking for the signature. This allows
4556 template names to begin with "__".
4557
45581998-11-08 Mark Mitchell <mark@markmitchell.com>
4559
4560 * cplus-dem.c (type_kind_t): Add tk_reference.
4561 (demangle_template_value_parm): Handle it.
4562 (do_type): Use it for references, instead of tk_pointer.
4563
4564 * cplus-dem.c (demangle_template_value_parm): Use cplus_demangle,
4565 not internal_cplus_demangle.
4566
4567Sat Nov 7 16:02:10 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4568
4569 * choose-temp.c: Don't include gansidecl.h.
4570 * mkstemp.c: Likewise.
4571 * pexecute.c: Likewise.
4572
4573Mon Nov 2 15:05:33 1998 Geoffrey Noer <noer@cygnus.com>
4574
b4fe2683
JM
4575 * configure.in: detect cygwin* instead of cygwin32*
4576 * configure: regenerate
252b5132
RH
4577
4578Mon Nov 2 10:22:01 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4579
4580 * pexecute.c: Check HAVE_CONFIG_H, not IN_GCC, when determining
8aefe91a
DD
4581 whether to include config.h. Possibly include unistd.h in the
4582 !IN_GCC case. Define VFORK_STRING as a printable function call
4583 for error messages (either "vfork" or "fork".) If HAVE_VFORK_H is
4584 defined, include vfork.h. If VMS is defined, define vfork()
4585 appropriately. Remove vfork check on USG, we're using autoconf.
4586 (pexecute): Set `errmsg_fmt' to VFORK_STRING instead of checking
4587 locally what string to use.
252b5132
RH
4588
45891998-10-26 Mark Mitchell <mark@markmitchell.com>
4590
4591 * splay-tree.c: Tweak include directives to make sure declarations of
4592 xmalloc and free are available.
4593
45941998-10-25 Mark Mitchell <mark@markmitchell.com>
4595
4596 * cplus-dem.c (gnu_special): Fix handling of virtual tables in
4597 anonymous namespaces.
4598
45991998-10-23 Mark Mitchell <mark@markmitchell.com>
4600
4601 * cplus-dem.c (work_stuff): Replace const_type and volatile_type
4602 with type_quals.
4603 (TYPE_UNQUALIFIED): New macro.
4604 (TYPE_QUAL_CONST): Likewise.
4605 (TYPE_QUAL_VOLATILE): Likewise.
4606 (TYPE_QUAL_RESTRICT): Likewise.
4607 (code_for_qualifier): New function.
4608 (qualifier_string): Likewise.
4609 (demangle_qualifier): Likewise.
4610 (internal_cplus_demangle): Use them.
4611 (demangle_signature): Likewise.
4612 (demangle_template_value_parm): Likewise.
4613 (do_type): Likewise.
4614 (demangle_fund_type)): Likewise.
4615
4616Thu Oct 22 19:58:43 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4617
4618 * splay-tree.c (splay_tree_foreach_helper): Make definition static
4619 to match prototype.
4620
46211998-10-21 Mark Mitchell <mark@markmitchell.com>
4622
4623 * splay-tree.c: New file.
4624 * Makefile.in (CFILES): Add it.
4625 (REQUIRED_OFILES): Likewise.
4626 (splay-tree.o): Add dependencies.
4627
4628Tue Oct 20 12:29:02 1998 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
4629
4630 * cplus-dem.c (demangle_qualified): Fix off-by-one when checking
4631 range of 'K' index.
4632
4633Thu Oct 15 18:51:12 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4634
4635 * choose-temp.c: Prototype mkstemps() when IN_GCC.
4636
4637 * cplus-dem.c (consume_count): Cast argument of ctype macro to
4638 `unsigned char'.
4639 (cplus_demangle_opname): Cast the result of `strlen' to (int) when
4640 comparing against one.
4641 (cplus_mangle_opname): Likewise.
4642 (demangle_integral_value): Cast argument of ctype macro to
4643 `unsigned char'.
4644 (demangle_template_value_parm): Likewise.
4645 (demangle_template): Initialize variable `bindex'. Cast the
4646 result of `strlen' to (int) when comparing against one. Remove
4647 unused variable `start_of_value_parm'.
4648 (demangle_class_name): Cast the result of `strlen' to (int) when
4649 comparing against one.
4650 (demangle_prefix): Cast argument of ctype macro to `unsigned char'.
4651 (gnu_special): Likewise. Cast the result of `strlen' to (int)
4652 when comparing against one.
4653 (demangle_qualified): Cast argument of ctype macro to `unsigned char'.
4654 (get_count): Likewise.
4655 (do_type): Likewise. Cast the result of `strlen' to (int) when
4656 comparing against one.
4657 (demangle_fund_type): Cast argument of ctype macro to `unsigned char'.
4658 (demangle_function_name): Cast the result of `strlen' to (int)
4659 when comparing against one.
4660
4661 * mkstemp.c (mkstemps): Cast variable `len' to (int) when
4662 comparing against one.
4663
4664Tue Oct 13 23:51:51 1998 Jeffrey A Law (law@cygnus.com)
4665
b4fe2683
JM
4666 * mkstemp.c: Check HAVE_SYS_TIME_H before including sys/time.h
4667 * configure.in (AC_CHECK_HEADERS): Check for sys/time.h too.
4668 * config.in, configure: Rebuilt.
252b5132
RH
4669
4670 * getopt.c: Check HAVE_STRINGS_H before including strings.h.
4671 * configure.in (AC_CHECK_HEADERS): Check for strings.h too.
4672 * config.in, configure: Rebuilt.
4673
4674Mon Oct 12 19:15:59 1998 Geoffrey Noer <noer@cygnus.com>
4675
b4fe2683 4676 * configure.in: in comment, call AC_EXEEXT instead of AM_EXEEXT
252b5132
RH
4677
4678Sun Oct 11 17:36:06 1998 Michael Tiemann <tiemann@holodeck.cygnus.com>
4679
4680 * Makefile.in (cplus-dem.o, obstack.o): Depend upon config.h.
4681
4682Thu Oct 8 23:42:08 1998 Jeffrey A Law (law@cygnus.com)
4683
4684 * Merge egcs & devo libiberty.
4685