bug-hurd
[Top][All Lists]
Advanced

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

[PATCH 09/19] ddb/db_run.c: move declaration of brpc into SOFTWARE_SSTEP


From: Marin Ramesa
Subject: [PATCH 09/19] ddb/db_run.c: move declaration of brpc into SOFTWARE_SSTEP
Date: Wed, 20 Nov 2013 13:53:51 +0100

* ddb/db_run.c (brpc): Move declaration into SOFTWARE_SSTEP code.

---
 ddb/db_run.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ddb/db_run.c b/ddb/db_run.c
index 22cd358..60b34bf 100644
--- a/ddb/db_run.c
+++ b/ddb/db_run.c
@@ -171,7 +171,7 @@ db_restart_at_pc(watchpt, task)
        boolean_t watchpt;
        task_t    task;
 {
-       db_addr_t pc = PC_REGS(DDB_REGS), brpc;
+       db_addr_t pc = PC_REGS(DDB_REGS);
 
        if ((db_run_mode == STEP_COUNT) ||
            (db_run_mode == STEP_RETURN) ||
@@ -187,6 +187,7 @@ db_restart_at_pc(watchpt, task)
            db_load_count += inst_load(ins);
            db_store_count += inst_store(ins);
 #ifdef SOFTWARE_SSTEP
+           db_addr_t brpc;
            /* Account for instructions in delay slots */
            brpc = next_instr_address(pc, 1, task);
            if ((brpc != pc) && (inst_branch(ins) || inst_call(ins))) {
-- 
1.8.1.4




reply via email to

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