Update of /cvsroot/nice/Nice/regtest/coreJava
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30462/regtest/coreJava
Modified Files:
coreJava.code
Log Message:
Reenable '0f' syntax for single precision zero floating point number.
Index: coreJava.code
===================================================================
RCS file: /cvsroot/nice/Nice/regtest/coreJava/coreJava.code,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -d -r1.29 -r1.30
*** coreJava.code 24 Nov 2003 13:20:44 -0000 1.29
--- coreJava.code 6 Oct 2004 16:14:02 -0000 1.30
***************
*** 89,95 ****
// floats
float x = 0.1f;
double y = 3.4;
p("0.1 - 3.4 = " + (x-y));
!
p("" + (i+(j-y)*x));
--- 89,96 ----
// floats
float x = 0.1f;
+ x += 0f;
double y = 3.4;
p("0.1 - 3.4 = " + (x-y));
!
p("" + (i+(j-y)*x));
|