aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2004-10-20 13:14:01 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2004-10-20 13:14:01 +0000
commit34bc6352dcfec137ff217c125f2569b3f00bf345 (patch)
tree55a269232764dc9029988e2f1d9489bcdee5ad96
parenta904937b638be68cbd2eb7814700b23651c24962 (diff)
downloadgcc-34bc6352dcfec137ff217c125f2569b3f00bf345.zip
gcc-34bc6352dcfec137ff217c125f2569b3f00bf345.tar.gz
gcc-34bc6352dcfec137ff217c125f2569b3f00bf345.tar.bz2
* stor-layout.c: Fix a comment typo.
From-SVN: r89331
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/stor-layout.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index e3ec74b..f6266ac 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,9 @@
2004-10-20 Kazu Hirata <kazu@cs.umass.edu>
+ * stor-layout.c: Fix a comment typo.
+
+2004-10-20 Kazu Hirata <kazu@cs.umass.edu>
+
* expr.c (store_field): Remove two arguments value_mode and
unsignedp.
(expand_assignment, store_constructor_field,
diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c
index 10496b8..6826678 100644
--- a/gcc/stor-layout.c
+++ b/gcc/stor-layout.c
@@ -1577,7 +1577,7 @@ layout_type (tree type)
TYPE_SIZE (type) = int_const_binop (MULT_EXPR, TYPE_SIZE (innertype),
nunits_tree, 0);
- /* Always natually align vectors. This prevents ABI changes
+ /* Always naturally align vectors. This prevents ABI changes
depending on whether or not native vector modes are supported. */
TYPE_ALIGN (type) = tree_low_cst (TYPE_SIZE (type), 0);
break;