From patchwork Mon Oct 28 21:45:40 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jeff Law X-Patchwork-Id: 286643 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 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 38FFF2C00DE for ; Tue, 29 Oct 2013 08:45:57 +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=G4+8Nat7cSUIvCts+D/fRaF9yBTAc0kwFxFBmQa57bZqBU HLhXw4C3Kbz0tPS2fwH/8qgJpwlQmU8GgSe4kmOpwYocswRcxZlFju4J3Ja6ZeIv hnDoduSPyPIv9xDYH0IE3CFg3SCCO+gWlBlDCYYg1bB6zB0RIlclw70LlIegE= 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=VXElmXb6DR7XmS60P6sKRTWSIsg=; b=x4TH9QYXOBzntH1ryt33 0SHm05oT/tXg+3YJ/WiTFwhGMTtMGuyJ57T8H3o2iSC5B+gCYX2ej2prIB3c60D6 r9bkLij6MVzCCn74rV13sOoYXzL1d/SBGUv9JqLWHVjhi93R8agHtygmxEPXhJcD 01KIKO+KDdxFo8dnJH/5SZ4= Received: (qmail 24106 invoked by alias); 28 Oct 2013 21:45:43 -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 24039 invoked by uid 89); 28 Oct 2013 21:45:43 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.0 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; Mon, 28 Oct 2013 21:45:42 +0000 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r9SLjfVC016369 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 28 Oct 2013 17:45:41 -0400 Received: from stumpy.slc.redhat.com (ovpn-113-93.phx2.redhat.com [10.3.113.93]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id r9SLjejt016347 for ; Mon, 28 Oct 2013 17:45:40 -0400 Message-ID: <526EDB04.8090203@redhat.com> Date: Mon, 28 Oct 2013 15:45:40 -0600 From: Jeff Law User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.0 MIME-Version: 1.0 To: gcc-patches Subject: [PATCH] Fix comment typo X-IsSubscribed: yes Just something I noticed while reviewing a patch. Committed. diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e525748..013fe73 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2013-10-28 Jeff Law + + * lower-subreg.c (resolve_simple_move): Fix comment typo. + 2013-10-28 Trevor Saunders * df-scan.c (df_collection_rec): Adjust. diff --git a/gcc/lower-subreg.c b/gcc/lower-subreg.c index 8ff5fc3..ebf364f 100644 --- a/gcc/lower-subreg.c +++ b/gcc/lower-subreg.c @@ -1070,7 +1070,7 @@ resolve_simple_move (rtx set, rtx insn) emit_insn_before (insns, insn); - /* If we get here via self-recutsion, then INSN is not yet in the insns + /* If we get here via self-recursion, then INSN is not yet in the insns chain and delete_insn will fail. We only want to remove INSN from the current sequence. See PR56738. */ if (in_sequence_p ())