Commit 3c8c10b8 by Tom Tromey Committed by Tom Tromey

* boehm.c (mark_reference_fields): Use int_byte_position.

From-SVN: r33354
parent 3508c681
2000-04-23 Tom Tromey <tromey@cygnus.com>
* boehm.c (mark_reference_fields): Use int_byte_position.
2000-04-22 Tom Tromey <tromey@cygnus.com> 2000-04-22 Tom Tromey <tromey@cygnus.com>
* boehm.c (mark_reference_fields): Only call byte_position on * boehm.c (mark_reference_fields): Only call byte_position on
......
...@@ -99,7 +99,7 @@ mark_reference_fields (field, low, high, ubit, ...@@ -99,7 +99,7 @@ mark_reference_fields (field, low, high, ubit,
if (FIELD_STATIC (field)) if (FIELD_STATIC (field))
continue; continue;
offset = tree_low_cst (byte_position (field), 1); offset = int_byte_position (field);
if (JREFERENCE_TYPE_P (TREE_TYPE (field))) if (JREFERENCE_TYPE_P (TREE_TYPE (field)))
{ {
unsigned int count; unsigned int count;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment