diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-10-15 18:18:30 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-10-15 18:18:30 +0000 |
commit | fc0c74b114ec869ce89d12a282a1cbcb6ab7e6e8 (patch) | |
tree | 3525d393b503a2dff090010f9290aa3e36d17557 /gdb/config/mips | |
parent | cf5c0c5bc6c2f7810ed42bb930a32ed703a473f6 (diff) | |
download | gdb-fc0c74b114ec869ce89d12a282a1cbcb6ab7e6e8.zip gdb-fc0c74b114ec869ce89d12a282a1cbcb6ab7e6e8.tar.gz gdb-fc0c74b114ec869ce89d12a282a1cbcb6ab7e6e8.tar.bz2 |
Add INTEGER_TO_ADDRESS to hadle nasty harvard architectures that do
funnies to integer to address conversions.
Diffstat (limited to 'gdb/config/mips')
-rw-r--r-- | gdb/config/mips/tm-mips.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gdb/config/mips/tm-mips.h b/gdb/config/mips/tm-mips.h index a865e96..f89d7ab 100644 --- a/gdb/config/mips/tm-mips.h +++ b/gdb/config/mips/tm-mips.h @@ -499,9 +499,5 @@ typedef unsigned long t_inst; /* Integer big enough to hold an instruction */ extern void mips_set_processor_type_command (char *, int); -/* MIPS sign extends addresses */ -#define POINTER_TO_ADDRESS(TYPE,BUF) (signed_pointer_to_address (TYPE, BUF)) -#define ADDRESS_TO_POINTER(TYPE,BUF,ADDR) (address_to_signed_pointer (TYPE, BUF, ADDR)) - /* Single step based on where the current instruction will take us. */ extern void mips_software_single_step (enum target_signal, int); |