* compile_all_class_methods: Removed.
authortwisti <none@none>
Tue, 22 Nov 2005 22:32:30 +0000 (22:32 +0000)
committertwisti <none@none>
Tue, 22 Nov 2005 22:32:30 +0000 (22:32 +0000)
src/vm/jit/jit.c
src/vm/jit/jit.h

index d597d206c885b6cf85d052f12c03afb8997c696c..17af27397f26d91cfc43f0ebfdd4dbd8d40e5fbf 100644 (file)
@@ -30,7 +30,7 @@
    Changes: Edwin Steiner
             Christian Thalinger
 
-   $Id: jit.c 3724 2005-11-21 19:59:12Z edwin $
+   $Id: jit.c 3735 2005-11-22 22:32:30Z twisti $
 
 */
 
@@ -1651,16 +1651,6 @@ static functionptr jit_compile_intern(methodinfo *m, codegendata *cd,
 } 
 
 
-void compile_all_class_methods(classinfo *c)
-{
-       s4 i;
-
-       for (i = 0; i < c->methodscount; i++) {
-               (void) jit_compile(&(c->methods[i]));
-       }
-}
-
-
 /*
  * These are local overrides for various environment variables in Emacs.
  * Please do not remove this and leave it at the end of the file, where
index c447ba7059c62eb1d77b6c00925d180b298a5269..f8fa72cc5fbf93a731509036e9aabbbf499fdc0f 100644 (file)
@@ -29,7 +29,7 @@
 
    Changes: Christian Thalinger
 
-   $Id: jit.h 3617 2005-11-07 18:39:10Z twisti $
+   $Id: jit.h 3735 2005-11-22 22:32:30Z twisti $
 
 */
 
@@ -846,9 +846,8 @@ functionptr jit_compile(methodinfo *m); /* compile a method with jit compiler */
 void jit_init(void);                    /* compiler initialisation            */
 void jit_close(void);                   /* compiler finalisation              */
 
-void compile_all_class_methods(classinfo *c);
-
-void md_init(void);                     /* machine dependent initialization   */
+/* machine dependent initialization */
+void md_init(void);
 
 #endif /* _JIT_H */