From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19246 invoked by alias); 10 Apr 2012 21:13:29 -0000 Received: (qmail 19177 invoked by uid 22791); 10 Apr 2012 21:13:28 -0000 X-SWARE-Spam-Status: No, hits=-2.7 required=5.0 tests=AWL,BAYES_00,KHOP_THREADED X-Spam-Check-By: sourceware.org Received: from mel.act-europe.fr (HELO mel.act-europe.fr) (194.98.77.210) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 10 Apr 2012 21:13:14 +0000 Received: from localhost (localhost [127.0.0.1]) by filtered-smtp.eu.adacore.com (Postfix) with ESMTP id 8D1DD290013; Tue, 10 Apr 2012 23:13:18 +0200 (CEST) Received: from mel.act-europe.fr ([127.0.0.1]) by localhost (smtp.eu.adacore.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id JVjLGfmc19vD; Tue, 10 Apr 2012 23:13:18 +0200 (CEST) Received: from [192.168.1.2] (bon31-6-88-161-99-133.fbx.proxad.net [88.161.99.133]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mel.act-europe.fr (Postfix) with ESMTP id 1570F290009; Tue, 10 Apr 2012 23:13:17 +0200 (CEST) From: Eric Botcazou To: Torvald Riegel Subject: Re: Switching to C++ by default in 4.8 Date: Tue, 10 Apr 2012 21:13:00 -0000 User-Agent: KMail/1.9.9 Cc: gcc@gcc.gnu.org, Michael Matz , Xinliang David Li , Jakub Jelinek , Richard Guenther , Bernd Schmidt , Gabriel Dos Reis , David Edelsohn , Diego Novillo References: <4F7B356E.9080003@google.com> <201204101959.33888.ebotcazou@adacore.com> <1334087757.11195.75.camel@triegel.csb> In-Reply-To: <1334087757.11195.75.camel@triegel.csb> MIME-Version: 1.0 Content-Disposition: inline Message-Id: <201204102312.37159.ebotcazou@adacore.com> Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org X-SW-Source: 2012-04/txt/msg00369.txt.bz2 > Or are you really saying that the number of characters determines how > quickly/easily a brain can remember/find something like an API > item/keyword/...? If so, and if we assume that GET, FIELD, and DECL are > the most likely (sub-)parts of function names shouldn't it be G_F_D > (exp) then? ;) The number of tokens. GET_FIELD_DECL has 2 tokens (GET and FIELD_DECL) while exp->as_component_ref().get_field() has 3x more. -- Eric Botcazou