From patchwork Tue Feb 25 11:59:59 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alangi Derick X-Patchwork-Id: 323940 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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id BCB802C023F for ; Tue, 25 Feb 2014 23:00:10 +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 :mime-version:date:message-id:subject:from:to:content-type; q= dns; s=default; b=nrzpwfXezSPCzL/v3cybdSjS2d699NCY2tRyxd9XTbeRc3 We1Z5sGO9AovoSd90cNvUSM3Rtw5lYoBHxfKvTKMpAQwE5fcF6GqyO3xjSHx3TbW 6GI+xcPYy4talpMMVA2q4xfwEfqlxlUJbKvGcdxVaJK/i3w7nf3PSIx+0uiBE= 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 :mime-version:date:message-id:subject:from:to:content-type; s= default; bh=0J2ql1iL9VmUTN+LYr4wnoouOiY=; b=HdYAaPjRLanjGEz1Rw2z Ay/4MDVVPkvDe378YeuuA8L25pCDKCMJHrZgcy1Y6QlM9kGwhSsBr+X33WxhD9CI et43YbxIpw2EuDS/7vyDWNqWX4qjRvl0EBSRt1I3VdTqgJNH8cCBH5kgJqmKbh/w zPwwXX3pBrkc4oe1+74I384= Received: (qmail 11649 invoked by alias); 25 Feb 2014 12:00:03 -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 11611 invoked by uid 89); 25 Feb 2014 12:00:02 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.5 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-qa0-f42.google.com Received: from mail-qa0-f42.google.com (HELO mail-qa0-f42.google.com) (209.85.216.42) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Tue, 25 Feb 2014 12:00:01 +0000 Received: by mail-qa0-f42.google.com with SMTP id k4so247302qaq.29 for ; Tue, 25 Feb 2014 03:59:59 -0800 (PST) MIME-Version: 1.0 X-Received: by 10.224.22.199 with SMTP id o7mr37437386qab.51.1393329599253; Tue, 25 Feb 2014 03:59:59 -0800 (PST) Received: by 10.229.82.68 with HTTP; Tue, 25 Feb 2014 03:59:59 -0800 (PST) Date: Tue, 25 Feb 2014 12:59:59 +0100 Message-ID: Subject: [Patch] Added Comment From: Alangi Derick To: gcc-patches X-IsSubscribed: yes Added a comment to cpplib.h file. Index: cpplib.h =================================================================== --- cpplib.h (revision 208118) +++ cpplib.h (working copy) @@ -103,7 +103,7 @@ OP(SEMICOLON, ";") /* structure */ \ OP(ELLIPSIS, "...") \ OP(PLUS_PLUS, "++") /* increment */ \ - OP(MINUS_MINUS, "--") \ + OP(MINUS_MINUS, "--") /* decrement */ \ OP(DEREF, "->") /* accessors */ \ OP(DOT, ".") \ OP(SCOPE, "::") \