bug-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 07/19] ddb/db_run.c: remove set but unused variable


From: Marin Ramesa
Subject: [PATCH 07/19] ddb/db_run.c: remove set but unused variable
Date: Wed, 20 Nov 2013 13:53:49 +0100

* ddb/db_run.c (ins): Remove variable.

---
 ddb/db_run.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/ddb/db_run.c b/ddb/db_run.c
index 7aaeb46..01893db 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);
-- 
1.8.1.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]