[svn:parrot] r46425 - trunk/compilers/imcc
petdance at svn.parrot.org
petdance at svn.parrot.org
Sun May 9 04:24:54 UTC 2010
Author: petdance
Date: Sun May 9 04:24:52 2010
New Revision: 46425
URL: https://trac.parrot.org/parrot/changeset/46425
Log:
re-headerized
Modified:
trunk/compilers/imcc/imc.h
trunk/compilers/imcc/reg_alloc.c
Modified: trunk/compilers/imcc/imc.h
==============================================================================
--- trunk/compilers/imcc/imc.h Sun May 9 01:25:45 2010 (r46424)
+++ trunk/compilers/imcc/imc.h Sun May 9 04:24:52 2010 (r46425)
@@ -145,19 +145,11 @@
__attribute__nonnull__(1)
FUNC_MODIFIES(*unit);
-void graph_coloring_reg_alloc(PARROT_INTERP, ARGMOD(IMC_Unit *unit))
- __attribute__nonnull__(1)
- __attribute__nonnull__(2)
- FUNC_MODIFIES(*unit);
-
void imc_reg_alloc(PARROT_INTERP, ARGIN_NULLOK(IMC_Unit *unit))
__attribute__nonnull__(1);
#define ASSERT_ARGS_free_reglist __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
PARROT_ASSERT_ARG(unit))
-#define ASSERT_ARGS_graph_coloring_reg_alloc __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
- PARROT_ASSERT_ARG(interp) \
- , PARROT_ASSERT_ARG(unit))
#define ASSERT_ARGS_imc_reg_alloc __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
PARROT_ASSERT_ARG(interp))
/* Don't modify between HEADERIZER BEGIN / HEADERIZER END. Your changes will be lost. */
Modified: trunk/compilers/imcc/reg_alloc.c
==============================================================================
--- trunk/compilers/imcc/reg_alloc.c Sun May 9 01:25:45 2010 (r46424)
+++ trunk/compilers/imcc/reg_alloc.c Sun May 9 04:24:52 2010 (r46425)
@@ -95,10 +95,6 @@
__attribute__nonnull__(2)
FUNC_MODIFIES(*unit);
-static void rebuild_reglist(ARGMOD(IMC_Unit *unit))
- __attribute__nonnull__(1)
- FUNC_MODIFIES(*unit);
-
PARROT_WARN_UNUSED_RESULT
static int reg_sort_f(ARGIN(const void *a), ARGIN(const void *b))
__attribute__nonnull__(1)
@@ -140,8 +136,6 @@
#define ASSERT_ARGS_print_stat __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
PARROT_ASSERT_ARG(interp) \
, PARROT_ASSERT_ARG(unit))
-#define ASSERT_ARGS_rebuild_reglist __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
- PARROT_ASSERT_ARG(unit))
#define ASSERT_ARGS_reg_sort_f __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
PARROT_ASSERT_ARG(a) \
, PARROT_ASSERT_ARG(b))
More information about the parrot-commits
mailing list