Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
d-kalinichenko committed Dec 9, 2024
1 parent 4ae3eb6 commit c94d576
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime4/compact.c
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ void caml_invert_root (value v, value *p)
/* Note: this assertion will become tautological and should be removed when
we finally get rid of the page table in NNP mode.
*/
CAMLassert (Is_long (*p) || *p == Val_null || Is_in_heap (*p)
|| Is_black_val (*p) || Tag_val (*p) == Infix_tag);
CAMLassert (Is_long (*p) || Is_in_heap (*p) || Is_black_val (*p)
|| Tag_val (*p) == Infix_tag);
#endif
invert_pointer_at ((word *) p);
}
Expand Down

0 comments on commit c94d576

Please sign in to comment.