mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-05 15:15:42 +00:00
* breakpoint.c (breakpoint_1): Fix typo.
* annotate.c (annotate_field_end): Fix typo. * Makefile.in: Move annotate.o from COMMON_OBS to OBS. * Makefile.in (TSSTART): Remove; no longer used.
This commit is contained in:
@@ -1,5 +1,13 @@
|
|||||||
Tue May 17 11:08:22 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
|
Tue May 17 11:08:22 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
|
||||||
|
|
||||||
|
* breakpoint.c (breakpoint_1): Fix typo.
|
||||||
|
|
||||||
|
* annotate.c (annotate_field_end): Fix typo.
|
||||||
|
|
||||||
|
* Makefile.in: Move annotate.o from COMMON_OBS to OBS.
|
||||||
|
|
||||||
|
* Makefile.in (TSSTART): Remove; no longer used.
|
||||||
|
|
||||||
* utils.c (vfprintf_maybe_filtered, vfprintf_unfiltered): Call
|
* utils.c (vfprintf_maybe_filtered, vfprintf_unfiltered): Call
|
||||||
fputs_unfiltered and exit directly, rather than fatal. The latter
|
fputs_unfiltered and exit directly, rather than fatal. The latter
|
||||||
calls vfprintf_unfiltered!
|
calls vfprintf_unfiltered!
|
||||||
|
|||||||
@@ -445,9 +445,9 @@ COMMON_OBS = version.o blockframe.o breakpoint.o findvar.o stack.o thread.o \
|
|||||||
dwarfread.o mipsread.o stabsread.o core.o c-lang.o ch-lang.o m2-lang.o \
|
dwarfread.o mipsread.o stabsread.o core.o c-lang.o ch-lang.o m2-lang.o \
|
||||||
complaints.o typeprint.o c-typeprint.o ch-typeprint.o m2-typeprint.o \
|
complaints.o typeprint.o c-typeprint.o ch-typeprint.o m2-typeprint.o \
|
||||||
c-valprint.o cp-valprint.o ch-valprint.o m2-valprint.o nlmread.o \
|
c-valprint.o cp-valprint.o ch-valprint.o m2-valprint.o nlmread.o \
|
||||||
serial.o mdebugread.o os9kread.o annotate.o
|
serial.o mdebugread.o os9kread.o
|
||||||
|
|
||||||
OBS = $(COMMON_OBS) main.o utils.o
|
OBS = $(COMMON_OBS) main.o utils.o annotate.o
|
||||||
|
|
||||||
LIBGDB_OBS = $(COMMON_OBS) libmain.o libutils.o
|
LIBGDB_OBS = $(COMMON_OBS) libmain.o libutils.o
|
||||||
|
|
||||||
@@ -455,8 +455,6 @@ TSOBS = inflow.o
|
|||||||
|
|
||||||
NTSOBS = standalone.o
|
NTSOBS = standalone.o
|
||||||
|
|
||||||
TSSTART = /lib/crt0.o
|
|
||||||
|
|
||||||
NTSSTART = kdb-start.o
|
NTSSTART = kdb-start.o
|
||||||
|
|
||||||
SUBDIRS = doc testsuite
|
SUBDIRS = doc testsuite
|
||||||
|
|||||||
@@ -201,7 +201,7 @@ void
|
|||||||
annotate_field_end ()
|
annotate_field_end ()
|
||||||
{
|
{
|
||||||
if (annotation_level > 1)
|
if (annotation_level > 1)
|
||||||
printf_filtered ("\n\032\032field-value\n");
|
printf_filtered ("\n\032\032field-end\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|||||||
@@ -1529,6 +1529,8 @@ breakpoint_1 (bnum, allflag)
|
|||||||
|
|
||||||
if (!found_a_breakpoint++)
|
if (!found_a_breakpoint++)
|
||||||
{
|
{
|
||||||
|
annotate_breakpoints_headers ();
|
||||||
|
|
||||||
annotate_field (0);
|
annotate_field (0);
|
||||||
printf_filtered ("Num ");
|
printf_filtered ("Num ");
|
||||||
annotate_field (1);
|
annotate_field (1);
|
||||||
|
|||||||
Reference in New Issue
Block a user