[svn:parrot] r46439 - trunk/compilers/imcc

petdance at svn.parrot.org petdance at svn.parrot.org
Sun May 9 20:32:42 UTC 2010


Author: petdance
Date: Sun May  9 20:32:42 2010
New Revision: 46439
URL: https://trac.parrot.org/parrot/changeset/46439

Log:
re-headerized

Modified:
   trunk/compilers/imcc/cfg.c
   trunk/compilers/imcc/debug.h
   trunk/compilers/imcc/symreg.h

Modified: trunk/compilers/imcc/cfg.c
==============================================================================
--- trunk/compilers/imcc/cfg.c	Sun May  9 19:47:04 2010	(r46438)
+++ trunk/compilers/imcc/cfg.c	Sun May  9 20:32:42 2010	(r46439)
@@ -125,10 +125,6 @@
         __attribute__nonnull__(1)
         __attribute__nonnull__(2);
 
-#define ASSERT_ARGS_analyse_life_block __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
-       PARROT_ASSERT_ARG(interp) \
-    , PARROT_ASSERT_ARG(bb) \
-    , PARROT_ASSERT_ARG(r))
 #define ASSERT_ARGS_bb_add_edge __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
        PARROT_ASSERT_ARG(interp) \
     , PARROT_ASSERT_ARG(unit) \

Modified: trunk/compilers/imcc/debug.h
==============================================================================
--- trunk/compilers/imcc/debug.h	Sun May  9 19:47:04 2010	(r46438)
+++ trunk/compilers/imcc/debug.h	Sun May  9 20:32:42 2010	(r46439)
@@ -94,15 +94,6 @@
 void dump_labels(ARGIN(const IMC_Unit *unit))
         __attribute__nonnull__(1);
 
-void dump_liveness_status(ARGIN(const IMC_Unit *unit))
-        __attribute__nonnull__(1);
-
-void dump_liveness_status_var(
-    ARGIN(const IMC_Unit *unit),
-    ARGIN(const SymReg* r))
-        __attribute__nonnull__(1)
-        __attribute__nonnull__(2);
-
 void dump_loops(ARGIN(const IMC_Unit *unit))
         __attribute__nonnull__(1);
 
@@ -141,11 +132,6 @@
     , PARROT_ASSERT_ARG(unit))
 #define ASSERT_ARGS_dump_labels __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
        PARROT_ASSERT_ARG(unit))
-#define ASSERT_ARGS_dump_liveness_status __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
-       PARROT_ASSERT_ARG(unit))
-#define ASSERT_ARGS_dump_liveness_status_var __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
-       PARROT_ASSERT_ARG(unit) \
-    , PARROT_ASSERT_ARG(r))
 #define ASSERT_ARGS_dump_loops __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
        PARROT_ASSERT_ARG(unit))
 #define ASSERT_ARGS_dump_symreg __attribute__unused__ int _ASSERT_ARGS_CHECK = (\

Modified: trunk/compilers/imcc/symreg.h
==============================================================================
--- trunk/compilers/imcc/symreg.h	Sun May  9 19:47:04 2010	(r46438)
+++ trunk/compilers/imcc/symreg.h	Sun May  9 20:32:42 2010	(r46439)
@@ -246,12 +246,6 @@
         __attribute__nonnull__(1)
         __attribute__nonnull__(2);
 
-PARROT_CANNOT_RETURN_NULL
-PARROT_IGNORABLE_RESULT
-SymReg* mk_ident_ur(PARROT_INTERP, ARGIN(const char *name), int t)
-        __attribute__nonnull__(1)
-        __attribute__nonnull__(2);
-
 PARROT_WARN_UNUSED_RESULT
 PARROT_CANNOT_RETURN_NULL
 SymReg * mk_label_address(PARROT_INTERP, ARGIN(const char *name))
@@ -393,9 +387,6 @@
 #define ASSERT_ARGS_mk_ident __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
        PARROT_ASSERT_ARG(interp) \
     , PARROT_ASSERT_ARG(name))
-#define ASSERT_ARGS_mk_ident_ur __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
-       PARROT_ASSERT_ARG(interp) \
-    , PARROT_ASSERT_ARG(name))
 #define ASSERT_ARGS_mk_label_address __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
        PARROT_ASSERT_ARG(interp) \
     , PARROT_ASSERT_ARG(name))


More information about the parrot-commits mailing list