diff options
-rw-r--r-- | gdb/ChangeLog | 8 | ||||
-rw-r--r-- | gdb/Makefile.in | 12 | ||||
-rw-r--r-- | gdb/arch-utils.c (renamed from gdb/gdbarch-utils.c) | 0 | ||||
-rw-r--r-- | gdb/arch-utils.h (renamed from gdb/gdbarch-utils.h) | 0 | ||||
-rw-r--r-- | gdb/gdbarch.c | 2 |
5 files changed, 15 insertions, 7 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index fc0e6c1a6a2..6be0e9b7cb2 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,11 @@ +Mon Apr 10 00:21:09 2000 Andrew Cagney <cagney@b1.cygnus.com> + + * gdbarch-utils.h, gdbarch-utils.c: Delete. + * arch-utils.h, arch-utils.c: New files. Avoid 14 character file + name problems. + * Makefile.in: Update. + * gdbarch.c: Update. + Sun Apr 9 23:42:16 2000 Andrew Cagney <cagney@b1.cygnus.com> From 2000-04-07 Jonathan Larmour <jlarmour@redhat.co.uk>: diff --git a/gdb/Makefile.in b/gdb/Makefile.in index ddcf7f484ee..2684542d7be 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -467,7 +467,7 @@ SFILES = ax-general.c ax-gdb.c bcache.c blockframe.c breakpoint.c \ demangle.c dwarfread.c dwarf2read.c elfread.c environ.c eval.c \ event-loop.c event-top.c \ expprint.c f-exp.y f-lang.c f-typeprint.c f-valprint.c \ - findvar.c gdbarch.c gdbarch-utils.c gdbtypes.c \ + findvar.c gdbarch.c arch-utils.c gdbtypes.c \ inf-loop.c infcmd.c inflow.c infrun.c language.c \ kod.c kod-cisco.c \ ui-out.c cli-out.c \ @@ -548,7 +548,7 @@ remote_h = remote.h version_h = version.h ui_out_h = ui-out.h cli_out_h = cli-out.h -gdbarch_utils_h = gdbarch-utils.h +arch_utils_h = arch-utils.h # Header files that need to have srcdir added. Note that in the cases # where we use a macro like $(gdbcmd_h), things are carefully arranged @@ -606,7 +606,7 @@ COMMON_OBS = version.o blockframe.o breakpoint.o findvar.o stack.o thread.o \ symtab.o symfile.o symmisc.o infcmd.o infrun.o command.o \ expprint.o environ.o \ event-loop.o event-top.o inf-loop.o \ - gdbarch.o gdbarch-utils.o gdbtypes.o copying.o $(DEPFILES) \ + gdbarch.o arch-utils.o gdbtypes.o copying.o $(DEPFILES) \ mem-break.o target.o parse.o language.o $(YYOBJ) buildsym.o \ kod.o kod-cisco.o \ gdb-events.o \ @@ -1368,8 +1368,8 @@ tracepoint.o: tracepoint.c $(defs_h) $(symtab_h) $(frame_h) $(tracepoint_h) \ gdbarch.o: gdbarch.c $(defs_h) $(bfd_h) $(gdbcmd_h) -gdbarch-utils.o: gdbarch-utils.c $(defs_h) $(bfd_h) $(gdbcmd_h) \ - $(gdbarch_utils_h) +arch-utils.o: arch-utils.c $(defs_h) $(bfd_h) $(gdbcmd_h) \ + $(arch_utils_h) gdbtypes.o: gdbtypes.c $(bfd_h) complaints.h $(defs_h) $(expression_h) \ $(gdbtypes_h) language.h objfiles.h symfile.h $(symtab_h) target.h \ @@ -1546,7 +1546,7 @@ minsyms.o: minsyms.c $(bfd_h) $(defs_h) objfiles.h symfile.h \ mips-nat.o: mips-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) mips-tdep.o: mips-tdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \ - $(gdbarch_utils_h) \ + $(arch_utils_h) \ $(inferior_h) language.h objfiles.h symfile.h gdb_string.h mipsread.o: mipsread.c buildsym.h complaints.h $(bfd_h) $(defs_h) \ diff --git a/gdb/gdbarch-utils.c b/gdb/arch-utils.c index 9048bd75419..9048bd75419 100644 --- a/gdb/gdbarch-utils.c +++ b/gdb/arch-utils.c diff --git a/gdb/gdbarch-utils.h b/gdb/arch-utils.h index 57da8ceb45f..57da8ceb45f 100644 --- a/gdb/gdbarch-utils.h +++ b/gdb/arch-utils.h diff --git a/gdb/gdbarch.c b/gdb/gdbarch.c index 4425e081804..98e0743374b 100644 --- a/gdb/gdbarch.c +++ b/gdb/gdbarch.c @@ -34,7 +34,7 @@ #include "defs.h" -#include "gdbarch-utils.h" +#include "arch-utils.h" #if GDB_MULTI_ARCH #include "gdbcmd.h" |