From 92386549bd05a2f06cd86e48585a5a9d20a98680 Mon Sep 17 00:00:00 2001 From: "Howard M. Harte" Date: Fri, 31 Mar 2017 08:12:33 -0700 Subject: [PATCH] TX-0: Address CID 1415866 deadcode error. --- TX-0/tx0_cpu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TX-0/tx0_cpu.c b/TX-0/tx0_cpu.c index 60ca196a..28a61646 100644 --- a/TX-0/tx0_cpu.c +++ b/TX-0/tx0_cpu.c @@ -2,7 +2,7 @@ * * * $Id: tx0_cpu.c 2066 2009-02-27 15:57:22Z hharte $ * * * - * Copyright (c) 2009-2012 Howard M. Harte. * + * Copyright (c) 2009-2017 Howard M. Harte. * * Based on pdp1_cpu.c, Copyright (c) 1993-2007, Robert M. Supnik * * * * Permission is hereby granted, free of charge, to any person obtaining * @@ -651,9 +651,9 @@ t_stat sim_instr (void) TRACE_PRINT(ADD_MSG, ("[%06o] AUX: y=%05o, XR=%05o = ", PC-1, newY, XR)); XR = XR + newY; TRACE_PRINT(ADD_MSG, ("%05o\n", XR)); + inst_ctr.aux++; break; } - inst_ctr.aux++; case 4: /* llr (Load Live Register) */ Read(); LR = MBR;