OSDN Git Service

* config/h8300/h8300.c (h8300_adjust_insn_length): Clean up.
[pf3gnuchains/gcc-fork.git] / gcc / bitmap.h
index d1e410f..8925d86 100644 (file)
@@ -1,5 +1,6 @@
 /* Functions to support general ended bitmaps.
-   Copyright (C) 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
+   Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002
+   Free Software Foundation, Inc.
 
 This file is part of GCC.
 
@@ -41,17 +42,17 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 
 typedef struct bitmap_element_def
 {
-  struct bitmap_element_def *next;             /* Next element. */
-  struct bitmap_element_def *prev;             /* Previous element. */
-  unsigned int indx;                   /* regno/BITMAP_ELEMENT_ALL_BITS. */
-  unsigned HOST_WIDE_INT bits[BITMAP_ELEMENT_WORDS]; /* Bits that are set. */
+  struct bitmap_element_def *next;             /* Next element.  */
+  struct bitmap_element_def *prev;             /* Previous element.  */
+  unsigned int indx;                   /* regno/BITMAP_ELEMENT_ALL_BITS.  */
+  unsigned HOST_WIDE_INT bits[BITMAP_ELEMENT_WORDS]; /* Bits that are set.  */
 } bitmap_element;
 
 /* Head of bitmap linked list.  */
 typedef struct bitmap_head_def {
-  bitmap_element *first;       /* First element in linked list. */
-  bitmap_element *current;     /* Last element looked at. */
-  unsigned int indx;           /* Index of last element looked at. */
+  bitmap_element *first;       /* First element in linked list.  */
+  bitmap_element *current;     /* Last element looked at.  */
+  unsigned int indx;           /* Index of last element looked at.  */
 
 } bitmap_head, *bitmap;
 
@@ -70,7 +71,7 @@ extern bitmap_element bitmap_zero_bits;       /* Zero bitmap element */
 /* Clear a bitmap by freeing up the linked list.  */
 extern void bitmap_clear PARAMS ((bitmap));
 
-/* Copy a bitmap to another bitmap. */
+/* Copy a bitmap to another bitmap.  */
 extern void bitmap_copy PARAMS ((bitmap, bitmap));
 
 /* True if two bitmaps are identical.  */
@@ -158,7 +159,7 @@ do {                                                \
 #define BITMAP_INIT_ONCE()
 
 /* Loop over all bits in BITMAP, starting with MIN, setting BITNUM to the
-   bit number and executing CODE for all bits that are set. */
+   bit number and executing CODE for all bits that are set.  */
 
 #define EXECUTE_IF_SET_IN_BITMAP(BITMAP, MIN, BITNUM, CODE)            \
 do {                                                                   \
@@ -215,7 +216,7 @@ do {                                                                        \
 
 /* Loop over all bits in BITMAP1 and BITMAP2, starting with MIN, setting
    BITNUM to the bit number and executing CODE for all bits that are set in
-   the first bitmap and not set in the second. */
+   the first bitmap and not set in the second.  */
 
 #define EXECUTE_IF_AND_COMPL_IN_BITMAP(BITMAP1, BITMAP2, MIN, BITNUM, CODE) \
 do {                                                                   \
@@ -282,7 +283,7 @@ do {                                                                        \
 
 /* Loop over all bits in BITMAP1 and BITMAP2, starting with MIN, setting
    BITNUM to the bit number and executing CODE for all bits that are set in
-   the both bitmaps. */
+   the both bitmaps.  */
 
 #define EXECUTE_IF_AND_IN_BITMAP(BITMAP1, BITMAP2, MIN, BITNUM, CODE)  \
 do {                                                                   \
@@ -311,7 +312,7 @@ do {                                                                        \
                                                                        \
       if (ptr2_ == 0)                                                  \
        {                                                               \
-         /* If there are no more elements in BITMAP2, exit loop now.*/ \
+         /* If there are no more elements in BITMAP2, exit loop now.  */ \
          ptr1_ = (bitmap_element *)0;                                  \
          break;                                                        \
        }                                                               \