This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [LTO][PATCH] Move lto-symtab.c out of lto and remove input_cgraph lang-hook.


2008/10/27 Doug Kwan (???) <dougkwan@google.com>:

> +/* 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.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]