From patchwork Tue Feb 11 22:05:01 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vladimir Makarov X-Patchwork-Id: 319429 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 3AF712C00B3 for ; Wed, 12 Feb 2014 09:05:11 +1100 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:date:from:mime-version:to:subject:content-type; q= dns; s=default; b=kikqOUsLXHg/YqTWtlLIxF7Y4st+lhNoeypa418xrUcWx0 3oc/xbRmykkLKtsxD7O4989oopNYL0hAlP/poW1GB6Klh/DY/I4GQrDj1MdKpHpG T0sSDFbjfs0ufBxCX0qft9YW00BBrLX4w1TUjl3CTbllpyk5poXpv9mgqpzyo= 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 :message-id:date:from:mime-version:to:subject:content-type; s= default; bh=bTunwzyta4rEdSLIfKQyA1eQWfo=; b=HnbFmmmWY9TXWGQjAY4g WbG0/pFU5CCWMflT2C2On7tv7Hf+MFtnlInPOenbA1NrtfhDtzXbfXsb4H3T1Bxp a3i6JgXSXFM02jMOFGcJP2OISslCCNzISXxcAzaEGo9uCNSmG4AR6G5l/TspRySY B3YjouCR9SVqL1nXA4WKkQs= Received: (qmail 8518 invoked by alias); 11 Feb 2014 22:05:04 -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 8504 invoked by uid 89); 11 Feb 2014 22:05:04 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-4.3 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.3.2 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, 11 Feb 2014 22:05:03 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s1BM52rg005718 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 11 Feb 2014 17:05:02 -0500 Received: from topor.usersys.redhat.com ([10.15.16.142]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s1BM51Vl024000 for ; Tue, 11 Feb 2014 17:05:01 -0500 Message-ID: <52FA9E8D.2000500@redhat.com> Date: Tue, 11 Feb 2014 17:05:01 -0500 From: Vladimir Makarov User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: gcc-patches Subject: patch fixing PR49008 X-IsSubscribed: yes The following patch fixes http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49008 This typo was not important as the code worked correctly in the most cases as units required precence of only one another unit mostly. Committed as rev. 207701. 2014-02-11 Vladimir Makarov PR target/49008 * genautomata.c (add_presence_absence): Fix typo with {final_}presence_list. Index: genautomata.c =================================================================== --- genautomata.c (revision 207697) +++ genautomata.c (working copy) @@ -2348,7 +2348,7 @@ add_presence_absence (unit_set_el_t dest for (prev_el = (presence_p ? (final_p ? dst->unit_decl->final_presence_list - : dst->unit_decl->final_presence_list) + : dst->unit_decl->presence_list) : (final_p ? dst->unit_decl->final_absence_list : dst->unit_decl->absence_list));