diff options
author | Randolph Chung <tausq@debian.org> | 2004-11-12 18:38:34 +0000 |
---|---|---|
committer | Randolph Chung <tausq@debian.org> | 2004-11-12 18:38:34 +0000 |
commit | 5aac166f583ebdcd3d5c62e9d53927e1212c74b3 (patch) | |
tree | 7028806aeaab36c4571c4821c69deb249234d664 /gdb/config/pa | |
parent | c46ec85da270994b50ccc5c8de0f1751cf3a0683 (diff) | |
download | gdb-5aac166f583ebdcd3d5c62e9d53927e1212c74b3.zip gdb-5aac166f583ebdcd3d5c62e9d53927e1212c74b3.tar.gz gdb-5aac166f583ebdcd3d5c62e9d53927e1212c74b3.tar.bz2 |
2004-11-12 Randolph Chung <tausq@debian.org>
* hppa-tdep.c (hppa_skip_permanent_breakpoint): Move definition ...
* hppa-hpux-tdep.c (hppa_skip_permanent_breakpoint): ... to here.
* config/pa/tm-hppa.h (SKIP_PERMANENT_BREAKPOINT): Move definition ...
* config/pa/tm-hppah.h (SKIP_PERMANENT_BREAKPOINT): ... to here.
Diffstat (limited to 'gdb/config/pa')
-rw-r--r-- | gdb/config/pa/tm-hppa.h | 4 | ||||
-rw-r--r-- | gdb/config/pa/tm-hppah.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/gdb/config/pa/tm-hppa.h b/gdb/config/pa/tm-hppa.h index efcf997..6a1cffd 100644 --- a/gdb/config/pa/tm-hppa.h +++ b/gdb/config/pa/tm-hppa.h @@ -35,10 +35,6 @@ extern int hppa_instruction_nullified (void); #define INSTRUCTION_NULLIFIED hppa_instruction_nullified () #endif -/* Here's how to step off a permanent breakpoint. */ -#define SKIP_PERMANENT_BREAKPOINT (hppa_skip_permanent_breakpoint) -extern void hppa_skip_permanent_breakpoint (void); - /* On HP-UX, certain system routines (millicode) have names beginning with $ or $$, e.g. $$dyncall, which handles inter-space procedure calls on PA-RISC. Tell the expression parser to check for those diff --git a/gdb/config/pa/tm-hppah.h b/gdb/config/pa/tm-hppah.h index d330d46..43f447c 100644 --- a/gdb/config/pa/tm-hppah.h +++ b/gdb/config/pa/tm-hppah.h @@ -41,5 +41,9 @@ struct frame_info; #define CHILD_ENABLE_EXCEPTION_CALLBACK #define CHILD_GET_CURRENT_EXCEPTION_EVENT +/* Here's how to step off a permanent breakpoint. */ +#define SKIP_PERMANENT_BREAKPOINT (hppa_skip_permanent_breakpoint) +extern void hppa_skip_permanent_breakpoint (void); + /* Mostly it's common to all HPPA's. */ #include "pa/tm-hppa.h" |