diff options
author | Joel Brobecker <brobecker@gnat.com> | 2003-03-17 23:25:09 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2003-03-17 23:25:09 +0000 |
commit | a7ff40e7f78d3e9152b53f05ae4601638d252d42 (patch) | |
tree | fa08405a56d56667a9e52ad3d586b9864ba63e01 /gdb | |
parent | bf8db3d48e962dba650d01c7c49b8af4308f49f6 (diff) | |
download | gdb-a7ff40e7f78d3e9152b53f05ae4601638d252d42.zip gdb-a7ff40e7f78d3e9152b53f05ae4601638d252d42.tar.gz gdb-a7ff40e7f78d3e9152b53f05ae4601638d252d42.tar.bz2 |
* hppa-tdep.c (gdb_assert.h): Add missing #include.
* somsolib.c (gdb_assert.h): Likewise.
* Makefile.in (hppa-tdep.o): Add dependency on gdb_assert.h.
(somsolib.o): Likewise.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 7 | ||||
-rw-r--r-- | gdb/Makefile.in | 4 | ||||
-rw-r--r-- | gdb/hppa-tdep.c | 1 | ||||
-rw-r--r-- | gdb/somsolib.c | 1 |
4 files changed, 11 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7e9465e..415dd9f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,10 @@ +2003-03-17 J. Brobecker <brobecker@gnat.com> + + * hppa-tdep.c (gdb_assert.h): Add missing #include. + * somsolib.c (gdb_assert.h): Likewise. + * Makefile.in (hppa-tdep.o): Add dependency on gdb_assert.h. + (somsolib.o): Likewise. + 2003-03-17 Andrew Cagney <cagney@redhat.com> * disasm.c (gdb_disassembly): Set di.mach using the architecture's diff --git a/gdb/Makefile.in b/gdb/Makefile.in index a5d986e..b997c90 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1735,7 +1735,7 @@ hpacc-abi.o: hpacc-abi.c $(defs_h) $(value_h) $(gdb_regex_h) $(gdb_string_h) \ hppa-tdep.o: hppa-tdep.c $(defs_h) $(frame_h) $(bfd_h) $(inferior_h) \ $(value_h) $(regcache_h) $(completer_h) $(symtab_h) $(a_out_encap_h) \ $(gdb_stat_h) $(gdb_wait_h) $(gdbcore_h) $(gdbcmd_h) $(target_h) \ - $(symfile_h) $(objfiles_h) $(language_h) $(osabi_h) + $(symfile_h) $(objfiles_h) $(language_h) $(osabi_h) $(gdb_assert_h) hppa-hpux-tdep.o: hppa-hpux-tdep.c $(defs_h) $(arch_utils_h) $(gdbcore_h) \ $(osabi_h) hppab-nat.o: hppab-nat.c $(defs_h) $(inferior_h) $(target_h) $(regcache_h) @@ -2175,7 +2175,7 @@ somread.o: somread.c $(defs_h) $(bfd_h) $(symtab_h) $(symfile_h) \ somsolib.o: somsolib.c $(defs_h) $(frame_h) $(bfd_h) $(som_h) $(libhppa_h) \ $(gdbcore_h) $(symtab_h) $(breakpoint_h) $(symfile_h) $(objfiles_h) \ $(inferior_h) $(gdb_stabs_h) $(gdb_stat_h) $(gdbcmd_h) $(language_h) \ - $(regcache_h) + $(regcache_h) $(gdb_assert_h) source.o: source.c $(defs_h) $(symtab_h) $(expression_h) $(language_h) \ $(command_h) $(source_h) $(gdbcmd_h) $(frame_h) $(value_h) \ $(gdb_string_h) $(gdb_stat_h) $(gdbcore_h) $(gdb_regex_h) \ diff --git a/gdb/hppa-tdep.c b/gdb/hppa-tdep.c index 9fde53d..f74dfd1 100644 --- a/gdb/hppa-tdep.c +++ b/gdb/hppa-tdep.c @@ -32,6 +32,7 @@ #include "completer.h" #include "language.h" #include "osabi.h" +#include "gdb_assert.h" /* For argument passing to the inferior */ #include "symtab.h" diff --git a/gdb/somsolib.c b/gdb/somsolib.c index 08d3e1c..c496752 100644 --- a/gdb/somsolib.c +++ b/gdb/somsolib.c @@ -41,6 +41,7 @@ #include "gdbcmd.h" #include "language.h" #include "regcache.h" +#include "gdb_assert.h" #include <fcntl.h> |