This is the mail archive of the java@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: Language extensions ?


>>>>> "Robin" == Robin Garner <robin dot garner at iname dot com> writes:

Robin> boolean GT(int a, int b) {
Robin>   if( a > 0 && b > 0 ||  a < 0 && b < 0 )  

Also you can make this test cheaper:

    if (a ^ b > 0)

Tom


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