summaryrefslogtreecommitdiff
path: root/src/compiler.sml
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiler.sml')
-rw-r--r--src/compiler.sml9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/compiler.sml b/src/compiler.sml
index 3efa3694..ddd71c30 100644
--- a/src/compiler.sml
+++ b/src/compiler.sml
@@ -1410,12 +1410,19 @@ val sidecheck = {
val toSidecheck = transform sidecheck "sidecheck" o toPathcheck
+val sigcheck = {
+ func = SigCheck.check,
+ print = MonoPrint.p_file MonoEnv.empty
+}
+
+val toSigcheck = transform sigcheck "sigcheck" o toSidecheck
+
val cjrize = {
func = Cjrize.cjrize,
print = CjrPrint.p_file CjrEnv.empty
}
-val toCjrize = transform cjrize "cjrize" o toSidecheck
+val toCjrize = transform cjrize "cjrize" o toSigcheck
val prepare = {
func = Prepare.prepare,