From patchwork Tue Jun 26 05:21:06 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jeff Law X-Patchwork-Id: 934674 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-480469-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="nNk8zbLX"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 41FDss3Vjmz9ryk for ; Tue, 26 Jun 2018 15:21:18 +1000 (AEST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:to :from:subject:message-id:date:mime-version:content-type; q=dns; s=default; b=vAle+txxKLIE66qLDpDtsT7cKmxfFh43IZW4eAnasgQNna1Tas mAwcWSJo40iMeyCb0BX2PoVferKb/5pRKLjugElpp2DFv6ELVTd/odXZ/9Dwa/Tr rOfv/WLauz+VJ9O0ExpRb5rWO2oFfPqmC1wmwxC8Knt9VNihuAogi5sh8= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:to :from:subject:message-id:date:mime-version:content-type; s= default; bh=CZEwjcPwlCTL/IJgBtciHGylZ1k=; b=nNk8zbLXuCQx2XLmUI08 aAtjkjCcA1pCg4xZf39RbVQcQde078AgglpJdv7bn8UrDyQEoUfy1wUeOWsKzUhM mXQ11aJ+iV7TwVnaDSfC2GA5FCFj5KEVL1OIyMj2L1GuTcMakYCKPUgtJ0qGZl0I HUcwYRq5m/qfqCvXebx+IYQ= Received: (qmail 58615 invoked by alias); 26 Jun 2018 05:21:11 -0000 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 Received: (qmail 58601 invoked by uid 89); 26 Jun 2018 05:21:10 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:1401 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 26 Jun 2018 05:21:09 +0000 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 70DE880F75 for ; Tue, 26 Jun 2018 05:21:08 +0000 (UTC) Received: from localhost.localdomain (ovpn-112-5.rdu2.redhat.com [10.10.112.5]) by smtp.corp.redhat.com (Postfix) with ESMTP id CB7957DF46 for ; Tue, 26 Jun 2018 05:21:07 +0000 (UTC) To: gcc-patches From: Jeff Law Subject: [committed] v850 logical_op_short_circuit Openpgp: preference=signencrypt Message-ID: <5309c5b2-7bd5-aee0-cd99-7c7df08658fc@redhat.com> Date: Mon, 25 Jun 2018 23:21:06 -0600 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 X-IsSubscribed: yes v850 should be marked as logical_op_short_circuit for testing purposes but wasn't. Fix fixes about a dozen testsuite failures per multilib. Installed on the trunk. Jeff commit 2224de3ea8b9b4381b07fcb96a2cde9266ead611 Author: law Date: Tue Jun 26 05:19:15 2018 +0000 * lib/target-supports.exp (check_effective_target_logical_op_short_circuit): Add v850. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@262129 138bc75d-0d04-0410-961f-82ee72b054a4 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 4a90a33986d..5c0de04c4cb 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2018-06-25 Jeff Law + + * lib/target-supports.exp + (check_effective_target_logical_op_short_circuit): Add v850. + 2018-06-25 Martin Sebor PR tree-optimization/86204 diff --git a/gcc/testsuite/lib/target-supports.exp b/gcc/testsuite/lib/target-supports.exp index 3c2c62a5800..ffbc882b07d 100644 --- a/gcc/testsuite/lib/target-supports.exp +++ b/gcc/testsuite/lib/target-supports.exp @@ -8801,6 +8801,7 @@ proc check_effective_target_logical_op_short_circuit {} { || [istarget powerpc*-*-*] || [istarget nios2*-*-*] || [istarget riscv*-*-*] + || [istarget v850*-*-*] || [istarget visium-*-*] || [check_effective_target_arm_cortex_m] } { return 1