diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/config/pa/tm-linux.h | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b90c140..0e5b77c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2004-05-18 Randolph Chung <tausq@debian.org> + + * config/pa/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE, SKIP_TRAMPOLINE_CODE) + Undefine these so we can overide them using gdbarch. + 2004-05-18 Randolph Chung <tausq@debian.org> * hppa-tdep.c (hppa_stub_frame_unwind_cache): Don't do export stub diff --git a/gdb/config/pa/tm-linux.h b/gdb/config/pa/tm-linux.h index d59f207..e8b31c5 100644 --- a/gdb/config/pa/tm-linux.h +++ b/gdb/config/pa/tm-linux.h @@ -24,4 +24,7 @@ #include "pa/tm-hppa.h" #include "config/tm-linux.h" +#undef IN_SOLIB_CALL_TRAMPOLINE +#undef SKIP_TRAMPOLINE_CODE + #endif /* #ifndef TM_LINUX_H */ |