* SUPPORT_FMOD: Removed.
authortwisti <none@none>
Tue, 10 Jan 2006 22:44:01 +0000 (22:44 +0000)
committertwisti <none@none>
Tue, 10 Jan 2006 22:44:01 +0000 (22:44 +0000)
* SUPPORT_IFCVT: Replaced with SUPPORT_I2F, SUPPORT_I2D or SUPPORT_L2F,
  SUPPORT_L2D.
* SUPPORT_LONG_ICVT: Replaced with SUPPORT_F2L or SUPPORT_D2L.
* SUPPORT_LONG_FCVT: Replaced with SUPPORT_L2F or SUPPORT_L2D.

src/vm/jit/powerpc/arch.h

index b1b0ec81d118bc37cf68c92187b44b884e1aa7b9..c5dbb52ea734bf2e523f5185d9e3d963f9aca520 100644 (file)
@@ -28,7 +28,7 @@
 
    Changes:
 
-   $Id: arch.h 3700 2005-11-17 18:53:38Z twisti $
+   $Id: arch.h 4136 2006-01-10 22:44:01Z twisti $
 
 */
 
 #define SUPPORT_FLOAT                    1
 #define SUPPORT_DOUBLE                   1
 
-#define SUPPORT_FMOD                     0
-#define SUPPORT_FICVT                    1
-#define SUPPORT_IFCVT                    0
+#define SUPPORT_I2F                      0
+#define SUPPORT_I2D                      0
+#define SUPPORT_L2F                      0
+#define SUPPORT_L2D                      0
+
+#define SUPPORT_F2I                      1
+#define SUPPORT_F2L                      0
+#define SUPPORT_D2I                      1
+#define SUPPORT_D2L                      0
 
 #define SUPPORT_LONG_ADD                 1
 #define SUPPORT_LONG_CMP                 1
@@ -58,8 +64,6 @@
 #define SUPPORT_LONG_SHIFT               0
 #define SUPPORT_LONG_MUL                 0
 #define SUPPORT_LONG_DIV                 0
-#define SUPPORT_LONG_ICVT                0
-#define SUPPORT_LONG_FCVT                0
 
 #define SUPPORT_CONST_LOGICAL            1  /* AND, OR, XOR with immediates   */
 #define SUPPORT_CONST_MUL                1  /* mutiply with immediate         */