summaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorPierre Muller <muller@sourceware.org>2010-05-08 09:18:02 +0000
committerPierre Muller <muller@sourceware.org>2010-05-08 09:18:02 +0000
commit28e176a623b7c5ecbc792d52b46decfe92a81587 (patch)
tree777f3c480c65f57f7bc43463120ba124dd68ad1c /gdb
parent48cb83fdd097716c0f21511e0e5b475bb1f2aa41 (diff)
* p-exp.y (exp : SIZEOF '(' exp ')'): New rule.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/p-exp.y3
2 files changed, 7 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 64211b69d7..35f823cabf 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 fce3fc7966..2aec487463 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