diff options
author | Roland Stigge <stigge@antcom.de> | 2011-10-19 13:20:22 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2011-10-19 13:20:22 +0000 |
commit | 9aaa9e894a57c0a9b30b6a0bbdaceb293f41798e (patch) | |
tree | 51b3df315233b723b3493ae21ab0c79f22b96f45 /gcc/plugin.c | |
parent | e256dfce35cac1ab31628bd03f1881e145cb137e (diff) | |
download | gcc-9aaa9e894a57c0a9b30b6a0bbdaceb293f41798e.tar.gz |
[multiple changes]
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
Diffstat (limited to 'gcc/plugin.c')
-rw-r--r-- | gcc/plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/plugin.c b/gcc/plugin.c index 3906bffc68b..63d1cae4ede 100644 --- a/gcc/plugin.c +++ b/gcc/plugin.c @@ -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 |