From patchwork Thu Jun 9 03:06:54 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mingjie Xing X-Patchwork-Id: 99609 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 1423BB6FD9 for ; Thu, 9 Jun 2011 13:07:15 +1000 (EST) Received: (qmail 23328 invoked by alias); 9 Jun 2011 03:07:13 -0000 Received: (qmail 23319 invoked by uid 22791); 9 Jun 2011 03:07:12 -0000 X-SWARE-Spam-Status: No, hits=-2.3 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, RFC_ABUSE_POST X-Spam-Check-By: sourceware.org Received: from mail-vx0-f175.google.com (HELO mail-vx0-f175.google.com) (209.85.220.175) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 09 Jun 2011 03:06:55 +0000 Received: by vxd7 with SMTP id 7so1016369vxd.20 for ; Wed, 08 Jun 2011 20:06:54 -0700 (PDT) MIME-Version: 1.0 Received: by 10.52.98.65 with SMTP id eg1mr290192vdb.142.1307588814035; Wed, 08 Jun 2011 20:06:54 -0700 (PDT) Received: by 10.52.184.37 with HTTP; Wed, 8 Jun 2011 20:06:54 -0700 (PDT) Date: Thu, 9 Jun 2011 11:06:54 +0800 Message-ID: Subject: [patch] Committed: Fix the printable name typo in treestruct.def From: Mingjie Xing To: gcc-patches Cc: iant@google.com 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 fixes the printable name typo in treestruct.def. I've committed as it is obvious. (http://gcc.gnu.org/ml/gcc/2011-06/msg00083.html) 2011-06-09 Mingjie Xing * treestruct.def (TS_TYPE_DECL): Fix the printable name typo. Thanks, Mingjie Index: treestruct.def =================================================================== --- treestruct.def (revision 174800) +++ treestruct.def (working copy) @@ -51,7 +51,7 @@ DEFTREESTRUCT(TS_PARM_DECL, "parm decl") DEFTREESTRUCT(TS_LABEL_DECL, "label decl") DEFTREESTRUCT(TS_RESULT_DECL, "result decl") DEFTREESTRUCT(TS_CONST_DECL, "const decl") -DEFTREESTRUCT(TS_TYPE_DECL, "label decl") +DEFTREESTRUCT(TS_TYPE_DECL, "type decl") DEFTREESTRUCT(TS_FUNCTION_DECL, "function decl") DEFTREESTRUCT(TS_TRANSLATION_UNIT_DECL, "translation-unit decl") DEFTREESTRUCT(TS_TYPE_COMMON, "type common")