From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18067 invoked by alias); 4 Aug 2006 18:52:21 -0000 Received: (qmail 18057 invoked by uid 22791); 4 Aug 2006 18:52:21 -0000 X-Spam-Check-By: sourceware.org Received: from gollum.portugalmail.pt (HELO gollum.portugalmail.pt) (195.245.179.77) by sourceware.org (qpsmtpd/0.31) with ESMTP; Fri, 04 Aug 2006 18:52:19 +0000 Received: from [127.0.0.1] (195-23-204-111.net.novis.pt [195.23.204.111]) by gollum.portugalmail.pt (Postfix) with ESMTP id 7464DEBBD3 for ; Fri, 4 Aug 2006 19:50:35 +0100 (WEST) Message-ID: <44D39761.9070106@portugalmail.pt> Date: Fri, 04 Aug 2006 18:52:00 -0000 From: Pedro Alves User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.5) Gecko/20060719 Thunderbird/1.5.0.5 Mnenhy/0.7.4.0 MIME-Version: 1.0 To: binutils@sourceware.org Subject: [PATCH]: Trivial testsuite fix for arm-coff Content-Type: multipart/mixed; boundary="------------010706060603070403090408" X-Antivirus: avast! (VPS 0631-3, 04-08-2006), Outbound message X-Antivirus-Status: Clean X-IsSubscribed: yes Mailing-List: contact binutils-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sourceware.org X-SW-Source: 2006-08/txt/msg00048.txt.bz2 This is a multi-part message in MIME format. --------------010706060603070403090408 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 482 Hi all, There is a FAIL in the gas testsuite for arm-coff targets, on the gas/arm/thumb2_add test. This FAIL is related to the usage of the elf-only pseudo ".type", so I think it is a test bug. Attached is a patch that fixes the issue by simply removing the offending line. Tested on arm-none-coff and arm-none-eabi. 2006-08-04 Pedro Alves gas/testsuite * gas/arm/thumb2_add.s: Don't use elf specific ".type" pseudo-op. Cheers, Pedro Alves --------------010706060603070403090408 Content-Type: text/plain; name="thumb2_add.s.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="thumb2_add.s.diff" Content-length: 431 Index: thumb2_add.s =================================================================== RCS file: /cvs/src/src/gas/testsuite/gas/arm/thumb2_add.s,v retrieving revision 1.1 diff -u -r1.1 thumb2_add.s --- thumb2_add.s 18 Jul 2006 16:44:47 -0000 1.1 +++ thumb2_add.s 4 Aug 2006 18:45:09 -0000 @@ -4,7 +4,6 @@ .global thumb2_add .thumb .thumb_func - .type thumb2_add, %function thumb2_add: add r0, pc, #0x800 add r9, pc, #0 --------------010706060603070403090408--