From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12562 invoked by alias); 28 Oct 2008 12:30:55 -0000 Received: (qmail 12541 invoked by uid 22791); 28 Oct 2008 12:30:53 -0000 X-Spam-Check-By: sourceware.org Received: from smtp-out.google.com (HELO smtp-out.google.com) (216.239.45.13) by sourceware.org (qpsmtpd/0.31) with ESMTP; Tue, 28 Oct 2008 12:30:18 +0000 Received: from spaceape10.eur.corp.google.com (spaceape10.eur.corp.google.com [172.28.16.144]) by smtp-out.google.com with ESMTP id m9SCUG4b012624 for ; Tue, 28 Oct 2008 05:30:16 -0700 Received: from qw-out-1920.google.com (qwj9.prod.google.com [10.241.195.73]) by spaceape10.eur.corp.google.com with ESMTP id m9SCUDMU021803 for ; Tue, 28 Oct 2008 05:30:14 -0700 Received: by qw-out-1920.google.com with SMTP id 9so1071331qwj.40 for ; Tue, 28 Oct 2008 05:30:13 -0700 (PDT) Received: by 10.214.60.3 with SMTP id i3mr706768qaa.121.1225197013385; Tue, 28 Oct 2008 05:30:13 -0700 (PDT) Received: by 10.214.9.15 with HTTP; Tue, 28 Oct 2008 05:30:13 -0700 (PDT) Message-ID: Date: Tue, 28 Oct 2008 13:34:00 -0000 From: "Diego Novillo" To: "=?UTF-8?Q?Doug_Kwan_(=E9=97=9C=E6=8C=AF=E5=BE=B7)?=" Subject: Re: [LTO][PATCH] Move lto-symtab.c out of lto and remove input_cgraph lang-hook. Cc: gcc-patches , "Rafael Espindola" In-Reply-To: <498552560810271654u2c44b7bfqa8f88026a830d52e@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <498552560810271654u2c44b7bfqa8f88026a830d52e@mail.gmail.com> X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2008-10/txt/msg01197.txt.bz2 2008/10/27 Doug Kwan (???) : > +/* A poor man's symbol table. This hashes identifier to prevailing DECL > + if there is one. */ This comment is stale now. Not needed anymore. > +/* Compute the least common multiple of A and B. */ > + > +static inline unsigned > +lto_least_common_multiple (unsigned a, unsigned b) > +{ > + return (a * b) / gcd (a, b); > +} This appears to be unused now. OK if testing succeeds. Diego.