This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: Thoughts about static linking and reducing size of binaries
- To: Bryce McKinlay <bryce at albatross dot co dot nz>
- Subject: Re: Thoughts about static linking and reducing size of binaries
- From: Andrew Haley <aph at cambridge dot redhat dot com>
- Date: Fri, 16 Mar 2001 10:10:22 +0000 (GMT)
- Cc: Jeff Sturm <jsturm at one-point dot com>, java at gcc dot gnu dot org
- References: <Pine.LNX.4.10.10103142351270.21008-100000@mars><3AB15DA0.F437616E@albatross.co.nz>
Bryce McKinlay writes:
> if (__builtin_expect(bClass == null, false))
This is identical to
if (bClass == null)
Andrew.