This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

gdb and binutils branch master updated. 3ed9baed43c5253b2e88e5576773957432e268c4


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gdb and binutils".

The branch, master has been updated
       via  3ed9baed43c5253b2e88e5576773957432e268c4 (commit)
      from  78c164b00654c7f422694035bc0e1817f90c86b5 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=3ed9baed43c5253b2e88e5576773957432e268c4

commit 3ed9baed43c5253b2e88e5576773957432e268c4
Author: Iain Buclaw <ibuclaw@gdcproject.org>
Date:   Thu Jun 19 19:29:26 2014 +0100

    Initial pass at D language expression parser support.
    
    gdb/
    2014-06-05  Iain Buclaw  <ibuclaw@gdcproject.org>
    
    	* Makefile.in (SFILES): Add d-exp.y.
    	(YYFILES): Add d-exp.c.
    	(YYOBJ): Add d-exp.o.
    	(local-maintainer-clean): Delete d-exp.c.
    	* d-exp.y: New file.
    	* d-lang.h (d_parse): New declaration.
    	(d_error): New declaration.
    	* d-lang.c (d_op_print_tab): Add entry for BINOP_CONCAT and BINOP_EXP.
    	Set BINOP_EQUAL and BINOP_NOTEQUAL to same precedence as other
    	PREC_ORDER operators.
    	(d_language_defn): Use d_parse, d_error instead of c_parse, c_error.
    
    gdb/testsuite/
    2014-06-05  Iain Buclaw  <ibuclaw@gdcproject.org>
    
    	* gdb.dlang/expression.exp: New file.

-----------------------------------------------------------------------

Summary of changes:
 gdb/ChangeLog                          |   14 +
 gdb/Makefile.in                        |    8 +-
 gdb/d-exp.y                            | 1637 ++++++++++++++++++++++++++++++++
 gdb/d-lang.c                           |   10 +-
 gdb/d-lang.h                           |    6 +
 gdb/testsuite/ChangeLog                |    4 +
 gdb/testsuite/gdb.dlang/expression.exp |  137 +++
 7 files changed, 1808 insertions(+), 8 deletions(-)
 create mode 100644 gdb/d-exp.y
 create mode 100644 gdb/testsuite/gdb.dlang/expression.exp


hooks/post-receive
-- 
gdb and binutils


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]