* src/vm/jit/mips/md-abi.c (md_param_alloc_native)
authortwisti <none@none>
Tue, 5 Jun 2007 10:14:29 +0000 (10:14 +0000)
committertwisti <none@none>
Tue, 5 Jun 2007 10:14:29 +0000 (10:14 +0000)
[SIZEOF_VOID_P == 8]: Fixed compilation.

src/vm/jit/mips/md-abi.c

index 6285a099ea13dabb2b15dfa52a29874d921dd64d..c11bdb6de2ef9c6436dc53cb79b2043a4bd5eb54 100644 (file)
@@ -22,7 +22,7 @@
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02110-1301, USA.
 
-   $Id: md-abi.c 8011 2007-06-05 10:06:18Z twisti $
+   $Id: md-abi.c 8012 2007-06-05 10:14:29Z twisti $
 
 */
 
@@ -601,11 +601,12 @@ void md_param_alloc_native(methoddesc *md)
        }
 
 # endif /* !defined(ENABLE_SOFT_FLOAT) */
-#endif /* SIZEOF_VOID_P == 8 */
 
        /* fill register and stack usage */
 
        md->memuse = stacksize;
+
+#endif /* SIZEOF_VOID_P == 8 */
 }