summaryrefslogtreecommitdiff
path: root/gdb/ax-gdb.c
diff options
context:
space:
mode:
authorJim Blandy <jimb@codesourcery.com>2007-10-26 23:04:57 +0000
committerJim Blandy <jimb@codesourcery.com>2007-10-26 23:04:57 +0000
commit9480a5519af79b11c61595ee826aa1d3fb6d87de (patch)
treecdbb75e669162121f7e079432f121528e9534972 /gdb/ax-gdb.c
parentd2413dc1c21ab0d3be3c33b63dc79b3958f1c6f6 (diff)
downloadgdb-9480a5519af79b11c61595ee826aa1d3fb6d87de.tar.gz
* ax-general.c (gen_traced_pop, gen_int_literal)
(gen_usual_arithmetic): Check for typedefs.
Diffstat (limited to 'gdb/ax-gdb.c')
-rw-r--r--gdb/ax-gdb.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/ax-gdb.c b/gdb/ax-gdb.c
index 18b7e31c4d4..27cc5b1ea35 100644
--- a/gdb/ax-gdb.c
+++ b/gdb/ax-gdb.c
@@ -319,7 +319,7 @@ gen_traced_pop (struct agent_expr *ax, struct axs_value *value)
case axs_lvalue_memory:
{
- int length = TYPE_LENGTH (value->type);
+ int length = TYPE_LENGTH (check_typedef (value->type));
/* There's no point in trying to use a trace_quick bytecode
here, since "trace_quick SIZE pop" is three bytes, whereas
@@ -650,7 +650,7 @@ gen_int_literal (struct agent_expr *ax, struct axs_value *value, LONGEST k,
{
ax_const_l (ax, k);
value->kind = axs_rvalue;
- value->type = type;
+ value->type = check_typedef (type);
}
@@ -854,7 +854,7 @@ gen_usual_arithmetic (struct agent_expr *ax, struct axs_value *value1,
ax_simple (ax, aop_swap);
}
- value1->type = value2->type = target;
+ value1->type = value2->type = check_typedef (target);
}
}