This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils 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. 2e6976a881711242cc151971b83e36844edbc310


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  2e6976a881711242cc151971b83e36844edbc310 (commit)
      from  e57190430e09d0df5c2277a527eb2bed4328fd6c (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=2e6976a881711242cc151971b83e36844edbc310

commit 2e6976a881711242cc151971b83e36844edbc310
Author: Daniel Gutson <daniel.gutson@tallertechnologies.com>
Date:   Wed Mar 19 14:31:25 2014 +0000

    Add support for ARM assembler produced by CodeCompositor Studio.
    
    	* config/tc-arm.c (codecomposer_syntax): New flag that states whether the
    	CCS syntax compatibility mode is on or off.
    	(asmfunc_states): New enum to represent the asmfunc directive state.
    	(asmfunc_state): New variable holding the asmfunc directive state.
    	(comment_chars): Rename to arm_comment_chars.
    	(line_separator_chars): Rename to arm_line_separator_chars.
    	(s_ccs_ref): New function that handles the .ref directive.
    	(asmfunc_debug): New function.
    	(s_ccs_asmfunc): New function that handles the .asmfunc directive.
    	(s_ccs_endasmfunc): New function that handles the .endasmfunc directive.
    	(s_ccs_def): New function that handles the .def directive.
    	(tc_start_label_without_colon): New function.
    	(md_pseudo_table): Added new CCS directives.
    	(arm_ccs_mode): New function that handles the -mccs command line option.
    	(arm_long_opts): Added new -mccs command line option.
    	* config/tc-arm.h (LABELS_WITHOUT_COLONS): New macro.
    	(TC_START_LABEL_WITHOUT_COLON): New macro.
    	(tc_start_label_without_colon): Added extern function declaration.
    	(tc_comment_chars): Define.
    	(tc_line_separator_chars): Define.
    	* app.c (do_scrub_begin): Use tc_line_separator_chars, if defined.
    	* read.c (read_begin): Likewise.
    	* doc/as.texinfo: Add documentation for the -mccs command line
    	option.
    	* doc/c-arm.texi: Likewise.
    	* doc/internals.texi: Document tc_line_separator_chars.
    	* NEWS: Mention the new feature.
    
    	* gas/arm/ccs.s: New test case.
    	* gas/arm/ccs.d: New expected disassembly.

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

Summary of changes:
 gas/ChangeLog               |   31 +++++++++
 gas/NEWS                    |    3 +
 gas/app.c                   |    5 +-
 gas/config/tc-arm.c         |  157 ++++++++++++++++++++++++++++++++++++++++++-
 gas/config/tc-arm.h         |   13 ++++
 gas/doc/as.texinfo          |    2 +
 gas/doc/c-arm.texi          |    4 +
 gas/doc/internals.texi      |    9 +++
 gas/read.c                  |    5 +-
 gas/testsuite/ChangeLog     |    6 ++
 gas/testsuite/gas/arm/ccs.d |   25 +++++++
 gas/testsuite/gas/arm/ccs.s |   33 +++++++++
 12 files changed, 289 insertions(+), 4 deletions(-)
 create mode 100644 gas/testsuite/gas/arm/ccs.d
 create mode 100644 gas/testsuite/gas/arm/ccs.s


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]