From patchwork Tue Aug 21 15:09:04 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marek Polacek X-Patchwork-Id: 960512 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-484111-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="izVUb9jW"; dkim-atps=neutral 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 41vvGP2pWqz9s4V for ; Wed, 22 Aug 2018 01:09:16 +1000 (AEST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; q=dns; s= default; b=nHfqZLFvwVAYTV0HHFrxypkUkahAvCuITva9NPIlGbs99y2cUj2B8 KHcUxqU1phoH7IEAWXEWy7s/J4NpgbDxbtP1+m45Tw4g2TbCik0oAadDQqzFkfDZ +1yyRS4vPx8t8dNMSzQ2UuC3IUgROGQVQ9mehN+FPoS5YVu+WpaBKk= 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:date :from:to:subject:message-id:mime-version:content-type; s= default; bh=BG+5XIiF5o7mlaBWuDKOazI48VE=; b=izVUb9jWnD3EsUNKtK9U SbOufKxzn21BK9nXOXqTpCIYi+9ADSPC1YYtDZpJxXZUOgBuKXd5G4hSlDiUdidr ApEGZnMbF4Rr4gMDp9BicuMu6sxy832Y1BfC1X+d7K2D31rOwjCGNTaI2wQDxyY1 jk3Py1M6yGrxb1ZAlVM19mM= Received: (qmail 91134 invoked by alias); 21 Aug 2018 15:09:09 -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 90120 invoked by uid 89); 21 Aug 2018 15:09:08 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-12.6 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_2, GIT_PATCH_3, SPF_HELO_PASS autolearn=ham version=3.3.2 spammy= X-HELO: mx1.redhat.com Received: from mx3-rdu2.redhat.com (HELO mx1.redhat.com) (66.187.233.73) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 21 Aug 2018 15:09:07 +0000 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.rdu2.redhat.com [10.11.54.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 0A4D24B759 for ; Tue, 21 Aug 2018 15:09:06 +0000 (UTC) Received: from redhat.com (dhcp-17-231.bos.redhat.com [10.18.17.231]) by smtp.corp.redhat.com (Postfix) with ESMTPS id E20479465A; Tue, 21 Aug 2018 15:09:05 +0000 (UTC) Date: Tue, 21 Aug 2018 11:09:04 -0400 From: Marek Polacek To: GCC Patches , Jason Merrill Subject: C++ PATCH to fix typo in cp-tree.h Message-ID: <20180821150904.GC16755@redhat.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.10.1 (2018-07-13) We don't have INDIRECT_EXPR. Applying as obvious. 2018-08-21 Marek Polacek * cp-tree.h: Fix typo. --- gcc/cp/cp-tree.h +++ gcc/cp/cp-tree.h @@ -3656,7 +3656,7 @@ struct GTY(()) lang_decl { (LANG_DECL_FN_CHECK (FUNCTION_DECL_CHECK (NODE)) \ ->u.saved_language_function) -/* True if NODE is an implicit INDIRECT_EXPR from convert_from_reference. */ +/* True if NODE is an implicit INDIRECT_REF from convert_from_reference. */ #define REFERENCE_REF_P(NODE) \ (INDIRECT_REF_P (NODE) \ && TREE_TYPE (TREE_OPERAND (NODE, 0)) \