Author: infinoid
Date: Wed Dec 31 17:04:51 2008
New Revision: 34728

Modified:
   trunk/src/interpreter.c

Log:
[jit] A couple of non-headerized functions snuck through.  (x86-64
apparently doesn't have JIT enabled by default).  This will hopefully
fix builds for JIT-enabled platforms.
jimmy++ and GeJ++ for reporting.

Modified: trunk/src/interpreter.c
==============================================================================
--- trunk/src/interpreter.c     (original)
+++ trunk/src/interpreter.c     Wed Dec 31 17:04:51 2008
@@ -604,7 +604,6 @@
 void
 exec_init_prederef(PARROT_INTERP, void *prederef_arena)
 {
-    ASSERT_ARGS(exec_init_prederef);
     load_prederef(interp, PARROT_CGP_CORE);
 
     if (!interp->code->prederef.code) {
@@ -638,7 +637,6 @@
     UINTVAL            code_size;          /* in opcodes */
     opcode_t          *code_end;
     Parrot_jit_info_t *jit_info;
-    ASSERT_ARGS(init_jit);
 
     if (interp->code->jit_info)
         return ((Parrot_jit_info_t *)interp->code->jit_info)->arena.start;

Reply via email to