* valprint.c (print_longest): Clarify comment about use_local.

* printcmd.c, defs.h (print_address_numeric), callers in
	symmisc.c, symfile.c, stack.c, source.c, remote.c, infcmd.c,
	cp-valprint.c, core.c, ch-valprint.c, c-valprint.c, breakpoint.c,
	exec.c: New argument use_local.
	* source.c (identify_source_line): Use filtered output.  Use
	print_address_numeric.
This commit is contained in:
Jim Kingdon
1994-05-04 15:24:41 +00:00
parent e16b9023f0
commit d24c05991f
9 changed files with 78 additions and 44 deletions

View File

@@ -824,8 +824,8 @@ remote_write_bytes (memaddr, myaddr, len)
int i;
char *p;
/* FIXME-32x64: Need a version of print_address_numeric which doesn't
set use_local (and also puts the result in a buffer like sprintf). */
/* FIXME-32x64: Need a version of print_address_numeric which puts the
result in a buffer like sprintf. */
sprintf (buf, "M%lx,%x:", (unsigned long) memaddr, len);
/* We send target system values byte by byte, in increasing byte addresses,
@@ -875,8 +875,8 @@ remote_read_bytes (memaddr, myaddr, len)
if (len > PBUFSIZ / 2 - 1)
abort ();
/* FIXME-32x64: Need a version of print_address_numeric which doesn't
set use_local (and also puts the result in a buffer like sprintf). */
/* FIXME-32x64: Need a version of print_address_numeric which puts the
result in a buffer like sprintf. */
sprintf (buf, "m%lx,%x", (unsigned long) memaddr, len);
putpkt (buf);
getpkt (buf, 0);