aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/compiler_expand.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/compiler_expand.ml b/tools/compiler_expand.ml
index ddb3c21a..5c90af6c 100644
--- a/tools/compiler_expand.ml
+++ b/tools/compiler_expand.ml
@@ -51,9 +51,9 @@ PARTIAL, Always, Require, (Some "Unused globals"), "Unusedglob"
let post_rtl_passes =
[|
- PARTIAL, Always, Require, (Some "RTLpath generation"), "RTLpathLivegen", Noprint;
- PARTIAL, Always, Require, (Some "Prepass scheduling"), "RTLpathScheduler", Noprint;
- TOTAL, Always, Require, (Some "Projection to RTL"), "RTLpath", (Print (Printf.sprintf "RTL %d" ((Array.length rtl_passes) + 1)));
+ PARTIAL, Always, Require, (Some "BTL generation"), "RTLtoBTL", Noprint;
+ PARTIAL, Always, Require, (Some "Prepass scheduling"), "BTL_Scheduler", Noprint;
+ PARTIAL, Always, Require, (Some "Projection to RTL"), "BTLtoRTL", (Print (Printf.sprintf "RTL %d" ((Array.length rtl_passes) + 1)));
PARTIAL, Always, Require, (Some "Register allocation"), "Allocation", (Print "LTL 1");
PARTIAL, Always, Require, (Some "Branch tunneling"), "Tunneling", (Print "LTL 2");
PARTIAL, Always, Require, (Some "CFG linearization"), "Linearize", Noprint;