diff options
author | Michael Meissner <gnu@the-meissners.org> | 1998-02-13 22:12:51 +0000 |
---|---|---|
committer | Michael Meissner <gnu@the-meissners.org> | 1998-02-13 22:12:51 +0000 |
commit | 8114673a2bc2a3c04761908e5f62725876ce3278 (patch) | |
tree | beec514728511539bb733efbe2dcf6c7adc501a8 /sim/tic80/cpu.h | |
parent | 8e7a5a048aa35777f3a69fd0ba9d29bb5541138a (diff) | |
download | gdb-8114673a2bc2a3c04761908e5f62725876ce3278.zip gdb-8114673a2bc2a3c04761908e5f62725876ce3278.tar.gz gdb-8114673a2bc2a3c04761908e5f62725876ce3278.tar.bz2 |
Pass floating point structure address instead of the structure itself
Diffstat (limited to 'sim/tic80/cpu.h')
-rw-r--r-- | sim/tic80/cpu.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/sim/tic80/cpu.h b/sim/tic80/cpu.h index 6801c04..d8cfd0e 100644 --- a/sim/tic80/cpu.h +++ b/sim/tic80/cpu.h @@ -166,11 +166,11 @@ extern char *tic80_trace_alu3 PARAMS ((int, unsigned32, unsigned32, unsigned32 extern char *tic80_trace_cmp PARAMS ((int, unsigned32, unsigned32, unsigned32)); extern char *tic80_trace_alu2 PARAMS ((int, unsigned32, unsigned32)); extern char *tic80_trace_shift PARAMS ((int, unsigned32, unsigned32, int, int, int, int, int)); -extern void tic80_trace_fpu3 PARAMS ((SIM_DESC, sim_cpu *, sim_cia, int, sim_fpu, sim_fpu, sim_fpu)); -extern void tic80_trace_fpu2 PARAMS ((SIM_DESC, sim_cpu *, sim_cia, int, sim_fpu, sim_fpu)); -extern void tic80_trace_fpu1 PARAMS ((SIM_DESC, sim_cpu *, sim_cia, int, sim_fpu)); -extern void tic80_trace_fpu2i PARAMS ((SIM_DESC, sim_cpu *, sim_cia, int, unsigned32, sim_fpu, sim_fpu)); -extern void tic80_trace_fpu2cmp PARAMS ((SIM_DESC, sim_cpu *, sim_cia, int, unsigned32, sim_fpu, sim_fpu)); +extern void tic80_trace_fpu3 PARAMS ((SIM_DESC, sim_cpu *, sim_cia, int, sim_fpu *, sim_fpu *, sim_fpu *)); +extern void tic80_trace_fpu2 PARAMS ((SIM_DESC, sim_cpu *, sim_cia, int, sim_fpu *, sim_fpu *)); +extern void tic80_trace_fpu1 PARAMS ((SIM_DESC, sim_cpu *, sim_cia, int, sim_fpu *)); +extern void tic80_trace_fpu2i PARAMS ((SIM_DESC, sim_cpu *, sim_cia, int, unsigned32, sim_fpu *, sim_fpu *)); +extern void tic80_trace_fpu2cmp PARAMS ((SIM_DESC, sim_cpu *, sim_cia, int, unsigned32, sim_fpu *, sim_fpu *)); extern char *tic80_trace_nop PARAMS ((int)); extern char *tic80_trace_sink1 PARAMS ((int, unsigned32)); extern char *tic80_trace_sink2 PARAMS ((int, unsigned32, unsigned32)); @@ -220,7 +220,7 @@ do { \ do { \ if (TRACE_FPU_P (CPU)) { \ tic80_trace_fpu3 (SD, CPU, cia, MY_INDEX, \ - result, input1, input2); \ + &result, &input1, &input2); \ } \ } while (0) @@ -228,7 +228,7 @@ do { \ do { \ if (TRACE_FPU_P (CPU)) { \ tic80_trace_fpu2 (SD, CPU, cia, MY_INDEX, \ - result, input); \ + &result, &input); \ } \ } while (0) @@ -236,7 +236,7 @@ do { \ do { \ if (TRACE_FPU_P (CPU)) { \ tic80_trace_fpu1 (SD, CPU, cia, MY_INDEX, \ - result); \ + &result); \ } \ } while (0) @@ -244,7 +244,7 @@ do { \ do { \ if (TRACE_FPU_P (CPU)) { \ tic80_trace_fpu2i (SD, CPU, cia, MY_INDEX, \ - result, input1, input2); \ + result, &input1, &input2); \ } \ } while (0) @@ -252,7 +252,7 @@ do { \ do { \ if (TRACE_FPU_P (CPU)) { \ tic80_trace_fpu2cmp (SD, CPU, cia, MY_INDEX, \ - result, input1, input2); \ + result, &input1, &input2); \ } \ } while (0) |