From patchwork Mon Nov 15 05:11:26 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mingjie Xing X-Patchwork-Id: 71177 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 13A05B7110 for ; Mon, 15 Nov 2010 16:11:46 +1100 (EST) Received: (qmail 6926 invoked by alias); 15 Nov 2010 05:11:42 -0000 Received: (qmail 6916 invoked by uid 22791); 15 Nov 2010 05:11:40 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: sourceware.org Received: from mail-ww0-f51.google.com (HELO mail-ww0-f51.google.com) (74.125.82.51) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 15 Nov 2010 05:11:29 +0000 Received: by wwb17 with SMTP id 17so2359580wwb.8 for ; Sun, 14 Nov 2010 21:11:26 -0800 (PST) MIME-Version: 1.0 Received: by 10.227.143.77 with SMTP id t13mr5572460wbu.102.1289797886342; Sun, 14 Nov 2010 21:11:26 -0800 (PST) Received: by 10.227.166.3 with HTTP; Sun, 14 Nov 2010 21:11:26 -0800 (PST) Date: Mon, 15 Nov 2010 13:11:26 +0800 Message-ID: Subject: Fix typo of the comment in resource.h From: Mingjie Xing To: gcc-patches@gcc.gnu.org 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 Hi This small patch fix the typo of the comment in resource.h. Is it OK? Thanks, Mingjie 2010-11-15 Mingjie Xing * resource.h (struct resources): Fix typo in the comment. Index: resource.h =================================================================== --- resource.h (revision 163986) +++ resource.h (working copy) @@ -33,7 +33,7 @@ along with GCC; see the file COPYING3. struct resources { char memory; /* Insn sets or needs a memory location. */ - char unch_memory; /* Insn sets of needs a "unchanging" MEM. */ + char unch_memory; /* Insn sets or needs a "unchanging" MEM. */ char volatil; /* Insn sets or needs a volatile memory loc. */ char cc; /* Insn sets or needs the condition codes. */ HARD_REG_SET regs; /* Which registers are set or needed. */