diff options
author | Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> | 2012-03-13 10:22:56 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2012-03-13 10:22:56 +0000 |
commit | d47657bd1dff3050fceaf1c755db4c47a536bd36 (patch) | |
tree | f5ba6e0bac687ebc43f7ff85e1263ac4da958875 /gcc | |
parent | 5bef73a14e3d70574c4b28a9187d138caed78796 (diff) | |
download | gcc-d47657bd1dff3050fceaf1c755db4c47a536bd36.zip gcc-d47657bd1dff3050fceaf1c755db4c47a536bd36.tar.gz gcc-d47657bd1dff3050fceaf1c755db4c47a536bd36.tar.bz2 |
Fix sgi typos
libgcc:
* config/arm/crtn.S: Fix typo.
gcc/testsuite:
* ada/acats/tests/cd/cdd1001.a (CDD1001): Fix typo.
gcc:
* config/microblaze/microblaze.md: Fix typo.
* tree-if-conv.c: Likewise.
* tree-vect-patterns.c: Likewise.
From-SVN: r185325
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/microblaze/microblaze.md | 4 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/ada/acats/tests/cd/cdd1001.a | 2 | ||||
-rw-r--r-- | gcc/tree-if-conv.c | 4 | ||||
-rw-r--r-- | gcc/tree-vect-patterns.c | 2 |
6 files changed, 16 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fa5a659..17aa11f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,11 @@ 2012-03-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> + * config/microblaze/microblaze.md: Fix typo. + * tree-if-conv.c: Likewise. + * tree-vect-patterns.c: Likewise. + +2012-03-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> + * config.gcc (extra_passes): Remove. * configure.ac (extra_passes): Don't substitute. * configure: Regenerate. diff --git a/gcc/config/microblaze/microblaze.md b/gcc/config/microblaze/microblaze.md index a4c341f..18221b5 100644 --- a/gcc/config/microblaze/microblaze.md +++ b/gcc/config/microblaze/microblaze.md @@ -1,5 +1,5 @@ ;; microblaze.md -- Machine description for Xilinx MicroBlaze processors. -;; Copyright 2009, 2010 Free Software Foundation, Inc. +;; Copyright 2009, 2010, 2012 Free Software Foundation, Inc. ;; Contributed by Michael Eager <eager@eagercon.com>. @@ -1024,7 +1024,7 @@ } ) -;; Added for status resgisters +;; Added for status registers (define_insn "movsi_status" [(set (match_operand:SI 0 "register_operand" "=d,d,z") (match_operand:SI 1 "register_operand" "z,d,d"))] diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 8a6c975..e2f1b87 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2012-03-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> + + * ada/acats/tests/cd/cdd1001.a (CDD1001): Fix typo. + 2012-03-12 Bill Schmidt <wschmidt@linux.vnet.ibm.com> PR tree-optimization/46728 diff --git a/gcc/testsuite/ada/acats/tests/cd/cdd1001.a b/gcc/testsuite/ada/acats/tests/cd/cdd1001.a index 3e16f5d..0641798 100644 --- a/gcc/testsuite/ada/acats/tests/cd/cdd1001.a +++ b/gcc/testsuite/ada/acats/tests/cd/cdd1001.a @@ -84,7 +84,7 @@ begin for I in B'Range loop if B (I).all /= Stream_Element (Ident_Int (Integer (I)) * Ident_Int (3)) then - Failed ("Unable to build access values desginating elements " & + Failed ("Unable to build access values designating elements " & "of a Stream_Element_Array"); end if; end loop; diff --git a/gcc/tree-if-conv.c b/gcc/tree-if-conv.c index 99f3a9b..55616d5 100644 --- a/gcc/tree-if-conv.c +++ b/gcc/tree-if-conv.c @@ -1,5 +1,5 @@ /* If-conversion for vectorizer. - Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 + Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. Contributed by Devang Patel <dpatel@apple.com> @@ -712,7 +712,7 @@ if_convertible_gimple_assign_stmt_p (gimple stmt, /* Return true when STMT is if-convertible. A statement is if-convertible if: - - it is an if-convertible GIMPLE_ASSGIN, + - it is an if-convertible GIMPLE_ASSIGN, - it is a GIMPLE_LABEL or a GIMPLE_COND. */ static bool diff --git a/gcc/tree-vect-patterns.c b/gcc/tree-vect-patterns.c index d955021..2190b8a 100644 --- a/gcc/tree-vect-patterns.c +++ b/gcc/tree-vect-patterns.c @@ -462,7 +462,7 @@ vect_handle_widen_op_by_const (gimple stmt, enum tree_code code, where type 'TYPE' is at least double the size of type 'type'. - Also detect unsgigned cases: + Also detect unsigned cases: unsigned type a_t, b_t; unsigned TYPE u_prod_T; |