diff options
Diffstat (limited to 'bytecomp/printlambda.ml')
-rw-r--r-- | bytecomp/printlambda.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bytecomp/printlambda.ml b/bytecomp/printlambda.ml index 0e3300b52..7e9c197e3 100644 --- a/bytecomp/printlambda.ml +++ b/bytecomp/printlambda.ml @@ -83,8 +83,8 @@ let print_bigarray name unsafe kind ppf layout = let record_rep ppf r = match r with - | Record_regular 0 -> fprintf ppf "regular" - | Record_regular i -> fprintf ppf "regular (tag %i)" i + | Record_regular -> fprintf ppf "regular" + | Record_inlined i -> fprintf ppf "inlined(%i)" i | Record_float -> fprintf ppf "float" | Record_exception p -> fprintf ppf "exn (%s)" (Path.name p) ;; |