From patchwork Wed Jul 27 16:12:06 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Paulo J. Matos" X-Patchwork-Id: 107113 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]) by ozlabs.org (Postfix) with SMTP id 553BAB6F62 for ; Thu, 28 Jul 2011 02:12:41 +1000 (EST) Received: (qmail 3368 invoked by alias); 27 Jul 2011 16:12:39 -0000 Received: (qmail 3307 invoked by uid 22791); 27 Jul 2011 16:12:38 -0000 X-SWARE-Spam-Status: No, hits=-1.0 required=5.0 tests=AWL, BAYES_00, RCVD_NUMERIC_HELO, RP_MATCHES_RCVD, SPF_HELO_PASS X-Spam-Check-By: sourceware.org Received: from lo.gmane.org (HELO lo.gmane.org) (80.91.229.12) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 27 Jul 2011 16:12:23 +0000 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1Qm6ia-0004nI-5X for gcc-patches@gcc.gnu.org; Wed, 27 Jul 2011 18:12:20 +0200 Received: from 193.128.72.68 ([193.128.72.68]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 27 Jul 2011 18:12:20 +0200 Received: from paulo by 193.128.72.68 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 27 Jul 2011 18:12:20 +0200 To: gcc-patches@gcc.gnu.org From: "Paulo J. Matos" Subject: Fix comment of get_last_value Date: Wed, 27 Jul 2011 17:12:06 +0100 Lines: 37 Message-ID: Mime-Version: 1.0 User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.18) Gecko/20110617 Thunderbird/3.1.11 X-IsSubscribed: yes 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 There is a mistake in the comment for get_last_value in combine.c. This patch fixes this. PMatos 2011-07-27 Paulo J. Matos * Fix comment if get_last_value in combine.c. diff --git a/gcc/combine.c b/gcc/combine.c index 4dbf022..affb509 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -12697,7 +12697,7 @@ get_last_value_validate (rtx *loc, rtx insn, int tick, int replace) /* Get the last value assigned to X, if known. Some registers in the value may be replaced with (clobber (const_int 0)) if their value - is known longer known reliably. */ + is no longer known reliably. */ static rtx get_last_value (const_rtx x)