* src/vm/jit/code.c (code_get_stack_frame_size): Commented code, we
authortwisti <none@none>
Wed, 12 Jul 2006 13:47:51 +0000 (13:47 +0000)
committertwisti <none@none>
Wed, 12 Jul 2006 13:47:51 +0000 (13:47 +0000)
need another implementation.

src/vm/jit/code.c

index f5b296a40163b8520b69bb634e576f6c139d313b..87eb8da8bb4ef4d7fe1ccbfa368ce453b0652ae2 100644 (file)
@@ -152,6 +152,7 @@ int code_get_sync_slot_count(codeinfo *code)
 
 int code_get_stack_frame_size(codeinfo *code)
 {
+#if 0
        int count;
        
        assert(code);
@@ -190,6 +191,9 @@ int code_get_stack_frame_size(codeinfo *code)
 #endif
 
        return count;
+#endif
+
+       return 0;
 }