diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2001-10-31 23:21:33 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2001-10-31 23:21:33 +0000 |
commit | 8080c56d60f068bad1f6b305b19071da793b8eb3 (patch) | |
tree | b31bcef2f87f4a2e4adc9944d118a974fbd48064 /gdb/infrun.c | |
parent | cee64cfabd0e6e6fc486770a615934b37470f0f1 (diff) | |
download | gdb-8080c56d60f068bad1f6b305b19071da793b8eb3.tar.gz |
* arch-utils.c (generic_in_solib_call_trampoline): New function.
* arch-utils.h (generic_in_solib_call_trampoline): Extern declaration.
* gdbarch.c: Regenerated from gdbarch.sh.
* gdbarch.h: Ditto.
* gdbarch.sh (function_list): Add `IN_SOLIB_CALL_TRAMPOLINE' definition.
* infrun.c (IN_SOLIB_CALL_TRAMPOLINE): Remove 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 18bb8c0bca4..0730f91b65f 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -183,14 +183,6 @@ static int may_follow_exec = MAY_FOLLOW_EXEC; #define SKIP_SOLIB_RESOLVER(pc) 0 #endif -/* For SVR4 shared libraries, each call goes through a small piece of - trampoline code in the ".plt" section. IN_SOLIB_CALL_TRAMPOLINE evaluates - to nonzero if we are current stopped in one of these. */ - -#ifndef IN_SOLIB_CALL_TRAMPOLINE -#define IN_SOLIB_CALL_TRAMPOLINE(pc,name) 0 -#endif - /* In some shared library schemes, the return path from a shared library call may need to go through a trampoline too. */ |