diff options
Diffstat (limited to 'gdb/ada-exp.y')
-rw-r--r-- | gdb/ada-exp.y | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/ada-exp.y b/gdb/ada-exp.y index 2e34e01..70a4b58 100644 --- a/gdb/ada-exp.y +++ b/gdb/ada-exp.y @@ -256,6 +256,7 @@ simple_exp : type '\'' save_qualifier { type_qualifier = $1; } '(' exp ')' ; save_qualifier : { $$ = type_qualifier; } + ; simple_exp : simple_exp '(' exp DOTDOT exp ')' @@ -532,7 +533,7 @@ exp : CHARLIT (convert_char_literal (type_qualifier, $1.val)); write_exp_elt_opcode (OP_LONG); } - + ; exp : FLOAT { write_exp_elt_opcode (OP_DOUBLE); @@ -548,6 +549,7 @@ exp : NULL_PTR write_exp_elt_longcst ((LONGEST)(0)); write_exp_elt_opcode (OP_LONG); } + ; exp : STRING { /* Ada strings are converted into array constants |