|
|
@@ -13,19 +13,19 @@ let phases = [
|
|
|
"Parse input");
|
|
|
("desug", Desug.phase, always,
|
|
|
"Desugaring");
|
|
|
- ("context", Context_analysis.phase, always,
|
|
|
+ ("context", Context.phase, always,
|
|
|
"Context analysis");
|
|
|
("typecheck", Typecheck.phase, always,
|
|
|
"Type checking");
|
|
|
- ("dimreduce", Dim_reduce.phase, always,
|
|
|
+ ("dimreduce", Dimreduce.phase, always,
|
|
|
"Array dimension reduction");
|
|
|
- ("boolop", Bool_op.phase, always,
|
|
|
+ ("boolop", Boolop.phase, always,
|
|
|
"Convert bool operations");
|
|
|
- ("extern", Extern_vars.phase, always,
|
|
|
+ ("extern", Extern.phase, always,
|
|
|
"Create getters and setters for extern variables");
|
|
|
- ("constprop", Constant_propagation.phase, when_optimize,
|
|
|
+ ("constprop", Constprop.phase, when_optimize,
|
|
|
"Constant propagation");
|
|
|
- ("index", Index_analysis.phase, always,
|
|
|
+ ("index", Index.phase, always,
|
|
|
"Index analysis");
|
|
|
("assemble", Assemble.phase, always,
|
|
|
"Assembly");
|