* src/vm/jit/reg.c (reg_setup): Removed arg{int,flt}regs stuff.
[cacao.git] / src / vm / jit / i386 / md-abi.c
index d478d9655fb3387bc9ef835beec38360b50d2579..3ce42ba32cf7bb613a609519c76235631e426cc0 100644 (file)
@@ -22,7 +22,7 @@
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02110-1301, USA.
 
-   $Id: md-abi.c 7706 2007-04-15 12:17:02Z michi $
+   $Id: md-abi.c 7713 2007-04-15 21:49:48Z twisti $
 
 */
 
@@ -51,17 +51,17 @@ const char *abi_registers_integer_name[] = {
 };
 
 const s4 abi_registers_integer_argument[] = {
-       -1,  /* empty */
+       -1,
 };
 
 const s4 abi_registers_integer_saved[] = {
-       5,  /* s0 */
-       6,  /* s1 */
-       7,  /* s2 */
+       5, /* s0 */
+       6, /* s1 */
+       7, /* s2 */
 };
 
 const s4 abi_registers_integer_temporary[] = {
-       3,  /* t0 */
+       3, /* t0 */
 };
 
 
@@ -73,6 +73,18 @@ s4 nregdescfloat[] = {
     REG_END
 };
 
+const s4 abi_registers_float_argument[] = {
+       -1,
+};
+
+const s4 abi_registers_float_saved[] = {
+       -1,
+};
+
+const s4 abi_registers_float_temporary[] = {
+       -1,
+};
+
 
 /* md_param_alloc **************************************************************