diff options
author | John Gilmore <gnu@cygnus> | 1992-09-17 10:58:53 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1992-09-17 10:58:53 +0000 |
commit | d974236f808582b586d34119aba2caa985d173b9 (patch) | |
tree | b0b94a276353faba87e070343aac63575695cd51 /gdb/rs6000-xdep.c | |
parent | f49925349186c131c56fecf8f19b9fd46351e3f2 (diff) | |
download | gdb-d974236f808582b586d34119aba2caa985d173b9.zip gdb-d974236f808582b586d34119aba2caa985d173b9.tar.gz gdb-d974236f808582b586d34119aba2caa985d173b9.tar.bz2 |
* utils.c (prompt_for_continue): Reinitialize more-counts
before printing anything, and again afterward. Fix comments.
(vfprintf_filtered): Eliminate static buffer; use auto buffer,
or alloca() if needed.
* rs6000-xdep.c: Use correct conditional (IBM6000_TARGET) to
detect native versus cross-host.
Diffstat (limited to 'gdb/rs6000-xdep.c')
-rw-r--r-- | gdb/rs6000-xdep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/rs6000-xdep.c b/gdb/rs6000-xdep.c index a80ee14..5524826 100644 --- a/gdb/rs6000-xdep.c +++ b/gdb/rs6000-xdep.c @@ -23,7 +23,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "symtab.h" #include "target.h" -#ifdef RS6000_TARGET +#ifdef IBM6000_TARGET #include <sys/param.h> #include <sys/dir.h> @@ -253,7 +253,7 @@ exec_one_dummy_insn () } -#else /* RS6000_TARGET */ +#else /* IBM6000_TARGET */ /* FIXME: Kludge this til we separate host vs. target vs. native code. */ @@ -278,4 +278,4 @@ fetch_core_registers (core_reg_sect, core_reg_size, which, reg_addr) { } -#endif /* RS6000_TARGET */ +#endif /* IBM6000_TARGET */ |