mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-22 15:00:55 +08:00
tree-ssa-operands.c (mark_difference_for_renaming): Use bitmap_xor.
2008-05-23 Richard Guenther <rguenther@suse.de> * tree-ssa-operands.c (mark_difference_for_renaming): Use bitmap_xor. From-SVN: r135799
This commit is contained in:
parent
7a0112e7a4
commit
833248d2d0
@ -1,3 +1,8 @@
|
||||
2008-05-23 Richard Guenther <rguenther@suse.de>
|
||||
|
||||
* tree-ssa-operands.c (mark_difference_for_renaming): Use
|
||||
bitmap_xor.
|
||||
|
||||
2008-05-23 Uros Bizjak <ubizjak@gmail.com>
|
||||
Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
|
@ -2785,15 +2785,9 @@ mark_difference_for_renaming (bitmap s1, bitmap s2)
|
||||
else if (!bitmap_equal_p (s1, s2))
|
||||
{
|
||||
bitmap t1 = BITMAP_ALLOC (NULL);
|
||||
bitmap t2 = BITMAP_ALLOC (NULL);
|
||||
|
||||
bitmap_and_compl (t1, s1, s2);
|
||||
bitmap_and_compl (t2, s2, s1);
|
||||
bitmap_ior_into (t1, t2);
|
||||
bitmap_xor (t1, s1, s2);
|
||||
mark_set_for_renaming (t1);
|
||||
|
||||
BITMAP_FREE (t1);
|
||||
BITMAP_FREE (t2);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user