diff options
author | Pierre Muller <muller@sourceware.org> | 2010-05-08 09:18:02 +0000 |
---|---|---|
committer | Pierre Muller <muller@sourceware.org> | 2010-05-08 09:18:02 +0000 |
commit | 28e176a623b7c5ecbc792d52b46decfe92a81587 (patch) | |
tree | 777f3c480c65f57f7bc43463120ba124dd68ad1c | |
parent | 48cb83fdd097716c0f21511e0e5b475bb1f2aa41 (diff) | |
download | gdb-28e176a623b7c5ecbc792d52b46decfe92a81587.zip gdb-28e176a623b7c5ecbc792d52b46decfe92a81587.tar.gz gdb-28e176a623b7c5ecbc792d52b46decfe92a81587.tar.bz2 |
* p-exp.y (exp : SIZEOF '(' exp ')'): New rule.
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/p-exp.y | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 64211b6..35f823c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2010-05-08 Pierre Muller <muller@ics.u-strasbg.fr> + + * p-exp.y (exp : SIZEOF '(' exp ')'): New rule. + 2010-05-08 Jan Kratochvil <jan.kratochvil@redhat.com> * dwarf2read.c (typename_concat): Use (char *) NULL terminated stdarg diff --git a/gdb/p-exp.y b/gdb/p-exp.y index fce3fc7..2aec487 100644 --- a/gdb/p-exp.y +++ b/gdb/p-exp.y @@ -525,6 +525,9 @@ exp : SIZEOF '(' type ')' %prec UNARY write_exp_elt_opcode (OP_LONG); } ; +exp : SIZEOF '(' exp ')' %prec UNARY + { write_exp_elt_opcode (UNOP_SIZEOF); } + exp : STRING { /* C strings are converted into array constants with an explicit null byte added at the end. Thus |