Author: Whiteknight
Date: Fri Dec 26 05:35:52 2008
New Revision: 34378

Modified:
   branches/jit_h_files/config/gen/makefiles/root.in
   branches/jit_h_files/src/jit.h
   branches/jit_h_files/src/pic_jit.c

Log:
[jit_h_files] small fix to makefile to account for more dependencies

Modified: branches/jit_h_files/config/gen/makefiles/root.in
==============================================================================
--- branches/jit_h_files/config/gen/makefiles/root.in   (original)
+++ branches/jit_h_files/config/gen/makefiles/root.in   Fri Dec 26 05:35:52 2008
@@ -1255,7 +1255,8 @@
 $(SRC_DIR)/jit_cpu.c : lib/Parrot/OpLib/core.pm $(SRC_DIR)/jit_emit.h \
     $(SRC_DIR)/jit/@jitcpuarch@/core.jit $(JIT_BUILD_TOOL)
        $(PERL) $(JIT_BUILD_TOOL) @jitcpuarch@ $(SRC_DIR)/jit_cpu.c
-$(SRC_DIR)/jit_defs.c : $(SRC_DIR)/jit/@jitcpuarch@/jit_emit.h
+$(SRC_DIR)/jit_defs.c : $(SRC_DIR)/jit/@jitcpuarch@/jit_emit.h \
+       $(SRC_DIR)/jit/@jitcpuarch@/jit_defs.c
        $(CP) $(SRC_DIR)/jit/@jitcpuarch@/jit_defs.c $(SRC_DIR)/jit_defs.c
 $(SRC_DIR)/exec_cpu.c : lib/Parrot/OpLib/core.pm $(SRC_DIR)/jit_emit.h \
     $(SRC_DIR)/jit/@jitcpuarch@/core.jit @TEMP_exec_h@ $(SRC_DIR)/exec_dep.h 
$(JIT_BUILD_TOOL)

Modified: branches/jit_h_files/src/jit.h
==============================================================================
--- branches/jit_h_files/src/jit.h      (original)
+++ branches/jit_h_files/src/jit.h      Fri Dec 26 05:35:52 2008
@@ -312,11 +312,6 @@
 } jit_arch_info;
 
 /*
- * return the jit_arch_info for the given JIT_CODE type
- */
-const jit_arch_info * Parrot_jit_init(Interp *);
-
-/*
  * interface to create JIT code
  */
 Parrot_jit_info_t *

Modified: branches/jit_h_files/src/pic_jit.c
==============================================================================
--- branches/jit_h_files/src/pic_jit.c  (original)
+++ branches/jit_h_files/src/pic_jit.c  Fri Dec 26 05:35:52 2008
@@ -104,6 +104,10 @@
 #  include "parrot/exec.h"
 #  include "jit.h"
 
+extern const jit_arch_info *
+Parrot_jit_init(PARROT_INTERP);
+
+
 #  ifdef PIC_TEST
 /*
  * just for testing the whole scheme ...

Reply via email to