Skip to content

Commit a3a9fdb

Browse files
committed
Unboxing of function and block parameters
1 parent 8d14bcf commit a3a9fdb

File tree

3 files changed

+542
-0
lines changed

3 files changed

+542
-0
lines changed

compiler/lib/driver.ml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,22 +165,27 @@ let o1 : 'a -> 'a =
165165
+> flow
166166
+> specialize
167167
+> eval
168+
+> Unboxing.f
168169
+> inline (* inlining may reveal new tailcall opt *)
169170
+> deadcode
170171
+> tailcall
171172
+> phi
172173
+> flow
173174
+> specialize
174175
+> eval
176+
+> Unboxing.f
175177
+> inline
176178
+> deadcode
177179
+> print
178180
+> flow
179181
+> specialize
180182
+> eval
183+
+> Unboxing.f
181184
+> inline
182185
+> deadcode
183186
+> phi
187+
+> flow
188+
+> fst
184189

185190
(* o2 *)
186191

0 commit comments

Comments
 (0)