diff options
author | Kyrylo Tkachov <kyrylo.tkachov@arm.com> | 2016-06-20 11:12:07 +0000 |
---|---|---|
committer | Kyrylo Tkachov <ktkachov@gcc.gnu.org> | 2016-06-20 11:12:07 +0000 |
commit | ff7b374b788397f2023d67b0b17cc161b8e15fa9 (patch) | |
tree | bae7d35fb9a3607b4111ff93986fea2ca4571de2 | |
parent | 554cfc9eb126d071f56d4d4aab50837d7521808b (diff) | |
download | gcc-ff7b374b788397f2023d67b0b17cc161b8e15fa9.zip gcc-ff7b374b788397f2023d67b0b17cc161b8e15fa9.tar.gz gcc-ff7b374b788397f2023d67b0b17cc161b8e15fa9.tar.bz2 |
[typo] alignement -> alignment
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
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/ada/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/ada/exp_util.adb | 2 | ||||
-rw-r--r-- | gcc/params.def | 2 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gfortran.dg/common_align_2.f90 | 2 | ||||
-rw-r--r-- | gcc/tree.h | 2 |
7 files changed, 20 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2edfda0..21ffe33 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index b661d38..65ae82f 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -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. diff --git a/gcc/ada/exp_util.adb b/gcc/ada/exp_util.adb index fcd16a2..bed9ac1 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 2f552eb..894b7f3 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 970dda1..542306a 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -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 diff --git a/gcc/testsuite/gfortran.dg/common_align_2.f90 b/gcc/testsuite/gfortran.dg/common_align_2.f90 index 09dd3e1..66b10e6 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 <burnus@gcc.gnu.org> @@ -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) |