Commit 4213a3b6 by Anthony Green Committed by Anthony Green

Fix bitmap bug.

From-SVN: r57919
parent 39c9ceac
2002-10-08 Anthony Green <green@redhat.com>
* bitmap.c (bitmap_equal_p): Clear all bitmap_head fields.
2002-10-08 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
* config/c4x/c4x.c (c4x_print_operand): Enlarge buffer
......
......@@ -706,7 +706,7 @@ bitmap_equal_p (a, b)
bitmap_head c;
int ret;
c.first = c.current = 0;
memset (&c, 0, sizeof (c));
ret = ! bitmap_operation (&c, a, b, BITMAP_XOR);
bitmap_clear (&c);
......
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