From: Doug Evans Date: Mon, 24 Nov 1997 22:58:47 +0000 (+0000) Subject: * cpu.h (TRACE_COND_BR): Use TRACE_BRANCH_P, not TRACE_ALU_P. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c5ecfceb13df0b39942ef3246533448651c0da35;p=binutils-gdb.git * cpu.h (TRACE_COND_BR): Use TRACE_BRANCH_P, not TRACE_ALU_P. --- diff --git a/sim/tic80/ChangeLog b/sim/tic80/ChangeLog index e7c56d6bd43..2f2b05692bd 100644 --- a/sim/tic80/ChangeLog +++ b/sim/tic80/ChangeLog @@ -1,3 +1,7 @@ +Mon Nov 24 14:57:58 1997 Doug Evans + + * cpu.h (TRACE_COND_BR): Use TRACE_BRANCH_P, not TRACE_ALU_P. + Sat Nov 22 21:42:09 1997 Andrew Cagney * interp.c (engine_step): Replace SIGTRAP with SIM_SIGTRAP. diff --git a/sim/tic80/cpu.h b/sim/tic80/cpu.h index e710364d0d1..f1780fa9316 100644 --- a/sim/tic80/cpu.h +++ b/sim/tic80/cpu.h @@ -283,7 +283,7 @@ do { \ #define TRACE_UCOND_BR(indx, target) \ do { \ - if (TRACE_ALU_P (CPU)) { \ + if (TRACE_BRANCH_P (CPU)) { \ trace_one_insn (SD, CPU, cia.ip, 1, itable[indx].file, \ itable[indx].line_nr, "branch", \ tic80_trace_ucond_br (indx, target)); \