]> git.ipfire.org Git - thirdparty/gcc.git/blame - libiberty/ChangeLog
cplus-dem.c (main): Initialize style.
[thirdparty/gcc.git] / libiberty / ChangeLog
CommitLineData
4031ed65
LR
12001-02-16 Loren J. Rittle <ljrittle@acm.org>
2
3 * cplus-dem.c (main): Initialize style.
4
2ca46e8a
PE
52001-02-02 Phil Edwards <pme@sources.redhat.com>
6
7 * COPYING.LIB: Update to LGPL 2.1 from the FSF.
8
3b60dd8e
BM
92001-01-31 Bryce McKinlay <bryce@albatross.co.nz>
10
11 Add support for Java demangling under the v3 ABI:
12 * cp-demangle.c (NAMESPACE_SEPARATOR): New define.
13 (struct demangling_def): Add `style' field.
14 (demangling_new): New parameter `style'. Set it in demangling_t.
15 (demangle_prefix): Use NAMESPACE_SEPARATOR.
16 (demangle_type_ptr): Don't emit pointer symbol if doing Java output.
17 (cp_demangle): New parameter `style'. Pass it to demangling_new().
18 (main): Call cp_demangle with extra parameter.
19 (java_demangle_v3): New function.
20 (java_builtin_type_names): New. Table of primitive type names used
21 for Java demangling.
22 (demangle_builtin_type): Look up in java_builtin_type_names if doing
23 Java output.
24 * cplus-dem.c (cplus_demangle): Use java_demangle_v3 to do Java
25 demangling.
26 (long_options): Remove obsolete `java' option.
27 (main): Remove explicit handling of `java' option. Instead, pass style
28 parameter in cplus_demangle flags as gdb does.
29 * testsuite/demangle.expected: Add some Java test cases.
30
584932e9
DD
312000-12-29 DJ Delorie <dj@redhat.com>
32
33 * fnmatch.c: Make the note about the origins of this file more
34 accurate, at least until we can sync with glibc.
35 * getopt.c: Ditto.
36 * getopt1.c: Ditto.
37 * md5.c: Ditto.
38 * obstack.c: Ditto.
39
dac45916
MS
402000-12-26 Michael Sokolov <msokolov@ivan.Harhan.ORG>
41
42 * bsearch.c: New file.
43 * configure.in (funcs): Add bsearch.
44 (AC_CHECK_FUNCS): Likewise.
45 * configure, config.in: Regenerate.
46
a8e4a997
MS
472000-12-13 Michael Sokolov <msokolov@ivan.Harhan.ORG>
48
49 * safe-ctype.c: #include "ansidecl.h".
50 * strtod.c: Likewise.
51
75444da7
MS
522000-12-13 Michael Sokolov <msokolov@ivan.Harhan.ORG>
53
54 * strtoul.c: Include safe-ctype.h, not ctype.h.
55
f6bbde28
ZW
562000-12-07 Zack Weinberg <zack@wolery.stanford.edu>
57
58 * safe-ctype.c: New file.
59 * Makefile.in (CFILES): Add safe-ctype.c.
60 (REQUIRED_OFILES): Add safe-ctype.o.
61
62 * argv.c: Define ISBLANK and use it, not isspace.
63 * basename.c, cplus-dem.c, fnmatch.c, pexecute.c, strtod.c,
64 strtol.c, strtoul.c: Include safe-ctype.h, not ctype.h. Use
65 uppercase ctype macros. Don't test ISUPPER(c)/ISLOWER(c)
66 before calling TOLOWER(c)/TOUPPER(c).
67
6c1ce62b 682000-12-07 Mike Stump <mrs@wrs.com>
b25a8973
MS
69
70 * Makefile.in (distclean): When cleaning, remove testsuite.
71
b5d1497d
JM
722000-12-05 Jason Merrill <jason@redhat.com>
73
74 * cp-demangle.c (cplus_demangle_v3): Check that it's a v3 mangled
75 name before allocating the dyn_string.
76
c6e13630
JM
772000-12-04 Jason Merrill <jason@redhat.com>
78
79 * cp-demangle.c: s/new_abi/v3/.
80 * cplus-dem.c: Likewise.
81 (current_demangling_style): Now auto_demangling.
82 (cplus_demangle): Try v3 demangling if AUTO_DEMANGLING.
f6bbde28 83 (main): Use standard symbol chars for auto_demangling.
c6e13630 84
a4c9b97e
MM
852000-11-26 Mark Mitchell <mark@codesourcery.com>
86
87 * hashtab.c (higher_prime_number): Use a table, rather than a
88 seive, to find the next prime.
89
3b3bd9a7
L
902000-11-22 H.J. Lu <hjl@gnu.org>
91
92 * cplus-dem.c (main): Handle gnat_demangling.
93
d1209685
ZW
942000-11-22 Zack Weinberg <zack@wolery.stanford.edu>
95
96 * aclocal.m4 (LIB_AC_PROG_CC): Moved here from configure.in.
97 (AC_DEFINE_NOAUTOHEADER): New - work around bug in autoheader.
98 * configure.in: Call AC_C_INLINE and AC_C_CONST. Use three
99 argument form of AC_DEFINE in dummy definitions block. Use
100 AC_DEFINE_NOAUTOHEADER for real definitions of things defined
101 in dummy block. Preload cache variables instead of bypassing
102 tests, where possible.
103 * acconfig.h: Removed.
104
105 * xmalloc.c (xmalloc_failed): New function, does error
106 reporting on failed allocation.
107 (xmalloc, xcalloc, xrealloc): Use it.
108
cf183ac2
HPN
1092000-11-21 Hans-Peter Nilsson <hp@bitrange.com>
110
111 * cplus-dem.c (cplus_demangle): Fix formatting.
112 (grow_vect): Ditto.
113 (ada_demangle): Ditto.
114 (internal_cplus_demangle): Ditto.
115 (mop_up): Ditto.
116
1172000-11-21 H.J. Lu <hjl@gnu.org>
118
119 * cplus-dem.c (main): Handle java_demangling.
120
8bcc782c
KG
1212000-11-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
122
123 * cplus-dem.c (grow_vect): Prototype.
124 (ada_demangle): Cast the arg of ctype macros to unsigned char.
125
29120f44
HPN
1262000-11-15 Hans-Peter Nilsson <hp@bitrange.com>
127
128 * cplus-dem.c (ada_demangle): Add back ATTRIBUTE_UNUSED for
129 parameter `option'.
130
0437a5a8
KB
1312000-11-15 Kenneth Block <kenneth.block@compaq.com>
132
9e038f71 133 * cplus-dem.c: Eliminate use of DEFUN, it is obsolete and cannot
0437a5a8
KB
134 be used in GCC.
135
eab0c1ab 1362000-11-15 Kenneth Block <kenneth.block@compaq.com>
61ab980a 137
29120f44 138 * cplus-dem.c: Add gnat demangler. Add java to demangle style
61ab980a
KB
139 list.
140
d50d20ec
HPN
1412000-11-04 Hans-Peter Nilsson <hp@bitrange.com>
142
143 * hashtab.c (htab_expand): Change to return int. Use calloc or
144 xcalloc depending on htab->return_allocation_failure. Return zero
145 if calloc fails.
146 (htab_create): Update comment to cover memory allocation.
147 (htab_try_create): New.
148 (htab_find_slot_with_hash): Return NULL if htab_expand fails.
149 Update comment to cover this.
150
35e9340f
HPN
1512000-11-03 Hans-Peter Nilsson <hp@bitrange.com>
152
153 * hashtab.c: Change void * to PTR where necessary.
154 (htab_create, htab_expand): Correct formatting of comment before
155 function.
156
ea343d1a 1572000-10-22 Alex Samuel <samuel@codesourcery.com>
0870bfd6
AS
158
159 * cp-demangle.c (string_list_def): Add caret_position and comments.
160 (result_caret_pos): New macro.
161 (result_append_string): Rename to...
162 (result_add_string): ... this, and insert at caret position.
d1209685 163 Rename throughout.
0870bfd6
AS
164 (result_append): Rename to...
165 (result_add): ... this, and insert at caret position. Rename
d1209685 166 throughout.
0870bfd6
AS
167 (result_append_char): Rename to...
168 (result_add_char): ... this, and insert at caret position. Rename
d1209685 169 throughout.
0870bfd6
AS
170 (result_append_space): Remove.
171 (string_list_new): Initialize caret position.
172 (result_add_separated_char): Use caret position.
173 (result_get_caret): New funtion.
174 (result_set_caret): Likewise.
175 (result_shift_caret): Likewise.
176 (result_previous_char_is_space): Likewise.
177 (substitution_start): Use caret position.
178 (substitution_add): Likewise.
179 (demangling_new): Initialize caret position.
180 (demangle_encoding): Use caret position.
d1209685 181 (demanglin_nested_name): Put CV qualifiers after name.
0870bfd6
AS
182 (demangle_type_ptr): Use switch statement. Handle pointers to
183 arrays. Don't use result_append_space. Use caret position.
184 (demangle_type): Emit CV qualifiers after underlying type. Adjust
d1209685
ZW
185 call to demangle_array_type.
186 (demangle_array_type): Add parameter to handle pointers to arrays.
187
f15b9af9
MM
1882000-10-01 Mark Mitchell <mark@codesourcery.com>
189
190 * splay-tree.c (splay_tree_insert): Fix formatting.
191
8f17b5c5
MM
1922000-09-16 Mark Mitchell <mark@codesourcery.com>
193
194 * splay-tree.c (splay_tree_predecessor): Fix typo in comment.
195
4eaa189a
MS
1962000-09-14 Michael Sokolov <msokolov@ivan.Harhan.ORG>
197
198 * splay-tree.c: #include <stdio.h>.
199
29791078
HPN
2002000-09-14 Hans-Peter Nilsson <hp@axis.com>
201
202 * testsuite/demangle-expected: Add two tests for anonymous
203 namespaces.
204 * cplus-dem.c (gnu_special): Handle anonymous namespaces.
205
2c9f4db7
MM
2062000-09-10 Mark Mitchell <mark@codesourcery.com>
207
208 * splay-tree.c (splay_tree_predecessor): New function.
209 (splay_tree_successor): Likewise.
210
bb22da4b
HPN
2112000-09-10 Hans-Peter Nilsson <hp@axis.com>
212
213 * testsuite/demangle-expected: Add four tests for type_info
214 mangling.
bb22da4b
HPN
215 * cplus-dem.c (gnu_special): Use do_type, not demangle_fund_type,
216 for a non-template non-qualified type_info function or node.
217
759e8187
AS
2182000-09-08 Alex Samuel <samuel@codesourcery.com>
219
220 * cp-demangle.c: Fix copyright banner.
221
2ecd81ef
MS
2222000-09-07 Michael Sokolov <msokolov@ivan.Harhan.ORG>
223
224 * md5.c: #include "ansidecl.h".
225
d93998ec
AS
2262000-09-06 Alex Samuel <samuel@codesourcery.com>
227
228 * cp-demangle.c (status_allocation_failed): Rearrange whitespace.
229 (demangle_type): Handle substitution candidates correctly in the
230 face of special substitutions.
231
1056d228
AS
2322000-09-05 Alex Samuel <samuel@codesourcery.com>
233
234 * cp-demangle.c (demangle_encoding): Rename variable.
235 (demangle_name): Rename parameter. Handle return type
236 suppression.
237 (demangle_nested_name): Rename parameter.
238 (demangle_prefix): Likewise. Change return type suppression.
239 (demangle_unqualified_name): Add parameter. Flag constructors and
240 conversion operators.
241 (demangle_special_name): Fix comment.
242 (demangle_type): Rename variable.
243 (demangle_bare_function_type): Check for missing return type and
d1209685 244 parameter.
1056d228
AS
245 (demangle_class_enum_type): Rename parameter.
246 (demangle_discriminator): Fix misspelling in comment.
247
2f31ed7e
DD
2482000-08-31 DJ Delorie <dj@redhat.com>
249
250 * configure.in (Cygwin): special case cygwin only when we're
251 building cygwin, not when we're hosting cygwin.
252
02bcb9c6
AS
2532000-09-04 Alex Samuel <samuel@codesourcery.com>
254
255 * cp-demangle.c (demangle_template_arg): Eat an `E' after an
d1209685
ZW
256 <expression>.
257
aee749cf
AS
2582000-09-04 Alex Samuel <samuel@codesourcery.com>
259
260 * cp-demangle.c (demangle_type_ptr): Increment position past
261 pointer and reference characters.
262
92a16bbe
AS
2632000-09-04 Alex Samuel <samuel@codesourcery.com>
264
265 * cp-demangle.c (demangle_nv_offset): New function.
266 (demangle_v_offset): Likewise.
267 (demangle_call_offset): Likewise.
268 (demangle_special_name): Update thunk demangling to comply with
269 ABI changes.
d1209685 270
31e0ab1f
AS
2712000-09-03 Alex Samuel <samuel@codesourcery.com>
272
273 * cp-demangle.c (ANONYMOUS_NAMESPACE_PREFIX): New macro.
274 (substitution_def): Remove template_parm_number.
275 (NOT_TEMPLATE_PARM): Remove.
276 (result_insert_string): New macro.
277 (result_insert): Likewise.
278 (result_insert_char): Likewise.
279 (substitution_add): Remove last parameter. Don't store template
d1209685 280 parm number.
31e0ab1f
AS
281 (BFT_NO_RETURN_TYPE): Define as NULL.
282 (demangle_encoding): Adjust call to demangle_bare_function_type.
283 (demangle_name): Adjust substitution. Adjust call to
d1209685 284 substitution_add.
31e0ab1f
AS
285 (demangle_prefix): Adjust call to substitution_add.
286 (demangle_identifier): Handle anonymous namespaces.
287 (demangle_operator_name): Change demangling of vendor-extended
288 operator to match ABI changes.
289 (demangle_type_ptr): Change parameters. Make recursive. Handle
d1209685 290 substitutions here.
31e0ab1f
AS
291 (demangle_type): Adjust calls to demangle_template_param,
292 substitution_add, and demangle_type_ptr. Fix substitution of
293 templated types.
294 (demangle_function_type): Change parameter to a pointer.
295 (demangle_bare_function_type): Likewise. Adjust insertion point.
296 (demangle_template_param): Remove last parameter.
297 (demangle_expr_primary): Remove unused variable. Adjust call to
d1209685 298 demangle_template_param.
31e0ab1f
AS
299 (is_mangled_char): Accept `$' and `.'.
300 * cplus-dem.c (gnu_new_abi_symbol_characters): Add '$' and '.'.
301 * dyn-string.c (dyn_string_insert_char): New function.
302
ccbc3eb7
HPN
3032000-08-31 Hans-Peter Nilsson <hp@axis.com>
304
305 * testsuite/demangle-expected: Add nine tests for
306 underscore-after-number followed by five tests for name-signature
307 delimiter.
308
53dce582
RH
3092000-08-28 Richard Henderson <rth@cygnus.com>
310
311 * Makefile.in (md5.o): Depend on config.h.
312
881c6935
JM
3132000-08-28 Jason Merrill <jason@redhat.com>
314
315 * Makefile.in (REQUIRED_OFILES): Add md5.o.
316 (CFILES): Add md5.c.
317 * md5.c: New file.
318
a440fd19
AS
3192000-08-27 Alex Samuel <samuel@codesourcery.com>
320
321 * cp-demangle.c (demangle_name): Initialize template_p in local
322 name case. Don't re-add substitutions as candidates.
323 (demangle_nested_name): Use <unqualified-name>.
324 (demangle_prefix): Likewise. Don't add template names as
325 substitution candidates twice, or re-add a substitution or the
326 last prefix component.
327 (demangle_local_name): Adjust output format.
328
d01ce591
AS
3292000-08-25 Alex Samuel <samuel@codesourcery.com>
330
331 * cp-demangle.c (result_add_separated_char): Change parameter to
332 int.
333 (substitution_add): Don't check for duplicates. Check if
334 previously allocated size is zero.
335 (demangle_name): Remove duplicate check for std substitution.
336 Clear template flag appropriately.
337 (demangle_prefix): Remove argument to demangle_substitution.
338 Don't check that template flag is already set.
339 (demangle_operator_name): Add pt operator.
340 (demangle_type): Don't treat r as built-in type. Remove argument
341 to demangle_substitution. Fix substitution candidate mechanics.
342 Handle <template-template-parm>s. Improve comments.
d1209685 343 (demangle_template_param): Don't handle template arg lists here.
d01ce591
AS
344 (demangle_substitution): Remove parameter.
345 (print_usage): Remove extra fprintf option.
346
2f59c8eb
GM
3472000-08-24 Greg McGary <greg@mcgary.org>
348
349 * libiberty/random.c (end_ptr): Revert previous change.
350
2f26c11d
GM
3512000-08-24 Greg McGary <greg@mcgary.org>
352
353 * libiberty/cplus-dem.c (cplus_demangle_opname, cplus_mangle_opname,
354 demangle_expression, demangle_function_name): Use ARRAY_SIZE.
355 * libiberty/random.c (end_ptr): Likewise.
356
e282c9c9
AS
3572000-08-23 Alex Samuel <samuel@codesourcery.com>
358
359 * cp-demangle.c (result_close_template_list): Remove function.
360 (result_add_separated_char): New function.
361 (result_open_template_list): New macro.
362 (result_close_template_list): Likewise.
363 (demangle_prefix): Don't set template_p if the
364 prefix ends with a ctor name.
365 (demangle_type_ptr): Remove duplicate RETURN_IF_ERROR.
366 (demangle_type): Check for template args after substitution.
367 (demangle_template_args): Use result_open_template_list.
d1209685 368
c9b6494a
ZW
3692000-08-02 Zack Weinberg <zack@wolery.cumb.org>
370
371 * pexecute.c: Don't use vfork. Initialize 'pid' before retry loop.
372
d1209685 3732000-07-26 Dave Pitts <dpitts@cozx.com>
4f21e377
DP
374
375 * config/mh-openedition.h: Added -DLE370 definition.
376
0aab2795
ME
3772000-07-26 Mark Elbrecht <snowball3@bigfoot.com>
378
379 * pexecute.c (pexecute) [__MSDOS__]: Change __GO32__ to
380 __DJGPP__. Use P_WAIT instead of constant in the spawnv* call.
381 Cast program to 'char *' in errmsg_arg assignment.
382 (PWAIT_ERROR): Define.
383 (pwait): Use PWAIT_ERROR. Adjust DJGPP's status code to conform
384 to DJGPP's WIF* macros.
385
c2f275e4
RB
3862000-07-27 RodneyBrown <RodneyBrown@pmsc.com>
387 Jeff Law <law@cygnus.com>
388
73aa9564
RB
389 * getcwd.c: Include string.h, stdlib.h for prototypes
390
c2f275e4 391 * Makefile.in (rename.o, waitpid.o): Depend on config.h
73aa9564
RB
392 * rename.c: Include config.h, unistd.h
393 * waitpid.c: Include config.h, sys/wait.h
c2f275e4 394
ccbc3eb7
HPN
3952000-07-24 Hans-Peter Nilsson <hp@axis.com>
396
397 * cplus-dem.c (work_stuff_copy_to_from): New.
398 (delete_non_B_K_work_stuff): New.
399 (delete_work_stuff): New.
400 (mop_up): Break out work_stuff partly destruction to
401 delete_non_B_K_work_stuff.
402 (iterate_demangle_function): New.
403 (demangle_prefix): Call iterate_demangle_function instead of
404 demangle_function_name. Leave handling of name-signature
405 __-delimiters to iterate_demangle_function.
406 (demangle_integral_value): Strip an optional
407 following underscore cautiously. Handle negative numbers.
408
3388651c
DB
4092000-07-24 Daniel Berlin <dberlin@redhat.com>
410
d1209685 411 * cplus-dem.c (demangle_signature): Change if (GNU_DEMANGLING) to
3388651c
DB
412 if (AUTO_DEMANGLING || GNU_DEMANGLING)
413
0fac482e
AS
4142000-07-21 Alex Samuel <samuel@codesourcery.com>
415
416 * cp-demangle.c (demangle_ctor_dtor_name): Remove not-in-charge
417 allocating ctor mangling.
418 (demangle_array_type): Handle empty and non-constant array length.
419
8502a100 4202000-07-23 Michael Sokolov <msokolov@ivan.Harhan.ORG>
cd447360
MS
421 Jeff Law <law@cygnus.com>
422
c6451ce1
MS
423 * configure.in (AC_CHECK_HEADERS): Add time.h.
424 (AC_HEADER_TIME): Add check.
425 * configure, config.in: Regenerate.
426 * getruntime.c: Portably #include <sys/time.h> and/or <time.h>.
427
cd447360
MS
428 * configure.in (AC_CHECK_HEADERS): Add limits.h.
429 * configure, config.in: Regenerate.
430 * sort.c: Portably #include <limits.h> and/or <sys/param.h>.
431 * strtol.c, strtoul.c: #include "config.h". Portably #include
432 <limits.h> and/or <sys/param.h>.
433 * Makefile.in (strtol.o, strtoul.o): Update dependencies.
8502a100 434
3b58c099
MS
435 * aclocal.m4 (libiberty_AC_DECLARE_ERRNO): New macro.
436 * configure.in (libiberty_AC_DECLARE_ERRNO): Add check.
437 * configure, config.in: Regenerate.
438 * pexecute.c, strtol.c, strtoul.c: Declare errno if necessary.
439
8502a100
MS
440 * cp-demangle.c, mkstemps.c: #include <sys/types.h>.
441
da0c7743
MS
4422000-07-21 Mike Stump <mrs@wrs.com>
443
444 * Makefile.in (xexit.o): Add dependency for config.h in xexit.c.
0c978c46 445 * (vasprintf.o): Add dependency for config.h in vasprintf.c.
da0c7743 446
838f8562
KG
4472000-07-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
448
449 * cp-demangle.c (cp_demangle_type): Wrap in IN_LIBGCC2.
450
451 * setenv.c (setenv): Initialize variable `ep'.
452
453 * sigsetmask.c (abort): Prototype.
454
455 * vasprintf.c: Include config.h. Check ANSI_PROTOTYPES, not
456 __STDC__ for stdarg.h include.
457 (int_vasprintf): Prototype.
458 (checkit): Prototype. Use VPARAMS/ANSI_PROTOTYPES/VA_START in
459 definition. Cast `global_total_width' in comparison.
460 (main): Prototype. Return a value.
461
462 * vfork.c (fork): Prototype.
463
464 * xexit.c: Include config.h.
465
e9958132
JM
4662000-07-20 Joseph S. Myers <jsm28@cam.ac.uk>
467
468 * cplus-dem.c (demangle_fund_type): Make 'dec' an unsigned int,
469 and print it with %u.
470
39a6492f
HPN
4712000-07-17 Hans-Peter Nilsson <hp@axis.com>
472
473 * testsuite/regress-demangle (failed test): Show result and
474 expected output.
475
6d0be369
AH
4762000-07-07 Andrew Haley <aph@cygnus.com>
477
478 * cplus-dem.c (main): fflush() after emitting last char before
479 waiting for input.
480
bece74bd
AS
4812000-06-28 Alex Samuel <samuel@codesourcery.com>
482
483 * cp-demangle.c (demangle_encoding): Accept no substitutions.
484 (demangle_name): Handle <substitution> followed by
485 <unqualified-template-name>.
486 (demangle_type): Follow special substitutions with
487 <class-enum-type>
488 (demangle_subtitution): Set template_p for special substitutions.
489 (main): Fix typos.
d1209685 490
229b8ec7
AS
4912000-06-27 Alex Samuel <samuel@codesourcery.com>
492
493 * cp-demangle.c (demangle_special_name): Swap base and derived
494 class when demangling construction vtables.
495
051664b0
AS
4962000-06-21 Alex Samuel <samuel@codesourcery.com>
497
498 * cp-demangle.c: Don't include ctype.h.
499 (IS_DIGIT): New macro.
500 (IS_ALPHA): Likewise. Use IS_DIGIT and IS_ALPHA throughout
501 instead of isdigit and isalpanum.
502 (demangling_def): Make name and next const pointers.
503 (STATUS_ALLOCATION_FAILED): New status code.
504 (dyn_string_append_space): Handle failure in
505 dyn_string_append_char.
506 (int_to_dyn_string): Likewise. Change return value to status_t.
507 (string_list_new): Handle failure of dyn_string_init.
508 (result_close_template_list): Change return type to status_t.
509 Handle failure in dyn_string_append.
510 (result_push): Change return value to status_t. Handle failure in
511 string_list_new. Handle failure of result_push throughout.
512 (substitution_add): Change return value to status_t. Handle
513 dyn_string failures. Handle failure of substitution_add
514 throughout.
515 (template_arg_list_new): Return NULL on allocation failure.
516 (result_append_string): Return STATUS_ALLOCATION_FAILED on error.
517 Handle error result throughout.
518 (result_append): Likewise.
519 (result_append_char): Likewise.
520 (result_append_space): Likewise.
521 (demangling_new): Make argument a const pointer. Handle
522 allocation failures.
523 (demangle_template_args): Handle failure in template_arg_list_new
524 and result_close_template_list.
525 (demangle_discriminator): Return if int_to_dyn_string fails.
526 (cp_demangle): Likewise.
527 (cp_demangle_type): New function.
528 (cplus_demangle_new_abi): Don't call dyn_string_delete. Abort on
529 memory allocation failure.
530 (main): Likewise.
531 * dyn-string.c (RETURN_ON_ALLOCATION_FAILURE): Define if
532 IN_LIBGCC2.
533 (dyn_string_init): Change return value to int. Handle
534 RETURN_ON_ALLOCATION_FAILURE case.
535 (dyn_string_new): Handle RETURN_ON_ALLOCATION_FAILURE case.
536 (dyn_string_release): Delete the dyn_string.
537 (dyn_string_resize): Handle RETURN_ON_ALLOCATION_FAILURE case.
538 (dyn_string_copy): Change return type to int.
539 (dyn_string_copy_cstr): Likewise.
540 (dyn_string_prepend): Likewise.
541 (dyn_string_prepend_cstr): Likewise.
542 (dyn_string_insert): Likewise.
543 (dyn_string_insert_cstr): Likewise.
544 (dyn_string_append): Likewise.
545 (dyn_string_append_cstr): Likewise.
546 (dyn_string_append_char): Likewise.
547 (dyn_string_substring): Likewise.
d1209685 548
fe06b696
ZW
5492000-06-09 Zack Weinberg <zack@wolery.cumb.org>
550
551 * cp-demangle.c (demangle_operator_name): Add spaces before
552 names beginning with a letter: delete, delete[], new, new[],
553 sizeof.
554 (demangle_special_name): Handle TF <type> and TJ <type>.
555
6223e158
PDM
556Thu Jun 8 18:52:24 2000 Philippe De Muyter <phdm@macqel.be>
557
558 * cp-demangle.c (template_arg_list_new): Revert previous PARAMS patch.
559
48f3e29b
PDM
560Thu Jun 8 09:25:54 2000 Philippe De Muyter <phdm@macqel.be>
561
562 * cp-demangle.c (stdio.h): File included unconditionaly.
563 (template_arg_list_new): Parameter list is PARAMS ((void)), not ().
564 * dyn-string.c (stdio.h): File included.
565 * partition.c (partition_print): No `&' needed to take the address of
566 a function.
567
69197e7e
KG
5682000-06-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
569
570 * configure.in (ac_libiberty_warn_cflags): Add -pedantic.
d1209685 571
69197e7e
KG
572 * choose-temp.c (try, choose_temp_base, make_temp_file): Constify.
573
574 * cp-demangle.c (demangle_char): Change parameter from char to int.
575 (demangle_expression, demangle_expr_primary): Remove extra
576 semi-colon in prototype.
577
578 * dyn-string.c (dyn_string_append_char): Change parameter from
579 char to int.
580
581 * memcmp.c (memcmp): Constify.
582
583 * mkstemps.c (gcc_uint64_t): Mark GNUC `long long' case with
584 __extension__.
585
586 * partition.c (elem_compare): Prototype. Don't cast away
587 const-ness.
588
589 * setenv.c (setenv): Use braces to avoid ambiguous `else'.
d1209685 590
7eb23b1f
KG
5912000-06-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
592
593 * Makefile.in (cp-demangle.o): Depend on $(INCDIR)/demangle.h.
594
595 * cp-demangle.c: Include demangle.h.
596 (template_arg_list_new): DeANSIfy.
597 (cp_demangle): Make static and add prototype.
598 (operator_code, operators): Constify.
599 (demangle_operator_name): Likewise for variables `p1', `p2' and `p'.
600
3faa108c
AS
6012000-06-05 Alex Samuel <samuel@codesourcery.com>
602
603 * cp-demangle.c (demangle_prefix): Cast argument to isdigit to
604 unsigned char.
605 (demangle_unqualified_name): Likewise.
606 (demangle_number_literally): Likewise.
607 (demangle_type): Likewise.
608 (demangle_substitution): Likewise.
609 (is_mangled_char): Likewise, for isalnum.
610
69afa80d
AS
6112000-06-04 Alex Samuel <samuel@codesourcery.com>
612
613 * Makefile.in (CFILES): Add cp-demangle.c and dyn-string.c.
614 (REQUIRED_OFILES): Add cp-demangle.o and dyn-string.o.
615 (cp-demangle.o): New dependency.
616 (dyn-string.o): Likewise.
617
618 * dyn-string.c: Move here from gcc/dyn-string.c. Add new functions.
619
620 * cplus-dem.c (libiberty_demanglers): Add initializer for new-ABI
621 demangler.
622 (cplus_demangle): Call cplus_demangle_new_abi if in new-ABI
623 demangling mode.
624 (gnu_new_abi_symbol_characters): New function.
625 (main): Use gnu_new_abi_symbol_characters. * cp-demangle.c: New
626 file.
627 * cp-demangle.c: New file.
d1209685 628
0b72c3df
AC
629Tue May 30 16:45:25 2000 Andrew Cagney <cagney@b1.cygnus.com>
630
631 * floatformat.c: Add name to each floatformat field.
632
270cea06
JL
633Tue May 30 15:07:52 2000 Jeffrey A Law (law@cygnus.com)
634
635 * Makefile.in (objalloc.o): Depend on config.h
636
d11ec6f0
ZW
6372000-05-29 Zack Weinberg <zack@wolery.cumb.org>
638
639 * hashtab.c, partition.c, sort.c, xmemdup.c: Include string.h
640 if HAVE_STRING_H.
641 * pexecute.c, xexit.c: Include stdlib.h if HAVE_STDLIB_H.
642 * objalloc.c: Include config.h. Include stdlib.h and don't
643 declare malloc or free if HAVE_STDLIB_H.
644 * strerror.c, strsignal.c: Include stdlib.h if HAVE_STDLIB_H,
645 else declare malloc without prototype. Include string.h if
646 HAVE_STRING_H, else declare memset without prototype. Don't
647 include stddef.h.
648
f8e2da56
MS
6492000-05-23 Mike Stump <mrs@wrs.com>
650
651 * Makefile.in (xmalloc.o): Add dependency for config.h, fixes make
652 -j3.
653
650f3068
DA
6542000-05-18 J. David Anglin <dave@hiauly1.hia.nrc.ca>
655
656 * xmalloc.c: Include config.h for HAVE_SBRK definition.
657
1d2da2e1
HB
6582000-05-16 Horst von Brand <vonbrand@sleipnir.valparaiso.cl>
659
d1209685 660 * hashtab.c (hash_pointer): Delete low-order bits which are
1d2da2e1
HB
661 probably zero, also eliminate a warning on alpha.
662
47668d0a
DE
6632000-05-15 David Edelsohn <edelsohn@gnu.org>
664
c7a79a32 665 * Makefile.in: Change "pic" to depend on $(PICFLAG), not
47668d0a
DE
666 on $(enable_shared).
667
36348eab
JJ
6682000-05-10 Jakub Jelinek <jakub@redhat.com>
669
670 * config.table: Use mh-sparcpic for sparc*-*-*.
671
209bbe34
NC
6722000-05-08 Nick Clifton <nickc@cygnus.com>
673
674 * Makefile.in (CFILES): Add strncmp.c.
675 (NEEDED): Add strncmp.
676
a85a47fb
KG
6772000-05-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
678
679 * cplus-dem.c (cplus_demangle_opname, demangle_function_name):
680 Cast the arguments to `islower' to `unsigned char'.
681 (print_demangler_list): Prototype.
682
4aef973c
PDM
683Thu May 4 17:14:41 2000 Philippe De Muyter <phdm@macqel.be>
684
685 * sort.c (UCHAR_MAX): Provide fallback definition.
686
3b94497c
AO
6872000-04-29 Alexandre Oliva <aoliva@cygnus.com>
688
689 * Makefile.in (maintainer-clean-subdir): Fix handling of empty
690 SUBDIRS.
691
24eaa47a
KB
6922000-04-28 Kenneth Block <block@zk3.dec.com>
693 Jason Merrill <jason@casey.cygnus.com>
694
d1209685
ZW
695 * cplus-dem.c (libiberty_demanglers): New table for demangle styles.
696 (cplus_demangle_set_style): New function for setting style.
697 (cplus_demangle_name_to_style): New function to translate name.
24eaa47a 698
a9266bfa
KG
6992000-04-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
700
701 * aclocal.m4: New file with new test libiberty_AC_FUNC_STRNCMP.
702
703 * configure.in (AC_CHECK_HEADERS): Add sys/mman.h fcntl.h.
704 (libiberty_AC_FUNC_STRNCMP): Invoke.
705
706 * strncmp.c: New file.
707
8e02c4d0
JH
708Thu Apr 27 16:58:43 MET DST 2000 Jan Hubicka <jh@suse.cz>
709
710 * hashtab.c (htab_expand): Add prototype.
711 (find_empty_slot_for_expand): Likewise.
712
4feeaae3
KG
7132000-04-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
714
715 * hashtab.c (hash_pointer, eq_pointer): Make definition static to
716 match prototype.
717 (htab_expand): Cast the return value of xcalloc.
718
18a94a2f
MM
7192000-04-24 Mark Mitchell <mark@codesourcery.com>
720
721 * hashtab.c (hash_pointer): New function.
722 (eq_pointer): Likewise.
723 (htab_hash_pointer): New variable.
724 (htab_eq_pointer): Likewise.
725
eeb0656f
MM
7262000-04-23 Mark Mitchell <mark@codesourcery.com>
727
b51024fc
MM
728 * sort.c (sort_pointers): Fix endianness bugs.
729
eeb0656f
MM
730 * sort.c: New file.
731 * Makefile.in (CFILES): Add sort.c
732 (REQUIRED_OFILES): Add sort.o.
733 (sort.o): New target.
734
7277f72d
MS
7352000-04-21 Michael Sokolov <msokolov@ivan.Harhan.ORG>
736
737 * Makefile.in (*-subdir): Revamp slightly to avoid losing on
738 4.3BSD systems.
739
e38992e8
RK
740Tue Apr 18 16:23:31 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
741
742 * hashtab.c: Various minor cleanups.
743 (htab_find_slot_with_hash): INSERT is now enum insert_option.
744 (htab_find_slot): Likewise.
745
498e1ab1
DP
7462000-04-16 Dave Pitts <dpitts@cozx.com>
747
748 * cplus-dem.c (cplus_demangle_opname): Changed to use islower.
d1209685 749
dc17cc7b
RH
7502000-04-05 Richard Henderson <rth@cygnus.com>
751
752 * splay-tree.c (splay_tree_remove): New.
753
b13eb66b
MM
7542000-03-30 Mark Mitchell <mark@codesourcery.com>
755
756 * hashtab.c (find_empty_slot_for_expand): Use hashval_t for hash
757 codes.
758 (htab_find_with_hash): Likewise.
759 (htab_find_slot_with_hash): Likewise.
d1209685 760
0194e877
ZW
7612000-03-29 Zack Weinberg <zack@wolery.cumb.org>
762
763 * hashtab.c (htab_find_with_hash): Avoid calculating hash2
764 unless it will be used. Rearrange loop for better
765 optimization.
766 (higher_prime_number): Add static prototype.
767
abc61fd4
JL
768Thu Mar 16 01:33:58 2000 Jeffrey A Law (law@cygnus.com)
769
770 * Makefile.in (partition.o): Depend on config.h
771
8c5d513f
BS
7722000-03-14 Bernd Schmidt <bernds@cygnus.co.uk>
773
774 * hashtab.c (find_empty_slot_for_expand): New function.
775 (htab_expand): Use it instead of htab_find_slot.
776 (htab_find_with_hash): Renamed from htab_find; now accepts extra
777 argument HASH.
778 (htab_find_slot_with_hash): Likewise for htab_find_slot.
779 (htab_find): New wrapper function.
780 (htab_find_slot): Likewise.
781 (htab_traverse): Pass slot, not entry, to called function.
782
d9d4fb43
AS
7832000-03-09 Alex Samuel <samuel@codesourcery.com>
784
785 * Makefile.in (CFILES): Add partition.c.
786 (REQUIRED_OFILES): Add partition.o.
787 (partition.o): New rule.
788 * partition.c: New file.
d1209685 789
5dc9cffd
ZW
7902000-03-09 Zack Weinberg <zack@wolery.cumb.org>
791
792 * hashtab.c (htab_create): Set del_f.
793 (htab_delete, htab_empty, htab_remove_elt, htab_clear_slot):
794 Use it.
795
5194cf08
ZW
7962000-03-08 Zack Weinberg <zack@wolery.cumb.org>
797
798 * hashtab.c: Remove debugging variables (all_searches,
799 all_collisions, all_expansions). Delete
800 all_hash_table_collisions.
801 (create_hash_table, delete_hash_table, empty_hash_table,
802 find_hash_table_entry, remove_element_from_hash_table_entry,
803 clear_hash_table_slot, traverse_hash_table, hash_table_size,
804 hash_table_elements_number, hash_table_collisions): Rename to:
805 htab_create, htab_delete, htab_empty, htab_find_slot,
806 htab_remove_elt, htab_clear_slot, htab_traverse, htab_size,
807 htab_elements, htab_collisions.
808 (htab_find): New function, handles common case where you don't
809 plan to add or delete an entry.
810 (htab_expand): Don't create a whole new table, just a new
811 entry vector.
812 (htab_find_slot): Simplify logic.
813
5ad5a984
ILT
8141999-08-03 Ian Lance Taylor <ian@zembu.com>
815
816 * floatformat.c: Add casts to avoid signed/unsigned warnings.
817 * pexecute.c: Add ATTRIBUTE_UNUSED as needed on Unix.
818
819 * Makefile.in (install_to_libdir): Change $(TARGETLIB).n to
820 $(TARGETLIB)n so it works on MSDOS.
821 (install_to_tooldir): Likewise.
822
8231999-07-21 Ian Lance Taylor <ian@zembu.com>
824
825 From Mark Elbrecht:
826 * makefile.dos: Remove; obsolete.
827 * configure.bat: Remove; obsolete.
828
8291999-07-11 Ian Lance Taylor <ian@zembu.com>
830
831 * splay-tree.c (splay_tree_insert): Add initialization to avoid
832 warning.
833
aeecce42
MK
8342000-01-04 Mumit Khan <khan@xraylith.wisc.edu>
835
836 * pexecute.c: Conditionally include string.h.
5194cf08 837 (fix_argv): Handle embedded whitespace in args for Mingw32.
aeecce42 838
1eaf7d9c
KG
8392000-01-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
840
841 * configure.in (ac_libiberty_warn_cflags): Turn on warnings if
842 we're using gcc.
843
844 * Makefile.in (COMPILE.c): Add @ac_libiberty_warn_cflags@
845
0fadedb2
GK
8461999-12-27 Geoff Keating <geoffk@cygnus.com>
847
848 * vasprintf.c (int_vasprintf): Don't re-read the format character
849 as this mishandles strings like '%%s'.
850
08230f26
MM
8511999-12-05 Mark Mitchell <mark@codesourcery.com>
852
853 * splay-tree.c (splay_tree_new): Use struct splay_tree_node_s
854 rather than struct splay_tree_node.
855 (splay_tree_insert): Use struct splay_tree_s rather than struct
856 splay_tree.
857
6de9b8ff
PDM
858Sun Nov 28 00:59:39 1999 Philippe De Muyter <phdm@macqel.be>
859
860 * hashtab.c (sys/types.h): File included.
861
f3636679
JM
8621999-11-22 Jason Merrill <jason@casey.cygnus.com>
863
864 * strtoul.c, strtol.c, random.c: Remove advertising clause from
865 BSD license, pursuant with
866
867 ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change
868
36dd3a44
JL
869Wed Nov 10 09:42:39 1999 Jeffrey A Law (law@cygnus.com)
870
871 * hashtab.c: Include stdio.h.
872
6e300472
JL
873Mon Nov 8 09:23:41 1999 Jeffrey A Law (law@cygnus.com)
874
875 * hashtab.c (traverse_hash_table): Protect prototype with PARAMS.
876
df548dfc
PDM
877Tue Nov 2 03:23:13 1999 Philippe De Muyter <phdm@macqel.be>
878
879 * xstrdup (sys/types.h): Include this file.
880
2c375143
NS
8811999-10-28 Nathan Sidwell <nathan@acm.org>
882
883 * Makefile.in (SUBDIRS): New macro.
884 (mostlyclean, clean, distclean, maintainer-clean): Adjust to
885 avoid multiple subdirectory cleaning.
886 (*-subdir): Use SUBDIRS.
887
a82cecda
JK
8881999-10-25 Jim Kingdon <http://developer.redhat.com/>
889
890 * cplus-dem.c: Move declarations of standard_symbol_characters and
891 hp_symbol_characters inside #ifdef MAIN to avoid compiler
892 warnings.
893
ed38f5d5
ZW
8941999-10-23 08:51 -0700 Zack Weinberg <zack@bitmover.com>
895
896 * hashtab.c (find_hash_table_entry): When returning a
897 DELETED_ENTRY slot, change it to EMPTY_ENTRY first.
898 (clear_hash_table_slot): New function which deletes an entry
899 by its position in the table, not its value.
900 (traverse_hash_table): New function which calls a hook
901 function for every live entry in the table.
902
b60fe4a7
MM
9031999-10-19 Mark Mitchell <mark@codesourcery.com>
904
905 * cplus-dem.c (INTBUF_SIZE): New macro.
906 (string_append_template_idx): New function.
907 (demangle_expression): Likewise.
908 (demangle_integral_value): Use it.
909 (demangle_real_value): New function, split out from ...
910 (demangle_template_value_parm): ... here. Use
911 string_append_template_idx. Use demangle_real_value.
912 (demangle_template): Use string_append_template_idx.
913 (demangle_qualified): Use consume_count_with_underscores.
914 (get_count): Tweak formatting.
915 (do_type): Use string_append_template_idx.
5194cf08 916
3da5522a
KG
9171999-10-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
918
919 * calloc.c: Add a public domain notice.
920
d7d36ea8
PDM
921Mon Oct 18 02:30:47 1999 Philippe De Muyter <phdm@macqel.be>
922
923 * setenv.c (sys/types.h, stdio.h): Include those files unconditionaly.
924
a2f945c6
VM
925Fri Oct 15 01:47:51 1999 Vladimir Makarov <vmakarov@loony.cygnus.com>
926
927 * Makefile.in (CFILES): Add hashtab.c
928 (REQUIRED_OFILES): Add hashtab.o
929 (hashtab.o): Add dependencies.
930 * hashtab.c: New file
931
7f22ec2e
MK
932Wed Oct 13 01:16:47 1999 Mumit Khan <khan@xraylith.wisc.edu>
933
934 * basename.c (DIR_SEPARATOR): New macro.
935 (DIR_SEPARATOR_2): Likewise.
936 (HAVE_DOS_BASED_FILESYSTEM): Likewise.
937 (IS_DIR_SEPARATOR): Likewise.
938 (main): Handle MSDOS style pathname.
939
7c56a6ce
MM
9401999-10-11 Mark Mitchell <mark@codesourcery.com>
941
942 * cplus-dem.c (do_type): Handle pointer to member types whose
943 enclosing classes have namespace scope.
944
cd32188b
ME
945Sun Oct 10 01:23:50 1999 Marc Espie <espie@cvs.openbsd.org>
946
947 * config.table: Provide a backup shell for executing move-if-change.
948
fc232f7a
MM
9491999-10-02 Mark Mitchell <mark@codesourcery.com>
950
951 * xmalloc.c (xmalloc): Fix spelling error.
952 (xcalloc, xrealloc): Likewise.
953
2a138827
KG
9541999-10-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
955
956 * cplus-dem.c (fancy_abort, demangle_integral_value,
957 demangle_arm_hp_template, recursively_demangle,
958 standard_symbol_characters, hp_symbol_characters, main): Add prototype.
959 (program_name, program_version, fatal): Constify a char*.
960 (usage, fatal): Mark with ATTRIBUTE_NORETURN.
961 (main): Call return, not exit.
962
5a657fc3
KG
9631999-09-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
964
965 * choose-temp.c: Remove obsolete comment about gcc.
966 (make_temp_file): Constify a char*.
967
33c5ddcd
KG
968Wed Sep 8 20:03:28 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
969
970 * xmemdup.c: Include sys/types.h.
971
b10647f1
JG
9721999-09-07 Jeff Garzik <jgarzik@pobox.com>
973
974 * xmemdup.c: New xmemdup function.
975 * Makefile.in, makefile.vms, vmsbuild.com: Use xmemdup.[co].
976
3dd6c3af
LV
977Tue Sep 7 23:32:18 1999 Linas Vepstas <linas@linas.org>
978
5194cf08 979 * config.table: Add openedition target.
3dd6c3af
LV
980 * config/mh-openedition: New file.
981
19e28e2a
ME
982Thu Sep 2 01:36:12 1999 Marc Espie <espie@cvs.openbsd.org>
983
984 * pexecute.c (pexecute): Fill in temp_base when needed.
985
4dfeccf9
RH
9861999-08-31 Richard Henderson <rth@cygnus.com>
987
988 * getpwd.c: Check HAVE_GETCWD before defining it away.
989
4ac3cb83
KG
9901999-08-30 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
991
992 * Makefile.in (CFILES): Add calloc.c and getpwd.c.
993 (REQUIRED_OFILES): Add getpwd.o.
994 (getpwd.o): Add target.
995
996 * configure.in (AC_PREREQ): Bump to 2.13.
997 (AC_CHECK_HEADERS): Add check for <sys/stat.h>.
998
999 * getpwd.c: New file, moved here from gcc.
1000
e797ff70
KG
10011999-08-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1002
1003 * cplus-dem.c (gnu_special): Cast a `size_t' to `long' when
1004 comparing against a signed quantity.
1005 (arm_special): Likewise.
1006 (demangle_fund_type): Likewise.
1007 (do_hpacc_template_const_value): Mark parameter `work' with
5194cf08 1008 ATTRIBUTE_UNUSED.
e797ff70
KG
1009 (main): Constify variable `valid_symbols'.
1010
55247fce
PDM
1011Tue Aug 24 02:50:45 1999 Philippe De Muyter <phdm@macqel.be>
1012
1013 * strtoul.c (strtoul): Add parentheses around && within ||.
1014
76632dd0
DJ
1015Fri Aug 6 23:32:29 1999 Daniel Jacobowitz <drow@drow.them.org>
1016
1017 * Makefile.in (FLAGS_TO_PASS): Include prefix, exec_prefix,
1018 libdir, libsubdir and tooldir.
1019
d080bbfa
MM
10201999-08-01 Mark Mitchell <mark@codesourcery.com>
1021
1022 * splay-tree.c (splay_tree_insert): Return the new node.
1023
a81c752a
RH
10241999-07-14 Richard Henderson <rth@cygnus.com>
1025
5194cf08 1026 * argv.c: Include stdlib.h and string.h instead of
a81c752a
RH
1027 prototyping directly.
1028 * choose-temp.c: Conditionally include string.h.
1029
8f1824d9
JM
10301999-07-12 Jason Merrill <jason@yorick.cygnus.com>
1031
1032 * Makefile.in (NEEDED): Add bcmp, bcopy, bzero.
1033
652374d3
ILT
10341999-07-11 Ian Lance Taylor <ian@zembu.com>
1035
1036 * splay-tree.c (splay_tree_insert): Add initialization to avoid
1037 warning.
1038
a4494286
JM
10391999-07-07 Jason Merrill <jason@yorick.cygnus.com>
1040
1041 * Makefile.in (needed-list): Only include stuff we actually need
1042 for libstdc++.
1043
90e72e20
AS
10441999-06-21 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
1045
1046 * configure.in (checkfuncs): Add gettimeofday.
1047 * config.in, configure: Regenerated.
1048
b569200e
MK
1049Mon Jun 21 05:56:01 1999 Mumit Khan <khan@xraylith.wisc.edu>
1050
1051 * configure.in (*-*-uwin*): UWIN has sys_{errlist,nerr} even if
1052 the test fails.
1053 * configure: Regenerate.
1054
73919448
MS
10551999-06-10 Mike Stump <mrs@wrs.com>
1056
1057 * Makefile.in (setenv.o): Add config.h dep for setenv.o to fix
1058 parallel builds.
1059
fee9125c
KG
10601999-05-28 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1061
1062 * putenv.c: Include ansidecl.h to define `const'.
1063 * setenv.c: Likewise.
1064
71cce721
MN
1065Wed May 26 03:58:20 1999 "Melissa O'Neill" <oneill@cs.sfu.ca>
1066
a7c9637f
JL
1067 * Makefile.in (CFILES): Add putenv.c and setenv.c.
1068 * configure.in (funcs): Add putenv and setenv.
1069 (AC_CHECK_FUNCS): Check for putenv and setenv.
1070 * configure: Rebuilt.
1071 * putenv.c setenv.c: New files.
1072
71cce721
MN
1073 * getcwd.c (getcwd): If pathname is NULL, then obtain SIZE
1074 bytes of space using malloc.
1075
53504016
SG
1076Mon May 17 01:42:34 1999 Stu Grossman <grossman@babylon-5.cygnus.com>
1077
1078 * cplus-dem.c (demangle_fund_type (near 'I' case)): Don't advance
1079 the *mangled pointer beyond the end of the string. Clean up code to
1080 match prevailing coding style.
1081
34842539
MH
10821999-05-13 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
1083
1084 * tmpnam.c (L_tmpnam): Fix typo.
1085
3a08531d
ME
1086Thu May 13 01:14:46 1999 Marc Espie <espie@cvs.openbsd.org>
1087
1088 * cplus-dem.c (standard_symbol_characters): Renamed from
1089 standard_symbol_alphabet. No longer modify TABLE.
1090 (hp_symbol_characters): Renamed from hp_symbol_alphabet. No longer
1091 modify TABLE.
1092 (main): Corresponding changes. Use strchr to determine if a
1093 character is valid.
1094
8db9d08b
JB
10951999-05-11 Jim Blandy <jimb@zwingli.cygnus.com>
1096
1097 * cplus-dem.c (main): Use table lookup to distinguish identifier
1098 characters from non-identifier characters.
1099 (standard_symbol_alphabet, hp_symbol_alphabet): New functions.
1100
6a071f4a
FF
1101Thu May 6 20:34:42 1999 Fred Fish <fnf@be.com>
1102
1103 * configure.in (sys/resource.h): Add to AC_CHECK_HEADERS list.
1104 * getruntime.c: Only attempt to include sys/resource.h and
1105 use getrusage if both HAVE_GETRUSAGE and HAVE_SYS_RESOURCE_H
1106 are defined.
1107
7dd88617
DT
1108Mon Apr 26 01:36:06 1999 Donn Terry (donn@interix.com)
1109
1110 * configure.in (alloca detection): Handle alloca directly for interix.
1111 * configure: Rebuilt.
1112
7a1528bc
MK
1113Sun Apr 25 01:18:21 1999 Mumit Khan <khan@xraylith.wisc.edu>
1114
1115 * choose-temp.c (DIR_SEPARATOR): Use '\\' only for native windows32.
1116
76409268
JB
11171999-04-20 Jim Blandy <jimb@zwingli.cygnus.com>
1118
1119 Fix from Dale Hawkins:
5194cf08 1120 * cplus-dem.c (mop_up): Set typevec_size to zero, so it'll be
76409268
JB
1121 reallocated properly if we use it again.
1122
1123 * cplus-dem.c (demangle_fund_type): Check for buffer overrun. Be
1124 stricter about syntax. Always null-terminate string.
1125
acbbd80a
MK
1126Thu Apr 15 23:00:55 1999 Mumit Khan <khan@xraylith.wisc.edu>
1127
1128 * configure.in (checkfuncs): Check for sbrk.
1129 * config.in: Rebuilt.
1130 * configure: Likewise.
1131 * xmalloc.c: Use HAVE_SBRK instead of the host specific definitions.
1132
92523551
JB
11331999-04-12 Jim Blandy <jimb@zwingli.cygnus.com>
1134
1135 Fix from Marcus Daniels:
1136 * cplus-dem.c (demangle_fund_type): Don't run off the end of the
1137 identifier looking for another underscore.
1138
36eb4217
MK
1139Sun Apr 11 23:20:59 1999 Mumit Khan <khan@xraylith.wisc.edu>
1140
1141 * pexecute.c: Change all references to __UWIN__ to _UWIN.
1142 * xmalloc.c: Likewise.
1143 (xcalloc): UWIN has sbrk.
1144 (xrealloc): Fix guard macro.
1145
2c45d1a0
RH
11461999-04-11 Richard Henderson <rth@cygnus.com>
1147
1148 * alloca-conf.h (alloca) [C_ALLOCA]: Don't use Gcc builtin
1149 or <alloca.h>.
1150 * clock.c (GNU_HZ): New definition.
1151 (clock): Use it.
1152 * getruntime.c: Likewise.
1153
1154 * config.table: Use mh-beos.
1155 * config/mh-beos: New file.
1156
391cdef0
MM
11571999-04-11 Mark Mitchell <mark@codesourcery.com>
1158
1159 * cplus-dem.c (demangle_template_value_parm): Handle
1160 pointers-to-members.
1161 (do_type): Handle template parameters as qualifiers.
1162
9d229989
JB
11631999-04-01 Jim Blandy <jimb@zwingli.cygnus.com>
1164
1165 * cplus-dem.c: Attempt to handle overflows in counts with some
1166 semblance of grace.
1167 (consume_count): Detect overflows. Return -1 to indicate errors,
1168 instead of zero.
1169 (demangle_template_value_parm, demangle_template): Handle change
1170 to consume_count's return convention.
1171
7c72138a
TT
11721999-04-05 Tom Tromey <tromey@cygnus.com>
1173
1174 * testsuite/regress-demangle: New file.
1175 * testsuite/demangle-expected: New file.
1176
1177 * Makefile.in (all, check, installcheck, info, install-info,
1178 clean-info, dvi, install, etags, tags, mostlyclean, clean,
1179 distclean, maintainer-clean, realclean): Depend on corresponding
1180 `-subdir' target.
1181 (all-subdir check-subdir installcheck-subdir info-subdir
1182 install-info-subdir clean-info-subdir dvi-subdir
1183 install-info-subdir etags-subdir mostlyclean-subdir clean-subdir
1184 distclean-subdir maintainer-clean-subdir): New target.
1185 * testsuite/Makefile.in: New file.
1186 * configure: Rebuilt.
1187 * configure.in: Create testsuite/Makefile.
1188
ae7f7270
MM
11891999-04-02 Mark Mitchell <mark@codesourcery.com>
1190
1191 * splay-tree.h (splay_tree_compare_pointers): Define.
1192
30f72379
MM
11931999-03-30 Mark Mitchell <mark@codesourcery.com>
1194
1195 * splay-tree.c (splay_tree_compare_ints): Define.
1196
4cc48683
TT
11971999-03-30 Tom Tromey <tromey@cygnus.com>
1198
1199 * cplus-dem.c (consume_count): If `count' wraps, return 0 and
1200 don't advance input pointer.
1201 (demangle_class_name): If consume_count didn't find a count, do
1202 nothing. Don't bother with `strlen' sanity check; consume_count
1203 does it for us.
1204
3510075c
JL
12051999-03-16 Stan Shebs <shebs@andros.cygnus.com>
1206
1207 From Art Haas <ahaas@neosoft.com>:
1208 * cplus-dem.c (demangle_prefix): Don't grab all the '__' strings
1209 when doing arm or hp style.
1210 (demangle_nested_args): Decr forgetting_types field when done.
5194cf08 1211
89f602a7
MK
1212Thu Mar 11 01:22:58 1999 Mumit Khan <khan@xraylith.wisc.edu>
1213
1214 * pexecute.c (__CYGWIN32__): Rename to
1215 (__CYGWIN__): this.
1216 * xmalloc.c: Likewise.
1217
1218 Changes to support i386-pc-uwin.
1219 * configure.in (*-*-uwin*): Workaround for vfork bug.
1220 * configure: Regenerate.
1221 * pexecute.c (pexecute): Be like standard Unix.
1222 (pwait): Likewise.
1223 * xmalloc.c (first_break): Define.
1224 (xmalloc_set_program_name): Use.
1225 (xmalloc): Use.
1226
9346c824
FS
1227Thu Mar 11 01:07:55 1999 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
1228
1229 * config.table: Cleanup and add mh-*pic handling for alpha, arm, powerpc
1230
3510075c
JL
1231Sun Feb 28 22:30:44 1999 Geoffrey Noer <noer@cygnus.com>
1232
1233 * config.table: Check cygwin*, not cygwin32*.
1234
8ec65f13
DB
1235Tue Feb 9 16:39:01 1999 Dave Brolley <brolley@cygnus.com>
1236
1237 * Makefile.in: Change mkstemp -> mkstemps.
1238
687361c8
ME
1239Tue Feb 9 01:12:27 1999 Marc Espie <Marc.Espie@liafa.jussieu.fr>
1240
1241 * Makefile.in (REQUIRED_OFILES): remove mkstemp.o
1242 * configure.in (funcs): Check for and conditionally add mkstemps to
1243 the list of functions libiberty will provide.
1244 * configure: Rebuilt.
5194cf08 1245
b207e09c
MK
1246Wed Feb 3 00:01:15 1999 Mumit Khan <khan@xraylith.wisc.edu>
1247
5194cf08 1248 * clock.c (HZ): Define in terms of (ISO C) CLOCKS_PER_SEC on
b207e09c
MK
1249 platforms that don't have HZ.
1250 * getruntime.c (HZ): Likewise.
1251
16b4c15e
RH
1252Sat Jan 30 13:28:04 1999 Richard Henderson <rth@cygnus.com>
1253
1254 * Makefile.in (xstrdup.o): Depend on config.h.
1255
38beb75c
UD
1256Wed Jan 13 07:26:44 1999 H.J. Lu (hjl@gnu.org)
1257
1258 * cplus-dem.c (mop_up): Set work->previous_argument to NULL after
1259 freeing it.
1260
7e4311a3
KG
1261Wed Jan 13 14:16:36 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1262
1263 * xstrdup.c (xstrdup): Switch from strcpy to memcpy for speed.
1264
3510075c
JL
1265Tue Jan 5 15:58:29 1999 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
1266
1267 * Makefile.in (CFILES): fix typo, splay-tree.c instead of
1268 splay-tree.o.
1269
12701999-01-04 Jason Molenda (jsm@bugshack.cygnus.com)
1271
1272 * configure.in: Require autoconf 2.12.1 or higher.
1273
fb9939b8
MM
12741998-12-30 Michael Meissner <meissner@cygnus.com>
1275
1276 * random.c (NULL): Don't redefine NULL if it is already defined.
1277
087aa398
KG
1278Tue Dec 22 09:43:35 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1279
1280 * argv.c (buildargv): Cast the result of alloca in assignment.
1281
1282 * choose-temp.c: Include stdlib.h.
38beb75c 1283
087aa398
KG
1284 * cplus-dem.c (demangle_arm_pt): Remove unused prototype.
1285 (snarf_numeric_literal): Constify first parameter.
1286 (code_for_qualifier): Avoid a gcc extension, make the parameter an
1287 int, not a char.
1288 (demangle_qualifier): Likewise.
1289 (demangle_signature): Cast the argument of a ctype function to
1290 unsigned char.
1291 (arm_pt): Add parens around assignment used as truth value.
1292 (demangle_arm_hp_template): Constify variable `args'.
1293 (do_hpacc_template_const_value): Cast the argument of a ctype
1294 function to unsigned char.
1295 (do_hpacc_template_literal): Remove unused variable `i'.
1296 (snarf_numeric_literal): Constify parameter `args'.
1297 Cast the argument of a ctype function to unsigned char.
1298
1299 * floatformat.c (floatformat_to_double): Add explicit braces to
1300 avoid ambiguous `else'.
38beb75c 1301
087aa398
KG
1302 * fnmatch.c (fnmatch): Change type of variables `c', `c1',
1303 `cstart' and `cend' to unsigned char. Cast the argument of macro
1304 `FOLD', which uses ctype functions, to unsigned char.
1305
1306 * objalloc.c (free): Add prototype.
1307
21f2174d
HPN
1308Sun Dec 20 16:03:46 1998 Hans-Peter Nilsson <hp@axis.se>
1309
1310 * Makefile.in (CFILES): Fix typo: splay-tree.c, not splay-tree.o
1311
3510075c
JL
1312Fri Dec 18 17:50:18 1998 David Taylor <taylor@texas.cygnus.com>
1313
1314 * cplus-dem.c (demangle_arm_pt): remove declaration -- function
1315 doesn't exist.
1316 (do_hpacc_template_literal): remove unused variable `i'.
5194cf08 1317
e8fc8222
AM
1318Fri Dec 18 16:11:43 EST 1998 Andrew MacLeod <amacleod@cygnus.com>
1319
1320 * cplus-dem.c (demangle_fund_type): Process CV and u codes before
1321 bumping the pointer we read from. Also prepend these codes,
1322 as we do in other places.
1323
3510075c
JL
13241998-12-18 Nick Clifton <nickc@cygnus.com>
1325
1326 * cplus-dem.c (demangle_arm_hp_template): Make variable 'args' be
1327 'const char *' in order to match its usage when calling siblings.
1328 (snarf_numeric_literal): Make first arg 'const char **' in order
1329 to match usage.
11a0bb74 1330
f4f30aa1
JL
1331Mon Dec 14 09:55:50 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1332
11a0bb74
KG
1333 * choose-temp.c: Don't check IN_GCC anymore.
1334
1335 * floatformat.c (floatformat_from_double): Use `const', not `CONST'.
1336 * memchr.c (memchr): Likewise.
1337 * memcpy.c (memcpy): Likewise.
1338 * memmove.c (memmove): Likewise.
38beb75c 1339
11a0bb74
KG
1340 * mkstemp.c: Don't check IN_GCC anymore.
1341 * pexecute.c: Likewise.
1342 * splay-tree.c: Likewise.
38beb75c 1343
11a0bb74
KG
1344 * strchr.c (strchr): Use `const', not `CONST'.
1345 * strrchr.c (strrchr): Likewise.
1346 * strtol.c (strtol): Likewise.
1347 * strtoul.c (strtoul): Likewise.
1348
70d5ccef
DT
1349Fri Dec 4 13:51:04 1998 David Taylor <taylor@texas.cygnus.com>
1350 Elena Zannoni <ezannoni@cygnus.com>
1351 Stan Shebs <shebs@cygnus.com>
1352 Edith Epstein <eepstein@cygnus.com>
1353 Andres MacLeod <amacleod@cygnus.com>
1354 Satish Pai <pai@apollo.hp.com>
1355
1356 * HP aCC demangling support.
1357 * cplus-dem.c
1358 (main): Remove default to HP style demangling, set to EDG
1359 demangling correctly when -edg specified; set the demangling style
1360 when user specifies 'edg'. Set strip_underscore to
1361 prepends_underscore, if not HPUXHPPA. Set
1362 current_demangling_style to hp_demangling if HPUXHPPA. Set
1363 current demangling style correctly if the switch is hp. Read
1364 label correctly also in the HP style case.
1365 (work_stuff): add temp_start field; add field for volatile member
1366 function.
1367 (arm_pt): handle ARM_DEMANGLING and EDG_DEMANGLING styles; HP
1368 style for this case is the same as ARM.
1369 (demangle_args): handle EDG_DEMANGLING style; support HP style.
1370 (demangle_arm_hp_template): new function. (It was
1371 demangle_arm_pt.); check and set value of temp_start field in
1372 multiple places. Also, when ceching for end of template args,
1373 check to see if at end of static member of template class.
1374 (demangle_class): new local variable : save_class_name_end Don't
1375 include template args in string defining class.
1376 (demangle_class_name): use demangel_arm_hp_template.
1377 (demangle_function_name): handle case where demangling style is
1378 HP_DEMANGLING and currently point at an 'X' in the mangled name.
1379 Handle EDG_DEMANGLING style. Handle constructor and destructor
1380 ops for HP style.
1381 (demangle_prefix): handle EDG_DEMANGLING and ARM_DEMANGLING
1382 styles. global destructor and constructor for HP style are same
1383 as for ARM style. Same for local variables.
1384 (demangle_qualified): handle EDG_DEMANGLING style.
1385 (demangle_signature): add case for volatile member function. For
1386 cases '1' - '9' : initialize the temp_start field to -1 and handle
1387 the EDG_DEMANGLING style. for case 'F' : handle EDG_DEMANGLING
1388 and AUTO_DEMANGLING styles. If expecting a function and managed
1389 to demangle the funct args, then handle the LUCID_DEMANGLING,
1390 ARM_DEMANGLING, and EDG_DEMANGLING styles. Add case for local
1391 class name after "Lnnn_ in HP style case. HP style too needs to
1392 forget types. _nnn is OK for HP style, so don't report failure.
1393 (do_hpacc_template_const_value): new function. Handle template's
1394 value param for HP/aCC.
1395 (do_hpacc_template_literal): new function. Handle a template's
1396 literal parameter for HP aCC.
1397 (recursively_demangle): new function
1398 (snarf_numeric_literal): new function.
1399 (usage): add 'edg' to the list of demangling styles; add hp switch
1400 to message.
1401
8d525fa8
CF
1402Sat Nov 28 17:25:22 1998 Christopher Faylor <cgf@cygnus.com>
1403
1404 * pexecute.c: Remove obsolete ifdefed cygwin code.
1405
9b1a92d8
KG
1406Fri Nov 27 13:26:06 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1407
1408 * choose-temp.c: Always include libiberty.h. Avoid redundancies.
1409 * cplus-dem.c: Likewise. Conform to libiberty.h.
1410 * pexecute.c: Likewise.
1411 * splay-tree.c: Likewise.
1412
c85c3232
MS
14131998-11-25 Mike Stump <mrs@wrs.com>
1414
1415 * Makefile.in (splay-tree.o): Add config.h dependency.
1416
35a6cd99
KG
1417Mon Nov 23 16:59:49 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1418
1419 * configure.in: Use AC_PREREQ(2.12.1).
1420
6e6e34b7
BK
14211998-11-16 Benjamin Kosnik <bkoz@haight.constant.com>
1422
5194cf08 1423 * cplus-dem.c (demangle_fund_type): Add demangling for C9x types.
6e6e34b7 1424
59b67c11
JL
1425Thu Nov 19 22:15:50 1998 Jeffrey A Law (law@cygnus.com)
1426
1427 * mpw.c (mpw_access): Add missing parens.
1428
a6458d1d
KG
1429Thu Nov 19 12:59:21 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1430
1431 * configure.in: Call AC_HEADER_SYS_WAIT.
1432
1433 * pexecute.c: Include sys/wait.h when !IN_GCC.
1434
3510075c
JL
1435Thu Nov 19 14:38:20 1998 Geoffrey Noer <noer@cygnus.com>
1436
1437 * pexecute.c: revert back to checking old Cygwin
1438 preprocessor symbol until some time has passed.
1439
1440Wed Nov 18 08:52:26 1998 Christopher Faylor <cgf@cygnus.com>
1441
1442 * pexecute.c: Reorganize WIN32 case to accomodate Cygwin
1443 since it will now support similar constructs.
1444
a9acf741
KG
1445Fri Nov 13 19:18:05 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1446
1447 * configure.in: Check for calloc.
1448
1449 * calloc.c: New file.
1450
1451 * xmalloc.c (xcalloc): New function.
1452
a49fb37a
AM
1453Fri Nov 13 08:51:46 EST 1998 Andrew MacLeod <amacleod@cygnus.com>
1454
1455 *cplus-dem.c (demangle_prefix): Use the last "__"
1456 in the mangled name when looking for the signature. This allows
1457 template names to begin with "__".
1458
0e714131
MM
14591998-11-08 Mark Mitchell <mark@markmitchell.com>
1460
ec2288ff
MM
1461 * cplus-dem.c (type_kind_t): Add tk_reference.
1462 (demangle_template_value_parm): Handle it.
1463 (do_type): Use it for references, instead of tk_pointer.
1464
0e714131
MM
1465 * cplus-dem.c (demangle_template_value_parm): Use cplus_demangle,
1466 not internal_cplus_demangle.
1467
2931b6d4
KG
1468Sat Nov 7 16:02:10 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1469
1470 * choose-temp.c: Don't include gansidecl.h.
1471 * mkstemp.c: Likewise.
1472 * pexecute.c: Likewise.
1473
dd8f3ed5
GN
1474Mon Nov 2 15:05:33 1998 Geoffrey Noer <noer@cygnus.com>
1475
5194cf08
ZW
1476 * configure.in: detect cygwin* instead of cygwin32*
1477 * configure: regenerate
dd8f3ed5 1478
c5f7c445
KG
1479Mon Nov 2 10:22:01 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1480
1481 * pexecute.c: Check HAVE_CONFIG_H, not IN_GCC, when determining
1482 whether to include config.h. Possibly include unistd.h in the
1483 !IN_GCC case. Define VFORK_STRING as a printable function call
1484 for error messages (either "vfork" or "fork".) If HAVE_VFORK_H is
1485 defined, include vfork.h. If VMS is defined, define vfork()
1486 appropriately. Remove vfork check on USG, we're using autoconf.
1487 (pexecute): Set `errmsg_fmt' to VFORK_STRING instead of checking
1488 locally what string to use.
1489
ad3ef78e
MM
14901998-10-26 Mark Mitchell <mark@markmitchell.com>
1491
1492 * splay-tree.c: Tweak include directives to make sure declarations of
1493 xmalloc and free are available.
1494
224301c1
MM
14951998-10-25 Mark Mitchell <mark@markmitchell.com>
1496
1497 * cplus-dem.c (gnu_special): Fix handling of virtual tables in
1498 anonymous namespaces.
38beb75c 1499
d9db46fd
MM
15001998-10-23 Mark Mitchell <mark@markmitchell.com>
1501
1502 * cplus-dem.c (work_stuff): Replace const_type and volatile_type
1503 with type_quals.
1504 (TYPE_UNQUALIFIED): New macro.
1505 (TYPE_QUAL_CONST): Likewise.
1506 (TYPE_QUAL_VOLATILE): Likewise.
1507 (TYPE_QUAL_RESTRICT): Likewise.
1508 (code_for_qualifier): New function.
1509 (qualifier_string): Likewise.
1510 (demangle_qualifier): Likewise.
1511 (internal_cplus_demangle): Use them.
1512 (demangle_signature): Likewise.
1513 (demangle_template_value_parm): Likewise.
1514 (do_type): Likewise.
1515 (demangle_fund_type)): Likewise.
224301c1 1516
b056ad1c
KG
1517Thu Oct 22 19:58:43 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1518
1519 * splay-tree.c (splay_tree_foreach_helper): Make definition static
1520 to match prototype.
1521
ed87f9c8
MM
15221998-10-21 Mark Mitchell <mark@markmitchell.com>
1523
1524 * splay-tree.c: New file.
1525 * Makefile.in (CFILES): Add it.
1526 (REQUIRED_OFILES): Likewise.
1527 (splay-tree.o): Add dependencies.
1528
e0c13971
AS
1529Tue Oct 20 12:29:02 1998 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
1530
1531 * cplus-dem.c (demangle_qualified): Fix off-by-one when checking
1532 range of 'K' index.
1533
91e0f659
KG
1534Thu Oct 15 18:51:12 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1535
1536 * choose-temp.c: Prototype mkstemps() when IN_GCC.
1537
1538 * cplus-dem.c (consume_count): Cast argument of ctype macro to
1539 `unsigned char'.
1540 (cplus_demangle_opname): Cast the result of `strlen' to (int) when
1541 comparing against one.
1542 (cplus_mangle_opname): Likewise.
1543 (demangle_integral_value): Cast argument of ctype macro to
1544 `unsigned char'.
1545 (demangle_template_value_parm): Likewise.
1546 (demangle_template): Initialize variable `bindex'. Cast the
1547 result of `strlen' to (int) when comparing against one. Remove
1548 unused variable `start_of_value_parm'.
1549 (demangle_class_name): Cast the result of `strlen' to (int) when
1550 comparing against one.
1551 (demangle_prefix): Cast argument of ctype macro to `unsigned char'.
1552 (gnu_special): Likewise. Cast the result of `strlen' to (int)
1553 when comparing against one.
1554 (demangle_qualified): Cast argument of ctype macro to `unsigned char'.
1555 (get_count): Likewise.
1556 (do_type): Likewise. Cast the result of `strlen' to (int) when
1557 comparing against one.
1558 (demangle_fund_type): Cast argument of ctype macro to `unsigned char'.
1559 (demangle_function_name): Cast the result of `strlen' to (int)
1560 when comparing against one.
1561
1562 * mkstemp.c (mkstemps): Cast variable `len' to (int) when
1563 comparing against one.
1564
73aeb2ff
JL
1565Tue Oct 13 23:51:51 1998 Jeffrey A Law (law@cygnus.com)
1566
5194cf08
ZW
1567 * mkstemp.c: Check HAVE_SYS_TIME_H before including sys/time.h
1568 * configure.in (AC_CHECK_HEADERS): Check for sys/time.h too.
1569 * config.in, configure: Rebuilt.
ae76f1be 1570
73aeb2ff
JL
1571 * getopt.c: Check HAVE_STRINGS_H before including strings.h.
1572 * configure.in (AC_CHECK_HEADERS): Check for strings.h too.
1573 * config.in, configure: Rebuilt.
1574
dd8f3ed5
GN
1575Mon Oct 12 19:15:59 1998 Geoffrey Noer <noer@cygnus.com>
1576
5194cf08 1577 * configure.in: in comment, call AC_EXEEXT instead of AM_EXEEXT
dd8f3ed5 1578
f77d8413
MT
1579Sun Oct 11 17:36:06 1998 Michael Tiemann <tiemann@holodeck.cygnus.com>
1580
1581 * Makefile.in (cplus-dem.o, obstack.o): Depend upon config.h.
1582
ca6b370d
JL
1583Thu Oct 8 23:42:08 1998 Jeffrey A Law (law@cygnus.com)
1584
1585 * Merge egcs & devo libiberty.
1586
ab4856b1
ML
1587