summaryrefslogtreecommitdiffstats
path: root/bytecomp/printlambda.ml
diff options
context:
space:
mode:
authorAlain Frisch <alain@frisch.fr>2014-04-04 12:37:49 +0000
committerAlain Frisch <alain@frisch.fr>2014-04-04 12:37:49 +0000
commitfa13304327539422b5d7a43ec55349abceaee5b7 (patch)
tree7fffa3cc92e6ed66f630d67c01d13670e0ca5833 /bytecomp/printlambda.ml
parentab7b60aa8d8d24e1a4c0f613e566e9114f0cd508 (diff)
Distinguish explicitly representation of regular records and inlined records with tag = 0.
git-svn-id: http://caml.inria.fr/svn/ocaml/branches/constructors_with_record2@14531 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'bytecomp/printlambda.ml')
-rw-r--r--bytecomp/printlambda.ml4
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)
;;