aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1995-02-23 07:06:03 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1995-02-23 07:06:03 -0500
commitf8a89236c4bf5e3f1d3e60a5a1df32f43f8c5b17 (patch)
tree5a0a2ed8f8049c93b410f18a08b01be73ee214b1 /gcc
parent3bda6d11ef9912f7beb23011ff4d8b263d5128b5 (diff)
downloadgcc-f8a89236c4bf5e3f1d3e60a5a1df32f43f8c5b17.zip
gcc-f8a89236c4bf5e3f1d3e60a5a1df32f43f8c5b17.tar.gz
gcc-f8a89236c4bf5e3f1d3e60a5a1df32f43f8c5b17.tar.bz2
Formatting changes.
From-SVN: r9048
Diffstat (limited to 'gcc')
-rw-r--r--gcc/tree.c14
1 files changed, 4 insertions, 10 deletions
diff --git a/gcc/tree.c b/gcc/tree.c
index 0133feb..cdbba0c 100644
--- a/gcc/tree.c
+++ b/gcc/tree.c
@@ -2783,7 +2783,6 @@ build_block (vars, tags, subblocks, supercontext, chain)
BLOCK_CHAIN (block) = chain;
return block;
}
-
/* Return a declaration like DDECL except that its DECL_MACHINE_ATTRIBUTE
is ATTRIBUTE. */
@@ -2799,8 +2798,7 @@ build_decl_attribute_variant (ddecl, attribute)
/* Return a type like TTYPE except that its TYPE_ATTRIBUTE
is ATTRIBUTE.
- Such modified types already made are recorded so that duplicates
- are not made. */
+ Record such modified types already made so we don't make duplicates. */
tree
build_type_attribute_variant (ttype, attribute)
@@ -2870,9 +2868,7 @@ valid_machine_attribute (new_attr, decl, type)
tree type_attr_list = TYPE_ATTRIBUTES (type);
#ifdef VALID_MACHINE_DECL_ATTRIBUTE
- if (VALID_MACHINE_DECL_ATTRIBUTE (decl,
- decl_attr_list,
- new_attr))
+ if (VALID_MACHINE_DECL_ATTRIBUTE (decl, decl_attr_list, new_attr))
{
tree attr_list;
int in_list = 0;
@@ -2892,9 +2888,7 @@ valid_machine_attribute (new_attr, decl, type)
#endif
#ifdef VALID_MACHINE_TYPE_ATTRIBUTE
- if (VALID_MACHINE_TYPE_ATTRIBUTE (type,
- type_attr_list,
- new_attr))
+ if (VALID_MACHINE_TYPE_ATTRIBUTE (type, type_attr_list, new_attr))
{
tree attr_list;
int in_list = 0;
@@ -2905,7 +2899,7 @@ valid_machine_attribute (new_attr, decl, type)
if (TREE_VALUE (attr_list) == new_attr)
in_list = 1;
- if (!in_list)
+ if (! in_list)
type_attr_list = tree_cons (NULL_TREE, new_attr, type_attr_list);
decl = build_type_attribute_variant (type, type_attr_list);