2010-03-12 Stan Shebs <stan@codesourcery.com>

* ax-gdb.c (gen_expr): Add shift expressions.
	(gen_expr_binop_rest): Ditto.
This commit is contained in:
Stan Shebs 2010-03-12 23:13:19 +00:00
parent 3f5c9f9a1d
commit 948103cf34
2 changed files with 15 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2010-03-12 Stan Shebs <stan@codesourcery.com>
* ax-gdb.c (gen_expr): Add shift expressions.
(gen_expr_binop_rest): Ditto.
2010-03-12 Sami Wagiaalla <swagiaal@redhat.com>
* buildsym.c (finish_block): Reset using_directives pointer

View File

@ -1479,6 +1479,8 @@ gen_expr (struct expression *exp, union exp_element **pc,
case BINOP_MUL:
case BINOP_DIV:
case BINOP_REM:
case BINOP_LSH:
case BINOP_RSH:
case BINOP_SUBSCRIPT:
case BINOP_BITWISE_AND:
case BINOP_BITWISE_IOR:
@ -1884,6 +1886,14 @@ gen_expr_binop_rest (struct expression *exp,
gen_binop (ax, value, value1, value2,
aop_rem_signed, aop_rem_unsigned, 1, "remainder");
break;
case BINOP_LSH:
gen_binop (ax, value, value1, value2,
aop_lsh, aop_lsh, 1, "left shift");
break;
case BINOP_RSH:
gen_binop (ax, value, value1, value2,
aop_rsh_signed, aop_rsh_unsigned, 1, "right shift");
break;
case BINOP_SUBSCRIPT:
{
struct type *type;