Removed old alpha compiler stuff.
[cacao.git] / jit.c
diff --git a/jit.c b/jit.c
index f204dc7e5c48b2c175b5f0a66cd147a5c1746a22..f4ed09deb0f4fc39df3b7df2da6199d4f854afd3 100644 (file)
--- a/jit.c
+++ b/jit.c
@@ -11,7 +11,7 @@
        Authors: Andreas  Krall      EMAIL: cacao@complang.tuwien.ac.at
                 Reinhard Grafl      EMAIL: cacao@complang.tuwien.ac.at
 
-       Last Change: 1997/11/05
+       Last Change: $Id: jit.c 483 2003-10-14 17:08:38Z twisti $
 
 *******************************************************************************/
 
@@ -182,12 +182,6 @@ static void* do_nothing_function()
 }
 
 
-#ifdef OLD_COMPILER
-extern bool newcompiler;
-methodptr compiler_compile (methodinfo *m); /* compile method with old compiler*/
-#endif
-
-
 /* jit_compile *****************************************************************
 
        jit_compile, new version of compiler, translates one method to machine code
@@ -208,13 +202,6 @@ methodptr jit_compile(methodinfo *m)
        int cnt;
 
 
-
-#ifdef OLD_COMPILER
-       if (!newcompiler) {
-               return compiler_compile(m);
-               }
-#endif
-
        /* if method has been already compiled return immediately */
 
        count_jit_calls++;