diff options
Diffstat (limited to 'ccross.sml')
-rw-r--r-- | ccross.sml | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -6,7 +6,9 @@ structure ccross:> CCROSS = struct structure Parser:> PARSER = Parser(structure Tree = Tree; structure P = ppc; structure D = Dynarray) - structure D:> DRIVER = Driver(Parser) + structure IL:> IL = IL(Parser) + structure Emit:> EMIT = Emit(IL) + structure D:> DRIVER = Driver(Emit) structure ExnHandler:> EXN_HANDLER = ExnHandler end |