* d10v-tdep.c (d10v_extract_return_value): Wierd. GCC wants to return
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
19735aea
AC
1Mon Feb 16 14:05:54 1998 Andrew Cagney <cagney@b1.cygnus.com>
2
3 * d10v-tdep.c (d10v_extract_return_value): Wierd. GCC wants to
4 return odd sized register quantities with only half of the first
5 register used!
6
7 * config/d10v/tm-d10v.h (USE_STRUCT_CONVENTION): Use stack when
8 size > 8.
9
f45d8080
JM
10Mon Mar 30 16:42:12 1998 Jason Molenda (crash@bugshack.cygnus.com)
11
12 * rdi-share/Makefile.am, rdi-share/aclocal.m4,
13 rdi-share/configure: New files.
14 * rdi-share/configure.in: Rewritten to be an autoconf input file.
15 * rdi-share/Makefile.in, rdi-share/configure: Generated by
16 automake/autoconf.
17 * rdi-share/dbg_hif.h, etherdrv.c, hostchan.c: Use autoconf tests
18 to check environment.
19
57a39824
KS
20Sun Mar 29 15:17:16 1998 Keith Seitz <keiths@onions.cygnus.com>
21
22 * tracepoint.c (trace_start_command): Set trace_running_p.
23 (trace_stop_command): Clear trace_running_p.
24
dfbb701a
SS
25Sat Mar 28 15:19:48 1998 Stan Shebs <shebs@andros.cygnus.com>
26
27 * NEWS: Update for 4.17 release.
28
41158958
EZ
29Thu Mar 26 22:29:28 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
30
31 * tracepoint.c (trace_status_command): Recognize a boolean return
32 value from the stub to indicate whether trace experiment is
33 running. Export this value as a global state variable
34 (trace_running_p) for use by the GUI. (from Michael Snyder)
35 (trace_pass_command) added call to modify_tracepoint_hook.
36
37 * tracepoint.h export trace_running_p
38
39start-sanitize-sky
40Wed Mar 25 11:45:19 1998 Frank Ch. Eigler <fche@cygnus.com>
41
42 * configure.in (sim-gpu2): Added target type checking to make
43 --with-sim-gpu2 option only valid for sky target.
44 * configure: Regenerated.
45end-sanitize-sky
46
47Tue Mar 24 16:22:40 1998 Stu Grossman <grossman@bhuna.cygnus.co.uk>
48
49 * Makefile.in: Derive SHELL from configure.
50 * config/d10v/d10v.mt config/d30v/d30v.mt config/m32r/m32r.mt
51 config/mn10200/mn10200.mt config/mn10300/mn10300.mt : Remove -lm
52 from SIM. This prevents dependency checking of -lm (under NT
53 native builds). (It is automatically added by configure if it
54 exists.)
55 * doc/configure mswin/configure nlm/configure
56 testsuite/gdb.base/configure testsuite/gdb.c++/configure
57 testsuite/gdb.chill/configure testsuite/gdb.disasm/configure
58 testsuite/gdb.stabs/configure testsuite/gdb.threads/configure:
59 Regenerate with autoconf 2.12.1 to fix shell issues for NT native
60 builds.
61
fecf06cf
JM
62Mon Mar 23 18:10:57 1998 Ulrich Drepper (drepper@cygnus.com)
63
64 * solib.c (solib_create_inferior_hook): Rewrite previous
65 change to check the type of file via BFD.
66
124e64bb
JM
67Mon Mar 23 13:52:28 1998 Ulrich Drepper (drepper@cygnus.com)
68
69 * breakpoint.c (breakpoint_re_set_one): Treat bp_shlib_events
70 like bp_breakpoints.
71 * solib.c (solib_create_inferior_hook): Relocate section addresses
72 if the alleged start address doesn't agree with the PC.
73
b236defa
FCE
74start-sanitize-sky
75Mon Mar 23 13:07:22 1998 Frank Ch. Eigler <fche@cygnus.com>
76
77 * configure.in (sim-gpu2): Added --with-sim-gpu2 as configure
78 option, to allow gdb+sim linking with sky GPU2 library.
83c7ab51 79 * configure: Regenerated.
124e64bb 80
b236defa 81end-sanitize-sky
b236defa
FCE
82Sat Mar 21 19:34:49 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
83
84 merged changes from Foundry (list follows by file/author):
85
86 - Tom Tromey <tromey@cygnus.com>
87 * Makefile.in (gdbres.o): New target.
88 (WINDRES): New define.
89 * configure: Rebuilt.
90 * configure.in (WINDRES): Define.
91 (CONFIG_OBS): Include gdbres.o on Windows.
92 * gdbtool.ico: New file.
93 * gdb.rc: New file.
94
95 * ser-unix.c
96 - Keith Seitz <keiths@onions.cygnus.com>
97 (wait_for): Don't reset the timeout_remaining for CYGWIN32,
98 since we now effectively poll the serial port.
99 Don't reset the current_timeout, either, since this member is used
100 by hardwire_readchar to track the timeout and call the ui_loop_hook.
101 (hardwire_readchar): Poll the serial port for Cygwin32. We timeout every
102 second, update the UI, and loop around doing this until we have hit the real
103 timeout or we get data or an error. This will allow the UI to stay active
104 while gdb is "blocked" talking to the target.
105 - Martin M. Hunt <hunt@cygnus.com>
106 (wait_for): Do reset current_timeout
107 because it is only used to keep track of what the
108 current timeout for the scb is.
109
110 * top.c
111 - Martin M. Hunt <hunt@cygnus.com>
112 (quit_confirm): Change exit message again
113 for GUI.
114 (pc_changed_hook): Add prototype.
115 - Tom Tromey <tromey@cygnus.com>
116 (quit_confirm): Added missing `else'.
117 (quit_confirm): Special-case message if init_ui_hook is
118 set.
119
120 * symtab.c
121 - Martin M. Hunt <hunt@cygnus.com>
122 (find_pc_sect_line): If no symbol information
123 is found, return correct pc anyway.
124 (find_methods): Comment out an apparently
125 bogus error message because it messes up Foundry.
126
127 * serial.c
128 - Martin M. Hunt <hunt@cygnus.com>
129 (_initialize_serial): Add a description of
130 "set remotelogbase".
131
132 * findvar.c
133 - Martin M. Hunt <hunt@cygnus.com>
134 (write_register_gen): Add call to
135 pc_changed_hook if the PC is being changed.
136
137 * defs.h
138 - Martin M. Hunt <hunt@cygnus.com>
139 (pc_changed_hook): Define.
140
141 * command.c
142 - Martin M. Hunt <hunt@cygnus.com>
143 (do_setshow_command): If no arguments are supplied,
144 don't dump core, instead print out an error message.
145
146 * breakpoint.c
147 - Martin M. Hunt <hunt@cygnus.com>
148 Make set_raw_breakpoint, set_breakpoint_count,
149 and breakpoint_count non-static so they are accessible from
150 gdbtk.c.
151 (enable_breakpoint): Enable breakpoint
152 with same disposition instead of changing all breakpoints
153 to donttouch.
154
155 * annotate.h
156 - Keith Seitz <keiths@onions.cygnus.com>
157 Add declarations for annotation hooks.
158
159 * annotate.c
160 - Keith Seitz <keiths@onions.cygnus.com>
161 Add hooks: annotate_starting_hook, annotate_stopped_hook,
162 annotate_signalled_hook, annotate_exited_hook.
163 (annotate_starting): If hook exists, call it instead.
164 (annotate_stopped): If hook exists, call it instead.
165 (annotate_exited): If hook exists, call it instead.
166 (annotate_signalled): If hook exists, call it instead.
167
d1732185
MS
168Fri Mar 20 14:45:36 1998 Michael Snyder <msnyder@cleaver.cygnus.com>
169
170 * gdbserver/Makefile.in: add dependency on XM_CLIBS.
171 * gdbserver/low-sim.c (registers) force into alignment.
172 (create_inferior): Fix typo on new_argv; add abfd arg to
173 sim_open, sim_create_inferior. Add reg_size arg to
174 sim_fetch_register, sim_store_register. Make simulator
175 take a single-step to get into a known running state.
176 * gdbserver/gdbreplay.c: include fcntl.h for def'n of F_SETFL.
177 * gdbserver/server.c: Add remote_debug variable to control
178 debug output.
179 * gdbserver/server.h: Add prototypes for enable/disable_async_io.
180 * gdbserver/remote-utils.c: add verbose debugging output controlled
181 by "remote_debug" variable. Add call to "disable_async_io()"
182 to avoid being killed by async SIGIO signals.
183 * config/m32r/m32r.mt: define GDBSERVER_(LIBS and DEPFILES),
184 so that gdbserver can be built with the m32r simulator.
185
980714f9
AC
186Fri Mar 20 09:04:06 1998 Andrew Cagney <cagney@b1.cygnus.com>
187
188start-sanitize-r5900
189 * config/mips/tm-r5900.h (REGISTER_VIRTUAL_SIZE): Redefine as
190 expression from REGISTER_VIRTUAL_TYPE.
191 (REGISTER_RAW_SIZE): Ditto.
192 (REGISTER_VIRTUAL_TYPE): Redefine, use explicit size for 32 bit
193 registers.
194
195end-sanitize-r5900
196 * gdbtypes.h (builtin_type_{,u}int{8,16,32,64}): New gdb builtin
197 types.
198start-sanitize-r5900
199 (builtin_type_{,u}int128): Ditto.
200end-sanitize-r5900
201
202 * gdbtypes.c (_initialize_gdbtypes): Initialize new types.
203
204 * mips-tdep.c (do_gp_register_row): Pad register value when GP
205 register is smaller than MIPS_REGSIZE.
206
207 * findvar.c (value_of_register): When raw and virtual register
208 values identical, check that sizes are consistent.
209
f4f7d594
MS
210Thu Mar 19 11:32:15 1998 Michael Snyder (msnyder@cleaver.cygnus.com)
211
212 * minsyms.c (compare_minimal_symbols): If addresses are identical,
213 then compare on names. Sorted list should have symbols with
214 identical addresses AND names adjacent, so dups can be discarded.
215
c298bd54
JL
216Wed Mar 18 12:50:17 1998 Jeff Law (law@cygnus.com)
217
218 * stabsread.c (define_symbol): Don't look for ',' as a LRS
219 indicator.
220
3f7e239d
NC
221Wed Mar 18 10:34:51 1998 Nick Clifton <nickc@cygnus.com>
222
223 * rdi-share/etherdrv.c: Set sys_errlist[] as char * not const char *.
224
c7ab546c
JM
225Fri Mar 13 15:43:53 1998 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
226
227 * config/mips/xm-mips.h (CC_HAS_LONG_LONG): Undefine for Ultrix
228 when compiling with native cc, the compiler has broken long long
229 support.
230
60c7c376
JM
231Fri Mar 13 15:37:02 1998 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
232
233 * config/m68k/xm-sun3os4.h: Remove malloc declarations, they
234 are handled via autoconf now.
235 * remote.c (remote_ops, extended_remote_ops): Replace static
236 forward declaration by moving the static definition to the top of
237 the file, for old K&R compilers.
238 * tracepoint.c (collect_symbol, trace_start_command):
239 Replace ANSI string concatenation with K&R compatible simple string.
240
2411998-03-11 Fred Fish <fnf@ninemoons.com>
242
243 * source.c (select_source_symtab): Don't reach error if we have
244 a current_source_symtab from reading in partial symbol table.
245
e0848028
GRK
246start-sanitize-vr4320
247Tue Mar 10 16:15:13 1998 Gavin Koch <gavin@cygnus.com>
248
249 * configure.tgt (mips64*vr4320*el-*-elf*) : Removed spurious case.
250
251end-sanitize-vr4320
3ffbdf15
FF
252Fri Mar 6 13:10:27 1998 Fred Fish <fnf@cygnus.com>
253
254 * utils.c (quit): Call SERIAL_DRAIN_OUTPUT rather than
255 SERIAL_FLUSH_OUTPUT.
256 * serial.h (struct serial_ops): Add drain_output, pointer to
257 function that waits for output to drain.
258 (SERIAL_DRAIN_OUTPUT): Macro to wait for output to drain.
259 * ser-unix.c (hardwire_drain_output): New function and prototype.
260
261 * ser-unix.c (hardwire_ops): Add entry for drain_output function.
262 * ser-tcp.c (tcp_ops): Ditto.
263 * ser-ocd.c (ocd_ops): Ditto.
264 * ser-mac.c (mac_ops): Ditto.
265 * ser-go32.c (dos_ops): Ditto.
266 * ser-e7kpc.c (e7000pc_ops): Ditto.
267
d6acae68
MS
268Thu Mar 5 16:07:41 1998 Michael Snyder (msnyder@cleaver.cygnus.com)
269
270 * sparcl-tdep.c: fix #endif comments
271
56deac4b
JM
272Thu Mar 5 15:10:35 1998 Jason Molenda (crash@bugshack.cygnus.com)
273
274 * Makefile.in (BISON): Configure substitutes in @YACC@, not @BISON@.
275
17772016
KS
276Thu Mar 5 14:42:41 1998 Keith Seitz <keiths@onions.cygnus.com>
277
278 * ocd.c (ocd_open): If we fail ocd_start_remote, make sure we
279 error () so that we abort out of bdm_ppc_open.
280
1d7a3fd7
MH
281Wed Mar 4 16:53:52 1998 Martin M. Hunt <hunt@cygnus.com>
282
283 * serial.c (_initialize_serial): Add a description of
284 "set remotelogbase".
285
286 * command.c (do_setshow_command): If no arguments are supplied,
287 don't dump core, instead print out an error message.
288
94ec3e76
JM
289Wed Mar 4 16:50:18 1998 Jason Molenda (crash@bugshack.cygnus.com)
290
291 * gdbtk.c (gdb_listfiles): Fix thinko in last change.
292
d7363521
JM
293Wed Mar 4 15:34:49 1998 Jason Molenda (crash@bugshack.cygnus.com)
294
295 * gdbtk.c (gdb_listfiles): Allocate space for 'files' dynamically.
296
4f0f84e7
RU
297Wed Mar 4 01:39:08 1998 Ron Unrau <runrau@cygnus.com>
298
299 * elfread.c (elf_symtab_read): merge SYMBOL_IS_SPECIAL into
300 MAKE_MSYMBOL_SPECIAL
301 * config/mips/tm-mips.h: ditto
302
3a012857
JM
303Tue Mar 3 17:19:08 1998 John Metzler <jmetzler@cygnus.com>
304
d7363521
JM
305 * config/mips/tm-vr4xxx.h: implements vr4111 as saparate from 4300
306 * config/mips/vr4xxx.tm: implements vr4111 as separate from 4300
3a012857 307 * configure.tgt: Recognise mips64vr4111-*-elf as vr4xxx
d7363521 308 * dwarfread.c (read_tag_pointer_type): Pointer sizes now come from
3a012857
JM
309 TARGET_PTR_BIT rather from sizeof(char *) on host.
310
716e3a4f
JM
311Tue Mar 3 14:37:02 1998 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
312
313 * alpha-nat.c (fetch_osf_core_registers): Renamed from
314 fetch_aout_core_registers.
315 (alpha_osf_core_fns): Renamed from alpha_aout_core_fns, change
316 flavour to bfd_target_unknown_flavour for OSF core files.
317
e4e30cdc
GRK
318start-sanitize-vr4320
319Tue Mar 3 11:12:39 1998 Gavin Koch <gavin@cygnus.com>
320
321 * configure.tgt (mips64*vr4320*el-*-elf*,mips64*vr4320*-*-elf*) :
322 Added.
323
324end-sanitize-vr4320
58299977
MS
325Mon Mar 2 17:44:13 1998 Michael Snyder (msnyder@cleaver.cygnus.com)
326
327 * breakpoint.c (_initialize_breakpoint): Make "en" an alias
328 for "enable" (so that it doesn't conflict with "end").
329
d0b6f2ad
JM
330Mon Mar 2 17:04:25 1998 Jason Molenda (crash@bugshack.cygnus.com)
331
332 * Makefile (VERSION): Bump to 4.17.1.
333
290d79e0
JM
334Mon Mar 2 16:59:15 1998 Jason Molenda (crash@bugshack.cygnus.com)
335
336 * rdi-share/etherdrv.c (sys_errlist): Add correct decl for Linux.
337
37ac9ecc
JM
338Mon Mar 2 16:51:44 1998 Jason Molenda (crash@bugshack.cygnus.com)
339
340 * Makefile.in (YYFILES): Remove in maintainer-clean, not distclean.
341
c87c674a
JM
342Mon Mar 2 16:47:11 1998 Philippe De Muyter <phdm@macqel.be>
343
344 * Makefile.in (distclean): Add `rm $(YYFILES)'.
345
79f0b613
JM
346Mon Mar 2 16:45:48 1998 Philippe De Muyter <phdm@macqel.be>
347
348 * coffread.c (coff_read_enum_type): Set TYPE_FLAG_UNSIGNED if enum
349 is unsigned.
350
6cc922a9
JM
351Sun Mar 2 15:16:13 1998 Richard Henderson <rth@cygnus.com>
352
353 * configure.host, configure.tgt: Add sparc-linux.
354 * sparc-nat.c: Include <asm/reg.h> not <machine/reg.h> for Linux.
355 * config/sparc/*linux*: New files.
356
4321ed53
JM
357Mon Mar 2 12:12:41 1998 Anthony Thompson (athompso@cambridge.arm.com)
358
359 * arm-tdep.c (gdb_print_insn_arm): Call print_insn_big_arm
360 if we're big endian; else call print_insn_little_arm.
361
9a760d24
JM
362Mon Feb 24 11:24:57 1998 Richard Henderson <rth@cygnus.com>
363
364 * Makefile.in (BISON): Don't even pretend to use yacc.
365 (c-exp.tab.o): Use bison -o to use a unique intermediate file.
366 (jv-exp.tab.o, f-exp.tab.o, m2-exp.tab.o): Likewise.
367
5af9fc5f
AC
368Tue Feb 24 03:32:59 1998 Andrew Cagney <cagney@b1.cygnus.com>
369
370 * remote-sim.c (gdbsim_fetch_register): Don't abort when the
371 register size is wrong.
372
373start-sanitize-r5900
24d084d9 374Tue Feb 24 02:53:41 1998 And<rew Cagney <cagney@b1.cygnus.com>
5af9fc5f
AC
375
376 * config/mips/tm-r5900.h (REGISTER_VIRTUAL_SIZE,
377 REGISTE_RAW_SIZE): Re-define.
378
379end-sanitize-r5900
c3cf44c4
JM
380Thu Feb 19 16:49:48 1998 John Metzler <jmetzler@cygnus.com>
381
24d084d9 382 * target.c (debug_to_fetch_registers,debug_to_store_registers,
863b20a3
JM
383 debug-to_insert_breakpoint,debug_to_remove_breakpoint): tracing
384 64 bit targets crashed long long printfs.
c3cf44c4
JM
385
386Tue Feb 17 16:36:22 1998 Michael Snyder (msnyder@cleaver.cygnus.com)
387
388 * symfile.c (read_target_int_array): rename read_target_long_array
389 and force the sizeof an ovly_table element to sizeof(long),
390 instead of sizeof(int).
391
f8611801
FCE
392Tue Feb 17 18:05:05 1998 Frank Ch. Eigler <fche@cygnus.com>
393
394 * remote-mips.c (mips_request): Use unsigned long during parsing
395 returned value from monitor, to prevent accidental sign extension.
396
dd600735
JM
397Tue Feb 17 14:28:33 1998 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
398
399 * acconfig.h: FORCE_MMCHECK changed to MMCHECK_FORCE.
400 * configure.in: Ditto.
401 * configure: Regenerated.
402
403Tue Feb 17 14:07:34 1998 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
404
405 * gdbtypes.c (check_typedef): Do not try to resolve the length of
406 a type which has TYPE_FLAG_TARGET_STUB set, if the target type has
407 set TYPE_FLAG_TARGET_STUB as well.
408
bccb2e7f
AC
409Tue Feb 17 14:32:18 1998 Andrew Cagney <cagney@b1.cygnus.com>
410
411 * remote-sim.c (gdbsim_fetch_register, gdbsim_store_register):
412 Pass register size to sim_{fetch,store}_register. Check nr of
413 register bytes transfered is correct.
414
6c3beaaf
AC
415Mon Feb 16 14:05:54 1998 Andrew Cagney <cagney@b1.cygnus.com>
416
417 * remote-d10v.c (remote_d10v_open): Call push_remote_target
418 instead of open_remote_target.
419
420 * remote.c (remote_xfer_memory): Use REMOTE_TRANSLATE_XFER_ADDRESS
421 to translate addr/size when defined.
422 (open_remote_target): Delete.
423
424 * target.h (open_remote_target): Delete.
425
426 * config/d10v/tm-d10v.h (REMOTE_TRANSLATE_XFER_ADDRESS): Define.
427
428Mon Feb 16 14:05:54 1998 Andrew Cagney <cagney@b1.cygnus.com>
429
430 * config/d10v/tm-d10v.h (USE_STRUCT_CONVENTION): Define. True when
431 sizeof type > 1.
432
433Mon Feb 16 14:05:54 1998 Andrew Cagney <cagney@b1.cygnus.com>
434
435 * config/d10v/tm-d10v.h (USE_STRUCT_CONVENTION): Define. True when
436 sizeof type > 1.
437
678fa7ff
RU
438Sun Feb 15 16:10:50 1998 Ron Unrau <runrau@cygnus.com>
439
440 * parse.c (write_dollar_variable): call new function
441 target_map_name_to_register to allow targets to define their own
442 register name aliases.
443 * infcmd.c (registers_info): use target_map_name_to_register so that
444 "print $reg" and "info reg $reg" use the same register name aliases.
445
8970f2fd
SS
446Fri Feb 13 16:40:30 1998 Stan Shebs <shebs@andros.cygnus.com>
447
448 * config/i386/i386mk.mt (OBJFORMATS): Delete, no longer used.
449 * config/i386/xm-i386mk.h: Fix an include.
450 * config/pyr/tm-pyr.h (PC_INNER_THAN): Remove, never used.
451
a469b84c
FCE
452Thu Feb 12 16:12:07 1998 Frank Ch. Eigler <fche@cygnus.com>
453
454 * remote-mips.c (mips_enter_debug): Sleep before sending CR to
455 monitor.
456 (mips_exit_debug): Accept any whitespace / verbiage before monitor
457 prompt reappears.
458
9df3ba70
AC
459Thu Feb 12 18:25:42 1998 Andrew Cagney <cagney@b1.cygnus.com>
460
461 * d10v-tdep.c (show_regs): Avoid use of %llx when printing 8 byte
462 accumulators.
463
93087920
AC
464Thu Feb 12 17:10:22 1998 Andrew Cagney <cagney@b1.cygnus.com>
465
466 * valops.c (value_at): For d10v, make read pointers with
467 read_target_unsigned_integer, keep addresses unsigned.
468 (value_fetch_lazy): Ditto.
469
dd0ce8f6
AC
470Thu Feb 12 12:14:02 1998 Andrew Cagney <cagney@b1.cygnus.com>
471
472 * remote-d10v.c: New file. Layer the d10v GDB->remote memory map
473 on top of the remote serial memory transfer functions.
474
475 * config/d10v/d10v.mt (TDEPFILES): Add remote-d10v.o
476
477 * Makefile.in (remote-d10v.o): Add dependencies.
478
479 * remote.c (remote_open_1): Add arg extended_p, engage extended
480 protocol when extended_p.
481 (remote_open, extended_remote_open): Pass !extended_p /
482 extended_p to remote_open_1.
483
484 * remote.c (open_remote_target), target.h: New function.
485
6bcc5ba3
AC
486Wed Feb 11 08:41:15 1998 Andrew Cagney <cagney@b1.cygnus.com>
487
488 * config/i386/fbsd.mh (XDEPFILES): Add ser-tcp.o.
489
a5f4fbff
KS
490Tue Feb 10 17:50:37 1998 Keith Seitz <keiths@onions.cygnus.com>
491
492 * tracepoint.c (tracepoint_operation): Call the modify_tracepoint_hook
493 if it exists.
494 Remove static declaration of free_actions.
495
496 * tracepoint.h: Add declaration of free_actions.
497
498Tue Feb 10 12:17:13 1998 Fred Fish <fnf@cygnus.com>
499
500 * symtab.c (decode_line_1): Revert change that mistakenly
501 removed assignment of sals[0].pc field.
502
75a1d67a
JM
503Mon Feb 10 12:37:47 1998 Philippe De Muyter <phdm@macqel.be>
504
505 * m68k/tm-delta68.h (EXTRACT_RETURN_VALUE): Type argument for
506 `REGISTER_CONVERT_TO_VIRTUAL is `TYPE', not
507 `REGISTER_VIRTUAL_TYPE (FP0_REGNUM)';
508 (STORE_RETURN_VALUE): Ditto, and offset for `write_register_bytes'
509 is `REGISTER_BYTE (FP0_REGNUM)', not `FP0_REGNUM'.
510 (FRAME_NUM_ARGS): New macro.
511 * m68k/tm-news.h (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE): Ditto.
512 * delta68-nat.c (clear_insn_cache): New function, forgotten in previous
513 patch.
514
f6826586
AC
515Mon Feb 9 11:10:06 1998 Andrew Cagney <cagney@b1.cygnus.com>
516
517 * d10v-tdep.c: Replace references to IMEM_ADDR and DMEM_ADDR with
518 D10V_MAKE_[DI]ADDR and D10V_CONVERT_[ID]ADDR_TO_RAW macros.
519
520 * config/d10v/tm-d10v.h (IMEM_START): Move to 0x01......
521 (DMEM_START): Move to 0x00......
522 (STACK_START): Move to 0x00..7ffe.
523 (D10V_MAKE_IADDR, D10V_MAKE_DADDR): Translate unconditionally.
524
525 * d10v-tdep.c (d10v_xlate_addr): Delete function.
526
9c01dbfb
DE
527Mon Feb 9 15:10:21 1998 Fred Fish <fnf@cygnus.com>
528
529 * symtab.c (fixup_psymbol_section): Move forward declaration to
530 top of file with other such decls. Make it a static function.
531 * symtab.h: Minor formatting tweaks.
532
cb5cd5b4
SS
533Mon Feb 9 13:14:12 1998 Stan Shebs <shebs@andros.cygnus.com>
534
535 * config/a29k-udi.mt, config/i960/vxworks960.mt (REMOTE_OBS):
536 Remove redefinition.
537 * config/i960/tm-i960.h (BREAKPOINT): Define.
538
89f2ecdb
ILT
539Mon Feb 9 15:35:38 1998 Ian Lance Taylor <ian@cygnus.com>
540
541 * Makefile.in (init.c): Ignore errors when making init.c. Seems
542 necessary to work around bug in Solaris make.
543
75a1d67a 544Sun Feb 6 02:44:28 1997 Philippe De Muyter <phdm@macqel.be>
4434e2dc
JM
545
546 * m68k/tm-delta68.h (CPLUS_MARKER): Macro deleted.
547 (EXTRACT_STRUCT_VALUE_ADDRESS): Macro defined.
548 (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE): Macros modified
549 because floating-point values return via %fp0.
550 (CLEAR_INSN_CACHE): New macro.
551 * m68k/tm-m68k.h (REGISTER_CONVERT_TO_VIRTUAL): Macro fixed
552 to use DOUBLEST.
553 (REGISTER_CONVERT_TO_RAW): Ditto.
554 * infptrace.c (child_xfer_memory): If CLEAR_INSN_CACHE is defined,
555 call it after having written in child process's memory.
556 * inflow.c (PROCESS_GROUP_TYPE): Macro defined if HAVE_TERMIO.
557 (gdb_has_a_terminal, terminal_ours_1): Functions fixed for HAVE_TERMIO.
558
4cb36674
JL
559Fri Feb 6 16:17:30 1998 Jeffrey A Law (law@cygnus.com)
560
561 * config/mips/tm-mips64.h (TARGET_LONG_BIT): Allow final target to
562 override.
563 (TARGET_LONG_LONG_BIT): Likewise.
564 (TARGET_PTR_BIT): Likewise.
565start-sanitize-r5900
566 * config/mips/tm-r5900.h (TARGET_PTR_BIT): Define to 32 bits.
567end-sanitize-r5900
568
5f3ba16b
DE
569start-sanitize-sky
570Fri Feb 6 14:33:34 1998 Doug Evans <devans@canuck.cygnus.com>
571
572 * configure.tgt (mips64r5900*-sky-elf*): Replaces txvu-elf.
573 * config/mips/txvu.mt (SIM): txvu -> mips.
574
575end-sanitize-sky
608addd4
AC
576Fri Feb 6 17:42:22 1998 Andrew Cagney <cagney@b1.cygnus.com>
577
578 * config/d10v/tm-d10v.h (D10V_CONVERT_IADDR_TO_RAW,
579 D10V_CONVERT_DADDR_TO_RAW): Define.
580
581 * d10v-tdep.c (d10v_push_arguments): Re-write. Pass arguments in
582 registers, regardless of their size, when they fit.
583
9961ca7a
AC
584Thu Feb 5 13:16:36 1998 Andrew Cagney <cagney@b1.cygnus.com>
585
586 * d10v-tdep.c (d10v_extract_return_value): For function pointers
587 translate address to IMAP area.
588
589 * config/d10v/tm-d10v.h (EXTRA_FRAME_INFO): Delete dummy from
590 struct.
591 (POP_FRAME): Point at generic_pop_current_frame.
592
593 * d10v-tdep.c (d10v_pop_frame): Delete code handling dummy frames,
594 handled earlier.
595 (d10v_push_return_address): New function.
596 (d10v_pop_dummy_frame): Delete.
597 (d10v_fix_call_dummy): Delete.
598 (d10v_call_dummy_address): Delete.
599
600 * d10v-tdep.c (d10v_init_extra_frame_info): Clear dummy and
601 frameless.
602
603 * d10v-tdep.c (d10v_push_arguments): Keep stack word aligned.
604
605 * config/d10v/tm-d10v.h (EXTRACT_STRUCT_VALUE_ADDRESS): Extract
606 address of structure from first ARG1_REGNUM.
607
608 * d10v-tdep.c (d10v_push_arguments): Force 4 byte args into
609 even-odd register pair. Store 1 and 2 byte args in registers.
610
611 * valops.c (value_fetch_lazy): Ensure that a D10V function pointer
612 is fetched in the correct byte order.
613 (value_at): Ditto. Also ensure data pointers are mapped to data
614 segment.
615
616 * config/d10v/tm-d10v.h (D10V_DADDR_P, D10V_IADDR_P):
617
618 * d10v-tdep.c: Replace 2 with REGISTER_RAW_SIZE.
619 (d10v_pop_frame): Replace R13 with LR_REGNUM.
620 (d10v_push_arguments): Replace R2 with ARG1_REGNUM.
621 (d10v_push_arguments): Replace 6 with ARGN_REGNUM.
622 (d10v_extract_return_value): Access return value with RET1_REGNUM.
623
624 * config/d10v/tm-d10v.h (ARG1_REGNUM, ARGN_REGNUM, RET1_REGNUM):
625 Define.
626 (STORE_RETURN_VALUE): Specify return register using RET1_REGNUM.
627 (STORE_STRUCT_RETURN): Specify ARG1_REGNUM as the struct ptr
628 location.
629
44d33d55
AC
630Thu Feb 5 13:16:36 1998 Andrew Cagney <cagney@b1.cygnus.com>
631
632 * blockframe.c (generic_pop_dummy_frame): Flush the frame, no
633 longer valid.
634
635 * blockframe.c (generic_pop_current_frame), frames.h: New
636 function.
637
1931ea8d
AC
638Thu Feb 5 17:18:16 1998 Andrew Cagney <cagney@b1.cygnus.com>
639
640 * remote-sim.c (gdbsim_create_inferior): clear_proceed_status
641 before /re/starting the simulator.
642
df419eec
JM
643Thu Feb 5 15:55:31 1998 C. M. Heard (heard@vvnet.com)
644
645 * top.c (do_nothing): Remove signal handler after signal is caught.
646
d9ba1c3f
MS
647Thu Feb 5 11:57:06 1998 Michael Snyder (msnyder@cleaver.cygnus.com)
648
649 * tracepoint.c (tracepoint_operation): call free_actions instead
650 of free. (free_actions): eliminate some memory leaks for actions.
651 (validate_actionline): pass string arg by reference, so we can
652 change the pointer. Change all memrange collection arguments to
653 canonical form (literal address and size), to enforce early
654 evaluation. Accept UNOP_MEMVAL (assembly variables) for
655 trace collection. (parse_and_eval_memrange): accept expressions
656 for the address and size fields of a memrange (and evaluate
657 them immediately). (several places): use -1 instead of zero
658 to distinguish an absolute memrange from a register-relative one.
659 (encode_actions): add handling for UNOP_MEMVAL (assembly variable).
660
c7bb1531
JM
661Wed Feb 4 17:40:21 1998 Jason Molenda (crash@bugshack.cygnus.com)
662
663 * Makefile.in (SFILES): add tracepoint.c.
664 (LINTFILES): add @CONFIG_SRCS@.
665 (SOURCES): Ditto.
666 * configure.in (CONFIG_SRCS): Mirror use of CONFIG_OBS.
667 * configure: Regenerated.
668
70b3329c
JM
669Tue Feb 3 16:12:32 1998 Gordon W. Ross (gwr@mc.com)
670
671 * infptrace.c (child_resume): Don't try to step if
672 NO_SINGLE_STEP is defined.
673
c09eab00
JM
674Mon Feb 2 19:06:13 1998 Jason Molenda (crash@bugshack.cygnus.com)
675
676 * Makefile.in (VERSION): Bump to 4.16.2.
677
678Mon Feb 2 17:18:25 1998 Richard Henderson <rth@cygnus.com>
679
680 * alpha-nat.c (fetch_aout_core_registers): Rename from
681 fetch_core_registers.
682 (fetch_elf_core_registers): New function.
683 (supply_gregset): Use ALPHA_REGSET_BASE.
684 (supply_fpregset): Likewise.
685 (fill_fpregset): Likewise.
686 (alpha_aout_core_fns): Rename from alpha_core_fns.
687 (alpha_elf_core_fns): New.
688 * config/alpha/alpha-linux.mh (NATDEPFILES): solib.o not osfsolib.o.
689 Disable MMALLOC.
690 * config/alpha/nm-linux.h (SVR4_SHARED_LIBS): Define if ELF.
691 (TARGET_ELF64): Likewise.
692 (ALPHA_REGSET_BASE): New.
693 * config/alpha/nm-osf.h (ALPHA_REGSET_BASE): New.
694 * config/alpha/tm-alphalinux.h: Include tm-sysv4.h.
695
696 * solib.c (elf_locate_base): Add TARGET_ELF64 support.
697 (info_sharedlibary_command): Likewise.
698
699 * configure.host: Match alpha*.
700 * configure.tgt: Likewise.
701
6981a588
DT
702Fri Jan 30 15:11:38 1998 David Taylor <taylor@texas.cygnus.com>
703
704 Changes by <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>
705 * infrun.c (IN_SOLIB_DYNSYM_RESOLVE_CODE): new macro for detecting
706 whether we are in the dynamic symbol resolution code
707 (wait_for_inferior): invoke it.
708 * solib.c (in_svr4_dynsym_resolve_code): new function
709 (enable_break): record start and end of the dynamic linker
710 text and plt sections for use in in_svr4_dynsym_resolve_code.
711 * solib.h (IN_SOLIB_DYNSYM_RESOLVE_CODE): add svr4 definition;
712 (in_svr4_dynsym_resolve_code): declare it.
713 * config/nm-gnu.h (solib.h): move inclusion to after definition
714 of SVR4_SHARED_LIBS.
715 * config/nm-sysv4.h (solib.h): ditto.
716 * config/i386/nm-i386sco5.h (solib.h): ditto.
717 * config/i386/nm-linux.h (solib.h): ditto.
718 * config/mips/nm-irix5.h (IN_SOLIB_DYNSYM_RESOLVE_CODE): undefine.
719
3e269acb
SS
720Thu Jan 29 19:39:31 1998 Stan Shebs <shebs@andros.cygnus.com>
721
722 * coffread.c (coff_symtab_read) [SEM]: Remove code, macro can
723 never be defined.
724 * dbxread.c (process_one_symbol) [BLOCK_ADDRESS_ABSOLUTE]:
725 Remove, no longer needed.
726 * hppa-tdep.c (N_SET_MAGIC): Remove, no longer used.
727 * config/pa/xm-hppab.h (SEEK_SET, SEEK_CUR, SEEK_END): Ditto.
728 * config/mips/tm-mipsm3.h (NUMERIC_REG_NAMES): Ditto.
729 * config/mips/mipsm3.mt (TDEPFILES): Remove mipsread.o.
730
7074cd4e
SS
731Wed Jan 28 14:46:52 1998 Stan Shebs <shebs@andros.cygnus.com>
732
733 Suggested by Chris Walter <walter@budoe.bu.edu>:
734 * dwarfread.c (set_cu_language): Recognize Fortran.
735 * dwarf2read.c (set_cu_language): Ditto.
736 (read_array_type): Fix language test.
737
2a913d71
MS
738Wed Jan 28 12:51:08 1998 Michael Snyder (msnyder@cleaver.cygnus.com)
739
740 * blockframe.c (generic_frame_chain_valid): A frame pointer may
741 be valid if it is equal to the frame pointer of its caller (ie.
742 not necessarily strictly INNER_THAN). Allows frameless functions.
743
29df6f4b
MA
744Wed Jan 28 11:23:25 1998 Mark Alexander <marka@cygnus.com>
745
746 * monitor.c (monitor_vsprintf): New function to handle
747 printing of large addresses using %A format specifier.
748 (monitor_printf_noecho, monitor_printf): Use monitor_vsprintf
749 instead of vsprintf.
750 * dve3900-rom.c (_initialize_r3900_rom): Use %A instead of %Lx
751 to print addresses.
752
4b95e9a1
JM
753Tue Jan 27 16:14:23 1998 Jason Molenda (crash@bugshack.cygnus.com)
754
755 * configure.in (CONFIG_LDFLAGS): Only add -export-dynamic
756 when using GNU ld.
757
bf1fb2e0
JM
758Mon Jan 26 19:07:46 1998 Jason Molenda (crash@bugshack.cygnus.com)
759
760 * config/alpha/tm-alphalinux.h (alpha_linux_sigtramp_offset):
761 Add closing parenthesis. From HJ Lu.
762
d8365eee
MA
763Mon Jan 26 17:54:45 1998 Mark Alexander <marka@cygnus.com>
764
765 * dve3900-rom.c: Improve performance by using memory commands
766 that print less fluff. Minor cosmetic changes.
767 Eliminate compiler warnings.
768
f03cdc5e
MH
769Sat Jan 24 23:44:43 1998 Martin M. Hunt <hunt@cygnus.com>
770
771 * breakpoint.c (enable_breakpoint): Preserve breakpoint
772 disposition when enabling a breakpoint.
773
774 * symtab.c (find_pc_sect_line): If no symbol information
775 is found, return correct pc anyway.
776
9a2e2aba
SS
777Fri Jan 23 17:26:22 1998 Stan Shebs <shebs@andros.cygnus.com>
778
779 * configure.host (i[3456]86-*-osf1mk*, mips-*-mach3*,
780 ns32k-*-mach3*): Fix file names.
781 (i[3456]86-*-os9k, m88*-*-mach3*, w65-*-*): Remove config
782 recognition, no source files for these.
783 * configure.tgt (powerpc-*-aix4*): Remove config, now identical
784 to powerpc-*-aix*.
785 * config/powerpc/{aix4.mh,aix4.mt,tm-ppc-aix4.h}: Remove files,
786 no longer needed.
787
1a31a33a
MA
788Fri Jan 23 16:49:41 1998 Mark Alexander <marka@cygnus.com>
789
790 * monitor.c (monitor_write, monitor_readchar): New functions.
791 * monitor.h (monitor_write, monitor_readchar): Declare.
792 * dve3900-rom.c: Add support for fast loading on ethernet connections.
793
77636dea
FF
794Fri Jan 23 07:47:06 1998 Fred Fish <fnf@cygnus.com>
795
796 * config/d10v/tm-d10v.h (CALL_DUMMY): Define as "{ 0 }".
797 (TARGET_READ_FP): Define to d10v_read_fp rather than d10v_read_sp.
798 (TARGET_WRITE_FP): Define to d10v_write_fp rather than d10v_write_sp.
799 (d10v_write_fp, d10v_read_fp): Add prototypes.
800 * symtab.c (decode_line_1): Remove assignment of sals[0].pc field.
801 * symfile.c (simple_overlay_update, simple_overlay_update_1):
802 Ignore the size of overlay sections. This check is redundant anyway.
803 * printcmd.c (print_frame_args): Ditto.
804 * valops.c (value_fetch_lazy): Ditto.
805 * values.c (unpack_long): Ditto.
806 * d10v-tdep.c (d10v_frame_chain, d10v_frame_find_saved_regs,
807 d10v_init_extra_frame_info): Fix some minor bugs so the finish command
808 works properly.
809 (show_regs): Change num1 and num2 types from "long long" to "LONGEST".
810 (d10v_read_fp, d10v_write_fp): New functions.
811 (d10v_push_arguments): Remove unneeded assigns to "val" and "contents".
812 (d10v_push_arguments): Fix for pointers and structs.
813 (d10v_extract_return_value): Fix for pointers and chars.
814
4133151f
SS
815Tue Jan 20 18:53:18 1998 Stan Shebs <shebs@andros.cygnus.com>
816
817 * configure.tgt (i386-*-mach*, m88*-*-mach3*): Remove config
818 recognition, no source files for these (note that the i386 Mach
9a2e2aba 819 config is for pre-Mach 3).
4133151f
SS
820 (mips*-*-mach3*, ns32k-*-mach3*): Fix file names.
821 * config/mips/mipsel64.mt: Remove, never referenced.
822
59ae1b0f
SS
823Mon Jan 19 14:01:28 1998 Stan Shebs <shebs@andros.cygnus.com>
824
825 * top.c (print_gdb_version): Restore to original message.
826
76bf9192
ILT
827Mon Jan 19 13:34:40 1998 Ian Lance Taylor <ian@cygnus.com>
828
b5edcb45
ILT
829 From cgf@bbc.com (Chris Faylor):
830 * win32-nat.c (child_mourn_inferior): Call ContinueDebugEvent to
831 let the child exit.
832 (child_kill_inferior): Respond to all debug events as the child is
833 terminating.
834
76bf9192
ILT
835 * Makefile.in (all): Change gdb dependency to gdb$(EXEEXT).
836 (uninstall): Add $(EXEEXT) to file name to remove.
837 (gdb$(EXEEXT)): Rename target from plain gdb.
838 (gdb1$(EXEEXT)): Rename target from plain gdb1.
839 (clean, mostlyclean): Add $(EXEEXT) to binary names to remove.
840
23f38c9e
FL
8411998-01-16 Felix Lee <flee@cygnus.com>
842
843 * top.c (print_gdb_version): delete stutter.
844
ed3e2cfe
NC
845Thu Jan 15 12:29:13 1998 Nick Clifton <nickc@cygnus.com>
846
847 * remote-rdi.c (arm_rdi_open): Patch from Tony.Thompson@arm.com
848 to prevent spurous error messages on non-ICE targets.
849
8d9371a5
SS
850Wed Jan 14 19:27:02 1998 Stan Shebs <shebs@andros.cygnus.com>
851
852 * config/mips/{r3900.mt,r3900l.mt,tm-r3900.h,tm-r3900l.h}:
853 Remove, no longer used.
854
f27bb101
MM
855start-sanitize-d30v
856Wed Jan 14 18:11:26 1998 Michael Meissner <meissner@cygnus.com>
857
858 Patch from Jim Wilson.
859 * d30v-tdep.c (d30v_frame_find_saved_regs_offsets): Properly
860 declare void function before use.
861
862 * config/d30v/tm-d30v.h (CALL_DUMMY): Initialize as { 0 }, not {}.
863
864end-sanitize-d30v
0728afad
FF
865Tue Jan 13 16:38:48 1998 Fred Fish <fnf@cygnus.com>
866
867 * configure.in (--with-mmalloc): Add new configure arg to use the
868 mmalloc package. Default is to not use it.
869 (START_INFERIOR_TRAPS_EXPECTED): Define to the integer 2, not
870 the string "2".
871 * acconfig.h (USE_MMALLOC, FORCE_MMCHECK): Add #undef.
872 * configure: Regenerated.
873 * config.in: Regenerated.
874 * Makefile.in (MMALLOC_DIR, MMALLOC_SRC): Remove.
875 (MMALLOC): Set using configure.
876 (MMALLOC_CFLAGS): Set using configure.
877
878 * config/i386/tm-linux.h (sys_quotactl): Define to 1 rather
879 than just defining it.
880 * mpw-make.sed: Undefine USE_MMALLOC rather than defining NO_MMALLOC.
881 * utils.c (NO_MMALLOC): Use USE_MMALLOC instead.
882 * objfiles.c: ditto.
883 * defs.h: ditto.
884
885 * config/sparc/sun4os4.mh (MMALLOC_CFLAGS): Remove.
886 * config/m68k/sun3os4.mh (MMALLOC_CFLAGS): Remove.
887 * config/i386/cygwin32.mh (MMALLOC_CFLAGS): Remove.
888 * config/alpha/alpha-osf3.mh (MMALLOC_CFLAGS): Remove.
889 * config/alpha/alpha-osf2.mh (MMALLOC_CFLAGS): Remove.
890 * gdbserver/Makefile.in (MMALLOC_*): Remove.
891 * config/rs6000/rs6000.mh (MMALLOC, MMALLOC_CFLAGS): Remove.
892 * config/rs6000/aix4.mh (MMALLOC, MMALLOC_CFLAGS): Remove.
893 * config/powerpc/aix4.mh (MMALLOC, MMALLOC_CFLAGS): Remove.
894 * config/powerpc/aix.mh (MMALLOC, MMALLOC_CFLAGS): Remove.
895 * config/ns32k/ns32km3.mh (MMALLOC, MMALLOC_CFLAGS): Remove.
896 * config/mips/mipsm3.mh (MMALLOC, MMALLOC_CFLAGS): Remove.
897 * config/mips/decstation.mh (MMALLOC, MMALLOC_CFLAGS): Remove.
898 * config/m88k/cxux.mh (MMALLOC, MMALLOC_CFLAGS): Remove.
899 * config/i386/xm-windows.h (NO_MMALLOC, NO_MMCHECK): Remove.
900 * config/i386/i386mk.mh (MMALLOC, MMALLOC_CFLAGS): Remove.
901 * config/i386/i386m3.mh (MMALLOC, MMALLOC_CFLAGS): Remove.
902 * config/i386/i386gnu.mh (MMALLOC, MMALLOC_CFLAGS): Remove.
903 * config/alpha/alpha-osf1.mh (MMALLOC, MMALLOC_CFLAGS): Remove.
904 * config/alpha/alpha-linux.mh (MMALLOC, MMALLOC_CFLAGS): Remove.
905
e21fb2ae
MS
906Mon Jan 12 11:46:51 1998 Michael Snyder (msnyder@cleaver.cygnus.com)
907
8f05bc95
MS
908 * config/m68k/tm-m68k.h (REGISTER_VIRTUAL_TYPE): make A0 thru A7
909 default to void pointer type (so that their default radix is hex).
910
e21fb2ae 911 * symtab.c: move rbreak_command from no_class to class_breakpoint
8f05bc95 912 so it will be listed under "help breakpoints".
e21fb2ae 913
0a51a5af
SS
914Sat Jan 10 14:58:04 1998 Stan Shebs <shebs@andros.cygnus.com>
915
916 * rdi-share/hostchan.c: Remove gettimeofday declaration.
917
3a9c3d12
NC
918Thu Jan 8 11:03:59 1998 Nick Clifton <nickc@cygnus.com>
919
920 * remote-rdp.c: Applied patches submitted by Tony.Thompson@arm.com
0a51a5af 921 to implement the Angel remote debugging interface.
3a9c3d12
NC
922
923 * Makefile.in: Add build rules for remote-rdi.c and
0a51a5af 924 rdi-share/libangsd.a.
3a9c3d12
NC
925
926 * configure.tgt: Updated from source on branch.
927 * config/arm/tm-arm.h: Updated from source on branch.
928 * arm-tdep.c: Updated from source on branch.
929
0a51a5af
SS
930 * rdi-share: New directory, RDI library contributed by ARM.
931
352f9e9d
MA
932Mon Jan 5 20:21:59 1998 Mark Alexander <marka@cygnus.com>
933
934 * monitor.h (MO_PRINT_PROGRAM_OUTPUT): Define.
935 * monitor.c (monitor_wait): Echo program output.
936 * dve3900-rom.c (_initialize_r3900_rom): Remove MO_HANDLE_NL flag,
937 add MO_PRINT_PROGRAM_OUTPUT flag.
938
4d132e40
DT
939Mon Jan 5 18:21:11 1998 David Taylor <taylor@texas.cygnus.com>
940
941 * top.h (HAVE_SIGSETJMP): define SIGJMP_BUF, SIGSETJMP, and
942 SIGLONGJMP appropriately based on whether HAVE_SIGSETJMP is
943 defined.
944 * top.c (return_to_top_level, catch_errors): use the new macros
945 * main.c (SET_TOP_LEVEL): ditto.
946 * config/xm-sysv4.h (HAVE_SIGSETJMP): Define.
947
3435297a
MA
948Fri Jan 2 18:48:58 1998 Mark Alexander <marka@cygnus.com>
949
950 * configure.in: Double up brackets in shell case pattern.
951
99fa2de0
MS
952Fri Jan 2 17:06:05 1998 Michael Snyder (msnyder@cleaver.cygnus.com)
953
954 * tracepoint.c (finish_tfind_command): improved algorithm for
955 deciding when we've "stepped" into a new stack frame.
956 (map_args_over_tracepoints): loop over tracepoint list "safely",
957 since list elements may be deleted during loop.
958 (read_actions): add actions to history list.
959
6d0b229c 960For older changes see ChangeLog-97
bd5635a1
RP
961\f
962Local Variables:
963mode: indented-text
964left-margin: 8
965fill-column: 74
966version-control: never
967End:
This page took 0.530853 seconds and 4 git commands to generate.