[Bug other/15194] [fastjar] Check for "long long" before using it
Alexandre Oliva
aoliva@redhat.com
Fri Jun 25 20:31:00 GMT 2004
On Jun 25, 2004, Kelley Cook <kcook@gcc.gnu.org> wrote:
> 2004-06-25 Kelley Cook <kcook@gcc.gnu.org>
> * configure.ac: Add check for long long.
> * jartool.h: Check for long long before using it.
> * configure: Regenerate
> * config.h.in: Regenerate.
Ok, thanks.
> -#elif SIZEOF_LONG_LONG == 4
> +#elif defined(HAVE_LONG_LONG) && SIZEOF_LONG_LONG == 4
You don't really need this, BTW. If an identifier referenced in a
preprocessor clause is undefined, it evaluates to 0. I'm told some
compilers issue gratuitous warnings for such cases, though, so the
change is good. Please check it in.
--
Alexandre Oliva http://www.ic.unicamp.br/~oliva/
Red Hat Compiler Engineer aoliva@{redhat.com, gcc.gnu.org}
Free Software Evangelist oliva@{lsd.ic.unicamp.br, gnu.org}
More information about the Java-patches
mailing list