This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: Fix powerpc64 g77
- From: Gabriel Dos Reis <gdr at integrable-solutions dot net>
- To: Alan Modra <amodra at bigpond dot net dot au>
- Cc: gcc-patches at gcc dot gnu dot org, David Edelsohn <dje at watson dot ibm dot com>, Peter Bergner <bergner at vnet dot ibm dot com>, Janis Johnson <janis187 at us dot ibm dot com>
- Date: 01 Aug 2002 13:05:40 +0200
- Subject: Re: Fix powerpc64 g77
- Organization: CodeSourcery, LLC
- References: <20020801202214.A2148@bubble.sa.bigpond.net.au>
Alan Modra <amodra@bigpond.net.au> writes:
[...]
| +#if HOST_BITS_PER_WIDE_INT == 32
I think the preferred construct in such case is
if (HOST_BITS_PER_WIDE_INT == 32)
{
}
-- Gaby