Skip to content

Commit 9aedfcb

Browse files
committed
Compiler: cleanup
1 parent 289e85b commit 9aedfcb

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
@@ -153,8 +153,6 @@ let rec loop max name round i (p : 'a) : 'a =
153153
p')
154154
else loop max name round (i + 1) p'
155155

156-
let identity x = x
157-
158156
(* o1 *)
159157

160158
let o1 : 'a -> 'a =
@@ -179,11 +177,10 @@ let o1 : 'a -> 'a =
179177
+> inline
180178
+> deadcode
181179
+> phi
182-
+> identity
183180

184181
(* o2 *)
185182

186-
let o2 : 'a -> 'a = loop 10 "o1" o1 1 +> print
183+
let o2 = loop 10 "o1" o1 1 +> print
187184

188185
(* o3 *)
189186

0 commit comments

Comments
 (0)