mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 13:51:00 +08:00
[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
This commit is contained in:
parent
e256dfce35
commit
9aaa9e894a
@ -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
|
||||
|
@ -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;
|
||||
|
@ -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
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user