mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 10:35:12 +08:00
* p-exp.y (exp : SIZEOF '(' exp ')'): New rule.
This commit is contained in:
parent
48cb83fdd0
commit
28e176a623
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user