Add v850e version of breakpoint. Make v850 breakpoint unique.
This commit is contained in:
parent
721478d51b
commit
5ed0a9a369
2 changed files with 16 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue