removed typing error (! missing in md_return_alloc)
authorchristian <none@none>
Thu, 7 Jul 2005 16:35:34 +0000 (16:35 +0000)
committerchristian <none@none>
Thu, 7 Jul 2005 16:35:34 +0000 (16:35 +0000)
src/vm/jit/powerpc/darwin/md-abi.c
src/vm/jit/powerpc/linux/md-abi.c

index f1014a833c2174f6935b6ee037eba5632c3b2552..3ae7bbc74e0323681bd8407afce8719d326c7d43 100644 (file)
@@ -28,7 +28,7 @@
 
    Changes: Christian Ullrich
 
-   $Id: md-abi.c 2872 2005-06-29 12:42:19Z christian $
+   $Id: md-abi.c 2928 2005-07-07 16:35:34Z christian $
 
 */
 
@@ -181,7 +181,7 @@ void md_return_alloc(methodinfo *m, registerdata *rd, s4 return_type,
                        stackslot->varnum = -1;
                        stackslot->flags = 0;
                        if ( IS_INT_LNG_TYPE(return_type) ) {
-                               if (IS_2_WORD_TYPE(return_type)) {
+                               if (!IS_2_WORD_TYPE(return_type)) {
                                        if (rd->argintreguse < 1) rd->argintreguse = 1;
                                        stackslot->regoff = REG_RESULT;
                                } else {
index 2d6cc75f6da50c2c8712019869d71159b3b6be45..7e203809262a69176872479ee63d1d0a13d14ba2 100644 (file)
@@ -28,7 +28,7 @@
 
    Changes: Christian Ullrich
 
-   $Id: md-abi.c 2884 2005-06-30 22:36:45Z twisti $
+   $Id: md-abi.c 2928 2005-07-07 16:35:34Z christian $
 
 */
 
@@ -185,7 +185,7 @@ void md_return_alloc(methodinfo *m, registerdata *rd, s4 return_type,
                        stackslot->varnum = -1;
                        stackslot->flags = 0;
                        if ( IS_INT_LNG_TYPE(return_type) ) {
-                               if (IS_2_WORD_TYPE(return_type)) {
+                               if (!IS_2_WORD_TYPE(return_type)) {
                                        if (rd->argintreguse < 1) rd->argintreguse = 1;
                                        stackslot->regoff = REG_RESULT;
                                } else {