aboutsummaryrefslogtreecommitdiffhomepage
path: root/kernel/cbytecodes.ml
diff options
context:
space:
mode:
authorGravatar Maxime Dénès <mail@maximedenes.fr>2018-04-26 17:08:20 +0200
committerGravatar Maxime Dénès <mail@maximedenes.fr>2018-05-28 14:41:39 +0200
commit9d6f19dd94f44a96cc5a9b61f22943ce457ce51c (patch)
tree5b8256fbd3fc447c49c5f18cae12912c739bb4ab /kernel/cbytecodes.ml
parent77ee11168bbbf69b222f244792da6d11b8df1132 (diff)
Less confusing debug printing of setfield bytecode instruction
Diffstat (limited to 'kernel/cbytecodes.ml')
-rw-r--r--kernel/cbytecodes.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/cbytecodes.ml b/kernel/cbytecodes.ml
index 5ed9b6c67..599856b64 100644
--- a/kernel/cbytecodes.ml
+++ b/kernel/cbytecodes.ml
@@ -309,7 +309,7 @@ let rec pp_instr i =
prlist_with_sep spc pp_lbl (Array.to_list lblb))
| Kpushfields n -> str "pushfields " ++ int n
| Kfield n -> str "field " ++ int n
- | Ksetfield n -> str "set field" ++ int n
+ | Ksetfield n -> str "setfield " ++ int n
| Kstop -> str "stop"