From patchwork Thu Nov 26 20:49:21 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Stump X-Patchwork-Id: 549228 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 215931402D1 for ; Fri, 27 Nov 2015 07:50:45 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=sF27EwU0; 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:from :content-type:content-transfer-encoding:subject:message-id:date :to:mime-version; q=dns; s=default; b=fpjoT7/NaOt4DcSM1vkHuZFn4s uTWLeLACVk0cug9U/2pdpxW23HKAzZAq6ZuyWe4m+3Hcv20T8kNw/oYqUZtVmDoO firU1vyeOrTIr2GuyeEqRdMNw3hnC3133CXHmhBWG/3Vkua4reANT0X4k6QBow6w m25w8zgw0wVDV9Zkw= 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:from :content-type:content-transfer-encoding:subject:message-id:date :to:mime-version; s=default; bh=L4eray3lrGFb3zVJJeep5DWBy9w=; b= sF27EwU0KotSBK7XFT8+CN42JCoJ9bVQw0iSNz2sZjp2QKlpMNcIBRW3Oz4cYEBf jhu1x+lbnhFq57jT3E/7aNy2Ybg5vN4WIJSJs0NYIINufHDuedWsk8Kasdn7NaMJ 19sI97LkEp/FmKC0VXnw9vBrWlBoVoBx+jT8THKnqXY= Received: (qmail 84726 invoked by alias); 26 Nov 2015 20:50:38 -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 84704 invoked by uid 89); 26 Nov 2015 20:50:36 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 X-HELO: resqmta-ch2-03v.sys.comcast.net Received: from resqmta-ch2-03v.sys.comcast.net (HELO resqmta-ch2-03v.sys.comcast.net) (69.252.207.35) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Thu, 26 Nov 2015 20:50:35 +0000 Received: from resomta-ch2-13v.sys.comcast.net ([69.252.207.109]) by resqmta-ch2-03v.sys.comcast.net with comcast id mLqW1r0012N9P4d01LqZry; Thu, 26 Nov 2015 20:50:33 +0000 Received: from [IPv6:2001:558:6045:a4:40c6:7199:cd03:b02d] ([IPv6:2001:558:6045:a4:40c6:7199:cd03:b02d]) by resomta-ch2-13v.sys.comcast.net with comcast id mLqY1r0012ztT3H01LqZNX; Thu, 26 Nov 2015 20:50:33 +0000 From: Mike Stump Subject: fix formatting Message-Id: <078303E3-8701-44E6-B862-2206811E59B3@comcast.net> Date: Thu, 26 Nov 2015 12:49:21 -0800 To: GCC Patches Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\)) X-IsSubscribed: yes I checked this in to fix a formatting issue. != binds more tightly than &&. Index: lra-constraints.c =================================================================== --- lra-constraints.c (revision 230982) +++ lra-constraints.c (working copy) @@ -2556,8 +2556,8 @@ process_alt_operands (int only_alternati another operand as an operand matching the earlyclobber operand can be also the same. */ if (first_conflict_j == last_conflict_j - && operand_reg[last_conflict_j] - != NULL_RTX && ! curr_alt_match_win[last_conflict_j] + && operand_reg[last_conflict_j] != NULL_RTX + && ! curr_alt_match_win[last_conflict_j] && REGNO (operand_reg[i]) == REGNO (operand_reg[last_conflict_j])) { curr_alt_win[last_conflict_j] = false;