]> git.sur5r.net Git - cc65/blobdiff - src/common/fp.c
Only for jumps, the lib uses named asm labels in branches
[cc65] / src / common / fp.c
index d2c5f5218ba08d30169dd658be7055ac313421e9..0c4d2790c3ac336221a8d55517e1bb030bbb0186 100644 (file)
 
 
 /* The compiler must use the same floating point arithmetic as the target
- * platform, otherwise expressions will yield a different result when
- * evaluated in the compiler or on the target platform. Since writing a target
- * and source library is almost double the work, we will at least add the
- * hooks here, and define functions for a plug in library that may be added
- * at a later time. Currently we use the builtin data types of the compiler
- * that translates cc65.
- */
+** platform, otherwise expressions will yield a different result when
+** evaluated in the compiler or on the target platform. Since writing a target
+** and source library is almost double the work, we will at least add the
+** hooks here, and define functions for a plug in library that may be added
+** at a later time. Currently we use the builtin data types of the compiler
+** that translates cc65.
+*/
 
 
 
@@ -64,7 +64,7 @@
 
 
 /*****************************************************************************/
-/*                                  Code                                    */
+/*                                   Code                                    */
 /*****************************************************************************/
 
 
@@ -236,6 +236,3 @@ Double FP_D_Div (Double Left, Double Right)
     D.V = Left.V / Right.V;
     return D;
 }
-
-
-