From patchwork Tue May 1 15:51:53 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 156146 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 572E3B6FA8 for ; Wed, 2 May 2012 01:52:14 +1000 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1336492335; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Message-ID:Date:From:User-Agent:MIME-Version:To:Subject: Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:Sender:Delivered-To; bh=Hucluhd 57bwe6nmXYqy3mbLaCUk=; b=SgtGKo4XiOj9gWceWssi1D9p0geDupwE4IvYdHZ mStXrWG0NOCQIw9aMUhgxCCf6uPxBjPHqXLT/jguMovA75vyczU/kxCtC+6Vm1xt cOFP82VNG/fSaDq3BtgZqriHjHL8PDPKc8DafNk2VrCaO1jrq1y41D5lg8VvBawW BFxo= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:Received:Message-ID:Date:From:User-Agent:MIME-Version:To:Subject:Content-Type:X-IsSubscribed:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=wHyTUpK9AI9ytHA6tgaQuETNDHk+TrROksSD5bSf44VFW0MwDKMg6mXC1yl8SZ /czV4xjzQjtSZS0xFXeHLT8P/CSTchcwR4S6BON1vDgbWHYWD6dmebPT40qpEnzU o8A0/hswOoyrTKHEIOizdJb5YwcZpMOapSn146GiqiIBE=; Received: (qmail 26561 invoked by alias); 1 May 2012 15:52:09 -0000 Received: (qmail 26553 invoked by uid 22791); 1 May 2012 15:52:08 -0000 X-SWARE-Spam-Status: No, hits=-6.2 required=5.0 tests=AWL, BAYES_00, KHOP_RCVD_UNTRUST, RCVD_IN_DNSWL_HI, RCVD_IN_HOSTKARMA_W, SPF_HELO_PASS, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 01 May 2012 15:51:56 +0000 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q41FpuUL009315 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 1 May 2012 11:51:56 -0400 Received: from pebble.twiddle.net (vpn-10-162.rdu.redhat.com [10.11.10.162]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id q41Fpto3032143 for ; Tue, 1 May 2012 11:51:56 -0400 Message-ID: <4FA00699.7010804@redhat.com> Date: Tue, 01 May 2012 08:51:53 -0700 From: Richard Henderson User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:12.0) Gecko/20120425 Thunderbird/12.0 MIME-Version: 1.0 To: GCC Patches Subject: [committed] Run DImode atomic tests on ppc64 X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Committed as obvious. r~ * lib/target-supports.exp (check_effective_target_sync_long_long_runtime): True for check_effective_target_powerpc64. diff --git a/gcc/testsuite/lib/target-supports.exp b/gcc/testsuite/lib/target-supports.exp index 1a25324..b93dc5c 100644 --- a/gcc/testsuite/lib/target-supports.exp +++ b/gcc/testsuite/lib/target-supports.exp @@ -3795,6 +3795,8 @@ proc check_effective_target_sync_long_long_runtime { } { && [check_effective_target_lp64] && [check_effective_target_ultrasparc_hw]) } { return 1 + } elseif { [check_effective_target_powerpc64] } { + return 1 } else { return 0 }