]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
[multiple changes]
authorRoland Stigge <stigge@antcom.de>
Wed, 19 Oct 2011 13:20:22 +0000 (13:20 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Wed, 19 Oct 2011 13:20:22 +0000 (13:20 +0000)
2011-10-19  Roland Stigge  <stigge@antcom.de>

PR translation/48638
* plugin.c (add_new_plugin): Fix typo in fatal_error message.

2011-10-19  Roland Stigge  <stigge@antcom.de>

PR translation/49517
* config/rx/rx.c (rx_print_operand): Fix typo in warning message.

/cp
2011-10-19  Roland Stigge  <stigge@antcom.de>

PR translation/49704
* semantics.c (potential_constant_expression_1): Use "AST" instead of
"ast" in sorry message.

From-SVN: r180188

gcc/ChangeLog
gcc/config/rx/rx.c
gcc/cp/ChangeLog
gcc/cp/semantics.c
gcc/plugin.c

index ba3f7073b3a3a4235f9d5a641984b8aab186f61b..3eb106f78f230d0814d16c87f5e08116086f2f88 100644 (file)
@@ -1,3 +1,13 @@
+2011-10-19  Roland Stigge  <stigge@antcom.de>
+
+       PR translation/48638
+       * plugin.c (add_new_plugin): Fix typo in fatal_error message.
+
+2011-10-19  Roland Stigge  <stigge@antcom.de>
+
+       PR translation/49517
+       * config/rx/rx.c (rx_print_operand): Fix typo in warning message.
+
 2011-10-19  Richard Guenther  <rguenther@suse.de>
 
        PR middle-end/50768
index 6ff9418c9d8a078141da4dae1323af053b5d3997..c9720eb3e155713fe040955281ffb0998ad520a1 100644 (file)
@@ -637,7 +637,7 @@ rx_print_operand (FILE * file, rtx op, int letter)
        case 0xb: fprintf (file, "fintv"); break;
        case 0xc: fprintf (file, "intb"); break;
        default:
-         warning (0, "unreocgnized control register number: %d - using 'psw'",
+         warning (0, "unrecognized control register number: %d - using 'psw'",
                   (int) INTVAL (op));
          fprintf (file, "psw");
          break;
index 375c808dc38c032a1829a6f55ed02568430d3662..3b5c14c007786824f44079b3ff4863c819964805 100644 (file)
@@ -1,3 +1,9 @@
+2011-10-19  Roland Stigge  <stigge@antcom.de>
+
+       PR translation/49704
+       * semantics.c (potential_constant_expression_1): Use "AST" instead of
+       "ast" in sorry message.
+
 2011-10-19  Paolo Carlini  <paolo.carlini@oracle.com>
 
        PR c++/38761
index 32024135a6dd47d2807230d5f99e3ea6b302aa59..42195be4a81713340ca53d23bf4d358952bd21ee 100644 (file)
@@ -8341,7 +8341,7 @@ potential_constant_expression_1 (tree t, bool want_rval, tsubst_flags_t flags)
       return false;
 
     default:
-      sorry ("unexpected ast of kind %s", tree_code_name[TREE_CODE (t)]);
+      sorry ("unexpected AST of kind %s", tree_code_name[TREE_CODE (t)]);
       gcc_unreachable();
       return false;
     }
index 3906bffc68bf6ac4aa23e22a90275946d2e4491a..63d1cae4ede4c2417f7ec6a1a719677fe99b6cb3 100644 (file)
@@ -1,5 +1,5 @@
 /* Support for GCC plugin mechanism.
-   Copyright (C) 2009, 2010 Free Software Foundation, Inc.
+   Copyright (C) 2009, 2010, 2011 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
@@ -149,7 +149,7 @@ add_new_plugin (const char* plugin_name)
                            plugin_name, ".so", NULL);
       if (access (plugin_name, R_OK))
        fatal_error
-         ("inacessible plugin file %s expanded from short plugin name %s: %m",
+         ("inaccessible plugin file %s expanded from short plugin name %s: %m",
           plugin_name, base_name);
     }
   else