From patchwork Mon Oct 1 22:09:51 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Steven Bosscher X-Patchwork-Id: 188352 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 B9D7A2C00D0 for ; Tue, 2 Oct 2012 08:10:28 +1000 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1349734230; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: MIME-Version:Received:From:Date:Message-ID:Subject:To: Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:Sender:Delivered-To; bh=rll+ZMl GlB7+kUz41WcK3tShteM=; b=JMLU8Ettj8Fcw5DCNe23PkCcEFYPlhOp47X2Lcw N2GCfgoF2+aXGUBno+7wToYCHIglxaZtdawsIxt5KUDvyC1u6nZhJ0Qs9FCS/ie2 Usa6VPoB88M1CGp9OKjjHza1LHY6wyZCGERK9DMu4sPPgMfI76u4VJvntHFEsYS9 1Fsw= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:Received:MIME-Version:Received:From:Date:Message-ID:Subject:To:Content-Type:X-IsSubscribed:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=vxGVbYqOZWIMdK2P/Vlq2mciX9LS1ndDS4PUIfiuxlcTThHCVRHLNv1hA8/hhJ zRu1dl/C8K2pZi8MHGK/0eoLHxLsmWjynnC0ClW1c6L73ePmF7aBtz2QPuKmgpuY njm8rV1Mb1FHfm6Q43uT1M2/9ertQsCf6EYKVWlMSAcFQ=; Received: (qmail 3216 invoked by alias); 1 Oct 2012 22:10:20 -0000 Received: (qmail 3201 invoked by uid 22791); 1 Oct 2012 22:10:19 -0000 X-SWARE-Spam-Status: No, hits=-4.3 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, FREEMAIL_FROM, KHOP_RCVD_TRUST, RCVD_IN_DNSWL_LOW, RCVD_IN_HOSTKARMA_YE X-Spam-Check-By: sourceware.org Received: from mail-lb0-f175.google.com (HELO mail-lb0-f175.google.com) (209.85.217.175) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 01 Oct 2012 22:10:12 +0000 Received: by lbky2 with SMTP id y2so4757848lbk.20 for ; Mon, 01 Oct 2012 15:10:11 -0700 (PDT) Received: by 10.152.132.133 with SMTP id ou5mr12936361lab.45.1349129411300; Mon, 01 Oct 2012 15:10:11 -0700 (PDT) MIME-Version: 1.0 Received: by 10.112.39.229 with HTTP; Mon, 1 Oct 2012 15:09:51 -0700 (PDT) From: Steven Bosscher Date: Tue, 2 Oct 2012 00:09:51 +0200 Message-ID: Subject: [patch][lra] Comment typo fix To: Vladimir Makarov , GCC Patches 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 I suppose no-one would object if I commit this as obvious at some point? Index: lra-constraints.c =================================================================== --- lra-constraints.c (revision 191858) +++ lra-constraints.c (working copy) @@ -4293,7 +4293,7 @@ update_ebb_live_info (rtx head, rtx tail { if (prev_bb != NULL) { - /* Udpate DF_LR_IN (prev_bb): */ + /* Update DF_LR_IN (prev_bb): */ EXECUTE_IF_SET_IN_BITMAP (&check_only_regs, 0, j, bi) if (bitmap_bit_p (&live_regs, j)) bitmap_set_bit (DF_LR_IN (prev_bb), j);