summaryrefslogtreecommitdiff
path: root/ccross.sml
diff options
context:
space:
mode:
Diffstat (limited to 'ccross.sml')
-rw-r--r--ccross.sml4
1 files changed, 3 insertions, 1 deletions
diff --git a/ccross.sml b/ccross.sml
index d3dcf3c..46851e9 100644
--- a/ccross.sml
+++ b/ccross.sml
@@ -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