* config/h8500/tm-h8500.h (target_write_pc, TARGET_WRITE_PC):
authorSteve Chamberlain <sac@cygnus>
Fri, 9 Sep 1994 00:43:30 +0000 (00:43 +0000)
committerSteve Chamberlain <sac@cygnus>
Fri, 9 Sep 1994 00:43:30 +0000 (00:43 +0000)
Handle extra arg.

gdb/config/h8500/tm-h8500.h

index 2dc568acaac7d55030fe189b7d2c551435e59bae..0a96b43b315032fce93e1584c8d27fa1d887bb90 100644 (file)
@@ -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)