* m2-exp.y (MAX_FUNC): Fix trailing UNOP_MAX.
This commit is contained in:
Jan Kratochvil 2009-05-21 14:38:20 +00:00
parent 930e005c64
commit c244a140a5
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2009-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
* m2-exp.y (MAX_FUNC): Fix trailing UNOP_MAX.
2009-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
* dwarf2read.c (set_cu_language): Recognize also DW_LANG_C99.

View File

@ -265,7 +265,7 @@ exp : MIN_FUNC '(' type ')'
exp : MAX_FUNC '(' type ')'
{ write_exp_elt_opcode (UNOP_MAX);
write_exp_elt_type ($3);
write_exp_elt_opcode (UNOP_MIN); }
write_exp_elt_opcode (UNOP_MAX); }
;
exp : FLOAT_FUNC '(' exp ')'