Commit a4b5b2ae by Richard Kenner Committed by Richard Kenner

* ggc-page.c (ggc_marked_p): Properly convert return to boolean.

From-SVN: r45715
parent e7b6a0ee
Thu Sep 20 09:00:27 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* ggc-page.c (ggc_marked_p): Properly convert return to boolean.
2001-09-20 DJ Delorie <dj@redhat.com>
* c-typeck.c (really_start_incremental_init): Discriminate
......
......@@ -1027,7 +1027,7 @@ ggc_marked_p (p)
word = bit / HOST_BITS_PER_LONG;
mask = (unsigned long) 1 << (bit % HOST_BITS_PER_LONG);
return entry->in_use_p[word] & mask;
return (entry->in_use_p[word] & mask) != 0;
}
/* Return the size of the gc-able object P. */
......
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