Commit ca7fd9cd by Kazu Hirata Committed by Kazu Hirata

alias.c: Fix formatting.

	* alias.c: Fix formatting.
	* attribs.c: Likewise.
	* bb-reorder.c: Likewise.
	* bitmap.c: Likewise.
	* bitmap.h: Likewise.
	* builtins.c: Likewise.

From-SVN: r53898
parent 7aacf989
2002-05-26 Kazu Hirata <kazu@cs.umass.edu>
* alias.c: Fix formatting.
* attribs.c: Likewise.
* bb-reorder.c: Likewise.
* bitmap.c: Likewise.
* bitmap.h: Likewise.
* builtins.c: Likewise.
Sun May 26 14:00:44 CEST 2002 Jan Hubicka <jh@suse.cz>
* reload.c (find_valid_class): Accept new argument DEST,
......
......@@ -323,7 +323,7 @@ split_specs_attrs (specs_attrs, declspecs, prefix_attributes)
tree t, s, a, next, specs, attrs;
/* This can happen after an __extension__ in pedantic mode. */
if (specs_attrs != NULL_TREE
if (specs_attrs != NULL_TREE
&& TREE_CODE (specs_attrs) == INTEGER_CST)
{
*declspecs = NULL_TREE;
......
......@@ -122,9 +122,9 @@ make_reorder_chain ()
next = bb;
break;
}
if (next)
prev = make_reorder_chain_1 (next, prev);
prev = make_reorder_chain_1 (next, prev);
}
while (next);
RBI (prev)->next = NULL;
......
......@@ -236,7 +236,7 @@ bitmap_clear (head)
bitmap_free = element;
}
head->first = head->current = 0;
head->first = head->current = 0;
}
/* Copy a bitmap to another bitmap. */
......@@ -397,7 +397,7 @@ bitmap_bit_p (head, bit)
/* Return the bit number of the first set bit in the bitmap, or -1
if the bitmap is empty. */
int
int
bitmap_first_set_bit (a)
bitmap a;
{
......@@ -450,7 +450,7 @@ bitmap_first_set_bit (a)
/* Return the bit number of the last set bit in the bitmap, or -1
if the bitmap is empty. */
int
int
bitmap_last_set_bit (a)
bitmap a;
{
......
......@@ -20,7 +20,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA. */
#ifndef GCC_BITMAP_H
#define GCC_BITMAP_H
#define GCC_BITMAP_H
/* Number of words to use for each element in the linked list. */
......@@ -129,7 +129,7 @@ do { \
bitmap temp_bitmap_ = (bitmap) alloca (sizeof (bitmap_head)); \
(PTR) = bitmap_initialize (temp_bitmap_); \
} while (0)
/* Allocate a bitmap with xmalloc. */
#define BITMAP_XMALLOC() \
bitmap_initialize ((bitmap) xmalloc (sizeof (bitmap_head)))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment