summaryrefslogtreecommitdiffstats
path: root/bytecomp/printlambda.ml
diff options
context:
space:
mode:
Diffstat (limited to 'bytecomp/printlambda.ml')
-rw-r--r--bytecomp/printlambda.ml3
1 files changed, 2 insertions, 1 deletions
diff --git a/bytecomp/printlambda.ml b/bytecomp/printlambda.ml
index e02196f9b..d3d5a0916 100644
--- a/bytecomp/printlambda.ml
+++ b/bytecomp/printlambda.ml
@@ -83,7 +83,8 @@ let print_bigarray name unsafe kind ppf layout =
let record_rep ppf r =
match r with
- | Record_regular -> fprintf ppf "regular"
+ | Record_regular 0 -> fprintf ppf "regular"
+ | Record_regular i -> fprintf ppf "regular (tag %i)" i
| Record_float -> fprintf ppf "float"
;;