diff options
author | Stan Shebs <shebs@apple.com> | 1999-05-05 14:45:51 +0000 |
---|---|---|
committer | Stan Shebs <shebs@apple.com> | 1999-05-05 14:45:51 +0000 |
commit | 049f10d7dc48a42b664a15149f83d5c3db004ef7 (patch) | |
tree | 8dd4e1a383afddd41a30a65adf68142dfd45ec72 /gdb/config/i960 | |
parent | 1942e83ab587eb3c0c54e57e9d1c9e11c17ac07e (diff) | |
download | gdb-049f10d7dc48a42b664a15149f83d5c3db004ef7.tar.gz |
import gdb-19990504 snapshot
Diffstat (limited to 'gdb/config/i960')
-rw-r--r-- | gdb/config/i960/tm-i960.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/config/i960/tm-i960.h b/gdb/config/i960/tm-i960.h index a6d93b00a24..dcd24e5ee20 100644 --- a/gdb/config/i960/tm-i960.h +++ b/gdb/config/i960/tm-i960.h @@ -49,8 +49,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Advance ip across any function entry prologue instructions to reach some "real" code. */ -#define SKIP_PROLOGUE(ip) { ip = skip_prologue (ip); } -extern CORE_ADDR skip_prologue (); +#define SKIP_PROLOGUE(ip) (i960_skip_prologue (ip)) +extern CORE_ADDR i960_skip_prologue (); /* Immediately after a function call, return the saved ip. Can't always go through the frames for this because on some machines |