diff options
| author | Maxime Dénès | 2018-04-26 17:08:20 +0200 |
|---|---|---|
| committer | Maxime Dénès | 2018-05-28 14:41:39 +0200 |
| commit | 9d6f19dd94f44a96cc5a9b61f22943ce457ce51c (patch) | |
| tree | 5b8256fbd3fc447c49c5f18cae12912c739bb4ab /kernel/cbytecodes.ml | |
| parent | 77ee11168bbbf69b222f244792da6d11b8df1132 (diff) | |
Less confusing debug printing of setfield bytecode instruction
Diffstat (limited to 'kernel/cbytecodes.ml')
| -rw-r--r-- | kernel/cbytecodes.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/cbytecodes.ml b/kernel/cbytecodes.ml index 5ed9b6c675..599856b647 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" |
