diff options
author | Michael Snyder <msnyder@vmware.com> | 2002-08-20 23:01:29 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2002-08-20 23:01:29 +0000 |
commit | d50355b63cf93537c82e0eeb1b680acf493e7e73 (patch) | |
tree | 2bf33b9d27f2900934d0c0b03b37e9ed64a82906 /gdb/infrun.c | |
parent | 757a7cc676c8decbdc2fd9f6b9d5289bf3fe54da (diff) | |
download | gdb-d50355b63cf93537c82e0eeb1b680acf493e7e73.zip gdb-d50355b63cf93537c82e0eeb1b680acf493e7e73.tar.gz gdb-d50355b63cf93537c82e0eeb1b680acf493e7e73.tar.bz2 |
2002-08-20 Michael Snyder <msnyder@redhat.com>
* gdbarch.sh (IN_SOLIB_RETURN_TRAMPOLINE): Add.
* gdbarch.c, gdbarch.h: Regenerate.
* arch-utils.c, arch-utils.h (generic_in_solib_return_trampoline):
Add.
* infrun.c (IN_SOLIB_RETURN_TRAMPOLINE): Delete default definition.
Diffstat (limited to 'gdb/infrun.c')
-rw-r--r-- | gdb/infrun.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gdb/infrun.c b/gdb/infrun.c index 98867cc..70fa534 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -173,13 +173,6 @@ static int may_follow_exec = MAY_FOLLOW_EXEC; #define SKIP_SOLIB_RESOLVER(pc) 0 #endif -/* In some shared library schemes, the return path from a shared library - call may need to go through a trampoline too. */ - -#ifndef IN_SOLIB_RETURN_TRAMPOLINE -#define IN_SOLIB_RETURN_TRAMPOLINE(pc,name) 0 -#endif - /* This function returns TRUE if pc is the address of an instruction that lies within the dynamic linker (such as the event hook, or the dld itself). |