diff options
author | Hans-Peter Nilsson <hp@bitrange.com> | 2002-12-03 21:00:16 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@gcc.gnu.org> | 2002-12-03 21:00:16 +0000 |
commit | c47eb51bbfa3fae9ca4058a180fc7ee7ca0bae83 (patch) | |
tree | 3095f5e6a1fc0f4474236b85f805704870079cdb /gcc/bitmap.c | |
parent | a50aa799930d7a9890e14b58aebca6ff6d355493 (diff) | |
download | gcc-c47eb51bbfa3fae9ca4058a180fc7ee7ca0bae83.tar.gz |
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
Diffstat (limited to 'gcc/bitmap.c')
-rw-r--r-- | gcc/bitmap.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/bitmap.c b/gcc/bitmap.c index 21378b5c677..e2b58c0e0c8 100644 --- a/gcc/bitmap.c +++ b/gcc/bitmap.c @@ -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); |