From ac9ec944f00384a61cfeee5ecca571f6b4158496 Mon Sep 17 00:00:00 2001 From: Marin Ramesa Date: Wed, 20 Nov 2013 13:53:49 +0100 Subject: ddb/db_run.c: remove set but unused variable * ddb/db_run.c (ins): Remove variable. --- ddb/db_run.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'ddb') diff --git a/ddb/db_run.c b/ddb/db_run.c index 7aaeb46..e380253 100644 --- a/ddb/db_run.c +++ b/ddb/db_run.c @@ -176,14 +176,13 @@ db_restart_at_pc(watchpt, task) if ((db_run_mode == STEP_COUNT) || (db_run_mode == STEP_RETURN) || (db_run_mode == STEP_CALLT)) { - db_expr_t ins; /* * We are about to execute this instruction, * so count it now. */ - ins = db_get_task_value(pc, sizeof(int), FALSE, task); + db_get_task_value(pc, sizeof(int), FALSE, task); db_inst_count++; db_load_count += inst_load(ins); db_store_count += inst_store(ins); @@ -192,7 +191,7 @@ db_restart_at_pc(watchpt, task) brpc = next_instr_address(pc,1,task); if ((brpc != pc) && (inst_branch(ins) || inst_call(ins))) { /* Note: this ~assumes an instruction <= sizeof(int) */ - ins = db_get_task_value(brpc, sizeof(int), FALSE, task); + db_get_task_value(brpc, sizeof(int), FALSE, task); db_inst_count++; db_load_count += inst_load(ins); db_store_count += inst_store(ins); -- cgit v1.2.3