summaryrefslogtreecommitdiff
path: root/gcc/bitmap.c
diff options
context:
space:
mode:
authornathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>2005-03-10 15:40:11 +0000
committernathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>2005-03-10 15:40:11 +0000
commit3c47d2005d468b14bdb13d66a2ab8f7fa494d1cd (patch)
tree07eab345e6b070d6b59f253378ea29d046a95b68 /gcc/bitmap.c
parent97e226656962d0f109c6467143e12ac82ab889ea (diff)
downloadgcc-3c47d2005d468b14bdb13d66a2ab8f7fa494d1cd.tar.gz
* bitmap.c (bitmap_copy): Remove manual loop unrolling.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96243 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/bitmap.c')
-rw-r--r--gcc/bitmap.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/gcc/bitmap.c b/gcc/bitmap.c
index 198b756fb7a..2cf4c8cf5d6 100644
--- a/gcc/bitmap.c
+++ b/gcc/bitmap.c
@@ -346,9 +346,6 @@ void
bitmap_copy (bitmap to, bitmap from)
{
bitmap_element *from_ptr, *to_ptr = 0;
-#if BITMAP_ELEMENT_WORDS != 2
- unsigned i;
-#endif
bitmap_clear (to);
@@ -358,14 +355,7 @@ bitmap_copy (bitmap to, bitmap from)
bitmap_element *to_elt = bitmap_element_allocate (to);
to_elt->indx = from_ptr->indx;
-
-#if BITMAP_ELEMENT_WORDS == 2
- to_elt->bits[0] = from_ptr->bits[0];
- to_elt->bits[1] = from_ptr->bits[1];
-#else
- for (i = 0; i < BITMAP_ELEMENT_WORDS; i++)
- to_elt->bits[i] = from_ptr->bits[i];
-#endif
+ memcpy (to_elt->bits, from_ptr->bits, sizeof (to_elt->bits));
/* Here we have a special case of bitmap_element_link, for the case
where we know the links are being entered in sequence. */