summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhp <hp@138bc75d-0d04-0410-961f-82ee72b054a4>2002-12-03 21:00:16 +0000
committerhp <hp@138bc75d-0d04-0410-961f-82ee72b054a4>2002-12-03 21:00:16 +0000
commit0df5e59734aa131dfabcc4a11a51ef278b6d2b55 (patch)
tree3095f5e6a1fc0f4474236b85f805704870079cdb
parentddd90e806df8ebbe46e6fcbadc88d1d497e01039 (diff)
downloadppe42-gcc-0df5e59734aa131dfabcc4a11a51ef278b6d2b55.tar.gz
ppe42-gcc-0df5e59734aa131dfabcc4a11a51ef278b6d2b55.zip
* bitmap.c (bitmap_ior_and_compl, bitmap_union_of_diff):
Initialize tmp.using_obstack to 0. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@59782 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/bitmap.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index fbc2bd5d2be..05ad42fb17f 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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.
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);
OpenPOWER on IntegriCloud