summaryrefslogtreecommitdiffstats
path: root/sys/ddb
diff options
context:
space:
mode:
authormux <mux@FreeBSD.org>2002-06-23 20:03:03 +0000
committermux <mux@FreeBSD.org>2002-06-23 20:03:03 +0000
commit1c007d522a4a60d6c5eaabfec5d8dd7b5b1f2936 (patch)
treeb4fd0fb48f7a14e1182bc50d30b8f169af1b5679 /sys/ddb
parente8868912ebc0f9a4fc346f88d3a4a2315e9c341a (diff)
downloadFreeBSD-src-1c007d522a4a60d6c5eaabfec5d8dd7b5b1f2936.zip
FreeBSD-src-1c007d522a4a60d6c5eaabfec5d8dd7b5b1f2936.tar.gz
Split the declaration and the initialization of two variables.
This has the fortunate side effect of stopping GCC from reporting warnings about unused variables on sparc64. Reviewed by: bde
Diffstat (limited to 'sys/ddb')
-rw-r--r--sys/ddb/db_run.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/ddb/db_run.c b/sys/ddb/db_run.c
index 4b4875f..a1c0387 100644
--- a/sys/ddb/db_run.c
+++ b/sys/ddb/db_run.c
@@ -129,10 +129,10 @@ db_stop_at_pc(is_breakpoint)
}
}
if (db_run_mode == STEP_RETURN) {
- db_expr_t ins = db_get_value(pc, sizeof(int), FALSE);
-
/* continue until matching return */
+ db_expr_t ins;
+ ins = db_get_value(pc, sizeof(int), FALSE);
if (!inst_trap_return(ins) &&
(!inst_return(ins) || --db_call_depth != 0)) {
if (db_sstep_print) {
@@ -152,10 +152,10 @@ db_stop_at_pc(is_breakpoint)
}
}
if (db_run_mode == STEP_CALLT) {
- db_expr_t ins = db_get_value(pc, sizeof(int), FALSE);
-
/* continue until call or return */
+ db_expr_t ins;
+ ins = db_get_value(pc, sizeof(int), FALSE);
if (!inst_call(ins) &&
!inst_return(ins) &&
!inst_trap_return(ins)) {
OpenPOWER on IntegriCloud