* ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out if
the offset value isn't of integral type.
This commit is contained in:
parent
809e8c5f53
commit
5d5b640e00
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2010-02-11 Pedro Alves <pedro@codesourcery.com>
|
||||
|
||||
* ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out if
|
||||
the offset value isn't of integral type.
|
||||
|
||||
2010-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||
|
||||
* breakpoint.c (delete_breakpoint) <bpt->related_breakpoint != NULL>:
|
||||
|
|
|
@ -1910,6 +1910,9 @@ cannot subscript requested type: cannot call user defined functions"));
|
|||
}
|
||||
}
|
||||
|
||||
if (!is_integral_type (value2->type))
|
||||
error (_("Argument to arithmetic operation not a number or boolean."));
|
||||
|
||||
gen_ptradd (ax, value, value1, value2);
|
||||
gen_deref (ax, value);
|
||||
break;
|
||||
|
|
Loading…
Add table
Reference in a new issue