aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>2001-07-01 12:50:11 -0400
committerRichard Kenner <kenner@gcc.gnu.org>2001-07-01 12:50:11 -0400
commit128e8aa95204284655c889767409150181ce0b19 (patch)
treededec47ec935fdffe3109fe8d5f82c0b5cf5d807 /gcc
parentbe8ac49a3e4f2f84f04c45ceb4d914e070cb6099 (diff)
downloadgcc-128e8aa95204284655c889767409150181ce0b19.zip
gcc-128e8aa95204284655c889767409150181ce0b19.tar.gz
gcc-128e8aa95204284655c889767409150181ce0b19.tar.bz2
Minor comment and whitespace changes
From-SVN: r43673
Diffstat (limited to 'gcc')
-rw-r--r--gcc/tree.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/gcc/tree.c b/gcc/tree.c
index 04d4647..fdae851 100644
--- a/gcc/tree.c
+++ b/gcc/tree.c
@@ -422,8 +422,8 @@ make_node (code)
DECL_SOURCE_FILE (t) =
(input_filename) ? input_filename : "<built-in>";
DECL_UID (t) = next_decl_uid++;
- /* Note that we have not yet computed the alias set for this
- declaration. */
+
+ /* We have not yet computed the alias set for this declaration. */
DECL_POINTER_ALIAS_SET (t) = -1;
break;
@@ -432,10 +432,12 @@ make_node (code)
TYPE_ALIGN (t) = char_type_node ? TYPE_ALIGN (char_type_node) : 0;
TYPE_USER_ALIGN (t) = 0;
TYPE_MAIN_VARIANT (t) = t;
+
+ /* Default to no attributes for type, but let target change that. */
TYPE_ATTRIBUTES (t) = NULL_TREE;
- (* target.set_default_type_attributes) (t);
- /* Note that we have not yet computed the alias set for this
- type. */
+ (*target.set_default_type_attributes) (t);
+
+ /* We have not yet computed the alias set for this type. */
TYPE_ALIAS_SET (t) = -1;
break;