From f3cec7e61fc4cf16cf150f9e967e6fc9dbbd7207 Mon Sep 17 00:00:00 2001 From: Hui Zhu Date: Tue, 12 Mar 2013 15:44:06 +0000 Subject: [PATCH] 2013-03-12 Hui Zhu * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message. --- gdb/ChangeLog | 4 ++++ gdb/dwarf2loc.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e7eb57a..3069add 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2013-03-12 Hui Zhu + + * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message. + 2013-03-12 Yao Qi Hui Zhu diff --git a/gdb/dwarf2loc.c b/gdb/dwarf2loc.c index f6fa420..625d859 100644 --- a/gdb/dwarf2loc.c +++ b/gdb/dwarf2loc.c @@ -2934,8 +2934,8 @@ dwarf2_compile_expr_to_ax (struct agent_expr *expr, struct axs_value *loc, size = addr_size; if (size != 1 && size != 2 && size != 4 && size != 8) - error (_("Refn doesn't support size %d"), - size * TARGET_CHAR_BIT); + error (_("Unsupported size %d in %s"), + size, get_DW_OP_name (op)); access_memory (arch, expr, size * TARGET_CHAR_BIT); } break; -- 2.7.4