[svn:parrot] r45847 - branches/runcore_purge/include/parrot
cotto at svn.parrot.org
cotto at svn.parrot.org
Wed Apr 21 09:02:29 UTC 2010
Author: cotto
Date: Wed Apr 21 09:02:28 2010
New Revision: 45847
URL: https://trac.parrot.org/parrot/changeset/45847
Log:
[runcore] remove a pair of now-unused structs
Modified:
branches/runcore_purge/include/parrot/interpreter.h
Modified: branches/runcore_purge/include/parrot/interpreter.h
==============================================================================
--- branches/runcore_purge/include/parrot/interpreter.h Wed Apr 21 08:44:41 2010 (r45846)
+++ branches/runcore_purge/include/parrot/interpreter.h Wed Apr 21 09:02:28 2010 (r45847)
@@ -149,18 +149,6 @@
struct _Thread_data; /* in thread.h */
struct _Caches; /* caches .h */
-typedef struct _Prederef_branch { /* item for recording branches */
- size_t offs; /* offset in code */
- void *op; /* opcode at that position */
-} Prederef_branch;
-
-typedef struct _Prederef {
- void **code; /* prederefed code */
- Prederef_branch *branches; /* list of branches in code */
- size_t n_branches; /* entries in that list */
- size_t n_allocated; /* allocated size of it */
-} Prederef;
-
/* Get Context from interpreter */
#define CONTEXT(interp) Parrot_pcc_get_context_struct((interp), (interp)->ctx)
More information about the parrot-commits
mailing list