From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 966 invoked by alias); 30 Oct 2002 10:28:04 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 787 invoked from network); 30 Oct 2002 10:28:00 -0000 Received: from unknown (HELO fw-cam.cambridge.arm.com) (193.131.176.3) by sources.redhat.com with SMTP; 30 Oct 2002 10:28:00 -0000 Received: by fw-cam.cambridge.arm.com; id KAA21234; Wed, 30 Oct 2002 10:27:57 GMT Received: from unknown(172.16.1.2) by fw-cam.cambridge.arm.com via smap (V5.5) id xma020387; Wed, 30 Oct 02 10:27:01 GMT Received: from pc960.cambridge.arm.com (pc960.cambridge.arm.com [10.1.205.4]) by cam-admin0.cambridge.arm.com (8.9.3/8.9.3) with ESMTP id KAB10496; Wed, 30 Oct 2002 10:27:00 GMT Received: from pc960.cambridge.arm.com (rearnsha@localhost) by pc960.cambridge.arm.com (8.11.6/8.9.3) with ESMTP id g9UAQxN29167; Wed, 30 Oct 2002 10:27:00 GMT Message-Id: <200210301027.g9UAQxN29167@pc960.cambridge.arm.com> X-Authentication-Warning: pc960.cambridge.arm.com: rearnsha owned process doing -bs To: Adam Nemet cc: gcc-patches@gcc.gnu.org, nickc@redhat.com, rearnsha@arm.com Reply-To: Richard.Earnshaw@arm.com Organization: ARM Ltd. X-Telephone: +44 1223 400569 (direct+voicemail), +44 1223 400400 (switchbd) X-Fax: +44 1223 400410 X-Address: ARM Ltd., 110 Fulbourn Road, Cherry Hinton, Cambridge CB1 9NJ. Subject: Re: [PATCH, arm] Fix XFAIL in gcc.c-torture/execute/941014-1.x In-reply-to: Your message of "29 Oct 2002 21:28:07 PST." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 30 Oct 2002 02:28:00 -0000 From: Richard Earnshaw X-SW-Source: 2002-10/txt/msg01829.txt.bz2 > ! # This doesn't always work for Thumb. > > ! if { [istarget arm-*-elf] } { > ! set torture_eval_before_execute { > ! global compiler_conditional_xfail_data > ! set compiler_conditional_xfail_data { > ! "Thumb sets the last bit of function relocations" \ > ! "arm-*-elf" \ > ! { { "-mthumb" "-O0" } } \ > ! { "" } You need to test for any ARM target (elf, coff, aout plus various OS versions -- it's easier to just check for arm*-*-*), plus StrongArm and XScale. R.