This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java 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: [Bug other/15194] [fastjar] Check for "long long" before using it


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}


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