ffi.c (ffi_prep_incoming_args_UNIX): Get floating point arguments from fp registers...
[platform/upstream/gcc.git] / gcc / bitmap.h
index 7b85f45..4191542 100644 (file)
@@ -107,7 +107,7 @@ extern int bitmap_bit_p (bitmap, int);
 extern void debug_bitmap (bitmap);
 extern void debug_bitmap_file (FILE *, bitmap);
 
-/* Print a bitmap */
+/* Print a bitmap */
 extern void bitmap_print (FILE *, bitmap, const char *, const char *);
 
 /* Initialize a bitmap header.  If HEAD is NULL, a new header will be
@@ -128,7 +128,7 @@ extern int bitmap_last_set_bit (bitmap);
 
 /* Allocate a bitmap with oballoc.  */
 #define BITMAP_OBSTACK_ALLOC(OBSTACK)                          \
-  bitmap_initialize ((bitmap) obstack_alloc (OBSTACK, sizeof (bitmap_head)), 1)
+  bitmap_initialize (obstack_alloc (OBSTACK, sizeof (bitmap_head)), 1)
 
 /* Allocate a bitmap with ggc_alloc.  */
 #define BITMAP_GGC_ALLOC()                     \
@@ -136,7 +136,7 @@ extern int bitmap_last_set_bit (bitmap);
 
 /* Allocate a bitmap with xmalloc.  */
 #define BITMAP_XMALLOC()                                        \
-  bitmap_initialize ((bitmap) xmalloc (sizeof (bitmap_head)), 1)
+  bitmap_initialize (xmalloc (sizeof (bitmap_head)), 1)
 
 /* Do any cleanup needed on a bitmap when it is no longer used.  */
 #define BITMAP_FREE(BITMAP)                    \
@@ -305,7 +305,7 @@ do {                                                                        \
                                                                        \
   for (; ptr1_ != 0 ; ptr1_ = ptr1_->next)                             \
     {                                                                  \
-      /* Advance BITMAP2 to the equivalent link */                     \
+      /* Advance BITMAP2 to the equivalent link.  */                   \
       while (ptr2_ != 0 && ptr2_->indx < ptr1_->indx)                  \
        ptr2_ = ptr2_->next;                                            \
                                                                        \