[svn:parrot] r40347 - trunk/compilers/imcc
NotFound at svn.parrot.org
NotFound at svn.parrot.org
Thu Jul 30 20:05:49 UTC 2009
Author: NotFound
Date: Thu Jul 30 20:05:47 2009
New Revision: 40347
URL: https://trac.parrot.org/parrot/changeset/40347
Log:
[cage] headerizing update forgotten in r40346
Modified:
trunk/compilers/imcc/symreg.h
Modified: trunk/compilers/imcc/symreg.h
==============================================================================
--- trunk/compilers/imcc/symreg.h Thu Jul 30 18:57:46 2009 (r40346)
+++ trunk/compilers/imcc/symreg.h Thu Jul 30 20:05:47 2009 (r40347)
@@ -315,7 +315,8 @@
__attribute__nonnull__(1)
__attribute__nonnull__(2);
-void push_namespace(SHIM_INTERP, ARGIN(const char *name))
+void push_namespace(PARROT_INTERP, ARGIN(const char *name))
+ __attribute__nonnull__(1)
__attribute__nonnull__(2);
void store_symreg(PARROT_INTERP, ARGMOD(SymReg *r))
@@ -427,7 +428,8 @@
PARROT_ASSERT_ARG(interp) \
|| PARROT_ASSERT_ARG(name)
#define ASSERT_ARGS_push_namespace __attribute__unused__ int _ASSERT_ARGS_CHECK = \
- PARROT_ASSERT_ARG(name)
+ PARROT_ASSERT_ARG(interp) \
+ || PARROT_ASSERT_ARG(name)
#define ASSERT_ARGS_store_symreg __attribute__unused__ int _ASSERT_ARGS_CHECK = \
PARROT_ASSERT_ARG(interp) \
|| PARROT_ASSERT_ARG(r)
More information about the parrot-commits
mailing list