@@ -1,6 +1,6 @@
RESULT := civicc
PHASES := load parse print desug context_analysis expand_dims typecheck \
- dim_reduce bool_op extern_vars constant_propagation depth_analysis assemble \
+ dim_reduce bool_op extern_vars constant_propagation index_analysis assemble \
peephole output
SOURCES := types.ml stringify.mli stringify.ml util.mli util.ml lexer.mll \
parser.mly $(patsubst %,phases/%.ml,$(PHASES)) main.ml
@@ -9,4 +9,3 @@ Issues & TODO
- Keep file content in buffer to prevent error messages from crashing when
reading from stdin.
-- "depth analysis" -> "index analysis"
@@ -16,7 +16,7 @@ let compile () =
Parse.phase;
(*Print.phase;*)
Desug.phase;
- (*Print.phase;*)
+ Print.phase;
Context_analysis.phase;
Typecheck.phase;
@@ -31,7 +31,7 @@ let compile () =
Constant_propagation.phase;
Print.phase;
- Depth_analysis.phase;
+ Index_analysis.phase;
Assemble.phase;