[svn:parrot] r38491 - in trunk/src: . jit/i386
NotFound at svn.parrot.org
NotFound at svn.parrot.org
Tue May 5 16:42:43 UTC 2009
Author: NotFound
Date: Tue May 5 16:42:42 2009
New Revision: 38491
URL: https://trac.parrot.org/parrot/changeset/38491
Log:
[core] fix some external declarations of vtable functions, TT #640
Modified:
trunk/src/jit/i386/jit_emit.h
trunk/src/pmc_freeze.c
Modified: trunk/src/jit/i386/jit_emit.h
==============================================================================
--- trunk/src/jit/i386/jit_emit.h Tue May 5 15:52:27 2009 (r38490)
+++ trunk/src/jit/i386/jit_emit.h Tue May 5 16:42:42 2009 (r38491)
@@ -1584,8 +1584,8 @@
# include "parrot/oplib/ops.h"
-EXTERN INTVAL Parrot_FixedIntegerArray_get_integer_keyed_int(Interp*, PMC*, INTVAL);
-EXTERN void Parrot_FixedIntegerArray_set_integer_keyed_int(Interp*, PMC*, INTVAL, INTVAL);
+INTVAL Parrot_FixedIntegerArray_get_integer_keyed_int(Interp*, PMC*, INTVAL);
+void Parrot_FixedIntegerArray_set_integer_keyed_int(Interp*, PMC*, INTVAL, INTVAL);
char * jit_set_i_p_ki(Parrot_jit_info_t *jit_info, PARROT_INTERP,
size_t offset);
Modified: trunk/src/pmc_freeze.c
==============================================================================
--- trunk/src/pmc_freeze.c Tue May 5 15:52:27 2009 (r38490)
+++ trunk/src/pmc_freeze.c Tue May 5 16:42:42 2009 (r38491)
@@ -35,11 +35,11 @@
#include "pmc_freeze.str"
/* default.pmc thawing of properties */
-PARROT_EXPORT void
+void
Parrot_default_thaw(PARROT_INTERP, PMC *pmc, visit_info *info);
/* XXX This should be in a header file. */
-PARROT_EXPORT void
+void
Parrot_default_thawfinish(PARROT_INTERP, PMC *pmc, visit_info *info);
More information about the parrot-commits
mailing list