summaryrefslogtreecommitdiff
path: root/src/bytecode.h
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2015-05-10 19:13:51 -0400
committerAdrian Thurston <thurston@complang.org>2015-05-10 19:14:14 -0400
commitb05674c0aa0a63ae984fc8f8204bdb09d5e1dd9e (patch)
treef363c8255fae70f28c61d25506129f4858a953e3 /src/bytecode.h
parent041084f89d3b05c4e9817002fcbe363839336538 (diff)
downloadcolm-b05674c0aa0a63ae984fc8f8204bdb09d5e1dd9e.tar.gz
improved naming, moved generated parser code to subdir gen
Diffstat (limited to 'src/bytecode.h')
-rw-r--r--src/bytecode.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bytecode.h b/src/bytecode.h
index bb56b958..6b4aa885 100644
--- a/src/bytecode.h
+++ b/src/bytecode.h
@@ -647,7 +647,7 @@ Head *intToStr( struct colm_program *prg, Word i );
void colm_execute( struct colm_program *prg, Execution *exec, Code *code );
void reductionExecution( Execution *exec, Tree **sp );
void generationExecution( Execution *exec, Tree **sp );
-void reverseExecution( Execution *exec, Tree **sp, RtCodeVect *allRev );
+void reverseExecution( Execution *exec, Tree **sp, struct rt_code_vect *allRev );
Kid *allocAttrs( struct colm_program *prg, long length );
void freeAttrs( struct colm_program *prg, Kid *attrs );
@@ -655,7 +655,7 @@ Kid *getAttrKid( Tree *tree, long pos );
Tree *splitTree( struct colm_program *prg, Tree *t );
-void colm_rcode_downref_all( struct colm_program *prg, Tree **sp, RtCodeVect *cv );
+void colm_rcode_downref_all( struct colm_program *prg, Tree **sp, struct rt_code_vect *cv );
int colm_make_reverse_code( struct pda_run *pdaRun );
void colm_transfer_reverse_code( struct pda_run *pdaRun, ParseTree *tree );
@@ -664,7 +664,7 @@ void splitRef( struct colm_program *prg, Tree ***sp, Ref *fromRef );
void allocGlobal( struct colm_program *prg );
Tree **colm_execute_code( struct colm_program *prg,
Execution *exec, Tree **sp, Code *instr );
-Code *colm_pop_reverse_code( RtCodeVect *allRev );
+Code *colm_pop_reverse_code( struct rt_code_vect *allRev );
#ifdef __cplusplus
}