diff options
Diffstat (limited to 'gcc/bitmap.h')
-rw-r--r-- | gcc/bitmap.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/gcc/bitmap.h b/gcc/bitmap.h index d1e410facb6..802642af804 100644 --- a/gcc/bitmap.h +++ b/gcc/bitmap.h @@ -41,17 +41,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 +70,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 +158,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 +215,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 +282,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 { \ |