Skip to content

Commit 2d35761

Browse files
authored
flambda-backend: Resurrect [@inline never] annotations in camlinternalMod (#121)
1 parent f5985ad commit 2d35761

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stdlib/camlinternalMod.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ and init_mod_block loc comps =
6161
done;
6262
modu
6363

64-
let init_mod loc shape =
64+
let [@inline never] init_mod loc shape =
6565
match shape with
6666
| Module comps ->
6767
Obj.repr (init_mod_block loc comps)
@@ -88,7 +88,7 @@ and update_mod_block comps o n =
8888
update_mod_field o i comps.(i) (Obj.field n i)
8989
done
9090

91-
let update_mod shape o n =
91+
let [@inline never] update_mod shape o n =
9292
match shape with
9393
| Module comps ->
9494
update_mod_block comps o n

0 commit comments

Comments
 (0)