diff options
author | KC Sivaramakrishnan <kc@kcsrk.info> | 2019-06-09 23:07:42 +0530 |
---|---|---|
committer | KC Sivaramakrishnan <kc@kcsrk.info> | 2019-08-23 09:50:05 +0530 |
commit | cededf23b93e1ac7f2f12eac0c0bc41ceb46773f (patch) | |
tree | bfa1a8f71decc6877372049782e01e9ef0108097 /runtime/bigarray.c | |
parent | 3357490de04ed4ee3f7397c110e8dae5b88358c1 (diff) | |
download | ocaml-cededf23b93e1ac7f2f12eac0c0bc41ceb46773f.tar.gz |
Move local_roots, compare unorderd and gc request variables to domain state
Diffstat (limited to 'runtime/bigarray.c')
-rw-r--r-- | runtime/bigarray.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/bigarray.c b/runtime/bigarray.c index 62d3d3dec6..6073390933 100644 --- a/runtime/bigarray.c +++ b/runtime/bigarray.c @@ -209,7 +209,7 @@ CAMLexport int caml_ba_compare(value v1, value v2) if (e1 < e2) return -1; \ if (e1 > e2) return 1; \ if (e1 != e2) { \ - caml_compare_unordered = 1; \ + Caml_state->compare_unordered = 1; \ if (e1 == e1) return 1; \ if (e2 == e2) return -1; \ } \ |