From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23365 invoked by alias); 17 Jul 2002 19:32:58 -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 23344 invoked from network); 17 Jul 2002 19:32:54 -0000 Received: from unknown (HELO fadata.bg) (217.9.226.246) by sources.redhat.com with SMTP; 17 Jul 2002 19:32:54 -0000 Received: (qmail 16972 invoked by uid 1000); 17 Jul 2002 19:32:50 -0000 To: binutils@sources.redhat.com Subject: [PATCH] Invalid token paste From: Momchil Velikov Date: Wed, 17 Jul 2002 12:50:00 -0000 Message-ID: <87it3e5evx.fsf@fadata.bg> User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.1 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-SW-Source: 2002-07/txt/msg00431.txt.bz2 --=-=-= Content-length: 179 Hi there, The following patch fixes a couple of "pasting foo and bar does not give a valid preprocessing token" errors when compiling gas/config/tc-v850.c with gcc-3.2. ~velco --=-=-= Content-Disposition: inline Content-length: 110 2002-07-17 Momchil Velikov * config/tc-v850.c (CHECK_): Remove token pasting operator. --=-=-= Content-Type: text/x-patch Content-Disposition: inline Content-length: 611 Index: tc-v850.c =================================================================== RCS file: /cvs/src/src/gas/config/tc-v850.c,v retrieving revision 1.21 diff -u -d -p -r1.21 tc-v850.c --- tc-v850.c 8 Jun 2002 07:37:16 -0000 1.21 +++ tc-v850.c 17 Jul 2002 19:27:47 -0000 @@ -1461,7 +1461,7 @@ v850_reloc_prefix (operand) } #define CHECK_(name, reloc) \ - if (strncmp (input_line_pointer, name##"(", strlen (name) + 1) == 0) \ + if (strncmp (input_line_pointer, name "(", strlen (name) + 1) == 0) \ { \ input_line_pointer += strlen (name); \ return reloc; \ --=-=-=--