2013-03-12 Hui Zhu <hui@codesourcery.com>
* dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
This commit is contained in:
parent
314d60dd50
commit
f3cec7e61f
|
@ -1,3 +1,7 @@
|
||||||
|
2013-03-12 Hui Zhu <hui@codesourcery.com>
|
||||||
|
|
||||||
|
* dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
|
||||||
|
|
||||||
2013-03-12 Yao Qi <yao@codesourcery.com>
|
2013-03-12 Yao Qi <yao@codesourcery.com>
|
||||||
Hui Zhu <hui@codesourcery.com>
|
Hui Zhu <hui@codesourcery.com>
|
||||||
|
|
||||||
|
|
|
@ -2934,8 +2934,8 @@ dwarf2_compile_expr_to_ax (struct agent_expr *expr, struct axs_value *loc,
|
||||||
size = addr_size;
|
size = addr_size;
|
||||||
|
|
||||||
if (size != 1 && size != 2 && size != 4 && size != 8)
|
if (size != 1 && size != 2 && size != 4 && size != 8)
|
||||||
error (_("Refn doesn't support size %d"),
|
error (_("Unsupported size %d in %s"),
|
||||||
size * TARGET_CHAR_BIT);
|
size, get_DW_OP_name (op));
|
||||||
access_memory (arch, expr, size * TARGET_CHAR_BIT);
|
access_memory (arch, expr, size * TARGET_CHAR_BIT);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue