diff options
author | Stan Shebs <shebs@codesourcery.com> | 1998-02-09 21:25:02 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1998-02-09 21:25:02 +0000 |
commit | cb5cd5b46422cc000fc088ed53590925a9407d13 (patch) | |
tree | d61db31d8bd6104e9b26a0ea1ea9641067e6408e /gdb/config/i960 | |
parent | 89f2ecdbb178f1089ec4da04e0644d7d4ca24e07 (diff) | |
download | gdb-cb5cd5b46422cc000fc088ed53590925a9407d13.zip gdb-cb5cd5b46422cc000fc088ed53590925a9407d13.tar.gz gdb-cb5cd5b46422cc000fc088ed53590925a9407d13.tar.bz2 |
* config/a29k-udi.mt, config/i960/vxworks960.mt (REMOTE_OBS):
Remove redefinition.
* config/i960/tm-i960.h (BREAKPOINT): Define.
Fix build failures due to tracepoint.c addition
Diffstat (limited to 'gdb/config/i960')
-rw-r--r-- | gdb/config/i960/tm-i960.h | 4 | ||||
-rw-r--r-- | gdb/config/i960/vxworks960.mt | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/gdb/config/i960/tm-i960.h b/gdb/config/i960/tm-i960.h index c4d9fe8..57d7b98 100644 --- a/gdb/config/i960/tm-i960.h +++ b/gdb/config/i960/tm-i960.h @@ -68,6 +68,10 @@ extern CORE_ADDR saved_pc_after_call (); #define ABOUT_TO_RETURN(ip) (read_memory_integer(ip,4) == 0x0a000000) +/* Use the fmark instruction for software breakpoints. */ + +#define BREAKPOINT { 0xcf, 0x66 } + /* Say how long (ordinary) registers are. This is a piece of bogosity used in push_word and a few other places; REGISTER_RAW_SIZE is the real way to know how big a register is. */ diff --git a/gdb/config/i960/vxworks960.mt b/gdb/config/i960/vxworks960.mt index 3623804..ad32934 100644 --- a/gdb/config/i960/vxworks960.mt +++ b/gdb/config/i960/vxworks960.mt @@ -4,7 +4,3 @@ TM_FILE= tm-vx960.h # Define this for the vx-share routines, which don't see param.h. MT_CFLAGS= -DI80960 - -# Don't use remote.o; it doesn't compile (and won't work) due to lack of -# BREAKPOINT. -REMOTE_OBS= dcache.o remote-utils.o |