gdb/gdbserver/

* ax.c (gdb_eval_agent_expr): Print `top' in hex.
This commit is contained in:
Yao Qi 2012-06-06 08:31:31 +00:00
parent 6bd110c5c1
commit d38bbb0a50
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2012-06-06 Yao Qi <yao@codesourcery.com>
* ax.c (gdb_eval_agent_expr): Print `top' in hex.
2012-06-01 Jan Kratochvil <jan.kratochvil@redhat.com>
Fix gcc -flto compilation warning.

View file

@ -1186,6 +1186,6 @@ gdb_eval_agent_expr (struct regcache *regcache,
}
ax_debug ("Op %s -> sp=%d, top=0x%s",
gdb_agent_op_name (op), sp, pulongest (top));
gdb_agent_op_name (op), sp, phex_nz (top, 0));
}
}