Re: [kaffe] [Bug in CVS version] (-1)/2 == -1 sometimes

2003-03-21 Thread Benja Fallenstein
Hi Tim, Timothy Stack wrote: With a current CVS version of Kaffe (compiled yesterday), the following program, compiled with Sun javac or kjc-- ... gives me this output: [EMAIL PROTECTED]:/tmp$ /usr/local/kaffe/bin/java -cp . Foo 0 -1 CVS update and give it a try. The problem was that the jitter

Re: [kaffe] [Bug in CVS version] (-1)/2 == -1 sometimes

2003-03-13 Thread Timothy Stack
> Hi all, hi, > With a current CVS version of Kaffe (compiled yesterday), the following > program, compiled with Sun javac or kjc-- ... > gives me this output: > > > [EMAIL PROTECTED]:/tmp$ /usr/local/kaffe/bin/java -cp . Foo > > 0 > > -1 CVS update and give it a try. The problem was that the

Re: [kaffe] [Bug in CVS version] (-1)/2 == -1 sometimes

2003-03-13 Thread Timothy Stack
> > > Hi all, hi > With a current CVS version of Kaffe (compiled yesterday), the following > program, compiled with Sun javac or kjc-- Thanks for the bug report, I've replicated it and am trying to fix it... > Thanks, > - Benja tim ___ kaffe mail

[kaffe] [Bug in CVS version] (-1)/2 == -1 sometimes

2003-03-13 Thread Benja Fallenstein
Hi all, With a current CVS version of Kaffe (compiled yesterday), the following program, compiled with Sun javac or kjc-- - public class Foo { static int fn(int n) { return (n-1)/2; } public static void main(String[] s) { Sy