From patchwork Tue Sep 12 13:20:47 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Biener X-Patchwork-Id: 812844 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-461918-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="NJcT+PPO"; 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 3xs55k39zpz9s0g for ; Tue, 12 Sep 2017 23:20:58 +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:date :from:to:subject:message-id:mime-version:content-type; q=dns; s= default; b=M9uExYbBmflD1T8x1y/8w3EL5U64T37BSIRsd50/uJIxgQ3gPtum9 Nj+lIpcyL6gavb1rr+w5ztGYHSjNQY4M21J9mzr/ZJtG+Ffjc1MA4RHa/UFgBJTK HtkEAErvRJKKmwU+IqftZtylOPbswLl+eceTsv2n6BxjFk+4LZktuM= 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:date :from:to:subject:message-id:mime-version:content-type; s= default; bh=JBoE8ivvffJzMI5t3qkVRNVa1gE=; b=NJcT+PPOfm9CuE+8ZuEL RMUXf4IUTG6jfq1IeD0rDxLRvoHV6j9AJ9OIA8FUVuV6Xj16oywxzWBYdUZrwXmb XYRUSSODgPTJvAoGqRJZjhOtJ9z+sVgN2U2AHPr1kKz/ZjD2+vaR6dphe1ETOgjV o4DQclGrNasgA4PSLCHIUkE= Received: (qmail 51013 invoked by alias); 12 Sep 2017 13:20:51 -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 51004 invoked by uid 89); 12 Sep 2017 13:20:50 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-11.9 required=5.0 tests=BAYES_00, GIT_PATCH_2, GIT_PATCH_3, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 spammy= X-HELO: mx1.suse.de Received: from mx2.suse.de (HELO mx1.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 12 Sep 2017 13:20:49 +0000 Received: from relay1.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 3A3BBAD01 for ; Tue, 12 Sep 2017 13:20:47 +0000 (UTC) Date: Tue, 12 Sep 2017 15:20:47 +0200 (CEST) From: Richard Biener To: gcc-patches@gcc.gnu.org Subject: [PATCH] Fix typo in recent match.pd pattern Message-ID: User-Agent: Alpine 2.20 (LSU 67 2015-01-07) MIME-Version: 1.0 Bootstrapped and tested on x86_64-unknown-linux-gnu, applied. Richard. 2017-09-12 Richard Biener PR middle-end/82149 * match.pd ((FTYPE) N CMP CST): Fix typo. Index: gcc/match.pd =================================================================== --- gcc/match.pd (revision 252002) +++ gcc/match.pd (working copy) @@ -2916,7 +2916,7 @@ DEFINE_INT_AND_FLOAT_ROUND_FN (RINT) -fno-signaling-nans. */ bool exception_p = real_isnan (cst) && (cst->signalling - || (cmp != EQ_EXPR || cmp != NE_EXPR)); + || (cmp != EQ_EXPR && cmp != NE_EXPR)); /* INT?_MIN is power-of-two so it takes only one mantissa bit. */ bool signed_p = isign == SIGNED;