diff options
author | Steve Chamberlain <sac@cygnus> | 1994-09-09 00:43:30 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1994-09-09 00:43:30 +0000 |
commit | 1c22bde24e5f2598bc1c44d53a4fe061373a1466 (patch) | |
tree | d17da0be0afa0d5fd53e7836854f37c86d5b0101 /gdb/config | |
parent | c4deed18c0fd02ae4a9fffca7c0a21bb572dbd9d (diff) | |
download | gdb-1c22bde24e5f2598bc1c44d53a4fe061373a1466.zip gdb-1c22bde24e5f2598bc1c44d53a4fe061373a1466.tar.gz gdb-1c22bde24e5f2598bc1c44d53a4fe061373a1466.tar.bz2 |
* config/h8500/tm-h8500.h (target_write_pc, TARGET_WRITE_PC):
Handle extra arg.
Diffstat (limited to 'gdb/config')
-rw-r--r-- | gdb/config/h8500/tm-h8500.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/config/h8500/tm-h8500.h b/gdb/config/h8500/tm-h8500.h index 2dc568a..0a96b43 100644 --- a/gdb/config/h8500/tm-h8500.h +++ b/gdb/config/h8500/tm-h8500.h @@ -304,13 +304,13 @@ CORE_ADDR target_read_fp(); void target_write_fp PARAMS ((CORE_ADDR )); CORE_ADDR target_read_pc(); -void target_write_pc PARAMS ((CORE_ADDR )); +void target_write_pc PARAMS ((CORE_ADDR, INT )); #define TARGET_READ_SP() target_read_sp() #define TARGET_WRITE_SP(x) target_write_sp(x) #define TARGET_READ_PC() target_read_pc() -#define TARGET_WRITE_PC(x) target_write_pc(x) +#define TARGET_WRITE_PC(x,y) target_write_pc(x,y) #define TARGET_READ_FP() target_read_fp() #define TARGET_WRITE_FP(x) target_write_fp(x) |