aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/utils2.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-05-29 03:57:15 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-05-29 03:57:15 +0000
commit5ff62c2e815d91b79229cb15058828724d956f85 (patch)
tree2da0d7b83f595be76a4a27d1501d770959ab4e85 /gcc/ada/utils2.c
parentfe21ff2d90d45aad1e0f7e60fc195fcbb5501ebb (diff)
downloadgcc-5ff62c2e815d91b79229cb15058828724d956f85.zip
gcc-5ff62c2e815d91b79229cb15058828724d956f85.tar.gz
gcc-5ff62c2e815d91b79229cb15058828724d956f85.tar.bz2
cal.c, [...]: Fix comment typos.
* cal.c, decl.c, init.c, raise.c, trans.c, utils2.c: Fix comment typos. * gnat_rm.texi, gnat_ugn.texi: Fix typos. From-SVN: r100312
Diffstat (limited to 'gcc/ada/utils2.c')
-rw-r--r--gcc/ada/utils2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/utils2.c b/gcc/ada/utils2.c
index 6ca8b99..ae56b42 100644
--- a/gcc/ada/utils2.c
+++ b/gcc/ada/utils2.c
@@ -176,7 +176,7 @@ known_alignment (tree exp)
case PLUS_EXPR:
case MINUS_EXPR:
/* If two address are added, the alignment of the result is the
- minimum of the two aligments. */
+ minimum of the two alignments. */
lhs = known_alignment (TREE_OPERAND (exp, 0));
rhs = known_alignment (TREE_OPERAND (exp, 1));
this_alignment = MIN (lhs, rhs);