* src/vm/jit/i386/codegen.c (codegen_emit_stub_native): Fixed
authormichi <none@none>
Sun, 15 Apr 2007 11:55:25 +0000 (11:55 +0000)
committermichi <none@none>
Sun, 15 Apr 2007 11:55:25 +0000 (11:55 +0000)
calculation of stackframesize.

src/vm/jit/i386/codegen.c

index d96e96b2f301ef707c4407dc453668c150b7f554..961408ece965ebcab9fe95b30e3e52633c73e2be 100644 (file)
@@ -22,7 +22,7 @@
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02110-1301, USA.
 
-   $Id: codegen.c 7692 2007-04-12 14:47:24Z twisti $
+   $Id: codegen.c 7704 2007-04-15 11:55:25Z michi $
 
 */
 
@@ -3752,7 +3752,7 @@ void codegen_emit_stub_native(jitdata *jd, methoddesc *nmd, functionptr f)
                sizeof(stackframeinfo) / SIZEOF_VOID_P +
                sizeof(localref_table) / SIZEOF_VOID_P +
                1 +                             /* function pointer                   */
-               4 * 4 +                         /* 4 arguments (start_native_call)    */
+               4 +                             /* 4 arguments (start_native_call)    */
                nmd->memuse;
 
     /* keep stack 16-byte aligned */