bitmap.c (bitmap_ior_and_compl, [...]): Initialize tmp.using_obstack to 0.
* bitmap.c (bitmap_ior_and_compl, bitmap_union_of_diff): Initialize tmp.using_obstack to 0. From-SVN: r59782
This commit is contained in:
parent
a50aa79993
commit
c47eb51bbf
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2002-12-03 Hans-Peter Nilsson <hp@bitrange.com>
|
||||
|
||||
* bitmap.c (bitmap_ior_and_compl, bitmap_union_of_diff):
|
||||
Initialize tmp.using_obstack to 0.
|
||||
|
||||
2002-12-03 Andreas Schwab <schwab@suse.de>
|
||||
|
||||
* config/m68k/m68k.h (EH_RETURN_DATA_REGNO): Define.
|
||||
|
|
|
@ -725,6 +725,7 @@ bitmap_ior_and_compl (to, from1, from2)
|
|||
bitmap_head tmp;
|
||||
|
||||
tmp.first = tmp.current = 0;
|
||||
tmp.using_obstack = 0;
|
||||
|
||||
bitmap_operation (&tmp, from1, from2, BITMAP_AND_COMPL);
|
||||
bitmap_operation (to, to, &tmp, BITMAP_IOR);
|
||||
|
@ -742,6 +743,7 @@ bitmap_union_of_diff (dst, a, b, c)
|
|||
int changed;
|
||||
|
||||
tmp.first = tmp.current = 0;
|
||||
tmp.using_obstack = 0;
|
||||
|
||||
bitmap_operation (&tmp, b, c, BITMAP_AND_COMPL);
|
||||
changed = bitmap_operation (dst, &tmp, a, BITMAP_IOR);
|
||||
|
|
Loading…
Add table
Reference in a new issue