[svn:parrot] r38131 - in trunk: config/gen/makefiles tools/build

coke at svn.parrot.org coke at svn.parrot.org
Wed Apr 15 18:41:36 UTC 2009


Author: coke
Date: Wed Apr 15 18:41:36 2009
New Revision: 38131
URL: https://trac.parrot.org/parrot/changeset/38131

Log:
[cage] fix unused parameter warning and build dependencies for src/nci.c

Modified:
   trunk/config/gen/makefiles/root.in
   trunk/tools/build/nativecall.pl

Modified: trunk/config/gen/makefiles/root.in
==============================================================================
--- trunk/config/gen/makefiles/root.in	Wed Apr 15 18:27:43 2009	(r38130)
+++ trunk/config/gen/makefiles/root.in	Wed Apr 15 18:41:36 2009	(r38131)
@@ -1188,7 +1188,10 @@
 
 $(SRC_DIR)/exit$(O) : $(GENERAL_H_FILES) $(SRC_DIR)/exit.c
 
-$(SRC_DIR)/nci$(O) : $(GENERAL_H_FILES) $(SRC_DIR)/nci.c $(SRC_DIR)/nci.str $(SRC_DIR)/pmc/pmc_managedstruct.h
+$(SRC_DIR)/nci$(O) : $(GENERAL_H_FILES) $(SRC_DIR)/nci.c $(SRC_DIR)/nci.str \
+        $(SRC_DIR)/pmc/pmc_managedstruct.h \
+        $(SRC_DIR)/pmc/pmc_nci.h \
+        $(SRC_DIR)/pmc/pmc_pointer.h
 
 $(SRC_DIR)/vtables$(O) : $(GENERAL_H_FILES) $(SRC_DIR)/vtables.c
 

Modified: trunk/tools/build/nativecall.pl
==============================================================================
--- trunk/tools/build/nativecall.pl	Wed Apr 15 18:27:43 2009	(r38130)
+++ trunk/tools/build/nativecall.pl	Wed Apr 15 18:41:36 2009	(r38131)
@@ -504,11 +504,10 @@
 void *
 build_call_func(PARROT_INTERP,
 #if defined(CAN_BUILD_CALL_FRAMES)
-PMC *pmc_nci,
+PMC *pmc_nci, NOTNULL(STRING *signature), NOTNULL(int *jitted))
 #else
-SHIM(PMC *pmc_nci),
+SHIM(PMC *pmc_nci), NOTNULL(STRING *signature), SHIM(int *jitted))
 #endif
-NOTNULL(STRING *signature), NOTNULL(int *jitted))
 {
     char       *c;
     STRING     *ns, *message;


More information about the parrot-commits mailing list