File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -65,6 +65,15 @@ enum instructions {
65
65
MAKE_FAUX_MIXEDBLOCK ,
66
66
FIRST_UNIMPLEMENTED_OP };
67
67
68
+ // Think carefully before adding a new bytecode instruction. In general,
69
+ // this makes the flambda-backend compiler less compatible with the
70
+ // OCaml ecosystem. Projects may need to be patched to build with
71
+ // flambda-backend.
72
+ //
73
+ // We added the [MAKE_FAUX_MIXEDBLOCK] instruction without making this
74
+ // consideration and it has turned out OK, but we might want to reverse
75
+ // this decision if we run into difficulty in the future.
76
+
68
77
#endif /* CAML_INTERNALS */
69
78
70
79
#endif /* CAML_INSTRUCT_H */
Original file line number Diff line number Diff line change @@ -64,6 +64,15 @@ enum instructions {
64
64
MAKE_FAUX_MIXEDBLOCK ,
65
65
FIRST_UNIMPLEMENTED_OP };
66
66
67
+ // Think carefully before adding a new bytecode instruction. In general,
68
+ // this makes the flambda-backend compiler less compatible with the
69
+ // OCaml ecosystem. Projects may need to be patched to build with
70
+ // flambda-backend.
71
+ //
72
+ // We added the [MAKE_FAUX_MIXEDBLOCK] instruction without making this
73
+ // consideration and it has turned out OK, but we might want to reverse
74
+ // this decision if we run into difficulty in the future.
75
+
67
76
#endif /* CAML_INTERNALS */
68
77
69
78
#endif /* CAML_INSTRUCT_H */
You can’t perform that action at this time.
0 commit comments