From: Kyrylo Tkachov Date: Mon, 20 Jun 2016 11:12:07 +0000 (+0000) Subject: [typo] alignement -> alignment X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ff7b374b788397f2023d67b0b17cc161b8e15fa9;p=gcc.git [typo] alignement -> alignment 2016-06-20 Kyrylo Tkachov * params.def (PARAM_ALIGN_LOOP_ITERATIONS): Use "alignment" instead of "alignement". * tree.h (TYPE_ALIGN): Likewise. 2016-06-20 Kyrylo Tkachov * exp_util.adb (Safe_Unchecked_Type_Conversion): Use "alignment" instead of "alignement". 2016-06-20 Kyrylo Tkachov * gfortran.dg/common_align_2.f90: Use "alignment" instead of "alignement". From-SVN: r237590 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2edfda0c7ea..21ffe33da87 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2016-06-20 Kyrylo Tkachov + + * params.def (PARAM_ALIGN_LOOP_ITERATIONS): Use "alignment" instead of + "alignement". + * tree.h (TYPE_ALIGN): Likewise. + 2016-06-20 Georg-Johann Lay PR target/71103 diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index b661d38e5d4..65ae82f30eb 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,8 @@ +2016-06-20 Kyrylo Tkachov + + * exp_util.adb (Safe_Unchecked_Type_Conversion): Use "alignment" + instead of "alignement". + 2016-06-16 Gary Dismukes * sem_util.adb: Minor typo fix. diff --git a/gcc/ada/exp_util.adb b/gcc/ada/exp_util.adb index fcd16a26cb0..bed9ac1641d 100644 --- a/gcc/ada/exp_util.adb +++ b/gcc/ada/exp_util.adb @@ -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))); diff --git a/gcc/params.def b/gcc/params.def index 2f552eb4abf..894b7f31a00 100644 --- a/gcc/params.def +++ b/gcc/params.def @@ -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 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 970dda1d72e..542306a83aa 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2016-06-20 Kyrylo Tkachov + + * gfortran.dg/common_align_2.f90: Use "alignment" instead of + "alignement". + 2016-06-20 Georg-Johann Lay PR target/71103 diff --git a/gcc/testsuite/gfortran.dg/common_align_2.f90 b/gcc/testsuite/gfortran.dg/common_align_2.f90 index 09dd3e1fa0a..66b10e6ea9d 100644 --- a/gcc/testsuite/gfortran.dg/common_align_2.f90 +++ b/gcc/testsuite/gfortran.dg/common_align_2.f90 @@ -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 diff --git a/gcc/tree.h b/gcc/tree.h index 90413fcf209..012fa542cf3 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -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)