Mention gdbarch.sh and to not submit gdbarch.[ch].
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2001-02-23 Andrew Cagney <ac131313@redhat.com>
2
3 * CONTRIBUTE: Mention that patches do not need to include the
4 generated files gdbarch.h and gdbarch.c.
5
6
7 2001-02-21 Andrew Cagney <ac131313@redhat.com>
8
9 * value.h (get_saved_register): Move from here.
10 * frame.h: To here.
11
12 2001-02-21 Kevin Buettner <kevinb@redhat.com>
13
14 * solib.h (in_svr4_dynsym_resolve_code): Delete declaration.
15 (in_solib_dynsym_resolve_code): Add declaration.
16 (IN_SOLIB_DYNSYM_RESOLVE_CODE): Changed define to invoke
17 in_solib_dynsym_resolve_code() rather than
18 in_svr4_dynsym_resolve_code(). Also, removed the ifdefs
19 which caused this macro to only be defined when
20 SVR4_SHARED_LIBS is defined.
21 * solib.c (in_solib_dynsym_resolve_code): New function.
22 * solist.h (struct target_so_ops): Add new member
23 in_dynsym_resolve_code.
24 * solib-aix5.c (aix5_in_dynsym_resolve_code): Renamed from
25 in_svr4_dynsym_resolve_code. Also, made static.
26 (_initialize_aix5_solib): Initialize in_dynsym_resolve_code
27 member in aix5_so_ops.
28 * solib-svr4.c (svr4_in_dynsym_resolve_code): Renamed from
29 in_svr4_dynsym_resolve_code. Also, added second version
30 of this function which will be used when SVR4_SHARED_LIBS
31 is not defined.
32 (_initialize_svr4_solib): Initialize in_dynsym_resolve_code
33 member in svr4_so_ops.
34
35 * ia64-aix-nat.c, ia64-aix-tdep.c, config/ia64/aix.mh,
36 config/ia64/aix.mt, config/ia64/nm-aix.h, config/ia64/tm-aix.h,
37 config/ia64/xm-aix.h: New files.
38 * ia64-tdep.c (_initialize_ia64_tdep): Remove declaration.
39 (ia64_aix_sigcontext_register_address): New declaration.
40 (ia64_gdbarch_init): Provide for initialization of
41 sigcontext_register_address member of struct tdep when
42 on target is detected to be running AIX.
43 * config/ia64/linux.mt (TDEPFILES): Add ia64-aix-tdep.o to
44 this list.
45
46 2001-02-20 Kevin Buettner <kevinb@redhat.com>
47
48 * ia64-tdep.c (ia64_frameless_function_invocation): Implement.
49 * config/ia64/linux.mh (NATDEPFILES): Use thread-db.o and lin-lwp.o
50 for thread support instead of linux-thread.o and lin-thread.o.
51 * config/ia64/nm-linux.h (PREPARE_TO_PROCEED, GET_THREAD_SIGNALS,
52 ATTACH_LWP): Define to use the following lin-lwp.c functions...
53 (lin_lwp_prepare_to_proceed, lin_thread_get_thread_signals,
54 lin_lwp_attach_lwp): Declare.
55
56 2001-02-20 Andrew Cagney <ac131313@redhat.com>
57
58 * mips-tdep.c (do_fp_register_row, do_fp_register_row): Fix printf
59 formatting.
60
61 2001-02-20 Kevin Buettner <kevinb@redhat.com>
62
63 * solib-aix5.c (solib-svr4.h): Remove include.
64 (solib_break_names): Delete names which aren't actually
65 used by AIX5.
66 (bkpt_names): Remove.
67 (aix5_relocate_main_executable, bfd_lookup_symbol): Replace calls
68 to STREQ() with equivalent calls to strcmp().
69 (in_svr4_dynsym_resolve_code, enable_break, bfd_lookup_symbol,
70 aix5_solib_create_inferior_hook): Revise comments.
71 (enable_break): Remove old ``bkpt_names'' code.
72
73 2001-02-19 Andrew Cagney <ac131313@redhat.com>
74
75 * Makefile.in (SFILES): Add frame.c .
76 (COMMON_OBS): Add frame.o .
77 (frame.o): New target.
78
79 * frame.c (find_saved_register):
80 (default_get_saved_register):
81 (get_saved_register):
82 (read_relative_register_raw_bytes_for_frame):
83 (read_relative_register_raw_bytes): Moved to here.
84 * regcache.c: From here.
85
86 2001-02-20 Kevin Buettner <kevinb@redhat.com>
87
88 * solib-aix5.c: New file.
89
90 2001-02-20 Martin M. Hunt <hunt@redhat.com>
91
92 * solib.c (info_sharedlibrary_command): Don't assume pointers
93 are the same size of long, call longest_local_hex_string_custom().
94
95 * solib-svr4.c (LM_ADDR): LM_ADDR is a signed offset, so
96 extract_signed_integer() should be called instead of
97 extract_address().
98
99 2001-02-20 Martin M. Hunt <hunt@redhat.com>
100
101 * MAINTAINERS: Add Martin Hunt to Write After Approval list.
102
103 2001-02-19 Andrew Cagney <ac131313@redhat.com>
104
105 Frm 2001-02-09 Jim Kingdon <jkingdon@engr.sgi.com>:
106 * mips-tdep.c (mips_register_raw_size): If FP_REGISTER_DOUBLE,
107 then floating point registers are 8 bytes.
108
109 2001-02-19 Michael Snyder <msnyder@mvstp600e.cygnus.com>
110
111 * parse.c (write_exp_msymbol): Make the type CORE_ADDR, to
112 accomodate 64-bit addresses.
113
114 2001-02-19 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
115
116 From Peter Schauer <Peter.Schauer@regent.e-technik.tu-muenchen.de>
117 * symtab.c (lookup_symbol_aux): Call lookup_symbol_aux, not
118 lookup_symbol, when trying to find a symbol with a mangled name,
119 to avoid infinite recursion.
120
121 2001-02-18 Andrew Cagney <ac131313@redhat.com>
122
123 * TODO (5.2): Mention G++ 3.0 ABI. General cleanups.
124
125 2001-02-19 Jonathan Larmour <jlarmour@redhat.com>
126
127 * arm-tdep.c (check_prologue_cache): Fix off by 1 error.
128 (save_prologue_cache): Ditto.
129
130 2001-02-19 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
131
132 From: innadadadavida@yahoo.com:
133 * partial-stab.h (switch): Check that pst is not null
134 before dereferencing it.
135
136 2001-02-19 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
137
138 From Andrew Cagney <cagney@b1.cygnus.com>:
139 * symfile.c (add_symbol_file_command): Always initialize
140 my_cleanup using a NULL cleanup.
141
142 2001-02-19 Eli Zaretskii <eliz@is.elta.co.il>
143
144 * demangle.c (demangling_style_names): New variable.
145 (_initialize_demangler): Fill demangling_style_names with the
146 names of known demangling styles from libiberty_demanglers[]. Use
147 add_set_enum_cmd instead of add_set_cmd, to get completion on
148 demangling style names.
149
150 * proc-api.c (_initialize_proc_api): Make `procfs-file' use
151 file-name completion.
152
153 * remote-rdi.c (_initialize_remote_rdi): Ditto for `rdilogfile'.
154
155 * solib.c (_initialize_solib): Ditto for `solib-search-path' and
156 `solib-absolute-prefix'.
157
158 * tracepoint.c (_initialize_tracepoint): Ditto for
159 `save-tracepoints'.
160
161 * win32-nat.c (_initialize_inftarg): Ditto for `dll-symbols'.
162
163 * cli/cli-cmds.c (init_cli_cmds): Make `shell' and `make' use
164 file-name completion.
165
166 * infcmd.c (_initialize_infcmd): Make the following commands use
167 the file-name completer: `tty', `args', `path', `paths', and
168 `run'.
169
170 2001-02-18 Eli Zaretskii <eliz@is.elta.co.il>
171
172 * go32-nat.c: Include i387-nat.h.
173 (fetch_register): New function, uses some of the guts of
174 go32_fetch_registers and calls i387_supply_register.
175 (go32_fetch_registers): Most of the code moved into
176 fetch_register. Use i387_supply_fsave.
177 (store_register): Use i387_fill_fsave instead of custom code.
178 (go32_store_registers): Use i387_fill_fsave.
179
180 * Makefile.in (go32-nat.o): Depend on i387-nat.h.
181
182 * config/i386/go32.mh (NATDEPFILES): Add i387-nat.o.
183
184 * completer.c (gdb_completer_file_name_break_characters): Remove
185 slash from file-name break characters.
186 [__MSDOS__]: Special definition for DOS/Windows file names.
187 (line_completion_function): When completing on file names, bump
188 `p' to the first file-name constituent character of `word', before
189 invoking the completer.
190
191 2001-02-17 Mark Kettenis <kettenis@gnu.org>
192
193 * i387-nat.c: Include "i387-nat.h". Use regnum instead of regno
194 consistently for parameter names. Fix comments accordingly.
195 (i387_supply_register): New function.
196 (i387_supply_fsave): Implement using i387_supply_register.
197 * i387-nat.h: Use regnum instead of regno consistently for
198 parameter names. Fix comments accordingly.
199 (i387_supply_register): New prototype.
200
201 2001-02-16 Michael Snyder <msnyder@mvstp600e.cygnus.com>
202
203 * remote.c (build_remote_gdbarch_data): Use new TARGET_ADDR_BIT
204 instead of TARGET_PTR_BIT (to support Harvard architectures).
205
206 2001-02-16 Andrew Cagney <ac131313@redhat.com>
207
208 From 2001-02-11 Paul Hilfinger <hilfingr@lisbon.int.act-europe.fr>
209 * hpux-thread.c (hpux_thread_xfer_memory): Add mem_attrib
210 argument to parameter list and to call in order to conform to
211 to_xfer_memory field of struct target_ops.
212
213 2001-02-12 Michael Chastain <chastain@redhat.com>
214
215 * somsolib.c (som_solib_add_solib_objfile): Do not use
216 section relocation feature of syms_from_objfile. Do my own
217 section relocation, offsetting each section of the som by
218 either text_addr - text_link_addr or data_start.
219
220 2001-02-16 Andrew Cagney <ac131313@redhat.com>
221
222 * TODO (5.1): Move ``Hardware watchpint problems'' out of 5.1.
223
224 2001-02-16 Andrew Cagney <ac131313@redhat.com>
225
226 * MAINTAINERS (paper trail): Update.
227
228 2001-02-16 Mark Kettenis <kettenis@gnu.org>
229
230 * target.h (target_fetch_registers): Fix comment.
231
232 2001-02-15 Andrew Cagney <ac131313@redhat.com>
233
234 * f-exp.y: Include <ctype.h>.
235 (parse_number): Ensure that ``i'' is always initialized.
236
237 2001-02-14 Jim Kingdon <jkingdon@engr.sgi.com>
238
239 * MAINTAINERS: Add myself to paper trail section.
240
241 2001-02-14 Michael Sokolov <msokolov@ivan.Harhan.ORG>
242
243 * configure.in (AC_CHECK_HEADERS): Add sys/file.h.
244 * configure, config.in: Regenerate.
245 * corelow.c: Include <sys/file.h> if present.
246
247 2001-02-14 Andrew Cagney <ac131313@redhat.com>
248
249 * inflow.c (terminal_ours_1): Initialize ``osigtou''. Only
250 declare when have SIGTTOU.
251
252 2001-02-14 Eli Zaretskii <eliz@is.elta.co.il>
253
254 * config/djgpp/fnchange.lst: Add entries for gdb/gdbtk/*/ChangeLog-*.
255
256 2001-02-12 Jim Kingdon <jkingdon@engr.sgi.com>
257
258 * MAINTAINERS: Update my email address.
259
260 2001-02-11 Eli Zaretskii <eliz@is.elta.co.il>
261
262 * NEWS: Document that "info symbol" works with COFF debug info and
263 its variants.
264
265 * minsyms.c (lookup_minimal_symbol_by_pc_section): Don't skip
266 symbols whose SYMBOL_BFD_SECTION is NULL.
267
268 2000-02-10 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
269
270 Get rid of AIX specific PC_LOAD_SEGMENT, replace with PC_SOLIB.
271 * xcoffsolib.c (xcoff_solib_address): Renamed from
272 pc_load_segment_name. Return NULL if address is not in a shared
273 library. Cleanup shared library name construction, using xasprintf.
274 Format shared library member names consistent with format in exec.c.
275 (solib_info): Format shared library member names consistent with
276 format in exec.c.
277 * config/rs6000/nm-rs6000.h: Replace PC_LOAD_SEGMENT with PC_SOLIB,
278 using xcoff_solib_address for PC_SOLIB definition.
279 * stack.c (print_frame): Remove PC_LOAD_SEGMENT code, no longer
280 needed.
281
282 2000-02-10 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
283
284 * mipsread.c (read_alphacoff_dynamic_symtab): Replace alloca calls
285 with xmalloc calls and cleanups.
286
287 2000-02-10 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
288
289 * rs6000-nat.c (child_xfer_memory): Add missing parameter
290 'struct mem_attrib *' required by 2001-01-23 change.
291
292 2001-02-08 Jim Kingdon <jkingdon@engr.sgi.com>
293
294 Updates to "make TAGS":
295 * Makefile.in (ALLDEPFILES): Remove altos-xdep.c arm-convert.s
296 arm-xdep.c convex-tdep.c convex-xdep.c pyr-tdep.c pyr-xdep.c
297 tahoe-tdep.c.
298 (TAGFILES_NO_SRCDIR): Add $(SUBDIR_CLI_SRCS).
299
300 2001-02-08 Eli Zaretskii <eliz@is.elta.co.il>
301
302 * config/djgpp/fnchange.lst: Remove extraneous "too many dots".
303
304 Wed Feb 7 22:39:26 2001 Andrew Cagney <cagney@redhat.com>
305
306 From Dean Luick <luick@cray.com>:
307 * defs.h (continuation): Remove unused global variable.
308
309 Wed Feb 7 22:28:31 2001 Andrew Cagney <cagney@redhat.com>
310
311 * configure.tgt: Remove references to convex, pyramid, altos and
312 tahoe.
313 * configure.host: Ditto.
314 * MAINTAINERS: Ditto.
315 * NEWS: Update.
316
317 * tahoe-tdep.c: Delete obsolete file.
318 * pyr-xdep.c: Ditto.
319 * pyr-tdep.c: Ditto.
320 * convex-tdep.c: Ditto.
321 * convex-xdep.c: Ditto.
322 * config/tahoe/xm-tahoe.h: Ditto.
323 * config/tahoe/tm-tahoe.h: Ditto.
324 * config/tahoe/tahoe.mt: Ditto.
325 * config/tahoe/tahoe.mh: Ditto.
326 * config/pyr/xm-pyr.h: Ditto.
327 * config/pyr/tm-pyr.h: Ditto.
328 * config/pyr/pyramid.mt: Ditto.
329 * config/pyr/pyramid.mh: Ditto.
330 * config/m68k/xm-altos.h: Ditto.
331 * config/m68k/tm-altos.h: Ditto.
332 * config/m68k/altos.mt: Ditto.
333 * config/m68k/altos.mh: Ditto.
334 * config/convex/xm-convex.h: Ditto.
335 * config/convex/tm-convex.h: Ditto.
336 * config/convex/convex.mt: Ditto.
337 * config/convex/convex.mh: Ditto.
338 * config/convex/Convex.notes: Ditto.
339 * config/arm/xm-arm.h: Ditto.
340 * config/arm/nm-arm.h: Ditto.
341 * config/arm/arm.mt: Ditto.
342 * config/arm/arm.mh: Ditto.
343 * arm-convert.s: Ditto.
344 * arm-xdep.c: Ditto.
345 * altos-xdep.c: Ditto.
346
347 Wed Feb 7 19:41:21 2001 Andrew Cagney <cagney@redhat.com>
348
349 * defs.h (internal_error, internal_verror): Add __FILE__ and
350 __LINE__ parameter.
351 * utils.c (internal_error, internal_verror): Update.
352
353 * v850-tdep.c: Update calls to internal_error.
354 * utils.c: Ditto.
355 * ui-out.c: Ditto.
356 * ui-file.c: Ditto.
357 * target.h: Ditto.
358 * symtab.h: Ditto.
359 * symm-nat.c: Ditto.
360 * sparc-tdep.c: Ditto.
361 * source.c: Ditto.
362 * serial.c: Ditto.
363 * rs6000-tdep.c: Ditto.
364 * rs6000-nat.c: Ditto.
365 * remote.c: Ditto.
366 * remote-vx.c: Ditto.
367 * remote-sim.c: Ditto.
368 * remote-mips.c: Ditto.
369 * regcache.c: Ditto.
370 * objfiles.h: Ditto.
371 * objfiles.c: Ditto.
372 * mn10300-tdep.c: Ditto.
373 * mips-tdep.c: Ditto.
374 * maint.c: Ditto.
375 * m68k-tdep.c: Ditto.
376 * m3-nat.c: Ditto.
377 * language.c: Ditto.
378 * infptrace.c: Ditto.
379 * inferior.h: Ditto.
380 * infcmd.c: Ditto.
381 * ia64-tdep.c: Ditto.
382 * i386-tdep.c: Ditto.
383 * i386-linux-nat.c: Ditto.
384 * hppah-nat.c: Ditto.
385 * go32-nat.c: Ditto.
386 * findvar.c: Ditto.
387 * f-lang.c: Ditto.
388 * elfread.c: Ditto.
389 * event-loop.c: Ditto.
390 * dwarf2read.c: Ditto.
391 * dsrec.c: Ditto.
392 * d30v-tdep.c: Ditto.
393 * d10v-tdep.c: Ditto.
394 * cli/cli-setshow.c: Ditto.
395 * cli/cli-script.c: Ditto.
396 * ch-exp.c: Ditto.
397 * breakpoint.c: Ditto.
398 * ax-gdb.c: Ditto.
399 * arch-utils.c: Ditto.
400 * a29k-tdep.c: Ditto.
401 * gdb_assert.h: Ditto.
402 * gdbarch.sh: Ditto.
403 * gdbarch.h, gdbarch.c: Re-generate.
404
405 2001-02-07 Andrew Cagney <ac131313@redhat.com>
406
407 From Mark Kettenis <kettenis@gnu.org>:
408 * event-top.h [!STOP_SIGNAL]: #include <signal.h>.
409
410 2001-02-07 Andrew Cagney <ac131313@redhat.com>
411
412 * remote-sim.c (dump_mem): Cleanup printf format argument.
413 * MAINTAINERS: Update, mn10300-elf now builds.
414
415 2001-02-07 Mark Kettenis <kettenis@gnu.org>
416
417 * event-top.c: Remove duplicate #include <signal.h>.
418
419 2001-02-06 Andrew Cagney <ac131313@redhat.com>
420
421 * sol-thread.c (restore_inferior_pid): Save the PID in a freshly
422 allocated buffer.
423 (save_inferior_pid): Restore the PID from that tempoary
424 buffer. Delete the buffer.
425 * utils.c (make_cleanup_close, do_close_cleanup): Ditto for FD.
426
427 2001-02-06 Andrew Cagney <ac131313@redhat.com>
428
429 * MAINTAINERS: Add ``The Obvious Fix Rule''.
430
431 2001-02-06 Andrew Cagney <ac131313@redhat.com>
432
433 * MAINTAINERS: Add Michael Snyder to Solaris/SPARC list.
434
435 2001-02-06 Andrew Cagney <ac131313@cygnus.com>
436
437 * gdbarch.sh: Include "gdb_assert.h".
438 (struct gdbarch): Change ``nr_data'' to unsigned.
439 (alloc_gdbarch_data, free_gdbarch_data): New functions.
440 (gdbarch_free): Free the data-pointer vector. Use xfree to delete
441 architecture vector.
442 (struct gdbarch_data, struct gdbarch_data_registration): Move init
443 method to gdbarch_data. Add free method, make index unsigned.
444 (struct gdbarch_data_registry): Make nr unsigned.
445 (register_gdbarch_data): Add free parameter. Store in
446 gdbarch_data.
447 (init_gdbarch_data): Use set_gdbarch_data.
448 (set_gdbarch_data): New function.
449
450 * gdbarch.h, gdbarch.c: Re-generate.
451
452 2001-02-06 Michael Sokolov <msokolov@ivan.Harhan.ORG>
453
454 * ser-unix.c (hardware_print_tty_state) [HAVE_SGTTY]: Call
455 fprintf_filtered with correct arguments.
456
457 2001-02-06 Michael Snyder <msnyder@makita.cygnus.com>
458 Submitted by Paul Hilfinger (hilfingr@gnat.com)
459 and Andrei Petrov (and@genesyslab.com).
460 * findvar.c: Buffers of size MAX_REGISTER_RAW_SIZE or REGISTER_BYTES
461 must be allocated dynamically, since these are no longer constants.
462 * infcmd.c: Ditto.
463 * regcache.c: Ditto.
464 * remote.c: Ditto.
465 * sol-thread.c: Ditto.
466 * valops.c: Ditto.
467 * config/sparc/sun4sol2.mh (MH_CFLAGS): Add -I/usr/include/v9, as a
468 work-around for a missing Sun header file in solaris for sparc64.
469
470 2001-02-04 Philip Blundell <philb@gnu.org>
471
472 * config/arm/linux.mh (NATDEPFILES): Add proc-service.o,
473 thread-db.o, lin-lwp.o; remove lin-thread.o, linux-thread.o.
474 * config/arm/nm-linux.h (PREPARE_TO_PROCEED, ATTACH_LWP,
475 GET_THREAD_SIGNALS): Define.
476 * arm-linux-nat.c (fill_gregset): Correct type of argument.
477 (supply_gregset): Likewise.
478 (fill_fpregset): Likewise.
479 (supply_fpregset): Likewise.
480
481 Tue Feb 6 11:58:57 2001 David Taylor <taylor@redhat.com>
482
483 * valops.c (value_cast): If casting a scalar to a pointer, do not
484 issue a message about truncation unless it exceeds the length of
485 an address, not the length of a pointer. This is because what the
486 user gives us is an address, not a pointer, and we will ultimately
487 convert it (via ADDRESS_TO_POINTER) to a pointer, not truncate it
488 to a pointer. This allows things like "print *(int *)0x01000234"
489 to work without generating a misleading message on a target having
490 two byte pointers and four byte addresses.
491
492 2001-02-05 Christopher Faylor <cgf@cygnus.com>
493
494 * win32-nat.c: Change PTR to void * throughout.
495
496 2001-02-05 J.T. Conklin <jtc@redback.com>
497
498 * signals.h: Removed.
499 * event-top.c (#include <signal.h>): Changed from signals.h.
500 * inflow.c: Likewise.
501 * mac-xdep.c: Likewise.
502 * ser-pipe.c: Likewise.
503 * ser-tcp.c: Likewise.
504 * standalone.c: Likewise.
505 * top.c: Likewise.
506 * utils.c: Likewise.
507 * Makefile.in: Removed signals.h from dependencies.
508
509 2001-02-05 Christopher Faylor <cgf@cygnus.com>
510
511 Change suggested by Dean Luick <luick@cray.com>
512 * inferior.h (step_over_calls_kind): Remove trailing comma from
513 last enum element.
514 (step_over_calls): Declare as extern rather than global.
515
516 2001-02-05 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
517
518 * sh-tdep.c: Update copyright.
519 (sh_extract_return_value): Rewrite.
520 (sh3e_sh4_extract_return_value): New function.
521 (sh_gdbarch_init): Initialize gdbarch_extract-return_value to new
522 version of the function for sh3e and sh4 CPUs.
523
524 2001-02-05 Michael Chastain <chastain@redhat.com>
525
526 * hppah-nat.c (child_xfer_memory): Add parameter 'struct mem_attrib *'
527 to conform with interface change.
528
529 2001-02-04 Eli Zaretskii <eliz@is.elta.co.il>
530
531 * config/djgpp/fnchange.lst: Tweak to make consistent with the
532 new files.
533
534 * config/djgpp/djconfig.sh: Use explicit absolute file name when
535 invoking `find'.
536
537 * ser-go32.c (dos_write) [UART_FIFO_WORKS]: Use outportsb only if
538 UART_FIFO_WORKS is defined. Otherwise use outportb.
539 From Francisco Pastor <fpastor.etra-id@etra.es>
540
541 * go32-nat.c (go32_xfer_memory): Make the argument list consistent
542 with target.h's `to_xfer_memory' member.
543
544 2001-02-02 J.T. Conklin <jtc@redback.com>
545
546 * ppc-bdm.c (#include <signal.h>): Removed.
547 * remote-array.c: Likewise.
548 * remote-bug.c: Likewise.
549 * remote-e7000.c: Likewise.
550 * remote-mips.c: Likewise.
551 * remote-os9k.c: Likewise.
552 * remote-st.c: Likewise.
553 * remote-udi.c: Likewise.
554 * remote-vx29k.c: Likewise.
555 * remote-vx68.c: Likewise.
556 * remote-vx960.c: Likewise.
557 * remote-vxmips.c: Likewise.
558 * remote-vxsparc.c: Likewise.
559
560 2001-02-02 John Moore <jmoore@redhat.com>
561
562 * remote-utils.h (sr_set_device): Changed free() to xfree() where
563 appropriate. Also changed Copyright to include 2001.
564 * symtab.h (obstack_chunk_free, SYMBOL_INIT_DEMANGLED_NAME): Likewise.
565 * value.h (value_free): Likewise.
566 * gdbarch.sh (gdbarch_free): Likewise.
567 * gdbarch.c, gdbarch.h: Regenerated.
568
569 2001-02-02 John Moore <jmoore@redhat.com>
570
571 * cli/cli-cmds.c (apropos_command): Changed occurance of free() to
572 xfree(). Also changed Copyright to include 2001.
573
574 2001-02-02 J.T. Conklin <jtc@redback.com>
575
576 * monitor.c (#include "gdb_wait.h"): Removed.
577 * ocd.c: Likewise.
578 * ppc-bdm.c: Likewise.
579 * remote-adapt.c: Likewise.
580 * remote-array.c: Likewise.
581 * remote-bug.c: Likewise.
582 * remote-e7000.c: Likewise.
583 * remote-eb.c: Likewise.
584 * remote-es.c: Likewise.
585 * remote-mips.c: Likewise.
586 * remote-mm.c: Likewise.
587 * remote-nindy.c: Likewise.
588 * remote-os9k.c: Likewise.
589 * remote-rdi.c: Likewise.
590 * remote-rdp.c: Likewise.
591 * remote-sds.c: Likewise.
592 * remote-sim.c: Likewise.
593 * remote-st.c: Likewise.
594 * remote-udi.c: Likewise.
595 * remote-vx.c: Likewise.
596 * remote-vx29k.c: Likewise.
597 * remote-vx68.c: Likewise.
598 * remote-vx960.c: Likewise.
599 * remote-vxmips.c: Likewise.
600 * remote-vxsparc.c: Likewise.
601 * remote.c: Likewise.
602 * ser-pipe.c: Likewise.
603 * ser-unix.c: Likewise.
604 * Makefile.in: Updated dependencies.
605
606 2001-01-31 David Smith <dsmith@redhat.com>
607
608 * event-loop.c: Change inclusion of string.h to gdb_string.h and
609 updated the copyright notice.
610 * ser-pipe.c: Ditto.
611 * mi/mi-cmds.c: Ditto.
612 * mi/mi-console.c: Ditto.
613 * mi/mi-getopt.c: Ditto.
614 * mi/mi-parse.c: Ditto.
615
616 2001-01-31 David Smith <dsmith@redhat.com>
617
618 * MAINTAINERS: Add David Smith to Write After Approval list.
619
620 Tue Jan 30 15:43:08 2001 Andrew Cagney <cagney@cygnus.com>
621
622 * cli/cli-utils.c (putchar_filtered): Move function from here.
623 * utils.c (putchar_filtered): To here.
624 * cli/cli-utils.h (putchar_filtered): Move declaration from here.
625 * defs.h (putchar_filtered): To here.
626
627 Tue Jan 30 17:27:11 2001 Andrew Cagney <cagney@redhat.com>
628
629 * configure.in (AC_CHECK_FUNCS): Replace vfork test with
630 AC_FUNC_VFORK macro.
631 * config.in, configure: Re-generate.
632
633 * gdb_vfork.h: New file.
634 * ser-pipe.c (pipe_open): Update. Include "gdb_vfork.h".
635 * fork-child.c (fork_inferior): Ditto.
636
637 Tue Jan 30 17:09:07 2001 Andrew Cagney <cagney@redhat.com>
638
639 * defs.h (strsave): Delete declaration.
640 * utils.c (strsave): Delete definition.
641 * TODO (strsave): Update
642
643 * mac-xdep.c (tilde_expand): Replace strsave with xstrdup.
644 * sparcl-tdep.c (sparclite_open): Ditto.
645 * mips-tdep.c (mips_set_processor_type_command): Ditto.
646 (_initialize_mips_tdep): Ditto.
647 * solib.c (solib_open): Ditto.
648 * symfile.c (add_filename_language): Ditto.
649 (set_ext_lang_command): Ditto.
650 * source.c (init_source_path): Ditto.
651 (mod_path): Ditto.
652 * sh3-rom.c (sh3_open): Ditto.
653 (sh3e_open): Ditto.
654 * serial.c (serial_open): Ditto.
655 * remote-mips.c (common_open): Ditto.
656 * monitor.c (monitor_open): Ditto.
657 * m32r-rom.c (m32r_upload_command): Ditto.
658 * infcmd.c (path_command): Ditto.
659 * f-exp.y (parse_number): Ditto.
660 * breakpoint.c (create_longjmp_breakpoint): Ditto.
661 (create_thread_event_breakpoint): Ditto.
662 * arc-tdep.c (arc_set_cpu_type_command): Ditto.
663 (_initialize_arc_tdep): Ditto.
664
665 Tue Jan 30 15:14:26 2001 Andrew Cagney <cagney@skil>
666
667 * cli/cli-script.c (define_command): Check for a bad hook value in
668 switch statement.
669
670 2001-01-30 J.T. Conklin <jtc@redback.com>
671
672 * configure/sh/embed.mt: New file.
673 * configure/sh/linux.mt: New file.
674 * configure/sh/sh.mt: Removed.
675 * configure.tgt (sh-*-hms,sh-*-coff*,sh-*-elf*,sh-*-linux): New targets.
676 (sh-*-*): Removed.
677
678 2001-01-29 Michael Chastain <chastain@redhat.com>
679
680 * symtab.c (block_lookup_symbol): Use 'namespace' parameter in
681 symbol comparisons in binary search.
682
683 2000-01-27 Christopher Faylor <cgf@cygnus.com>
684
685 * win32-nat.c (child_xfer_memory): Add missing argument required by
686 2001-01-23 change.
687
688 2001-01-27 Mark Kettenis <kettenis@gnu.org>
689
690 * ui-out.c (do_list_end): New function.
691 (make_cleanup_ui_out_list_end): New function.
692 * ui-out.h: Provide prototype for make_cleanup_ui_out_list_end.
693 * stack.c (print_frame) [UI_OUT]: Call
694 make_cleanup_ui_out_list_end to make sure we mark the end of the
695 list if we do a non-local exit. At the end of the function,
696 instead of calling ui_out_list_end directly, let do_cleanups
697 handle it.
698
699 2001-01-26 Fernando Nasser <fnasser@redhat.com>
700
701 Fix double parsing of filenames passed as command line arguments
702 to GDB (causes weird handling of escape characters).
703 Also, remove dependencies on the CLI from libgdb.
704 * call-cmds.h: Remove declaration of exec_file_command().
705 * gdbcore.h: Remove declaration of exec_file_command().
706 Add declarations for exec_open() and exec_file_clear().
707 * symfile.h: Add declarations for symbol_file_add_main() and
708 symbol_file_clear().
709 * exec.c (exec_open): New function. Implements to_open for exec
710 targets.
711 (exec_file_clear): New function. Makes GDB forget about a previously
712 specified executable file.
713 (exec_file_attach): Move parsing of arguments from here ...
714 (exec_file_command): ... to here.
715 (init_exec_ops): Use exec_open(), not exec_file_command() to
716 implement to_open for exec targets.
717 * symfile.c (symbol_file_add_main): New function. Call symbol_file_add()
718 with default values. Used when the file name has already been parsed.
719 (symbol_file_clear): New function. Makes GDB forget about previously
720 read symbols.
721 (symbol_file_command): Call the above function instead of inline code.
722 * main.c: Include "symfile.h" and "gdbcore.h" instead of the deprecated
723 "call-cmds.h".
724 (captured_main): Call exec_file_attach() and symbol_file_add_main()
725 instead of exec_file_command() and symbol_file_command().
726 (captured_main): Add comment.
727 * corefile.c: Include "symfile.h".
728 (core_file_command): Call symbol_file_add_main() instead of
729 symbol_file_command().
730 (reopen_exec_file): Call exec_open() instead of exec_file_command().
731 * infcmd.c: Include "symfile.h".
732 (attach_command): Call symbol_file_add_main() instead of
733 symbol_file_command().
734 * infrun.c: Remove comment about the inclusion of "symfile.h",
735 not any longer appropriate.
736 (follow_exec): Call symbol_file_add_main() instead of
737 symbol_file_command().
738 * remote-es.c: Include "symfile.h".
739 (es1800_load): Call symbol_file_add_main() instead of
740 symbol_file_command().
741 * remote-vx.c: Remove comment about the inclusion of "symfile.h",
742 not any longer appropriate.
743 (vx-wait): Call symbol_file_add_main() instead of
744 symbol_file_command().
745 * solib-svr4.c (open_symbol_file_object): Call symbol_file_add_main()
746 instead of symbol_file_command().
747 * v850ice.c (ice_file): Call exec_open(), exec_file_attach() and
748 symbol_file_add_main() instead of exec_file_command() and
749 symbol_file_command().
750 * Makefile.in: Update dependencies.
751
752 2001-01-26 Jeff Holcomb <jeffh@redhat.com>
753
754 * remote-udi.c (udi_open): Change strdup to xstrdup.
755 * thread.c (thread_apply_all_command): Change strdup to xstrdup.
756 Update copyright message.
757 * varobj.c (delete_variable_1): Likewise.
758
759 * gdb_string.h: Remove declaration of strdup. Update copyright
760 message.
761 * config/xm-mpw.h: Likewise.
762 * config/i386/xm-i386mach.h: Likewise.
763 * config/m68k/xm-apollo68b.h: Likewise.
764 * config/m68k/xm-hp300bsd.h: Likewise.
765 * config/rs6000/xm-rs6000.h: Likewise.
766 * config/vax/xm-vaxult.h: Remove declaration of strdup.
767 * config/vax/xm-vaxult2.h: Likewise.
768
769 2001-01-26 Jeff Holcomb <jeffh@redhat.com>
770
771 * MAINTAINERS: Add Jeff Holcomb to Write After Approval list.
772
773 2001-01-25 J.T. Conklin <jtc@redback.com>
774
775 * target.c (target_xfer_memory_partial): Return -1 on failure due
776 to invalid access mode attribute.
777
778 2001-01-25 Christopher Faylor <cgf@cygnus.com>
779
780 * win32-nat.c (_initialize_core_win32): Prototype correctly.
781
782 2001-01-25 Mark Kettenis <kettenis@gnu.org>
783
784 * config/alpha/tm-fbsd.h: Update copyright.
785 (USE_STRUCT_CONVENTION): Define in terms of
786 alphabsd_use_struct_convention.
787 * config/alpha/fbsd.mt (TDEPFILES): Add alphafbsd-tdep.c.
788 * alphafbsd-tdep.c: New file.
789
790 2001-01-24 Fernando Nasser <fnasser@redhat.com>
791
792 * top.c (print_gdb_version): Update Copyright year.
793
794 2001-01-24 J.T. Conklin <jtc@redback.com>
795
796 * dcache.c (dcache_write_line): Fix typo.
797
798 * memattr.c (delete_mem_region): Replace free() with xfree().
799 (mem_number): Add explicit type.
800
801 * sol-thread.c (sol_thread_xfer_memory): Add attrib argument.
802 (rw_common): Likewise.
803
804 2001-01-24 Fernando Nasser <fnasser@redhat.com>
805
806 * infcmd.c (get_inferior_args, set_inferior_args): Accessor functions
807 for the inferior program arguments.
808 (run_command, run_no_args_command, init_infcmd)): Use accessor
809 functions to set the inferior program arguments.
810 * inferior.h: Add definitions to the accessor functions above.
811
812 2001-01-23 Jim Blandy <jimb@redhat.com>
813
814 * dwarf2read.c (read_tag_const_type, read_tag_volatile_type):
815 Implement these correctly, using make_cv_type.
816
817 2001-01-23 J.T. Conklin <jtc@redback.com>
818
819 * exec.c (xfer_memory): Add attrib argument.
820 * infptrace.c (child_xfer_memory): Likewise.
821 * lin-lwp.c (lin_lwp_xfer_memory): Likewise.
822 * monitor.c (monitor_xfer_memory): Likewise.
823 * remote-adapt.c (adapt_xfer_inferior_memory): Likewise.
824 * remote-array.c (array_xfer_memory): Likewise.
825 * remote-bug.c (bug_xfer_memory): Likewise.
826 * remote-e7000.c (e7000_xfer_inferior_memory): Likewise.
827 * remote-eb.c (eb_xfer_inferior_memory): Likewise.
828 * remote-es.c (es1800_xfer_inferior_memory): Likewise.
829 * remote-mips.c (mips_xfer_memory): Likewise.
830 * remote-mm.c (mm_xfer_inferior_memory): Likewise.
831 * remote-nindy.c (nindy_xfer_inferior_memory): Likewise.
832 * remote-os9k.c (rombug_xfer_inferior_memory): Likewise.
833 * remote-rdi.c (arm_rdi_xfer_memory): Likewise.
834 * remote-rdp.c (remote_rdp_xfer_inferior_memory): Likewise.
835 * remote-sds.c (sds_xfer_memory): Likewise.
836 * remote-sim.c (gdbsim_xfer_inferior_memory): Likewise.
837 * remote-st.c (st2000_xfer_inferior_memory): Likewise.
838 * remote-udi.c (udi_xfer_inferior_memory): Likewise.
839 * remote-vx.c (vx_xfer_memory): Likewise.
840 * remote.c (remote_xfer_memory): Likewise.
841 * target.c (debug_to_xfer_memory, do_xfer_memory): Likewise.
842 * target.h (child_xfer_memory, do_xfer_memory, xfer_memory): Likewise.
843 * thread-db.c (thread_db_xfer_memory): Likewise.
844
845 * target.h (#include "memattr.h"): Added.
846 (target_ops.to_xfer_memory): Add attrib argument.
847
848 * wince.c (_initialize_inftarg): Removed call to set_dcache_state.
849 * dcache.h (set_dcache_state): Removed declaration.
850 * dcache.c (set_dcache_state): Removed definition
851
852 * dcache.c: Update module comment, as dcache is now enabled and
853 disabled with memory region attributes instead of by the global
854 variable "remotecache". Add comment describing the interaction
855 between dcache and memory region attributes.
856 (dcache_xfer_memory): Add comment describing benefits of moving
857 cache writeback to a higher level.
858 (dcache_struct): Removed cache_has_stuff field. This was used to
859 record whether the cache had been accessed in order to invalidate
860 it when it was disabled. However, this is not needed because the
861 cache is write through and the code that enables, disables, and
862 deletes memory regions invalidate the cache. Add comment which
863 suggests that we could be more selective and only invalidate those
864 cache lines containing data from those memory regions.
865 (dcache_invalidate): Updated.
866 (dcache_xfer_memory): Updated.
867
868 (dcache_alloc): Don't abort() if dcache_enabled_p is clear.
869 (dcache_xfer_memory): Removed code that called do_xfer_memory() to
870 perform a uncached transfer if dcache_enabled_p was clear. This
871 function is now only called if caching is enabled for the memory
872 region.
873 (dcache_info): Always print cache info.
874
875 * target.c (do_xfer_memory): Add attrib argument.
876 (target_xfer_memory, target_xfer_memory_partial): Break transfer
877 into chunks defined by memory regions, pass region attributes to
878 do_xfer_memory().
879 * dcache.c (dcache_read_line, dcache_write_line): Likewise.
880
881 * Makefile.in (SFILES): Add memattr.c.
882 (COMMON_OBS): Add memattr.o.
883 (dcache.o): Add target.h to dependencies.
884 * memattr.c: New file.
885 * memattr.h: Likewise.
886
887 * config/m32r/m32r.mt (GDBSERVER_LIBS): Added ../../intl/libintl.a.
888 * config/mips/vr5000.mt (GDBSERVER_LIBS): Likewise.
889 * config/tic80/tic80.mt (GDBSERVER_LIBS): Likewise.
890 * gdbserver/low-sim.c (#include "defs.h"): Removed.
891 (mygeneric_load): Rename from generic_load.
892
893 * gdbserver/low-hppabsd.c (#include "server.h"): Added.
894 (#include "defs.h"): Removed.
895 (inferior_pid, perror_with_name): Remove declarations.
896 * gdbserver/low-linux.c: Likewise.
897 * gdbserver/low-nbsd.c: Likewise.
898 * gdbserver/low-sparc.c: Likewise.
899 * gdbserver/low-sun3.c: Likewise.
900
901 * i386-stub.c: Re-indent.
902 * m68k-stub.c: Re-indent.
903
904 2001-01-22 Nicholas Duffek <nsd@redhat.com>
905
906 * gdbarch.sh (PARM_BOUNDARY): Define.
907 * gdbarch.c: Regenerate.
908 * gdbarch.h: Regenerate.
909
910 2001-01-22 J.T. Conklin <jtc@redback.com>
911
912 * ns32k-tdep.c: #include "frame.h"
913 * config/ns32k/tm-umax.h (FRAME_FIND_SAVED_REGS): Restore. It
914 appears to have been inadvertantly removed sometime in May 1999.
915
916 * Revert 2000-11-09 changes where shared library objects were
917 moved from NATDEPFILES to TDEPFILES on NetBSD targets. While
918 we'd like to be able to debug dynamically linked executables,
919 this makes it impossible to build a cross debugger on a many
920 hosts.
921
922 * config/i386/nbsd.mt: Remove solib.o, solib-svr4.o from TDEPFILES.
923 * config/i386/nbsdelf.mt: Likewise.
924 * config/m68k/nbsd.mt: Likewise.
925 * config/ns32k/nbsd.mt: Likewise.
926 * config/powerpc/nbsd.mt: Likewise.
927 * config/sparc/nbsd.mt: Likewise.
928 * config/sparc/nbsdelf.mt: Likewise.
929 * config/i386/nbsd.mh: Add solib.o, solib-svr4.o to NATDEPFILES.
930 * config/i386/nbsdelf.mh: Likewise.
931 * config/m68k/nbsd.mh: Likewise.
932 * config/ns32k/nbsd.mh: Likewise.
933 * config/powerpc/nbsd.mh: Likewise.
934 * config/sparc/nbsd.mh: Likewise.
935
936 2001-01-19 Jason Merrill <jason@redhat.com>
937
938 * dbxread.c (read_ofile_symtab): Stay with AUTO_DEMANGLING for G++.
939 (process_one_symbol): Likewise.
940 * dwarfread.c (handle_producer): Likewise.
941
942 Thu Jan 18 12:08:57 2001 Andrew Cagney <cagney@b1.cygnus.com>
943
944 * configure.in (build_warnings): Disable -Wuninitialized until GDB
945 compiles with -Wuninitialized,-Werror.
946 * configure: Regenerate.
947
948 * MAINTAINERS: Add list of buildable targets.
949
950 Thu Jan 18 12:48:04 2001 Andrew Cagney <cagney@b1.cygnus.com>
951
952 * defs.h (STRCMP): Delete macro.
953
954 * objfiles.c (objfile_relocate): Replace STRCMP with call to
955 strcmp.
956 * symtab.c (lookup_partial_symbol, lookup_block_symbol): Ditto.
957 * symfile.c (compare_symbols): Ditto.
958 * standalone.c (open): Ditto.
959 * remote-es.c (verify_break): Ditto.
960 * cli/cli-decode.c (add_cmd, add_show_from_set): Ditto.
961
962 * symfile.c (compare_psymbols): Delete comment refering to STRCMP.
963
964 Thu Jan 18 12:25:06 2001 Andrew Cagney <cagney@b1.cygnus.com>
965
966 * varobj.c (FREEIF): Delete macro.
967 (varobj_set_value, free_variable): Replace FREEIF with ``xfree''
968 call.
969
970 2001-01-18 Nick Clifton <nickc@redhat.com>
971
972 * arc-tdep.c (arc_cpu_type_table): Add new arc core numbers.
973 (arc_print_insn): No bfd available, so pass NULL to
974 arc_get_disassembler.
975
976 2001-01-09 James Ingham <jingham@inghji.apple.com>
977
978 * symtab.c (lookup_symbol_aux): Call lookup_symbol_aux to lookup
979 a mangled symbol rather than recursing into lookup_symbol, since
980 this will just re-unmangle the name & call lookup_symbol_aux -
981 leading to an infinite recursion.
982
983 2001-01-18 Mark Kettenis <kettenis@gnu.org>
984
985 * infcmd.c (print_return_value): Restore another space lost by
986 switch to UIOUT. ``$NN='' should be ``$NN =''.
987
988 Fri Jan 19 02:31:40 2001 Andrew Cagney <cagney@b1.cygnus.com>
989
990 * target.h (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT)
991 * breakpoint.c (TARGET_REGION_OK_FOR_HW_WATCHPOINT): Wrap macro
992 definition in parenthesis.
993
994 Fri Jan 19 02:13:40 2001 Andrew Cagney <cagney@b1.cygnus.com>
995
996 From 2000-10-27 Mark Salter <msalter@redhat.com>:
997 * remote.c (remote_remove_hw_breakpoint): Add 'len' field to Z
998 packet.
999 (remote_insert_hw_breakpoint): Ditto.
1000
1001 2001-01-17 J.T. Conklin <jtc@redback.com>
1002
1003 * config/m68k/tm-nbsd.h (USE_STRUCT_CONVENTION): Define.
1004 (BPT_VECTOR, REMOTE_BPT_VECTOR): Change to 0xf.
1005 * config/m68k/nbsd.mt (TDEPFILES): Add m68knbsd-tdep.o.
1006 * m68knbsd-tdep.c: New file.
1007
1008 * i386nbsd-tdep.c: Remove #if 0'd out #includes.
1009
1010 * m68knbsd-nat.c: #include gdbcore.h.
1011
1012 Wed Jan 17 09:41:58 2001 Andrew Cagney <cagney@b1.cygnus.com>
1013
1014 * MAINTAINERS: Add J.T. Conklin to Blanket Write Privs.
1015
1016 2001-01-16 Michael Snyder <msnyder@cleaver.cygnus.com>
1017
1018 * procfs.c (procfs_stopped_by_watchpoint): Don't die if process
1019 goes away -- just return false (ie. not stopped by watchpoint).
1020 * source.c (openp): Fix typo in comment.
1021
1022 2001-01-12 Nicholas Duffek <nsd@redhat.com>
1023
1024 * blockframe.c (generic_get_saved_register): Spelling fix.
1025 * frame.h (FRAME_FP): Spelling fix.
1026
1027 Fri Jan 12 18:29:46 2001 Andrew Cagney <cagney@b1.cygnus.com>
1028
1029 * infcmd.c (print_return_value): Restore space lost by switch to
1030 UIOUT. ``$NN='' should be ``$NN =''.
1031
1032 2001-01-08 Nicholas Duffek <nsd@redhat.com>
1033
1034 * regcache.c (set_register_cached, register_buffer,
1035 real_register, pseudo_register fetch_register, store_register):
1036 New functions.
1037 (register_changed, read_relative_register_raw_bytes_for_frame,
1038 registers_changed, registers_fetched, read_register_bytes,
1039 read_register_gen, write_register_gen, read_register,
1040 read_signed_register, write_register, supply_register): Replace
1041 register_valid[] with register_cached() and
1042 set_register_cached().
1043 (read_register_bytes, read_register_gen, write_register_gen,
1044 read_register, read_signed_register, write_register,
1045 supply_register): Replace registers[] with register_buffer().
1046 (read_register_bytes, read_register_gen, read_register,
1047 read_signed_register): Call fetch_register().
1048 (write_register_gen, write_register): Call real_register() and
1049 store_register().
1050 (write_register_bytes): Call store_register().
1051 * value.h (set_register_cached, register_buffer): Prototype.
1052 * remote.c (remote_fetch_registers): Allocate regs[] with a
1053 run-time size. Replace register_valid[] with
1054 set_register_cached().
1055 (store_register_using_P, remote_store_registers): Replace
1056 registers[] with register_buffer().
1057
1058 2001-01-08 Nicholas Duffek <nsd@redhat.com>
1059
1060 * regcache.c: Change "write-back" comment to "write-through".
1061 Change "regno" to "regnum".
1062 (read_register, read_signed_register): Remove "raw" from return
1063 value description.
1064 (supply_register): Spelling fix.
1065 * value.h: Change "regno" to "regnum".
1066
1067 2001-01-08 Fernando Nasser <fnasser@redhat.com>
1068
1069 * Makefile.in (install-gdbtk): Add .itcl files to the list of files
1070 to be installed.
1071
1072 2001-01-04 Michael Snyder <msnyder@mvstp600e.cygnus.com>
1073
1074 * mips-tdep.c (mips_coerce_float_to_double): Fix typo in comment.
1075
1076 2001-01-04 Nicholas Duffek <nsd@redhat.com>
1077
1078 * valops.c (VALUE_SUBSTRING_START): Delete.
1079
1080 2001-01-04 Nicholas Duffek <nsd@redhat.com>
1081
1082 * Makefile.in (SUBDIR_CLI_OBS): Add cli/cli-utils.o.
1083 (SUBDIR_CLI_SRCS): Add cli/cli-utils.c.
1084 (cli_utils_h): New variable.
1085 (cli/cli-utils.o): New rule.
1086 * cli/cli-utils.c: New file.
1087 * cli/cli-utils.h: New file.
1088
1089 2001-01-04 Nicholas Duffek <nsd@redhat.com>
1090
1091 * config/i386/tm-i386.h (REGISTER_CONVERT_TO_VIRTUAL,
1092 REGISTER_CONVERT_TO_RAW): Delete trailing semicolon.
1093
1094 2001-01-03 J.T. Conklin <jtc@redback.com>
1095
1096 * alphabsd-nat.c, i386-linux-nat.c, i386bsd-nat.c: Fix typo in
1097 comment.
1098
1099 2001-01-02 Michael Snyder <msnyder@cleaver.cygnus.com>
1100
1101 * sh-tdep.c (sh_default_store_return_value): Allow for small return type.
1102 (sh3e_sh4_store_return_value): Call sh_default_store_return_value for
1103 non-float types.
1104 * sparc-tdep.c (sparc_frame_chain): Fix typo in comment.
1105 Update copyright notice.
1106
1107 For older changes see ChangeLog-2000
1108 \f
1109 Local Variables:
1110 mode: change-log
1111 left-margin: 8
1112 fill-column: 74
1113 version-control: never
1114 End:
This page took 0.051217 seconds and 4 git commands to generate.