Commit f8a89236 by Richard Kenner

Formatting changes.

From-SVN: r9048
parent 3bda6d11
...@@ -2784,7 +2784,6 @@ build_block (vars, tags, subblocks, supercontext, chain) ...@@ -2784,7 +2784,6 @@ build_block (vars, tags, subblocks, supercontext, chain)
return block; return block;
} }
/* Return a declaration like DDECL except that its DECL_MACHINE_ATTRIBUTE /* Return a declaration like DDECL except that its DECL_MACHINE_ATTRIBUTE
is ATTRIBUTE. */ is ATTRIBUTE. */
...@@ -2799,8 +2798,7 @@ build_decl_attribute_variant (ddecl, attribute) ...@@ -2799,8 +2798,7 @@ build_decl_attribute_variant (ddecl, attribute)
/* Return a type like TTYPE except that its TYPE_ATTRIBUTE /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
is ATTRIBUTE. is ATTRIBUTE.
Such modified types already made are recorded so that duplicates Record such modified types already made so we don't make duplicates. */
are not made. */
tree tree
build_type_attribute_variant (ttype, attribute) build_type_attribute_variant (ttype, attribute)
...@@ -2870,9 +2868,7 @@ valid_machine_attribute (new_attr, decl, type) ...@@ -2870,9 +2868,7 @@ valid_machine_attribute (new_attr, decl, type)
tree type_attr_list = TYPE_ATTRIBUTES (type); tree type_attr_list = TYPE_ATTRIBUTES (type);
#ifdef VALID_MACHINE_DECL_ATTRIBUTE #ifdef VALID_MACHINE_DECL_ATTRIBUTE
if (VALID_MACHINE_DECL_ATTRIBUTE (decl, if (VALID_MACHINE_DECL_ATTRIBUTE (decl, decl_attr_list, new_attr))
decl_attr_list,
new_attr))
{ {
tree attr_list; tree attr_list;
int in_list = 0; int in_list = 0;
...@@ -2892,9 +2888,7 @@ valid_machine_attribute (new_attr, decl, type) ...@@ -2892,9 +2888,7 @@ valid_machine_attribute (new_attr, decl, type)
#endif #endif
#ifdef VALID_MACHINE_TYPE_ATTRIBUTE #ifdef VALID_MACHINE_TYPE_ATTRIBUTE
if (VALID_MACHINE_TYPE_ATTRIBUTE (type, if (VALID_MACHINE_TYPE_ATTRIBUTE (type, type_attr_list, new_attr))
type_attr_list,
new_attr))
{ {
tree attr_list; tree attr_list;
int in_list = 0; int in_list = 0;
...@@ -2905,7 +2899,7 @@ valid_machine_attribute (new_attr, decl, type) ...@@ -2905,7 +2899,7 @@ valid_machine_attribute (new_attr, decl, type)
if (TREE_VALUE (attr_list) == new_attr) if (TREE_VALUE (attr_list) == new_attr)
in_list = 1; in_list = 1;
if (!in_list) if (! in_list)
type_attr_list = tree_cons (NULL_TREE, new_attr, type_attr_list); type_attr_list = tree_cons (NULL_TREE, new_attr, type_attr_list);
decl = build_type_attribute_variant (type, type_attr_list); decl = build_type_attribute_variant (type, type_attr_list);
......
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