From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3697 invoked by alias); 14 Feb 2005 14:58:20 -0000 Mailing-List: contact binutils-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sources.redhat.com Received: (qmail 3568 invoked from network); 14 Feb 2005 14:58:11 -0000 Received: from unknown (HELO emea1-mh.id2.novell.com) (195.33.99.129) by sourceware.org with SMTP; 14 Feb 2005 14:58:11 -0000 Received: from EMEA1-MTA by emea1-mh.id2.novell.com with Novell_GroupWise; Mon, 14 Feb 2005 14:58:11 +0100 Message-Id: Date: Mon, 14 Feb 2005 19:45:00 -0000 From: "Jan Beulich" To: Cc: Subject: Re: [PATCH] Re: ia64: @ not allowed to start symbol? Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=__Part35166AB3.0__=" X-SW-Source: 2005-02/txt/msg00311.txt.bz2 This is a MIME message. If you are reading this text, you may want to consider changing to a mail reader or gateway that understands how to properly handle MIME multipart messages. --=__Part35166AB3.0__= Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline Content-length: 1717 >>> James E Wilson 11.02.05 02:10:07 >>> >On Tue, 2005-02-08 at 08:27, Jan Beulich wrote: >> * config/tc-ia64.h (LEX_AT): Include LEX_BEGIN_NAME. >> (LEX_QM): Likewise. >> ... > >OK. The previously committed patch to allow @ and ? at the start of symbol names was incomplete; the scrubber still didn't know about these two. Built and tested on ia64-unknown-linux-gnu. Jan gas/ 2005-02-14 Jan Beulich * config/tc-ia64.h (ia64_symbol_chars): Declare. (ty_symbol_chars): Define. * config/tc-ia64.c (ia64_symbol_chars): Define. --- /home/jbeulich/src/binutils/mainline/2005-02-14/gas/config/tc-ia64.c 2005-02-14 08:56:13.000000000 +0100 +++ 2005-02-14/gas/config/tc-ia64.c 2005-02-14 15:43:36.807863235 +0100 @@ -174,6 +174,10 @@ static struct hash_control *alias_name_h static struct hash_control *secalias_hash; static struct hash_control *secalias_name_hash; +/* List of chars besides those in app.c:symbol_chars that can start an + operand. Used to prevent the scrubber eating vital white-space. */ +const char ia64_symbol_chars[] = "@?"; + /* Characters which always start a comment. */ const char comment_chars[] = ""; --- /home/jbeulich/src/binutils/mainline/2005-02-14/gas/config/tc-ia64.h 2005-02-08 17:18:43.000000000 +0100 +++ 2005-02-14/gas/config/tc-ia64.h 2005-02-14 15:43:36.808839797 +0100 @@ -78,6 +78,9 @@ extern const char *ia64_target_format PA #define LEX_QM (LEX_NAME|LEX_BEGIN_NAME) /* allow `?' inside name */ #define LEX_HASH LEX_END_NAME /* allow `#' ending a name */ +extern const char ia64_symbol_chars[]; +#define tc_symbol_chars ia64_symbol_chars + #define SUB_SEGMENT_ALIGN(SEG, FRCHAIN) 0 struct ia64_fix --=__Part35166AB3.0__= Content-Type: text/plain; name="binutils-mainline-ia64-lex-at-qm-2.patch" Content-Transfer-Encoding: 8bit Content-Disposition: attachment; filename="binutils-mainline-ia64-lex-at-qm-2.patch" Content-length: 1504 The previously committed patch to allow @ and ? at the start of symbol names was incomplete; the scrubber still didn't know about these two. Built and tested on ia64-unknown-linux-gnu. Jan gas/ 2005-02-14 Jan Beulich * config/tc-ia64.h (ia64_symbol_chars): Declare. (ty_symbol_chars): Define. * config/tc-ia64.c (ia64_symbol_chars): Define. --- /home/jbeulich/src/binutils/mainline/2005-02-14/gas/config/tc-ia64.c 2005-02-14 08:56:13.000000000 +0100 +++ 2005-02-14/gas/config/tc-ia64.c 2005-02-14 15:43:36.807863235 +0100 @@ -174,6 +174,10 @@ static struct hash_control *alias_name_h static struct hash_control *secalias_hash; static struct hash_control *secalias_name_hash; +/* List of chars besides those in app.c:symbol_chars that can start an + operand. Used to prevent the scrubber eating vital white-space. */ +const char ia64_symbol_chars[] = "@?"; + /* Characters which always start a comment. */ const char comment_chars[] = ""; --- /home/jbeulich/src/binutils/mainline/2005-02-14/gas/config/tc-ia64.h 2005-02-08 17:18:43.000000000 +0100 +++ 2005-02-14/gas/config/tc-ia64.h 2005-02-14 15:43:36.808839797 +0100 @@ -78,6 +78,9 @@ extern const char *ia64_target_format PA #define LEX_QM (LEX_NAME|LEX_BEGIN_NAME) /* allow `?' inside name */ #define LEX_HASH LEX_END_NAME /* allow `#' ending a name */ +extern const char ia64_symbol_chars[]; +#define tc_symbol_chars ia64_symbol_chars + #define SUB_SEGMENT_ALIGN(SEG, FRCHAIN) 0 struct ia64_fix --=__Part35166AB3.0__=--