[typo] alignement -> alignment
authorKyrylo Tkachov <kyrylo.tkachov@arm.com>
Mon, 20 Jun 2016 11:12:07 +0000 (11:12 +0000)
committerKyrylo Tkachov <ktkachov@gcc.gnu.org>
Mon, 20 Jun 2016 11:12:07 +0000 (11:12 +0000)
2016-06-20  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>

    * params.def (PARAM_ALIGN_LOOP_ITERATIONS): Use "alignment" instead of
    "alignement".
    * tree.h (TYPE_ALIGN): Likewise.

2016-06-20  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>

    * exp_util.adb (Safe_Unchecked_Type_Conversion): Use "alignment"
    instead of "alignement".

2016-06-20  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>

    * gfortran.dg/common_align_2.f90: Use "alignment" instead of
    "alignement".

From-SVN: r237590

gcc/ChangeLog
gcc/ada/ChangeLog
gcc/ada/exp_util.adb
gcc/params.def
gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/common_align_2.f90
gcc/tree.h

index 2edfda0c7ea90621047326d7f7e9424398040143..21ffe33da8717ecc550ecc6925ad392babbe9684 100644 (file)
@@ -1,3 +1,9 @@
+2016-06-20  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
+
+       * params.def (PARAM_ALIGN_LOOP_ITERATIONS): Use "alignment" instead of
+       "alignement".
+       * tree.h (TYPE_ALIGN): Likewise.
+
 2016-06-20  Georg-Johann Lay  <avr@gjlay.de>
 
        PR target/71103
index b661d38e5d45c24a9d9cabd6c137c5302285095d..65ae82f30ebf02440d20e033c3ee1be217a36223 100644 (file)
@@ -1,3 +1,8 @@
+2016-06-20  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
+
+       * exp_util.adb (Safe_Unchecked_Type_Conversion): Use "alignment"
+       instead of "alignement".
+
 2016-06-16  Gary Dismukes  <dismukes@adacore.com>
 
        * sem_util.adb: Minor typo fix.
index fcd16a26cb0126113616534f3e81926d0b1a2a83..bed9ac1641d2fa6144e6c34e790a9bd8c059e60f 100644 (file)
@@ -8645,7 +8645,7 @@ package body Exp_Util is
       --  alignment is known to be at least the maximum alignment for the
       --  target or if both alignments are known and the output type's
       --  alignment is no stricter than the input's. We can use the component
-      --  type alignement for an array if a type is an unpacked array type.
+      --  type alignment for an array if a type is an unpacked array type.
 
       if Present (Alignment_Clause (Otyp)) then
          Oalign := Expr_Value (Expression (Alignment_Clause (Otyp)));
index 2f552eb4abf421f8eb30ea3161cc32b5e13dbc0d..894b7f31a00c8c3b545def7d999f8e06f2b23e83 100644 (file)
@@ -405,7 +405,7 @@ DEFPARAM (PARAM_ALIGN_THRESHOLD,
 
 DEFPARAM (PARAM_ALIGN_LOOP_ITERATIONS,
          "align-loop-iterations",
-         "Loops iterating at least selected number of iterations will get loop alignement..",
+         "Loops iterating at least selected number of iterations will get loop alignment..",
          4, 0, 0)
 
 /* For guessed profiles, the loops having unknown number of iterations
index 970dda1d72e8eafe06cd2a824fa821e4ed3958ba..542306a83aa55c1d8a20ae9f46450ab6a9cd5715 100644 (file)
@@ -1,3 +1,8 @@
+2016-06-20  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
+
+       * gfortran.dg/common_align_2.f90: Use "alignment" instead of
+       "alignement".
+
 2016-06-20  Georg-Johann Lay  <avr@gjlay.de>
 
        PR target/71103
index 09dd3e1fa0a4880333964db6e9d0d7582fbff44d..66b10e6ea9dd5bc12c3278bee7750a9efe83c855 100644 (file)
@@ -1,6 +1,6 @@
 ! { dg-do run }
 ! { dg-options "-pedantic-errors -mdalign" { target sh*-*-* } }
-! Tests the fix for PR37614, in which the alignement of commons followed
+! Tests the fix for PR37614, in which the alignment of commons followed
 ! g77 rather than the standard or other compilers.
 !
 ! Contributed by Tobias Burnus  <burnus@gcc.gnu.org>
index 90413fcf2090043619e8bf190c11c066f63caa74..012fa542cf302b6668485e16ae9c7602660bc24a 100644 (file)
@@ -1868,7 +1868,7 @@ extern machine_mode element_mode (const_tree t);
 
 /* The alignment necessary for objects of this type.
    The value is an int, measured in bits and must be a power of two.
-   We support also an "alignement" of zero.  */
+   We support also an "alignment" of zero.  */
 #define TYPE_ALIGN(NODE) \
     (TYPE_CHECK (NODE)->type_common.align \
      ? ((unsigned)1) << ((NODE)->type_common.align - 1) : 0)