From patchwork Fri May 5 10:36:59 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Georg-Johann Lay X-Patchwork-Id: 758961 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]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3wK7cq4qZFz9s8W for ; Fri, 5 May 2017 20:37:14 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="qDqcjGll"; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:to:cc :from:subject:message-id:date:mime-version:content-type :content-transfer-encoding; q=dns; s=default; b=EdqnPOeXCNjTZnZ6 +VmylHpTkMOR9lb8ftvRg7IwcZG58vab/KBM+J254FcG2wet+z//ISXrIMMCv83y aK57YtEo3HM/La5Q/gxU2gGptvlMmrvm2AP97plp6/PBS5E1SD3Ww9MBMEUzkpj5 wvLViY3FLJAMfgC18IdJ1/2r3zk= 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:cc :from:subject:message-id:date:mime-version:content-type :content-transfer-encoding; s=default; bh=Dad5N6vdwHVbHjxmdSRR8Q f6Ex4=; b=qDqcjGllwO/RFqjNTfMRonODouEFjgcHG5cLqKxhNOAWYbWzTx10G2 vhUofcT+2jOCgLw9txqMQdWVFdNqBHTO88zpXRETlpQ4H44LAgkl2LTA6ItcnD7r QjzxM/pdoi8slc13i7ddYFXTqhoQiGB8poY5G3SAk5gIFB3EcYgow= Received: (qmail 94779 invoked by alias); 5 May 2017 10:37:03 -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 94762 invoked by uid 89); 5 May 2017 10:37:01 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-7.0 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_2, GIT_PATCH_3, MEDICAL_SUBJECT, RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 spammy=cpc, Hx-languages-length:1778 X-HELO: mo4-p00-ob.smtp.rzone.de Received: from mo4-p00-ob.smtp.rzone.de (HELO mo4-p00-ob.smtp.rzone.de) (81.169.146.218) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 05 May 2017 10:37:00 +0000 X-RZG-AUTH: :LXoWVUeid/7A29J/hMvvT3ol15ykJcYwR/bcHRirORRW3yMcVao= X-RZG-CLASS-ID: mo00 Received: from [192.168.0.123] (mail.hightec-rt.com [213.135.1.215]) by smtp.strato.de (RZmta 40.6 DYNA|AUTH) with ESMTPSA id w0773bt45Aax87y (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA (curve secp521r1 with 521 ECDH bits, eq. 15360 bits RSA)) (Client did not present a certificate); Fri, 5 May 2017 12:36:59 +0200 (CEST) To: gcc-patches Cc: Denis Chertykov , Pitchumani Sivanupandi , Richard Biener , Senthil Kumar Selvaraj From: Georg-Johann Lay Subject: [patch,avr,committed]: Remove flag_strict_overflow from avr.md Message-ID: Date: Fri, 5 May 2017 12:36:59 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.7.1 MIME-Version: 1.0 X-IsSubscribed: yes Applied this addendum to r247495 which removed flag_strict_overflow. There were remains of the flag in avr.md which broke the avr build. Committed as r247632. Johann * config/avr/avr.md [flag_strict_overflow]: Remove any occurence of this flag from insn conditions due to removal from r247495. Index: config/avr/avr.md =================================================================== --- config/avr/avr.md (revision 247631) +++ config/avr/avr.md (working copy) @@ -4580,7 +4580,7 @@ (define_insn "*negated_tstqi" [(set (cc0) (compare (neg:QI (match_operand:QI 0 "register_operand" "r")) (const_int 0)))] - "!flag_wrapv && !flag_trapv && flag_strict_overflow" + "!flag_wrapv && !flag_trapv" "cp __zero_reg__,%0" [(set_attr "cc" "compare") (set_attr "length" "1")]) @@ -4598,7 +4598,7 @@ (define_insn "*negated_tsthi" [(set (cc0) (compare (neg:HI (match_operand:HI 0 "register_operand" "r")) (const_int 0)))] - "!flag_wrapv && !flag_trapv && flag_strict_overflow" + "!flag_wrapv && !flag_trapv" "cp __zero_reg__,%A0 cpc __zero_reg__,%B0" [(set_attr "cc" "compare") @@ -4621,7 +4621,7 @@ (define_insn "*negated_tstpsi" [(set (cc0) (compare (neg:PSI (match_operand:PSI 0 "register_operand" "r")) (const_int 0)))] - "!flag_wrapv && !flag_trapv && flag_strict_overflow" + "!flag_wrapv && !flag_trapv" "cp __zero_reg__,%A0\;cpc __zero_reg__,%B0\;cpc __zero_reg__,%C0" [(set_attr "cc" "compare") (set_attr "length" "3")]) @@ -4640,7 +4640,7 @@ (define_insn "*negated_tstsi" [(set (cc0) (compare (neg:SI (match_operand:SI 0 "register_operand" "r")) (const_int 0)))] - "!flag_wrapv && !flag_trapv && flag_strict_overflow" + "!flag_wrapv && !flag_trapv" "cp __zero_reg__,%A0 cpc __zero_reg__,%B0 cpc __zero_reg__,%C0