[Bug java/18550] Remainder on floating point doesn't return the expected result

2004-11-21 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-11-22 02:27 --- http://www.mingw.org/bugs.shtml -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18550

[Bug java/18550] Remainder on floating point doesn't return the expected result

2004-11-21 Thread olivier_thomann at ca dot ibm dot com
--- Additional Comments From olivier_thomann at ca dot ibm dot com 2004-11-22 02:20 --- So where should I report this bug? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18550

[Bug java/18550] Remainder on floating point doesn't return the expected result

2004-11-20 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-11-20 18:40 --- This is a mygwin bug as I only just get a call to fmod: callfmod -- What|Removed |Added -

[Bug java/18550] Remainder on floating point doesn't return the expected result

2004-11-18 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-11-18 20:36 --- It works on the mainline on powerpc-darwin. This might be a mygwin bug as the front-end just makes the call to fmod. -- What|Removed |Added ---

[Bug java/18550] Remainder on floating point doesn't return the expected result

2004-11-18 Thread olivier_thomann at ca dot ibm dot com
--- Additional Comments From olivier_thomann at ca dot ibm dot com 2004-11-18 19:26 --- Sorry, my test case was wrong. Here is the right one: public class X { public static void main(String args[]) { System.out.println(3.14f % Float.POSITIVE_INFINITY); }