diff options
Diffstat (limited to 'gdb/ch-exp.y')
-rw-r--r-- | gdb/ch-exp.y | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gdb/ch-exp.y b/gdb/ch-exp.y index 8b76979..c87157c 100644 --- a/gdb/ch-exp.y +++ b/gdb/ch-exp.y @@ -367,6 +367,13 @@ expression_list : expression } ; +maybe_expression_list: /* EMPTY */ + { + arglist_len = 0; + } + | expression_list + ; + /* Z.200, 5.2.1 */ @@ -382,7 +389,7 @@ rparen : ')' primitive_value : access_name - | primitive_value_lparen expression_list rparen + | primitive_value_lparen maybe_expression_list rparen { write_exp_elt_opcode (MULTI_SUBSCRIPT); write_exp_elt_longcst ($3); |