diff options
author | Andrew Cagney <cagney@redhat.com> | 1997-09-16 02:19:56 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1997-09-16 02:19:56 +0000 |
commit | 5ed0a9a369ce0bbf0000ec0dba3a0a32c0537782 (patch) | |
tree | c745295742984d1ed26921986d25c8d42ae139ec /gdb | |
parent | 721478d51bd4574ab5de91fb09003325c6f15b69 (diff) | |
download | fsf-binutils-gdb-5ed0a9a369ce0bbf0000ec0dba3a0a32c0537782.zip fsf-binutils-gdb-5ed0a9a369ce0bbf0000ec0dba3a0a32c0537782.tar.gz fsf-binutils-gdb-5ed0a9a369ce0bbf0000ec0dba3a0a32c0537782.tar.bz2 |
Add v850e version of breakpoint. Make v850 breakpoint unique.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 7 | ||||
-rw-r--r-- | gdb/config/v850/tm-v850.h | 10 |
2 files changed, 16 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3cb3782..0fc5198 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,10 @@ +Tue Sep 16 10:08:27 1997 Andrew Cagney <cagney@b1.cygnus.com> + + * config/v850/tm-v850.h (BREAKPOINT): Set to a truely illegal + instruction. + + * exec.c (exec_file_command): Call set_architecture_from_file. + Mon Sep 15 13:01:22 1997 Mark Alexander <marka@cygnus.com> * dbxread.c (MSYMBOL_SIZE): New macro. diff --git a/gdb/config/v850/tm-v850.h b/gdb/config/v850/tm-v850.h index 7afd568..07d1e02 100644 --- a/gdb/config/v850/tm-v850.h +++ b/gdb/config/v850/tm-v850.h @@ -67,7 +67,15 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #define MAX_REGISTER_VIRTUAL_SIZE 4 -#define BREAKPOINT {0xff, 0xff} +/* start-sanitize-v850e */ +#if 1 +#define BREAKPOINT {0x40, 0xf8} /* little-ended */ +#else +/* end-sanitize-v850e */ +#define BREAKPOINT {0xff, 0xff, 0xff, 0xff} +/* start-sanitize-v850e */ +#endif +/* end-sanitize-v850e */ #define FUNCTION_START_OFFSET 0 |