diff options
author | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-10-19 13:20:22 +0000 |
---|---|---|
committer | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-10-19 13:20:22 +0000 |
commit | 98a5f45d2bdb69c2792f9876489aa580b6f09d52 (patch) | |
tree | 51b3df315233b723b3493ae21ab0c79f22b96f45 /gcc/plugin.c | |
parent | 34e731499b372f599449d38fae08e34f535a9f7d (diff) | |
download | gcc-98a5f45d2bdb69c2792f9876489aa580b6f09d52.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@180188 138bc75d-0d04-0410-961f-82ee72b054a4
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 |