diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2001-08-15 15:29:56 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2001-08-15 15:29:56 +0000 |
commit | bdcd319a1e4591cc67562d960ab225e9847e9a25 (patch) | |
tree | c91d6ac46f4d0d3ff83b77ad93595fd417a6e8ae /gdb/infrun.c | |
parent | 9e678452d756bcdb0a1a78a4e438aca09460acfa (diff) | |
download | gdb-bdcd319a1e4591cc67562d960ab225e9847e9a25.zip gdb-bdcd319a1e4591cc67562d960ab225e9847e9a25.tar.gz gdb-bdcd319a1e4591cc67562d960ab225e9847e9a25.tar.bz2 |
* arch-utils.c (generic_skip_trampoline_code): New function.
* arch-utils.h (generic_skip_trampoline_code): Declare external.
* gdbarch.c: Regeberated from gdbarch.sh.
* gdbarch.h: Ditto.
* gdbarch.sh (SKIP_TRAMPOLINE_CODE): Multi-arch.
* infrun.c: Remove default setting of SKIP_TRAMPOLINE_CODE macro.
Diffstat (limited to 'gdb/infrun.c')
-rw-r--r-- | gdb/infrun.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gdb/infrun.c b/gdb/infrun.c index fa25006..6b62a41 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -120,14 +120,6 @@ static int may_follow_exec = MAY_FOLLOW_EXEC; #endif -/* Some machines have trampoline code that sits between function callers - and the actual functions themselves. If this machine doesn't have - such things, disable their processing. */ - -#ifndef SKIP_TRAMPOLINE_CODE -#define SKIP_TRAMPOLINE_CODE(pc) 0 -#endif - /* Dynamic function trampolines are similar to solib trampolines in that they are between the caller and the callee. The difference is that when you enter a dynamic trampoline, you can't determine the callee's address. Some |