Skip to content

Commit 4a7ea49

Browse files
committed
Compiler: cleanup
1 parent d98717c commit 4a7ea49

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

compiler/lib/driver.ml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,6 @@ let rec loop max name round i (p : 'a) : 'a =
157157
p')
158158
else loop max name round (i + 1) p'
159159

160-
let identity x = x
161-
162160
(* o1 *)
163161

164162
let o1 : 'a -> 'a =
@@ -183,11 +181,10 @@ let o1 : 'a -> 'a =
183181
+> inline
184182
+> deadcode
185183
+> phi
186-
+> identity
187184

188185
(* o2 *)
189186

190-
let o2 : 'a -> 'a = loop 10 "o1" o1 1 +> print
187+
let o2 = loop 10 "o1" o1 1 +> print
191188

192189
(* o3 *)
193190

0 commit comments

Comments
 (0)