aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancois-Xavier Coudert <coudert@clipper.ens.fr>2005-09-17 20:58:01 +0200
committerFrançois-Xavier Coudert <fxcoudert@gcc.gnu.org>2005-09-17 18:58:01 +0000
commit31043f6cfc3612e0278f2dea1a8e3ce050b72798 (patch)
tree359a816dbf10dd679ca548628aef0b485522372a
parent652b0932d7753aec43306dee62e5005492a6cf3c (diff)
downloadgcc-31043f6cfc3612e0278f2dea1a8e3ce050b72798.zip
gcc-31043f6cfc3612e0278f2dea1a8e3ce050b72798.tar.gz
gcc-31043f6cfc3612e0278f2dea1a8e3ce050b72798.tar.bz2
re PR fortran/15586 (gfortran should support i18n in its compiler messages)
PR fortran/15586 * arith.c (gfc_arith_error): Add translation support for error messages. * array.c (gfc_match_array_ref): Likewise. (gfc_match_array_spec): Likewise. * check.c (must_be): Add msgid convention to third argument. (same_type_check): Add translation support for error message. (rank_check): Likewise. (kind_value_check): Likewise. (gfc_check_associated): Correct typo. (gfc_check_reshape): Add translation support for error message. (gfc_check_spread): Likewise. * error.c (error_printf): Add nocmsgid convention to argument. (gfc_warning, gfc_notify_std, gfc_warning_now, gfc_warning_check) (gfc_error, gfc_error_now): Likewise. (gfc_status): Add cmsgid convention to argument. * expr.c (gfc_extract_int): Add translation support for error messages. (gfc_check_conformance): Add msgid convention to argument. (gfc_check_pointer_assign): Correct tabbing. * gfortran.h: Include intl.h header. Remove prototype for gfc_article. * gfortranspec.c: Include intl.h header. (lang_specific_driver): Add translation support for --version. * io.c (check_format): Add translation support for error message. (format_item_1): Likewise. (data_desc): Likewise. * matchexp.c: Likewise. * misc.c (gfc_article): Remove function. * module.c (bad_module): Use msgid convention. Add translation support for error messages. (require_atom): Add translation support for error messages. * parse.c (gfc_ascii_statement): Likewise. (gfc_state_name): Likewise. * primary.c (match_boz_constant): Reorganise error messages for translations. * resolve.c (resolve_entries): Likewise. (resolve_operator): Add translation support for error messages. (gfc_resolve_expr): Use msgid convention. Reorganise error messages for translations. (resolve_symbol): Add translation support for error messages. * symbol.c (gfc_add_procedure): Remove use of gfc_article function. * trans-const.c (gfc_build_string_const): Use msgid convention. * exgettext: Add a new nocmsgid convention for arguments that should be marked as no-c-format. * gcc.pot: Regenerate. From-SVN: r104372
-rw-r--r--gcc/fortran/ChangeLog45
-rw-r--r--gcc/fortran/arith.c14
-rw-r--r--gcc/fortran/array.c8
-rw-r--r--gcc/fortran/check.c23
-rw-r--r--gcc/fortran/error.c50
-rw-r--r--gcc/fortran/expr.c21
-rw-r--r--gcc/fortran/gfortran.h2
-rw-r--r--gcc/fortran/gfortranspec.c15
-rw-r--r--gcc/fortran/io.c22
-rw-r--r--gcc/fortran/matchexp.c2
-rw-r--r--gcc/fortran/misc.c30
-rw-r--r--gcc/fortran/module.c28
-rw-r--r--gcc/fortran/parse.c44
-rw-r--r--gcc/fortran/primary.c28
-rw-r--r--gcc/fortran/resolve.c99
-rw-r--r--gcc/fortran/symbol.c3
-rw-r--r--gcc/fortran/trans-const.c9
-rw-r--r--gcc/po/ChangeLog7
-rw-r--r--gcc/po/exgettext2
-rw-r--r--gcc/po/gcc.pot14386
20 files changed, 9417 insertions, 5421 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index fc3cfe3..69168e5 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,48 @@
+2005-09-17 Francois-Xavier Coudert <coudert@clipper.ens.fr>
+
+ PR fortran/15586
+ * arith.c (gfc_arith_error): Add translation support for error
+ messages.
+ * array.c (gfc_match_array_ref): Likewise.
+ (gfc_match_array_spec): Likewise.
+ * check.c (must_be): Add msgid convention to third argument.
+ (same_type_check): Add translation support for error message.
+ (rank_check): Likewise.
+ (kind_value_check): Likewise.
+ (gfc_check_associated): Correct typo.
+ (gfc_check_reshape): Add translation support for error message.
+ (gfc_check_spread): Likewise.
+ * error.c (error_printf): Add nocmsgid convention to argument.
+ (gfc_warning, gfc_notify_std, gfc_warning_now, gfc_warning_check)
+ (gfc_error, gfc_error_now): Likewise.
+ (gfc_status): Add cmsgid convention to argument.
+ * expr.c (gfc_extract_int): Add translation support for error
+ messages.
+ (gfc_check_conformance): Add msgid convention to argument.
+ (gfc_check_pointer_assign): Correct tabbing.
+ * gfortran.h: Include intl.h header. Remove prototype for gfc_article.
+ * gfortranspec.c: Include intl.h header.
+ (lang_specific_driver): Add translation support for --version.
+ * io.c (check_format): Add translation support for error message.
+ (format_item_1): Likewise.
+ (data_desc): Likewise.
+ * matchexp.c: Likewise.
+ * misc.c (gfc_article): Remove function.
+ * module.c (bad_module): Use msgid convention. Add translation support
+ for error messages.
+ (require_atom): Add translation support for error messages.
+ * parse.c (gfc_ascii_statement): Likewise.
+ (gfc_state_name): Likewise.
+ * primary.c (match_boz_constant): Reorganise error messages for
+ translations.
+ * resolve.c (resolve_entries): Likewise.
+ (resolve_operator): Add translation support for error messages.
+ (gfc_resolve_expr): Use msgid convention. Reorganise error messages
+ for translations.
+ (resolve_symbol): Add translation support for error messages.
+ * symbol.c (gfc_add_procedure): Remove use of gfc_article function.
+ * trans-const.c (gfc_build_string_const): Use msgid convention.
+
2005-09-16 Paul Brook <paul@codesourcery.com>
PR fortran/23906
diff --git a/gcc/fortran/arith.c b/gcc/fortran/arith.c
index 4443f33..ccc7ae1 100644
--- a/gcc/fortran/arith.c
+++ b/gcc/fortran/arith.c
@@ -138,25 +138,25 @@ gfc_arith_error (arith code)
switch (code)
{
case ARITH_OK:
- p = "Arithmetic OK";
+ p = _("Arithmetic OK");
break;
case ARITH_OVERFLOW:
- p = "Arithmetic overflow";
+ p = _("Arithmetic overflow");
break;
case ARITH_UNDERFLOW:
- p = "Arithmetic underflow";
+ p = _("Arithmetic underflow");
break;
case ARITH_NAN:
- p = "Arithmetic NaN";
+ p = _("Arithmetic NaN");
break;
case ARITH_DIV0:
- p = "Division by zero";
+ p = _("Division by zero");
break;
case ARITH_INCOMMENSURATE:
- p = "Array operands are incommensurate";
+ p = _("Array operands are incommensurate");
break;
case ARITH_ASYMMETRIC:
- p = "Integer outside symmetric range implied by Standard Fortran";
+ p = _("Integer outside symmetric range implied by Standard Fortran");
break;
default:
gfc_internal_error ("gfc_arith_error(): Bad error code");
diff --git a/gcc/fortran/array.c b/gcc/fortran/array.c
index 3e44e85..9491406 100644
--- a/gcc/fortran/array.c
+++ b/gcc/fortran/array.c
@@ -169,8 +169,8 @@ gfc_match_array_ref (gfc_array_ref * ar, gfc_array_spec * as, int init)
}
}
- gfc_error ("Array reference at %C cannot have more than "
- stringize (GFC_MAX_DIMENSIONS) " dimensions");
+ gfc_error ("Array reference at %C cannot have more than %d dimensions",
+ GFC_MAX_DIMENSIONS);
error:
return MATCH_ERROR;
@@ -419,8 +419,8 @@ gfc_match_array_spec (gfc_array_spec ** asp)
if (as->rank >= GFC_MAX_DIMENSIONS)
{
- gfc_error ("Array specification at %C has more than "
- stringize (GFC_MAX_DIMENSIONS) " dimensions");
+ gfc_error ("Array specification at %C has more than %d dimensions",
+ GFC_MAX_DIMENSIONS);
goto cleanup;
}
diff --git a/gcc/fortran/check.c b/gcc/fortran/check.c
index fbbc96b..8c9f529 100644
--- a/gcc/fortran/check.c
+++ b/gcc/fortran/check.c
@@ -37,11 +37,11 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
function can be called in all kinds of ways. */
static void
-must_be (gfc_expr * e, int n, const char *thing)
+must_be (gfc_expr * e, int n, const char *thing_msgid)
{
gfc_error ("'%s' argument of '%s' intrinsic at %L must be %s",
gfc_current_intrinsic_arg[n], gfc_current_intrinsic, &e->where,
- thing);
+ thing_msgid);
}
@@ -206,7 +206,7 @@ same_type_check (gfc_expr * e, int n, gfc_expr * f, int m)
if (gfc_compare_types (&e->ts, &f->ts))
return SUCCESS;
- sprintf (message, "the same type and kind as '%s'",
+ sprintf (message, _("the same type and kind as '%s'"),
gfc_current_intrinsic_arg[n]);
must_be (f, m, message);
@@ -225,7 +225,7 @@ rank_check (gfc_expr * e, int n, int rank)
if (e->rank == rank)
return SUCCESS;
- sprintf (message, "of rank %d", rank);
+ sprintf (message, _("of rank %d"), rank);
must_be (e, n, message);
@@ -262,7 +262,7 @@ kind_value_check (gfc_expr * e, int n, int k)
if (e->ts.kind == k)
return SUCCESS;
- sprintf (message, "of kind %d", k);
+ sprintf (message, _("of kind %d"), k);
must_be (e, n, message);
return FAILURE;
@@ -507,7 +507,7 @@ gfc_check_associated (gfc_expr * pointer, gfc_expr * target)
if (target->ref->u.ar.dimen_type[i] == DIMEN_VECTOR)
{
gfc_error ("Array section with a vector subscript at %L shall not "
- "be the target of an pointer",
+ "be the target of a pointer",
&target->where);
t = FAILURE;
break;
@@ -1727,9 +1727,8 @@ gfc_check_reshape (gfc_expr * source, gfc_expr * shape,
if (m > 0)
{
- gfc_error
- ("'shape' argument of 'reshape' intrinsic at %L has more than "
- stringize (GFC_MAX_DIMENSIONS) " elements", &shape->where);
+ gfc_error ("'shape' argument of 'reshape' intrinsic at %L has more "
+ "than %d elements", &shape->where, GFC_MAX_DIMENSIONS);
return FAILURE;
}
@@ -1902,7 +1901,11 @@ gfc_check_spread (gfc_expr * source, gfc_expr * dim, gfc_expr * ncopies)
{
if (source->rank >= GFC_MAX_DIMENSIONS)
{
- must_be (source, 0, "less than rank " stringize (GFC_MAX_DIMENSIONS));
+ char message[100];
+
+ sprintf (message, _("less than rank %d"), GFC_MAX_DIMENSIONS);
+ must_be (source, 0, message);
+
return FAILURE;
}
diff --git a/gcc/fortran/error.c b/gcc/fortran/error.c
index 009419a..3f38c3b 100644
--- a/gcc/fortran/error.c
+++ b/gcc/fortran/error.c
@@ -449,12 +449,12 @@ error_print (const char *type, const char *format0, va_list argp)
/* Wrapper for error_print(). */
static void
-error_printf (const char *format, ...)
+error_printf (const char *nocmsgid, ...)
{
va_list argp;
- va_start (argp, format);
- error_print ("", format, argp);
+ va_start (argp, nocmsgid);
+ error_print ("", _(nocmsgid), argp);
va_end (argp);
}
@@ -462,7 +462,7 @@ error_printf (const char *format, ...)
/* Issue a warning. */
void
-gfc_warning (const char *format, ...)
+gfc_warning (const char *nocmsgid, ...)
{
va_list argp;
@@ -473,10 +473,10 @@ gfc_warning (const char *format, ...)
warning_buffer.index = 0;
cur_error_buffer = &warning_buffer;
- va_start (argp, format);
+ va_start (argp, nocmsgid);
if (buffer_flag == 0)
warnings++;
- error_print ("Warning:", format, argp);
+ error_print (_("Warning:"), _(nocmsgid), argp);
va_end (argp);
error_char ('\0');
@@ -489,7 +489,7 @@ gfc_warning (const char *format, ...)
an error is generated. */
try
-gfc_notify_std (int std, const char *format, ...)
+gfc_notify_std (int std, const char *nocmsgid, ...)
{
va_list argp;
bool warning;
@@ -514,11 +514,11 @@ gfc_notify_std (int std, const char *format, ...)
else
errors++;
}
- va_start (argp, format);
+ va_start (argp, nocmsgid);
if (warning)
- error_print ("Warning:", format, argp);
+ error_print (_("Warning:"), _(nocmsgid), argp);
else
- error_print ("Error:", format, argp);
+ error_print (_("Error:"), _(nocmsgid), argp);
va_end (argp);
error_char ('\0');
@@ -529,7 +529,7 @@ gfc_notify_std (int std, const char *format, ...)
/* Immediate warning (i.e. do not buffer the warning). */
void
-gfc_warning_now (const char *format, ...)
+gfc_warning_now (const char *nocmsgid, ...)
{
va_list argp;
int i;
@@ -541,8 +541,8 @@ gfc_warning_now (const char *format, ...)
buffer_flag = 0;
warnings++;
- va_start (argp, format);
- error_print ("Warning:", format, argp);
+ va_start (argp, nocmsgid);
+ error_print (_("Warning:"), _(nocmsgid), argp);
va_end (argp);
error_char ('\0');
@@ -578,7 +578,7 @@ gfc_warning_check (void)
/* Issue an error. */
void
-gfc_error (const char *format, ...)
+gfc_error (const char *nocmsgid, ...)
{
va_list argp;
@@ -589,10 +589,10 @@ gfc_error (const char *format, ...)
error_buffer.index = 0;
cur_error_buffer = &error_buffer;
- va_start (argp, format);
+ va_start (argp, nocmsgid);
if (buffer_flag == 0)
errors++;
- error_print ("Error:", format, argp);
+ error_print (_("Error:"), _(nocmsgid), argp);
va_end (argp);
error_char ('\0');
@@ -602,7 +602,7 @@ gfc_error (const char *format, ...)
/* Immediate error. */
void
-gfc_error_now (const char *format, ...)
+gfc_error_now (const char *nocmsgid, ...)
{
va_list argp;
int i;
@@ -615,8 +615,8 @@ gfc_error_now (const char *format, ...)
buffer_flag = 0;
errors++;
- va_start (argp, format);
- error_print ("Error:", format, argp);
+ va_start (argp, nocmsgid);
+ error_print (_("Error:"), _(nocmsgid), argp);
va_end (argp);
error_char ('\0');
@@ -627,14 +627,14 @@ gfc_error_now (const char *format, ...)
/* Fatal error, never returns. */
void
-gfc_fatal_error (const char *format, ...)
+gfc_fatal_error (const char *nocmsgid, ...)
{
va_list argp;
buffer_flag = 0;
- va_start (argp, format);
- error_print ("Fatal Error:", format, argp);
+ va_start (argp, nocmsgid);
+ error_print (_("Fatal Error:"), _(nocmsgid), argp);
va_end (argp);
exit (3);
@@ -735,13 +735,13 @@ gfc_free_error (gfc_error_buf * err)
/* Debug wrapper for printf. */
void
-gfc_status (const char *format, ...)
+gfc_status (const char *cmsgid, ...)
{
va_list argp;
- va_start (argp, format);
+ va_start (argp, cmsgid);
- vprintf (format, argp);
+ vprintf (_(cmsgid), argp);
va_end (argp);
}
diff --git a/gcc/fortran/expr.c b/gcc/fortran/expr.c
index e361371..78b811a 100644
--- a/gcc/fortran/expr.c
+++ b/gcc/fortran/expr.c
@@ -255,15 +255,15 @@ gfc_extract_int (gfc_expr * expr, int *result)
{
if (expr->expr_type != EXPR_CONSTANT)
- return "Constant expression required at %C";
+ return _("Constant expression required at %C");
if (expr->ts.type != BT_INTEGER)
- return "Integer expression required at %C";
+ return _("Integer expression required at %C");
if ((mpz_cmp_si (expr->value.integer, INT_MAX) > 0)
|| (mpz_cmp_si (expr->value.integer, INT_MIN) < 0))
{
- return "Integer value too large in expression at %C";
+ return _("Integer value too large in expression at %C");
}
*result = (int) mpz_get_si (expr->value.integer);
@@ -1753,7 +1753,8 @@ gfc_specification_expr (gfc_expr * e)
/* Given two expressions, make sure that the arrays are conformable. */
try
-gfc_check_conformance (const char *optype, gfc_expr * op1, gfc_expr * op2)
+gfc_check_conformance (const char *optype_msgid,
+ gfc_expr * op1, gfc_expr * op2)
{
int op1_flag, op2_flag, d;
mpz_t op1_size, op2_size;
@@ -1764,7 +1765,8 @@ gfc_check_conformance (const char *optype, gfc_expr * op1, gfc_expr * op2)
if (op1->rank != op2->rank)
{
- gfc_error ("Incompatible ranks in %s at %L", optype, &op1->where);
+ gfc_error ("Incompatible ranks in %s at %L", _(optype_msgid),
+ &op1->where);
return FAILURE;
}
@@ -1778,7 +1780,8 @@ gfc_check_conformance (const char *optype, gfc_expr * op1, gfc_expr * op2)
if (op1_flag && op2_flag && mpz_cmp (op1_size, op2_size) != 0)
{
gfc_error ("%s at %L has different shape on dimension %d (%d/%d)",
- optype, &op1->where, d + 1, (int) mpz_get_si (op1_size),
+ _(optype_msgid), &op1->where, d + 1,
+ (int) mpz_get_si (op1_size),
(int) mpz_get_si (op2_size));
t = FAILURE;
@@ -1920,7 +1923,7 @@ gfc_check_pointer_assign (gfc_expr * lvalue, gfc_expr * rvalue)
if (lvalue->ts.kind != rvalue->ts.kind)
{
- gfc_error ("Different kind type parameters in pointer "
+ gfc_error ("Different kind type parameters in pointer "
"assignment at %L", &lvalue->where);
return FAILURE;
}
@@ -1928,14 +1931,14 @@ gfc_check_pointer_assign (gfc_expr * lvalue, gfc_expr * rvalue)
attr = gfc_expr_attr (rvalue);
if (!attr.target && !attr.pointer)
{
- gfc_error ("Pointer assignment target is neither TARGET "
+ gfc_error ("Pointer assignment target is neither TARGET "
"nor POINTER at %L", &rvalue->where);
return FAILURE;
}
if (is_pure && gfc_impure_variable (rvalue->symtree->n.sym))
{
- gfc_error ("Bad target in pointer assignment in PURE "
+ gfc_error ("Bad target in pointer assignment in PURE "
"procedure at %L", &rvalue->where);
}
diff --git a/gcc/fortran/gfortran.h b/gcc/fortran/gfortran.h
index 301afac..9cd2845 100644
--- a/gcc/fortran/gfortran.h
+++ b/gcc/fortran/gfortran.h
@@ -30,6 +30,7 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
time I looked, so by comparison this is perfectly reasonable. */
#include "system.h"
+#include "intl.h"
#include "coretypes.h"
#include "input.h"
@@ -1532,7 +1533,6 @@ void gfc_free (void *);
int gfc_terminal_width(void);
void gfc_clear_ts (gfc_typespec *);
FILE *gfc_open_file (const char *);
-const char *gfc_article (const char *);
const char *gfc_basic_typename (bt);
const char *gfc_typename (gfc_typespec *);
diff --git a/gcc/fortran/gfortranspec.c b/gcc/fortran/gfortranspec.c
index 0d6264e..259a0b8 100644
--- a/gcc/fortran/gfortranspec.c
+++ b/gcc/fortran/gfortranspec.c
@@ -51,6 +51,7 @@ Boston, MA 02110-1301, USA. */
#include "coretypes.h"
#include "tm.h"
+#include "intl.h"
#ifndef MATH_LIBRARY
#define MATH_LIBRARY "-lm"
@@ -345,15 +346,13 @@ lang_specific_driver (int *in_argc, const char *const **in_argv,
break;
case OPTION_version:
- printf ("\
-GNU Fortran 95 (GCC %s)\n\
-Copyright (C) 2005 Free Software Foundation, Inc.\n\
-\n\
-GNU Fortran comes with NO WARRANTY, to the extent permitted by law.\n\
+ printf ("GNU Fortran 95 (GCC) %s\n", version_string);
+ printf ("Copyright %s 2005 Free Software Foundation, Inc.\n\n",
+ _("(C)"));
+ printf (_("GNU Fortran comes with NO WARRANTY, to the extent permitted by law.\n\
You may redistribute copies of GNU Fortran\n\
under the terms of the GNU General Public License.\n\
-For more information about these matters, see the file named COPYING\n\
-", version_string);
+For more information about these matters, see the file named COPYING\n\n"));
exit (0);
break;
@@ -528,7 +527,7 @@ For more information about these matters, see the file named COPYING\n\
if (verbose && g77_newargv != g77_xargv)
{
- fprintf (stderr, "Driving:");
+ fprintf (stderr, _("Driving:"));
for (i = 0; i < g77_newargc; i++)
fprintf (stderr, " %s", g77_newargv[i]);
fprintf (stderr, "\n");
diff --git a/gcc/fortran/io.c b/gcc/fortran/io.c
index 0ffc13d..95abbc5 100644
--- a/gcc/fortran/io.c
+++ b/gcc/fortran/io.c
@@ -401,11 +401,11 @@ format_lex (void)
static try
check_format (void)
{
- const char *posint_required = "Positive width required";
- const char *period_required = "Period required";
- const char *nonneg_required = "Nonnegative width required";
- const char *unexpected_element = "Unexpected element";
- const char *unexpected_end = "Unexpected end of format string";
+ const char *posint_required = _("Positive width required");
+ const char *period_required = _("Period required");
+ const char *nonneg_required = _("Nonnegative width required");
+ const char *unexpected_element = _("Unexpected element");
+ const char *unexpected_end = _("Unexpected end of format string");
const char *error;
format_token t, u;
@@ -422,7 +422,7 @@ check_format (void)
t = format_lex ();
if (t != FMT_LPAREN)
{
- error = "Missing leading left parenthesis";
+ error = _("Missing leading left parenthesis");
goto syntax;
}
@@ -460,7 +460,7 @@ format_item_1:
t = format_lex ();
if (t != FMT_P)
{
- error = "Expected P edit descriptor";
+ error = _("Expected P edit descriptor");
goto syntax;
}
@@ -468,7 +468,7 @@ format_item_1:
case FMT_P:
/* P requires a prior number. */
- error = "P descriptor requires leading scale factor";
+ error = _("P descriptor requires leading scale factor");
goto syntax;
case FMT_X:
@@ -498,7 +498,7 @@ format_item_1:
return FAILURE;
if (t != FMT_RPAREN || level > 0)
{
- error = "$ must be the last specifier";
+ error = _("$ must be the last specifier");
goto syntax;
}
@@ -543,7 +543,7 @@ data_desc:
t = format_lex ();
if (t == FMT_POSINT)
{
- error = "Repeat count cannot follow P descriptor";
+ error = _("Repeat count cannot follow P descriptor");
goto syntax;
}
@@ -606,7 +606,7 @@ data_desc:
u = format_lex ();
if (u != FMT_POSINT)
{
- error = "Positive exponent width required";
+ error = _("Positive exponent width required");
goto syntax;
}
}
diff --git a/gcc/fortran/matchexp.c b/gcc/fortran/matchexp.c
index 058f772..a306c95 100644
--- a/gcc/fortran/matchexp.c
+++ b/gcc/fortran/matchexp.c
@@ -26,7 +26,7 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
#include "arith.h"
#include "match.h"
-static char expression_syntax[] = "Syntax error in expression at %C";
+static char expression_syntax[] = N_("Syntax error in expression at %C");
/* Match a user-defined operator name. This is a normal name with a
diff --git a/gcc/fortran/misc.c b/gcc/fortran/misc.c
index dc6a34b..4d94d7f 100644
--- a/gcc/fortran/misc.c
+++ b/gcc/fortran/misc.c
@@ -105,36 +105,6 @@ gfc_open_file (const char *name)
}
-/* Given a word, return the correct article. */
-
-const char *
-gfc_article (const char *word)
-{
- const char *p;
-
- switch (*word)
- {
- case 'a':
- case 'A':
- case 'e':
- case 'E':
- case 'i':
- case 'I':
- case 'o':
- case 'O':
- case 'u':
- case 'U':
- p = "an";
- break;
-
- default:
- p = "a";
- }
-
- return p;
-}
-
-
/* Return a string for each type. */
const char *
diff --git a/gcc/fortran/module.c b/gcc/fortran/module.c
index b11a16b..5117050 100644
--- a/gcc/fortran/module.c
+++ b/gcc/fortran/module.c
@@ -827,27 +827,25 @@ static char *atom_string, atom_name[MAX_ATOM_SIZE];
static void bad_module (const char *) ATTRIBUTE_NORETURN;
static void
-bad_module (const char *message)
+bad_module (const char *msgid)
{
- const char *p;
+ fclose (module_fp);
switch (iomode)
{
case IO_INPUT:
- p = "Reading";
+ gfc_fatal_error ("Reading module %s at line %d column %d: %s",
+ module_name, module_line, module_column, msgid);
break;
case IO_OUTPUT:
- p = "Writing";
+ gfc_fatal_error ("Writing module %s at line %d column %d: %s",
+ module_name, module_line, module_column, msgid);
break;
default:
- p = "???";
+ gfc_fatal_error ("Module %s at line %d column %d: %s",
+ module_name, module_line, module_column, msgid);
break;
}
-
- fclose (module_fp);
-
- gfc_fatal_error ("%s module %s at line %d column %d: %s", p,
- module_name, module_line, module_column, message);
}
@@ -1154,19 +1152,19 @@ require_atom (atom_type type)
switch (type)
{
case ATOM_NAME:
- p = "Expected name";
+ p = _("Expected name");
break;
case ATOM_LPAREN:
- p = "Expected left parenthesis";
+ p = _("Expected left parenthesis");
break;
case ATOM_RPAREN:
- p = "Expected right parenthesis";
+ p = _("Expected right parenthesis");
break;
case ATOM_INTEGER:
- p = "Expected integer";
+ p = _("Expected integer");
break;
case ATOM_STRING:
- p = "Expected string";
+ p = _("Expected string");
break;
default:
gfc_internal_error ("require_atom(): bad atom type required");
diff --git a/gcc/fortran/parse.c b/gcc/fortran/parse.c
index 9c404d5..1e28a7e 100644
--- a/gcc/fortran/parse.c
+++ b/gcc/fortran/parse.c
@@ -731,13 +731,13 @@ gfc_ascii_statement (gfc_statement st)
switch (st)
{
case ST_ARITHMETIC_IF:
- p = "arithmetic IF";
+ p = _("arithmetic IF");
break;
case ST_ALLOCATE:
p = "ALLOCATE";
break;
case ST_ATTR_DECL:
- p = "attribute declaration";
+ p = _("attribute declaration");
break;
case ST_BACKSPACE:
p = "BACKSPACE";
@@ -767,7 +767,7 @@ gfc_ascii_statement (gfc_statement st)
p = "CYCLE";
break;
case ST_DATA_DECL:
- p = "data declaration";
+ p = _("data declaration");
break;
case ST_DATA:
p = "DATA";
@@ -776,7 +776,7 @@ gfc_ascii_statement (gfc_statement st)
p = "DEALLOCATE";
break;
case ST_DERIVED_DECL:
- p = "Derived type declaration";
+ p = _("derived type declaration");
break;
case ST_DO:
p = "DO";
@@ -855,7 +855,7 @@ gfc_ascii_statement (gfc_statement st)
p = "GOTO";
break;
case ST_IF_BLOCK:
- p = "block IF";
+ p = _("block IF");
break;
case ST_IMPLICIT:
p = "IMPLICIT";
@@ -864,7 +864,7 @@ gfc_ascii_statement (gfc_statement st)
p = "IMPLICIT NONE";
break;
case ST_IMPLIED_ENDDO:
- p = "implied END DO";
+ p = _("implied END DO");
break;
case ST_INQUIRE:
p = "INQUIRE";
@@ -931,10 +931,10 @@ gfc_ascii_statement (gfc_statement st)
p = "WRITE";
break;
case ST_ASSIGNMENT:
- p = "assignment";
+ p = _("assignment");
break;
case ST_POINTER_ASSIGNMENT:
- p = "pointer assignment";
+ p = _("pointer assignment");
break;
case ST_SELECT_CASE:
p = "SELECT CASE";
@@ -943,7 +943,7 @@ gfc_ascii_statement (gfc_statement st)
p = "SEQUENCE";
break;
case ST_SIMPLE_IF:
- p = "Simple IF";
+ p = _("simple IF");
break;
case ST_STATEMENT_FUNCTION:
p = "STATEMENT FUNCTION";
@@ -969,43 +969,43 @@ gfc_state_name (gfc_compile_state state)
switch (state)
{
case COMP_PROGRAM:
- p = "a PROGRAM";
+ p = _("a PROGRAM");
break;
case COMP_MODULE:
- p = "a MODULE";
+ p = _("a MODULE");
break;
case COMP_SUBROUTINE:
- p = "a SUBROUTINE";
+ p = _("a SUBROUTINE");
break;
case COMP_FUNCTION:
- p = "a FUNCTION";
+ p = _("a FUNCTION");
break;
case COMP_BLOCK_DATA:
- p = "a BLOCK DATA";
+ p = _("a BLOCK DATA");
break;
case COMP_INTERFACE:
- p = "an INTERFACE";
+ p = _("an INTERFACE");
break;
case COMP_DERIVED:
- p = "a DERIVED TYPE block";
+ p = _("a DERIVED TYPE block");
break;
case COMP_IF:
- p = "an IF-THEN block";
+ p = _("an IF-THEN block");
break;
case COMP_DO:
- p = "a DO block";
+ p = _("a DO block");
break;
case COMP_SELECT:
- p = "a SELECT block";
+ p = _("a SELECT block");
break;
case COMP_FORALL:
- p = "a FORALL block";
+ p = _("a FORALL block");
break;
case COMP_WHERE:
- p = "a WHERE block";
+ p = _("a WHERE block");
break;
case COMP_CONTAINS:
- p = "a contained subprogram";
+ p = _("a contained subprogram");
break;
default:
diff --git a/gcc/fortran/primary.c b/gcc/fortran/primary.c
index 48a5f34..3ef8d4e 100644
--- a/gcc/fortran/primary.c
+++ b/gcc/fortran/primary.c
@@ -307,7 +307,6 @@ match_boz_constant (gfc_expr ** result)
locus old_loc;
char *buffer;
gfc_expr *e;
- const char *rname;
old_loc = gfc_current_locus;
gfc_gobble_whitespace ();
@@ -317,18 +316,15 @@ match_boz_constant (gfc_expr ** result)
{
case 'b':
radix = 2;
- rname = "binary";
break;
case 'o':
radix = 8;
- rname = "octal";
break;
case 'x':
x_hex = 1;
/* Fall through. */
case 'z':
radix = 16;
- rname = "hexadecimal";
break;
default:
goto backup;
@@ -351,13 +347,33 @@ match_boz_constant (gfc_expr ** result)
length = match_digits (0, radix, NULL);
if (length == -1)
{
- gfc_error ("Empty set of digits in %s constants at %C", rname);
+ switch (radix)
+ {
+ case 2:
+ gfc_error ("Empty set of digits in binary constant at %C");
+ case 8:
+ gfc_error ("Empty set of digits in octal constant at %C");
+ case 16:
+ gfc_error ("Empty set of digits in hexadecimal constant at %C");
+ default:
+ gcc_unreachable ();
+ }
return MATCH_ERROR;
}
if (gfc_next_char () != delim)
{
- gfc_error ("Illegal character in %s constant at %C.", rname);
+ switch (radix)
+ {
+ case 2:
+ gfc_error ("Illegal character in binary constant at %C");
+ case 8:
+ gfc_error ("Illegal character in octal constant at %C");
+ case 16:
+ gfc_error ("Illegal character in hexadecimal constant at %C");
+ default:
+ gcc_unreachable ();
+ }
return MATCH_ERROR;
}
diff --git a/gcc/fortran/resolve.c b/gcc/fortran/resolve.c
index 968d137..f941333 100644
--- a/gcc/fortran/resolve.c
+++ b/gcc/fortran/resolve.c
@@ -411,13 +411,27 @@ resolve_entries (gfc_namespace * ns)
{
sym = el->sym->result;
if (sym->attr.dimension)
- gfc_error ("%s result %s can't be an array in FUNCTION %s at %L",
- el == ns->entries ? "FUNCTION" : "ENTRY", sym->name,
- ns->entries->sym->name, &sym->declared_at);
+ {
+ if (el == ns->entries)
+ gfc_error
+ ("FUNCTION result %s can't be an array in FUNCTION %s at %L",
+ sym->name, ns->entries->sym->name, &sym->declared_at);
+ else
+ gfc_error
+ ("ENTRY result %s can't be an array in FUNCTION %s at %L",
+ sym->name, ns->entries->sym->name, &sym->declared_at);
+ }
else if (sym->attr.pointer)
- gfc_error ("%s result %s can't be a POINTER in FUNCTION %s at %L",
- el == ns->entries ? "FUNCTION" : "ENTRY", sym->name,
- ns->entries->sym->name, &sym->declared_at);
+ {
+ if (el == ns->entries)
+ gfc_error
+ ("FUNCTION result %s can't be a POINTER in FUNCTION %s at %L",
+ sym->name, ns->entries->sym->name, &sym->declared_at);
+ else
+ gfc_error
+ ("ENTRY result %s can't be a POINTER in FUNCTION %s at %L",
+ sym->name, ns->entries->sym->name, &sym->declared_at);
+ }
else
{
ts = &sym->ts;
@@ -450,10 +464,18 @@ resolve_entries (gfc_namespace * ns)
break;
}
if (sym)
- gfc_error ("%s result %s can't be of type %s in FUNCTION %s at %L",
- el == ns->entries ? "FUNCTION" : "ENTRY", sym->name,
- gfc_typename (ts), ns->entries->sym->name,
- &sym->declared_at);
+ {
+ if (el == ns->entries)
+ gfc_error
+ ("FUNCTION result %s can't be of type %s in FUNCTION %s at %L",
+ sym->name, gfc_typename (ts), ns->entries->sym->name,
+ &sym->declared_at);
+ else
+ gfc_error
+ ("ENTRY result %s can't be of type %s in FUNCTION %s at %L",
+ sym->name, gfc_typename (ts), ns->entries->sym->name,
+ &sym->declared_at);
+ }
}
}
}
@@ -1417,7 +1439,7 @@ resolve_operator (gfc_expr * e)
break;
}
- sprintf (msg, "Operand of unary numeric operator '%s' at %%L is %s",
+ sprintf (msg, _("Operand of unary numeric operator '%s' at %%L is %s"),
gfc_op2string (e->value.op.operator), gfc_typename (&e->ts));
goto bad_op;
@@ -1433,7 +1455,7 @@ resolve_operator (gfc_expr * e)
}
sprintf (msg,
- "Operands of binary numeric operator '%s' at %%L are %s/%s",
+ _("Operands of binary numeric operator '%s' at %%L are %s/%s"),
gfc_op2string (e->value.op.operator), gfc_typename (&op1->ts),
gfc_typename (&op2->ts));
goto bad_op;
@@ -1447,7 +1469,7 @@ resolve_operator (gfc_expr * e)
}
sprintf (msg,
- "Operands of string concatenation operator at %%L are %s/%s",
+ _("Operands of string concatenation operator at %%L are %s/%s"),
gfc_typename (&op1->ts), gfc_typename (&op2->ts));
goto bad_op;
@@ -1466,7 +1488,7 @@ resolve_operator (gfc_expr * e)
break;
}
- sprintf (msg, "Operands of logical operator '%s' at %%L are %s/%s",
+ sprintf (msg, _("Operands of logical operator '%s' at %%L are %s/%s"),
gfc_op2string (e->value.op.operator), gfc_typename (&op1->ts),
gfc_typename (&op2->ts));
@@ -1480,7 +1502,7 @@ resolve_operator (gfc_expr * e)
break;
}
- sprintf (msg, "Operand of .NOT. operator at %%L is %s",
+ sprintf (msg, _("Operand of .NOT. operator at %%L is %s"),
gfc_typename (&op1->ts));
goto bad_op;
@@ -1490,7 +1512,7 @@ resolve_operator (gfc_expr * e)
case INTRINSIC_LE:
if (op1->ts.type == BT_COMPLEX || op2->ts.type == BT_COMPLEX)
{
- strcpy (msg, "COMPLEX quantities cannot be compared at %L");
+ strcpy (msg, _("COMPLEX quantities cannot be compared at %L"));
goto bad_op;
}
@@ -1515,11 +1537,13 @@ resolve_operator (gfc_expr * e)
}
if (op1->ts.type == BT_LOGICAL && op2->ts.type == BT_LOGICAL)
- sprintf (msg, "Logicals at %%L must be compared with %s instead of %s",
+ sprintf (msg,
+ _("Logicals at %%L must be compared with %s instead of %s"),
e->value.op.operator == INTRINSIC_EQ ? ".EQV." : ".NEQV.",
gfc_op2string (e->value.op.operator));
else
- sprintf (msg, "Operands of comparison operator '%s' at %%L are %s/%s",
+ sprintf (msg,
+ _("Operands of comparison operator '%s' at %%L are %s/%s"),
gfc_op2string (e->value.op.operator), gfc_typename (&op1->ts),
gfc_typename (&op2->ts));
@@ -1527,10 +1551,10 @@ resolve_operator (gfc_expr * e)
case INTRINSIC_USER:
if (op2 == NULL)
- sprintf (msg, "Operand of user operator '%s' at %%L is %s",
+ sprintf (msg, _("Operand of user operator '%s' at %%L is %s"),
e->value.op.uop->name, gfc_typename (&op1->ts));
else
- sprintf (msg, "Operands of user operator '%s' at %%L are %s/%s",
+ sprintf (msg, _("Operands of user operator '%s' at %%L are %s/%s"),
e->value.op.uop->name, gfc_typename (&op1->ts),
gfc_typename (&op2->ts));
@@ -2342,24 +2366,26 @@ gfc_resolve_expr (gfc_expr * e)
INTEGER or (optionally) REAL type. */
static try
-gfc_resolve_iterator_expr (gfc_expr * expr, bool real_ok, const char * name)
+gfc_resolve_iterator_expr (gfc_expr * expr, bool real_ok,
+ const char * name_msgid)
{
if (gfc_resolve_expr (expr) == FAILURE)
return FAILURE;
if (expr->rank != 0)
{
- gfc_error ("%s at %L must be a scalar", name, &expr->where);
+ gfc_error ("%s at %L must be a scalar", _(name_msgid), &expr->where);
return FAILURE;
}
if (!(expr->ts.type == BT_INTEGER
|| (expr->ts.type == BT_REAL && real_ok)))
{
- gfc_error ("%s at %L must be INTEGER%s",
- name,
- &expr->where,
- real_ok ? " or REAL" : "");
+ if (real_ok)
+ gfc_error ("%s at %L must be INTEGER or REAL", _(name_msgid),
+ &expr->where);
+ else
+ gfc_error ("%s at %L must be INTEGER", _(name_msgid), &expr->where);
return FAILURE;
}
return SUCCESS;
@@ -4147,9 +4173,12 @@ resolve_symbol (gfc_symbol * sym)
|| sym->as->type == AS_ASSUMED_SHAPE)
&& sym->attr.dummy == 0)
{
- gfc_error ("Assumed %s array at %L must be a dummy argument",
- sym->as->type == AS_ASSUMED_SIZE ? "size" : "shape",
- &sym->declared_at);
+ if (sym->as->type == AS_ASSUMED_SIZE)
+ gfc_error ("Assumed size array at %L must be a dummy argument",
+ &sym->declared_at);
+ else
+ gfc_error ("Assumed shape array at %L must be a dummy argument",
+ &sym->declared_at);
return;
}
@@ -4265,15 +4294,15 @@ resolve_symbol (gfc_symbol * sym)
/* Can the sybol have an initializer? */
whynot = NULL;
if (sym->attr.allocatable)
- whynot = "Allocatable";
+ whynot = _("Allocatable");
else if (sym->attr.external)
- whynot = "External";
+ whynot = _("External");
else if (sym->attr.dummy)
- whynot = "Dummy";
+ whynot = _("Dummy");
else if (sym->attr.intrinsic)
- whynot = "Intrinsic";
+ whynot = _("Intrinsic");
else if (sym->attr.result)
- whynot = "Function Result";
+ whynot = _("Function Result");
else if (sym->attr.dimension && !sym->attr.pointer)
{
/* Don't allow initialization of automatic arrays. */
@@ -4284,7 +4313,7 @@ resolve_symbol (gfc_symbol * sym)
|| sym->as->upper[i] == NULL
|| sym->as->upper[i]->expr_type != EXPR_CONSTANT)
{
- whynot = "Automatic array";
+ whynot = _("Automatic array");
break;
}
}
diff --git a/gcc/fortran/symbol.c b/gcc/fortran/symbol.c
index 57811f2..acae453 100644
--- a/gcc/fortran/symbol.c
+++ b/gcc/fortran/symbol.c
@@ -905,9 +905,8 @@ gfc_add_procedure (symbol_attribute * attr, procedure_type t,
if (attr->proc != PROC_UNKNOWN)
{
- gfc_error ("%s procedure at %L is already %s %s procedure",
+ gfc_error ("%s procedure at %L is already declared as %s procedure",
gfc_code2string (procedures, t), where,
- gfc_article (gfc_code2string (procedures, attr->proc)),
gfc_code2string (procedures, attr->proc));
return FAILURE;
diff --git a/gcc/fortran/trans-const.c b/gcc/fortran/trans-const.c
index bab1869..4a23a56 100644
--- a/gcc/fortran/trans-const.c
+++ b/gcc/fortran/trans-const.c
@@ -86,12 +86,13 @@ gfc_build_string_const (int length, const char *s)
return str;
}
-/* Build a Fortran character constant from a zero-terminated string. */
-
+/* Build a Fortran character constant from a zero-terminated string.
+ Since this is mainly used for error messages, the string will get
+ translated. */
tree
-gfc_build_cstring_const (const char *s)
+gfc_build_cstring_const (const char *msgid)
{
- return gfc_build_string_const (strlen (s) + 1, s);
+ return gfc_build_string_const (strlen (msgid) + 1, _(msgid));
}
/* Return a string constant with the given length. Used for static
diff --git a/gcc/po/ChangeLog b/gcc/po/ChangeLog
index b15cb15..9ae47f7 100644
--- a/gcc/po/ChangeLog
+++ b/gcc/po/ChangeLog
@@ -1,3 +1,10 @@
+2005-09-17 Francois-Xavier Coudert <coudert@clipper.ens.fr>
+
+ PR fortran/15586
+ * exgettext: Add a new nocmsgid convention for arguments
+ that should be marked as no-c-format.
+ * gcc.pot: Regenerate.
+
2005-09-13 Joseph S. Myers <joseph@codesourcery.com>
* zh_CN.po: Update.
diff --git a/gcc/po/exgettext b/gcc/po/exgettext
index 7f9c32d..7665463 100644
--- a/gcc/po/exgettext
+++ b/gcc/po/exgettext
@@ -108,6 +108,8 @@ function keyword_option(line) {
format=""
if (args ~ /g$/)
format="gcc-internal-format"
+ else if (args ~ /noc$/)
+ format="no-c-format"
else if (args ~ /c$/)
format="c-format"
diff --git a/gcc/po/gcc.pot b/gcc/po/gcc.pot
index c5e3fb1..8e6497f 100644
--- a/gcc/po/gcc.pot
+++ b/gcc/po/gcc.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://gcc.gnu.org/bugs.html\n"
-"POT-Creation-Date: 2005-06-30 23:01-0400\n"
+"POT-Creation-Date: 2005-09-17 19:49+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,246 +16,246 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
-#: c-decl.c:3693
+#: c-decl.c:3712
msgid "<anonymous>"
msgstr ""
-#: c-format.c:341 c-format.c:365
+#: c-format.c:343 c-format.c:367
msgid "' ' flag"
msgstr ""
-#: c-format.c:341 c-format.c:365
+#: c-format.c:343 c-format.c:367
msgid "the ' ' printf flag"
msgstr ""
-#: c-format.c:342 c-format.c:366 c-format.c:404 c-format.c:461
+#: c-format.c:344 c-format.c:368 c-format.c:402 c-format.c:414 c-format.c:471
msgid "'+' flag"
msgstr ""
-#: c-format.c:342 c-format.c:366 c-format.c:404
+#: c-format.c:344 c-format.c:368 c-format.c:402 c-format.c:414
msgid "the '+' printf flag"
msgstr ""
-#: c-format.c:343 c-format.c:367 c-format.c:405 c-format.c:437
+#: c-format.c:345 c-format.c:369 c-format.c:415 c-format.c:447
msgid "'#' flag"
msgstr ""
-#: c-format.c:343 c-format.c:367 c-format.c:405
+#: c-format.c:345 c-format.c:369 c-format.c:415
msgid "the '#' printf flag"
msgstr ""
-#: c-format.c:344 c-format.c:368 c-format.c:435
+#: c-format.c:346 c-format.c:370 c-format.c:445
msgid "'0' flag"
msgstr ""
-#: c-format.c:344 c-format.c:368
+#: c-format.c:346 c-format.c:370
msgid "the '0' printf flag"
msgstr ""
-#: c-format.c:345 c-format.c:369 c-format.c:434 c-format.c:464
+#: c-format.c:347 c-format.c:371 c-format.c:444 c-format.c:474
msgid "'-' flag"
msgstr ""
-#: c-format.c:345 c-format.c:369
+#: c-format.c:347 c-format.c:371
msgid "the '-' printf flag"
msgstr ""
-#: c-format.c:346 c-format.c:418
+#: c-format.c:348 c-format.c:428
msgid "''' flag"
msgstr ""
-#: c-format.c:346
+#: c-format.c:348
msgid "the ''' printf flag"
msgstr ""
-#: c-format.c:347 c-format.c:419
+#: c-format.c:349 c-format.c:429
msgid "'I' flag"
msgstr ""
-#: c-format.c:347
+#: c-format.c:349
msgid "the 'I' printf flag"
msgstr ""
-#: c-format.c:348 c-format.c:370 c-format.c:416 c-format.c:438 c-format.c:465
-#: c-format.c:1538 config/sol2-c.c:46
+#: c-format.c:350 c-format.c:372 c-format.c:426 c-format.c:448 c-format.c:475
+#: c-format.c:1601 config/sol2-c.c:46
msgid "field width"
msgstr ""
-#: c-format.c:348 c-format.c:370 config/sol2-c.c:46
+#: c-format.c:350 c-format.c:372 config/sol2-c.c:46
msgid "field width in printf format"
msgstr ""
-#: c-format.c:349 c-format.c:371 c-format.c:395 c-format.c:407
+#: c-format.c:351 c-format.c:373 c-format.c:404 c-format.c:417
msgid "precision"
msgstr ""
-#: c-format.c:349 c-format.c:371 c-format.c:395 c-format.c:407
+#: c-format.c:351 c-format.c:373 c-format.c:404 c-format.c:417
msgid "precision in printf format"
msgstr ""
-#: c-format.c:350 c-format.c:372 c-format.c:396 c-format.c:408 c-format.c:417
-#: c-format.c:468 config/sol2-c.c:47
+#: c-format.c:352 c-format.c:374 c-format.c:405 c-format.c:418 c-format.c:427
+#: c-format.c:478 config/sol2-c.c:47
msgid "length modifier"
msgstr ""
-#: c-format.c:350 c-format.c:372 c-format.c:396 c-format.c:408
+#: c-format.c:352 c-format.c:374 c-format.c:405 c-format.c:418
#: config/sol2-c.c:47
msgid "length modifier in printf format"
msgstr ""
-#: c-format.c:394 c-format.c:406
+#: c-format.c:403 c-format.c:416
msgid "'q' flag"
msgstr ""
-#: c-format.c:394 c-format.c:406
+#: c-format.c:403 c-format.c:416
msgid "the 'q' diagnostic flag"
msgstr ""
-#: c-format.c:414
+#: c-format.c:424
msgid "assignment suppression"
msgstr ""
-#: c-format.c:414
+#: c-format.c:424
msgid "the assignment suppression scanf feature"
msgstr ""
-#: c-format.c:415
+#: c-format.c:425
msgid "'a' flag"
msgstr ""
-#: c-format.c:415
+#: c-format.c:425
msgid "the 'a' scanf flag"
msgstr ""
-#: c-format.c:416
+#: c-format.c:426
msgid "field width in scanf format"
msgstr ""
-#: c-format.c:417
+#: c-format.c:427
msgid "length modifier in scanf format"
msgstr ""
-#: c-format.c:418
+#: c-format.c:428
msgid "the ''' scanf flag"
msgstr ""
-#: c-format.c:419
+#: c-format.c:429
msgid "the 'I' scanf flag"
msgstr ""
-#: c-format.c:433
+#: c-format.c:443
msgid "'_' flag"
msgstr ""
-#: c-format.c:433
+#: c-format.c:443
msgid "the '_' strftime flag"
msgstr ""
-#: c-format.c:434
+#: c-format.c:444
msgid "the '-' strftime flag"
msgstr ""
-#: c-format.c:435
+#: c-format.c:445
msgid "the '0' strftime flag"
msgstr ""
-#: c-format.c:436 c-format.c:460
+#: c-format.c:446 c-format.c:470
msgid "'^' flag"
msgstr ""
-#: c-format.c:436
+#: c-format.c:446
msgid "the '^' strftime flag"
msgstr ""
-#: c-format.c:437
+#: c-format.c:447
msgid "the '#' strftime flag"
msgstr ""
-#: c-format.c:438
+#: c-format.c:448
msgid "field width in strftime format"
msgstr ""
-#: c-format.c:439
+#: c-format.c:449
msgid "'E' modifier"
msgstr ""
-#: c-format.c:439
+#: c-format.c:449
msgid "the 'E' strftime modifier"
msgstr ""
-#: c-format.c:440
+#: c-format.c:450
msgid "'O' modifier"
msgstr ""
-#: c-format.c:440
+#: c-format.c:450
msgid "the 'O' strftime modifier"
msgstr ""
-#: c-format.c:441
+#: c-format.c:451
msgid "the 'O' modifier"
msgstr ""
-#: c-format.c:459
+#: c-format.c:469
msgid "fill character"
msgstr ""
-#: c-format.c:459
+#: c-format.c:469
msgid "fill character in strfmon format"
msgstr ""
-#: c-format.c:460
+#: c-format.c:470
msgid "the '^' strfmon flag"
msgstr ""
-#: c-format.c:461
+#: c-format.c:471
msgid "the '+' strfmon flag"
msgstr ""
-#: c-format.c:462
+#: c-format.c:472
msgid "'(' flag"
msgstr ""
-#: c-format.c:462
+#: c-format.c:472
msgid "the '(' strfmon flag"
msgstr ""
-#: c-format.c:463
+#: c-format.c:473
msgid "'!' flag"
msgstr ""
-#: c-format.c:463
+#: c-format.c:473
msgid "the '!' strfmon flag"
msgstr ""
-#: c-format.c:464
+#: c-format.c:474
msgid "the '-' strfmon flag"
msgstr ""
-#: c-format.c:465
+#: c-format.c:475
msgid "field width in strfmon format"
msgstr ""
-#: c-format.c:466
+#: c-format.c:476
msgid "left precision"
msgstr ""
-#: c-format.c:466
+#: c-format.c:476
msgid "left precision in strfmon format"
msgstr ""
-#: c-format.c:467
+#: c-format.c:477
msgid "right precision"
msgstr ""
-#: c-format.c:467
+#: c-format.c:477
msgid "right precision in strfmon format"
msgstr ""
-#: c-format.c:468
+#: c-format.c:478
msgid "length modifier in strfmon format"
msgstr ""
-#: c-format.c:1640
+#: c-format.c:1703
msgid "field precision"
msgstr ""
@@ -289,53 +289,53 @@ msgstr ""
msgid "End of search list.\n"
msgstr ""
-#: c-opts.c:1314
+#: c-opts.c:1312
msgid "<built-in>"
msgstr ""
-#: c-opts.c:1330
+#: c-opts.c:1328
msgid "<command line>"
msgstr ""
-#: c-typeck.c:2098 c-typeck.c:4434 c-typeck.c:4436 c-typeck.c:4444
-#: c-typeck.c:4470 c-typeck.c:5845
+#: c-typeck.c:2116 c-typeck.c:4496 c-typeck.c:4498 c-typeck.c:4506
+#: c-typeck.c:4536 c-typeck.c:5915
msgid "initializer element is not constant"
msgstr ""
-#: c-typeck.c:4244
+#: c-typeck.c:4302
msgid "array initialized from parenthesized string constant"
msgstr ""
-#: c-typeck.c:4304 cp/typeck2.c:703
+#: c-typeck.c:4362 cp/typeck2.c:672
#, gcc-internal-format
msgid "char-array initialized from wide string"
msgstr ""
-#: c-typeck.c:4309
+#: c-typeck.c:4367
msgid "wchar_t-array initialized from non-wide string"
msgstr ""
-#: c-typeck.c:4327 cp/typeck2.c:725
+#: c-typeck.c:4385 cp/typeck2.c:692
#, gcc-internal-format
msgid "initializer-string for array of chars is too long"
msgstr ""
-#: c-typeck.c:4333
+#: c-typeck.c:4391
msgid "array of inappropriate type initialized from string constant"
msgstr ""
#. ??? This should not be an error when inlining calls to
#. unprototyped functions.
-#: c-typeck.c:4393 c-typeck.c:3896 cp/typeck.c:1393
+#: c-typeck.c:4455 c-typeck.c:3954 cp/typeck.c:1392
#, gcc-internal-format
msgid "invalid use of non-lvalue array"
msgstr ""
-#: c-typeck.c:4417
+#: c-typeck.c:4479
msgid "array initialized from non-constant array expression"
msgstr ""
-#: c-typeck.c:4477 c-typeck.c:5849
+#: c-typeck.c:4543 c-typeck.c:5919
#, gcc-internal-format
msgid "initializer element is not computable at load time"
msgstr ""
@@ -344,287 +344,268 @@ msgstr ""
#. of VLAs themselves count as VLAs, it does not make
#. sense to permit them to be initialized given that
#. ordinary VLAs may not be initialized.
-#: c-typeck.c:4488 c-decl.c:3128 c-decl.c:3143
+#: c-typeck.c:4554 c-decl.c:3147 c-decl.c:3162
#, gcc-internal-format
msgid "variable-sized object may not be initialized"
msgstr ""
-#: c-typeck.c:4492 cp/typeck2.c:804
-#, gcc-internal-format
+#: c-typeck.c:4558
msgid "invalid initializer"
msgstr ""
-#: c-typeck.c:4966
+#: c-typeck.c:5032
msgid "extra brace group at end of initializer"
msgstr ""
-#: c-typeck.c:4986 cp/decl.c:4365
-#, gcc-internal-format
+#: c-typeck.c:5052
msgid "missing braces around initializer"
msgstr ""
-#: c-typeck.c:5047
+#: c-typeck.c:5113
msgid "braces around scalar initializer"
msgstr ""
-#: c-typeck.c:5104
+#: c-typeck.c:5170
msgid "initialization of flexible array member in a nested context"
msgstr ""
-#: c-typeck.c:5106
+#: c-typeck.c:5172
msgid "initialization of a flexible array member"
msgstr ""
-#: c-typeck.c:5133
+#: c-typeck.c:5199
msgid "missing initializer"
msgstr ""
-#: c-typeck.c:5155
+#: c-typeck.c:5221
msgid "empty scalar initializer"
msgstr ""
-#: c-typeck.c:5160
+#: c-typeck.c:5226
msgid "extra elements in scalar initializer"
msgstr ""
-#: c-typeck.c:5264 c-typeck.c:5324
+#: c-typeck.c:5330 c-typeck.c:5390
msgid "array index in non-array initializer"
msgstr ""
-#: c-typeck.c:5269 c-typeck.c:5377
+#: c-typeck.c:5335 c-typeck.c:5443
msgid "field name not in record or union initializer"
msgstr ""
-#: c-typeck.c:5315
+#: c-typeck.c:5381
msgid "array index in initializer not of integer type"
msgstr ""
-#: c-typeck.c:5320 c-typeck.c:5322
+#: c-typeck.c:5386 c-typeck.c:5388
msgid "nonconstant array index in initializer"
msgstr ""
-#: c-typeck.c:5326 c-typeck.c:5329
+#: c-typeck.c:5392 c-typeck.c:5395
msgid "array index in initializer exceeds array bounds"
msgstr ""
-#: c-typeck.c:5340
+#: c-typeck.c:5406
msgid "empty index range in initializer"
msgstr ""
-#: c-typeck.c:5349
+#: c-typeck.c:5415
msgid "array index range in initializer exceeds array bounds"
msgstr ""
-#: c-typeck.c:5424 c-typeck.c:5445 c-typeck.c:5912
+#: c-typeck.c:5490 c-typeck.c:5511 c-typeck.c:5983
msgid "initialized field with side-effects overwritten"
msgstr ""
-#: c-typeck.c:6121
+#: c-typeck.c:6191
msgid "excess elements in char array initializer"
msgstr ""
-#: c-typeck.c:6128 c-typeck.c:6174
+#: c-typeck.c:6198 c-typeck.c:6244
msgid "excess elements in struct initializer"
msgstr ""
-#: c-typeck.c:6189
+#: c-typeck.c:6259
msgid "non-static initialization of a flexible array member"
msgstr ""
-#: c-typeck.c:6257
+#: c-typeck.c:6327
msgid "excess elements in union initializer"
msgstr ""
-#: c-typeck.c:6344
+#: c-typeck.c:6414
msgid "excess elements in array initializer"
msgstr ""
-#: c-typeck.c:6374
+#: c-typeck.c:6444
msgid "excess elements in vector initializer"
msgstr ""
-#: c-typeck.c:6398
+#: c-typeck.c:6468
msgid "excess elements in scalar initializer"
msgstr ""
-#: cfgrtl.c:2113
+#: cfgrtl.c:2135
msgid "flow control insn inside a basic block"
msgstr ""
-#: cfgrtl.c:2191
+#: cfgrtl.c:2213
msgid "wrong insn in the fallthru edge"
msgstr ""
-#: cfgrtl.c:2233
+#: cfgrtl.c:2255
msgid "insn outside basic block"
msgstr ""
-#: cfgrtl.c:2240
+#: cfgrtl.c:2262
msgid "return not followed by barrier"
msgstr ""
-#: cgraph.c:299
+#: cgraph.c:300 ipa-inline.c:292
msgid "function body not available"
msgstr ""
-#: cgraph.c:301 cgraphunit.c:585
+#: cgraph.c:302 cgraphunit.c:592
msgid "redefined extern inline functions are not considered for inlining"
msgstr ""
-#: cgraph.c:304 cgraphunit.c:590
+#: cgraph.c:305 cgraphunit.c:597
msgid "function not considered for inlining"
msgstr ""
-#: cgraph.c:306 cgraphunit.c:588
+#: cgraph.c:307 cgraphunit.c:595 ipa-inline.c:285
msgid "function not inlinable"
msgstr ""
-#: collect2.c:393 gcc.c:6713
+#: collect2.c:373 gcc.c:6757
#, c-format
msgid "internal gcc abort in %s, at %s:%d"
msgstr ""
-#: collect2.c:892
+#: collect2.c:872
#, c-format
msgid "no arguments"
msgstr ""
-#: collect2.c:1266 collect2.c:1414 collect2.c:1449
+#: collect2.c:1246 collect2.c:1394 collect2.c:1429
#, c-format
msgid "fopen %s"
msgstr ""
-#: collect2.c:1269 collect2.c:1419 collect2.c:1452
+#: collect2.c:1249 collect2.c:1399 collect2.c:1432
#, c-format
msgid "fclose %s"
msgstr ""
-#: collect2.c:1278
+#: collect2.c:1258
#, c-format
msgid "collect2 version %s"
msgstr ""
-#: collect2.c:1368
+#: collect2.c:1348
#, c-format
msgid "%d constructor(s) found\n"
msgstr ""
-#: collect2.c:1369
+#: collect2.c:1349
#, c-format
msgid "%d destructor(s) found\n"
msgstr ""
-#: collect2.c:1370
+#: collect2.c:1350
#, c-format
msgid "%d frame table(s) found\n"
msgstr ""
-#: collect2.c:1507
+#: collect2.c:1487
#, c-format
msgid "can't get program status"
msgstr ""
-#: collect2.c:1557
+#: collect2.c:1537
#, c-format
msgid "[cannot find %s]"
msgstr ""
-#: collect2.c:1572
+#: collect2.c:1552
#, c-format
msgid "cannot find '%s'"
msgstr ""
-#: collect2.c:1576 collect2.c:2065 collect2.c:2220 gcc.c:2790
+#: collect2.c:1556 collect2.c:2045 collect2.c:2200 gcc.c:2804
#, c-format
msgid "pex_init failed"
msgstr ""
-#: collect2.c:1611
+#: collect2.c:1591
#, c-format
msgid "[Leaving %s]\n"
msgstr ""
-#: collect2.c:1831
+#: collect2.c:1811
#, c-format
msgid ""
"\n"
"write_c_file - output name is %s, prefix is %s\n"
msgstr ""
-#: collect2.c:2039
+#: collect2.c:2019
#, c-format
msgid "cannot find 'nm'"
msgstr ""
-#: collect2.c:2086
+#: collect2.c:2066
#, c-format
msgid "can't open nm output"
msgstr ""
-#: collect2.c:2130
+#: collect2.c:2110
#, c-format
msgid "init function found in object %s"
msgstr ""
-#: collect2.c:2138
+#: collect2.c:2118
#, c-format
msgid "fini function found in object %s"
msgstr ""
-#: collect2.c:2241
+#: collect2.c:2221
#, c-format
msgid "can't open ldd output"
msgstr ""
-#: collect2.c:2244
+#: collect2.c:2224
#, c-format
msgid ""
"\n"
"ldd output with constructors/destructors.\n"
msgstr ""
-#: collect2.c:2259
+#: collect2.c:2239
#, c-format
msgid "dynamic dependency %s not found"
msgstr ""
-#: collect2.c:2271
+#: collect2.c:2251
#, c-format
msgid "unable to open dynamic dependency '%s'"
msgstr ""
-#: collect2.c:2427
+#: collect2.c:2407
#, c-format
msgid "%s: not a COFF file"
msgstr ""
-#: collect2.c:2547
+#: collect2.c:2527
#, c-format
msgid "%s: cannot open as COFF file"
msgstr ""
-#: collect2.c:2605
+#: collect2.c:2585
#, c-format
msgid "library lib%s not found"
msgstr ""
-#: combine.c:12505
-#, c-format
-msgid ""
-";; Combiner statistics: %d attempts, %d substitutions (%d requiring new "
-"space),\n"
-";; %d successes.\n"
-"\n"
-msgstr ""
-
-#: combine.c:12514
-#, c-format
-msgid ""
-"\n"
-";; Combiner totals: %d attempts, %d substitutions (%d requiring new space),\n"
-";; %d successes.\n"
-msgstr ""
-
#: cppspec.c:106
#, c-format
msgid "\"%s\" is not a valid option to the preprocessor"
@@ -635,11 +616,6 @@ msgstr ""
msgid "too many input files"
msgstr ""
-#: cse.c:6802
-#, c-format
-msgid ";; Processing block from %d to %d, %d sets.\n"
-msgstr ""
-
#: diagnostic.c:174
#, c-format
msgid "%s:%d: confused by earlier errors, bailing out\n"
@@ -663,49 +639,49 @@ msgstr ""
msgid "compilation terminated.\n"
msgstr ""
-#: diagnostic.c:570
+#: diagnostic.c:571
#, c-format
msgid "Internal compiler error: Error reporting routines re-entered.\n"
msgstr ""
-#: final.c:1062
+#: final.c:1088
msgid "negative insn length"
msgstr ""
-#: final.c:2419
+#: final.c:2445
msgid "could not split insn"
msgstr ""
-#: final.c:2765
+#: final.c:2791
msgid "invalid 'asm': "
msgstr ""
-#: final.c:2948
+#: final.c:2974
#, c-format
msgid "nested assembly dialect alternatives"
msgstr ""
-#: final.c:2965 final.c:2977
+#: final.c:2991 final.c:3003
#, c-format
msgid "unterminated assembly dialect alternative"
msgstr ""
-#: final.c:3024
+#: final.c:3050
#, c-format
msgid "operand number missing after %%-letter"
msgstr ""
-#: final.c:3027 final.c:3068
+#: final.c:3053 final.c:3094
#, c-format
msgid "operand number out of range"
msgstr ""
-#: final.c:3087
+#: final.c:3113
#, c-format
msgid "invalid %%-code"
msgstr ""
-#: final.c:3117
+#: final.c:3143
#, c-format
msgid "'%%l' operand isn't a label"
msgstr ""
@@ -716,117 +692,117 @@ msgstr ""
#. handle them.
#. We can't handle floating point constants;
#. PRINT_OPERAND must handle them.
-#: final.c:3218 vmsdbgout.c:487 config/i386/i386.c:6133
+#: final.c:3244 vmsdbgout.c:487 config/i386/i386.c:6445
#: config/pdp11/pdp11.c:1700
#, c-format
msgid "floating constant misused"
msgstr ""
-#: final.c:3274 vmsdbgout.c:544 config/i386/i386.c:6209
+#: final.c:3300 vmsdbgout.c:544 config/i386/i386.c:6521
#: config/pdp11/pdp11.c:1747
#, c-format
msgid "invalid expression as operand"
msgstr ""
-#: flow.c:1700
+#: flow.c:1702
msgid "Attempt to delete prologue/epilogue insn:"
msgstr ""
-#: gcc.c:1628
+#: gcc.c:1642
#, c-format
msgid "Using built-in specs.\n"
msgstr ""
-#: gcc.c:1811
+#: gcc.c:1825
#, c-format
msgid ""
"Setting spec %s to '%s'\n"
"\n"
msgstr ""
-#: gcc.c:1920
+#: gcc.c:1934
#, c-format
msgid "Reading specs from %s\n"
msgstr ""
-#: gcc.c:2016 gcc.c:2035
+#: gcc.c:2030 gcc.c:2049
#, c-format
msgid "specs %%include syntax malformed after %ld characters"
msgstr ""
-#: gcc.c:2043
+#: gcc.c:2057
#, c-format
msgid "could not find specs file %s\n"
msgstr ""
-#: gcc.c:2060 gcc.c:2068 gcc.c:2077 gcc.c:2086
+#: gcc.c:2074 gcc.c:2082 gcc.c:2091 gcc.c:2100
#, c-format
msgid "specs %%rename syntax malformed after %ld characters"
msgstr ""
-#: gcc.c:2095
+#: gcc.c:2109
#, c-format
msgid "specs %s spec was not found to be renamed"
msgstr ""
-#: gcc.c:2102
+#: gcc.c:2116
#, c-format
msgid "%s: attempt to rename spec '%s' to already defined spec '%s'"
msgstr ""
-#: gcc.c:2107
+#: gcc.c:2121
#, c-format
msgid "rename spec %s to %s\n"
msgstr ""
-#: gcc.c:2109
+#: gcc.c:2123
#, c-format
msgid ""
"spec is '%s'\n"
"\n"
msgstr ""
-#: gcc.c:2122
+#: gcc.c:2136
#, c-format
msgid "specs unknown %% command after %ld characters"
msgstr ""
-#: gcc.c:2133 gcc.c:2146
+#: gcc.c:2147 gcc.c:2160
#, c-format
msgid "specs file malformed after %ld characters"
msgstr ""
-#: gcc.c:2199
+#: gcc.c:2213
#, c-format
msgid "spec file has no spec for linking"
msgstr ""
-#: gcc.c:2621
+#: gcc.c:2635
#, c-format
msgid "system path '%s' is not absolute"
msgstr ""
-#: gcc.c:2684
+#: gcc.c:2698
#, c-format
msgid "-pipe not supported"
msgstr ""
-#: gcc.c:2746
+#: gcc.c:2760
#, c-format
msgid ""
"\n"
"Go ahead? (y or n) "
msgstr ""
-#: gcc.c:2829
+#: gcc.c:2843
msgid "failed to get exit status"
msgstr ""
-#: gcc.c:2835
+#: gcc.c:2849
msgid "failed to get process times"
msgstr ""
-#: gcc.c:2858
+#: gcc.c:2872
#, c-format
msgid ""
"Internal error: %s (program %s)\n"
@@ -834,189 +810,196 @@ msgid ""
"See %s for instructions."
msgstr ""
-#: gcc.c:2886
+#: gcc.c:2900
#, c-format
msgid "# %s %.2f %.2f\n"
msgstr ""
-#: gcc.c:3015
+#: gcc.c:3036
#, c-format
msgid "Usage: %s [options] file...\n"
msgstr ""
-#: gcc.c:3016
+#: gcc.c:3037
msgid "Options:\n"
msgstr ""
-#: gcc.c:3018
+#: gcc.c:3039
msgid " -pass-exit-codes Exit with highest error code from a phase\n"
msgstr ""
-#: gcc.c:3019
+#: gcc.c:3040
msgid " --help Display this information\n"
msgstr ""
-#: gcc.c:3020
+#: gcc.c:3041
msgid ""
" --target-help Display target specific command line options\n"
msgstr ""
-#: gcc.c:3022
+#: gcc.c:3043
msgid " (Use '-v --help' to display command line options of sub-processes)\n"
msgstr ""
-#: gcc.c:3023
+#: gcc.c:3044
msgid " -dumpspecs Display all of the built in spec strings\n"
msgstr ""
-#: gcc.c:3024
+#: gcc.c:3045
msgid " -dumpversion Display the version of the compiler\n"
msgstr ""
-#: gcc.c:3025
+#: gcc.c:3046
msgid " -dumpmachine Display the compiler's target processor\n"
msgstr ""
-#: gcc.c:3026
+#: gcc.c:3047
msgid ""
" -print-search-dirs Display the directories in the compiler's search "
"path\n"
msgstr ""
-#: gcc.c:3027
+#: gcc.c:3048
msgid ""
" -print-libgcc-file-name Display the name of the compiler's companion "
"library\n"
msgstr ""
-#: gcc.c:3028
+#: gcc.c:3049
msgid " -print-file-name=<lib> Display the full path to library <lib>\n"
msgstr ""
-#: gcc.c:3029
+#: gcc.c:3050
msgid ""
" -print-prog-name=<prog> Display the full path to compiler component "
"<prog>\n"
msgstr ""
-#: gcc.c:3030
+#: gcc.c:3051
msgid ""
" -print-multi-directory Display the root directory for versions of "
"libgcc\n"
msgstr ""
-#: gcc.c:3031
+#: gcc.c:3052
msgid ""
" -print-multi-lib Display the mapping between command line options "
"and\n"
" multiple library search directories\n"
msgstr ""
-#: gcc.c:3034
+#: gcc.c:3055
msgid " -print-multi-os-directory Display the relative path to OS libraries\n"
msgstr ""
-#: gcc.c:3035
+#: gcc.c:3056
msgid ""
" -Wa,<options> Pass comma-separated <options> on to the "
"assembler\n"
msgstr ""
-#: gcc.c:3036
+#: gcc.c:3057
msgid ""
" -Wp,<options> Pass comma-separated <options> on to the "
"preprocessor\n"
msgstr ""
-#: gcc.c:3037
+#: gcc.c:3058
msgid ""
" -Wl,<options> Pass comma-separated <options> on to the linker\n"
msgstr ""
-#: gcc.c:3038
+#: gcc.c:3059
msgid " -Xassembler <arg> Pass <arg> on to the assembler\n"
msgstr ""
-#: gcc.c:3039
+#: gcc.c:3060
msgid " -Xpreprocessor <arg> Pass <arg> on to the preprocessor\n"
msgstr ""
-#: gcc.c:3040
+#: gcc.c:3061
msgid " -Xlinker <arg> Pass <arg> on to the linker\n"
msgstr ""
-#: gcc.c:3041
+#: gcc.c:3062
msgid ""
" -combine Pass multiple source files to compiler at once\n"
msgstr ""
-#: gcc.c:3042
+#: gcc.c:3063
msgid " -save-temps Do not delete intermediate files\n"
msgstr ""
-#: gcc.c:3043
+#: gcc.c:3064
msgid " -pipe Use pipes rather than intermediate files\n"
msgstr ""
-#: gcc.c:3044
+#: gcc.c:3065
msgid " -time Time the execution of each subprocess\n"
msgstr ""
-#: gcc.c:3045
+#: gcc.c:3066
msgid ""
" -specs=<file> Override built-in specs with the contents of "
"<file>\n"
msgstr ""
-#: gcc.c:3046
+#: gcc.c:3067
msgid ""
" -std=<standard> Assume that the input sources are for <standard>\n"
msgstr ""
-#: gcc.c:3047
+#: gcc.c:3068
+msgid ""
+" --sysroot=<directory> Use <directory> as the root directory for "
+"headers\n"
+" for headers and libraries\n"
+msgstr ""
+
+#: gcc.c:3071
msgid ""
" -B <directory> Add <directory> to the compiler's search paths\n"
msgstr ""
-#: gcc.c:3048
+#: gcc.c:3072
msgid " -b <machine> Run gcc for target <machine>, if installed\n"
msgstr ""
-#: gcc.c:3049
+#: gcc.c:3073
msgid ""
" -V <version> Run gcc version number <version>, if installed\n"
msgstr ""
-#: gcc.c:3050
+#: gcc.c:3074
msgid ""
" -v Display the programs invoked by the compiler\n"
msgstr ""
-#: gcc.c:3051
+#: gcc.c:3075
msgid ""
" -### Like -v but options quoted and commands not "
"executed\n"
msgstr ""
-#: gcc.c:3052
+#: gcc.c:3076
msgid ""
" -E Preprocess only; do not compile, assemble or "
"link\n"
msgstr ""
-#: gcc.c:3053
+#: gcc.c:3077
msgid " -S Compile only; do not assemble or link\n"
msgstr ""
-#: gcc.c:3054
+#: gcc.c:3078
msgid " -c Compile and assemble, but do not link\n"
msgstr ""
-#: gcc.c:3055
+#: gcc.c:3079
msgid " -o <file> Place the output into <file>\n"
msgstr ""
-#: gcc.c:3056
+#: gcc.c:3080
msgid ""
" -x <language> Specify the language of the following input "
"files\n"
@@ -1027,7 +1010,7 @@ msgid ""
"extension\n"
msgstr ""
-#: gcc.c:3063
+#: gcc.c:3087
#, c-format
msgid ""
"\n"
@@ -1036,28 +1019,28 @@ msgid ""
" other options on to these processes the -W<letter> options must be used.\n"
msgstr ""
-#: gcc.c:3183
+#: gcc.c:3211
#, c-format
msgid "'-%c' option must have argument"
msgstr ""
-#: gcc.c:3205
+#: gcc.c:3233
#, c-format
msgid "couldn't run '%s': %s"
msgstr ""
#. translate_options () has turned --version into -fversion.
-#: gcc.c:3390
+#: gcc.c:3418
#, c-format
msgid "%s (GCC) %s\n"
msgstr ""
-#: gcc.c:3392 gcov.c:415 java/gjavah.c:2400 java/jcf-dump.c:931
-#: java/jv-scan.c:129
+#: gcc.c:3420 gcov.c:415 fortran/gfortranspec.c:351 java/gjavah.c:2400
+#: java/jcf-dump.c:931 java/jv-scan.c:129
msgid "(C)"
msgstr ""
-#: gcc.c:3393 java/gjavah.c:2401 java/jcf-dump.c:932 java/jv-scan.c:130
+#: gcc.c:3421 java/gjavah.c:2401 java/jcf-dump.c:932 java/jv-scan.c:130
#, c-format
msgid ""
"This is free software; see the source for copying conditions. There is NO\n"
@@ -1065,204 +1048,209 @@ msgid ""
"\n"
msgstr ""
-#: gcc.c:3494
+#: gcc.c:3522
#, c-format
msgid "argument to '-Xlinker' is missing"
msgstr ""
-#: gcc.c:3502
+#: gcc.c:3530
#, c-format
msgid "argument to '-Xpreprocessor' is missing"
msgstr ""
-#: gcc.c:3509
+#: gcc.c:3537
#, c-format
msgid "argument to '-Xassembler' is missing"
msgstr ""
-#: gcc.c:3516
+#: gcc.c:3544
#, c-format
msgid "argument to '-l' is missing"
msgstr ""
-#: gcc.c:3537
+#: gcc.c:3565
#, c-format
msgid "argument to '-specs' is missing"
msgstr ""
-#: gcc.c:3551
+#: gcc.c:3579
#, c-format
msgid "argument to '-specs=' is missing"
msgstr ""
-#: gcc.c:3588
+#: gcc.c:3617
#, c-format
msgid "'-%c' must come at the start of the command line"
msgstr ""
-#: gcc.c:3597
+#: gcc.c:3626
#, c-format
msgid "argument to '-B' is missing"
msgstr ""
-#: gcc.c:3977
+#: gcc.c:4011
#, c-format
msgid "argument to '-x' is missing"
msgstr ""
-#: gcc.c:4005
+#: gcc.c:4039
#, c-format
msgid "argument to '-%s' is missing"
msgstr ""
-#: gcc.c:4343
+#: gcc.c:4377
#, c-format
msgid "switch '%s' does not start with '-'"
msgstr ""
-#: gcc.c:4573
+#: gcc.c:4607
#, c-format
msgid "spec '%s' invalid"
msgstr ""
-#: gcc.c:4639
+#: gcc.c:4673
#, c-format
msgid "%s\n"
msgstr ""
-#: gcc.c:4712
+#: gcc.c:4746
#, c-format
msgid "spec '%s' has invalid '%%0%c'"
msgstr ""
-#: gcc.c:4909
+#: gcc.c:4943
#, c-format
msgid "spec '%s' has invalid '%%W%c"
msgstr ""
-#: gcc.c:4940
+#: gcc.c:4974
#, c-format
msgid "spec '%s' has invalid '%%x%c'"
msgstr ""
-#: gcc.c:5162
+#: gcc.c:5196
#, c-format
msgid "Processing spec %c%s%c, which is '%s'\n"
msgstr ""
-#: gcc.c:5304
+#: gcc.c:5338
#, c-format
msgid "unknown spec function '%s'"
msgstr ""
-#: gcc.c:5323
+#: gcc.c:5357
#, c-format
msgid "error in args to spec function '%s'"
msgstr ""
-#: gcc.c:5371
+#: gcc.c:5405
#, c-format
msgid "malformed spec function name"
msgstr ""
#. )
-#: gcc.c:5374
+#: gcc.c:5408
#, c-format
msgid "no arguments for spec function"
msgstr ""
-#: gcc.c:5393
+#: gcc.c:5427
#, c-format
msgid "malformed spec function arguments"
msgstr ""
-#: gcc.c:5632
+#: gcc.c:5666
#, c-format
msgid "braced spec '%s' is invalid at '%c'"
msgstr ""
-#: gcc.c:5720
+#: gcc.c:5754
#, c-format
msgid "braced spec body '%s' is invalid"
msgstr ""
-#: gcc.c:6267
+#: gcc.c:6301
#, c-format
msgid "install: %s%s\n"
msgstr ""
-#: gcc.c:6268
+#: gcc.c:6302
#, c-format
msgid "programs: %s\n"
msgstr ""
-#: gcc.c:6269
+#: gcc.c:6303
#, c-format
msgid "libraries: %s\n"
msgstr ""
-#: gcc.c:6326
+#: gcc.c:6360
#, c-format
msgid ""
"\n"
"For bug reporting instructions, please see:\n"
msgstr ""
-#: gcc.c:6342
+#: gcc.c:6376
#, c-format
msgid "Target: %s\n"
msgstr ""
-#: gcc.c:6343
+#: gcc.c:6377
#, c-format
msgid "Configured with: %s\n"
msgstr ""
-#: gcc.c:6357
+#: gcc.c:6391
#, c-format
msgid "Thread model: %s\n"
msgstr ""
-#: gcc.c:6368
+#: gcc.c:6402
#, c-format
msgid "gcc version %s\n"
msgstr ""
-#: gcc.c:6370
+#: gcc.c:6404
#, c-format
msgid "gcc driver version %s executing gcc version %s\n"
msgstr ""
-#: gcc.c:6378
+#: gcc.c:6412
#, c-format
msgid "no input files"
msgstr ""
-#: gcc.c:6458
+#: gcc.c:6492
#, c-format
msgid "spec '%s' is invalid"
msgstr ""
-#: gcc.c:6913
+#: gcc.c:6957
#, c-format
msgid "multilib spec '%s' is invalid"
msgstr ""
-#: gcc.c:7105
+#: gcc.c:7149
#, c-format
msgid "multilib exclusions '%s' is invalid"
msgstr ""
-#: gcc.c:7163 gcc.c:7304
+#: gcc.c:7207 gcc.c:7348
#, c-format
msgid "multilib select '%s' is invalid"
msgstr ""
-#: gcc.c:7342
+#: gcc.c:7386
#, c-format
msgid "multilib exclusion '%s' is invalid"
msgstr ""
+#: gcc.c:7645 gcc.c:7650
+#, c-format
+msgid "invalid version number `%s'"
+msgstr ""
+
#: gcov.c:388
#, c-format
msgid ""
@@ -1368,7 +1356,7 @@ msgstr ""
msgid "%s:no functions found\n"
msgstr ""
-#: gcov.c:528 gcov.c:556
+#: gcov.c:528 gcov.c:556 fortran/dump-parse-tree.c:67
#, c-format
msgid "\n"
msgstr ""
@@ -1554,45 +1542,15 @@ msgid "%s:source file is newer than graph file '%s'\n"
msgstr ""
#. Return if there's nothing to do, or it is too expensive.
-#: gcse.c:689
+#: gcse.c:690
msgid "GCSE disabled"
msgstr ""
#. Return if there's nothing to do, or it is too expensive.
-#: gcse.c:6479
+#: gcse.c:6481
msgid "jump bypassing disabled"
msgstr ""
-#: gengtype-yacc.c:560 java/parse-scan.c:1934
-#: java/parse-scan.y:1374 java/parse.c:2925
-#: java/parse.y:16428
-msgid "syntax error: cannot back up"
-msgstr ""
-
-#: gengtype-yacc.c:1602 java/parse-scan.c:3103
-#: java/parse-scan.y:1372 java/parse.c:6188
-#: java/parse.y:16426
-msgid "syntax error; also virtual memory exhausted"
-msgstr ""
-
-#. Depending on the version of Bison used to compile this grammar,
-#. it may issue generic diagnostics spelled "syntax error" or
-#. "parse error". To prevent this from changing the translation
-#. template randomly, we list all the variants of this particular
-#. diagnostic here. Translators: there is no fine distinction
-#. between diagnostics with "syntax error" in them, and diagnostics
-#. with "parse error" in them. It's okay to give them both the same
-#. translation.
-#: gengtype-yacc.c:1606 java/parse-scan.c:3107
-#: java/parse-scan.y:1370 java/parse.c:6192
-#: java/parse.y:16424
-msgid "syntax error"
-msgstr ""
-
-#: gengtype-yacc.c:1727 java/parse-scan.c:3228 java/parse.c:6313
-msgid "parser stack overflow"
-msgstr ""
-
#. Opening quotation mark.
#: intl.c:58
msgid "`"
@@ -1603,28 +1561,27 @@ msgstr ""
msgid "'"
msgstr ""
-#: ipa-inline.c:270
+#: ipa-inline.c:271
msgid "--param large-function-growth limit reached"
msgstr ""
-#: ipa-inline.c:307 ipa-inline.c:632
-msgid "recursive inlining"
+#: ipa-inline.c:301
+msgid "--param max-inline-insns-single limit reached"
msgstr ""
-#: ipa-inline.c:572 ipa-inline.c:919
-msgid "--param max-inline-insns-single limit reached"
+#: ipa-inline.c:310
+msgid "--param max-inline-insns-auto limit reached"
msgstr ""
-#: ipa-inline.c:645
-msgid "call is unlikely"
+#: ipa-inline.c:336 ipa-inline.c:760
+msgid "recursive inlining"
msgstr ""
-#: ipa-inline.c:657
-msgid ""
-"--param max-inline-insns-single limit reached after inlining into the callee"
+#: ipa-inline.c:773
+msgid "call is unlikely"
msgstr ""
-#: ipa-inline.c:716
+#: ipa-inline.c:844
msgid "--param inline-unit-growth limit reached"
msgstr ""
@@ -1642,8 +1599,24 @@ msgstr ""
msgid "In function %qs:"
msgstr ""
+#: loop-iv.c:2709 tree-ssa-loop-niter.c:1022
+msgid "assuming that the loop is not infinite"
+msgstr ""
+
+#: loop-iv.c:2710 tree-ssa-loop-niter.c:1023
+msgid "cannot optimize possibly infinite loops"
+msgstr ""
+
+#: loop-iv.c:2718 tree-ssa-loop-niter.c:1027
+msgid "assuming that the loop counter does not overflow"
+msgstr ""
+
+#: loop-iv.c:2719 tree-ssa-loop-niter.c:1028
+msgid "cannot optimize loop, the loop counter may overflow"
+msgstr ""
+
#. What to print when a switch has no documentation.
-#: opts.c:89
+#: opts.c:90
msgid "This switch lacks documentation"
msgstr ""
@@ -1972,21 +1945,21 @@ msgstr ""
msgid "%s: input file names must have .c suffixes: %s\n"
msgstr ""
-#: reload.c:3720
+#: reload.c:3730
msgid "unable to generate reloads for:"
msgstr ""
-#: reload1.c:1889
+#: reload1.c:1890
msgid "this is the insn:"
msgstr ""
#. It's the compiler's fault.
-#: reload1.c:5008
+#: reload1.c:5044
msgid "could not find a spill register"
msgstr ""
#. It's the compiler's fault.
-#: reload1.c:6639
+#: reload1.c:6675
msgid "VOIDmode on an output"
msgstr ""
@@ -2049,46 +2022,50 @@ msgstr ""
msgid "unrecoverable error"
msgstr ""
-#: toplev.c:1101
+#: toplev.c:1114
#, c-format
msgid ""
"%s%s%s version %s (%s)\n"
"%s\tcompiled by GNU C version %s.\n"
-"%s%s%s version %s (%s) compiled by CC.\n"
msgstr ""
-#: toplev.c:1108
+#: toplev.c:1116
+#, c-format
+msgid "%s%s%s version %s (%s) compiled by CC.\n"
+msgstr ""
+
+#: toplev.c:1120
#, c-format
msgid ""
"%s%sGGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d\n"
msgstr ""
-#: toplev.c:1160
+#: toplev.c:1182
msgid "options passed: "
msgstr ""
-#: toplev.c:1189
+#: toplev.c:1211
msgid "options enabled: "
msgstr ""
-#: toplev.c:1308
+#: toplev.c:1330
#, c-format
msgid "created and used with differing settings of '%s'"
msgstr ""
-#: toplev.c:1310
+#: toplev.c:1332
msgid "out of memory"
msgstr ""
-#: toplev.c:1325
+#: toplev.c:1347
msgid "created and used with different settings of -fpic"
msgstr ""
-#: toplev.c:1327
+#: toplev.c:1349
msgid "created and used with different settings of -fpie"
msgstr ""
-#: tree-inline.c:1964
+#: tree-inline.c:1978
msgid "originally indirect function call not considered for inlining"
msgstr ""
@@ -2129,522 +2106,549 @@ msgstr ""
msgid "debug: "
msgstr ""
-#: params.def:43
+#: params.def:48
msgid ""
"The maximum number of fields in a structure variable without direct "
"structure accesses that GCC will attempt to track separately"
msgstr ""
-#: params.def:52
-msgid "The maximum structure size (in bytes) at which GCC will do block copies"
+#: params.def:57
+msgid ""
+"The maximum structure size (in bytes) for which GCC will use by-element "
+"copies"
+msgstr ""
+
+#: params.def:66
+msgid ""
+"The maximum number of structure fields for which GCC will use by-element "
+"copies"
msgstr ""
-#: params.def:62
+#: params.def:78
msgid ""
"The threshold ratio between instantiated fields and the total structure size"
msgstr ""
-#: params.def:79
+#: params.def:95
msgid ""
"The maximum number of instructions in a single function eligible for inlining"
msgstr ""
-#: params.def:91
+#: params.def:107
msgid "The maximum number of instructions when automatically inlining"
msgstr ""
-#: params.def:96
+#: params.def:112
msgid ""
"The maximum number of instructions inline function can grow to via recursive "
"inlining"
msgstr ""
-#: params.def:101
+#: params.def:117
msgid ""
"The maximum number of instructions non-inline function can grow to via "
"recursive inlining"
msgstr ""
-#: params.def:106
+#: params.def:122
msgid "The maximum depth of recursive inlining for inline functions"
msgstr ""
-#: params.def:111
+#: params.def:127
msgid "The maximum depth of recursive inlining for non-inline functions"
msgstr ""
-#: params.def:118
+#: params.def:132
+msgid ""
+"Inline recursively only when the probability of call being executed exceeds "
+"the parameter"
+msgstr ""
+
+#: params.def:139
msgid ""
"If -fvariable-expansion-in-unroller is used, the maximum number "
"of times that an individual variable will be expanded "
"during loop unrolling"
msgstr ""
-#: params.def:131
+#: params.def:152
msgid "The maximum number of instructions to consider to fill a delay slot"
msgstr ""
-#: params.def:142
+#: params.def:163
msgid ""
"The maximum number of instructions to consider to find accurate live "
"register information"
msgstr ""
-#: params.def:152
+#: params.def:173
msgid "The maximum length of scheduling's pending operations list"
msgstr ""
-#: params.def:157
+#: params.def:178
msgid "The size of function body to be considered large"
msgstr ""
-#: params.def:161
+#: params.def:182
msgid "Maximal growth due to inlining of large function (in percent)"
msgstr ""
-#: params.def:165
+#: params.def:186
msgid ""
"how much can given compilation unit grow because of the inlining (in percent)"
msgstr ""
-#: params.def:169
+#: params.def:190
msgid "expense of call operation relative to ordinary arithmetic operations"
msgstr ""
-#: params.def:176
+#: params.def:197
msgid "The maximum amount of memory to be allocated by GCSE"
msgstr ""
-#: params.def:181
+#: params.def:202
msgid "The maximum number of passes to make when doing GCSE"
msgstr ""
-#: params.def:191
+#: params.def:212
msgid ""
"The threshold ratio for performing partial redundancy elimination after "
-"reload."
+"reload"
msgstr ""
-#: params.def:198
+#: params.def:219
msgid ""
"The threshold ratio of critical edges execution count that permit performing "
-"redundancy elimination after reload."
+"redundancy elimination after reload"
msgstr ""
-#: params.def:209
+#: params.def:230
msgid "The maximum number of instructions to consider to unroll in a loop"
msgstr ""
-#: params.def:215
+#: params.def:236
msgid ""
"The maximum number of instructions to consider to unroll in a loop on average"
msgstr ""
-#: params.def:220
+#: params.def:241
msgid "The maximum number of unrollings of a single loop"
msgstr ""
-#: params.def:225
+#: params.def:246
msgid "The maximum number of insns of a peeled loop"
msgstr ""
-#: params.def:230
+#: params.def:251
msgid "The maximum number of peelings of a single loop"
msgstr ""
-#: params.def:235
+#: params.def:256
msgid "The maximum number of insns of a completely peeled loop"
msgstr ""
-#: params.def:240
+#: params.def:261
msgid ""
"The maximum number of peelings of a single loop that is peeled completely"
msgstr ""
-#: params.def:245
+#: params.def:266
msgid "The maximum number of insns of a peeled loop that rolls only once"
msgstr ""
-#: params.def:251
+#: params.def:272
msgid "The maximum number of insns of an unswitched loop"
msgstr ""
-#: params.def:256
+#: params.def:277
msgid "The maximum number of unswitchings in a single loop"
msgstr ""
-#: params.def:263
+#: params.def:284
msgid ""
"Bound on the number of iterations the brute force # of iterations analysis "
"algorithm evaluates"
msgstr ""
-#: params.def:268
+#: params.def:289
msgid ""
"Maximum number of loops to perform swing modulo scheduling on (mainly for "
"debugging)"
msgstr ""
-#: params.def:274
+#: params.def:295
msgid ""
"A factor for tuning the upper bound that swing modulo scheduler uses for "
"scheduling a loop"
msgstr ""
-#: params.def:278
+#: params.def:299
msgid ""
"The number of cycles the swing modulo scheduler considers when \t checking "
"conflicts using DFA"
msgstr ""
-#: params.def:283
+#: params.def:304
msgid ""
"A threshold on the average loop count considered by the swing modulo "
"scheduler"
msgstr ""
-#: params.def:288
+#: params.def:309
msgid ""
"Select fraction of the maximal count of repetitions of basic block in "
"program given basic block needs to have to be considered hot"
msgstr ""
-#: params.def:292
+#: params.def:313
msgid ""
"Select fraction of the maximal frequency of executions of basic block in "
"function given basic block needs to have to be considered hot"
msgstr ""
-#: params.def:296
+#: params.def:317
msgid ""
"The percentage of function, weighted by execution frequency, that must be "
"covered by trace formation. Used when profile feedback is available"
msgstr ""
-#: params.def:300
+#: params.def:321
msgid ""
"The percentage of function, weighted by execution frequency, that must be "
"covered by trace formation. Used when profile feedback is not available"
msgstr ""
-#: params.def:304
+#: params.def:325
msgid "Maximal code growth caused by tail duplication (in percent)"
msgstr ""
-#: params.def:308
+#: params.def:329
msgid ""
"Stop reverse growth if the reverse probability of best edge is less than "
"this threshold (in percent)"
msgstr ""
-#: params.def:312
+#: params.def:333
msgid ""
"Stop forward growth if the probability of best edge is less than this "
"threshold (in percent). Used when profile feedback is available"
msgstr ""
-#: params.def:316
+#: params.def:337
msgid ""
"Stop forward growth if the probability of best edge is less than this "
"threshold (in percent). Used when profile feedback is not available"
msgstr ""
-#: params.def:322
+#: params.def:343
msgid "The maximum number of incoming edges to consider for crossjumping"
msgstr ""
-#: params.def:328
+#: params.def:349
msgid ""
"The minimum number of matching instructions to consider for crossjumping"
msgstr ""
-#: params.def:334
+#: params.def:355
msgid ""
"The maximum number of insns to duplicate when unfactoring computed gotos"
msgstr ""
-#: params.def:340
+#: params.def:361
msgid "The maximum length of path considered in cse"
msgstr ""
-#: params.def:347
+#: params.def:368
msgid ""
"The minimum cost of an expensive expression in the loop invariant motion"
msgstr ""
-#: params.def:356
+#: params.def:377
msgid ""
"Bound on number of candidates below that all candidates are considered in iv "
"optimizations"
msgstr ""
-#: params.def:364
+#: params.def:385
msgid "Bound on number of iv uses in loop optimized in iv optimizations"
msgstr ""
-#: params.def:372
+#: params.def:393
msgid ""
"If number of candidates in the set is smaller, we always try to remove "
"unused ivs during its optimization"
msgstr ""
-#: params.def:377
+#: params.def:398
msgid "Bound on size of expressions used in the scalar evolutions analyzer"
msgstr ""
-#: params.def:384
+#: params.def:403
+msgid ""
+"Bound on number of runtime checks inserted by the vectorizer's loop "
+"versioning"
+msgstr ""
+
+#: params.def:410
msgid ""
"Given N calls and V call-clobbered vars in a function. Use .GLOBAL_VAR if "
"NxV is larger than this limit"
msgstr ""
-#: params.def:389
+#: params.def:415
msgid "The maximum memory locations recorded by cselib"
msgstr ""
-#: params.def:402
+#: params.def:428
msgid ""
"Minimum heap expansion to trigger garbage collection, as a percentage of the "
"total size of the heap"
msgstr ""
-#: params.def:407
+#: params.def:433
msgid "Minimum heap size before we start collecting garbage, in kilobytes"
msgstr ""
-#: params.def:415
+#: params.def:441
msgid ""
"The maximum number of instructions to search backward when looking for "
"equivalent reload"
msgstr ""
-#: params.def:420
+#: params.def:446
msgid ""
"The maximum number of virtual operands allowed to represent aliases before "
-"triggering alias grouping."
+"triggering alias grouping"
msgstr ""
-#: params.def:425
+#: params.def:451
msgid ""
"The maximum number of blocks in a region to be considered for interblock "
"scheduling"
msgstr ""
-#: params.def:430
+#: params.def:456
msgid ""
"The maximum number of insns in a region to be considered for interblock "
"scheduling"
msgstr ""
-#: params.def:435
+#: params.def:461
+msgid ""
+"The minimum probability of reaching a source block for interblock "
+"speculative scheduling"
+msgstr ""
+
+#: params.def:466
msgid ""
"The maximum number of RTL nodes that can be recorded as combiner's last value"
msgstr ""
-#: params.def:443
+#: params.def:474
msgid "The upper bound for sharing integer constants"
msgstr ""
-#: params.def:462
+#: params.def:493
msgid ""
"Minimum number of virtual mappings to consider switching to full virtual "
"renames"
msgstr ""
-#: params.def:467
+#: params.def:498
msgid ""
"Ratio between virtual mappings and virtual symbols to do full virtual renames"
msgstr ""
-#: params.def:472
+#: params.def:503
msgid ""
"The lower bound for a buffer to be considered for stack smashing protection"
msgstr ""
-#: config/alpha/alpha.c:4894
+#: config/alpha/alpha.c:5063
#, c-format
msgid "invalid %%H value"
msgstr ""
-#: config/alpha/alpha.c:4915 config/bfin/bfin.c:1031
+#: config/alpha/alpha.c:5084 config/bfin/bfin.c:1162
#, c-format
msgid "invalid %%J value"
msgstr ""
-#: config/alpha/alpha.c:4945 config/ia64/ia64.c:4470
+#: config/alpha/alpha.c:5114 config/ia64/ia64.c:4505
#, c-format
msgid "invalid %%r value"
msgstr ""
-#: config/alpha/alpha.c:4955 config/rs6000/rs6000.c:9879
+#: config/alpha/alpha.c:5124 config/rs6000/rs6000.c:10317
#: config/xtensa/xtensa.c:1691
#, c-format
msgid "invalid %%R value"
msgstr ""
-#: config/alpha/alpha.c:4961 config/rs6000/rs6000.c:9798
+#: config/alpha/alpha.c:5130 config/rs6000/rs6000.c:10236
#: config/xtensa/xtensa.c:1658
#, c-format
msgid "invalid %%N value"
msgstr ""
-#: config/alpha/alpha.c:4969 config/rs6000/rs6000.c:9826
+#: config/alpha/alpha.c:5138 config/rs6000/rs6000.c:10264
#, c-format
msgid "invalid %%P value"
msgstr ""
-#: config/alpha/alpha.c:4977
+#: config/alpha/alpha.c:5146
#, c-format
msgid "invalid %%h value"
msgstr ""
-#: config/alpha/alpha.c:4985 config/xtensa/xtensa.c:1684
+#: config/alpha/alpha.c:5154 config/xtensa/xtensa.c:1684
#, c-format
msgid "invalid %%L value"
msgstr ""
-#: config/alpha/alpha.c:5024 config/rs6000/rs6000.c:9780
+#: config/alpha/alpha.c:5193 config/rs6000/rs6000.c:10218
#, c-format
msgid "invalid %%m value"
msgstr ""
-#: config/alpha/alpha.c:5032 config/rs6000/rs6000.c:9788
+#: config/alpha/alpha.c:5201 config/rs6000/rs6000.c:10226
#, c-format
msgid "invalid %%M value"
msgstr ""
-#: config/alpha/alpha.c:5076
+#: config/alpha/alpha.c:5245
#, c-format
msgid "invalid %%U value"
msgstr ""
-#: config/alpha/alpha.c:5088 config/alpha/alpha.c:5102
-#: config/rs6000/rs6000.c:9887
+#: config/alpha/alpha.c:5257 config/alpha/alpha.c:5271
+#: config/rs6000/rs6000.c:10325
#, c-format
msgid "invalid %%s value"
msgstr ""
-#: config/alpha/alpha.c:5125
+#: config/alpha/alpha.c:5294
#, c-format
msgid "invalid %%C value"
msgstr ""
-#: config/alpha/alpha.c:5162 config/rs6000/rs6000.c:9619
-#: config/rs6000/rs6000.c:9637
+#: config/alpha/alpha.c:5331 config/rs6000/rs6000.c:10057
+#: config/rs6000/rs6000.c:10075
#, c-format
msgid "invalid %%E value"
msgstr ""
-#: config/alpha/alpha.c:5187 config/alpha/alpha.c:5235
+#: config/alpha/alpha.c:5356 config/alpha/alpha.c:5404
#, c-format
msgid "unknown relocation unspec"
msgstr ""
-#: config/alpha/alpha.c:5196 config/rs6000/rs6000.c:10200
+#: config/alpha/alpha.c:5365 config/crx/crx.c:1082
+#: config/rs6000/rs6000.c:10638
#, c-format
msgid "invalid %%xn code"
msgstr ""
-#: config/arc/arc.c:1715 config/m32r/m32r.c:1795
+#: config/arc/arc.c:1726 config/m32r/m32r.c:1805
#, c-format
msgid "invalid operand to %%R code"
msgstr ""
-#: config/arc/arc.c:1747 config/m32r/m32r.c:1818
+#: config/arc/arc.c:1758 config/m32r/m32r.c:1828
#, c-format
msgid "invalid operand to %%H/%%L code"
msgstr ""
-#: config/arc/arc.c:1769 config/m32r/m32r.c:1889
+#: config/arc/arc.c:1780 config/m32r/m32r.c:1899
#, c-format
msgid "invalid operand to %%U code"
msgstr ""
-#: config/arc/arc.c:1780
+#: config/arc/arc.c:1791
#, c-format
msgid "invalid operand to %%V code"
msgstr ""
#. Unknown flag.
#. Undocumented flag.
-#: config/arc/arc.c:1787 config/m32r/m32r.c:1916 config/sparc/sparc.c:6799
+#: config/arc/arc.c:1798 config/m32r/m32r.c:1926 config/sparc/sparc.c:6807
#, c-format
msgid "invalid operand output code"
msgstr ""
-#: config/arm/arm.c:10512 config/arm/arm.c:10530
+#: config/arm/arm.c:10569 config/arm/arm.c:10587
#, c-format
msgid "predicated Thumb instruction"
msgstr ""
-#: config/arm/arm.c:10518
+#: config/arm/arm.c:10575
#, c-format
msgid "predicated instruction in conditional sequence"
msgstr ""
-#: config/arm/arm.c:10626 config/arm/arm.c:10636 config/arm/arm.c:10646
-#: config/arm/arm.c:10672 config/arm/arm.c:10690 config/arm/arm.c:10725
-#: config/arm/arm.c:10744 config/arm/arm.c:10759 config/arm/arm.c:10785
-#: config/arm/arm.c:10792 config/arm/arm.c:10799
+#: config/arm/arm.c:10683 config/arm/arm.c:10693 config/arm/arm.c:10703
+#: config/arm/arm.c:10729 config/arm/arm.c:10747 config/arm/arm.c:10782
+#: config/arm/arm.c:10801 config/arm/arm.c:10816 config/arm/arm.c:10842
+#: config/arm/arm.c:10849 config/arm/arm.c:10856
#, c-format
msgid "invalid operand for code '%c'"
msgstr ""
-#: config/arm/arm.c:10685
+#: config/arm/arm.c:10742
#, c-format
msgid "instruction never exectued"
msgstr ""
-#: config/arm/arm.c:10810
+#: config/arm/arm.c:10867
#, c-format
msgid "missing operand"
msgstr ""
-#: config/avr/avr.c:1110
+#: config/avr/avr.c:1116
msgid "bad address, not (reg+disp):"
msgstr ""
-#: config/avr/avr.c:1117
+#: config/avr/avr.c:1123
msgid "bad address, not post_inc or pre_dec:"
msgstr ""
-#: config/avr/avr.c:1128
+#: config/avr/avr.c:1134
msgid "internal compiler error. Bad address:"
msgstr ""
-#: config/avr/avr.c:1141
+#: config/avr/avr.c:1147
msgid "internal compiler error. Unknown mode:"
msgstr ""
-#: config/avr/avr.c:1764 config/avr/avr.c:2447
+#: config/avr/avr.c:1770 config/avr/avr.c:2453
msgid "invalid insn:"
msgstr ""
-#: config/avr/avr.c:1798 config/avr/avr.c:1884 config/avr/avr.c:1933
-#: config/avr/avr.c:1961 config/avr/avr.c:2056 config/avr/avr.c:2225
-#: config/avr/avr.c:2481 config/avr/avr.c:2593
+#: config/avr/avr.c:1804 config/avr/avr.c:1890 config/avr/avr.c:1939
+#: config/avr/avr.c:1967 config/avr/avr.c:2062 config/avr/avr.c:2231
+#: config/avr/avr.c:2487 config/avr/avr.c:2599
msgid "incorrect insn:"
msgstr ""
-#: config/avr/avr.c:1980 config/avr/avr.c:2141 config/avr/avr.c:2296
-#: config/avr/avr.c:2659
+#: config/avr/avr.c:1986 config/avr/avr.c:2147 config/avr/avr.c:2302
+#: config/avr/avr.c:2665
msgid "unknown move insn:"
msgstr ""
-#: config/avr/avr.c:2889
+#: config/avr/avr.c:2895
msgid "bad shift insn:"
msgstr ""
-#: config/avr/avr.c:3005 config/avr/avr.c:3453 config/avr/avr.c:3839
+#: config/avr/avr.c:3011 config/avr/avr.c:3459 config/avr/avr.c:3845
msgid "internal compiler error. Incorrect shift:"
msgstr ""
-#: config/bfin/bfin.c:993
+#: config/bfin/bfin.c:1124
#, c-format
msgid "invalid %%j value"
msgstr ""
-#: config/bfin/bfin.c:1112
+#: config/bfin/bfin.c:1243
#, c-format
msgid "invalid const_double operand"
msgstr ""
@@ -2727,117 +2731,108 @@ msgid "c4x_operand_subword: address not offsettable"
msgstr ""
#: config/c4x/c4x.c:4101
-msgid "c4x_rptb_rpts_p: Repeat block top label moved\n"
+msgid "c4x_rptb_rpts_p: Repeat block top label moved"
msgstr ""
#. Use `%s' to print the string in case there are any escape
#. characters in the message.
-#: config/cris/cris.c:492 c-typeck.c:4197 c-typeck.c:4212 c-typeck.c:4227
-#: final.c:2770 final.c:2772 gcc.c:4625 rtl-error.c:113 toplev.c:586
-#: cp/parser.c:1946 cp/typeck.c:4206 java/expr.c:415
-#: java/parse.y:4988 java/verify.c:1552 java/verify.c:1553
-#: java/verify.c:1572
+#: config/cris/cris.c:491 fortran/dump-parse-tree.c:82
+#: fortran/dump-parse-tree.c:414 fortran/dump-parse-tree.c:741 c-typeck.c:4255
+#: c-typeck.c:4270 c-typeck.c:4285 final.c:2796 final.c:2798 gcc.c:4659
+#: loop-iv.c:2711 loop-iv.c:2720 rtl-error.c:113 toplev.c:586
+#: tree-ssa-loop-niter.c:1033 cp/parser.c:1947 cp/typeck.c:4204
+#: java/expr.c:403
#, gcc-internal-format
msgid "%s"
msgstr ""
-#: config/cris/cris.c:544
+#: config/cris/cris.c:543
msgid "unexpected index-type in cris_print_index"
msgstr ""
-#: config/cris/cris.c:558
+#: config/cris/cris.c:557
msgid "unexpected base-type in cris_print_base"
msgstr ""
-#: config/cris/cris.c:674
+#: config/cris/cris.c:673
msgid "invalid operand for 'b' modifier"
msgstr ""
-#: config/cris/cris.c:687
-msgid "invalid operand for 'v' modifier"
-msgstr ""
-
-#: config/cris/cris.c:700
+#: config/cris/cris.c:690
msgid "invalid operand for 'o' modifier"
msgstr ""
-#: config/cris/cris.c:719
+#: config/cris/cris.c:709
msgid "invalid operand for 'O' modifier"
msgstr ""
-#: config/cris/cris.c:753
-msgid "invalid operand for 'P' modifier"
-msgstr ""
-
-#: config/cris/cris.c:760
+#: config/cris/cris.c:742
msgid "invalid operand for 'p' modifier"
msgstr ""
-#: config/cris/cris.c:799
+#: config/cris/cris.c:781
msgid "invalid operand for 'z' modifier"
msgstr ""
-#: config/cris/cris.c:846 config/cris/cris.c:876
+#: config/cris/cris.c:835 config/cris/cris.c:865
msgid "invalid operand for 'H' modifier"
msgstr ""
-#: config/cris/cris.c:852
+#: config/cris/cris.c:841
msgid "bad register"
msgstr ""
-#: config/cris/cris.c:890
+#: config/cris/cris.c:879
msgid "invalid operand for 'e' modifier"
msgstr ""
-#: config/cris/cris.c:907
+#: config/cris/cris.c:896
msgid "invalid operand for 'm' modifier"
msgstr ""
-#: config/cris/cris.c:932
+#: config/cris/cris.c:921
msgid "invalid operand for 'A' modifier"
msgstr ""
-#: config/cris/cris.c:950
+#: config/cris/cris.c:944
msgid "invalid operand for 'D' modifier"
msgstr ""
-#: config/cris/cris.c:964
+#: config/cris/cris.c:958
msgid "invalid operand for 'T' modifier"
msgstr ""
-#: config/cris/cris.c:973
+#: config/cris/cris.c:967
msgid "invalid operand modifier letter"
msgstr ""
-#: config/cris/cris.c:1031
+#: config/cris/cris.c:1024
msgid "unexpected multiplicative operand"
msgstr ""
-#: config/cris/cris.c:1051
+#: config/cris/cris.c:1044
msgid "unexpected operand"
msgstr ""
-#: config/cris/cris.c:1084 config/cris/cris.c:1094
+#: config/cris/cris.c:1077 config/cris/cris.c:1087
msgid "unrecognized address"
msgstr ""
-#: config/cris/cris.c:1904 config/cris/cris.c:1966
+#: config/cris/cris.c:1938
msgid "unrecognized supposed constant"
msgstr ""
-#: config/cris/cris.c:2009
-msgid "unrecognized supposed constant in cris_global_pic_symbol"
-msgstr ""
-
-#: config/cris/cris.c:2356 config/cris/cris.c:2401
+#: config/cris/cris.c:2294 config/cris/cris.c:2339
msgid "unexpected side-effects in address"
msgstr ""
-#: config/cris/cris.c:3101
-msgid "unexpected PIC symbol"
+#. Can't possibly get a GOT-needing-fixup for a function-call,
+#. right?
+#: config/cris/cris.c:3097
+msgid "Unidentifiable call op"
msgstr ""
-#: config/cris/cris.c:3105
+#: config/cris/cris.c:3132
#, c-format
msgid "PIC register isn't set up"
msgstr ""
@@ -2888,82 +2883,82 @@ msgstr ""
msgid "fr30_print_operand: unhandled MEM"
msgstr ""
-#: config/frv/frv.c:2513
-msgid "Bad insn to frv_print_operand_address:"
+#: config/frv/frv.c:2541
+msgid "bad insn to frv_print_operand_address:"
msgstr ""
-#: config/frv/frv.c:2524
-msgid "Bad register to frv_print_operand_memory_reference_reg:"
+#: config/frv/frv.c:2552
+msgid "bad register to frv_print_operand_memory_reference_reg:"
msgstr ""
-#: config/frv/frv.c:2563 config/frv/frv.c:2573 config/frv/frv.c:2582
-#: config/frv/frv.c:2603 config/frv/frv.c:2608
-msgid "Bad insn to frv_print_operand_memory_reference:"
+#: config/frv/frv.c:2591 config/frv/frv.c:2601 config/frv/frv.c:2610
+#: config/frv/frv.c:2631 config/frv/frv.c:2636
+msgid "bad insn to frv_print_operand_memory_reference:"
msgstr ""
-#: config/frv/frv.c:2694
+#: config/frv/frv.c:2722
#, c-format
msgid "bad condition code"
msgstr ""
-#: config/frv/frv.c:2769
-msgid "Bad insn in frv_print_operand, bad const_double"
+#: config/frv/frv.c:2797
+msgid "bad insn in frv_print_operand, bad const_double"
msgstr ""
-#: config/frv/frv.c:2830
-msgid "Bad insn to frv_print_operand, 'e' modifier:"
+#: config/frv/frv.c:2858
+msgid "bad insn to frv_print_operand, 'e' modifier:"
msgstr ""
-#: config/frv/frv.c:2838
-msgid "Bad insn to frv_print_operand, 'F' modifier:"
+#: config/frv/frv.c:2866
+msgid "bad insn to frv_print_operand, 'F' modifier:"
msgstr ""
-#: config/frv/frv.c:2854
-msgid "Bad insn to frv_print_operand, 'f' modifier:"
+#: config/frv/frv.c:2882
+msgid "bad insn to frv_print_operand, 'f' modifier:"
msgstr ""
-#: config/frv/frv.c:2868
-msgid "Bad insn to frv_print_operand, 'g' modifier:"
+#: config/frv/frv.c:2896
+msgid "bad insn to frv_print_operand, 'g' modifier:"
msgstr ""
-#: config/frv/frv.c:2916
-msgid "Bad insn to frv_print_operand, 'L' modifier:"
+#: config/frv/frv.c:2944
+msgid "bad insn to frv_print_operand, 'L' modifier:"
msgstr ""
-#: config/frv/frv.c:2929
-msgid "Bad insn to frv_print_operand, 'M/N' modifier:"
+#: config/frv/frv.c:2957
+msgid "bad insn to frv_print_operand, 'M/N' modifier:"
msgstr ""
-#: config/frv/frv.c:2950
-msgid "Bad insn to frv_print_operand, 'O' modifier:"
+#: config/frv/frv.c:2978
+msgid "bad insn to frv_print_operand, 'O' modifier:"
msgstr ""
-#: config/frv/frv.c:2968
-msgid "Bad insn to frv_print_operand, P modifier:"
+#: config/frv/frv.c:2996
+msgid "bad insn to frv_print_operand, P modifier:"
msgstr ""
-#: config/frv/frv.c:2988
-msgid "Bad insn in frv_print_operand, z case"
+#: config/frv/frv.c:3016
+msgid "bad insn in frv_print_operand, z case"
msgstr ""
-#: config/frv/frv.c:3019
-msgid "Bad insn in frv_print_operand, 0 case"
+#: config/frv/frv.c:3047
+msgid "bad insn in frv_print_operand, 0 case"
msgstr ""
-#: config/frv/frv.c:3024
+#: config/frv/frv.c:3052
msgid "frv_print_operand: unknown code"
msgstr ""
-#: config/frv/frv.c:4393
-msgid "Bad output_move_single operand"
+#: config/frv/frv.c:4421
+msgid "bad output_move_single operand"
msgstr ""
-#: config/frv/frv.c:4520
-msgid "Bad output_move_double operand"
+#: config/frv/frv.c:4548
+msgid "bad output_move_double operand"
msgstr ""
-#: config/frv/frv.c:4662
-msgid "Bad output_condmove_single operand"
+#: config/frv/frv.c:4690
+msgid "bad output_condmove_single operand"
msgstr ""
#. This macro is a C statement to print on `stderr' a string describing the
@@ -2980,28 +2975,28 @@ msgstr ""
msgid " (frv)"
msgstr ""
-#: config/i386/i386.c:6203
+#: config/i386/i386.c:6515
#, c-format
msgid "invalid UNSPEC as operand"
msgstr ""
-#: config/i386/i386.c:6785
+#: config/i386/i386.c:7097
#, c-format
msgid ""
"operand is neither a constant nor a condition code, invalid operand code 'c'"
msgstr ""
-#: config/i386/i386.c:6838
+#: config/i386/i386.c:7150
#, c-format
msgid "invalid operand code '%c'"
msgstr ""
-#: config/i386/i386.c:6881
+#: config/i386/i386.c:7193
#, c-format
msgid "invalid constraints for operand"
msgstr ""
-#: config/i386/i386.c:12417
+#: config/i386/i386.c:12784
msgid "unknown insn mode"
msgstr ""
@@ -3022,84 +3017,80 @@ msgstr ""
msgid "environment variable DJGPP points to corrupt file '%s'"
msgstr ""
-#: config/ia64/ia64.c:4520
+#: config/ia64/ia64.c:4555
#, c-format
msgid "ia64_print_operand: unknown code"
msgstr ""
-#: config/ia64/ia64.c:8753
+#: config/ia64/ia64.c:8794
msgid "invalid conversion from %<__fpreg%>"
msgstr ""
-#: config/ia64/ia64.c:8756
+#: config/ia64/ia64.c:8797
msgid "invalid conversion to %<__fpreg%>"
msgstr ""
-#: config/ia64/ia64.c:8769 config/ia64/ia64.c:8780
+#: config/ia64/ia64.c:8810 config/ia64/ia64.c:8821
msgid "invalid operation on %<__fpreg%>"
msgstr ""
-#: config/ip2k/ip2k.c:1087
-msgid "bad operand"
-msgstr ""
-
#: config/iq2000/iq2000.c:3125
#, c-format
msgid "invalid %%P operand"
msgstr ""
-#: config/iq2000/iq2000.c:3133 config/rs6000/rs6000.c:9816
+#: config/iq2000/iq2000.c:3133 config/rs6000/rs6000.c:10254
#, c-format
msgid "invalid %%p value"
msgstr ""
-#: config/iq2000/iq2000.c:3189 config/mips/mips.c:5366
+#: config/iq2000/iq2000.c:3189 config/mips/mips.c:5532
#, c-format
msgid "invalid use of %%d, %%x, or %%X"
msgstr ""
-#: config/m32r/m32r.c:1765
+#: config/m32r/m32r.c:1775
#, c-format
msgid "invalid operand to %%s code"
msgstr ""
-#: config/m32r/m32r.c:1772
+#: config/m32r/m32r.c:1782
#, c-format
msgid "invalid operand to %%p code"
msgstr ""
-#: config/m32r/m32r.c:1827
+#: config/m32r/m32r.c:1837
msgid "bad insn for 'A'"
msgstr ""
-#: config/m32r/m32r.c:1874
+#: config/m32r/m32r.c:1884
#, c-format
msgid "invalid operand to %%T/%%B code"
msgstr ""
-#: config/m32r/m32r.c:1897
+#: config/m32r/m32r.c:1907
#, c-format
msgid "invalid operand to %%N code"
msgstr ""
-#: config/m32r/m32r.c:1930
+#: config/m32r/m32r.c:1940
msgid "pre-increment address is not a register"
msgstr ""
-#: config/m32r/m32r.c:1937
+#: config/m32r/m32r.c:1947
msgid "pre-decrement address is not a register"
msgstr ""
-#: config/m32r/m32r.c:1944
+#: config/m32r/m32r.c:1954
msgid "post-increment address is not a register"
msgstr ""
-#: config/m32r/m32r.c:2020 config/m32r/m32r.c:2034
-#: config/rs6000/rs6000.c:16885
+#: config/m32r/m32r.c:2030 config/m32r/m32r.c:2044
+#: config/rs6000/rs6000.c:17479
msgid "bad address"
msgstr ""
-#: config/m32r/m32r.c:2039
+#: config/m32r/m32r.c:2049
msgid "lo_sum not of register"
msgstr ""
@@ -3141,36 +3132,41 @@ msgstr ""
msgid "invalid Z register replacement for insn"
msgstr ""
-#: config/mips/mips.c:5051
+#: config/mips/mips.c:5200
msgid "mips_debugger_offset called with non stack/frame/arg pointer"
msgstr ""
-#: config/mips/mips.c:5260
+#: config/mips/mips.c:5410
#, c-format
msgid "PRINT_OPERAND, invalid insn for %%C"
msgstr ""
-#: config/mips/mips.c:5277
+#: config/mips/mips.c:5427
#, c-format
msgid "PRINT_OPERAND, invalid insn for %%N"
msgstr ""
-#: config/mips/mips.c:5286
+#: config/mips/mips.c:5436
#, c-format
msgid "PRINT_OPERAND, invalid insn for %%F"
msgstr ""
-#: config/mips/mips.c:5295
+#: config/mips/mips.c:5445
#, c-format
msgid "PRINT_OPERAND, invalid insn for %%W"
msgstr ""
-#: config/mips/mips.c:5316
+#: config/mips/mips.c:5466
#, c-format
msgid "invalid %%Y value"
msgstr ""
-#: config/mips/mips.c:5394
+#: config/mips/mips.c:5483 config/mips/mips.c:5491
+#, c-format
+msgid "PRINT_OPERAND, invalid insn for %%q"
+msgstr ""
+
+#: config/mips/mips.c:5560
msgid "PRINT_OPERAND, invalid operand for relocation"
msgstr ""
@@ -3215,6 +3211,18 @@ msgstr ""
msgid "MMIX Internal: This is not a constant:"
msgstr ""
+#: config/ms1/ms1.c:288
+msgid "ms1_final_prescan_insn, invalid insn #1"
+msgstr ""
+
+#: config/ms1/ms1.c:359
+msgid "PRINT_OPERAND_ADDRESS, 2 regs"
+msgstr ""
+
+#: config/ms1/ms1.c:383
+msgid "PRINT_OPERAND_ADDRESS, invalid insn #1"
+msgstr ""
+
#: config/rs6000/host-darwin.c:83
#, c-format
msgid "Out of stack space.\n"
@@ -3225,167 +3233,177 @@ msgstr ""
msgid "Try running '%s' in the shell to raise its limit.\n"
msgstr ""
-#: config/rs6000/rs6000.c:9646
+#: config/rs6000/rs6000.c:10084
#, c-format
msgid "invalid %%f value"
msgstr ""
-#: config/rs6000/rs6000.c:9655
+#: config/rs6000/rs6000.c:10093
#, c-format
msgid "invalid %%F value"
msgstr ""
-#: config/rs6000/rs6000.c:9664
+#: config/rs6000/rs6000.c:10102
#, c-format
msgid "invalid %%G value"
msgstr ""
-#: config/rs6000/rs6000.c:9699
+#: config/rs6000/rs6000.c:10137
#, c-format
msgid "invalid %%j code"
msgstr ""
-#: config/rs6000/rs6000.c:9709
+#: config/rs6000/rs6000.c:10147
#, c-format
msgid "invalid %%J code"
msgstr ""
-#: config/rs6000/rs6000.c:9719
+#: config/rs6000/rs6000.c:10157
#, c-format
msgid "invalid %%k value"
msgstr ""
-#: config/rs6000/rs6000.c:9739 config/xtensa/xtensa.c:1677
+#: config/rs6000/rs6000.c:10177 config/xtensa/xtensa.c:1677
#, c-format
msgid "invalid %%K value"
msgstr ""
-#: config/rs6000/rs6000.c:9806
+#: config/rs6000/rs6000.c:10244
#, c-format
msgid "invalid %%O value"
msgstr ""
-#: config/rs6000/rs6000.c:9853
+#: config/rs6000/rs6000.c:10291
#, c-format
msgid "invalid %%q value"
msgstr ""
-#: config/rs6000/rs6000.c:9897
+#: config/rs6000/rs6000.c:10335
#, c-format
msgid "invalid %%S value"
msgstr ""
-#: config/rs6000/rs6000.c:9937
+#: config/rs6000/rs6000.c:10375
#, c-format
msgid "invalid %%T value"
msgstr ""
-#: config/rs6000/rs6000.c:9947
+#: config/rs6000/rs6000.c:10385
#, c-format
msgid "invalid %%u value"
msgstr ""
-#: config/rs6000/rs6000.c:9956 config/xtensa/xtensa.c:1647
+#: config/rs6000/rs6000.c:10394 config/xtensa/xtensa.c:1647
#, c-format
msgid "invalid %%v value"
msgstr ""
-#: config/rs6000/rs6000.c:18388
+#: config/rs6000/rs6000.c:18989
msgid "AltiVec argument passed to unprototyped function"
msgstr ""
-#: config/s390/s390.c:3784
+#: config/s390/s390.c:4038
#, c-format
-msgid "Cannot decompose address."
+msgid "cannot decompose address"
msgstr ""
-#: config/s390/s390.c:3978
+#: config/s390/s390.c:4245
msgid "UNKNOWN in print_operand !?"
msgstr ""
-#: config/sh/sh.c:7531
+#: config/sh/sh.c:768
+#, c-format
+msgid "invalid operand to %%R"
+msgstr ""
+
+#: config/sh/sh.c:795
+#, c-format
+msgid "invalid operand to %%S"
+msgstr ""
+
+#: config/sh/sh.c:7648
msgid "created and used with different architectures / ABIs"
msgstr ""
-#: config/sh/sh.c:7533
+#: config/sh/sh.c:7650
msgid "created and used with different ABIs"
msgstr ""
-#: config/sh/sh.c:7535
+#: config/sh/sh.c:7652
msgid "created and used with different endianness"
msgstr ""
-#: config/sparc/sparc.c:6607 config/sparc/sparc.c:6613
+#: config/sparc/sparc.c:6615 config/sparc/sparc.c:6621
#, c-format
msgid "invalid %%Y operand"
msgstr ""
-#: config/sparc/sparc.c:6683
+#: config/sparc/sparc.c:6691
#, c-format
msgid "invalid %%A operand"
msgstr ""
-#: config/sparc/sparc.c:6693
+#: config/sparc/sparc.c:6701
#, c-format
msgid "invalid %%B operand"
msgstr ""
-#: config/sparc/sparc.c:6732
+#: config/sparc/sparc.c:6740
#, c-format
msgid "invalid %%c operand"
msgstr ""
-#: config/sparc/sparc.c:6733
+#: config/sparc/sparc.c:6741
#, c-format
msgid "invalid %%C operand"
msgstr ""
-#: config/sparc/sparc.c:6754
+#: config/sparc/sparc.c:6762
#, c-format
msgid "invalid %%d operand"
msgstr ""
-#: config/sparc/sparc.c:6755
+#: config/sparc/sparc.c:6763
#, c-format
msgid "invalid %%D operand"
msgstr ""
-#: config/sparc/sparc.c:6771
+#: config/sparc/sparc.c:6779
#, c-format
msgid "invalid %%f operand"
msgstr ""
-#: config/sparc/sparc.c:6785
+#: config/sparc/sparc.c:6793
#, c-format
msgid "invalid %%s operand"
msgstr ""
-#: config/sparc/sparc.c:6839
+#: config/sparc/sparc.c:6847
#, c-format
msgid "long long constant not a valid immediate operand"
msgstr ""
-#: config/sparc/sparc.c:6842
+#: config/sparc/sparc.c:6850
#, c-format
msgid "floating point constant not a valid immediate operand"
msgstr ""
-#: config/stormy16/stormy16.c:1802 config/stormy16/stormy16.c:1873
+#: config/stormy16/stormy16.c:1764 config/stormy16/stormy16.c:1835
#, c-format
msgid "'B' operand is not constant"
msgstr ""
-#: config/stormy16/stormy16.c:1829
+#: config/stormy16/stormy16.c:1791
#, c-format
msgid "'B' operand has multiple bits set"
msgstr ""
-#: config/stormy16/stormy16.c:1855
+#: config/stormy16/stormy16.c:1817
#, c-format
msgid "'o' operand is not constant"
msgstr ""
-#: config/stormy16/stormy16.c:1887
+#: config/stormy16/stormy16.c:1849
#, c-format
msgid "xstormy16_print_operand: unknown code"
msgstr ""
@@ -3439,38 +3457,4895 @@ msgstr ""
msgid "address offset not a constant"
msgstr ""
-#: cp/call.c:2428
+#: cp/call.c:2444
msgid "candidates are:"
msgstr ""
-#: cp/call.c:6186
+#: cp/call.c:6232
msgid "candidate 1:"
msgstr ""
-#: cp/call.c:6187
+#: cp/call.c:6233
msgid "candidate 2:"
msgstr ""
+#: cp/decl2.c:697
+msgid "candidates are: %+#D"
+msgstr ""
+
+#: cp/decl2.c:699
+msgid "candidate is: %+#D"
+msgstr ""
+
#: cp/g++spec.c:238 java/jvspec.c:417
#, c-format
msgid "argument to '%s' missing\n"
msgstr ""
-#: fortran/gfortranspec.c:231
+#: fortran/arith.c:141
+msgid "Arithmetic OK"
+msgstr ""
+
+#: fortran/arith.c:144
+msgid "Arithmetic overflow"
+msgstr ""
+
+#: fortran/arith.c:147
+msgid "Arithmetic underflow"
+msgstr ""
+
+#: fortran/arith.c:150
+msgid "Arithmetic NaN"
+msgstr ""
+
+#: fortran/arith.c:153
+msgid "Division by zero"
+msgstr ""
+
+#: fortran/arith.c:156
+msgid "Array operands are incommensurate"
+msgstr ""
+
+#: fortran/arith.c:159
+msgid "Integer outside symmetric range implied by Standard Fortran"
+msgstr ""
+
+#. Something went wrong
+#: fortran/arith.c:601 fortran/arith.c:607 fortran/arith.c:1607
+#: fortran/arith.c:1934 fortran/arith.c:2036 fortran/arith.c:2068
+#: fortran/arith.c:2123 fortran/arith.c:2155 fortran/arith.c:2170
+#, no-c-format
+msgid "%s at %L"
+msgstr ""
+
+#: fortran/arith.c:1383
+msgid "Elemental binary operation"
+msgstr ""
+
+#: fortran/arith.c:1910
+#, no-c-format
+msgid "%s converting %s to %s at %L"
+msgstr ""
+
+#: fortran/arith.c:2238 fortran/arith.c:2273 fortran/arith.c:2310
+#: fortran/arith.c:2360
+#, no-c-format
+msgid "The Hollerith constant at %L is too long to convert to %s"
+msgstr ""
+
+#: fortran/array.c:97
+#, no-c-format
+msgid "Expected array subscript at %C"
+msgstr ""
+
+#: fortran/array.c:124
+#, no-c-format
+msgid "Expected array subscript stride at %C"
+msgstr ""
+
+#: fortran/array.c:167
+#, no-c-format
+msgid "Invalid form of array reference at %C"
+msgstr ""
+
+#: fortran/array.c:172
+#, no-c-format
+msgid "Array reference at %C cannot have more than %d dimensions"
+msgstr ""
+
+#: fortran/array.c:224
+#, no-c-format
+msgid "Variable '%s' at %L in this context must be constant"
+msgstr ""
+
+#: fortran/array.c:300
+#, no-c-format
+msgid "Expected expression in array specification at %C"
+msgstr ""
+
+#: fortran/array.c:379
+#, no-c-format
+msgid "Bad array specification for an explicitly shaped array at %C"
+msgstr ""
+
+#: fortran/array.c:390
+#, no-c-format
+msgid "Bad array specification for assumed shape array at %C"
+msgstr ""
+
+#: fortran/array.c:403
+#, no-c-format
+msgid "Bad specification for deferred shape array at %C"
+msgstr ""
+
+#: fortran/array.c:407
+#, no-c-format
+msgid "Bad specification for assumed size array at %C"
+msgstr ""
+
+#: fortran/array.c:416
+#, no-c-format
+msgid "Expected another dimension in array declaration at %C"
+msgstr ""
+
+#: fortran/array.c:422
+#, no-c-format
+msgid "Array specification at %C has more than %d dimensions"
+msgstr ""
+
+#: fortran/array.c:627
+#, no-c-format
+msgid "duplicated initializer"
+msgstr ""
+
+#: fortran/array.c:720
+#, no-c-format
+msgid "DO-iterator '%s' at %L is inside iterator of the same name"
+msgstr ""
+
+#: fortran/array.c:822 fortran/array.c:931
+#, no-c-format
+msgid "Syntax error in array constructor at %C"
+msgstr ""
+
+#: fortran/array.c:877
+#, no-c-format
+msgid "New in Fortran 2003: [...] style array constructors at %C"
+msgstr ""
+
+#: fortran/array.c:891
+#, no-c-format
+msgid "Empty array constructor at %C is not allowed"
+msgstr ""
+
+#: fortran/array.c:976
+#, no-c-format
+msgid "Element in %s array constructor at %L is %s"
+msgstr ""
+
+#: fortran/array.c:1305
+#, no-c-format
+msgid "Iterator step at %L cannot be zero"
+msgstr ""
+
+#: fortran/check.c:42
+#, no-c-format
+msgid "'%s' argument of '%s' intrinsic at %L must be %s"
+msgstr ""
+
+#: fortran/check.c:70
+msgid "a numeric type"
+msgstr ""
+
+#: fortran/check.c:83
+msgid "INTEGER or REAL"
+msgstr ""
+
+#: fortran/check.c:98
+msgid "REAL or COMPLEX"
+msgstr ""
+
+#: fortran/check.c:122
+msgid "a constant"
+msgstr ""
+
+#: fortran/check.c:129
+#, no-c-format
+msgid "Invalid kind for %s at %L"
+msgstr ""
+
+#: fortran/check.c:148
+msgid "double precision"
+msgstr ""
+
+#: fortran/check.c:163
+msgid "a logical array"
+msgstr ""
+
+#: fortran/check.c:179
+msgid "an array"
+msgstr ""
+
+#: fortran/check.c:193
+msgid "a scalar"
+msgstr ""
+
+#: fortran/check.c:209
+#, c-format
+msgid "the same type and kind as '%s'"
+msgstr ""
+
+#: fortran/check.c:228
+#, c-format
+msgid "of rank %d"
+msgstr ""
+
+#: fortran/check.c:243
+#, no-c-format
+msgid "'%s' argument of '%s' intrinsic at %L must not be OPTIONAL"
+msgstr ""
+
+#: fortran/check.c:265
+#, c-format
+msgid "of kind %d"
+msgstr ""
+
+#: fortran/check.c:286
+#, no-c-format
+msgid "'%s' argument of '%s' intrinsic at %L cannot be INTENT(IN)"
+msgstr ""
+
+#: fortran/check.c:292
+msgid "a variable"
+msgstr ""
+
+#: fortran/check.c:316
+#, no-c-format
+msgid "Missing DIM parameter in intrinsic '%s' at %L"
+msgstr ""
+
+#: fortran/check.c:353
+#, no-c-format
+msgid "'dim' argument of '%s' intrinsic at %L is not a valid dimension index"
+msgstr ""
+
+#: fortran/check.c:439
+msgid "ALLOCATABLE"
+msgstr ""
+
+#: fortran/check.c:476 fortran/check.c:1538
+msgid "a POINTER"
+msgstr ""
+
+#: fortran/check.c:486
+#, no-c-format
+msgid ""
+"NULL pointer at %L is not permitted as actual argument of '%s' intrinsic "
+"function"
+msgstr ""
+
+#: fortran/check.c:495
+msgid "a POINTER or a TARGET"
+msgstr ""
+
+#: fortran/check.c:509
+#, no-c-format
+msgid ""
+"Array section with a vector subscript at %L shall not be the target of a "
+"pointer"
+msgstr ""
+
+#: fortran/check.c:619 fortran/check.c:679
+msgid "not be present if 'x' is COMPLEX"
+msgstr ""
+
+#: fortran/check.c:726 fortran/check.c:1348 fortran/check.c:1354
+msgid "numeric or LOGICAL"
+msgstr ""
+
+#: fortran/check.c:873 fortran/check.c:1003 fortran/check.c:1063
+#: fortran/check.c:1280
+#, no-c-format
+msgid "Extension: Different type kinds at %L"
+msgstr ""
+
+#: fortran/check.c:973
+#, no-c-format
+msgid "Argument of %s at %L must be of length one"
+msgstr ""
+
+#: fortran/check.c:1025
+msgid "the same kind as 'string'"
+msgstr ""
+
+#: fortran/check.c:1137
+msgid "a non-derived type"
+msgstr ""
+
+#: fortran/check.c:1252
+#, no-c-format
+msgid "Intrinsic '%s' at %L must have at least two arguments"
+msgstr ""
+
+#: fortran/check.c:1286
+#, no-c-format
+msgid "'a%d' argument of '%s' intrinsic at %L must be %s(%d)"
+msgstr ""
+
+#: fortran/check.c:1311
+#, no-c-format
+msgid "'a1' argument of '%s' intrinsic at %L must be INTEGER or REAL"
+msgstr ""
+
+#: fortran/check.c:1373
+msgid "of rank 1 or 2"
+msgstr ""
+
+#: fortran/check.c:1557
+msgid "conformable with 'mask' argument"
+msgstr ""
+
+#: fortran/check.c:1581
+msgid "of type REAL or COMPLEX"
+msgstr ""
+
+#: fortran/check.c:1600
+msgid "a dummy variable"
+msgstr ""
+
+#: fortran/check.c:1606
+msgid "an OPTIONAL dummy variable"
+msgstr ""
+
+#: fortran/check.c:1720
+#, no-c-format
+msgid ""
+"'shape' argument of 'reshape' intrinsic at %L must be an array of constant "
+"size"
+msgstr ""
+
+#: fortran/check.c:1730
+#, no-c-format
+msgid "'shape' argument of 'reshape' intrinsic at %L has more than %d elements"
+msgstr ""
+
+#: fortran/check.c:1801
+#, no-c-format
+msgid "Missing arguments to %s intrinsic at %L"
+msgstr ""
+
+#: fortran/check.c:1842
+#, no-c-format
+msgid ""
+"'source' argument of 'shape' intrinsic at %L must not be an assumed size "
+"array"
+msgstr ""
+
+#: fortran/check.c:1906
+#, c-format
+msgid "less than rank %d"
+msgstr ""
+
+#: fortran/check.c:2259 fortran/check.c:2279
+#, no-c-format
+msgid "Too many arguments to %s at %L"
+msgstr ""
+
+#: fortran/data.c:63
+#, no-c-format
+msgid "non-constant array in DATA statement %L."
+msgstr ""
+
+#: fortran/decl.c:184
+#, no-c-format
+msgid "Variable '%s' at %C already has an initialization"
+msgstr ""
+
+#: fortran/decl.c:195
+#, no-c-format
+msgid "DATA statement at %C may not initialize variable '%s' from blank COMMON"
+msgstr ""
+
+#: fortran/decl.c:282
+#, no-c-format
+msgid "Symbol '%s' must be a PARAMETER in DATA statement at %C"
+msgstr ""
+
+#: fortran/decl.c:389
+#, no-c-format
+msgid "Initialization at %C is not allowed in a PURE procedure"
+msgstr ""
+
+#: fortran/decl.c:436
+#, no-c-format
+msgid "DATA statement at %C is not allowed in a PURE procedure"
+msgstr ""
+
+#: fortran/decl.c:464
+#, no-c-format
+msgid "Bad INTENT specification at %C"
+msgstr ""
+
+#: fortran/decl.c:528
+#, no-c-format
+msgid "Syntax error in character length specification at %C"
+msgstr ""
+
+#: fortran/decl.c:703
+#, no-c-format
+msgid "Initializer not allowed for PARAMETER '%s' at %C"
+msgstr ""
+
+#: fortran/decl.c:712
+#, no-c-format
+msgid "Initializer not allowed for COMMON variable '%s' at %C"
+msgstr ""
+
+#: fortran/decl.c:722
+#, no-c-format
+msgid "PARAMETER at %L is missing an initializer"
+msgstr ""
+
+#: fortran/decl.c:733
+#, no-c-format
+msgid ""
+"Variable '%s' at %C with an initializer already appears in a DATA statement"
+msgstr ""
+
+#: fortran/decl.c:800
+#, no-c-format
+msgid "Component at %C must have the POINTER attribute"
+msgstr ""
+
+#: fortran/decl.c:809
+#, no-c-format
+msgid "Array component of structure at %C must have explicit or deferred shape"
+msgstr ""
+
+#: fortran/decl.c:838
+#, no-c-format
+msgid "Pointer array component of structure at %C must have a deferred shape"
+msgstr ""
+
+#: fortran/decl.c:848
+#, no-c-format
+msgid "Array component of structure at %C must have an explicit shape"
+msgstr ""
+
+#: fortran/decl.c:874
+#, no-c-format
+msgid "NULL() initialization at %C is ambiguous"
+msgstr ""
+
+#: fortran/decl.c:983
+#, no-c-format
+msgid "Function name '%s' not allowed at %C"
+msgstr ""
+
+#: fortran/decl.c:999
+#, no-c-format
+msgid "Extension: Old-style initialization at %C"
+msgstr ""
+
+#: fortran/decl.c:1015
+#, no-c-format
+msgid "Initialization at %C isn't for a pointer variable"
+msgstr ""
+
+#: fortran/decl.c:1023
+#, no-c-format
+msgid "Pointer initialization requires a NULL at %C"
+msgstr ""
+
+#: fortran/decl.c:1030
+#, no-c-format
+msgid "Initialization of pointer at %C is not allowed in a PURE procedure"
+msgstr ""
+
+#: fortran/decl.c:1046
+#, no-c-format
+msgid "Pointer initialization at %C requires '=>', not '='"
+msgstr ""
+
+#: fortran/decl.c:1054
+#, no-c-format
+msgid "Expected an initialization expression at %C"
+msgstr ""
+
+#: fortran/decl.c:1061
+#, no-c-format
+msgid "Initialization of variable at %C is not allowed in a PURE procedure"
+msgstr ""
+
+#: fortran/decl.c:1116
+#, no-c-format
+msgid "Old-style kind %d not supported for type %s at %C"
+msgstr ""
+
+#: fortran/decl.c:1152
+#, no-c-format
+msgid "Expected initialization expression at %C"
+msgstr ""
+
+#: fortran/decl.c:1158
+#, no-c-format
+msgid "Expected scalar initialization expression at %C"
+msgstr ""
+
+#: fortran/decl.c:1176
+#, no-c-format
+msgid "Kind %d not supported for type %s at %C"
+msgstr ""
+
+#: fortran/decl.c:1185
+#, no-c-format
+msgid "Missing right paren at %C"
+msgstr ""
+
+#: fortran/decl.c:1274 fortran/decl.c:1317
+#, no-c-format
+msgid "Kind %d is not a CHARACTER kind at %C"
+msgstr ""
+
+#: fortran/decl.c:1311
+#, no-c-format
+msgid "Syntax error in CHARACTER declaration at %C"
+msgstr ""
+
+#: fortran/decl.c:1428
+#, no-c-format
+msgid "Type name '%s' at %C is ambiguous"
+msgstr ""
+
+#: fortran/decl.c:1494
+#, no-c-format
+msgid "Missing character range in IMPLICIT at %C"
+msgstr ""
+
+#: fortran/decl.c:1540
+#, no-c-format
+msgid "Letters must be in alphabetic order in IMPLICIT statement at %C"
+msgstr ""
+
+#: fortran/decl.c:1594
+#, no-c-format
+msgid "Empty IMPLICIT statement at %C"
+msgstr ""
+
+#: fortran/decl.c:1765
+#, no-c-format
+msgid "Missing dimension specification at %C"
+msgstr ""
+
+#: fortran/decl.c:1835
+#, no-c-format
+msgid "Duplicate %s attribute at %L"
+msgstr ""
+
+#: fortran/decl.c:1852
+#, no-c-format
+msgid "Attribute at %L is not allowed in a TYPE definition"
+msgstr ""
+
+#: fortran/decl.c:1986
+#, no-c-format
+msgid "Derived type at %C has not been previously defined"
+msgstr ""
+
+#: fortran/decl.c:2013
+#, no-c-format
+msgid "Syntax error in data declaration at %C"
+msgstr ""
+
+#: fortran/decl.c:2159
+#, no-c-format
+msgid "Name '%s' at %C is the name of the procedure"
+msgstr ""
+
+#: fortran/decl.c:2171
+#, no-c-format
+msgid "Unexpected junk in formal argument list at %C"
+msgstr ""
+
+#: fortran/decl.c:2189
+#, no-c-format
+msgid "Duplicate symbol '%s' in formal argument list at %C"
+msgstr ""
+
+#: fortran/decl.c:2232
+#, no-c-format
+msgid "Unexpected junk following RESULT variable at %C"
+msgstr ""
+
+#: fortran/decl.c:2239
+#, no-c-format
+msgid "RESULT variable at %C must be different than function name"
+msgstr ""
+
+#: fortran/decl.c:2294
+#, no-c-format
+msgid "Expected formal argument list in function definition at %C"
+msgstr ""
+
+#: fortran/decl.c:2305
+#, no-c-format
+msgid "Unexpected junk after function declaration at %C"
+msgstr ""
+
+#: fortran/decl.c:2326
+#, no-c-format
+msgid "Function '%s' at %C already has a type of %s"
+msgstr ""
+
+#: fortran/decl.c:2371
+#, no-c-format
+msgid "ENTRY statement at %C cannot appear within %s"
+msgstr ""
+
+#: fortran/decl.c:2380
+#, no-c-format
+msgid "ENTRY statement at %C cannot appear in a contained procedure"
+msgstr ""
+
+#: fortran/decl.c:2437
+#, no-c-format
+msgid "RESULT attribute required in ENTRY statement at %C"
+msgstr ""
+
+#: fortran/decl.c:2635
+#, no-c-format
+msgid "Unexpected END statement at %C"
+msgstr ""
+
+#. We would have required END [something]
+#: fortran/decl.c:2644
+#, no-c-format
+msgid "%s statement expected at %L"
+msgstr ""
+
+#: fortran/decl.c:2655
+#, no-c-format
+msgid "Expecting %s statement at %C"
+msgstr ""
+
+#: fortran/decl.c:2669
+#, no-c-format
+msgid "Expected block name of '%s' in %s statement at %C"
+msgstr ""
+
+#: fortran/decl.c:2685
+#, no-c-format
+msgid "Expected terminating name at %C"
+msgstr ""
+
+#: fortran/decl.c:2694
+#, no-c-format
+msgid "Expected label '%s' for %s statement at %C"
+msgstr ""
+
+#: fortran/decl.c:2749
+#, no-c-format
+msgid "Missing array specification at %L in DIMENSION statement"
+msgstr ""
+
+#: fortran/decl.c:2758
+#, no-c-format
+msgid "Array specification must be deferred at %L"
+msgstr ""
+
+#: fortran/decl.c:2821
+#, no-c-format
+msgid "Unexpected character in variable list at %C"
+msgstr ""
+
+#: fortran/decl.c:2974
+#, no-c-format
+msgid ""
+"Access specification of the %s operator at %C has already been specified"
+msgstr ""
+
+#: fortran/decl.c:2992
+#, no-c-format
+msgid ""
+"Access specification of the .%s. operator at %C has already been specified"
+msgstr ""
+
+#: fortran/decl.c:3079
+#, no-c-format
+msgid "Expected variable name at %C in PARAMETER statement"
+msgstr ""
+
+#: fortran/decl.c:3086
+#, no-c-format
+msgid "Expected = sign in PARAMETER statement at %C"
+msgstr ""
+
+#: fortran/decl.c:3092
+#, no-c-format
+msgid "Expected expression at %C in PARAMETER statement"
+msgstr ""
+
+#: fortran/decl.c:3150
+#, no-c-format
+msgid "Unexpected characters in PARAMETER statement at %C"
+msgstr ""
+
+#: fortran/decl.c:3174
+#, no-c-format
+msgid "Blanket SAVE statement at %C follows previous SAVE statement"
+msgstr ""
+
+#: fortran/decl.c:3186
+#, no-c-format
+msgid "SAVE statement at %C follows blanket SAVE statement"
+msgstr ""
+
+#: fortran/decl.c:3231
+#, no-c-format
+msgid "Syntax error in SAVE statement at %C"
+msgstr ""
+
+#: fortran/decl.c:3252
+#, no-c-format
+msgid "MODULE PROCEDURE at %C must be in a generic module interface"
+msgstr ""
+
+#: fortran/decl.c:3312
+#, no-c-format
+msgid "Derived type at %C can only be PRIVATE within a MODULE"
+msgstr ""
+
+#: fortran/decl.c:3325
+#, no-c-format
+msgid "Derived type at %C can only be PUBLIC within a MODULE"
+msgstr ""
+
+#: fortran/decl.c:3336
+#, no-c-format
+msgid "Expected :: in TYPE definition at %C"
+msgstr ""
+
+#: fortran/decl.c:3353
+#, no-c-format
+msgid "Type name '%s' at %C cannot be the same as an intrinsic type"
+msgstr ""
+
+#: fortran/decl.c:3363
+#, no-c-format
+msgid "Derived type name '%s' at %C already has a basic type of %s"
+msgstr ""
+
+#: fortran/decl.c:3380
+#, no-c-format
+msgid "Derived type definition of '%s' at %C has already been defined"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:53
+#, c-format
+msgid "%-5d "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:55
+#, c-format
+msgid " "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:77 fortran/dump-parse-tree.c:592
+#, c-format
+msgid "(%s "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:90 fortran/dump-parse-tree.c:837
+#: fortran/dump-parse-tree.c:874 fortran/dump-parse-tree.c:884
+#, c-format
+msgid "%d"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:94 fortran/dump-parse-tree.c:121
+#: fortran/dump-parse-tree.c:164 fortran/dump-parse-tree.c:401
+#: fortran/dump-parse-tree.c:493 fortran/dump-parse-tree.c:579
+#: fortran/dump-parse-tree.c:600
+#, c-format
+msgid ")"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:104 fortran/dump-parse-tree.c:419
+#, c-format
+msgid "("
+msgstr ""
+
+#: fortran/dump-parse-tree.c:110
+#, c-format
+msgid "%s = "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:114
+#, c-format
+msgid "(arg not-present)"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:118 fortran/dump-parse-tree.c:395
+#: fortran/dump-parse-tree.c:489
+#, c-format
+msgid " "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:135 fortran/dump-parse-tree.c:310
+#, c-format
+msgid "()"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:139
+#, c-format
+msgid "(%d"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:153
+#, c-format
+msgid " %s "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:180
+#, c-format
+msgid "FULL"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:211 fortran/dump-parse-tree.c:220
+#: fortran/dump-parse-tree.c:295
+#, c-format
+msgid " , "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:225
+#, c-format
+msgid "UNKNOWN"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:250
+#, c-format
+msgid " %% %s"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:322 fortran/dump-parse-tree.c:379
+#, c-format
+msgid "''"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:324
+#, c-format
+msgid "%c"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:331
+#, c-format
+msgid "%s("
+msgstr ""
+
+#: fortran/dump-parse-tree.c:337
+#, c-format
+msgid "(/ "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:339
+#, c-format
+msgid " /)"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:345
+#, c-format
+msgid "NULL()"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:355 fortran/dump-parse-tree.c:368
+#: fortran/dump-parse-tree.c:393 fortran/dump-parse-tree.c:399
+#, c-format
+msgid "_%d"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:360
+#, c-format
+msgid ".true."
+msgstr ""
+
+#: fortran/dump-parse-tree.c:362
+#, c-format
+msgid ".false."
+msgstr ""
+
+#: fortran/dump-parse-tree.c:389
+#, c-format
+msgid "(complex "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:405
+#, c-format
+msgid "???"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:413 fortran/dump-parse-tree.c:695
+#, c-format
+msgid "%s:"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:423
+#, c-format
+msgid "U+ "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:426
+#, c-format
+msgid "U- "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:429
+#, c-format
+msgid "+ "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:432
+#, c-format
+msgid "- "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:435
+#, c-format
+msgid "* "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:438
+#, c-format
+msgid "/ "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:441
+#, c-format
+msgid "** "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:444
+#, c-format
+msgid "// "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:447
+#, c-format
+msgid "AND "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:450
+#, c-format
+msgid "OR "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:453
+#, c-format
+msgid "EQV "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:456
+#, c-format
+msgid "NEQV "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:459
+#, c-format
+msgid "= "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:462
+#, c-format
+msgid "<> "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:465
+#, c-format
+msgid "> "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:468
+#, c-format
+msgid ">= "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:471
+#, c-format
+msgid "< "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:474
+#, c-format
+msgid "<= "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:477
+#, c-format
+msgid "NOT "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:499
+#, c-format
+msgid "%s["
+msgstr ""
+
+#: fortran/dump-parse-tree.c:505
+#, c-format
+msgid "%s[["
+msgstr ""
+
+#: fortran/dump-parse-tree.c:526
+#, c-format
+msgid "(%s %s %s %s"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:532
+#, c-format
+msgid " ALLOCATABLE"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:534 fortran/dump-parse-tree.c:597
+#, c-format
+msgid " DIMENSION"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:536
+#, c-format
+msgid " EXTERNAL"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:538
+#, c-format
+msgid " INTRINSIC"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:540
+#, c-format
+msgid " OPTIONAL"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:542 fortran/dump-parse-tree.c:595
+#, c-format
+msgid " POINTER"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:544
+#, c-format
+msgid " SAVE"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:546
+#, c-format
+msgid " TARGET"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:548
+#, c-format
+msgid " DUMMY"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:550
+#, c-format
+msgid " RESULT"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:552
+#, c-format
+msgid " ENTRY"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:555
+#, c-format
+msgid " DATA"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:557
+#, c-format
+msgid " USE-ASSOC"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:559
+#, c-format
+msgid " IN-NAMELIST"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:561
+#, c-format
+msgid " IN-COMMON"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:564
+#, c-format
+msgid " FUNCTION"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:566
+#, c-format
+msgid " SUBROUTINE"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:568
+#, c-format
+msgid " IMPLICIT-TYPE"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:571
+#, c-format
+msgid " SEQUENCE"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:573
+#, c-format
+msgid " ELEMENTAL"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:575
+#, c-format
+msgid " PURE"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:577
+#, c-format
+msgid " RECURSIVE"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:623
+#, c-format
+msgid "symbol %s "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:630
+#, c-format
+msgid "value: "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:637
+#, c-format
+msgid "Array spec:"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:644
+#, c-format
+msgid "Generic interfaces:"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:646 fortran/dump-parse-tree.c:670
+#: fortran/dump-parse-tree.c:698 fortran/dump-parse-tree.c:1037
+#: fortran/dump-parse-tree.c:1043 fortran/dump-parse-tree.c:1513
+#, c-format
+msgid " %s"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:652
+#, c-format
+msgid "result: %s"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:658
+#, c-format
+msgid "components: "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:665
+#, c-format
+msgid "Formal arglist:"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:672
+#, c-format
+msgid " [Alt Return]"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:679
+#, c-format
+msgid "Formal namespace"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:736
+#, c-format
+msgid "common: /%s/ "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:744 fortran/dump-parse-tree.c:1449
+#, c-format
+msgid ", "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:756
+#, c-format
+msgid "symtree: %s Ambig %d"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:759
+#, c-format
+msgid " from namespace %s"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:803
+#, c-format
+msgid "NOP"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:807
+#, c-format
+msgid "CONTINUE"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:811
+#, c-format
+msgid "ENTRY %s"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:815
+#, c-format
+msgid "ASSIGN "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:822
+#, c-format
+msgid "LABEL ASSIGN "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:824
+#, c-format
+msgid " %d"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:828
+#, c-format
+msgid "POINTER ASSIGN "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:835
+#, c-format
+msgid "GOTO "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:844
+#, c-format
+msgid ", ("
+msgstr ""
+
+#: fortran/dump-parse-tree.c:858
+#, c-format
+msgid "CALL %s "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:863
+#, c-format
+msgid "RETURN "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:869
+#, c-format
+msgid "PAUSE "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:879
+#, c-format
+msgid "STOP "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:889 fortran/dump-parse-tree.c:897
+#, c-format
+msgid "IF "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:891
+#, c-format
+msgid " %d, %d, %d"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:908
+#, c-format
+msgid "ELSE\n"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:911
+#, c-format
+msgid "ELSE IF "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:921
+#, c-format
+msgid "ENDIF"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:926
+#, c-format
+msgid "SELECT CASE "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:934
+#, c-format
+msgid "CASE "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:950
+#, c-format
+msgid "END SELECT"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:954
+#, c-format
+msgid "WHERE "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:965
+#, c-format
+msgid "ELSE WHERE "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:972
+#, c-format
+msgid "END WHERE"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:977
+#, c-format
+msgid "FORALL "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1002
+#, c-format
+msgid "END FORALL"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1006
+#, c-format
+msgid "DO "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1020 fortran/dump-parse-tree.c:1031
+#, c-format
+msgid "END DO"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1024
+#, c-format
+msgid "DO WHILE "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1035
+#, c-format
+msgid "CYCLE"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1041
+#, c-format
+msgid "EXIT"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1047
+#, c-format
+msgid "ALLOCATE "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1050 fortran/dump-parse-tree.c:1066
+#, c-format
+msgid " STAT="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1063
+#, c-format
+msgid "DEALLOCATE "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1079
+#, c-format
+msgid "OPEN"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1084 fortran/dump-parse-tree.c:1158
+#: fortran/dump-parse-tree.c:1200 fortran/dump-parse-tree.c:1223
+#: fortran/dump-parse-tree.c:1369
+#, c-format
+msgid " UNIT="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1089 fortran/dump-parse-tree.c:1163
+#: fortran/dump-parse-tree.c:1205 fortran/dump-parse-tree.c:1234
+#: fortran/dump-parse-tree.c:1386
+#, c-format
+msgid " IOMSG="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1094 fortran/dump-parse-tree.c:1168
+#: fortran/dump-parse-tree.c:1210 fortran/dump-parse-tree.c:1239
+#: fortran/dump-parse-tree.c:1391
+#, c-format
+msgid " IOSTAT="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1099 fortran/dump-parse-tree.c:1228
+#, c-format
+msgid " FILE="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1104 fortran/dump-parse-tree.c:1173
+#, c-format
+msgid " STATUS="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1109 fortran/dump-parse-tree.c:1269
+#, c-format
+msgid " ACCESS="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1114 fortran/dump-parse-tree.c:1285
+#, c-format
+msgid " FORM="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1119 fortran/dump-parse-tree.c:1300
+#, c-format
+msgid " RECL="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1124 fortran/dump-parse-tree.c:1310
+#, c-format
+msgid " BLANK="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1129 fortran/dump-parse-tree.c:1315
+#, c-format
+msgid " POSITION="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1134 fortran/dump-parse-tree.c:1320
+#, c-format
+msgid " ACTION="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1139 fortran/dump-parse-tree.c:1340
+#, c-format
+msgid " DELIM="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1144 fortran/dump-parse-tree.c:1345
+#, c-format
+msgid " PAD="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1148 fortran/dump-parse-tree.c:1177
+#: fortran/dump-parse-tree.c:1214 fortran/dump-parse-tree.c:1350
+#: fortran/dump-parse-tree.c:1422
+#, c-format
+msgid " ERR=%d"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1153
+#, c-format
+msgid "CLOSE"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1181
+#, c-format
+msgid "BACKSPACE"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1185
+#, c-format
+msgid "ENDFILE"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1189
+#, c-format
+msgid "REWIND"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1193
+#, c-format
+msgid "FLUSH"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1218
+#, c-format
+msgid "INQUIRE"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1244
+#, c-format
+msgid " EXIST="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1249
+#, c-format
+msgid " OPENED="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1254
+#, c-format
+msgid " NUMBER="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1259
+#, c-format
+msgid " NAMED="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1264
+#, c-format
+msgid " NAME="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1274
+#, c-format
+msgid " SEQUENTIAL="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1280
+#, c-format
+msgid " DIRECT="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1290
+#, c-format
+msgid " FORMATTED"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1295
+#, c-format
+msgid " UNFORMATTED="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1305
+#, c-format
+msgid " NEXTREC="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1325
+#, c-format
+msgid " READ="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1330
+#, c-format
+msgid " WRITE="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1335
+#, c-format
+msgid " READWRITE="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1354
+#, c-format
+msgid "IOLENGTH "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1359
+#, c-format
+msgid "READ"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1363
+#, c-format
+msgid "WRITE"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1375
+#, c-format
+msgid " FMT="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1380
+#, c-format
+msgid " FMT=%d"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1382
+#, c-format
+msgid " NML=%s"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1396
+#, c-format
+msgid " SIZE="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1401
+#, c-format
+msgid " REC="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1406
+#, c-format
+msgid " ADVANCE="
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1413
+#, c-format
+msgid "TRANSFER "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1418
+#, c-format
+msgid "DT_END"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1424
+#, c-format
+msgid " END=%d"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1426
+#, c-format
+msgid " EOR=%d"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1443
+#, c-format
+msgid "Equivalence: "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1469
+#, c-format
+msgid "Namespace:"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1483
+#, c-format
+msgid " %c-%c: "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1485
+#, c-format
+msgid " %c: "
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1494
+#, c-format
+msgid "procedure name = %s"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1510
+#, c-format
+msgid "Operator interfaces for %s:"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1519
+#, c-format
+msgid "User operators:\n"
+msgstr ""
+
+#: fortran/dump-parse-tree.c:1535
+#, c-format
+msgid "CONTAINS\n"
+msgstr ""
+
+#: fortran/error.c:137
+#, no-c-format
+msgid "In file %s:%d\n"
+msgstr ""
+
+#: fortran/error.c:152
+#, no-c-format
+msgid " Included at %s:%d\n"
+msgstr ""
+
+#: fortran/error.c:204
+#, no-c-format
+msgid "<During initialization>\n"
+msgstr ""
+
+#: fortran/error.c:479 fortran/error.c:519 fortran/error.c:545
+msgid "Warning:"
+msgstr ""
+
+#: fortran/error.c:521 fortran/error.c:595 fortran/error.c:619
+msgid "Error:"
+msgstr ""
+
+#: fortran/error.c:637
+msgid "Fatal Error:"
+msgstr ""
+
+#: fortran/error.c:656
+#, no-c-format
+msgid "Internal Error at (1):"
+msgstr ""
+
+#: fortran/expr.c:258
+#, c-format
+msgid "Constant expression required at %C"
+msgstr ""
+
+#: fortran/expr.c:261
+#, c-format
+msgid "Integer expression required at %C"
+msgstr ""
+
+#: fortran/expr.c:266
+#, c-format
+msgid "Integer value too large in expression at %C"
+msgstr ""
+
+#: fortran/expr.c:1256
+#, no-c-format
+msgid "Numeric or CHARACTER operands are required in expression at %L"
+msgstr ""
+
+#: fortran/expr.c:1276
+#, no-c-format
+msgid "Exponent at %L must be INTEGER for an initialization expression"
+msgstr ""
+
+#: fortran/expr.c:1289
+#, no-c-format
+msgid ""
+"Concatenation operator in expression at %L must have two CHARACTER operands"
+msgstr ""
+
+#: fortran/expr.c:1296
+#, no-c-format
+msgid "Concat operator at %L must concatenate strings of the same kind"
+msgstr ""
+
+#: fortran/expr.c:1306
+#, no-c-format
+msgid ".NOT. operator in expression at %L must have a LOGICAL operand"
+msgstr ""
+
+#: fortran/expr.c:1322
+#, no-c-format
+msgid "LOGICAL operands are required in expression at %L"
+msgstr ""
+
+#: fortran/expr.c:1330
+#, no-c-format
+msgid "Only intrinsic operators can be used in expression at %L"
+msgstr ""
+
+#: fortran/expr.c:1338
+#, no-c-format
+msgid "Numeric operands are required in expression at %L"
+msgstr ""
+
+#: fortran/expr.c:1443
+#, no-c-format
+msgid ""
+"Function '%s' in initialization expression at %L must be an intrinsic "
+"function"
+msgstr ""
+
+#: fortran/expr.c:1465
+#, no-c-format
+msgid "Variable '%s' at %L cannot appear in an initialization expression"
+msgstr ""
+
+#: fortran/expr.c:1587
+#, no-c-format
+msgid "Specification function '%s' at %L cannot be a statement function"
+msgstr ""
+
+#: fortran/expr.c:1594
+#, no-c-format
+msgid "Specification function '%s' at %L cannot be an internal function"
+msgstr ""
+
+#: fortran/expr.c:1601
+#, no-c-format
+msgid "Specification function '%s' at %L must be PURE"
+msgstr ""
+
+#: fortran/expr.c:1608
+#, no-c-format
+msgid "Specification function '%s' at %L cannot be RECURSIVE"
+msgstr ""
+
+#: fortran/expr.c:1665
+#, no-c-format
+msgid "Dummy argument '%s' at %L cannot be OPTIONAL"
+msgstr ""
+
+#: fortran/expr.c:1672
+#, no-c-format
+msgid "Dummy argument '%s' at %L cannot be INTENT(OUT)"
+msgstr ""
+
+#: fortran/expr.c:1688
+#, no-c-format
+msgid "Variable '%s' cannot appear in the expression at %L"
+msgstr ""
+
+#: fortran/expr.c:1734
+#, no-c-format
+msgid "Expression at %L must be of INTEGER type"
+msgstr ""
+
+#: fortran/expr.c:1740
+#, no-c-format
+msgid "Expression at %L must be scalar"
+msgstr ""
+
+#: fortran/expr.c:1768
+#, no-c-format
+msgid "Incompatible ranks in %s at %L"
+msgstr ""
+
+#: fortran/expr.c:1782
+#, no-c-format
+msgid "%s at %L has different shape on dimension %d (%d/%d)"
+msgstr ""
+
+#: fortran/expr.c:1815
+#, no-c-format
+msgid "Can't assign to INTENT(IN) variable '%s' at %L"
+msgstr ""
+
+#: fortran/expr.c:1822
+#, no-c-format
+msgid "Incompatible ranks %d and %d in assignment at %L"
+msgstr ""
+
+#: fortran/expr.c:1829
+#, no-c-format
+msgid "Variable type is UNKNOWN in assignment at %L"
+msgstr ""
+
+#: fortran/expr.c:1836
+#, no-c-format
+msgid "NULL appears on right-hand side in assignment at %L"
+msgstr ""
+
+#: fortran/expr.c:1845
+#, no-c-format
+msgid "POINTER valued function appears on right-hand side of assignment at %L"
+msgstr ""
+
+#: fortran/expr.c:1850
+msgid "Array assignment"
+msgstr ""
+
+#: fortran/expr.c:1867
+#, no-c-format
+msgid "Incompatible types in assignment at %L, %s to %s"
+msgstr ""
+
+#: fortran/expr.c:1890
+#, no-c-format
+msgid "Pointer assignment target is not a POINTER at %L"
+msgstr ""
+
+#: fortran/expr.c:1898
+#, no-c-format
+msgid "Pointer assignment to non-POINTER at %L"
+msgstr ""
+
+#: fortran/expr.c:1906
+#, no-c-format
+msgid "Bad pointer object in PURE procedure at %L"
+msgstr ""
+
+#: fortran/expr.c:1919
+#, no-c-format
+msgid "Different types in pointer assignment at %L"
+msgstr ""
+
+#: fortran/expr.c:1926
+#, no-c-format
+msgid "Different kind type parameters in pointer assignment at %L"
+msgstr ""
+
+#: fortran/expr.c:1934
+#, no-c-format
+msgid "Pointer assignment target is neither TARGET nor POINTER at %L"
+msgstr ""
+
+#: fortran/expr.c:1941
+#, no-c-format
+msgid "Bad target in pointer assignment in PURE procedure at %L"
+msgstr ""
+
+#: fortran/expr.c:1947
+#, no-c-format
+msgid "Unequal ranks %d and %d in pointer assignment at %L"
+msgstr ""
+
+#: fortran/gfortranspec.c:232
#, c-format
msgid "overflowed output arg list for '%s'"
msgstr ""
-#: fortran/gfortranspec.c:375
+#: fortran/gfortranspec.c:352
+#, c-format
+msgid ""
+"GNU Fortran comes with NO WARRANTY, to the extent permitted by law.\n"
+"You may redistribute copies of GNU Fortran\n"
+"under the terms of the GNU General Public License.\n"
+"For more information about these matters, see the file named COPYING\n"
+"\n"
+msgstr ""
+
+#: fortran/gfortranspec.c:374
#, c-format
msgid "argument to '%s' missing"
msgstr ""
-#: fortran/gfortranspec.c:379
+#: fortran/gfortranspec.c:378
#, c-format
msgid "no input files; unwilling to write output files"
msgstr ""
+#: fortran/gfortranspec.c:530
+#, c-format
+msgid "Driving:"
+msgstr ""
+
+#: fortran/interface.c:175
+#, no-c-format
+msgid "Syntax error in generic specification at %C"
+msgstr ""
+
+#: fortran/interface.c:204
+#, no-c-format
+msgid "Syntax error: Trailing garbage in INTERFACE statement at %C"
+msgstr ""
+
+#: fortran/interface.c:262
+#, no-c-format
+msgid "Syntax error: Trailing garbage in END INTERFACE statement at %C"
+msgstr ""
+
+#: fortran/interface.c:273
+#, no-c-format
+msgid "Expected a nameless interface at %C"
+msgstr ""
+
+#: fortran/interface.c:284
+#, no-c-format
+msgid "Expected 'END INTERFACE ASSIGNMENT (=)' at %C"
+msgstr ""
+
+#: fortran/interface.c:286
+#, no-c-format
+msgid "Expecting 'END INTERFACE OPERATOR (%s)' at %C"
+msgstr ""
+
+#: fortran/interface.c:300
+#, no-c-format
+msgid "Expecting 'END INTERFACE OPERATOR (.%s.)' at %C"
+msgstr ""
+
+#: fortran/interface.c:311
+#, no-c-format
+msgid "Expecting 'END INTERFACE %s' at %C"
+msgstr ""
+
+#: fortran/interface.c:509
+#, no-c-format
+msgid "Assignment operator interface at %L must be a SUBROUTINE"
+msgstr ""
+
+#: fortran/interface.c:518
+#, no-c-format
+msgid "Intrinsic operator interface at %L must be a FUNCTION"
+msgstr ""
+
+#: fortran/interface.c:605
+#, no-c-format
+msgid ""
+"First argument of defined assignment at %L must be INTENT(IN) or INTENT"
+"(INOUT)"
+msgstr ""
+
+#: fortran/interface.c:609
+#, no-c-format
+msgid "Second argument of defined assignment at %L must be INTENT(IN)"
+msgstr ""
+
+#: fortran/interface.c:615
+#, no-c-format
+msgid "First argument of operator interface at %L must be INTENT(IN)"
+msgstr ""
+
+#: fortran/interface.c:619
+#, no-c-format
+msgid "Second argument of operator interface at %L must be INTENT(IN)"
+msgstr ""
+
+#: fortran/interface.c:626
+#, no-c-format
+msgid "Operator interface at %L conflicts with intrinsic interface"
+msgstr ""
+
+#: fortran/interface.c:631
+#, no-c-format
+msgid "Operator interface at %L has the wrong number of arguments"
+msgstr ""
+
+#: fortran/interface.c:880
+#, no-c-format
+msgid "Procedure '%s' in %s at %L is neither function nor subroutine"
+msgstr ""
+
+#: fortran/interface.c:935
+#, no-c-format
+msgid "Ambiguous interfaces '%s' and '%s' in %s at %L"
+msgstr ""
+
+#: fortran/interface.c:1184
+#, no-c-format
+msgid "Keyword argument '%s' at %L is not in the procedure"
+msgstr ""
+
+#: fortran/interface.c:1193
+#, no-c-format
+msgid ""
+"Keyword argument '%s' at %L is already associated with another actual "
+"argument"
+msgstr ""
+
+#: fortran/interface.c:1203
+#, no-c-format
+msgid "More actual than formal arguments in procedure call at %L"
+msgstr ""
+
+#: fortran/interface.c:1216
+#, no-c-format
+msgid "Missing alternate return spec in subroutine call at %L"
+msgstr ""
+
+#: fortran/interface.c:1225
+#, no-c-format
+msgid "Unexpected alternate return spec in subroutine call at %L"
+msgstr ""
+
+#: fortran/interface.c:1234
+#, no-c-format
+msgid "Type/rank mismatch in argument '%s' at %L"
+msgstr ""
+
+#: fortran/interface.c:1243
+#, no-c-format
+msgid "Actual argument for '%s' must be a pointer at %L"
+msgstr ""
+
+#: fortran/interface.c:1264
+#, no-c-format
+msgid "Missing actual argument for argument '%s' at %L"
+msgstr ""
+
+#: fortran/interface.c:1449
+#, no-c-format
+msgid ""
+"Same actual argument associated with INTENT(%s) argument '%s' and INTENT(%s) "
+"argument '%s' at %L"
+msgstr ""
+
+#: fortran/interface.c:1490
+#, no-c-format
+msgid ""
+"Procedure argument at %L is INTENT(IN) while interface specifies INTENT(%s)"
+msgstr ""
+
+#: fortran/interface.c:1501
+#, no-c-format
+msgid ""
+"Procedure argument at %L is local to a PURE procedure and is passed to an "
+"INTENT(%s) argument"
+msgstr ""
+
+#: fortran/interface.c:1510
+#, no-c-format
+msgid ""
+"Procedure argument at %L is local to a PURE procedure and has the POINTER "
+"attribute"
+msgstr ""
+
+#: fortran/interface.c:1531
+#, no-c-format
+msgid "Procedure '%s' called with an implicit interface at %L"
+msgstr ""
+
+#: fortran/interface.c:1697
+#, no-c-format
+msgid "Function '%s' called in lieu of an operator at %L must be PURE"
+msgstr ""
+
+#: fortran/interface.c:1762
+#, no-c-format
+msgid "Subroutine '%s' called in lieu of assignment at %L must be PURE"
+msgstr ""
+
+#: fortran/interface.c:1784
+#, no-c-format
+msgid "Entity '%s' at %C is already present in the interface"
+msgstr ""
+
+#: fortran/intrinsic.c:2564
+#, no-c-format
+msgid "Too many arguments in call to '%s' at %L"
+msgstr ""
+
+#: fortran/intrinsic.c:2578
+#, no-c-format
+msgid "Can't find keyword named '%s' in call to '%s' at %L"
+msgstr ""
+
+#: fortran/intrinsic.c:2585
+#, no-c-format
+msgid "Argument '%s' is appears twice in call to '%s' at %L"
+msgstr ""
+
+#: fortran/intrinsic.c:2599
+#, no-c-format
+msgid "Missing actual argument '%s' in call to '%s' at %L"
+msgstr ""
+
+#: fortran/intrinsic.c:2658
+#, no-c-format
+msgid "Type of argument '%s' in call to '%s' at %L should be %s, not %s"
+msgstr ""
+
+#: fortran/intrinsic.c:2962
+#, no-c-format
+msgid "Ranks of arguments to elemental intrinsic '%s' differ at %L"
+msgstr ""
+
+#: fortran/intrinsic.c:3008
+#, no-c-format
+msgid "Intrinsic '%s' at %L is not included in the selected standard"
+msgstr ""
+
+#: fortran/intrinsic.c:3111
+#, no-c-format
+msgid "Extension: Evaluation of nonstandard initialization expression at %L"
+msgstr ""
+
+#: fortran/intrinsic.c:3171
+#, no-c-format
+msgid "Subroutine call to intrinsic '%s' at %L is not PURE"
+msgstr ""
+
+#: fortran/intrinsic.c:3246
+#, no-c-format
+msgid "Extension: Conversion from %s to %s at %L"
+msgstr ""
+
+#: fortran/intrinsic.c:3249
+#, no-c-format
+msgid "Conversion from %s to %s at %L"
+msgstr ""
+
+#: fortran/intrinsic.c:3286
+#, no-c-format
+msgid "Can't convert %s to %s at %L"
+msgstr ""
+
+#: fortran/io.c:404
+msgid "Positive width required"
+msgstr ""
+
+#: fortran/io.c:405
+msgid "Period required"
+msgstr ""
+
+#: fortran/io.c:406
+msgid "Nonnegative width required"
+msgstr ""
+
+#: fortran/io.c:407
+msgid "Unexpected element"
+msgstr ""
+
+#: fortran/io.c:408
+msgid "Unexpected end of format string"
+msgstr ""
+
+#: fortran/io.c:425
+msgid "Missing leading left parenthesis"
+msgstr ""
+
+#: fortran/io.c:463
+msgid "Expected P edit descriptor"
+msgstr ""
+
+#. P requires a prior number.
+#: fortran/io.c:471
+msgid "P descriptor requires leading scale factor"
+msgstr ""
+
+#. X requires a prior number if we're being pedantic.
+#: fortran/io.c:476
+#, no-c-format
+msgid "Extension: X descriptor requires leading space count at %C"
+msgstr ""
+
+#: fortran/io.c:496
+#, no-c-format
+msgid "Extension: $ descriptor at %C"
+msgstr ""
+
+#: fortran/io.c:501
+msgid "$ must be the last specifier"
+msgstr ""
+
+#: fortran/io.c:546
+msgid "Repeat count cannot follow P descriptor"
+msgstr ""
+
+#: fortran/io.c:609
+msgid "Positive exponent width required"
+msgstr ""
+
+#: fortran/io.c:710 fortran/io.c:762
+#, no-c-format
+msgid "Extension: Missing comma at %C"
+msgstr ""
+
+#: fortran/io.c:777 fortran/io.c:780
+#, no-c-format
+msgid "%s in format string at %C"
+msgstr ""
+
+#: fortran/io.c:820
+#, no-c-format
+msgid "Missing format label at %C"
+msgstr ""
+
+#: fortran/io.c:878 fortran/io.c:902
+#, no-c-format
+msgid "Duplicate %s specification at %C"
+msgstr ""
+
+#: fortran/io.c:909
+#, no-c-format
+msgid "Variable tag cannot be INTENT(IN) at %C"
+msgstr ""
+
+#: fortran/io.c:916
+#, no-c-format
+msgid "Variable tag cannot be assigned in PURE procedure at %C"
+msgstr ""
+
+#: fortran/io.c:953
+#, no-c-format
+msgid "Duplicate %s label specification at %C"
+msgstr ""
+
+#: fortran/io.c:975
+#, no-c-format
+msgid "%s tag at %L must be of type %s"
+msgstr ""
+
+#: fortran/io.c:990
+#, no-c-format
+msgid "%s tag at %L must be of type %s or %s"
+msgstr ""
+
+#: fortran/io.c:998
+#, no-c-format
+msgid "Obsolete: ASSIGNED variable in FORMAT tag at %L"
+msgstr ""
+
+#: fortran/io.c:1003
+#, no-c-format
+msgid "Variable '%s' at %L has not been assigned a format label"
+msgstr ""
+
+#: fortran/io.c:1018
+#, no-c-format
+msgid "Extension: Character array in FORMAT tag at %L"
+msgstr ""
+
+#: fortran/io.c:1025
+#, no-c-format
+msgid "Extension: Non-character in FORMAT tag at %L"
+msgstr ""
+
+#: fortran/io.c:1036
+#, no-c-format
+msgid "%s tag at %L must be scalar"
+msgstr ""
+
+#: fortran/io.c:1041
+#, no-c-format
+msgid "Fortran 2003: IOMSG tag at %L"
+msgstr ""
+
+#: fortran/io.c:1205
+#, no-c-format
+msgid "OPEN statement not allowed in PURE procedure at %C"
+msgstr ""
+
+#: fortran/io.c:1313
+#, no-c-format
+msgid "CLOSE statement not allowed in PURE procedure at %C"
+msgstr ""
+
+#: fortran/io.c:1439 fortran/match.c:1441
+#, no-c-format
+msgid "%s statement not allowed in PURE procedure at %C"
+msgstr ""
+
+#: fortran/io.c:1499
+#, no-c-format
+msgid "Fortran 2003: FLUSH statement at %C"
+msgstr ""
+
+#: fortran/io.c:1559
+#, no-c-format
+msgid "Duplicate UNIT specification at %C"
+msgstr ""
+
+#: fortran/io.c:1615
+#, no-c-format
+msgid "Duplicate format specification at %C"
+msgstr ""
+
+#: fortran/io.c:1632
+#, no-c-format
+msgid "Symbol '%s' in namelist '%s' is INTENT(IN) at %C"
+msgstr ""
+
+#: fortran/io.c:1668
+#, no-c-format
+msgid "Duplicate NML specification at %C"
+msgstr ""
+
+#: fortran/io.c:1677
+#, no-c-format
+msgid "Symbol '%s' at %C must be a NAMELIST group name"
+msgstr ""
+
+#: fortran/io.c:1713
+#, no-c-format
+msgid "END tag at %C not allowed in output statement"
+msgstr ""
+
+#: fortran/io.c:1773
+#, no-c-format
+msgid ""
+"UNIT specification at %L must be an INTEGER expression or a CHARACTER "
+"variable"
+msgstr ""
+
+#: fortran/io.c:1783
+#, no-c-format
+msgid "REC tag at %L is incompatible with internal file"
+msgstr ""
+
+#: fortran/io.c:1790
+#, no-c-format
+msgid "Internal file at %L is incompatible with namelist"
+msgstr ""
+
+#: fortran/io.c:1797
+#, no-c-format
+msgid "ADVANCE tag at %L is incompatible with internal file"
+msgstr ""
+
+#: fortran/io.c:1807
+#, no-c-format
+msgid "REC tag at %L is incompatible with END tag"
+msgstr ""
+
+#: fortran/io.c:1815
+#, no-c-format
+msgid "END tag at %L is incompatible with list directed format (*)"
+msgstr ""
+
+#: fortran/io.c:1822
+#, no-c-format
+msgid "REC tag at %L is incompatible with namelist"
+msgstr ""
+
+#: fortran/io.c:1830
+#, no-c-format
+msgid "ADVANCE tag at %L is incompatible with list directed format (*)"
+msgstr ""
+
+#: fortran/io.c:1837
+#, no-c-format
+msgid "EOR tag at %L requires an ADVANCE tag"
+msgstr ""
+
+#: fortran/io.c:1843
+#, no-c-format
+msgid "SIZE tag at %L requires an ADVANCE tag"
+msgstr ""
+
+#: fortran/io.c:1863
+#, no-c-format
+msgid "FORMAT label %d at %L not defined"
+msgstr ""
+
+#: fortran/io.c:1984
+#, no-c-format
+msgid "Syntax error in I/O iterator at %C"
+msgstr ""
+
+#: fortran/io.c:2015
+#, no-c-format
+msgid "Expected variable in READ statement at %C"
+msgstr ""
+
+#: fortran/io.c:2021
+#, no-c-format
+msgid "Expected expression in %s statement at %C"
+msgstr ""
+
+#: fortran/io.c:2032
+#, no-c-format
+msgid "Variable '%s' in input list at %C cannot be INTENT(IN)"
+msgstr ""
+
+#: fortran/io.c:2041
+#, no-c-format
+msgid "Cannot read to variable '%s' in PURE procedure at %C"
+msgstr ""
+
+#: fortran/io.c:2058
+#, no-c-format
+msgid "Cannot write to internal file unit '%s' at %C inside a PURE procedure"
+msgstr ""
+
+#. A general purpose syntax error.
+#: fortran/io.c:2118 fortran/io.c:2344 fortran/gfortran.h:1587
+#, no-c-format
+msgid "Syntax error in %s statement at %C"
+msgstr ""
+
+#: fortran/io.c:2176
+#, no-c-format
+msgid "PRINT namelist at %C is an extension"
+msgstr ""
+
+#: fortran/io.c:2184
+#, no-c-format
+msgid "Namelist followed by I/O list at %C"
+msgstr ""
+
+#: fortran/io.c:2286
+#, no-c-format
+msgid "Extension: Comma before output item list at %C is an extension"
+msgstr ""
+
+#: fortran/io.c:2295
+#, no-c-format
+msgid "Expected comma in I/O list at %C"
+msgstr ""
+
+#: fortran/io.c:2313
+#, no-c-format
+msgid "Internal file '%s' at %L is INTENT(IN)"
+msgstr ""
+
+#: fortran/io.c:2329
+#, no-c-format
+msgid ""
+"io-unit in %s statement at %C must be an internal file in a PURE procedure"
+msgstr ""
+
+#: fortran/io.c:2376
+#, no-c-format
+msgid "PRINT statement at %C not allowed within PURE procedure"
+msgstr ""
+
+#: fortran/io.c:2515 fortran/io.c:2563
+#, no-c-format
+msgid "INQUIRE statement not allowed in PURE procedure at %C"
+msgstr ""
+
+#: fortran/io.c:2539
+#, no-c-format
+msgid "IOLENGTH tag invalid in INQUIRE statement at %C"
+msgstr ""
+
+#: fortran/io.c:2549
+#, no-c-format
+msgid "INQUIRE statement at %L cannot contain both FILE and UNIT specifiers"
+msgstr ""
+
+#: fortran/io.c:2556
+#, no-c-format
+msgid "INQUIRE statement at %L requires either FILE or UNIT specifier"
+msgstr ""
+
+#: fortran/match.c:175
+#, no-c-format
+msgid "Integer too large at %C"
+msgstr ""
+
+#: fortran/match.c:238
+#, no-c-format
+msgid "Statement label at %C is out of range"
+msgstr ""
+
+#: fortran/match.c:263
+#, no-c-format
+msgid "Label name '%s' at %C is ambiguous"
+msgstr ""
+
+#: fortran/match.c:269
+#, no-c-format
+msgid "Duplicate construct label '%s' at %C"
+msgstr ""
+
+#: fortran/match.c:393
+#, no-c-format
+msgid "Name at %C is too long"
+msgstr ""
+
+#: fortran/match.c:510
+#, no-c-format
+msgid "Loop variable at %C cannot be a sub-component"
+msgstr ""
+
+#: fortran/match.c:516
+#, no-c-format
+msgid "Loop variable '%s' at %C cannot be INTENT(IN)"
+msgstr ""
+
+#: fortran/match.c:523
+#, no-c-format
+msgid "Loop variable at %C cannot have the POINTER attribute"
+msgstr ""
+
+#: fortran/match.c:553
+#, no-c-format
+msgid "Expected a step value in iterator at %C"
+msgstr ""
+
+#: fortran/match.c:565
+#, no-c-format
+msgid "Syntax error in iterator at %C"
+msgstr ""
+
+#: fortran/match.c:801
+#, no-c-format
+msgid "Invalid form of PROGRAM statement at %C"
+msgstr ""
+
+#: fortran/match.c:835
+#, no-c-format
+msgid "Cannot assign to a PARAMETER variable at %C"
+msgstr ""
+
+#: fortran/match.c:924 fortran/match.c:1000
+#, no-c-format
+msgid "Obsolete: arithmetic IF statement at %C"
+msgstr ""
+
+#: fortran/match.c:971
+#, no-c-format
+msgid "Syntax error in IF-expression at %C"
+msgstr ""
+
+#: fortran/match.c:983
+#, no-c-format
+msgid "Block label not appropriate for arithmetic IF statement at %C"
+msgstr ""
+
+#: fortran/match.c:1025
+#, no-c-format
+msgid "Block label is not appropriate IF statement at %C"
+msgstr ""
+
+#: fortran/match.c:1096
+#, no-c-format
+msgid "Unclassifiable statement in IF-clause at %C"
+msgstr ""
+
+#: fortran/match.c:1103
+#, no-c-format
+msgid "Syntax error in IF-clause at %C"
+msgstr ""
+
+#: fortran/match.c:1147
+#, no-c-format
+msgid "Unexpected junk after ELSE statement at %C"
+msgstr ""
+
+#: fortran/match.c:1153 fortran/match.c:1188
+#, no-c-format
+msgid "Label '%s' at %C doesn't match IF label '%s'"
+msgstr ""
+
+#: fortran/match.c:1182
+#, no-c-format
+msgid "Unexpected junk after ELSE IF statement at %C"
+msgstr ""
+
+#: fortran/match.c:1345
+#, no-c-format
+msgid "Name '%s' in %s statement at %C is not a loop name"
+msgstr ""
+
+#: fortran/match.c:1360
+#, no-c-format
+msgid "%s statement at %C is not within a loop"
+msgstr ""
+
+#: fortran/match.c:1363
+#, no-c-format
+msgid "%s statement at %C is not within loop '%s'"
+msgstr ""
+
+#: fortran/match.c:1419
+#, no-c-format
+msgid "STOP code out of range at %C"
+msgstr ""
+
+#: fortran/match.c:1472
+#, no-c-format
+msgid "Obsolete: PAUSE statement at %C"
+msgstr ""
+
+#: fortran/match.c:1521
+#, no-c-format
+msgid "Obsolete: ASSIGN statement at %C"
+msgstr ""
+
+#: fortran/match.c:1567
+#, no-c-format
+msgid "Obsolete: Assigned GOTO statement at %C"
+msgstr ""
+
+#: fortran/match.c:1614 fortran/match.c:1666
+#, no-c-format
+msgid "Statement label list in GOTO at %C cannot be empty"
+msgstr ""
+
+#: fortran/match.c:1750
+#, no-c-format
+msgid "Bad allocate-object in ALLOCATE statement at %C for a PURE procedure"
+msgstr ""
+
+#: fortran/match.c:1770
+#, no-c-format
+msgid "STAT variable '%s' of ALLOCATE statement at %C cannot be INTENT(IN)"
+msgstr ""
+
+#: fortran/match.c:1778
+#, no-c-format
+msgid "Illegal STAT variable in ALLOCATE statement at %C for a PURE procedure"
+msgstr ""
+
+#: fortran/match.c:1785 fortran/match.c:1951
+#, no-c-format
+msgid "STAT expression at %C must be a variable"
+msgstr ""
+
+#: fortran/match.c:1840
+#, no-c-format
+msgid "Illegal variable in NULLIFY at %C for a PURE procedure"
+msgstr ""
+
+#: fortran/match.c:1918
+#, no-c-format
+msgid "Illegal deallocate-expression in DEALLOCATE at %C for a PURE procedure"
+msgstr ""
+
+#: fortran/match.c:1937
+#, no-c-format
+msgid "STAT variable '%s' of DEALLOCATE statement at %C cannot be INTENT(IN)"
+msgstr ""
+
+#: fortran/match.c:1944
+#, no-c-format
+msgid ""
+"Illegal STAT variable in DEALLOCATE statement at %C for a PURE procedure"
+msgstr ""
+
+#: fortran/match.c:1993
+#, no-c-format
+msgid "Alternate RETURN statement at %C is only allowed within a SUBROUTINE"
+msgstr ""
+
+#: fortran/match.c:2024
+#, no-c-format
+msgid "Extension: RETURN statement in main program at %C"
+msgstr ""
+
+#: fortran/match.c:2219
+#, no-c-format
+msgid "Syntax error in common block name at %C"
+msgstr ""
+
+#: fortran/match.c:2284
+#, no-c-format
+msgid "Symbol '%s' at %C is already in a COMMON block"
+msgstr ""
+
+#: fortran/match.c:2296
+#, no-c-format
+msgid "Previously initialized symbol '%s' in blank COMMON block at %C"
+msgstr ""
+
+#: fortran/match.c:2299
+#, no-c-format
+msgid "Previously initialized symbol '%s' in COMMON block '%s' at %C"
+msgstr ""
+
+#: fortran/match.c:2311
+#, no-c-format
+msgid ""
+"Derived type variable in COMMON at %C does not have the SEQUENCE attribute"
+msgstr ""
+
+#: fortran/match.c:2334
+#, no-c-format
+msgid "Array specification for symbol '%s' in COMMON at %C must be explicit"
+msgstr ""
+
+#: fortran/match.c:2345
+#, no-c-format
+msgid "Symbol '%s' in COMMON at %C cannot be a POINTER array"
+msgstr ""
+
+#: fortran/match.c:2377
+#, no-c-format
+msgid ""
+"Symbol '%s', in COMMON block '%s' at %C is being indirectly equivalenced to "
+"another COMMON block '%s'"
+msgstr ""
+
+#: fortran/match.c:2487
+#, no-c-format
+msgid "Namelist group name '%s' at %C already has a basic type of %s"
+msgstr ""
+
+#: fortran/match.c:2629
+#, no-c-format
+msgid "Array reference in EQUIVALENCE at %C cannot be an array section"
+msgstr ""
+
+#: fortran/match.c:2661
+#, no-c-format
+msgid ""
+"Attempt to indirectly overlap COMMON blocks %s and %s by EQUIVALENCE at %C"
+msgstr ""
+
+#: fortran/match.c:2811
+#, no-c-format
+msgid "Expected initialization expression in CASE at %C"
+msgstr ""
+
+#: fortran/match.c:2838
+#, no-c-format
+msgid "Expected case name of '%s' at %C"
+msgstr ""
+
+#: fortran/match.c:2882
+#, no-c-format
+msgid "Unexpected CASE statement at %C"
+msgstr ""
+
+#: fortran/match.c:2934
+#, no-c-format
+msgid "Syntax error in CASE-specification at %C"
+msgstr ""
+
+#: fortran/match.c:3054
+#, no-c-format
+msgid "ELSEWHERE statement at %C not enclosed in WHERE block"
+msgstr ""
+
+#: fortran/match.c:3085
+#, no-c-format
+msgid "Label '%s' at %C doesn't match WHERE label '%s'"
+msgstr ""
+
+#: fortran/match.c:3180
+#, no-c-format
+msgid "Syntax error in FORALL iterator at %C"
+msgstr ""
+
+#: fortran/matchexp.c:29
+#, c-format
+msgid "Syntax error in expression at %C"
+msgstr ""
+
+#: fortran/matchexp.c:73
+#, no-c-format
+msgid "Bad character '%c' in OPERATOR name at %C"
+msgstr ""
+
+#: fortran/matchexp.c:81
+#, no-c-format
+msgid "The name '%s' cannot be used as a defined operator at %C"
+msgstr ""
+
+#: fortran/matchexp.c:156
+#, no-c-format
+msgid "Expected a right parenthesis in expression at %C"
+msgstr ""
+
+#: fortran/matchexp.c:278
+#, no-c-format
+msgid "Expected exponent in expression at %C"
+msgstr ""
+
+#: fortran/matchexp.c:314 fortran/matchexp.c:418
+#, no-c-format
+msgid ""
+"Extension: Unary operator following arithmetic operator (use parentheses) at "
+"%C"
+msgstr ""
+
+#: fortran/misc.c:42
+#, no-c-format
+msgid "Out of memory-- malloc() failed"
+msgstr ""
+
+#: fortran/module.c:529
+#, no-c-format
+msgid "Missing generic specification in USE statement at %C"
+msgstr ""
+
+#: fortran/module.c:837
+#, no-c-format
+msgid "Reading module %s at line %d column %d: %s"
+msgstr ""
+
+#: fortran/module.c:841
+#, no-c-format
+msgid "Writing module %s at line %d column %d: %s"
+msgstr ""
+
+#: fortran/module.c:845
+#, no-c-format
+msgid "Module %s at line %d column %d: %s"
+msgstr ""
+
+#: fortran/module.c:887
+msgid "Unexpected EOF"
+msgstr ""
+
+#: fortran/module.c:919
+msgid "Unexpected end of module in string constant"
+msgstr ""
+
+#: fortran/module.c:973
+msgid "Integer overflow"
+msgstr ""
+
+#: fortran/module.c:1004
+msgid "Name too long"
+msgstr ""
+
+#: fortran/module.c:1111
+msgid "Bad name"
+msgstr ""
+
+#: fortran/module.c:1155
+msgid "Expected name"
+msgstr ""
+
+#: fortran/module.c:1158
+msgid "Expected left parenthesis"
+msgstr ""
+
+#: fortran/module.c:1161
+msgid "Expected right parenthesis"
+msgstr ""
+
+#: fortran/module.c:1164
+msgid "Expected integer"
+msgstr ""
+
+#: fortran/module.c:1167
+msgid "Expected string"
+msgstr ""
+
+#: fortran/module.c:1191
+msgid "find_enum(): Enum not found"
+msgstr ""
+
+#: fortran/module.c:1206
+#, no-c-format
+msgid "Error writing modules file: %s"
+msgstr ""
+
+#: fortran/module.c:1558
+msgid "Expected attribute bit name"
+msgstr ""
+
+#: fortran/module.c:2287
+msgid "Expected integer string"
+msgstr ""
+
+#: fortran/module.c:2291
+msgid "Error converting integer"
+msgstr ""
+
+#: fortran/module.c:2314
+msgid "Expected real string"
+msgstr ""
+
+#: fortran/module.c:2460
+msgid "Expected expression type"
+msgstr ""
+
+#: fortran/module.c:2505
+msgid "Bad operator"
+msgstr ""
+
+#: fortran/module.c:2591
+msgid "Bad type in constant expression"
+msgstr ""
+
+#: fortran/module.c:2628
+#, no-c-format
+msgid "Namelist %s cannot be renamed by USE association to %s."
+msgstr ""
+
+#: fortran/module.c:3283
+#, no-c-format
+msgid "Symbol '%s' referenced at %L not found in module '%s'"
+msgstr ""
+
+#: fortran/module.c:3291
+#, no-c-format
+msgid "User operator '%s' referenced at %L not found in module '%s'"
+msgstr ""
+
+#: fortran/module.c:3297
+#, no-c-format
+msgid "Intrinsic operator '%s' referenced at %L not found in module '%s'"
+msgstr ""
+
+#: fortran/module.c:3657
+#, no-c-format
+msgid "Can't open module file '%s' for writing at %C: %s"
+msgstr ""
+
+#: fortran/module.c:3682
+#, no-c-format
+msgid "Error writing module file '%s' for writing: %s"
+msgstr ""
+
+#: fortran/module.c:3703
+#, no-c-format
+msgid "Can't open module file '%s' for reading at %C: %s"
+msgstr ""
+
+#: fortran/module.c:3717
+msgid "Unexpected end of module"
+msgstr ""
+
+#: fortran/module.c:3725
+#, no-c-format
+msgid "Can't USE the same module we're building!"
+msgstr ""
+
+#: fortran/options.c:188
+#, no-c-format
+msgid "Reading file '%s' as free form."
+msgstr ""
+
+#: fortran/options.c:198
+#, no-c-format
+msgid "'-fd-lines-as-comments' has no effect in free form."
+msgstr ""
+
+#: fortran/options.c:201
+#, no-c-format
+msgid "'-fd-lines-as-code' has no effect in free form."
+msgstr ""
+
+#: fortran/options.c:262
+#, c-format
+msgid "gfortran: Only one -M option allowed\n"
+msgstr ""
+
+#: fortran/options.c:268
+#, c-format
+msgid "gfortran: Directory required after -M\n"
+msgstr ""
+
+#: fortran/options.c:401
+#, no-c-format
+msgid "Fixed line length must be at least seven."
+msgstr ""
+
+#: fortran/options.c:407
+#, no-c-format
+msgid "Maximum supported idenitifier length is %d"
+msgstr ""
+
+#: fortran/options.c:414
+#, no-c-format
+msgid "Argument to -fqkind isn't a valid real kind"
+msgstr ""
+
+#: fortran/parse.c:292
+#, no-c-format
+msgid "Unclassifiable statement at %C"
+msgstr ""
+
+#. Skip the bad statement label.
+#: fortran/parse.c:327
+#, no-c-format
+msgid "Ignoring bad statement label at %C"
+msgstr ""
+
+#: fortran/parse.c:338
+#, no-c-format
+msgid "Ignoring statement label of zero at %C"
+msgstr ""
+
+#: fortran/parse.c:348
+#, no-c-format
+msgid "Ignoring statement label in empty statement at %C"
+msgstr ""
+
+#: fortran/parse.c:410
+#, no-c-format
+msgid "Non-numeric character in statement label at %C"
+msgstr ""
+
+#: fortran/parse.c:418
+#, no-c-format
+msgid "Zero is not a valid statement label at %C"
+msgstr ""
+
+#: fortran/parse.c:437
+#, no-c-format
+msgid "Bad continuation line at %C"
+msgstr ""
+
+#: fortran/parse.c:464
+#, no-c-format
+msgid "Statement label in blank line will be ignored at %C"
+msgstr ""
+
+#: fortran/parse.c:489
+#, no-c-format
+msgid "Line truncated at %C"
+msgstr ""
+
+#: fortran/parse.c:662
+#, no-c-format
+msgid "FORMAT statement at %L does not have a statement label"
+msgstr ""
+
+#: fortran/parse.c:734
+msgid "arithmetic IF"
+msgstr ""
+
+#: fortran/parse.c:740
+msgid "attribute declaration"
+msgstr ""
+
+#: fortran/parse.c:770
+msgid "data declaration"
+msgstr ""
+
+#: fortran/parse.c:779
+msgid "derived type declaration"
+msgstr ""
+
+#: fortran/parse.c:858
+msgid "block IF"
+msgstr ""
+
+#: fortran/parse.c:867
+msgid "implied END DO"
+msgstr ""
+
+#: fortran/parse.c:934
+msgid "assignment"
+msgstr ""
+
+#: fortran/parse.c:937
+msgid "pointer assignment"
+msgstr ""
+
+#: fortran/parse.c:946
+msgid "simple IF"
+msgstr ""
+
+#: fortran/parse.c:972
+msgid "a PROGRAM"
+msgstr ""
+
+#: fortran/parse.c:975
+msgid "a MODULE"
+msgstr ""
+
+#: fortran/parse.c:978
+msgid "a SUBROUTINE"
+msgstr ""
+
+#: fortran/parse.c:981
+msgid "a FUNCTION"
+msgstr ""
+
+#: fortran/parse.c:984
+msgid "a BLOCK DATA"
+msgstr ""
+
+#: fortran/parse.c:987
+msgid "an INTERFACE"
+msgstr ""
+
+#: fortran/parse.c:990
+msgid "a DERIVED TYPE block"
+msgstr ""
+
+#: fortran/parse.c:993
+msgid "an IF-THEN block"
+msgstr ""
+
+#: fortran/parse.c:996
+msgid "a DO block"
+msgstr ""
+
+#: fortran/parse.c:999
+msgid "a SELECT block"
+msgstr ""
+
+#: fortran/parse.c:1002
+msgid "a FORALL block"
+msgstr ""
+
+#: fortran/parse.c:1005
+msgid "a WHERE block"
+msgstr ""
+
+#: fortran/parse.c:1008
+msgid "a contained subprogram"
+msgstr ""
+
+#: fortran/parse.c:1109
+#, no-c-format
+msgid "Unexpected %s statement at %C"
+msgstr ""
+
+#: fortran/parse.c:1241
+#, no-c-format
+msgid "%s statement at %C cannot follow %s statement at %L"
+msgstr ""
+
+#: fortran/parse.c:1258
+#, no-c-format
+msgid "Unexpected end of file in '%s'"
+msgstr ""
+
+#: fortran/parse.c:1311
+#, no-c-format
+msgid "Derived type definition at %C has no components"
+msgstr ""
+
+#: fortran/parse.c:1322
+#, no-c-format
+msgid "PRIVATE statement in TYPE at %C must be inside a MODULE"
+msgstr ""
+
+#: fortran/parse.c:1329
+#, no-c-format
+msgid "PRIVATE statement at %C must precede structure components"
+msgstr ""
+
+#: fortran/parse.c:1337
+#, no-c-format
+msgid "Duplicate PRIVATE statement at %C"
+msgstr ""
+
+#: fortran/parse.c:1349
+#, no-c-format
+msgid "SEQUENCE statement at %C must precede structure components"
+msgstr ""
+
+#: fortran/parse.c:1356
+#, no-c-format
+msgid "SEQUENCE attribute at %C already specified in TYPE statement"
+msgstr ""
+
+#: fortran/parse.c:1361
+#, no-c-format
+msgid "Duplicate SEQUENCE statement at %C"
+msgstr ""
+
+#: fortran/parse.c:1385
+#, no-c-format
+msgid ""
+"Component %s of SEQUENCE type declared at %C does not have the SEQUENCE "
+"attribute"
+msgstr ""
+
+#: fortran/parse.c:1454
+#, no-c-format
+msgid "Unexpected %s statement in INTERFACE block at %C"
+msgstr ""
+
+#: fortran/parse.c:1481
+#, no-c-format
+msgid "SUBROUTINE at %C does not belong in a generic function interface"
+msgstr ""
+
+#: fortran/parse.c:1486
+#, no-c-format
+msgid "FUNCTION at %C does not belong in a generic subroutine interface"
+msgstr ""
+
+#: fortran/parse.c:1503
+#, no-c-format
+msgid "Unexpected %s statement at %C in INTERFACE body"
+msgstr ""
+
+#: fortran/parse.c:1575
+#, no-c-format
+msgid "%s statement must appear in a MODULE"
+msgstr ""
+
+#: fortran/parse.c:1582
+#, no-c-format
+msgid "%s statement at %C follows another accessibility specification"
+msgstr ""
+
+#: fortran/parse.c:1653
+#, no-c-format
+msgid "ELSEWHERE statement at %C follows previous unmasked ELSEWHERE"
+msgstr ""
+
+#: fortran/parse.c:1674
+#, no-c-format
+msgid "Unexpected %s statement in WHERE block at %C"
+msgstr ""
+
+#: fortran/parse.c:1734
+#, no-c-format
+msgid "Unexpected %s statement in FORALL block at %C"
+msgstr ""
+
+#: fortran/parse.c:1786
+#, no-c-format
+msgid "ELSE IF statement at %C cannot follow ELSE statement at %L"
+msgstr ""
+
+#: fortran/parse.c:1804
+#, no-c-format
+msgid "Duplicate ELSE statements at %L and %C"
+msgstr ""
+
+#: fortran/parse.c:1866
+#, no-c-format
+msgid "Expected a CASE or END SELECT statement following SELECT CASE at %C"
+msgstr ""
+
+#: fortran/parse.c:1924
+#, no-c-format
+msgid "Variable '%s' at %C cannot be redefined inside loop beginning at %L"
+msgstr ""
+
+#: fortran/parse.c:1959
+#, no-c-format
+msgid "End of nonblock DO statement at %C is within another block"
+msgstr ""
+
+#: fortran/parse.c:1968
+#, no-c-format
+msgid "End of nonblock DO statement at %C is interwoven with another DO loop"
+msgstr ""
+
+#: fortran/parse.c:2018
+#, no-c-format
+msgid "Statement label in ENDDO at %C doesn't match DO label"
+msgstr ""
+
+#: fortran/parse.c:2075
+#, no-c-format
+msgid "%s statement at %C cannot terminate a non-block DO loop"
+msgstr ""
+
+#: fortran/parse.c:2214
+#, no-c-format
+msgid "Contained procedure '%s' at %C is already ambiguous"
+msgstr ""
+
+#: fortran/parse.c:2265
+#, no-c-format
+msgid "Unexpected %s statement in CONTAINS section at %C"
+msgstr ""
+
+#: fortran/parse.c:2350
+#, no-c-format
+msgid "CONTAINS statement at %C is already in a contained program unit"
+msgstr ""
+
+#: fortran/parse.c:2399
+#, no-c-format
+msgid "Global name '%s' at %L is already being used as a %s at %L"
+msgstr ""
+
+#: fortran/parse.c:2420
+#, no-c-format
+msgid "Blank BLOCK DATA at %C conflicts with prior BLOCK DATA at %L"
+msgstr ""
+
+#: fortran/parse.c:2444
+#, no-c-format
+msgid "Unexpected %s statement in BLOCK DATA at %C"
+msgstr ""
+
+#: fortran/parse.c:2486
+#, no-c-format
+msgid "Unexpected %s statement in MODULE at %C"
+msgstr ""
+
+#. If we see a duplicate main program, shut down. If the second
+#. instance is an implied main program, ie data decls or executable
+#. statements, we're in for lots of errors.
+#: fortran/parse.c:2656
+#, no-c-format
+msgid "Two main PROGRAMs at %L and %C"
+msgstr ""
+
+#: fortran/primary.c:89
+#, no-c-format
+msgid "Missing kind-parameter at %C"
+msgstr ""
+
+#: fortran/primary.c:212
+#, no-c-format
+msgid "Integer kind %d at %C not available"
+msgstr ""
+
+#: fortran/primary.c:220
+#, no-c-format
+msgid "Integer too big for its kind at %C"
+msgstr ""
+
+#: fortran/primary.c:250
+#, no-c-format
+msgid "Extension: Hollerith constant at %C"
+msgstr ""
+
+#: fortran/primary.c:262
+#, no-c-format
+msgid "Invalid Hollerith constant: %L must contain at least one character"
+msgstr ""
+
+#: fortran/primary.c:268
+#, no-c-format
+msgid "Invalid Hollerith constant: Interger kind at %L should be default"
+msgstr ""
+
+#: fortran/primary.c:340
+#, no-c-format
+msgid "Extension: Hexadecimal constant at %C uses non-standard syntax."
+msgstr ""
+
+#: fortran/primary.c:353
+#, no-c-format
+msgid "Empty set of digits in binary constant at %C"
+msgstr ""
+
+#: fortran/primary.c:355
+#, no-c-format
+msgid "Empty set of digits in octal constant at %C"
+msgstr ""
+
+#: fortran/primary.c:357
+#, no-c-format
+msgid "Empty set of digits in hexadecimal constant at %C"
+msgstr ""
+
+#: fortran/primary.c:369
+#, no-c-format
+msgid "Illegal character in binary constant at %C"
+msgstr ""
+
+#: fortran/primary.c:371
+#, no-c-format
+msgid "Illegal character in octal constant at %C"
+msgstr ""
+
+#: fortran/primary.c:373
+#, no-c-format
+msgid "Illegal character in hexadecimal constant at %C"
+msgstr ""
+
+#: fortran/primary.c:401
+#, no-c-format
+msgid "Integer too big for integer kind %i at %C"
+msgstr ""
+
+#: fortran/primary.c:502
+#, no-c-format
+msgid "Missing exponent in real number at %C"
+msgstr ""
+
+#: fortran/primary.c:559
+#, no-c-format
+msgid "Real number at %C has a 'd' exponent and an explicit kind"
+msgstr ""
+
+#: fortran/primary.c:569
+#, no-c-format
+msgid "Real number at %C has a 'q' exponent and an explicit kind"
+msgstr ""
+
+#: fortran/primary.c:581
+#, no-c-format
+msgid "Invalid real kind %d at %C"
+msgstr ""
+
+#: fortran/primary.c:595
+#, no-c-format
+msgid "Real constant overflows its kind at %C"
+msgstr ""
+
+#: fortran/primary.c:600
+#, no-c-format
+msgid "Real constant underflows its kind at %C"
+msgstr ""
+
+#: fortran/primary.c:692
+#, no-c-format
+msgid "Syntax error in SUBSTRING specification at %C"
+msgstr ""
+
+#: fortran/primary.c:924
+#, no-c-format
+msgid "Invalid kind %d for CHARACTER constant at %C"
+msgstr ""
+
+#: fortran/primary.c:945
+#, no-c-format
+msgid "Unterminated character constant beginning at %C"
+msgstr ""
+
+#: fortran/primary.c:1012
+#, no-c-format
+msgid "Bad kind for logical constant at %C"
+msgstr ""
+
+#: fortran/primary.c:1047
+#, no-c-format
+msgid "Expected PARAMETER symbol in complex constant at %C"
+msgstr ""
+
+#: fortran/primary.c:1053
+#, no-c-format
+msgid "Numeric PARAMETER required in complex constant at %C"
+msgstr ""
+
+#: fortran/primary.c:1059
+#, no-c-format
+msgid "Scalar PARAMETER required in complex constant at %C"
+msgstr ""
+
+#: fortran/primary.c:1089
+#, no-c-format
+msgid "Error converting PARAMETER constant in complex constant at %C"
+msgstr ""
+
+#: fortran/primary.c:1216
+#, no-c-format
+msgid "Syntax error in COMPLEX constant at %C"
+msgstr ""
+
+#: fortran/primary.c:1382
+#, no-c-format
+msgid "Keyword '%s' at %C has already appeared in the current argument list"
+msgstr ""
+
+#: fortran/primary.c:1439
+#, no-c-format
+msgid "Expected alternate return label at %C"
+msgstr ""
+
+#: fortran/primary.c:1458
+#, no-c-format
+msgid "Missing keyword name in actual argument list at %C"
+msgstr ""
+
+#: fortran/primary.c:1494
+#, no-c-format
+msgid "Syntax error in argument list at %C"
+msgstr ""
+
+#: fortran/primary.c:1581
+#, no-c-format
+msgid "Expected structure component name at %C"
+msgstr ""
+
+#: fortran/primary.c:1810
+#, no-c-format
+msgid "Too many components in structure constructor at %C"
+msgstr ""
+
+#: fortran/primary.c:1825
+#, no-c-format
+msgid "Too few components in structure constructor at %C"
+msgstr ""
+
+#: fortran/primary.c:1843
+#, no-c-format
+msgid "Syntax error in structure constructor at %C"
+msgstr ""
+
+#: fortran/primary.c:1956
+#, no-c-format
+msgid "Unexpected use of subroutine name '%s' at %C"
+msgstr ""
+
+#: fortran/primary.c:1987
+#, no-c-format
+msgid "Statement function '%s' requires argument list at %C"
+msgstr ""
+
+#: fortran/primary.c:1990
+#, no-c-format
+msgid "Function '%s' requires an argument list at %C"
+msgstr ""
+
+#: fortran/primary.c:2144
+#, no-c-format
+msgid "Missing argument list in function '%s' at %C"
+msgstr ""
+
+#: fortran/primary.c:2172
+#, no-c-format
+msgid "Symbol at %C is not appropriate for an expression"
+msgstr ""
+
+#: fortran/primary.c:2242
+#, no-c-format
+msgid "Expected VARIABLE at %C"
+msgstr ""
+
+#: fortran/resolve.c:82
+#, no-c-format
+msgid ""
+"Alternate return specifier in elemental subroutine '%s' at %L is not allowed"
+msgstr ""
+
+#: fortran/resolve.c:86
+#, no-c-format
+msgid "Alternate return specifier in function '%s' at %L is not allowed"
+msgstr ""
+
+#: fortran/resolve.c:100
+#, no-c-format
+msgid "Dummy procedure '%s' of PURE procedure at %L must also be PURE"
+msgstr ""
+
+#: fortran/resolve.c:108
+#, no-c-format
+msgid "Dummy procedure at %L not allowed in ELEMENTAL procedure"
+msgstr ""
+
+#: fortran/resolve.c:162
+#, no-c-format
+msgid "Argument '%s' of pure function '%s' at %L must be INTENT(IN)"
+msgstr ""
+
+#: fortran/resolve.c:170
+#, no-c-format
+msgid ""
+"Argument '%s' of pure subroutine '%s' at %L must have its INTENT specified"
+msgstr ""
+
+#: fortran/resolve.c:181
+#, no-c-format
+msgid "Argument '%s' of elemental procedure at %L must be scalar"
+msgstr ""
+
+#: fortran/resolve.c:189
+#, no-c-format
+msgid ""
+"Argument '%s' of elemental procedure at %L cannot have the POINTER attribute"
+msgstr ""
+
+#: fortran/resolve.c:201
+#, no-c-format
+msgid "Argument '%s' of statement function at %L must be scalar"
+msgstr ""
+
+#: fortran/resolve.c:212
+#, no-c-format
+msgid ""
+"Character-valued argument '%s' of statement function at %L must has constant "
+"length"
+msgstr ""
+
+#: fortran/resolve.c:272
+#, no-c-format
+msgid "Contained function '%s' at %L has no IMPLICIT type"
+msgstr ""
+
+#: fortran/resolve.c:417
+#, no-c-format
+msgid "FUNCTION result %s can't be an array in FUNCTION %s at %L"
+msgstr ""
+
+#: fortran/resolve.c:421
+#, no-c-format
+msgid "ENTRY result %s can't be an array in FUNCTION %s at %L"
+msgstr ""
+
+#: fortran/resolve.c:428
+#, no-c-format
+msgid "FUNCTION result %s can't be a POINTER in FUNCTION %s at %L"
+msgstr ""
+
+#: fortran/resolve.c:432
+#, no-c-format
+msgid "ENTRY result %s can't be a POINTER in FUNCTION %s at %L"
+msgstr ""
+
+#: fortran/resolve.c:470
+#, no-c-format
+msgid "FUNCTION result %s can't be of type %s in FUNCTION %s at %L"
+msgstr ""
+
+#: fortran/resolve.c:475
+#, no-c-format
+msgid "ENTRY result %s can't be of type %s in FUNCTION %s at %L"
+msgstr ""
+
+#: fortran/resolve.c:690 fortran/resolve.c:3260 fortran/resolve.c:3911
+#, no-c-format
+msgid "Label %d referenced at %L is never defined"
+msgstr ""
+
+#: fortran/resolve.c:717
+#, no-c-format
+msgid "Statement function '%s' at %L is not allowed as an actual argument"
+msgstr ""
+
+#: fortran/resolve.c:740
+#, no-c-format
+msgid "Symbol '%s' at %L is ambiguous"
+msgstr ""
+
+#: fortran/resolve.c:839
+#, no-c-format
+msgid "Generic function '%s' at %L is not an intrinsic function"
+msgstr ""
+
+#: fortran/resolve.c:849
+#, no-c-format
+msgid ""
+"Generic function '%s' at %L is not consistent with a specific intrinsic "
+"interface"
+msgstr ""
+
+#: fortran/resolve.c:887
+#, no-c-format
+msgid ""
+"Function '%s' at %L is INTRINSIC but is not compatible with an intrinsic"
+msgstr ""
+
+#: fortran/resolve.c:933
+#, no-c-format
+msgid "Unable to resolve the specific function '%s' at %L"
+msgstr ""
+
+#: fortran/resolve.c:989 fortran/resolve.c:5012
+#, no-c-format
+msgid "Function '%s' at %L has no IMPLICIT type"
+msgstr ""
+
+#: fortran/resolve.c:1108
+#, no-c-format
+msgid "Function reference to '%s' at %L is inside a FORALL block"
+msgstr ""
+
+#: fortran/resolve.c:1114
+#, no-c-format
+msgid ""
+"Function reference to '%s' at %L is to a non-PURE procedure within a PURE "
+"procedure"
+msgstr ""
+
+#: fortran/resolve.c:1134
+#, no-c-format
+msgid "Subroutine call to '%s' in FORALL block at %L is not PURE"
+msgstr ""
+
+#: fortran/resolve.c:1137
+#, no-c-format
+msgid "Subroutine call to '%s' at %L is not PURE"
+msgstr ""
+
+#: fortran/resolve.c:1199
+#, no-c-format
+msgid "Generic subroutine '%s' at %L is not an intrinsic subroutine"
+msgstr ""
+
+#: fortran/resolve.c:1208
+#, no-c-format
+msgid ""
+"Generic subroutine '%s' at %L is not consistent with an intrinsic subroutine "
+"interface"
+msgstr ""
+
+#: fortran/resolve.c:1243
+#, no-c-format
+msgid ""
+"Subroutine '%s' at %L is INTRINSIC but is not compatible with an intrinsic"
+msgstr ""
+
+#: fortran/resolve.c:1286
+#, no-c-format
+msgid "Unable to resolve the specific subroutine '%s' at %L"
+msgstr ""
+
+#: fortran/resolve.c:1386
+#, no-c-format
+msgid "Shapes for operands at %L and %L are not conformable"
+msgstr ""
+
+#: fortran/resolve.c:1442
+#, c-format
+msgid "Operand of unary numeric operator '%s' at %%L is %s"
+msgstr ""
+
+#: fortran/resolve.c:1458
+#, c-format
+msgid "Operands of binary numeric operator '%s' at %%L are %s/%s"
+msgstr ""
+
+#: fortran/resolve.c:1472
+#, c-format
+msgid "Operands of string concatenation operator at %%L are %s/%s"
+msgstr ""
+
+#: fortran/resolve.c:1491
+#, c-format
+msgid "Operands of logical operator '%s' at %%L are %s/%s"
+msgstr ""
+
+#: fortran/resolve.c:1505
+#, c-format
+msgid "Operand of .NOT. operator at %%L is %s"
+msgstr ""
+
+#: fortran/resolve.c:1515
+msgid "COMPLEX quantities cannot be compared at %L"
+msgstr ""
+
+#: fortran/resolve.c:1541
+#, c-format
+msgid "Logicals at %%L must be compared with %s instead of %s"
+msgstr ""
+
+#: fortran/resolve.c:1546
+#, c-format
+msgid "Operands of comparison operator '%s' at %%L are %s/%s"
+msgstr ""
+
+#: fortran/resolve.c:1554
+#, c-format
+msgid "Operand of user operator '%s' at %%L is %s"
+msgstr ""
+
+#: fortran/resolve.c:1557
+#, c-format
+msgid "Operands of user operator '%s' at %%L are %s/%s"
+msgstr ""
+
+#: fortran/resolve.c:1625
+#, no-c-format
+msgid "Inconsistent ranks for operator at %L and %L"
+msgstr ""
+
+#: fortran/resolve.c:1747
+#, no-c-format
+msgid "Illegal stride of zero at %L"
+msgstr ""
+
+#: fortran/resolve.c:1768
+#, no-c-format
+msgid "Array reference at %L is out of bounds"
+msgstr ""
+
+#: fortran/resolve.c:1789
+#, no-c-format
+msgid "Rightmost upper bound of assumed size array section not specified at %L"
+msgstr ""
+
+#: fortran/resolve.c:1799
+#, no-c-format
+msgid "Rank mismatch in array reference at %L (%d/%d)"
+msgstr ""
+
+#: fortran/resolve.c:1827
+#, no-c-format
+msgid "Array index at %L must be scalar"
+msgstr ""
+
+#: fortran/resolve.c:1833
+#, no-c-format
+msgid "Array index at %L must be of INTEGER type"
+msgstr ""
+
+#: fortran/resolve.c:1839
+#, no-c-format
+msgid "Extension: REAL array index at %L"
+msgstr ""
+
+#: fortran/resolve.c:1868
+#, no-c-format
+msgid "Argument dim at %L must be scalar"
+msgstr ""
+
+#: fortran/resolve.c:1874
+#, no-c-format
+msgid "Argument dim at %L must be of INTEGER type"
+msgstr ""
+
+#: fortran/resolve.c:1978
+#, no-c-format
+msgid "Array index at %L is an array of rank %d"
+msgstr ""
+
+#: fortran/resolve.c:2016
+#, no-c-format
+msgid "Substring start index at %L must be of type INTEGER"
+msgstr ""
+
+#: fortran/resolve.c:2023
+#, no-c-format
+msgid "Substring start index at %L must be scalar"
+msgstr ""
+
+#: fortran/resolve.c:2030
+#, no-c-format
+msgid "Substring start index at %L is less than one"
+msgstr ""
+
+#: fortran/resolve.c:2043
+#, no-c-format
+msgid "Substring end index at %L must be of type INTEGER"
+msgstr ""
+
+#: fortran/resolve.c:2050
+#, no-c-format
+msgid "Substring end index at %L must be scalar"
+msgstr ""
+
+#: fortran/resolve.c:2058
+#, no-c-format
+msgid "Substring end index at %L is out of bounds"
+msgstr ""
+
+#: fortran/resolve.c:2132
+#, no-c-format
+msgid ""
+"Component to the right of a part reference with nonzero rank must not have "
+"the POINTER attribute at %L"
+msgstr ""
+
+#: fortran/resolve.c:2151
+#, no-c-format
+msgid ""
+"Two or more part references with nonzero rank must not be specified at %L"
+msgstr ""
+
+#: fortran/resolve.c:2377
+#, no-c-format
+msgid "%s at %L must be a scalar"
+msgstr ""
+
+#: fortran/resolve.c:2385
+#, no-c-format
+msgid "%s at %L must be INTEGER or REAL"
+msgstr ""
+
+#: fortran/resolve.c:2388
+#, no-c-format
+msgid "%s at %L must be INTEGER"
+msgstr ""
+
+#: fortran/resolve.c:2404
+#, no-c-format
+msgid "Obsolete: REAL DO loop iterator at %L"
+msgstr ""
+
+#: fortran/resolve.c:2413
+#, no-c-format
+msgid "Cannot assign to loop variable in PURE procedure at %L"
+msgstr ""
+
+#: fortran/resolve.c:2437
+#, no-c-format
+msgid "Step expression in DO loop at %L cannot be zero"
+msgstr ""
+
+#: fortran/resolve.c:2470
+#, no-c-format
+msgid "FORALL Iteration variable at %L must be INTEGER"
+msgstr ""
+
+#: fortran/resolve.c:2475
+#, no-c-format
+msgid "FORALL start expression at %L must be INTEGER"
+msgstr ""
+
+#: fortran/resolve.c:2482
+#, no-c-format
+msgid "FORALL end expression at %L must be INTEGER"
+msgstr ""
+
+#: fortran/resolve.c:2489
+#, no-c-format
+msgid "FORALL Stride expression at %L must be INTEGER"
+msgstr ""
+
+#: fortran/resolve.c:2563
+#, no-c-format
+msgid ""
+"Expression in DEALLOCATE statement at %L must be ALLOCATABLE or a POINTER"
+msgstr ""
+
+#: fortran/resolve.c:2631
+#, no-c-format
+msgid "Expression in ALLOCATE statement at %L must be ALLOCATABLE or a POINTER"
+msgstr ""
+
+#: fortran/resolve.c:2643
+#, no-c-format
+msgid "Array specification required in ALLOCATE statement at %L"
+msgstr ""
+
+#: fortran/resolve.c:2672
+#, no-c-format
+msgid "Bad array specification in ALLOCATE statement at %L"
+msgstr ""
+
+#. The cases overlap, or they are the same
+#. element in the list. Either way, we must
+#. issue an error and get the next case from P.
+#. FIXME: Sort P and Q by line number.
+#: fortran/resolve.c:2828
+#, no-c-format
+msgid "CASE label at %L overlaps with CASE label at %L"
+msgstr ""
+
+#: fortran/resolve.c:2879
+#, no-c-format
+msgid "Expression in CASE statement at %L must be of type %s"
+msgstr ""
+
+#: fortran/resolve.c:2890
+#, no-c-format
+msgid "Expression in CASE statement at %L must be kind %d"
+msgstr ""
+
+#: fortran/resolve.c:2902
+#, no-c-format
+msgid "Expression in CASE statement at %L must be scalar"
+msgstr ""
+
+#: fortran/resolve.c:2948
+#, no-c-format
+msgid ""
+"Selection expression in computed GOTO statement at %L must be a scalar "
+"integer expression"
+msgstr ""
+
+#: fortran/resolve.c:2966
+#, no-c-format
+msgid "Argument of SELECT statement at %L cannot be %s"
+msgstr ""
+
+#: fortran/resolve.c:2975
+#, no-c-format
+msgid "Argument of SELECT statement at %L must be a scalar expression"
+msgstr ""
+
+#: fortran/resolve.c:3039
+#, no-c-format
+msgid ""
+"The DEFAULT CASE at %L cannot be followed by a second DEFAULT CASE at %L"
+msgstr ""
+
+#: fortran/resolve.c:3066
+#, no-c-format
+msgid "Logical range in CASE statement at %L is not allowed"
+msgstr ""
+
+#: fortran/resolve.c:3077
+#, no-c-format
+msgid "Range specification at %L can never be matched"
+msgstr ""
+
+#: fortran/resolve.c:3180
+#, no-c-format
+msgid "Logical SELECT CASE block at %L has more that two cases"
+msgstr ""
+
+#: fortran/resolve.c:3217
+#, no-c-format
+msgid "Data transfer element at %L cannot have POINTER components"
+msgstr ""
+
+#: fortran/resolve.c:3224
+#, no-c-format
+msgid "Data transfer element at %L cannot have PRIVATE components"
+msgstr ""
+
+#: fortran/resolve.c:3233
+#, no-c-format
+msgid ""
+"Data transfer element at %L cannot be a full reference to an assumed-size "
+"array"
+msgstr ""
+
+#: fortran/resolve.c:3267
+#, no-c-format
+msgid ""
+"Statement at %L is not a valid branch target statement for the branch "
+"statement at %L"
+msgstr ""
+
+#: fortran/resolve.c:3276
+#, no-c-format
+msgid "Branch at %L causes an infinite loop"
+msgstr ""
+
+#. still nothing, so illegal.
+#: fortran/resolve.c:3306
+#, no-c-format
+msgid "Label at %L is not in the same block as the GOTO statement at %L"
+msgstr ""
+
+#: fortran/resolve.c:3322
+#, no-c-format
+msgid "Obsolete: GOTO at %L jumps to END of construct at %L"
+msgstr ""
+
+#: fortran/resolve.c:3396
+#, no-c-format
+msgid "WHERE mask at %L has inconsistent shape"
+msgstr ""
+
+#: fortran/resolve.c:3412
+#, no-c-format
+msgid "WHERE assignment target at %L has inconsistent shape"
+msgstr ""
+
+#: fortran/resolve.c:3422 fortran/resolve.c:3621
+#, no-c-format
+msgid "Unsupported statement inside WHERE at %L"
+msgstr ""
+
+#: fortran/resolve.c:3498
+#, no-c-format
+msgid "expresion reference type error at %L"
+msgstr ""
+
+#: fortran/resolve.c:3530
+#, no-c-format
+msgid "Unsupported statement while finding forall index in expression"
+msgstr ""
+
+#: fortran/resolve.c:3577
+#, no-c-format
+msgid "Assignment to a FORALL index variable at %L"
+msgstr ""
+
+#: fortran/resolve.c:3585
+#, no-c-format
+msgid ""
+"The FORALL with index '%s' cause more than one assignment to this object at %"
+"L"
+msgstr ""
+
+#: fortran/resolve.c:3712
+#, no-c-format
+msgid "An outer FORALL construct already has an index with this name %L"
+msgstr ""
+
+#: fortran/resolve.c:3724 fortran/resolve.c:3727 fortran/resolve.c:3730
+#, no-c-format
+msgid ""
+"A FORALL index must not appear in a limit or stride expression in the same "
+"FORALL at %L"
+msgstr ""
+
+#: fortran/resolve.c:3773
+#, no-c-format
+msgid "ELSE IF clause at %L requires a scalar LOGICAL expression"
+msgstr ""
+
+#: fortran/resolve.c:3783
+#, no-c-format
+msgid "WHERE/ELSEWHERE clause at %L requires a LOGICAL array"
+msgstr ""
+
+#: fortran/resolve.c:3861
+#, no-c-format
+msgid "ASSIGNED GOTO statement at %L requires an INTEGER variable"
+msgstr ""
+
+#: fortran/resolve.c:3864
+#, no-c-format
+msgid "Variable '%s' has not been assigned a target label at %L"
+msgstr ""
+
+#: fortran/resolve.c:3874
+#, no-c-format
+msgid "Alternate RETURN statement at %L requires an INTEGER return specifier"
+msgstr ""
+
+#: fortran/resolve.c:3890
+#, no-c-format
+msgid "Cannot assign to variable '%s' in PURE procedure at %L"
+msgstr ""
+
+#: fortran/resolve.c:3899
+#, no-c-format
+msgid ""
+"Right side of assignment at %L is a derived type containing a POINTER in a "
+"PURE procedure"
+msgstr ""
+
+#: fortran/resolve.c:3919
+#, no-c-format
+msgid "ASSIGN statement at %L requires a scalar default INTEGER variable"
+msgstr ""
+
+#: fortran/resolve.c:3934
+#, no-c-format
+msgid "Arithmetic IF statement at %L requires a numeric expression"
+msgstr ""
+
+#: fortran/resolve.c:3946
+#, no-c-format
+msgid "IF clause at %L requires a scalar LOGICAL expression"
+msgstr ""
+
+#: fortran/resolve.c:3972
+#, no-c-format
+msgid ""
+"Exit condition of DO WHILE loop at %L must be a scalar LOGICAL expression"
+msgstr ""
+
+#: fortran/resolve.c:3979
+#, no-c-format
+msgid "STAT tag in ALLOCATE statement at %L must be of type INTEGER"
+msgstr ""
+
+#: fortran/resolve.c:3991
+#, no-c-format
+msgid "STAT tag in DEALLOCATE statement at %L must be of type INTEGER"
+msgstr ""
+
+#: fortran/resolve.c:4057
+#, no-c-format
+msgid "FORALL mask clause at %L requires a LOGICAL expression"
+msgstr ""
+
+#: fortran/resolve.c:4177
+#, no-c-format
+msgid "Assumed size array at %L must be a dummy argument"
+msgstr ""
+
+#: fortran/resolve.c:4180
+#, no-c-format
+msgid "Assumed shape array at %L must be a dummy argument"
+msgstr ""
+
+#: fortran/resolve.c:4190
+#, no-c-format
+msgid "Parameter array '%s' at %L cannot be automatic or assumed shape"
+msgstr ""
+
+#: fortran/resolve.c:4202
+#, no-c-format
+msgid ""
+"Entity with assumed character length at %L must be a dummy argument or a "
+"PARAMETER"
+msgstr ""
+
+#: fortran/resolve.c:4214
+#, no-c-format
+msgid ""
+"Implicitly typed PARAMETER '%s' at %L doesn't match a later IMPLICIT type"
+msgstr ""
+
+#: fortran/resolve.c:4224
+#, no-c-format
+msgid "Incompatible derived type in PARAMETER at %L"
+msgstr ""
+
+#: fortran/resolve.c:4235
+#, no-c-format
+msgid "Symbol at %L is not a DUMMY variable"
+msgstr ""
+
+#: fortran/resolve.c:4246
+#, no-c-format
+msgid ""
+"Character-valued statement function '%s' at %L must have constant length"
+msgstr ""
+
+#: fortran/resolve.c:4263
+#, no-c-format
+msgid "Allocatable array at %L must have a deferred shape"
+msgstr ""
+
+#: fortran/resolve.c:4266
+#, no-c-format
+msgid "Object at %L may not be ALLOCATABLE"
+msgstr ""
+
+#: fortran/resolve.c:4273
+#, no-c-format
+msgid "Pointer to array at %L must have a deferred shape"
+msgstr ""
+
+#: fortran/resolve.c:4284
+#, no-c-format
+msgid "Array at %L cannot have a deferred shape"
+msgstr ""
+
+#: fortran/resolve.c:4297
+msgid "Allocatable"
+msgstr ""
+
+#: fortran/resolve.c:4299
+msgid "External"
+msgstr ""
+
+#: fortran/resolve.c:4301
+msgid "Dummy"
+msgstr ""
+
+#: fortran/resolve.c:4303
+msgid "Intrinsic"
+msgstr ""
+
+#: fortran/resolve.c:4305
+msgid "Function Result"
+msgstr ""
+
+#: fortran/resolve.c:4316
+msgid "Automatic array"
+msgstr ""
+
+#: fortran/resolve.c:4325
+#, no-c-format
+msgid "%s '%s' at %L cannot have an initializer"
+msgstr ""
+
+#: fortran/resolve.c:4343
+#, no-c-format
+msgid "PRIVATE symbol '%s' cannot be member of PUBLIC namelist at %L"
+msgstr ""
+
+#: fortran/resolve.c:4359
+#, no-c-format
+msgid "Intrinsic at %L does not exist"
+msgstr ""
+
+#: fortran/resolve.c:4471
+#, no-c-format
+msgid "Nonconstant array section at %L in DATA statement"
+msgstr ""
+
+#: fortran/resolve.c:4484
+#, no-c-format
+msgid "DATA statement at %L has more variables than values"
+msgstr ""
+
+#: fortran/resolve.c:4682
+#, no-c-format
+msgid "DATA statement at %L has more values than variables"
+msgstr ""
+
+#: fortran/resolve.c:4764
+#, no-c-format
+msgid "Label %d at %L defined but not used"
+msgstr ""
+
+#: fortran/resolve.c:4769
+#, no-c-format
+msgid "Label %d at %L defined but cannot be used"
+msgstr ""
+
+#: fortran/resolve.c:4794
+#, no-c-format
+msgid ""
+"Derived type variable '%s' at %L must have SEQUENCE attribute to be an "
+"EQUIVALENCE object"
+msgstr ""
+
+#: fortran/resolve.c:4809
+#, no-c-format
+msgid ""
+"Derived type variable '%s' at %L has pointer componet(s) cannot be an "
+"EQUIVALENCE object"
+msgstr ""
+
+#: fortran/resolve.c:4894
+#, no-c-format
+msgid "Syntax error in EQUIVALENCE statement at %L"
+msgstr ""
+
+#: fortran/resolve.c:4908
+#, no-c-format
+msgid "Dummy argument '%s' at %L cannot be an EQUIVALENCE object"
+msgstr ""
+
+#: fortran/resolve.c:4916
+#, no-c-format
+msgid "Allocatable array '%s' at %L cannot be an EQUIVALENCE object"
+msgstr ""
+
+#: fortran/resolve.c:4924
+#, no-c-format
+msgid "Pointer '%s' at %L cannot be an EQUIVALENCE object"
+msgstr ""
+
+#: fortran/resolve.c:4933
+#, no-c-format
+msgid "Entity '%s' at %L cannot be an EQUIVALENCE object"
+msgstr ""
+
+#: fortran/resolve.c:4941
+#, no-c-format
+msgid "Named constant '%s' at %L cannot be an EQUIVALENCE object"
+msgstr ""
+
+#: fortran/resolve.c:4957
+#, no-c-format
+msgid ""
+"Array '%s' at %L with non-constant bounds cannot be an EQUIVALENCE object"
+msgstr ""
+
+#: fortran/resolve.c:4968
+#, no-c-format
+msgid "Structure component '%s' at %L cannot be an EQUIVALENCE object"
+msgstr ""
+
+#: fortran/resolve.c:4979
+#, no-c-format
+msgid "Substring at %L has length zero"
+msgstr ""
+
+#: fortran/resolve.c:5025
+#, no-c-format
+msgid "ENTRY '%s' at %L has no IMPLICIT type"
+msgstr ""
+
+#: fortran/resolve.c:5061
+#, no-c-format
+msgid "Contained procedure '%s' at %L of a PURE procedure must also be PURE"
+msgstr ""
+
+#: fortran/scanner.c:924
+#, no-c-format
+msgid "%s:%d: file %s left but not entered"
+msgstr ""
+
+#: fortran/scanner.c:947
+#, no-c-format
+msgid "%s:%d: Illegal preprocessor directive"
+msgstr ""
+
+#: fortran/scanner.c:1022
+#, no-c-format
+msgid "File '%s' is being included recursively"
+msgstr ""
+
+#: fortran/scanner.c:1031
+#, no-c-format
+msgid "Can't open file '%s'"
+msgstr ""
+
+#: fortran/scanner.c:1040
+#, no-c-format
+msgid "Can't open included file '%s'"
+msgstr ""
+
+#: fortran/scanner.c:1129
+#, c-format
+msgid "%s:%3d %s\n"
+msgstr ""
+
+#: fortran/simplify.c:101
+#, no-c-format
+msgid "Result of %s overflows its kind at %L"
+msgstr ""
+
+#: fortran/simplify.c:120
+#, no-c-format
+msgid "KIND parameter of %s at %L must be an initialization expression"
+msgstr ""
+
+#: fortran/simplify.c:130
+#, no-c-format
+msgid "Invalid KIND parameter of %s at %L"
+msgstr ""
+
+#: fortran/simplify.c:227
+#, no-c-format
+msgid ""
+"Extended ASCII not implemented: argument of ACHAR at %L must be between 0 "
+"and 127"
+msgstr ""
+
+#: fortran/simplify.c:254
+#, no-c-format
+msgid "Argument of ACOS at %L must be between -1 and 1"
+msgstr ""
+
+#: fortran/simplify.c:276
+#, no-c-format
+msgid "Argument of ACOSH at %L must not be less than 1"
+msgstr ""
+
+#: fortran/simplify.c:477
+#, no-c-format
+msgid "Argument of ASIN at %L must be between -1 and 1"
+msgstr ""
+
+#: fortran/simplify.c:533
+#, no-c-format
+msgid "Argument of ATANH at %L must be inside the range -1 to 1"
+msgstr ""
+
+#: fortran/simplify.c:559
+#, no-c-format
+msgid ""
+"If first argument of ATAN2 %L is zero, then the second argument must not be "
+"zero"
+msgstr ""
+
+#: fortran/simplify.c:641
+#, no-c-format
+msgid "Bad character in CHAR function at %L"
+msgstr ""
+
+#: fortran/simplify.c:1139
+#, no-c-format
+msgid "Argument of IACHAR at %L must be of length one"
+msgstr ""
+
+#: fortran/simplify.c:1179
+#, no-c-format
+msgid "Invalid second argument of IBCLR at %L"
+msgstr ""
+
+#: fortran/simplify.c:1187
+#, no-c-format
+msgid "Second argument of IBCLR exceeds bit size at %L"
+msgstr ""
+
+#: fortran/simplify.c:1214
+#, no-c-format
+msgid "Invalid second argument of IBITS at %L"
+msgstr ""
+
+#: fortran/simplify.c:1220
+#, no-c-format
+msgid "Invalid third argument of IBITS at %L"
+msgstr ""
+
+#: fortran/simplify.c:1231
+#, no-c-format
+msgid "Sum of second and third arguments of IBITS exceeds bit size at %L"
+msgstr ""
+
+#: fortran/simplify.c:1279
+#, no-c-format
+msgid "Invalid second argument of IBSET at %L"
+msgstr ""
+
+#: fortran/simplify.c:1287
+#, no-c-format
+msgid "Second argument of IBSET exceeds bit size at %L"
+msgstr ""
+
+#: fortran/simplify.c:1310
+#, no-c-format
+msgid "Argument of ICHAR at %L must be of length one"
+msgstr ""
+
+#: fortran/simplify.c:1318
+#, no-c-format
+msgid "Argument of ICHAR at %L out of range of this processor"
+msgstr ""
+
+#: fortran/simplify.c:1526
+#, no-c-format
+msgid "Argument of INT at %L is not a valid type"
+msgstr ""
+
+#: fortran/simplify.c:1603
+#, no-c-format
+msgid "Invalid second argument of ISHFT at %L"
+msgstr ""
+
+#: fortran/simplify.c:1619
+#, no-c-format
+msgid "Magnitude of second argument of ISHFT exceeds bit size at %L"
+msgstr ""
+
+#: fortran/simplify.c:1683
+#, no-c-format
+msgid "Invalid second argument of ISHFTC at %L"
+msgstr ""
+
+#: fortran/simplify.c:1693
+#, no-c-format
+msgid "Invalid third argument of ISHFTC at %L"
+msgstr ""
+
+#: fortran/simplify.c:1708
+#, no-c-format
+msgid "Magnitude of second argument of ISHFTC exceeds third argument at %L"
+msgstr ""
+
+#: fortran/simplify.c:1778
+#, no-c-format
+msgid "Argument of KIND at %L is a DERIVED type"
+msgstr ""
+
+#: fortran/simplify.c:1849
+#, no-c-format
+msgid "DIM argument at %L is out of bounds"
+msgstr ""
+
+#: fortran/simplify.c:1979
+#, no-c-format
+msgid "Argument of LOG at %L cannot be less than or equal to zero"
+msgstr ""
+
+#: fortran/simplify.c:1992
+#, no-c-format
+msgid "Complex argument of LOG at %L cannot be zero"
+msgstr ""
+
+#: fortran/simplify.c:2036
+#, no-c-format
+msgid "Argument of LOG10 at %L cannot be less than or equal to zero"
+msgstr ""
+
+#. Result is processor-dependent.
+#: fortran/simplify.c:2211
+#, no-c-format
+msgid "Second argument MOD at %L is zero"
+msgstr ""
+
+#. Result is processor-dependent.
+#: fortran/simplify.c:2222
+#, no-c-format
+msgid "Second argument of MOD at %L is zero"
+msgstr ""
+
+#. Result is processor-dependent. This processor just opts
+#. to not handle it at all.
+#. Result is processor-dependent.
+#: fortran/simplify.c:2268 fortran/simplify.c:2280
+#, no-c-format
+msgid "Second argument of MODULO at %L is zero"
+msgstr ""
+
+#: fortran/simplify.c:2337
+#, no-c-format
+msgid "Second argument of NEAREST at %L may not be zero"
+msgstr ""
+
+#: fortran/simplify.c:2605
+#, no-c-format
+msgid "Invalid second argument of REPEAT at %L"
+msgstr ""
+
+#: fortran/simplify.c:2679
+#, no-c-format
+msgid "Integer too large in shape specification at %L"
+msgstr ""
+
+#: fortran/simplify.c:2689
+#, no-c-format
+msgid "Too many dimensions in shape specification for RESHAPE at %L"
+msgstr ""
+
+#: fortran/simplify.c:2697
+#, no-c-format
+msgid "Shape specification at %L cannot be negative"
+msgstr ""
+
+#: fortran/simplify.c:2707
+#, no-c-format
+msgid "Shape specification at %L cannot be the null array"
+msgstr ""
+
+#: fortran/simplify.c:2731
+#, no-c-format
+msgid ""
+"ORDER parameter of RESHAPE at %L is not the same size as SHAPE parameter"
+msgstr ""
+
+#: fortran/simplify.c:2738
+#, no-c-format
+msgid "Error in ORDER parameter of RESHAPE at %L"
+msgstr ""
+
+#: fortran/simplify.c:2748
+#, no-c-format
+msgid "ORDER parameter of RESHAPE at %L is out of range"
+msgstr ""
+
+#: fortran/simplify.c:2757
+#, no-c-format
+msgid "Invalid permutation in ORDER parameter at %L"
+msgstr ""
+
+#: fortran/simplify.c:2814
+#, no-c-format
+msgid "PAD parameter required for short SOURCE parameter at %L"
+msgstr ""
+
+#: fortran/simplify.c:2948
+#, no-c-format
+msgid "Result of SCALE overflows its kind at %L"
+msgstr ""
+
+#: fortran/simplify.c:3529
+#, no-c-format
+msgid "Argument of SQRT at %L has a negative value"
+msgstr ""
+
+#: fortran/symbol.c:111
+#, no-c-format
+msgid "Duplicate IMPLICIT NONE statement at %C"
+msgstr ""
+
+#: fortran/symbol.c:151
+#, no-c-format
+msgid "Letter '%c' already set in IMPLICIT statement at %C"
+msgstr ""
+
+#: fortran/symbol.c:173
+#, no-c-format
+msgid "Cannot specify IMPLICIT at %C after IMPLICIT NONE"
+msgstr ""
+
+#: fortran/symbol.c:184
+#, no-c-format
+msgid "Letter %c already has an IMPLICIT type at %C"
+msgstr ""
+
+#: fortran/symbol.c:232
+#, no-c-format
+msgid "Symbol '%s' at %L has no IMPLICIT type"
+msgstr ""
+
+#: fortran/symbol.c:300
+#, no-c-format
+msgid "%s attribute not allowed in BLOCK DATA program unit at %L"
+msgstr ""
+
+#: fortran/symbol.c:448 fortran/symbol.c:878
+#, no-c-format
+msgid "%s attribute conflicts with %s attribute at %L"
+msgstr ""
+
+#: fortran/symbol.c:451
+#, no-c-format
+msgid "%s attribute conflicts with %s attribute in '%s' at %L"
+msgstr ""
+
+#: fortran/symbol.c:493
+#, no-c-format
+msgid "Cannot change attributes of USE-associated symbol at %L"
+msgstr ""
+
+#: fortran/symbol.c:496
+#, no-c-format
+msgid "Cannot change attributes of USE-associated symbol %s at %L"
+msgstr ""
+
+#: fortran/symbol.c:518
+#, no-c-format
+msgid "Cannot change attributes of symbol at %L after it has been used"
+msgstr ""
+
+#: fortran/symbol.c:534
+#, no-c-format
+msgid "Duplicate %s attribute specified at %L"
+msgstr ""
+
+#: fortran/symbol.c:664
+#, no-c-format
+msgid "SAVE attribute at %L cannot be specified in a PURE procedure"
+msgstr ""
+
+#: fortran/symbol.c:908
+#, no-c-format
+msgid "%s procedure at %L is already declared as %s procedure"
+msgstr ""
+
+#: fortran/symbol.c:943
+#, no-c-format
+msgid "INTENT (%s) conflicts with INTENT(%s) at %L"
+msgstr ""
+
+#: fortran/symbol.c:966
+#, no-c-format
+msgid "ACCESS specification at %L was already specified"
+msgstr ""
+
+#: fortran/symbol.c:986
+#, no-c-format
+msgid "Symbol '%s' at %L already has an explicit interface"
+msgstr ""
+
+#: fortran/symbol.c:1014
+#, no-c-format
+msgid "Symbol '%s' at %L already has basic type of %s"
+msgstr ""
+
+#: fortran/symbol.c:1026
+#, no-c-format
+msgid "Symbol '%s' at %L cannot have a type"
+msgstr ""
+
+#: fortran/symbol.c:1159
+#, no-c-format
+msgid "Component '%s' at %C already declared at %L"
+msgstr ""
+
+#: fortran/symbol.c:1237
+#, no-c-format
+msgid "Symbol '%s' at %C is ambiguous"
+msgstr ""
+
+#: fortran/symbol.c:1277
+#, no-c-format
+msgid "Derived type '%s' at %C is being used before it is defined"
+msgstr ""
+
+#: fortran/symbol.c:1305
+#, no-c-format
+msgid "'%s' at %C is not a member of the '%s' structure"
+msgstr ""
+
+#: fortran/symbol.c:1311
+#, no-c-format
+msgid "Component '%s' at %C is a PRIVATE component of '%s'"
+msgstr ""
+
+#: fortran/symbol.c:1451
+#, no-c-format
+msgid "Duplicate statement label %d at %L and %L"
+msgstr ""
+
+#: fortran/symbol.c:1461
+#, no-c-format
+msgid "Label %d at %C already referenced as branch target"
+msgstr ""
+
+#: fortran/symbol.c:1470
+#, no-c-format
+msgid "Label %d at %C already referenced as a format label"
+msgstr ""
+
+#: fortran/symbol.c:1512
+#, no-c-format
+msgid "Label %d at %C previously used as a FORMAT label"
+msgstr ""
+
+#: fortran/symbol.c:1520
+#, no-c-format
+msgid "Label %d at %C previously used as branch target"
+msgstr ""
+
+#: fortran/symbol.c:1773
+#, no-c-format
+msgid "Name '%s' at %C is an ambiguous reference to '%s' from module '%s'"
+msgstr ""
+
+#: fortran/symbol.c:1776
+#, no-c-format
+msgid ""
+"Name '%s' at %C is an ambiguous reference to '%s' from current program unit"
+msgstr ""
+
+#. Symbol is from another namespace.
+#: fortran/symbol.c:1913
+#, no-c-format
+msgid "Symbol '%s' at %C has already been host associated"
+msgstr ""
+
+#: fortran/trans-common.c:330
+#, no-c-format
+msgid "Named COMMON block '%s' at %L shall be of the same size"
+msgstr ""
+
+#: fortran/trans-common.c:593
+#, no-c-format
+msgid "Bad array reference at %L"
+msgstr ""
+
+#: fortran/trans-common.c:601
+#, no-c-format
+msgid "Illegal reference type at %L as EQUIVALENCE object"
+msgstr ""
+
+#: fortran/trans-common.c:641
+#, no-c-format
+msgid "Inconsistent equivalence rules involving '%s' at %L and '%s' at %L"
+msgstr ""
+
+#. Aligning this field would misalign a previous field.
+#: fortran/trans-common.c:763
+#, no-c-format
+msgid ""
+"The equivalence set for variable '%s' declared at %L violates alignment "
+"requirents"
+msgstr ""
+
+#: fortran/trans-common.c:828
+#, no-c-format
+msgid "Equivalence for '%s' does not match ordering of COMMON '%s' at %L"
+msgstr ""
+
+#: fortran/trans-common.c:843
+#, no-c-format
+msgid ""
+"The equivalence set for '%s' cause an invalid extension to COMMON '%s' at %L"
+msgstr ""
+
+#. The required offset conflicts with previous alignment
+#. requirements. Insert padding immediately before this
+#. segment.
+#: fortran/trans-common.c:854
+#, no-c-format
+msgid "Padding of %d bytes required before '%s' in COMMON '%s' at %L"
+msgstr ""
+
+#: fortran/trans-common.c:880
+#, no-c-format
+msgid "COMMON '%s' at %L requires %d bytes of padding at start"
+msgstr ""
+
+#: fortran/trans-const.c:158
+msgid "Array bound mismatch"
+msgstr ""
+
+#: fortran/trans-const.c:161
+msgid "Array reference out of bounds"
+msgstr ""
+
+#: fortran/trans-const.c:164
+msgid "Incorrect function return value"
+msgstr ""
+
+#: fortran/trans-decl.c:390
+#, no-c-format
+msgid "storage size not known"
+msgstr ""
+
+#: fortran/trans-decl.c:397
+#, no-c-format
+msgid "storage size not constant"
+msgstr ""
+
+#: fortran/trans-io.c:466
+msgid "Assigned label is not a format label"
+msgstr ""
+
+#: fortran/trans-io.c:866
+#, no-c-format
+msgid "INQUIRE statement at %L cannot contain both FILE and UNIT specifiers."
+msgstr ""
+
+#: fortran/trans-stmt.c:160
+msgid "Assigned label is not a target label"
+msgstr ""
+
+#. Check the label list.
+#: fortran/trans-stmt.c:176
+msgid "Assigned label is not in the list"
+msgstr ""
+
+#: fortran/trans-stmt.c:262
+#, no-c-format
+msgid "An alternate return at %L without a * dummy argument"
+msgstr ""
+
#. FIXME: i18n bug here. Order of prints should not be
#. fixed.
#: java/gjavah.c:910
@@ -3663,7 +8538,7 @@ msgstr ""
msgid "error while parsing constant pool\n"
msgstr ""
-#: java/jcf-dump.c:841 java/jcf-parse.c:749
+#: java/jcf-dump.c:841 java/jcf-parse.c:753
#, gcc-internal-format
msgid "error in constant pool entry #%d\n"
msgstr ""
@@ -3837,243 +8712,88 @@ msgstr ""
msgid "using both @FILE with multiple files not implemented"
msgstr ""
-#: java/jvspec.c:534
+#: java/jvspec.c:546
#, c-format
msgid "cannot specify 'main' class when not linking"
msgstr ""
-#: java/parse-scan.y:878 java/parse.y:959
-#: java/parse.y:1300 java/parse.y:1361
-#: java/parse.y:1569 java/parse.y:1792
-#: java/parse.y:1801 java/parse.y:1812
-#: java/parse.y:1823 java/parse.y:1835
-#: java/parse.y:1850 java/parse.y:1867
-#: java/parse.y:1869 java/parse.y:1950
-#: java/parse.y:2127 java/parse.y:2196
-#: java/parse.y:2360 java/parse.y:2373
-#: java/parse.y:2380 java/parse.y:2387
-#: java/parse.y:2398 java/parse.y:2400
-#: java/parse.y:2438 java/parse.y:2440
-#: java/parse.y:2442 java/parse.y:2463
-#: java/parse.y:2465 java/parse.y:2467
-#: java/parse.y:2483 java/parse.y:2485
-#: java/parse.y:2506 java/parse.y:2508
-#: java/parse.y:2510 java/parse.y:2538
-#: java/parse.y:2540 java/parse.y:2542
-#: java/parse.y:2544 java/parse.y:2562
-#: java/parse.y:2564 java/parse.y:2575
-#: java/parse.y:2586 java/parse.y:2597
-#: java/parse.y:2608 java/parse.y:2619
-#: java/parse.y:2632 java/parse.y:2636
-#: java/parse.y:2638 java/parse.y:2651
-msgid "Missing term"
-msgstr ""
-
-#: java/parse-scan.y:880 java/parse.y:739
-#: java/parse.y:777 java/parse.y:802
-#: java/parse.y:980 java/parse.y:1335
-#: java/parse.y:1545 java/parse.y:1547
-#: java/parse.y:1777 java/parse.y:1803
-#: java/parse.y:1814 java/parse.y:1825
-#: java/parse.y:1837 java/parse.y:1852
-msgid "';' expected"
-msgstr ""
-
-#: java/parse-scan.y:1371
-#: java/parse.y:16425
-msgid "parse error"
-msgstr ""
-
-#: java/parse-scan.y:1373
-#: java/parse.y:16427
-msgid "parse error; also virtual memory exhausted"
-msgstr ""
-
-#: java/parse-scan.y:1375
-#: java/parse.y:16429
-msgid "parse error: cannot back up"
-msgstr ""
-
-#: java/parse.y:737 java/parse.y:775
-msgid "Missing name"
-msgstr ""
-
-#: java/parse.y:800
-msgid "'*' expected"
-msgstr ""
-
-#: java/parse.y:814
-msgid "Class or interface declaration expected"
-msgstr ""
-
-#: java/parse.y:851 java/parse.y:853
-msgid "Missing class name"
-msgstr ""
-
-#: java/parse.y:856 java/parse.y:860
-#: java/parse.y:868 java/parse.y:1020
-#: java/parse.y:1281 java/parse.y:1283
-#: java/parse.y:1612 java/parse.y:1863
-#: java/parse.y:1895 java/parse.y:1957
-msgid "'{' expected"
-msgstr ""
-
-#: java/parse.y:870
-msgid "Missing super class name"
-msgstr ""
-
-#: java/parse.y:880 java/parse.y:896
-msgid "Missing interface name"
-msgstr ""
-
-#: java/parse.y:974
-msgid "Missing variable initializer"
-msgstr ""
-
-#: java/parse.y:991
-msgid "Invalid declaration"
-msgstr ""
-
-#: java/parse.y:994 java/parse.y:1079
-#: java/parse.y:2142 java/parse.y:2171
-#: java/parse.y:2193 java/parse.y:2197
-#: java/parse.y:2232 java/parse.y:2311
-#: java/parse.y:2321 java/parse.y:2331
-msgid "']' expected"
-msgstr ""
-
-#: java/parse.y:998
-msgid "Unbalanced ']'"
-msgstr ""
-
-#: java/parse.y:1034
-msgid "Invalid method declaration, method name required"
-msgstr ""
-
-#: java/parse.y:1039 java/parse.y:1044
-#: java/parse.y:1049 java/parse.y:2045
-msgid "Identifier expected"
-msgstr ""
-
-#: java/parse.y:1054 java/parse.y:4721
-#, gcc-internal-format
-msgid "Invalid method declaration, return type required"
-msgstr ""
-
-#: java/parse.y:1077 java/parse.y:1525
-#: java/parse.y:1532 java/parse.y:1541
-#: java/parse.y:1543 java/parse.y:1571
-#: java/parse.y:1680 java/parse.y:1987
-#: java/parse.y:2040
-msgid "')' expected"
-msgstr ""
-
-#: java/parse.y:1093
-msgid "Missing formal parameter term"
-msgstr ""
-
-#: java/parse.y:1108 java/parse.y:1113
-msgid "Missing identifier"
-msgstr ""
-
-#: java/parse.y:1133 java/parse.y:1142
-msgid "Missing class type term"
-msgstr ""
-
-#: java/parse.y:1298
-msgid "Invalid interface type"
-msgstr ""
-
-#: java/parse.y:1485 java/parse.y:1659
-#: java/parse.y:1661
-msgid "':' expected"
-msgstr ""
-
-#: java/parse.y:1511 java/parse.y:1516
-#: java/parse.y:1521
-msgid "Invalid expression statement"
-msgstr ""
-
-#: java/parse.y:1539 java/parse.y:1567
-#: java/parse.y:1608 java/parse.y:1676
-#: java/parse.y:1744 java/parse.y:1865
-#: java/parse.y:1943 java/parse.y:2034
-#: java/parse.y:2036 java/parse.y:2049
-#: java/parse.y:2292 java/parse.y:2294
-msgid "'(' expected"
+#: config/i386/sco5.h:189
+msgid "-pg not supported on this platform"
msgstr ""
-#: java/parse.y:1610
-msgid "Missing term or ')'"
+#: config/i386/sco5.h:190
+msgid "-p and -pp specified - pick one"
msgstr ""
-#: java/parse.y:1657
-msgid "Missing or invalid constant expression"
+#: config/i386/sco5.h:264
+msgid "-G and -static are mutually exclusive"
msgstr ""
-#: java/parse.y:1678
-msgid "Missing term and ')' expected"
+#: config/darwin.h:239
+msgid "-current_version only allowed with -dynamiclib"
msgstr ""
-#: java/parse.y:1717
-msgid "Invalid control expression"
+#: config/darwin.h:241
+msgid "-install_name only allowed with -dynamiclib"
msgstr ""
-#: java/parse.y:1719 java/parse.y:1721
-msgid "Invalid update expression"
+#: config/darwin.h:246
+msgid "-bundle not allowed with -dynamiclib"
msgstr ""
-#: java/parse.y:1746
-msgid "Invalid init statement"
+#: config/darwin.h:247
+msgid "-bundle_loader not allowed with -dynamiclib"
msgstr ""
-#: java/parse.y:1946
-msgid "Missing term or ')' expected"
+#: config/darwin.h:248
+msgid "-client_name not allowed with -dynamiclib"
msgstr ""
-#: java/parse.y:1989
-msgid "'class' or 'this' expected"
+#: config/darwin.h:253
+msgid "-force_flat_namespace not allowed with -dynamiclib"
msgstr ""
-#: java/parse.y:1991 java/parse.y:1993
-msgid "'class' expected"
+#: config/darwin.h:255
+msgid "-keep_private_externs not allowed with -dynamiclib"
msgstr ""
-#: java/parse.y:2038
-msgid "')' or term expected"
+#: config/darwin.h:256
+msgid "-private_bundle not allowed with -dynamiclib"
msgstr ""
-#: java/parse.y:2140 java/parse.y:2169
-msgid "'[' expected"
+#: config/vxworks.h:66
+msgid "-Xbind-now and -Xbind-lazy are incompatible"
msgstr ""
-#: java/parse.y:2247
-msgid "Field expected"
+#: config/arm/arm.h:141
+msgid "-msoft-float and -mhard_float may not be used together"
msgstr ""
-#: java/parse.y:2306 java/parse.y:2316
-#: java/parse.y:2326
-msgid "Missing term and ']' expected"
+#: config/arm/arm.h:143
+msgid "-mbig-endian and -mlittle-endian may not be used together"
msgstr ""
-#: java/parse.y:2431
-msgid "']' expected, invalid type expression"
+#: config/sparc/sol2-bi.h:167 config/sparc/sol2-bi.h:172
+#: config/sparc/sol2-gld-bi.h:17 config/sparc/sol2-gld-bi.h:22
+msgid "does not support multilib"
msgstr ""
-#: java/parse.y:2434
-msgid "Invalid type expression"
+#: config/sparc/sol2-bi.h:195 config/sparc/sol2-bi.h:205
+#: config/sparc/linux64.h:206 config/sparc/linux64.h:217
+#: config/sparc/netbsd-elf.h:126 config/sparc/netbsd-elf.h:145
+msgid "may not use both -m32 and -m64"
msgstr ""
-#: java/parse.y:2546
-msgid "Invalid reference type"
+#: config/mips/mips.h:849 config/arc/arc.h:62
+msgid "may not use both -EB and -EL"
msgstr ""
-#: java/parse.y:3017
-msgid "Constructor invocation must be first thing in a constructor"
+#: config/mips/r3900.h:35
+msgid "-mhard-float not supported"
msgstr ""
-#: java/parse.y:3019
-msgid "Only constructors can invoke constructors"
+#: config/mips/r3900.h:37
+msgid "-msingle-float and -msoft-float cannot both be specified"
msgstr ""
#: java/lang-specs.h:34
@@ -4097,126 +8817,55 @@ msgid "shared and mdll are not compatible"
msgstr ""
#: config/lynx.h:71
-msgid "Cannot use mthreads and mlegacy-threads together."
+msgid "cannot use mthreads and mlegacy-threads together"
msgstr ""
#: config/lynx.h:96
-msgid "Cannot use mshared and static together."
-msgstr ""
-
-#: ada/lang-specs.h:34 java/jvspec.c:80 gcc.c:783
-msgid "-pg and -fomit-frame-pointer are incompatible"
-msgstr ""
-
-#: ada/lang-specs.h:35
-msgid "-c or -S required for Ada"
+msgid "cannot use mshared and static together"
msgstr ""
#: config/vax/netbsd-elf.h:42
-msgid "The -shared option is not currently supported for VAX ELF."
+msgid "the -shared option is not currently supported for VAX ELF"
msgstr ""
#: config/i386/nwld.h:34
msgid "Static linking is not supported.\n"
msgstr ""
-#: config/vax/vax.h:50 config/vax/vax.h:51
-msgid "profiling not supported with -mg\n"
-msgstr ""
-
-#: config/sparc/linux64.h:206 config/sparc/linux64.h:217
-#: config/sparc/netbsd-elf.h:126 config/sparc/netbsd-elf.h:145
-#: config/sparc/sol2-bi.h:195 config/sparc/sol2-bi.h:205
-msgid "may not use both -m32 and -m64"
-msgstr ""
-
-#: config/i386/sco5.h:189
-msgid "-pg not supported on this platform"
-msgstr ""
-
-#: config/i386/sco5.h:190
-msgid "-p and -pp specified - pick one"
-msgstr ""
-
-#: config/i386/sco5.h:264
-msgid "-G and -static are mutually exclusive"
-msgstr ""
-
-#: config/i386/cygwin.h:29
-msgid "mno-cygwin and mno-win32 are not compatible"
-msgstr ""
-
#: config/mcore/mcore.h:57
msgid "the m210 does not have little endian support"
msgstr ""
-#: config/rs6000/darwin.h:105
-msgid " conflicting code gen style switches are used"
-msgstr ""
-
-#: config/arc/arc.h:63 config/mips/mips.h:844
-msgid "may not use both -EB and -EL"
-msgstr ""
-
-#: config/sparc/sol2-bi.h:167 config/sparc/sol2-bi.h:172
-#: config/sparc/sol2-gld-bi.h:17 config/sparc/sol2-gld-bi.h:22
-msgid "does not support multilib"
-msgstr ""
-
-#: config/mips/r3900.h:35
-msgid "-mhard-float not supported"
-msgstr ""
-
-#: config/mips/r3900.h:37
-msgid "-msingle-float and -msoft-float cannot both be specified"
-msgstr ""
-
-#: config/darwin.h:233
-msgid "-current_version only allowed with -dynamiclib"
-msgstr ""
-
-#: config/darwin.h:235
-msgid "-install_name only allowed with -dynamiclib"
-msgstr ""
-
-#: config/darwin.h:240
-msgid "-bundle not allowed with -dynamiclib"
-msgstr ""
-
-#: config/darwin.h:241
-msgid "-bundle_loader not allowed with -dynamiclib"
-msgstr ""
-
-#: config/darwin.h:242
-msgid "-client_name not allowed with -dynamiclib"
+#: gcc.c:767
+msgid "GCC does not support -C or -CC without -E"
msgstr ""
-#: config/darwin.h:247
-msgid "-force_flat_namespace not allowed with -dynamiclib"
+#: gcc.c:794 java/jvspec.c:80 ada/lang-specs.h:34
+msgid "-pg and -fomit-frame-pointer are incompatible"
msgstr ""
-#: config/darwin.h:249
-msgid "-keep_private_externs not allowed with -dynamiclib"
+#: gcc.c:962
+msgid "-E or -x required when input is from standard input"
msgstr ""
-#: config/darwin.h:250
-msgid "-private_bundle not allowed with -dynamiclib"
+#: config/s390/tpf.h:125
+msgid "static is not supported on TPF-OS"
msgstr ""
-#: gcc.c:756
-msgid "GCC does not support -C or -CC without -E"
+#: config/rs6000/darwin.h:105
+msgid " conflicting code gen style switches are used"
msgstr ""
-#: gcc.c:951
-msgid "-E or -x required when input is from standard input"
+#: ada/lang-specs.h:35
+msgid "-c or -S required for Ada"
msgstr ""
-#: config/arm/arm.h:141
-msgid "-msoft-float and -mhard_float may not be used together"
+#: config/vax/vax.h:50 config/vax/vax.h:51
+msgid "profiling not supported with -mg\n"
msgstr ""
-#: config/arm/arm.h:143
-msgid "-mbig-endian and -mlittle-endian may not be used together"
+#: config/i386/cygwin.h:29
+msgid "mno-cygwin and mno-win32 are not compatible"
msgstr ""
#: ada/lang.opt:74
@@ -4251,7 +8900,7 @@ msgstr ""
msgid "Print the name of header files as they are used"
msgstr ""
-#: c.opt:69 c.opt:767
+#: c.opt:69 c.opt:775
msgid "Add <dir> to the end of the main include path"
msgstr ""
@@ -4402,7 +9051,7 @@ msgid "Warn about zero-length formats"
msgstr ""
#: c.opt:221
-msgid "Warn about variables which are initialized to themselves."
+msgid "Warn about variables which are initialized to themselves"
msgstr ""
#: c.opt:228
@@ -4414,7 +9063,7 @@ msgid "Warn when a declaration does not specify a type"
msgstr ""
#: c.opt:236
-msgid "Deprecated. This switch has no effect."
+msgid "Deprecated. This switch has no effect"
msgstr ""
#: c.opt:240
@@ -4517,450 +9166,458 @@ msgid "Warn when a pointer is cast to an integer of a different size"
msgstr ""
#: c.opt:336
-msgid "Warn if inherited methods are unimplemented"
+msgid "Warn about misuses of pragmas"
msgstr ""
#: c.opt:340
-msgid "Warn about multiple declarations of the same object"
+msgid "Warn if inherited methods are unimplemented"
msgstr ""
#: c.opt:344
-msgid "Warn when the compiler reorders code"
+msgid "Warn about multiple declarations of the same object"
msgstr ""
#: c.opt:348
+msgid "Warn when the compiler reorders code"
+msgstr ""
+
+#: c.opt:352
msgid ""
"Warn whenever a function's return type defaults to \"int\" (C), or about "
"inconsistent return types (C++)"
msgstr ""
-#: c.opt:352
+#: c.opt:356
msgid "Warn if a selector has multiple methods"
msgstr ""
-#: c.opt:356
+#: c.opt:360
msgid "Warn about possible violations of sequence point rules"
msgstr ""
-#: c.opt:360
+#: c.opt:364
msgid "Warn about signed-unsigned comparisons"
msgstr ""
-#: c.opt:364
+#: c.opt:368
msgid "Warn when overload promotes from unsigned to signed"
msgstr ""
-#: c.opt:368
+#: c.opt:372
msgid "Warn about uncasted NULL used as sentinel"
msgstr ""
-#: c.opt:372
+#: c.opt:376
msgid "Warn about unprototyped function declarations"
msgstr ""
-#: c.opt:376
+#: c.opt:380
msgid "Warn if type signatures of candidate methods do not match exactly"
msgstr ""
-#: c.opt:380
+#: c.opt:384
msgid "Warn when synthesis behavior differs from Cfront"
msgstr ""
-#: c.opt:384 common.opt:138
+#: c.opt:388 common.opt:142
msgid "Do not suppress warnings from system headers"
msgstr ""
-#: c.opt:388
+#: c.opt:392
msgid "Warn about features not present in traditional C"
msgstr ""
-#: c.opt:392
+#: c.opt:396
msgid ""
"Warn if trigraphs are encountered that might affect the meaning of the "
"program"
msgstr ""
-#: c.opt:396
+#: c.opt:400
msgid "Warn about @selector()s without previously declared methods"
msgstr ""
-#: c.opt:400
+#: c.opt:404
msgid "Warn if an undefined macro is used in an #if directive"
msgstr ""
-#: c.opt:404
+#: c.opt:408
msgid "Warn about unrecognized pragmas"
msgstr ""
-#: c.opt:408
+#: c.opt:412
msgid "Warn about macros defined in the main file that are not used"
msgstr ""
-#: c.opt:412
+#: c.opt:416
msgid "Do not warn about using variadic macros when -pedantic"
msgstr ""
-#: c.opt:416
+#: c.opt:420
msgid "Give strings the type \"array of char\""
msgstr ""
-#: c.opt:420
-msgid "Warn when a pointer differs in signedness in an assignment."
+#: c.opt:424
+msgid "Warn when a pointer differs in signedness in an assignment"
msgstr ""
-#: c.opt:424
-msgid "A synonym for -std=c89 (for C) or -std=c++98 (for C++)."
+#: c.opt:428
+msgid "A synonym for -std=c89 (for C) or -std=c++98 (for C++)"
msgstr ""
-#: c.opt:432
+#: c.opt:436
msgid "Enforce class member access control semantics"
msgstr ""
-#: c.opt:439
+#: c.opt:443
msgid "Change when template instances are emitted"
msgstr ""
-#: c.opt:443
+#: c.opt:447
msgid "Recognize the \"asm\" keyword"
msgstr ""
-#: c.opt:447
+#: c.opt:451
msgid "Recognize built-in functions"
msgstr ""
-#: c.opt:454
+#: c.opt:458
msgid "Check the return value of new"
msgstr ""
-#: c.opt:458
+#: c.opt:462
msgid "Allow the arguments of the '?' operator to have different types"
msgstr ""
-#: c.opt:462
+#: c.opt:466
msgid "Reduce the size of object files"
msgstr ""
-#: c.opt:466
+#: c.opt:470
msgid "Make string literals \"const char[]\" not \"char[]\""
msgstr ""
-#: c.opt:470
+#: c.opt:474
msgid "Use class <name> for constant strings"
msgstr ""
-#: c.opt:474
+#: c.opt:478
msgid "Inline member functions by default"
msgstr ""
-#: c.opt:478
+#: c.opt:482
msgid "Permit '$' as an identifier character"
msgstr ""
-#: c.opt:485
+#: c.opt:489
msgid "Generate code to check exception specifications"
msgstr ""
-#: c.opt:492
+#: c.opt:496
msgid "Convert all strings and character constants to character set <cset>"
msgstr ""
-#: c.opt:496
-msgid "Specify the default character set for source files."
+#: c.opt:500
+msgid "Specify the default character set for source files"
msgstr ""
-#: c.opt:510
+#: c.opt:514
msgid "Scope of for-init-statement variables is local to the loop"
msgstr ""
-#: c.opt:514
+#: c.opt:518
msgid "Do not assume that standard C libraries and \"main\" exist"
msgstr ""
-#: c.opt:518
+#: c.opt:522
msgid "Recognize GNU-defined keywords"
msgstr ""
-#: c.opt:522
+#: c.opt:526
msgid "Generate code for GNU runtime environment"
msgstr ""
-#: c.opt:535
+#: c.opt:539
msgid "Assume normal C execution environment"
msgstr ""
-#: c.opt:539
+#: c.opt:543
msgid "Enable support for huge objects"
msgstr ""
-#: c.opt:543
+#: c.opt:547
msgid "Export functions even if they can be inlined"
msgstr ""
-#: c.opt:547
+#: c.opt:551
msgid "Emit implicit instantiations of inline templates"
msgstr ""
-#: c.opt:551
+#: c.opt:555
msgid "Emit implicit instantiations of templates"
msgstr ""
-#: c.opt:558
+#: c.opt:559
+msgid "Inject friend functions into enclosing namespace"
+msgstr ""
+
+#: c.opt:566
msgid "Don't warn about uses of Microsoft extensions"
msgstr ""
-#: c.opt:568
+#: c.opt:576
msgid "Generate code for NeXT (Apple Mac OS X) runtime environment"
msgstr ""
-#: c.opt:572
+#: c.opt:580
msgid "Assume that receivers of Objective-C messages may be nil"
msgstr ""
-#: c.opt:584
+#: c.opt:592
msgid ""
"Generate special Objective-C methods to initialize/destroy non-POD C++ "
"ivars, if needed"
msgstr ""
-#: c.opt:588
+#: c.opt:596
msgid "Allow fast jumps to the message dispatcher"
msgstr ""
-#: c.opt:594
+#: c.opt:602
msgid "Enable Objective-C exception and synchronization syntax"
msgstr ""
-#: c.opt:598
+#: c.opt:606
msgid "Enable garbage collection (GC) in Objective-C/Objective-C++ programs"
msgstr ""
-#: c.opt:603
+#: c.opt:611
msgid "Enable Objective-C setjmp exception handling runtime"
msgstr ""
-#: c.opt:607
+#: c.opt:615
msgid "Recognize C++ kewords like \"compl\" and \"xor\""
msgstr ""
-#: c.opt:611
+#: c.opt:619
msgid "Enable optional diagnostics"
msgstr ""
-#: c.opt:618
+#: c.opt:626
msgid "Look for and use PCH files even when preprocessing"
msgstr ""
-#: c.opt:622
+#: c.opt:630
msgid "Downgrade conformance errors to warnings"
msgstr ""
-#: c.opt:626
+#: c.opt:634
msgid "Treat the input file as already preprocessed"
msgstr ""
-#: c.opt:630
+#: c.opt:638
msgid ""
"Used in Fix-and-Continue mode to indicate that object files may be swapped "
"in at runtime"
msgstr ""
-#: c.opt:634
+#: c.opt:642
msgid "Enable automatic template instantiation"
msgstr ""
-#: c.opt:638
+#: c.opt:646
msgid "Generate run time type descriptor information"
msgstr ""
-#: c.opt:642
+#: c.opt:650
msgid "Use the same size for double as for float"
msgstr ""
-#: c.opt:646
+#: c.opt:654
msgid "Use the narrowest integer type possible for enumeration types"
msgstr ""
-#: c.opt:650
+#: c.opt:658
msgid "Force the underlying type for \"wchar_t\" to be \"unsigned short\""
msgstr ""
-#: c.opt:654
+#: c.opt:662
msgid "When \"signed\" or \"unsigned\" is not given make the bitfield signed"
msgstr ""
-#: c.opt:658
+#: c.opt:666
msgid "Make \"char\" signed by default"
msgstr ""
-#: c.opt:665
+#: c.opt:673
msgid "Display statistics accumulated during compilation"
msgstr ""
-#: c.opt:672
+#: c.opt:680
msgid "Distance between tab stops for column reporting"
msgstr ""
-#: c.opt:676
+#: c.opt:684
msgid "Specify maximum template instantiation depth"
msgstr ""
-#: c.opt:683
-msgid "Do not generate thread-safe code for initializing local statics."
+#: c.opt:691
+msgid "Do not generate thread-safe code for initializing local statics"
msgstr ""
-#: c.opt:687
+#: c.opt:695
msgid "When \"signed\" or \"unsigned\" is not given make the bitfield unsigned"
msgstr ""
-#: c.opt:691
+#: c.opt:699
msgid "Make \"char\" unsigned by default"
msgstr ""
-#: c.opt:695
+#: c.opt:703
msgid "Use __cxa_atexit to register destructors"
msgstr ""
-#: c.opt:699
+#: c.opt:707
msgid "Marks all inlined methods as having hidden visibility"
msgstr ""
-#: c.opt:703
+#: c.opt:711
msgid "Discard unused virtual functions"
msgstr ""
-#: c.opt:707
+#: c.opt:715
msgid "Implement vtables using thunks"
msgstr ""
-#: c.opt:711
+#: c.opt:719
msgid "Emit common-like symbols as weak symbols"
msgstr ""
-#: c.opt:715
+#: c.opt:723
msgid ""
"Convert all wide strings and character constants to character set <cset>"
msgstr ""
-#: c.opt:719
+#: c.opt:727
msgid "Generate a #line directive pointing at the current working directory"
msgstr ""
-#: c.opt:723
+#: c.opt:731
msgid "Emit cross referencing information"
msgstr ""
-#: c.opt:727
+#: c.opt:735
msgid ""
"Generate lazy class lookup (via objc_getClass()) for use in Zero-Link mode"
msgstr ""
-#: c.opt:731
+#: c.opt:739
msgid "Dump declarations to a .decl file"
msgstr ""
-#: c.opt:735 c.opt:763
+#: c.opt:743 c.opt:771
msgid "Add <dir> to the end of the system include path"
msgstr ""
-#: c.opt:739
+#: c.opt:747
msgid "Accept definition of macros in <file>"
msgstr ""
-#: c.opt:743
+#: c.opt:751
msgid "Include the contents of <file> before other files"
msgstr ""
-#: c.opt:747
+#: c.opt:755
msgid "Specify <path> as a prefix for next two options"
msgstr ""
-#: c.opt:751
+#: c.opt:759
msgid "Set <dir> to be the system root directory"
msgstr ""
-#: c.opt:755
+#: c.opt:763
msgid "Add <dir> to the start of the system include path"
msgstr ""
-#: c.opt:759
+#: c.opt:767
msgid "Add <dir> to the end of the quote include path"
msgstr ""
-#: c.opt:777
+#: c.opt:785
msgid ""
"Do not search standard system include directories (those specified with -"
"isystem will still be used)"
msgstr ""
-#: c.opt:781
+#: c.opt:789
msgid "Do not search standard system include directories for C++"
msgstr ""
-#: c.opt:797
+#: c.opt:805
msgid "Generate C header of platform-specific features"
msgstr ""
-#: c.opt:801
-msgid "Print a checksum of the executable for PCH validity checking, and stop."
+#: c.opt:809
+msgid "Print a checksum of the executable for PCH validity checking, and stop"
msgstr ""
-#: c.opt:805
+#: c.opt:813
msgid "Remap file names when including files"
msgstr ""
-#: c.opt:809
+#: c.opt:817
msgid "Conform to the ISO 1998 C++ standard"
msgstr ""
-#: c.opt:813 c.opt:841
+#: c.opt:821 c.opt:849
msgid "Conform to the ISO 1990 C standard"
msgstr ""
-#: c.opt:817 c.opt:849
+#: c.opt:825 c.opt:857
msgid "Conform to the ISO 1999 C standard"
msgstr ""
-#: c.opt:821
+#: c.opt:829
msgid "Deprecated in favor of -std=c99"
msgstr ""
-#: c.opt:825
+#: c.opt:833
msgid "Conform to the ISO 1998 C++ standard with GNU extensions"
msgstr ""
-#: c.opt:829
+#: c.opt:837
msgid "Conform to the ISO 1990 C standard with GNU extensions"
msgstr ""
-#: c.opt:833
+#: c.opt:841
msgid "Conform to the ISO 1999 C standard with GNU extensions"
msgstr ""
-#: c.opt:837
+#: c.opt:845
msgid "Deprecated in favor of -std=gnu99"
msgstr ""
-#: c.opt:845
+#: c.opt:853
msgid "Conform to the ISO 1990 C standard as amended in 1994"
msgstr ""
-#: c.opt:853
+#: c.opt:861
msgid "Deprecated in favor of -std=iso9899:1999"
msgstr ""
-#: c.opt:857
+#: c.opt:865
msgid "Enable traditional preprocessing"
msgstr ""
-#: c.opt:861
+#: c.opt:869
msgid "Support ISO C trigraphs"
msgstr ""
-#: c.opt:865
+#: c.opt:873
msgid "Do not predefine system-specific and GCC-specific macros"
msgstr ""
-#: c.opt:869
+#: c.opt:877
msgid "Enable verbose output"
msgstr ""
@@ -5032,887 +9689,941 @@ msgid "Warn if an object is larger than <number> bytes"
msgstr ""
#: common.opt:98
+msgid "Warn if the loop cannot be optimized due to nontrivial assumptions."
+msgstr ""
+
+#: common.opt:102
msgid ""
"Warn about functions which might be candidates for __attribute__((noreturn))"
msgstr ""
-#: common.opt:102
+#: common.opt:106
msgid "Warn when the packed attribute has no effect on struct layout"
msgstr ""
-#: common.opt:106
+#: common.opt:110
msgid "Warn when padding is required to align structure members"
msgstr ""
-#: common.opt:110
+#: common.opt:114
msgid "Warn when one local variable shadows another"
msgstr ""
-#: common.opt:114
+#: common.opt:118
msgid "Warn when not issuing stack smashing protection for some reason"
msgstr ""
-#: common.opt:118 common.opt:122
+#: common.opt:122 common.opt:126
msgid "Warn about code which might break strict aliasing rules"
msgstr ""
-#: common.opt:126
+#: common.opt:130
msgid "Warn about enumerated switches, with no default, missing a case"
msgstr ""
-#: common.opt:130
+#: common.opt:134
msgid "Warn about enumerated switches missing a \"default:\" statement"
msgstr ""
-#: common.opt:134
+#: common.opt:138
msgid "Warn about all enumerated switches missing a specific case"
msgstr ""
-#: common.opt:142
+#: common.opt:146
msgid "Warn about uninitialized automatic variables"
msgstr ""
-#: common.opt:146
+#: common.opt:150
msgid "Warn about code that will never be executed"
msgstr ""
-#: common.opt:150
+#: common.opt:154
msgid "Enable all -Wunused- warnings"
msgstr ""
-#: common.opt:154
+#: common.opt:158
msgid "Warn when a function is unused"
msgstr ""
-#: common.opt:158 fortran/lang.opt:70
+#: common.opt:162 fortran/lang.opt:70
msgid "Warn when a label is unused"
msgstr ""
-#: common.opt:162
+#: common.opt:166
msgid "Warn when a function parameter is unused"
msgstr ""
-#: common.opt:166
+#: common.opt:170
msgid "Warn when an expression value is unused"
msgstr ""
-#: common.opt:170
+#: common.opt:174
msgid "Warn when a variable is unused"
msgstr ""
-#: common.opt:174
+#: common.opt:178
msgid "Emit declaration information into <file>"
msgstr ""
-#: common.opt:187
+#: common.opt:191
msgid "Enable dumps from specific passes of the compiler"
msgstr ""
-#: common.opt:191
+#: common.opt:195
msgid "Set the file basename to be used for dumps"
msgstr ""
-#: common.opt:209
+#: common.opt:213
msgid "Align the start of functions"
msgstr ""
-#: common.opt:216
+#: common.opt:220
msgid "Align labels which are only reached by jumping"
msgstr ""
-#: common.opt:223
+#: common.opt:227
msgid "Align all labels"
msgstr ""
-#: common.opt:230
+#: common.opt:234
msgid "Align the start of loops"
msgstr ""
-#: common.opt:243
+#: common.opt:247
msgid "Specify that arguments may alias each other and globals"
msgstr ""
-#: common.opt:247
+#: common.opt:251
msgid "Assume arguments may alias globals but not each other"
msgstr ""
-#: common.opt:251
+#: common.opt:255
msgid "Assume arguments alias neither each other nor globals"
msgstr ""
-#: common.opt:255
+#: common.opt:259
msgid "Generate unwind tables that are exact at each instruction boundary"
msgstr ""
-#: common.opt:263
+#: common.opt:267
msgid "Generate code to check bounds before indexing arrays"
msgstr ""
-#: common.opt:267
+#: common.opt:271
msgid "Replace add, compare, branch with branch on count register"
msgstr ""
-#: common.opt:271
+#: common.opt:275
msgid "Use profiling information for branch probabilities"
msgstr ""
-#: common.opt:275
+#: common.opt:279
msgid ""
"Perform branch target load optimization before prologue / epilogue threading"
msgstr ""
-#: common.opt:279
+#: common.opt:283
msgid ""
"Perform branch target load optimization after prologue / epilogue threading"
msgstr ""
-#: common.opt:283
+#: common.opt:287
msgid ""
"Restrict target load migration not to re-use registers in any basic block"
msgstr ""
-#: common.opt:287
+#: common.opt:291
msgid "Mark <register> as being preserved across functions"
msgstr ""
-#: common.opt:291
+#: common.opt:295
msgid "Mark <register> as being corrupted by function calls"
msgstr ""
-#: common.opt:298
+#: common.opt:302
msgid "Save registers around function calls"
msgstr ""
-#: common.opt:302
+#: common.opt:306
msgid "Do not put uninitialized globals in the common section"
msgstr ""
-#: common.opt:306
+#: common.opt:310
msgid "Perform a register copy-propagation optimization pass"
msgstr ""
-#: common.opt:310
+#: common.opt:314
msgid "Perform cross-jumping optimization"
msgstr ""
-#: common.opt:314
+#: common.opt:318
msgid "When running CSE, follow jumps to their targets"
msgstr ""
-#: common.opt:318
+#: common.opt:322
msgid "When running CSE, follow conditional jumps"
msgstr ""
-#: common.opt:322
+#: common.opt:326
msgid "Omit range reduction step when performing complex division"
msgstr ""
-#: common.opt:326
+#: common.opt:330
msgid "Place data items into their own section"
msgstr ""
-#: common.opt:332
+#: common.opt:336
msgid "Defer popping functions args from stack until later"
msgstr ""
-#: common.opt:336
+#: common.opt:340
msgid "Attempt to fill delay slots of branch instructions"
msgstr ""
-#: common.opt:340
+#: common.opt:344
msgid "Delete useless null pointer checks"
msgstr ""
-#: common.opt:344
+#: common.opt:348
msgid ""
"How often to emit source location at the beginning of line-wrapped "
"diagnostics"
msgstr ""
-#: common.opt:348
+#: common.opt:352
msgid ""
"Amend appropriate diagnostic messages with the command line option that "
-"controls them."
+"controls them"
msgstr ""
-#: common.opt:352
+#: common.opt:356
msgid "Dump various compiler internals to a file"
msgstr ""
-#: common.opt:356
+#: common.opt:360
msgid ""
"Suppress output of instruction numbers and line number notes in debugging "
"dumps"
msgstr ""
-#: common.opt:360
+#: common.opt:364
+msgid "Perform early inlining"
+msgstr ""
+
+#: common.opt:368
msgid "Perform DWARF2 duplicate elimination"
msgstr ""
-#: common.opt:364 common.opt:368
+#: common.opt:372 common.opt:376
msgid "Perform unused type elimination in debug info"
msgstr ""
-#: common.opt:372
+#: common.opt:380
msgid "Enable exception handling"
msgstr ""
-#: common.opt:376
+#: common.opt:384
msgid "Perform a number of minor, expensive optimizations"
msgstr ""
-#: common.opt:383
+#: common.opt:391
msgid "Assume no NaNs or infinities are generated"
msgstr ""
-#: common.opt:387
+#: common.opt:395
msgid "Mark <register> as being unavailable to the compiler"
msgstr ""
-#: common.opt:391
+#: common.opt:399
msgid "Don't allocate floats and doubles in extended-precision registers"
msgstr ""
-#: common.opt:397
+#: common.opt:405
msgid "Copy memory address constants into registers before use"
msgstr ""
-#: common.opt:403
+#: common.opt:411
msgid "Copy memory operands into registers before use"
msgstr ""
-#: common.opt:410
+#: common.opt:418
msgid "Allow function addresses to be held in registers"
msgstr ""
-#: common.opt:414
+#: common.opt:422
msgid "Place each function into its own section"
msgstr ""
-#: common.opt:418
+#: common.opt:426
msgid "Perform global common subexpression elimination"
msgstr ""
-#: common.opt:422
+#: common.opt:430
msgid ""
"Perform enhanced load motion during global common subexpression elimination"
msgstr ""
-#: common.opt:426
+#: common.opt:434
msgid "Perform store motion after global common subexpression elimination"
msgstr ""
-#: common.opt:430
+#: common.opt:438
msgid ""
"Perform redundant load after store elimination in global common subexpression"
msgstr ""
-#: common.opt:435
+#: common.opt:443
msgid ""
"Perform global common subexpression elimination after register allocation"
msgstr ""
-#: common.opt:440
+#: common.opt:448
msgid "Enable guessing of branch probabilities"
msgstr ""
-#: common.opt:448
+#: common.opt:456
msgid "Process #ident directives"
msgstr ""
-#: common.opt:452
+#: common.opt:460
msgid "Perform conversion of conditional jumps to branchless equivalents"
msgstr ""
-#: common.opt:456
+#: common.opt:464
msgid "Perform conversion of conditional jumps to conditional execution"
msgstr ""
-#: common.opt:464
+#: common.opt:472
msgid "Do not generate .size directives"
msgstr ""
-#: common.opt:473
+#: common.opt:481
msgid "Pay attention to the \"inline\" keyword"
msgstr ""
-#: common.opt:477
+#: common.opt:485
msgid "Integrate simple functions into their callers"
msgstr ""
-#: common.opt:481
-msgid "Perform early inlining"
+#: common.opt:489
+msgid "Integrate functions called once into their callers"
msgstr ""
-#: common.opt:488
+#: common.opt:496
msgid "Limit the size of inlined functions to <number>"
msgstr ""
-#: common.opt:492
+#: common.opt:500
msgid "Instrument function entry and exit with profiling calls"
msgstr ""
-#: common.opt:496
+#: common.opt:504
+msgid "Perform Interprocedural constant propagation"
+msgstr ""
+
+#: common.opt:508
+msgid "Discover pure and const functions"
+msgstr ""
+
+#: common.opt:512
+msgid "Discover readonly and non addressable static variables"
+msgstr ""
+
+#: common.opt:516
+msgid "Type based escape and alias analysis"
+msgstr ""
+
+#: common.opt:520
msgid "Optimize induction variables on trees"
msgstr ""
-#: common.opt:500
+#: common.opt:524
msgid "Use jump tables for sufficiently large switch statements"
msgstr ""
-#: common.opt:504
+#: common.opt:528
msgid "Generate code for functions even if they are fully inlined"
msgstr ""
-#: common.opt:508
+#: common.opt:532
msgid "Emit static const variables even if they are not used"
msgstr ""
-#: common.opt:512
+#: common.opt:536
msgid "Give external symbols a leading underscore"
msgstr ""
-#: common.opt:516
+#: common.opt:540
msgid "Perform loop optimizations"
msgstr ""
-#: common.opt:520
+#: common.opt:544
msgid "Perform loop optimizations using the new loop optimizer"
msgstr ""
-#: common.opt:524
+#: common.opt:548
msgid "Set errno after built-in math functions"
msgstr ""
-#: common.opt:528
+#: common.opt:552
msgid "Report on permanent memory allocation"
msgstr ""
-#: common.opt:535
+#: common.opt:559
msgid "Attempt to merge identical constants and constant variables"
msgstr ""
-#: common.opt:539
+#: common.opt:563
msgid "Attempt to merge identical constants across compilation units"
msgstr ""
-#: common.opt:543
+#: common.opt:567
msgid ""
"Limit diagnostics to <number> characters per line. 0 suppresses line-"
"wrapping"
msgstr ""
-#: common.opt:547
+#: common.opt:571
msgid "Perform SMS based modulo scheduling before the first scheduling pass"
msgstr ""
-#: common.opt:551
+#: common.opt:575
msgid "Move loop invariant computations out of loops"
msgstr ""
-#: common.opt:555
-msgid ""
-"Add mudflap bounds-checking instrumentation for single-threaded program."
+#: common.opt:579
+msgid "Add mudflap bounds-checking instrumentation for single-threaded program"
msgstr ""
-#: common.opt:559
-msgid "Add mudflap bounds-checking instrumentation for multi-threaded program."
+#: common.opt:583
+msgid "Add mudflap bounds-checking instrumentation for multi-threaded program"
msgstr ""
-#: common.opt:563
-msgid "Ignore read operations when inserting mudflap instrumentation."
+#: common.opt:587
+msgid "Ignore read operations when inserting mudflap instrumentation"
msgstr ""
-#: common.opt:567
+#: common.opt:591
msgid ""
"Enable/Disable the traditional scheduling in loops that already passed "
"modulo scheduling"
msgstr ""
-#: common.opt:571
+#: common.opt:595
msgid "Support synchronous non-call exceptions"
msgstr ""
-#: common.opt:575
+#: common.opt:599
msgid "When possible do not generate stack frames"
msgstr ""
-#: common.opt:579
+#: common.opt:603
msgid "Do the full register move optimization pass"
msgstr ""
-#: common.opt:583
+#: common.opt:607
msgid "Optimize sibling and tail recursive calls"
msgstr ""
-#: common.opt:587
+#: common.opt:611
msgid "Pack structure members together without holes"
msgstr ""
-#: common.opt:591
+#: common.opt:615
msgid "Set initial maximum structure member alignment"
msgstr ""
-#: common.opt:595
+#: common.opt:619
msgid "Return small aggregates in memory, not registers"
msgstr ""
-#: common.opt:599
+#: common.opt:623
msgid "Perform loop peeling"
msgstr ""
-#: common.opt:603
+#: common.opt:627
msgid "Enable machine specific peephole optimizations"
msgstr ""
-#: common.opt:607
+#: common.opt:631
msgid "Enable an RTL peephole pass before sched2"
msgstr ""
-#: common.opt:611
+#: common.opt:635
msgid "Generate position-independent code if possible (large mode)"
msgstr ""
-#: common.opt:615
+#: common.opt:639
msgid ""
"Generate position-independent code for executables if possible (large mode)"
msgstr ""
-#: common.opt:619
+#: common.opt:643
msgid "Generate position-independent code if possible (small mode)"
msgstr ""
-#: common.opt:623
+#: common.opt:647
msgid ""
"Generate position-independent code for executables if possible (small mode)"
msgstr ""
-#: common.opt:627
+#: common.opt:651
msgid "Generate prefetch instructions, if available, for arrays in loops"
msgstr ""
-#: common.opt:631
+#: common.opt:655
msgid "Enable basic program profiling code"
msgstr ""
-#: common.opt:635
+#: common.opt:659
msgid "Insert arc-based program profiling code"
msgstr ""
-#: common.opt:639
+#: common.opt:663
msgid ""
"Enable common options for generating profile info for profile feedback "
"directed optimizations"
msgstr ""
-#: common.opt:643
+#: common.opt:667
msgid ""
"Enable common options for performing profile feedback directed optimizations"
msgstr ""
-#: common.opt:647
+#: common.opt:671
msgid "Insert code to profile values of expressions"
msgstr ""
-#: common.opt:654
+#: common.opt:678
msgid "Make compile reproducible using <string>"
msgstr ""
-#: common.opt:658
+#: common.opt:682
msgid "Return small aggregates in registers"
msgstr ""
-#: common.opt:662
+#: common.opt:686
msgid "Enables a register move optimization"
msgstr ""
-#: common.opt:666
+#: common.opt:690
msgid "Perform a register renaming optimization pass"
msgstr ""
-#: common.opt:670
+#: common.opt:694
msgid "Reorder basic blocks to improve code placement"
msgstr ""
-#: common.opt:674
+#: common.opt:698
msgid "Reorder basic blocks and partition into hot and cold sections"
msgstr ""
-#: common.opt:678
+#: common.opt:702
msgid "Reorder functions to improve code placement"
msgstr ""
-#: common.opt:682
+#: common.opt:706
msgid "Add a common subexpression elimination pass after loop optimizations"
msgstr ""
-#: common.opt:686
+#: common.opt:710
msgid "Run the loop optimizer twice"
msgstr ""
-#: common.opt:690
+#: common.opt:714
msgid "Disable optimizations that assume default FP rounding behavior"
msgstr ""
-#: common.opt:694
+#: common.opt:718
msgid "Enable scheduling across basic blocks"
msgstr ""
-#: common.opt:698
+#: common.opt:722
msgid "Allow speculative motion of non-loads"
msgstr ""
-#: common.opt:702
+#: common.opt:726
msgid "Allow speculative motion of some loads"
msgstr ""
-#: common.opt:706
+#: common.opt:730
msgid "Allow speculative motion of more loads"
msgstr ""
-#: common.opt:710
+#: common.opt:734
msgid "Set the verbosity level of the scheduler"
msgstr ""
-#: common.opt:714
+#: common.opt:738
msgid "If scheduling post reload, do superblock scheduling"
msgstr ""
-#: common.opt:718
+#: common.opt:742
msgid "If scheduling post reload, do trace scheduling"
msgstr ""
-#: common.opt:722
+#: common.opt:746
msgid "Reschedule instructions before register allocation"
msgstr ""
-#: common.opt:726
+#: common.opt:750
msgid "Reschedule instructions after register allocation"
msgstr ""
-#: common.opt:732
+#: common.opt:756
msgid "Allow premature scheduling of queued insns"
msgstr ""
-#: common.opt:736
+#: common.opt:760
msgid "Set number of queued insns that can be prematurely scheduled"
msgstr ""
-#: common.opt:744 common.opt:748
+#: common.opt:768 common.opt:772
msgid ""
"Set dependence distance checking in premature scheduling of queued insns"
msgstr ""
-#: common.opt:752
+#: common.opt:776
msgid "Mark data as shared rather than private"
msgstr ""
-#: common.opt:756
-msgid "Show column numbers in diagnostics, when available. Default on."
+#: common.opt:780
+msgid "Show column numbers in diagnostics, when available. Default on"
msgstr ""
-#: common.opt:760
+#: common.opt:784
msgid "Disable optimizations observable by IEEE signaling NaNs"
msgstr ""
-#: common.opt:764
+#: common.opt:788
msgid "Convert floating point constants to single precision constants"
msgstr ""
-#: common.opt:768
-msgid "Use value profiling for speculative prefetching"
-msgstr ""
-
-#: common.opt:772
-msgid "Split lifetimes of induction variables when loops are unrolled."
+#: common.opt:792
+msgid "Split lifetimes of induction variables when loops are unrolled"
msgstr ""
-#: common.opt:776
-msgid "Apply variable expansion when loops are unrolled."
+#: common.opt:796
+msgid "Apply variable expansion when loops are unrolled"
msgstr ""
-#: common.opt:782
+#: common.opt:802
msgid "Insert stack checking code into the program"
msgstr ""
-#: common.opt:789
+#: common.opt:809
msgid "Trap if the stack goes past <register>"
msgstr ""
-#: common.opt:793
+#: common.opt:813
msgid "Trap if the stack goes past symbol <name>"
msgstr ""
-#: common.opt:797
+#: common.opt:817
msgid "Use propolice as a stack protection method"
msgstr ""
-#: common.opt:801
+#: common.opt:821
msgid "Use a stack protection method for every function"
msgstr ""
-#: common.opt:805
+#: common.opt:825
msgid "Perform strength reduction optimizations"
msgstr ""
-#: common.opt:813
+#: common.opt:833
msgid "Assume strict aliasing rules apply"
msgstr ""
-#: common.opt:817
+#: common.opt:837
msgid "Check for syntax errors, then stop"
msgstr ""
-#: common.opt:821
+#: common.opt:841
msgid "Create data files needed by \"gcov\""
msgstr ""
-#: common.opt:825
+#: common.opt:845
msgid "Perform jump threading optimizations"
msgstr ""
-#: common.opt:829
+#: common.opt:849
msgid "Report the time taken by each compiler pass"
msgstr ""
-#: common.opt:833
+#: common.opt:853
msgid "Set the default thread-local storage code generation model"
msgstr ""
-#: common.opt:837
+#: common.opt:857
msgid "Perform superblock formation via tail duplication"
msgstr ""
-#: common.opt:844
+#: common.opt:864
msgid "Assume floating-point operations can trap"
msgstr ""
-#: common.opt:848
+#: common.opt:868
msgid "Trap for signed overflow in addition, subtraction and multiplication"
msgstr ""
-#: common.opt:852
-msgid "Use tree-ssa based implementation of profiling"
-msgstr ""
-
-#: common.opt:856
+#: common.opt:872
msgid "Enable SSA-CCP optimization on trees"
msgstr ""
-#: common.opt:860
+#: common.opt:876
msgid "Enable SSA-CCP optimization for stores and loads"
msgstr ""
-#: common.opt:864
+#: common.opt:880
msgid "Enable loop header copying on trees"
msgstr ""
-#: common.opt:868
+#: common.opt:884
msgid "Coalesce memory temporaries in the SSA->normal pass"
msgstr ""
-#: common.opt:872
-msgid "Replace SSA temporaries with better names in copies."
+#: common.opt:888
+msgid "Replace SSA temporaries with better names in copies"
msgstr ""
-#: common.opt:876
+#: common.opt:892
msgid "Enable copy propagation on trees"
msgstr ""
-#: common.opt:880
+#: common.opt:896
msgid "Enable copy propagation for stores and loads"
msgstr ""
-#: common.opt:884
+#: common.opt:900
msgid "Enable SSA dead code elimination optimization on trees"
msgstr ""
-#: common.opt:888
+#: common.opt:904
msgid "Enable dominator optimizations"
msgstr ""
-#: common.opt:892
+#: common.opt:908
msgid "Enable dead store elimination"
msgstr ""
-#: common.opt:896
+#: common.opt:912
msgid "Enable Full Redundancy Elimination (FRE) on trees"
msgstr ""
-#: common.opt:900
+#: common.opt:916
msgid "Enable loop invariant motion on trees"
msgstr ""
-#: common.opt:904
+#: common.opt:920
msgid "Enable linear loop transforms on trees"
msgstr ""
-#: common.opt:908
+#: common.opt:924
msgid "Create canonical induction variables in loops"
msgstr ""
-#: common.opt:912
+#: common.opt:928
msgid "Enable loop optimizations on tree level"
msgstr ""
-#: common.opt:916
+#: common.opt:932
msgid "Enable SSA-PRE optimization on trees"
msgstr ""
-#: common.opt:920
+#: common.opt:936
msgid "Perform structural alias analysis"
msgstr ""
-#: common.opt:924
+#: common.opt:940
msgid "Enable SSA code sinking on trees"
msgstr ""
-#: common.opt:928
+#: common.opt:944
msgid "Perform scalar replacement of aggregates"
msgstr ""
-#: common.opt:932
+#: common.opt:948
msgid "Replace temporary expressions in the SSA->normal pass"
msgstr ""
-#: common.opt:936
-msgid "Perform live range splitting during the SSA->normal pass."
+#: common.opt:952
+msgid "Perform live range splitting during the SSA->normal pass"
msgstr ""
-#: common.opt:940
+#: common.opt:956
msgid "Perform Value Range Propagation on trees"
msgstr ""
-#: common.opt:944
+#: common.opt:960
msgid "Compile whole compilation unit at a time"
msgstr ""
-#: common.opt:948
+#: common.opt:964
msgid "Perform loop unrolling when iteration count is known"
msgstr ""
-#: common.opt:952
+#: common.opt:968
msgid "Perform loop unrolling for all loops"
msgstr ""
-#: common.opt:960
+#: common.opt:975
+msgid "Allow loop optimizations to assume that the loops behave in normal way"
+msgstr ""
+
+#: common.opt:983
msgid "Allow math optimizations that may violate IEEE or ISO standards"
msgstr ""
-#: common.opt:964
+#: common.opt:987
msgid "Perform loop unswitching"
msgstr ""
-#: common.opt:968
+#: common.opt:991
msgid "Just generate unwind tables for exception handling"
msgstr ""
-#: common.opt:972
+#: common.opt:995
msgid "Perform variable tracking"
msgstr ""
-#: common.opt:976
+#: common.opt:999
msgid "Enable loop vectorization on trees"
msgstr ""
-#: common.opt:980
+#: common.opt:1003
+msgid "Enable loop versioning when doing loop vectorization on trees"
+msgstr ""
+
+#: common.opt:1007
msgid "Set the verbosity level of the vectorizer"
msgstr ""
-#: common.opt:990
+#: common.opt:1017
msgid "Add extra commentary to assembler output"
msgstr ""
-#: common.opt:994
+#: common.opt:1021
msgid "Set the default symbol visibility"
msgstr ""
-#: common.opt:999
+#: common.opt:1026
msgid "Use expression value profiles in optimizations"
msgstr ""
-#: common.opt:1003
+#: common.opt:1030
msgid "Construct webs and split unrelated uses of single variable"
msgstr ""
-#: common.opt:1007
+#: common.opt:1034
msgid "Perform whole program optimizations"
msgstr ""
-#: common.opt:1011
+#: common.opt:1038
msgid "Assume signed arithmetic overflow wraps around"
msgstr ""
-#: common.opt:1015
+#: common.opt:1042
msgid "Put zero initialized data in the bss section"
msgstr ""
-#: common.opt:1019
+#: common.opt:1046
msgid "Generate debug information in default format"
msgstr ""
-#: common.opt:1023
+#: common.opt:1050
msgid "Generate debug information in COFF format"
msgstr ""
-#: common.opt:1027
+#: common.opt:1054
msgid "Generate debug information in DWARF v2 format"
msgstr ""
-#: common.opt:1031
+#: common.opt:1058
msgid "Generate debug information in default extended format"
msgstr ""
-#: common.opt:1035
+#: common.opt:1062
msgid "Generate debug information in STABS format"
msgstr ""
-#: common.opt:1039
+#: common.opt:1066
msgid "Generate debug information in extended STABS format"
msgstr ""
-#: common.opt:1043
+#: common.opt:1070
msgid "Generate debug information in VMS format"
msgstr ""
-#: common.opt:1047
+#: common.opt:1074
msgid "Generate debug information in XCOFF format"
msgstr ""
-#: common.opt:1051
+#: common.opt:1078
msgid "Generate debug information in extended XCOFF format"
msgstr ""
-#: common.opt:1055
+#: common.opt:1082
msgid "Place output into <file>"
msgstr ""
-#: common.opt:1059
+#: common.opt:1086
msgid "Enable function profiling"
msgstr ""
-#: common.opt:1063
+#: common.opt:1090
msgid "Issue warnings needed for strict compliance to the standard"
msgstr ""
-#: common.opt:1067
+#: common.opt:1094
msgid "Like -pedantic but issue them as errors"
msgstr ""
-#: common.opt:1071
+#: common.opt:1098
msgid "Do not display functions compiled or elapsed time"
msgstr ""
-#: common.opt:1075
+#: common.opt:1102
msgid "Display the compiler's version"
msgstr ""
-#: common.opt:1079
+#: common.opt:1106
msgid "Suppress warnings"
msgstr ""
-#: config/alpha/alpha.opt:24 config/i386/i386.opt:182
-#: config/ns32k/ns32k.opt:104
+#: config/darwin.opt:24
+msgid "Generate code suitable for fast turn around debugging"
+msgstr ""
+
+#: config/darwin.opt:28
+msgid "The earliest MacOS X version on which this program will run"
+msgstr ""
+
+#: config/darwin.opt:32
+msgid "Set sizeof(bool) to 1"
+msgstr ""
+
+#: config/lynx.opt:24
+msgid "Support legacy multi-threading"
+msgstr ""
+
+#: config/lynx.opt:28
+msgid "Use shared libraries"
+msgstr ""
+
+#: config/lynx.opt:32
+msgid "Support multi-threading"
+msgstr ""
+
+#: config/vxworks.opt:25
+msgid "Assume the VxWorks RTP environment"
+msgstr ""
+
+#: config/vxworks.opt:32
+msgid "Assume the VxWorks vThreads environment"
+msgstr ""
+
+#: config/alpha/alpha.opt:24 config/i386/i386.opt:186
msgid "Do not use hardware fp"
msgstr ""
@@ -6202,22 +10913,26 @@ msgid "Omit frame pointer for leaf functions"
msgstr ""
#: config/bfin/bfin.opt:28
-msgid "Program is entirely located in low 64k of memory."
+msgid "Program is entirely located in low 64k of memory"
msgstr ""
#: config/bfin/bfin.opt:32
-msgid "Avoid speculative loads by inserting CSYNC or equivalent"
+msgid "Work around a hardware anomaly by adding a number of NOPs before a"
msgstr ""
-#: config/bfin/bfin.opt:36
+#: config/bfin/bfin.opt:37
+msgid "Avoid speculative loads to work around a hardware anomaly."
+msgstr ""
+
+#: config/bfin/bfin.opt:41
msgid "Enabled ID based shared library"
msgstr ""
-#: config/bfin/bfin.opt:40 config/m68k/m68k.opt:137
+#: config/bfin/bfin.opt:45 config/m68k/m68k.opt:137
msgid "ID of shared library to build"
msgstr ""
-#: config/bfin/bfin.opt:44
+#: config/bfin/bfin.opt:49
msgid "Avoid generating pc-relative calls; use indirection"
msgstr ""
@@ -6417,12 +11132,16 @@ msgstr ""
msgid "Together with -fpic and -fPIC, do not use GOTPLT references"
msgstr ""
-#: config/darwin.opt:24
-msgid "Set sizeof(bool) to 1"
+#: config/crx/crx.opt:24
+msgid "Support multiply accumulate instructions"
msgstr ""
-#: config/darwin.opt:28
-msgid "Generate code suitable for fast turn around debugging"
+#: config/crx/crx.opt:28
+msgid "Do not use push to store function arguments"
+msgstr ""
+
+#: config/crx/crx.opt:32
+msgid "Restrict doloop to the given nesting level"
msgstr ""
#: config/fr30/fr30.opt:24
@@ -6549,38 +11268,42 @@ msgid "Do not mark ABI switches in e_flags"
msgstr ""
#: config/frv/frv.opt:162
-msgid "Pack VLIW instructions"
+msgid "Remove redundant membars"
msgstr ""
#: config/frv/frv.opt:166
-msgid "Enable setting GPRs to the result of comparisons"
+msgid "Pack VLIW instructions"
msgstr ""
#: config/frv/frv.opt:170
+msgid "Enable setting GPRs to the result of comparisons"
+msgstr ""
+
+#: config/frv/frv.opt:174
msgid "Change the amount of scheduler lookahead"
msgstr ""
-#: config/frv/frv.opt:174 config/pa/pa.opt:105
+#: config/frv/frv.opt:178 config/pa/pa.opt:105
msgid "Use software floating point"
msgstr ""
-#: config/frv/frv.opt:178
+#: config/frv/frv.opt:182
msgid "Assume a large TLS segment"
msgstr ""
-#: config/frv/frv.opt:182
+#: config/frv/frv.opt:186
msgid "Do not assume a large TLS segment"
msgstr ""
-#: config/frv/frv.opt:187
+#: config/frv/frv.opt:191
msgid "Cause gas to print tomcat statistics"
msgstr ""
-#: config/frv/frv.opt:192
+#: config/frv/frv.opt:196
msgid "Link with the library-pic libraries"
msgstr ""
-#: config/frv/frv.opt:196
+#: config/frv/frv.opt:200
msgid "Allow branches to be packed with other instructions"
msgstr ""
@@ -6672,8 +11395,7 @@ msgstr ""
msgid "Generate 64bit x86-64 code"
msgstr ""
-#: config/i386/i386.opt:48 config/i386/i386.opt:114 config/ns32k/ns32k.opt:28
-#: config/s390/s390.opt:52
+#: config/i386/i386.opt:48 config/i386/i386.opt:118 config/s390/s390.opt:52
msgid "Use hardware fp"
msgstr ""
@@ -6718,92 +11440,102 @@ msgid "Branches are this expensive (1-5, arbitrary units)"
msgstr ""
#: config/i386/i386.opt:92
+msgid ""
+"Data greater than given threshold will go into .ldata section in x86-64 "
+"medium model"
+msgstr ""
+
+#: config/i386/i386.opt:96
msgid "Use given x86-64 code model"
msgstr ""
-#: config/i386/i386.opt:102
+#: config/i386/i386.opt:106
msgid "Generate sin, cos, sqrt for FPU"
msgstr ""
-#: config/i386/i386.opt:106
+#: config/i386/i386.opt:110
msgid "Return values of functions in FPU registers"
msgstr ""
-#: config/i386/i386.opt:110
+#: config/i386/i386.opt:114
msgid "Generate floating point mathematics using given instruction set"
msgstr ""
-#: config/i386/i386.opt:118 config/m68k/ieee.opt:25 config/ns32k/ns32k.opt:52
+#: config/i386/i386.opt:122 config/m68k/ieee.opt:25
msgid "Use IEEE math for fp comparisons"
msgstr ""
-#: config/i386/i386.opt:122
+#: config/i386/i386.opt:126
msgid "Inline all known string operations"
msgstr ""
-#: config/i386/i386.opt:130
+#: config/i386/i386.opt:134
msgid "Support MMX built-in functions"
msgstr ""
-#: config/i386/i386.opt:134
+#: config/i386/i386.opt:138
msgid "Use native (MS) bitfield layout"
msgstr ""
-#: config/i386/i386.opt:150
+#: config/i386/i386.opt:154
msgid "Omit the frame pointer in leaf functions"
msgstr ""
-#: config/i386/i386.opt:162
+#: config/i386/i386.opt:166
msgid "Attempt to keep stack aligned to this power of 2"
msgstr ""
-#: config/i386/i386.opt:166
+#: config/i386/i386.opt:170
msgid "Use push instructions to save outgoing arguments"
msgstr ""
-#: config/i386/i386.opt:170
+#: config/i386/i386.opt:174
msgid "Use red-zone in the x86-64 code"
msgstr ""
-#: config/i386/i386.opt:174
+#: config/i386/i386.opt:178
msgid "Number of registers used to pass integer arguments"
msgstr ""
-#: config/i386/i386.opt:178
+#: config/i386/i386.opt:182
msgid "Alternate calling convention"
msgstr ""
-#: config/i386/i386.opt:186
+#: config/i386/i386.opt:190
msgid "Support MMX and SSE built-in functions and code generation"
msgstr ""
-#: config/i386/i386.opt:190
+#: config/i386/i386.opt:194
msgid "Support MMX, SSE and SSE2 built-in functions and code generation"
msgstr ""
-#: config/i386/i386.opt:194
+#: config/i386/i386.opt:198
msgid "Support MMX, SSE, SSE2 and SSE3 built-in functions and code generation"
msgstr ""
-#: config/i386/i386.opt:198
+#: config/i386/i386.opt:202
+msgid "Use SSE register passing conventions for SF and DF mode"
+msgstr ""
+
+#: config/i386/i386.opt:206
msgid "Uninitialized locals in .bss"
msgstr ""
-#: config/i386/i386.opt:202
+#: config/i386/i386.opt:210
msgid "Enable stack probing"
msgstr ""
-#: config/i386/i386.opt:206
+#: config/i386/i386.opt:214
msgid "Use given thread-local storage dialect"
msgstr ""
-#: config/i386/i386.opt:210
+#: config/i386/i386.opt:218
#, c-format
msgid "Use direct references against %gs when accessing tls data"
msgstr ""
-#: config/i386/i386.opt:214 config/ia64/ia64.opt:97
-#: config/rs6000/rs6000.opt:199 config/s390/s390.opt:80
+#: config/i386/i386.opt:222 config/ia64/ia64.opt:97
+#: config/rs6000/rs6000.opt:199 config/s390/s390.opt:76
#: config/sparc/sparc.opt:96
msgid "Schedule code for given CPU"
msgstr ""
@@ -6812,14 +11544,6 @@ msgstr ""
msgid "Generate ELF output"
msgstr ""
-#: config/i860/i860.opt:24
-msgid "Generate code which uses the FPU"
-msgstr ""
-
-#: config/i860/i860.opt:28 config/i860/i860.opt:32
-msgid "Do not generate code which uses the FPU"
-msgstr ""
-
#: config/ia64/ia64.opt:3
msgid "Generate big endian code"
msgstr ""
@@ -6900,7 +11624,7 @@ msgstr ""
msgid "Enable earlier placing stop bits for better scheduling"
msgstr ""
-#: config/ia64/ia64.opt:89
+#: config/ia64/ia64.opt:89 config/pa/pa.opt:52
msgid "Specify range of registers to make fixed"
msgstr ""
@@ -6912,7 +11636,7 @@ msgstr ""
msgid "Generate LP64 code"
msgstr ""
-#: config/iq2000/iq2000.opt:24
+#: config/iq2000/iq2000.opt:24 config/ms1/ms1.opt:60
msgid "Specify CPU for code generation purposes"
msgstr ""
@@ -6920,7 +11644,7 @@ msgstr ""
msgid "Specify CPU for scheduling purposes"
msgstr ""
-#: config/iq2000/iq2000.opt:32 config/mips/mips.opt:74
+#: config/iq2000/iq2000.opt:32 config/mips/mips.opt:78
msgid "Use ROM instead of RAM"
msgstr ""
@@ -6932,20 +11656,32 @@ msgstr ""
msgid "No default crt0.o"
msgstr ""
-#: config/iq2000/iq2000.opt:45 config/mips/mips.opt:206
+#: config/iq2000/iq2000.opt:45 config/mips/mips.opt:210
msgid "Put uninitialized constants in ROM (needs -membedded-data)"
msgstr ""
-#: config/lynx.opt:24
-msgid "Support legacy multi-threading"
+#: config/m32c/m32c.opt:25 config/ms1/ms1.opt:32
+msgid "Use simulator runtime"
msgstr ""
-#: config/lynx.opt:28
-msgid "Use shared libraries"
+#: config/m32c/m32c.opt:29
+msgid "Compile code for R8C variants"
msgstr ""
-#: config/lynx.opt:32
-msgid "Support multi-threading"
+#: config/m32c/m32c.opt:33
+msgid "Compile code for M16C variants"
+msgstr ""
+
+#: config/m32c/m32c.opt:37
+msgid "Compile code for M32CM variants"
+msgstr ""
+
+#: config/m32c/m32c.opt:41
+msgid "Compile code for M32C variants"
+msgstr ""
+
+#: config/m32c/m32c.opt:45
+msgid "Number of memreg bytes (default: 16, range: 0..16)"
msgstr ""
#: config/m32r/m32r.opt:24
@@ -7278,148 +12014,152 @@ msgid ""
"operations"
msgstr ""
-#: config/mips/mips.opt:66
-msgid "Use big-endian byte order"
+#: config/mips/mips.opt:60
+msgid "Use MIPS-DSP instructions"
msgstr ""
#: config/mips/mips.opt:70
+msgid "Use big-endian byte order"
+msgstr ""
+
+#: config/mips/mips.opt:74
msgid "Use little-endian byte order"
msgstr ""
-#: config/mips/mips.opt:78
+#: config/mips/mips.opt:82
msgid "Use NewABI-style %reloc() assembly operators"
msgstr ""
-#: config/mips/mips.opt:82
+#: config/mips/mips.opt:86
msgid "Work around certain R4000 errata"
msgstr ""
-#: config/mips/mips.opt:86
+#: config/mips/mips.opt:90
msgid "Work around certain R4400 errata"
msgstr ""
-#: config/mips/mips.opt:90
+#: config/mips/mips.opt:94
msgid "Work around errata for early SB-1 revision 2 cores"
msgstr ""
-#: config/mips/mips.opt:94
+#: config/mips/mips.opt:98
msgid "Work around certain VR4120 errata"
msgstr ""
-#: config/mips/mips.opt:98
+#: config/mips/mips.opt:102
msgid "Work around VR4130 mflo/mfhi errata"
msgstr ""
-#: config/mips/mips.opt:102
+#: config/mips/mips.opt:106
msgid "Work around an early 4300 hardware bug"
msgstr ""
-#: config/mips/mips.opt:106
+#: config/mips/mips.opt:110
msgid "FP exceptions are enabled"
msgstr ""
-#: config/mips/mips.opt:110
+#: config/mips/mips.opt:114
msgid "Use 32-bit floating-point registers"
msgstr ""
-#: config/mips/mips.opt:114
+#: config/mips/mips.opt:118
msgid "Use 64-bit floating-point registers"
msgstr ""
-#: config/mips/mips.opt:118
+#: config/mips/mips.opt:122
msgid "Use FUNC to flush the cache before calling stack trampolines"
msgstr ""
-#: config/mips/mips.opt:122
+#: config/mips/mips.opt:126
msgid "Generate floating-point multiply-add instructions"
msgstr ""
-#: config/mips/mips.opt:126
+#: config/mips/mips.opt:130
msgid "Use 32-bit general registers"
msgstr ""
-#: config/mips/mips.opt:130
+#: config/mips/mips.opt:134
msgid "Use 64-bit general registers"
msgstr ""
-#: config/mips/mips.opt:134
+#: config/mips/mips.opt:138
msgid "Allow the use of hardware floating-point instructions"
msgstr ""
-#: config/mips/mips.opt:138
+#: config/mips/mips.opt:142
msgid "Generate code for ISA level N"
msgstr ""
-#: config/mips/mips.opt:142
+#: config/mips/mips.opt:146
msgid "Generate mips16 code"
msgstr ""
-#: config/mips/mips.opt:146
+#: config/mips/mips.opt:150
msgid "Use MIPS-3D instructions"
msgstr ""
-#: config/mips/mips.opt:150
+#: config/mips/mips.opt:154
msgid "Use indirect calls"
msgstr ""
-#: config/mips/mips.opt:154
+#: config/mips/mips.opt:158
msgid "Use a 32-bit long type"
msgstr ""
-#: config/mips/mips.opt:158
+#: config/mips/mips.opt:162
msgid "Use a 64-bit long type"
msgstr ""
-#: config/mips/mips.opt:162
+#: config/mips/mips.opt:166
msgid "Don't optimize block moves"
msgstr ""
-#: config/mips/mips.opt:166
+#: config/mips/mips.opt:170
msgid "Use the mips-tfile postpass"
msgstr ""
-#: config/mips/mips.opt:170
+#: config/mips/mips.opt:174
msgid "Do not use a cache-flushing function before calling stack trampolines"
msgstr ""
-#: config/mips/mips.opt:174
+#: config/mips/mips.opt:178
msgid "Generate normal-mode code"
msgstr ""
-#: config/mips/mips.opt:178
+#: config/mips/mips.opt:182
msgid "Do not use MIPS-3D instructions"
msgstr ""
-#: config/mips/mips.opt:182
+#: config/mips/mips.opt:186
msgid "Use paired-single floating-point instructions"
msgstr ""
-#: config/mips/mips.opt:186
+#: config/mips/mips.opt:190
msgid ""
"Restrict the use of hardware floating-point instructions to 32-bit operations"
msgstr ""
-#: config/mips/mips.opt:190
+#: config/mips/mips.opt:194
msgid "Prevent the use of all hardware floating-point instructions"
msgstr ""
-#: config/mips/mips.opt:194
+#: config/mips/mips.opt:198
msgid "Optimize lui/addiu address loads"
msgstr ""
-#: config/mips/mips.opt:198
+#: config/mips/mips.opt:202
msgid "Assume all symbols have 32-bit values"
msgstr ""
-#: config/mips/mips.opt:202
+#: config/mips/mips.opt:206
msgid "Optimize the output for PROCESSOR"
msgstr ""
-#: config/mips/mips.opt:210
+#: config/mips/mips.opt:214
msgid "Perform VR4130-specific alignment optimizations"
msgstr ""
-#: config/mips/mips.opt:214
+#: config/mips/mips.opt:218
msgid "Lift restrictions on GOT size"
msgstr ""
@@ -7509,80 +12249,21 @@ msgstr ""
msgid "Enable linker relaxations"
msgstr ""
-#: config/ns32k/ns32k.opt:24
-msgid "Optimize for 32032"
-msgstr ""
-
-#: config/ns32k/ns32k.opt:32
-msgid "Optimize for 32332"
-msgstr ""
-
-#: config/ns32k/ns32k.opt:36
-msgid "Use the 32381 fpu"
-msgstr ""
-
-#: config/ns32k/ns32k.opt:40
-msgid "Optimize for 32532"
-msgstr ""
-
-#: config/ns32k/ns32k.opt:44
-msgid "Use bit-field instructions"
-msgstr ""
-
-#: config/ns32k/ns32k.opt:48
-msgid "Generate code for high memory"
-msgstr ""
-
-#: config/ns32k/ns32k.opt:56
-msgid "Use multiply-accumulate fp instructions"
-msgstr ""
-
-#: config/ns32k/ns32k.opt:60
-msgid "Do not use bit-field instructions"
-msgstr ""
-
-#: config/ns32k/ns32k.opt:64
-msgid "Generate code for low memory"
-msgstr ""
-
-#: config/ns32k/ns32k.opt:68
-msgid "Do not use IEEE math for fp comparisons"
-msgstr ""
-
-#: config/ns32k/ns32k.opt:72
-msgid "Do not use multiply-accumulate fp instructions"
-msgstr ""
-
-#: config/ns32k/ns32k.opt:76
-msgid "Pass all arguments on the stack"
-msgstr ""
-
-#: config/ns32k/ns32k.opt:80
-msgid "Use the normal calling convention"
-msgstr ""
-
-#: config/ns32k/ns32k.opt:84
-msgid "Do not use register sb"
-msgstr ""
-
-#: config/ns32k/ns32k.opt:88
-msgid "Do not use the 'small register classes' kludge"
-msgstr ""
-
-#: config/ns32k/ns32k.opt:92
-msgid "Pass some arguments in registers"
+#: config/ms1/ms1.opt:24
+msgid "Generate multiply instructions"
msgstr ""
-#: config/ns32k/ns32k.opt:96
-msgid "Use an alternative calling convention"
+#: config/ms1/ms1.opt:28
+msgid "Use byte loads and stores when generating code."
msgstr ""
-#: config/ns32k/ns32k.opt:100
-msgid "Register sb is zero, use it for absolute addressing"
+#: config/ms1/ms1.opt:36
+msgid "Do not include crt0.o in the startup files"
msgstr ""
-#: config/ns32k/ns32k.opt:108
-msgid "Use the 'small register classes' kludge"
+#: config/ms1/ms1.opt:40 config/ms1/ms1.opt:44 config/ms1/ms1.opt:48
+#: config/ms1/ms1.opt:52 config/ms1/ms1.opt:56
+msgid "Internal debug switch"
msgstr ""
#: config/pa/pa-hpux.opt:24
@@ -7626,10 +12307,6 @@ msgstr ""
msgid "Generate fast indirect calls"
msgstr ""
-#: config/pa/pa.opt:52
-msgid "Specify range of registers to make fixed."
-msgstr ""
-
#: config/pa/pa.opt:56
msgid "Assume code will be assembled by GAS"
msgstr ""
@@ -7661,7 +12338,7 @@ msgstr ""
#: config/pa/pa.opt:101
msgid ""
"Specify CPU for scheduling purposes. Valid arguments are 700, 7100, 7100LC, "
-"7200, 7300, and 8000."
+"7200, 7300, and 8000"
msgstr ""
#: config/pa/pa.opt:113
@@ -7744,14 +12421,14 @@ msgstr ""
msgid "Use UNIX assembler syntax"
msgstr ""
-#: config/rs6000/aix.opt:25 config/rs6000/rs6000.opt:124
-msgid "Conform more closely to IBM XLC semantics"
-msgstr ""
-
#: config/rs6000/aix41.opt:25 config/rs6000/aix64.opt:33
msgid "Support message passing with the Parallel Environment"
msgstr ""
+#: config/rs6000/aix.opt:25 config/rs6000/rs6000.opt:124
+msgid "Conform more closely to IBM XLC semantics"
+msgstr ""
+
#: config/rs6000/aix64.opt:25
msgid "Compile for 64-bit pointers"
msgstr ""
@@ -7897,7 +12574,7 @@ msgid "Generate VRSAVE instructions when generating AltiVec code"
msgstr ""
#: config/rs6000/rs6000.opt:167
-msgid "Deprecated option. Use -mvrsave/-mno-vrsave instead."
+msgid "Deprecated option. Use -mvrsave/-mno-vrsave instead"
msgstr ""
#: config/rs6000/rs6000.opt:171
@@ -7941,7 +12618,7 @@ msgid "Warn about deprecated 'vector long ...' AltiVec type usage"
msgstr ""
#: config/rs6000/rs6000.opt:215
-msgid "Select GPR floating point method."
+msgid "Select GPR floating point method"
msgstr ""
#: config/rs6000/rs6000.opt:219
@@ -7989,12 +12666,15 @@ msgid "Produce big endian code"
msgstr ""
#: config/rs6000/sysv4.opt:71 config/rs6000/sysv4.opt:75
-#: config/rs6000/sysv4.opt:79 config/rs6000/sysv4.opt:84
-#: config/rs6000/sysv4.opt:101 config/rs6000/sysv4.opt:129
-#: config/rs6000/sysv4.opt:141
+#: config/rs6000/sysv4.opt:84 config/rs6000/sysv4.opt:101
+#: config/rs6000/sysv4.opt:129 config/rs6000/sysv4.opt:141
msgid "no description yet"
msgstr ""
+#: config/rs6000/sysv4.opt:79
+msgid "Assume all variable arg functions are prototyped"
+msgstr ""
+
#: config/rs6000/sysv4.opt:88
msgid "Use EABI"
msgstr ""
@@ -8087,24 +12767,28 @@ msgid ""
"exceeds the given limit"
msgstr ""
-#: config/s390/s390.opt:76
-msgid "Enable tpf OS tracing code"
+#: config/s390/s390.opt:80
+msgid "mvcle use"
msgstr ""
#: config/s390/s390.opt:84
-msgid "mvcle use"
+msgid "Warn if a function uses alloca or creates an array with dynamic size"
msgstr ""
#: config/s390/s390.opt:88
-msgid "Warn if a function uses alloca or creates an array with dynamic size"
+msgid "Warn if a single function's framesize exceeds the given framesize"
msgstr ""
#: config/s390/s390.opt:92
-msgid "Warn if a single function's framesize exceeds the given framesize"
+msgid "z/Architecture"
msgstr ""
-#: config/s390/s390.opt:96
-msgid "z/Architecture"
+#: config/s390/tpf.opt:24
+msgid "Enable TPF-OS tracing code"
+msgstr ""
+
+#: config/s390/tpf.opt:28
+msgid "Specify main object for TPF-OS"
msgstr ""
#: config/sh/sh.opt:45
@@ -8522,105 +13206,119 @@ msgid "Warn about underflow of numerical constant expressions"
msgstr ""
#: fortran/lang.opt:74
-msgid "Set the default double precision kind to an 8 byte wide type"
+msgid ""
+"Do not treat local variables and COMMON blocks as if they were named in SAVE "
+"statements"
msgstr ""
#: fortran/lang.opt:78
-msgid "Set the default integer kind to an 8 byte wide type"
+msgid "Specify that backslash in string introduces an escape character"
msgstr ""
#: fortran/lang.opt:82
-msgid "Set the default real kind to an 8 byte wide type"
+msgid "Set the default double precision kind to an 8 byte wide type"
msgstr ""
#: fortran/lang.opt:86
-msgid "Allow dollar signs in entity names"
+msgid "Set the default integer kind to an 8 byte wide type"
msgstr ""
#: fortran/lang.opt:90
-msgid "Specify that backslash in string introduces an escape character"
+msgid "Set the default real kind to an 8 byte wide type"
msgstr ""
#: fortran/lang.opt:94
-msgid "Display the code tree after parsing."
+msgid "Ignore 'D' in column one in fixed form"
msgstr ""
#: fortran/lang.opt:98
-msgid "Use f2c calling convention."
+msgid "Treat lines with 'D' in column one as comments"
msgstr ""
#: fortran/lang.opt:102
-msgid "Assume that the source file is fixed form"
+msgid "Allow dollar signs in entity names"
msgstr ""
#: fortran/lang.opt:106
-msgid "Assume that the source file is free form"
+msgid "Display the code tree after parsing"
msgstr ""
#: fortran/lang.opt:110
-msgid "Append underscores to externally visible names"
+msgid "Use f2c calling convention"
msgstr ""
#: fortran/lang.opt:114
-msgid "Append a second underscore if the name already contains an underscore"
+msgid "Assume that the source file is fixed form"
msgstr ""
#: fortran/lang.opt:118
-msgid ""
-"Specify that no implicit typing is allowed, unless overridden by explicit "
-"IMPLICIT statements"
+msgid "Assume that the source file is free form"
msgstr ""
#: fortran/lang.opt:122
-msgid "Allow arbitrary character line width in fixed mode"
+msgid "Append underscores to externally visible names"
msgstr ""
#: fortran/lang.opt:126
-msgid "Use n as character line width in fixed mode"
+msgid "Append a second underscore if the name already contains an underscore"
msgstr ""
#: fortran/lang.opt:130
-msgid "Maximum identifier length."
+msgid ""
+"Specify that no implicit typing is allowed, unless overridden by explicit "
+"IMPLICIT statements"
msgstr ""
#: fortran/lang.opt:134
-msgid "Size in bytes of the largest array that will be put on the stack"
+msgid "Allow arbitrary character line width in fixed mode"
msgstr ""
#: fortran/lang.opt:138
-msgid "Set default accessibility of module entities to PRIVATE"
+msgid "Use n as character line width in fixed mode"
msgstr ""
#: fortran/lang.opt:142
-msgid "Don't generate code, just do syntax and semantics checking"
+msgid "Maximum identifier length"
msgstr ""
#: fortran/lang.opt:146
-msgid "Try to layout derived types as compact as possible"
+msgid "Size in bytes of the largest array that will be put on the stack"
msgstr ""
#: fortran/lang.opt:150
-msgid "Copy array sections into a contiguous block on procedure entry"
+msgid "Set default accessibility of module entities to PRIVATE"
msgstr ""
#: fortran/lang.opt:154
-msgid "Set the kind for a real with the 'q' exponent to 'n'"
+msgid "Don't generate code, just do syntax and semantics checking"
msgstr ""
#: fortran/lang.opt:158
-msgid "Conform to the ISO Fortran 95 standard."
+msgid "Try to layout derived types as compact as possible"
msgstr ""
#: fortran/lang.opt:162
-msgid "Conform to the ISO Fortran 2003 standard."
+msgid "Copy array sections into a contiguous block on procedure entry"
msgstr ""
#: fortran/lang.opt:166
-msgid "Conform nothing in particular."
+msgid "Set the kind for a real with the 'q' exponent to 'n'"
msgstr ""
#: fortran/lang.opt:170
-msgid "Accept extensions to support legacy code."
+msgid "Conform to the ISO Fortran 95 standard"
+msgstr ""
+
+#: fortran/lang.opt:174
+msgid "Conform to the ISO Fortran 2003 standard"
+msgstr ""
+
+#: fortran/lang.opt:178
+msgid "Conform nothing in particular"
+msgstr ""
+
+#: fortran/lang.opt:182
+msgid "Accept extensions to support legacy code"
msgstr ""
#: java/lang.opt:66
@@ -8745,9 +13443,15 @@ msgstr ""
msgid "%qs attribute only applies to function types"
msgstr ""
-#: bb-reorder.c:1866
+#: bb-reorder.c:1871
+#, gcc-internal-format
+msgid "multiple hot/cold transitions found (bb %i)"
+msgstr ""
+
+#: bt-load.c:1504
#, gcc-internal-format
-msgid "Multiple hot/cold transitions found (bb %i)"
+msgid ""
+"branch target register load optimization is not intended to be run twice"
msgstr ""
#: builtins.c:366
@@ -8755,47 +13459,47 @@ msgstr ""
msgid "offset outside bounds of constant string"
msgstr ""
-#: builtins.c:953
+#: builtins.c:966
#, gcc-internal-format
msgid "second argument to %<__builtin_prefetch%> must be a constant"
msgstr ""
-#: builtins.c:960
+#: builtins.c:973
#, gcc-internal-format
msgid "invalid second argument to %<__builtin_prefetch%>; using zero"
msgstr ""
-#: builtins.c:968
+#: builtins.c:981
#, gcc-internal-format
msgid "third argument to %<__builtin_prefetch%> must be a constant"
msgstr ""
-#: builtins.c:975
+#: builtins.c:988
#, gcc-internal-format
msgid "invalid third argument to %<__builtin_prefetch%>; using zero"
msgstr ""
-#: builtins.c:3960
+#: builtins.c:4078
#, gcc-internal-format
msgid "argument of %<__builtin_args_info%> must be constant"
msgstr ""
-#: builtins.c:3966
+#: builtins.c:4084
#, gcc-internal-format
msgid "argument of %<__builtin_args_info%> out of range"
msgstr ""
-#: builtins.c:3972
+#: builtins.c:4090
#, gcc-internal-format
msgid "missing argument in %<__builtin_args_info%>"
msgstr ""
-#: builtins.c:4068 gimplify.c:1774
+#: builtins.c:4186 gimplify.c:1776
#, gcc-internal-format
msgid "too few arguments to function %<va_start%>"
msgstr ""
-#: builtins.c:4231
+#: builtins.c:4349
#, gcc-internal-format
msgid "first argument to %<va_arg%> not of type %<va_list%>"
msgstr ""
@@ -8803,86 +13507,86 @@ msgstr ""
#. Unfortunately, this is merely undefined, rather than a constraint
#. violation, so we cannot make this an error. If this call is never
#. executed, the program is still strictly conforming.
-#: builtins.c:4245
+#: builtins.c:4363
#, gcc-internal-format
msgid "%qT is promoted to %qT when passed through %<...%>"
msgstr ""
-#: builtins.c:4250
+#: builtins.c:4368
#, gcc-internal-format
msgid "(so you should pass %qT not %qT to %<va_arg%>)"
msgstr ""
#. We can, however, treat "undefined" any way we please.
#. Call abort to encourage the user to fix the program.
-#: builtins.c:4256 c-typeck.c:2054
+#: builtins.c:4374 c-typeck.c:2076
#, gcc-internal-format
msgid "if this code is reached, the program will abort"
msgstr ""
-#: builtins.c:4375
+#: builtins.c:4493
#, gcc-internal-format
msgid "invalid argument to %<__builtin_frame_address%>"
msgstr ""
-#: builtins.c:4377
+#: builtins.c:4495
#, gcc-internal-format
msgid "invalid argument to %<__builtin_return_address%>"
msgstr ""
-#: builtins.c:4390
+#: builtins.c:4508
#, gcc-internal-format
msgid "unsupported argument to %<__builtin_frame_address%>"
msgstr ""
-#: builtins.c:4392
+#: builtins.c:4510
#, gcc-internal-format
msgid "unsupported argument to %<__builtin_return_address%>"
msgstr ""
-#: builtins.c:4495
+#: builtins.c:4613
#, gcc-internal-format
msgid "second argument to %<__builtin_expect%> must be a constant"
msgstr ""
-#: builtins.c:5945
+#: builtins.c:6063
#, gcc-internal-format
msgid "%<__builtin_longjmp%> second argument must be 1"
msgstr ""
-#: builtins.c:6492
+#: builtins.c:6610
#, gcc-internal-format
msgid "target format does not support infinity"
msgstr ""
-#: builtins.c:8322 builtins.c:8416
+#: builtins.c:8439 builtins.c:8533
#, gcc-internal-format
msgid "too few arguments to function %qs"
msgstr ""
-#: builtins.c:8328 builtins.c:8422
+#: builtins.c:8445 builtins.c:8539
#, gcc-internal-format
msgid "too many arguments to function %qs"
msgstr ""
-#: builtins.c:8334 builtins.c:8447
+#: builtins.c:8451 builtins.c:8564
#, gcc-internal-format
msgid "non-floating-point argument to function %qs"
msgstr ""
-#: builtins.c:9542
+#: builtins.c:9656
#, gcc-internal-format
msgid "%<va_start%> used in function with fixed args"
msgstr ""
#. Evidently an out of date version of <stdarg.h>; can't validate
#. va_start's second argument, but can still work as intended.
-#: builtins.c:9549
+#: builtins.c:9663
#, gcc-internal-format
msgid "%<__builtin_next_arg%> called without an argument"
msgstr ""
-#: builtins.c:9564
+#: builtins.c:9678
#, gcc-internal-format
msgid "%<va_start%> used with too many arguments"
msgstr ""
@@ -8892,546 +13596,546 @@ msgstr ""
#. argument. We just warn and set the arg to be the last
#. argument so that we will get wrong-code because of
#. it.
-#: builtins.c:9584
+#: builtins.c:9698
#, gcc-internal-format
msgid "second parameter of %<va_start%> not last named argument"
msgstr ""
-#: builtins.c:9693
+#: builtins.c:9807
#, gcc-internal-format
msgid "%Hfirst argument of %D must be a pointer, second integer constant"
msgstr ""
-#: builtins.c:9706
+#: builtins.c:9820
#, gcc-internal-format
msgid "%Hlast argument of %D is not integer constant between 0 and 3"
msgstr ""
-#: builtins.c:9752 builtins.c:9905 builtins.c:9970
+#: builtins.c:9866 builtins.c:10019 builtins.c:10084
#, gcc-internal-format
msgid "%Hcall to %D will always overflow destination buffer"
msgstr ""
-#: c-common.c:825
+#: c-common.c:828
#, gcc-internal-format
msgid "%qD is not defined outside of function scope"
msgstr ""
-#: c-common.c:846
+#: c-common.c:849
#, gcc-internal-format
msgid ""
"string length %qd is greater than the length %qd ISO C%d compilers are "
"required to support"
msgstr ""
-#: c-common.c:887
+#: c-common.c:890
#, gcc-internal-format
msgid "overflow in constant expression"
msgstr ""
-#: c-common.c:907
+#: c-common.c:910
#, gcc-internal-format
msgid "integer overflow in expression"
msgstr ""
-#: c-common.c:916
+#: c-common.c:919
#, gcc-internal-format
msgid "floating point overflow in expression"
msgstr ""
-#: c-common.c:922
+#: c-common.c:925
#, gcc-internal-format
msgid "vector overflow in expression"
msgstr ""
#. This detects cases like converting -129 or 256 to unsigned char.
-#: c-common.c:944
+#: c-common.c:947
#, gcc-internal-format
msgid "large integer implicitly truncated to unsigned type"
msgstr ""
-#: c-common.c:947
+#: c-common.c:950
#, gcc-internal-format
msgid "negative integer implicitly converted to unsigned type"
msgstr ""
-#: c-common.c:1005
+#: c-common.c:1008
#, gcc-internal-format
msgid "overflow in implicit constant conversion"
msgstr ""
-#: c-common.c:1141
+#: c-common.c:1144
#, gcc-internal-format
msgid "operation on %qE may be undefined"
msgstr ""
-#: c-common.c:1427
+#: c-common.c:1430
#, gcc-internal-format
msgid "case label does not reduce to an integer constant"
msgstr ""
-#: c-common.c:1467
+#: c-common.c:1470
#, gcc-internal-format
msgid "case label value is less than minimum value for type"
msgstr ""
-#: c-common.c:1475
+#: c-common.c:1478
#, gcc-internal-format
msgid "case label value exceeds maximum value for type"
msgstr ""
-#: c-common.c:1483
+#: c-common.c:1486
#, gcc-internal-format
msgid "lower value in case label range less than minimum value for type"
msgstr ""
-#: c-common.c:1492
+#: c-common.c:1495
#, gcc-internal-format
msgid "upper value in case label range exceeds maximum value for type"
msgstr ""
-#: c-common.c:1832
+#: c-common.c:1835
#, gcc-internal-format
msgid "invalid truth-value expression"
msgstr ""
-#: c-common.c:1880
+#: c-common.c:1883
#, gcc-internal-format
msgid "invalid operands to binary %s"
msgstr ""
-#: c-common.c:2115
+#: c-common.c:2118
#, gcc-internal-format
msgid "comparison is always false due to limited range of data type"
msgstr ""
-#: c-common.c:2117
+#: c-common.c:2120
#, gcc-internal-format
msgid "comparison is always true due to limited range of data type"
msgstr ""
-#: c-common.c:2187
+#: c-common.c:2190
#, gcc-internal-format
msgid "comparison of unsigned expression >= 0 is always true"
msgstr ""
-#: c-common.c:2196
+#: c-common.c:2199
#, gcc-internal-format
msgid "comparison of unsigned expression < 0 is always false"
msgstr ""
-#: c-common.c:2238
+#: c-common.c:2241
#, gcc-internal-format
msgid "pointer of type %<void *%> used in arithmetic"
msgstr ""
-#: c-common.c:2244
+#: c-common.c:2247
#, gcc-internal-format
msgid "pointer to a function used in arithmetic"
msgstr ""
-#: c-common.c:2250
+#: c-common.c:2253
#, gcc-internal-format
msgid "pointer to member function used in arithmetic"
msgstr ""
#. Common Ada/Pascal programmer's mistake. We always warn
#. about this since it is so bad.
-#: c-common.c:2376
+#: c-common.c:2379
#, gcc-internal-format
msgid "the address of %qD, will always evaluate as %<true%>"
msgstr ""
-#: c-common.c:2473
+#: c-common.c:2476
#, gcc-internal-format
msgid "suggest parentheses around assignment used as truth value"
msgstr ""
-#: c-common.c:2541 c-common.c:2581
+#: c-common.c:2544 c-common.c:2584
#, gcc-internal-format
msgid "invalid use of %<restrict%>"
msgstr ""
-#: c-common.c:2797
+#: c-common.c:2800
#, gcc-internal-format
msgid "invalid application of %<sizeof%> to a function type"
msgstr ""
-#: c-common.c:2807
+#: c-common.c:2810
#, gcc-internal-format
msgid "invalid application of %qs to a void type"
msgstr ""
-#: c-common.c:2813
+#: c-common.c:2816
#, gcc-internal-format
msgid "invalid application of %qs to incomplete type %qT "
msgstr ""
-#: c-common.c:2854
+#: c-common.c:2857
#, gcc-internal-format
msgid "%<__alignof%> applied to a bit-field"
msgstr ""
-#: c-common.c:3409
+#: c-common.c:3388
#, gcc-internal-format
msgid "cannot disable built-in function %qs"
msgstr ""
-#: c-common.c:3600
+#: c-common.c:3576
#, gcc-internal-format
msgid "pointers are not permitted as case values"
msgstr ""
-#: c-common.c:3606
+#: c-common.c:3582
#, gcc-internal-format
msgid "range expressions in switch statements are non-standard"
msgstr ""
-#: c-common.c:3631
+#: c-common.c:3607
#, gcc-internal-format
msgid "empty range specified"
msgstr ""
-#: c-common.c:3690
+#: c-common.c:3666
#, gcc-internal-format
msgid "duplicate (or overlapping) case value"
msgstr ""
-#: c-common.c:3691
+#: c-common.c:3667
#, gcc-internal-format
msgid "%Jthis is the first entry overlapping that value"
msgstr ""
-#: c-common.c:3695
+#: c-common.c:3671
#, gcc-internal-format
msgid "duplicate case value"
msgstr ""
-#: c-common.c:3696
+#: c-common.c:3672
#, gcc-internal-format
msgid "%Jpreviously used here"
msgstr ""
-#: c-common.c:3700
+#: c-common.c:3676
#, gcc-internal-format
msgid "multiple default labels in one switch"
msgstr ""
-#: c-common.c:3701
+#: c-common.c:3677
#, gcc-internal-format
msgid "%Jthis is the first default label"
msgstr ""
-#: c-common.c:3750
+#: c-common.c:3726
#, gcc-internal-format
msgid "%Jcase value %qs not in enumerated type"
msgstr ""
-#: c-common.c:3753
+#: c-common.c:3729
#, gcc-internal-format
msgid "%Jcase value %qs not in enumerated type %qT"
msgstr ""
-#: c-common.c:3810
+#: c-common.c:3786
#, gcc-internal-format
msgid "%Hswitch missing default case"
msgstr ""
#. Warn if there are enumerators that don't correspond to
#. case expressions.
-#: c-common.c:3845
+#: c-common.c:3846
#, gcc-internal-format
msgid "%Henumeration value %qE not handled in switch"
msgstr ""
-#: c-common.c:3872
+#: c-common.c:3873
#, gcc-internal-format
msgid "taking the address of a label is non-standard"
msgstr ""
-#: c-common.c:4041 c-common.c:4060 c-common.c:4078 c-common.c:4105
-#: c-common.c:4124 c-common.c:4147 c-common.c:4171 c-common.c:4197
-#: c-common.c:4245 c-common.c:4272 c-common.c:4316 c-common.c:4344
-#: c-common.c:4372 c-common.c:4391 c-common.c:4717 c-common.c:4748
-#: c-common.c:4844 c-common.c:4910 c-common.c:4928 c-common.c:4974
-#: c-common.c:5044 c-common.c:5068 c-common.c:5353 c-common.c:5376
-#: c-common.c:5415
+#: c-common.c:4042 c-common.c:4061 c-common.c:4079 c-common.c:4106
+#: c-common.c:4125 c-common.c:4148 c-common.c:4169 c-common.c:4194
+#: c-common.c:4220 c-common.c:4268 c-common.c:4295 c-common.c:4339
+#: c-common.c:4367 c-common.c:4395 c-common.c:4414 c-common.c:4740
+#: c-common.c:4771 c-common.c:4867 c-common.c:4933 c-common.c:4951
+#: c-common.c:4997 c-common.c:5067 c-common.c:5091 c-common.c:5378
+#: c-common.c:5401 c-common.c:5440
#, gcc-internal-format
msgid "%qE attribute ignored"
msgstr ""
-#: c-common.c:4226
+#: c-common.c:4249
#, gcc-internal-format
msgid "%qE attribute have effect only on public objects"
msgstr ""
-#: c-common.c:4429
+#: c-common.c:4452
#, gcc-internal-format
msgid "unknown machine mode %qs"
msgstr ""
-#: c-common.c:4449
+#: c-common.c:4472
#, gcc-internal-format
msgid "specifying vector types with __attribute__ ((mode)) is deprecated"
msgstr ""
-#: c-common.c:4452
+#: c-common.c:4475
#, gcc-internal-format
msgid "use __attribute__ ((vector_size)) instead"
msgstr ""
-#: c-common.c:4461
+#: c-common.c:4484
#, gcc-internal-format
msgid "unable to emulate %qs"
msgstr ""
-#: c-common.c:4471
+#: c-common.c:4494
#, gcc-internal-format
msgid "invalid pointer mode %qs"
msgstr ""
-#: c-common.c:4486
+#: c-common.c:4509
#, gcc-internal-format
msgid "no data type for mode %qs"
msgstr ""
-#: c-common.c:4496
+#: c-common.c:4519
#, gcc-internal-format
msgid "cannot use mode %qs for enumeral types"
msgstr ""
-#: c-common.c:4520
+#: c-common.c:4543
#, gcc-internal-format
msgid "mode %qs applied to inappropriate type"
msgstr ""
-#: c-common.c:4551
+#: c-common.c:4574
#, gcc-internal-format
msgid "%Jsection attribute cannot be specified for local variables"
msgstr ""
-#: c-common.c:4562
+#: c-common.c:4585
#, gcc-internal-format
-msgid "%Jsection of %qD conflicts with previous declaration"
+msgid "section of %q+D conflicts with previous declaration"
msgstr ""
-#: c-common.c:4571
+#: c-common.c:4594
#, gcc-internal-format
-msgid "%Jsection attribute not allowed for %qD"
+msgid "section attribute not allowed for %q+D"
msgstr ""
-#: c-common.c:4577
+#: c-common.c:4600
#, gcc-internal-format
msgid "%Jsection attributes are not supported for this target"
msgstr ""
-#: c-common.c:4609
+#: c-common.c:4632
#, gcc-internal-format
msgid "requested alignment is not a constant"
msgstr ""
-#: c-common.c:4614
+#: c-common.c:4637
#, gcc-internal-format
msgid "requested alignment is not a power of 2"
msgstr ""
-#: c-common.c:4619
+#: c-common.c:4642
#, gcc-internal-format
msgid "requested alignment is too large"
msgstr ""
-#: c-common.c:4645
+#: c-common.c:4668
#, gcc-internal-format
-msgid "%Jalignment may not be specified for %qD"
+msgid "alignment may not be specified for %q+D"
msgstr ""
-#: c-common.c:4683
+#: c-common.c:4706
#, gcc-internal-format
-msgid "%J%qD defined both normally and as an alias"
+msgid "%q+D defined both normally and as an alias"
msgstr ""
-#: c-common.c:4699
+#: c-common.c:4722
#, gcc-internal-format
msgid "alias argument not a string"
msgstr ""
-#: c-common.c:4741
+#: c-common.c:4764
#, gcc-internal-format
msgid "%qE attribute ignored on non-class types"
msgstr ""
-#: c-common.c:4754
+#: c-common.c:4777
#, gcc-internal-format
msgid "visibility argument not a string"
msgstr ""
-#: c-common.c:4766
+#: c-common.c:4789
#, gcc-internal-format
msgid "%qE attribute ignored on types"
msgstr ""
-#: c-common.c:4781
+#: c-common.c:4804
#, gcc-internal-format
msgid ""
"visibility argument must be one of \"default\", \"hidden\", \"protected\" or "
"\"internal\""
msgstr ""
-#: c-common.c:4852
+#: c-common.c:4875
#, gcc-internal-format
msgid "tls_model argument not a string"
msgstr ""
-#: c-common.c:4865
+#: c-common.c:4888
#, gcc-internal-format
msgid ""
"tls_model argument must be one of \"local-exec\", \"initial-exec\", \"local-"
"dynamic\" or \"global-dynamic\""
msgstr ""
-#: c-common.c:4884 c-common.c:4948
+#: c-common.c:4907 c-common.c:4971
#, gcc-internal-format
msgid "%J%qE attribute applies only to functions"
msgstr ""
-#: c-common.c:4889 c-common.c:4953
+#: c-common.c:4912 c-common.c:4976
#, gcc-internal-format
msgid "%Jcan%'t set %qE attribute after definition"
msgstr ""
-#: c-common.c:5042
+#: c-common.c:5065
#, gcc-internal-format
msgid "%qE attribute ignored for %qE"
msgstr ""
-#: c-common.c:5097
+#: c-common.c:5120
#, gcc-internal-format
msgid "invalid vector type for attribute %qE"
msgstr ""
-#: c-common.c:5105
+#: c-common.c:5128
#, gcc-internal-format
msgid "number of components of the vector not a power of two"
msgstr ""
-#: c-common.c:5133
+#: c-common.c:5156
#, gcc-internal-format
msgid "nonnull attribute without arguments on a non-prototype"
msgstr ""
-#: c-common.c:5148
+#: c-common.c:5171
#, gcc-internal-format
msgid "nonnull argument has invalid operand number (argument %lu)"
msgstr ""
-#: c-common.c:5167
+#: c-common.c:5190
#, gcc-internal-format
msgid ""
"nonnull argument with out-of-range operand number (argument %lu, operand %lu)"
msgstr ""
-#: c-common.c:5175
+#: c-common.c:5198
#, gcc-internal-format
msgid ""
"nonnull argument references non-pointer operand (argument %lu, operand %lu)"
msgstr ""
-#: c-common.c:5237 c-common.c:5259
+#: c-common.c:5261 c-common.c:5284
#, gcc-internal-format
msgid "not enough variable arguments to fit a sentinel"
msgstr ""
-#: c-common.c:5280
+#: c-common.c:5305
#, gcc-internal-format
msgid "missing sentinel in function call"
msgstr ""
-#: c-common.c:5322
+#: c-common.c:5347
#, gcc-internal-format
msgid "null argument where non-null required (argument %lu)"
msgstr ""
-#: c-common.c:5387
+#: c-common.c:5412
#, gcc-internal-format
msgid "cleanup argument not an identifier"
msgstr ""
-#: c-common.c:5394
+#: c-common.c:5419
#, gcc-internal-format
msgid "cleanup argument not a function"
msgstr ""
-#: c-common.c:5433
+#: c-common.c:5458
#, gcc-internal-format
msgid "%qE attribute requires prototypes with named arguments"
msgstr ""
-#: c-common.c:5444
+#: c-common.c:5469
#, gcc-internal-format
msgid "%qE attribute only applies to variadic functions"
msgstr ""
-#: c-common.c:5455
+#: c-common.c:5480
#, gcc-internal-format
msgid "requested position is not an integer constant"
msgstr ""
-#: c-common.c:5462
+#: c-common.c:5487
#, gcc-internal-format
msgid "requested position is less than zero"
msgstr ""
-#: c-common.c:5764
+#: c-common.c:5789
#, gcc-internal-format
msgid ""
"%Hignoring return value of %qD, declared with attribute warn_unused_result"
msgstr ""
-#: c-common.c:5768
+#: c-common.c:5793
#, gcc-internal-format
msgid ""
"%Hignoring return value of function declared with attribute "
"warn_unused_result"
msgstr ""
-#: c-common.c:5828 cp/typeck.c:4171
+#: c-common.c:5853 cp/typeck.c:4169
#, gcc-internal-format
msgid "attempt to take address of bit-field structure member %qD"
msgstr ""
-#: c-common.c:5875
+#: c-common.c:5900
#, gcc-internal-format
msgid "invalid lvalue in assignment"
msgstr ""
-#: c-common.c:5878
+#: c-common.c:5903
#, gcc-internal-format
msgid "invalid lvalue in increment"
msgstr ""
-#: c-common.c:5881
+#: c-common.c:5906
#, gcc-internal-format
msgid "invalid lvalue in decrement"
msgstr ""
-#: c-common.c:5884
+#: c-common.c:5909
#, gcc-internal-format
msgid "invalid lvalue in unary %<&%>"
msgstr ""
-#: c-common.c:5887
+#: c-common.c:5912
#, gcc-internal-format
msgid "invalid lvalue in asm statement"
msgstr ""
-#: c-common.c:6009 c-common.c:6058 c-typeck.c:2315
+#: c-common.c:6040 c-common.c:6089 c-typeck.c:2334
#, gcc-internal-format
msgid "too few arguments to function %qE"
msgstr ""
#. ??? This should not be an error when inlining calls to
#. unprototyped functions.
-#: c-common.c:6026 c-typeck.c:3942
+#: c-common.c:6057 c-typeck.c:4000
#, gcc-internal-format
msgid "incompatible type for argument %d of %qE"
msgstr ""
@@ -9441,8 +14145,8 @@ msgstr ""
#. an unprototyped function, it is compile-time undefined;
#. making it a constraint in that case was rejected in
#. DR#252.
-#: c-convert.c:96 c-typeck.c:1465 c-typeck.c:3617 cp/typeck.c:1367
-#: cp/typeck.c:5886 fortran/convert.c:89 treelang/tree-convert.c:79
+#: c-convert.c:96 c-typeck.c:1487 c-typeck.c:3641 cp/typeck.c:1366
+#: cp/typeck.c:5908 fortran/convert.c:89 treelang/tree-convert.c:79
#, gcc-internal-format
msgid "void value not ignored as it ought to be"
msgstr ""
@@ -9453,119 +14157,118 @@ msgstr ""
msgid "conversion to non-scalar type requested"
msgstr ""
-#: c-decl.c:563
+#: c-decl.c:564
#, gcc-internal-format
-msgid "%Jarray %qD assumed to have one element"
+msgid "array %q+D assumed to have one element"
msgstr ""
-#: c-decl.c:668
+#: c-decl.c:669
#, gcc-internal-format
msgid "GCC supports only %u nested scopes"
msgstr ""
-#: c-decl.c:754
+#: c-decl.c:755 cp/decl.c:355 java/decl.c:1685
#, gcc-internal-format
-msgid "%Jlabel %qD used but not defined"
+msgid "label %q+D used but not defined"
msgstr ""
-#: c-decl.c:760
+#: c-decl.c:761 cp/decl.c:366 java/decl.c:1690
#, gcc-internal-format
-msgid "%Jlabel %qD defined but not used"
+msgid "label %q+D defined but not used"
msgstr ""
-#: c-decl.c:762
+#: c-decl.c:763
#, gcc-internal-format
-msgid "%Jlabel %qD declared but not defined"
+msgid "label %q+D declared but not defined"
msgstr ""
-#: c-decl.c:797
+#: c-decl.c:798
#, gcc-internal-format
-msgid "%Jnested function %qD declared but never defined"
+msgid "nested function %q+D declared but never defined"
msgstr ""
-#: c-decl.c:810 cp/decl.c:560
+#: c-decl.c:811 cp/decl.c:560
#, gcc-internal-format
-msgid "%Junused variable %qD"
+msgid "unused variable %q+D"
msgstr ""
-#: c-decl.c:814
+#: c-decl.c:815
#, gcc-internal-format
-msgid "%Jtype of array %qD completed incompatibly with implicit initialization"
+msgid "type of array %q+D completed incompatibly with implicit initialization"
msgstr ""
-#: c-decl.c:1048
+#: c-decl.c:1049
#, gcc-internal-format
msgid ""
"a parameter list with an ellipsis can%'t match an empty parameter name list "
"declaration"
msgstr ""
-#: c-decl.c:1055
+#: c-decl.c:1056
#, gcc-internal-format
msgid ""
"an argument type that has a default promotion can%'t match an empty "
"parameter name list declaration"
msgstr ""
-#: c-decl.c:1090
+#: c-decl.c:1091
#, gcc-internal-format
msgid ""
-"%Jprototype for %qD declares more arguments than previous old-style "
-"definition"
+"prototype for %q+D declares more arguments than previous old-style definition"
msgstr ""
-#: c-decl.c:1096
+#: c-decl.c:1097
#, gcc-internal-format
msgid ""
-"%Jprototype for %qD declares fewer arguments than previous old-style "
+"prototype for %q+D declares fewer arguments than previous old-style "
"definition"
msgstr ""
-#: c-decl.c:1105
+#: c-decl.c:1106
#, gcc-internal-format
-msgid "%Jprototype for %qD declares argument %d with incompatible type"
+msgid "prototype for %q+D declares argument %d with incompatible type"
msgstr ""
#. If we get here, no errors were found, but do issue a warning
#. for this poor-style construct.
-#: c-decl.c:1118
+#: c-decl.c:1119
#, gcc-internal-format
-msgid "%Jprototype for %qD follows non-prototype definition"
+msgid "prototype for %q+D follows non-prototype definition"
msgstr ""
-#: c-decl.c:1133
+#: c-decl.c:1134
#, gcc-internal-format
-msgid "%Jprevious definition of %qD was here"
+msgid "previous definition of %q+D was here"
msgstr ""
-#: c-decl.c:1135
+#: c-decl.c:1136
#, gcc-internal-format
-msgid "%Jprevious implicit declaration of %qD was here"
+msgid "previous implicit declaration of %q+D was here"
msgstr ""
-#: c-decl.c:1137
+#: c-decl.c:1138
#, gcc-internal-format
-msgid "%Jprevious declaration of %qD was here"
+msgid "previous declaration of %q+D was here"
msgstr ""
-#: c-decl.c:1177
+#: c-decl.c:1178
#, gcc-internal-format
-msgid "%J%qD redeclared as different kind of symbol"
+msgid "%q+D redeclared as different kind of symbol"
msgstr ""
#: c-decl.c:1182
#, gcc-internal-format
-msgid "%Jbuilt-in function %qD declared as non-function"
+msgid "built-in function %q+D declared as non-function"
msgstr ""
-#: c-decl.c:1185 c-decl.c:1301 c-decl.c:1903
+#: c-decl.c:1185 c-decl.c:1301 c-decl.c:1921
#, gcc-internal-format
-msgid "%Jdeclaration of %qD shadows a built-in function"
+msgid "declaration of %q+D shadows a built-in function"
msgstr ""
#: c-decl.c:1194
#, gcc-internal-format
-msgid "%Jredeclaration of enumerator %qD"
+msgid "redeclaration of enumerator %q+D"
msgstr ""
#. If types don't match for a built-in, throw away the
@@ -9573,469 +14276,468 @@ msgstr ""
#. won't print anything.
#: c-decl.c:1215
#, gcc-internal-format
-msgid "%Jconflicting types for built-in function %qD"
+msgid "conflicting types for built-in function %q+D"
msgstr ""
#: c-decl.c:1239 c-decl.c:1252 c-decl.c:1262
#, gcc-internal-format
-msgid "%Jconflicting types for %qD"
+msgid "conflicting types for %q+D"
msgstr ""
#: c-decl.c:1260
#, gcc-internal-format
-msgid "%J conflicting type qualifiers for %qD"
+msgid "conflicting type qualifiers for %q+D"
msgstr ""
#. Allow OLDDECL to continue in use.
#: c-decl.c:1277
#, gcc-internal-format
-msgid "%Jredefinition of typedef %qD"
+msgid "redefinition of typedef %q+D"
msgstr ""
#: c-decl.c:1325 c-decl.c:1403
#, gcc-internal-format
-msgid "%Jredefinition of %qD"
+msgid "redefinition of %q+D"
msgstr ""
#: c-decl.c:1360 c-decl.c:1441
#, gcc-internal-format
-msgid "%Jstatic declaration of %qD follows non-static declaration"
+msgid "static declaration of %q+D follows non-static declaration"
msgstr ""
#: c-decl.c:1370 c-decl.c:1377 c-decl.c:1430 c-decl.c:1438
#, gcc-internal-format
-msgid "%Jnon-static declaration of %qD follows static declaration"
+msgid "non-static declaration of %q+D follows static declaration"
msgstr ""
#: c-decl.c:1390
#, gcc-internal-format
-msgid "%Jthread-local declaration of %qD follows non-thread-local declaration"
+msgid "thread-local declaration of %q+D follows non-thread-local declaration"
msgstr ""
#: c-decl.c:1393
#, gcc-internal-format
-msgid "%Jnon-thread-local declaration of %qD follows thread-local declaration"
+msgid "non-thread-local declaration of %q+D follows thread-local declaration"
msgstr ""
#: c-decl.c:1423
#, gcc-internal-format
-msgid "%Jextern declaration of %qD follows declaration with no linkage"
+msgid "extern declaration of %q+D follows declaration with no linkage"
msgstr ""
#: c-decl.c:1459
#, gcc-internal-format
-msgid "%Jdeclaration of %qD with no linkage follows extern declaration"
+msgid "declaration of %q+D with no linkage follows extern declaration"
msgstr ""
#: c-decl.c:1465
#, gcc-internal-format
-msgid "%Jredeclaration of %qD with no linkage"
+msgid "redeclaration of %q+D with no linkage"
msgstr ""
#: c-decl.c:1479
#, gcc-internal-format
msgid ""
-"%Jredeclaration of %qD with different visibility (old visibility preserved)"
+"redeclaration of %q+D with different visibility (old visibility preserved)"
msgstr ""
#: c-decl.c:1490
#, gcc-internal-format
-msgid "%Jinline declaration of %qD follows declaration with attribute noinline"
+msgid "inline declaration of %qD follows declaration with attribute noinline"
msgstr ""
#: c-decl.c:1497
#, gcc-internal-format
-msgid ""
-"%Jdeclaration of %qD with attribute noinline follows inline declaration "
+msgid "declaration of %q+D with attribute noinline follows inline declaration "
msgstr ""
#: c-decl.c:1512
#, gcc-internal-format
-msgid "%J%qD declared inline after being called"
+msgid "%q+D declared inline after being called"
msgstr ""
-#: c-decl.c:1518
+#: c-decl.c:1517
#, gcc-internal-format
-msgid "%J%qD declared inline after its definition"
+msgid "%q+D declared inline after its definition"
msgstr ""
-#: c-decl.c:1538
+#: c-decl.c:1536
#, gcc-internal-format
-msgid "%Jredefinition of parameter %qD"
+msgid "redefinition of parameter %q+D"
msgstr ""
-#: c-decl.c:1562
+#: c-decl.c:1563
#, gcc-internal-format
-msgid "%Jredundant redeclaration of %qD"
+msgid "redundant redeclaration of %q+D"
msgstr ""
-#: c-decl.c:1890
+#: c-decl.c:1908
#, gcc-internal-format
-msgid "%Jdeclaration of %qD shadows previous non-variable"
+msgid "declaration of %q+D shadows previous non-variable"
msgstr ""
-#: c-decl.c:1895
+#: c-decl.c:1913
#, gcc-internal-format
-msgid "%Jdeclaration of %qD shadows a parameter"
+msgid "declaration of %q+D shadows a parameter"
msgstr ""
-#: c-decl.c:1898
+#: c-decl.c:1916
#, gcc-internal-format
-msgid "%Jdeclaration of %qD shadows a global declaration"
+msgid "declaration of %q+D shadows a global declaration"
msgstr ""
-#: c-decl.c:1908
+#: c-decl.c:1926
#, gcc-internal-format
-msgid "%Jdeclaration of %qD shadows a previous local"
+msgid "declaration of %q+D shadows a previous local"
msgstr ""
-#: c-decl.c:1911 cp/name-lookup.c:941 cp/name-lookup.c:972
-#: cp/name-lookup.c:980
+#: c-decl.c:1929 cp/name-lookup.c:952 cp/name-lookup.c:983
+#: cp/name-lookup.c:991
#, gcc-internal-format
msgid "%Jshadowed declaration is here"
msgstr ""
-#: c-decl.c:2111
+#: c-decl.c:2129
#, gcc-internal-format
msgid "nested extern declaration of %qD"
msgstr ""
-#: c-decl.c:2279
+#: c-decl.c:2298
#, gcc-internal-format
msgid "implicit declaration of function %qE"
msgstr ""
-#: c-decl.c:2340
+#: c-decl.c:2359
#, gcc-internal-format
msgid "incompatible implicit declaration of built-in function %qD"
msgstr ""
-#: c-decl.c:2349
+#: c-decl.c:2368
#, gcc-internal-format
msgid "incompatible implicit declaration of function %qD"
msgstr ""
-#: c-decl.c:2402
+#: c-decl.c:2421
#, gcc-internal-format
msgid "%H%qE undeclared here (not in a function)"
msgstr ""
-#: c-decl.c:2407
+#: c-decl.c:2426
#, gcc-internal-format
msgid "%H%qE undeclared (first use in this function)"
msgstr ""
-#: c-decl.c:2411
+#: c-decl.c:2430
#, gcc-internal-format
msgid "%H(Each undeclared identifier is reported only once"
msgstr ""
-#: c-decl.c:2412
+#: c-decl.c:2431
#, gcc-internal-format
msgid "%Hfor each function it appears in.)"
msgstr ""
-#: c-decl.c:2450 cp/decl.c:2048
+#: c-decl.c:2469 cp/decl.c:2095
#, gcc-internal-format
msgid "label %qE referenced outside of any function"
msgstr ""
-#: c-decl.c:2492
+#: c-decl.c:2511
#, gcc-internal-format
msgid "duplicate label declaration %qE"
msgstr ""
-#: c-decl.c:2528
+#: c-decl.c:2547
#, gcc-internal-format
msgid "%Hduplicate label %qD"
msgstr ""
-#: c-decl.c:2538
+#: c-decl.c:2557
#, gcc-internal-format
msgid "%Jjump into statement expression"
msgstr ""
-#: c-decl.c:2540
+#: c-decl.c:2559
#, gcc-internal-format
msgid "%Jjump into scope of identifier with variably modified type"
msgstr ""
-#: c-decl.c:2555
+#: c-decl.c:2574
#, gcc-internal-format
msgid ""
"%Htraditional C lacks a separate namespace for labels, identifier %qE "
"conflicts"
msgstr ""
-#: c-decl.c:2630
+#: c-decl.c:2649
#, gcc-internal-format
msgid "%H%qE defined as wrong kind of tag"
msgstr ""
-#: c-decl.c:2845
+#: c-decl.c:2864
#, gcc-internal-format
msgid "unnamed struct/union that defines no instances"
msgstr ""
-#: c-decl.c:2853
+#: c-decl.c:2872
#, gcc-internal-format
msgid "empty declaration with storage class specifier does not redeclare tag"
msgstr ""
-#: c-decl.c:2864
+#: c-decl.c:2883
#, gcc-internal-format
msgid "empty declaration with type qualifier does not redeclare tag"
msgstr ""
-#: c-decl.c:2885 c-decl.c:2892
+#: c-decl.c:2904 c-decl.c:2911
#, gcc-internal-format
msgid "useless type name in empty declaration"
msgstr ""
-#: c-decl.c:2900
+#: c-decl.c:2919
#, gcc-internal-format
msgid "%<inline%> in empty declaration"
msgstr ""
-#: c-decl.c:2906
+#: c-decl.c:2925
#, gcc-internal-format
msgid "%<auto%> in file-scope empty declaration"
msgstr ""
-#: c-decl.c:2912
+#: c-decl.c:2931
#, gcc-internal-format
msgid "%<register%> in file-scope empty declaration"
msgstr ""
-#: c-decl.c:2918
+#: c-decl.c:2937
#, gcc-internal-format
msgid "useless storage class specifier in empty declaration"
msgstr ""
-#: c-decl.c:2924
+#: c-decl.c:2943
#, gcc-internal-format
msgid "useless %<__thread%> in empty declaration"
msgstr ""
-#: c-decl.c:2932
+#: c-decl.c:2951
#, gcc-internal-format
msgid "useless type qualifier in empty declaration"
msgstr ""
-#: c-decl.c:2939 c-parser.c:1157
+#: c-decl.c:2958 c-parser.c:1157
#, gcc-internal-format
msgid "empty declaration"
msgstr ""
-#: c-decl.c:3005
+#: c-decl.c:3024
#, gcc-internal-format
msgid ""
"ISO C90 does not support %<static%> or type qualifiers in parameter array "
"declarators"
msgstr ""
-#: c-decl.c:3008
+#: c-decl.c:3027
#, gcc-internal-format
msgid "ISO C90 does not support %<[*]%> array declarators"
msgstr ""
-#: c-decl.c:3011
+#: c-decl.c:3030
#, gcc-internal-format
msgid "GCC does not yet properly implement %<[*]%> array declarators"
msgstr ""
-#: c-decl.c:3030
+#: c-decl.c:3049
#, gcc-internal-format
msgid "static or type qualifiers in abstract declarator"
msgstr ""
-#: c-decl.c:3089
+#: c-decl.c:3108
#, gcc-internal-format
-msgid "%J%qD is usually a function"
+msgid "%q+D is usually a function"
msgstr ""
-#: c-decl.c:3098 cp/decl.c:3625 cp/decl2.c:838
+#: c-decl.c:3117 cp/decl.c:3667 cp/decl2.c:840
#, gcc-internal-format
msgid "typedef %qD is initialized (use __typeof__ instead)"
msgstr ""
-#: c-decl.c:3103
+#: c-decl.c:3122
#, gcc-internal-format
msgid "function %qD is initialized like a variable"
msgstr ""
#. DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE.
-#: c-decl.c:3109
+#: c-decl.c:3128
#, gcc-internal-format
msgid "parameter %qD is initialized"
msgstr ""
-#: c-decl.c:3134
+#: c-decl.c:3153
#, gcc-internal-format
msgid "variable %qD has initializer but incomplete type"
msgstr ""
-#: c-decl.c:3210 c-decl.c:5803 cp/decl.c:3664 cp/decl.c:9921
+#: c-decl.c:3229 c-decl.c:5853 cp/decl.c:3706 cp/decl.c:10100
#, gcc-internal-format
-msgid "%Jinline function %qD given attribute noinline"
+msgid "inline function %q+D given attribute noinline"
msgstr ""
-#: c-decl.c:3282
+#: c-decl.c:3301
#, gcc-internal-format
-msgid "%Jinitializer fails to determine size of %qD"
+msgid "initializer fails to determine size of %q+D"
msgstr ""
-#: c-decl.c:3287
+#: c-decl.c:3306
#, gcc-internal-format
-msgid "%Jarray size missing in %qD"
+msgid "array size missing in %q+D"
msgstr ""
-#: c-decl.c:3299
+#: c-decl.c:3318
#, gcc-internal-format
-msgid "%Jzero or negative size array %qD"
+msgid "zero or negative size array %q+D"
msgstr ""
-#: c-decl.c:3351 varasm.c:1632
+#: c-decl.c:3370 varasm.c:1641
#, gcc-internal-format
-msgid "%Jstorage size of %qD isn%'t known"
+msgid "storage size of %q+D isn%'t known"
msgstr ""
-#: c-decl.c:3361
+#: c-decl.c:3380
#, gcc-internal-format
-msgid "%Jstorage size of %qD isn%'t constant"
+msgid "storage size of %q+D isn%'t constant"
msgstr ""
-#: c-decl.c:3408
+#: c-decl.c:3427
#, gcc-internal-format
-msgid "%Jignoring asm-specifier for non-static local variable %qD"
+msgid "ignoring asm-specifier for non-static local variable %q+D"
msgstr ""
-#: c-decl.c:3438 fortran/f95-lang.c:644
+#: c-decl.c:3457 fortran/f95-lang.c:636
#, gcc-internal-format
msgid "cannot put object with volatile field into register"
msgstr ""
-#: c-decl.c:3573
+#: c-decl.c:3592
#, gcc-internal-format
msgid "ISO C forbids forward parameter declarations"
msgstr ""
-#: c-decl.c:3700
+#: c-decl.c:3719
#, gcc-internal-format
msgid "bit-field %qs width not an integer constant"
msgstr ""
-#: c-decl.c:3708
+#: c-decl.c:3727
#, gcc-internal-format
msgid "negative width in bit-field %qs"
msgstr ""
-#: c-decl.c:3713
+#: c-decl.c:3732
#, gcc-internal-format
msgid "zero width for bit-field %qs"
msgstr ""
-#: c-decl.c:3723
+#: c-decl.c:3742
#, gcc-internal-format
msgid "bit-field %qs has invalid type"
msgstr ""
-#: c-decl.c:3732
+#: c-decl.c:3751
#, gcc-internal-format
msgid "type of bit-field %qs is a GCC extension"
msgstr ""
-#: c-decl.c:3741
+#: c-decl.c:3760
#, gcc-internal-format
msgid "width of %qs exceeds its type"
msgstr ""
-#: c-decl.c:3754
+#: c-decl.c:3773
#, gcc-internal-format
msgid "%qs is narrower than values of its type"
msgstr ""
-#: c-decl.c:3879
+#: c-decl.c:3922
#, gcc-internal-format
msgid "type defaults to %<int%> in declaration of %qs"
msgstr ""
-#: c-decl.c:3907
+#: c-decl.c:3950
#, gcc-internal-format
msgid "duplicate %<const%>"
msgstr ""
-#: c-decl.c:3909
+#: c-decl.c:3952
#, gcc-internal-format
msgid "duplicate %<restrict%>"
msgstr ""
-#: c-decl.c:3911
+#: c-decl.c:3954
#, gcc-internal-format
msgid "duplicate %<volatile%>"
msgstr ""
-#: c-decl.c:3930
+#: c-decl.c:3973
#, gcc-internal-format
msgid "function definition declared %<auto%>"
msgstr ""
-#: c-decl.c:3932
+#: c-decl.c:3975
#, gcc-internal-format
msgid "function definition declared %<register%>"
msgstr ""
-#: c-decl.c:3934
+#: c-decl.c:3977
#, gcc-internal-format
msgid "function definition declared %<typedef%>"
msgstr ""
-#: c-decl.c:3936
+#: c-decl.c:3979
#, gcc-internal-format
msgid "function definition declared %<__thread%>"
msgstr ""
-#: c-decl.c:3952
+#: c-decl.c:3995
#, gcc-internal-format
msgid "storage class specified for structure field %qs"
msgstr ""
-#: c-decl.c:3956 cp/decl.c:7001
+#: c-decl.c:3999 cp/decl.c:7173
#, gcc-internal-format
msgid "storage class specified for parameter %qs"
msgstr ""
-#: c-decl.c:3959 cp/decl.c:7003
+#: c-decl.c:4002 cp/decl.c:7175
#, gcc-internal-format
msgid "storage class specified for typename"
msgstr ""
-#: c-decl.c:3972 cp/decl.c:7020
+#: c-decl.c:4015 cp/decl.c:7192
#, gcc-internal-format
msgid "%qs initialized and declared %<extern%>"
msgstr ""
-#: c-decl.c:3974 cp/decl.c:7023
+#: c-decl.c:4017 cp/decl.c:7195
#, gcc-internal-format
msgid "%qs has both %<extern%> and initializer"
msgstr ""
-#: c-decl.c:3979
+#: c-decl.c:4022
#, gcc-internal-format
msgid "file-scope declaration of %qs specifies %<auto%>"
msgstr ""
-#: c-decl.c:3981
+#: c-decl.c:4024
#, gcc-internal-format
msgid "file-scope declaration of %qs specifies %<register%>"
msgstr ""
-#: c-decl.c:3986 cp/decl.c:7027
+#: c-decl.c:4029 cp/decl.c:7199
#, gcc-internal-format
msgid "nested function %qs declared %<extern%>"
msgstr ""
-#: c-decl.c:3989 cp/decl.c:7037
+#: c-decl.c:4032 cp/decl.c:7209
#, gcc-internal-format
msgid "function-scope %qs implicitly auto and declared %<__thread%>"
msgstr ""
@@ -10043,494 +14745,494 @@ msgstr ""
#. Only the innermost declarator (making a parameter be of
#. array type which is converted to pointer type)
#. may have static or type qualifiers.
-#: c-decl.c:4036 c-decl.c:4227
+#: c-decl.c:4079 c-decl.c:4270
#, gcc-internal-format
msgid "static or type qualifiers in non-parameter array declarator"
msgstr ""
-#: c-decl.c:4082
+#: c-decl.c:4125
#, gcc-internal-format
msgid "declaration of %qs as array of voids"
msgstr ""
-#: c-decl.c:4088
+#: c-decl.c:4131
#, gcc-internal-format
msgid "declaration of %qs as array of functions"
msgstr ""
-#: c-decl.c:4093
+#: c-decl.c:4136
#, gcc-internal-format
msgid "invalid use of structure with flexible array member"
msgstr ""
-#: c-decl.c:4113
+#: c-decl.c:4156
#, gcc-internal-format
msgid "size of array %qs has non-integer type"
msgstr ""
-#: c-decl.c:4118
+#: c-decl.c:4161
#, gcc-internal-format
msgid "ISO C forbids zero-size array %qs"
msgstr ""
-#: c-decl.c:4125
+#: c-decl.c:4168
#, gcc-internal-format
msgid "size of array %qs is negative"
msgstr ""
-#: c-decl.c:4139
+#: c-decl.c:4182
#, gcc-internal-format
msgid "ISO C90 forbids array %qs whose size can%'t be evaluated"
msgstr ""
-#: c-decl.c:4143
+#: c-decl.c:4186
#, gcc-internal-format
msgid "ISO C90 forbids variable-size array %qs"
msgstr ""
-#: c-decl.c:4183 c-decl.c:4349 cp/decl.c:7459
+#: c-decl.c:4226 c-decl.c:4392 cp/decl.c:7636
#, gcc-internal-format
msgid "size of array %qs is too large"
msgstr ""
-#: c-decl.c:4194
+#: c-decl.c:4237
#, gcc-internal-format
msgid "ISO C90 does not support flexible array members"
msgstr ""
-#: c-decl.c:4204
+#: c-decl.c:4247
#, gcc-internal-format
msgid "array type has incomplete element type"
msgstr ""
-#: c-decl.c:4259 cp/decl.c:7128
+#: c-decl.c:4302 cp/decl.c:7300
#, gcc-internal-format
msgid "%qs declared as function returning a function"
msgstr ""
-#: c-decl.c:4264 cp/decl.c:7133
+#: c-decl.c:4307 cp/decl.c:7305
#, gcc-internal-format
msgid "%qs declared as function returning an array"
msgstr ""
-#: c-decl.c:4284
+#: c-decl.c:4327
#, gcc-internal-format
msgid "function definition has qualified void return type"
msgstr ""
-#: c-decl.c:4287
+#: c-decl.c:4330
#, gcc-internal-format
msgid "type qualifiers ignored on function return type"
msgstr ""
-#: c-decl.c:4316 c-decl.c:4362 c-decl.c:4457 c-decl.c:4548
+#: c-decl.c:4359 c-decl.c:4405 c-decl.c:4500 c-decl.c:4590
#, gcc-internal-format
msgid "ISO C forbids qualified function types"
msgstr ""
-#: c-decl.c:4370
+#: c-decl.c:4413
#, gcc-internal-format
-msgid "%Jtypedef %qD declared %<inline%>"
+msgid "typedef %q+D declared %<inline%>"
msgstr ""
-#: c-decl.c:4400
+#: c-decl.c:4443
#, gcc-internal-format
msgid "ISO C forbids const or volatile function types"
msgstr ""
-#: c-decl.c:4420
+#: c-decl.c:4463
#, gcc-internal-format
msgid "variable or field %qs declared void"
msgstr ""
-#: c-decl.c:4450
+#: c-decl.c:4493
#, gcc-internal-format
msgid "attributes in parameter array declarator ignored"
msgstr ""
-#: c-decl.c:4485
+#: c-decl.c:4527
#, gcc-internal-format
-msgid "%Jparameter %qD declared %<inline%>"
+msgid "parameter %q+D declared %<inline%>"
msgstr ""
-#: c-decl.c:4498
+#: c-decl.c:4540
#, gcc-internal-format
msgid "field %qs declared as a function"
msgstr ""
-#: c-decl.c:4504
+#: c-decl.c:4546
#, gcc-internal-format
msgid "field %qs has incomplete type"
msgstr ""
-#: c-decl.c:4518 c-decl.c:4530 c-decl.c:4534
+#: c-decl.c:4560 c-decl.c:4572 c-decl.c:4576
#, gcc-internal-format
msgid "invalid storage class for function %qs"
msgstr ""
-#: c-decl.c:4554
+#: c-decl.c:4596
#, gcc-internal-format
msgid "%<noreturn%> function returns non-void value"
msgstr ""
-#: c-decl.c:4582
+#: c-decl.c:4624
#, gcc-internal-format
msgid "cannot inline function %<main%>"
msgstr ""
-#: c-decl.c:4629
+#: c-decl.c:4671
#, gcc-internal-format
msgid "variable previously declared %<static%> redeclared %<extern%>"
msgstr ""
-#: c-decl.c:4639
+#: c-decl.c:4681
#, gcc-internal-format
-msgid "%Jvariable %qD declared %<inline%>"
+msgid "variable %q+D declared %<inline%>"
msgstr ""
#. A mere warning is sure to result in improper semantics
#. at runtime. Don't bother to allow this to compile.
-#: c-decl.c:4670 cp/decl.c:5891
+#: c-decl.c:4712 cp/decl.c:6060
#, gcc-internal-format
msgid "thread-local storage not supported for this target"
msgstr ""
-#: c-decl.c:4732 c-decl.c:5882
+#: c-decl.c:4777 c-decl.c:5932
#, gcc-internal-format
msgid "function declaration isn%'t a prototype"
msgstr ""
-#: c-decl.c:4740
+#: c-decl.c:4785
#, gcc-internal-format
msgid "parameter names (without types) in function declaration"
msgstr ""
-#: c-decl.c:4773
+#: c-decl.c:4818
#, gcc-internal-format
-msgid "%Jparameter %u (%qD) has incomplete type"
+msgid "parameter %u (%q+D) has incomplete type"
msgstr ""
-#: c-decl.c:4776
+#: c-decl.c:4821
#, gcc-internal-format
msgid "%Jparameter %u has incomplete type"
msgstr ""
-#: c-decl.c:4785
+#: c-decl.c:4830
#, gcc-internal-format
-msgid "%Jparameter %u (%qD) has void type"
+msgid "parameter %u (%q+D) has void type"
msgstr ""
-#: c-decl.c:4788
+#: c-decl.c:4833
#, gcc-internal-format
msgid "%Jparameter %u has void type"
msgstr ""
-#: c-decl.c:4845
+#: c-decl.c:4893
#, gcc-internal-format
msgid "%<void%> as only parameter may not be qualified"
msgstr ""
-#: c-decl.c:4849 c-decl.c:4884
+#: c-decl.c:4897 c-decl.c:4931
#, gcc-internal-format
msgid "%<void%> must be the only parameter"
msgstr ""
-#: c-decl.c:4877
+#: c-decl.c:4925
#, gcc-internal-format
-msgid "%Jparameter %qD has just a forward declaration"
+msgid "parameter %q+D has just a forward declaration"
msgstr ""
#. The %s will be one of 'struct', 'union', or 'enum'.
-#: c-decl.c:4923
+#: c-decl.c:4970
#, gcc-internal-format
msgid "%<%s %E%> declared inside parameter list"
msgstr ""
#. The %s will be one of 'struct', 'union', or 'enum'.
-#: c-decl.c:4927
+#: c-decl.c:4974
#, gcc-internal-format
msgid "anonymous %s declared inside parameter list"
msgstr ""
-#: c-decl.c:4932
+#: c-decl.c:4979
#, gcc-internal-format
msgid ""
"its scope is only this definition or declaration, which is probably not what "
"you want"
msgstr ""
-#: c-decl.c:5065
+#: c-decl.c:5112
#, gcc-internal-format
msgid "redefinition of %<union %E%>"
msgstr ""
-#: c-decl.c:5067
+#: c-decl.c:5114
#, gcc-internal-format
msgid "redefinition of %<struct %E%>"
msgstr ""
-#: c-decl.c:5072
+#: c-decl.c:5119
#, gcc-internal-format
msgid "nested redefinition of %<union %E%>"
msgstr ""
-#: c-decl.c:5074
+#: c-decl.c:5121
#, gcc-internal-format
msgid "nested redefinition of %<struct %E%>"
msgstr ""
-#: c-decl.c:5145 cp/decl.c:3422
+#: c-decl.c:5192 cp/decl.c:3465
#, gcc-internal-format
msgid "declaration does not declare anything"
msgstr ""
-#: c-decl.c:5149
+#: c-decl.c:5196
#, gcc-internal-format
msgid "ISO C doesn%'t support unnamed structs/unions"
msgstr ""
-#: c-decl.c:5192 c-decl.c:5208
+#: c-decl.c:5239 c-decl.c:5255
#, gcc-internal-format
-msgid "%Jduplicate member %qD"
+msgid "duplicate member %q+D"
msgstr ""
-#: c-decl.c:5247
+#: c-decl.c:5294
#, gcc-internal-format
msgid "union has no named members"
msgstr ""
-#: c-decl.c:5249
+#: c-decl.c:5296
#, gcc-internal-format
msgid "union has no members"
msgstr ""
-#: c-decl.c:5254
+#: c-decl.c:5301
#, gcc-internal-format
msgid "struct has no named members"
msgstr ""
-#: c-decl.c:5256
+#: c-decl.c:5303
#, gcc-internal-format
msgid "struct has no members"
msgstr ""
-#: c-decl.c:5313
+#: c-decl.c:5360
#, gcc-internal-format
msgid "%Jflexible array member in union"
msgstr ""
-#: c-decl.c:5318
+#: c-decl.c:5365
#, gcc-internal-format
msgid "%Jflexible array member not at end of struct"
msgstr ""
-#: c-decl.c:5323
+#: c-decl.c:5370
#, gcc-internal-format
msgid "%Jflexible array member in otherwise empty struct"
msgstr ""
-#: c-decl.c:5330
+#: c-decl.c:5377
#, gcc-internal-format
msgid "%Jinvalid use of structure with flexible array member"
msgstr ""
-#: c-decl.c:5438
+#: c-decl.c:5488
#, gcc-internal-format
msgid "union cannot be made transparent"
msgstr ""
-#: c-decl.c:5509
+#: c-decl.c:5559
#, gcc-internal-format
msgid "nested redefinition of %<enum %E%>"
msgstr ""
#. This enum is a named one that has been declared already.
-#: c-decl.c:5516
+#: c-decl.c:5566
#, gcc-internal-format
msgid "redeclaration of %<enum %E%>"
msgstr ""
-#: c-decl.c:5579
+#: c-decl.c:5629
#, gcc-internal-format
msgid "enumeration values exceed range of largest integer"
msgstr ""
-#: c-decl.c:5596
+#: c-decl.c:5646
#, gcc-internal-format
msgid "specified mode too small for enumeral values"
msgstr ""
-#: c-decl.c:5692
+#: c-decl.c:5742
#, gcc-internal-format
msgid "enumerator value for %qE is not an integer constant"
msgstr ""
-#: c-decl.c:5709
+#: c-decl.c:5759
#, gcc-internal-format
msgid "overflow in enumeration values"
msgstr ""
-#: c-decl.c:5714
+#: c-decl.c:5764
#, gcc-internal-format
msgid "ISO C restricts enumerator values to range of %<int%>"
msgstr ""
-#: c-decl.c:5810
+#: c-decl.c:5860
#, gcc-internal-format
msgid "return type is an incomplete type"
msgstr ""
-#: c-decl.c:5818
+#: c-decl.c:5868
#, gcc-internal-format
msgid "return type defaults to %<int%>"
msgstr ""
-#: c-decl.c:5889
+#: c-decl.c:5939
#, gcc-internal-format
-msgid "%Jno previous prototype for %qD"
+msgid "no previous prototype for %q+D"
msgstr ""
-#: c-decl.c:5899
+#: c-decl.c:5948
#, gcc-internal-format
-msgid "%J%qD was used with no prototype before its definition"
+msgid "%q+D was used with no prototype before its definition"
msgstr ""
-#: c-decl.c:5906
+#: c-decl.c:5954
#, gcc-internal-format
-msgid "%Jno previous declaration for %qD"
+msgid "no previous declaration for %q+D"
msgstr ""
-#: c-decl.c:5916
+#: c-decl.c:5964
#, gcc-internal-format
-msgid "%J%qD was used with no declaration before its definition"
+msgid "%q+D was used with no declaration before its definition"
msgstr ""
-#: c-decl.c:5949 c-decl.c:6469
+#: c-decl.c:5996 c-decl.c:6513
#, gcc-internal-format
-msgid "%Jreturn type of %qD is not %<int%>"
+msgid "return type of %q+D is not %<int%>"
msgstr ""
-#: c-decl.c:5964
+#: c-decl.c:6011
#, gcc-internal-format
-msgid "%Jfirst argument of %qD should be %<int%>"
+msgid "first argument of %q+D should be %<int%>"
msgstr ""
-#: c-decl.c:5973
+#: c-decl.c:6019
#, gcc-internal-format
-msgid "%Jsecond argument of %qD should be %<char **%>"
+msgid "second argument of %q+D should be %<char **%>"
msgstr ""
-#: c-decl.c:5982
+#: c-decl.c:6028
#, gcc-internal-format
-msgid "%Jthird argument of %qD should probably be %<char **%>"
+msgid "third argument of %q+D should probably be %<char **%>"
msgstr ""
-#: c-decl.c:5992
+#: c-decl.c:6038
#, gcc-internal-format
-msgid "%J%qD takes only zero or two arguments"
+msgid "%q+D takes only zero or two arguments"
msgstr ""
-#: c-decl.c:5995
+#: c-decl.c:6041
#, gcc-internal-format
-msgid "%J%qD is normally a non-static function"
+msgid "%q+D is normally a non-static function"
msgstr ""
-#: c-decl.c:6041
+#: c-decl.c:6087
#, gcc-internal-format
msgid "%Jold-style parameter declarations in prototyped function definition"
msgstr ""
-#: c-decl.c:6055
+#: c-decl.c:6101
#, gcc-internal-format
msgid "%Jtraditional C rejects ISO C style function definitions"
msgstr ""
-#: c-decl.c:6067
+#: c-decl.c:6117
#, gcc-internal-format
msgid "%Jparameter name omitted"
msgstr ""
-#: c-decl.c:6107
+#: c-decl.c:6151
#, gcc-internal-format
msgid "%Jold-style function definition"
msgstr ""
-#: c-decl.c:6116
+#: c-decl.c:6160
#, gcc-internal-format
msgid "%Jparameter name missing from parameter list"
msgstr ""
-#: c-decl.c:6127
+#: c-decl.c:6171
#, gcc-internal-format
-msgid "%J%qD declared as a non-parameter"
+msgid "%q+D declared as a non-parameter"
msgstr ""
-#: c-decl.c:6132
+#: c-decl.c:6176
#, gcc-internal-format
-msgid "%Jmultiple parameters named %qD"
+msgid "multiple parameters named %q+D"
msgstr ""
-#: c-decl.c:6140
+#: c-decl.c:6184
#, gcc-internal-format
-msgid "%Jparameter %qD declared with void type"
+msgid "parameter %q+D declared with void type"
msgstr ""
-#: c-decl.c:6155 c-decl.c:6157
+#: c-decl.c:6201 c-decl.c:6203
#, gcc-internal-format
-msgid "%Jtype of %qD defaults to %<int%>"
+msgid "type of %q+D defaults to %<int%>"
msgstr ""
-#: c-decl.c:6177
+#: c-decl.c:6222
#, gcc-internal-format
-msgid "%Jparameter %qD has incomplete type"
+msgid "parameter %q+D has incomplete type"
msgstr ""
-#: c-decl.c:6183
+#: c-decl.c:6228
#, gcc-internal-format
-msgid "%Jdeclaration for parameter %qD but no such parameter"
+msgid "declaration for parameter %q+D but no such parameter"
msgstr ""
-#: c-decl.c:6234
+#: c-decl.c:6278
#, gcc-internal-format
msgid "number of arguments doesn%'t match built-in prototype"
msgstr ""
-#: c-decl.c:6238
+#: c-decl.c:6282
#, gcc-internal-format
msgid "number of arguments doesn%'t match prototype"
msgstr ""
-#: c-decl.c:6239 c-decl.c:6279 c-decl.c:6292
+#: c-decl.c:6283 c-decl.c:6323 c-decl.c:6336
#, gcc-internal-format
msgid "%Hprototype declaration"
msgstr ""
-#: c-decl.c:6273
+#: c-decl.c:6317
#, gcc-internal-format
msgid "promoted argument %qD doesn%'t match built-in prototype"
msgstr ""
-#: c-decl.c:6277
+#: c-decl.c:6321
#, gcc-internal-format
msgid "promoted argument %qD doesn%'t match prototype"
msgstr ""
-#: c-decl.c:6287
+#: c-decl.c:6331
#, gcc-internal-format
msgid "argument %qD doesn%'t match built-in prototype"
msgstr ""
-#: c-decl.c:6291
+#: c-decl.c:6335
#, gcc-internal-format
msgid "argument %qD doesn%'t match prototype"
msgstr ""
-#: c-decl.c:6514 cp/decl.c:10691
+#: c-decl.c:6558 cp/decl.c:10877
#, gcc-internal-format
msgid "no return statement in function returning non-void"
msgstr ""
-#: c-decl.c:6523
+#: c-decl.c:6567
#, gcc-internal-format
msgid "this function may return with or without a value"
msgstr ""
@@ -10538,555 +15240,559 @@ msgstr ""
#. If we get here, declarations have been used in a for loop without
#. the C99 for loop scope. This doesn't make much sense, so don't
#. allow it.
-#: c-decl.c:6616
+#: c-decl.c:6660
#, gcc-internal-format
msgid "%<for%> loop initial declaration used outside C99 mode"
msgstr ""
-#: c-decl.c:6645
+#: c-decl.c:6689
#, gcc-internal-format
-msgid ""
-"%Jdeclaration of static variable %qD in %<for%> loop initial declaration"
+msgid "declaration of static variable %q+D in %<for%> loop initial declaration"
msgstr ""
-#: c-decl.c:6648
+#: c-decl.c:6692
#, gcc-internal-format
msgid ""
-"%Jdeclaration of %<extern%> variable %qD in %<for%> loop initial declaration"
+"declaration of %<extern%> variable %q+D in %<for%> loop initial declaration"
msgstr ""
-#: c-decl.c:6653
+#: c-decl.c:6697
#, gcc-internal-format
msgid "%<struct %E%> declared in %<for%> loop initial declaration"
msgstr ""
-#: c-decl.c:6657
+#: c-decl.c:6701
#, gcc-internal-format
msgid "%<union %E%> declared in %<for%> loop initial declaration"
msgstr ""
-#: c-decl.c:6661
+#: c-decl.c:6705
#, gcc-internal-format
msgid "%<enum %E%> declared in %<for%> loop initial declaration"
msgstr ""
-#: c-decl.c:6665
+#: c-decl.c:6709
#, gcc-internal-format
-msgid "%Jdeclaration of non-variable %qD in %<for%> loop initial declaration"
+msgid "declaration of non-variable %q+D in %<for%> loop initial declaration"
msgstr ""
-#: c-decl.c:6949 c-decl.c:7100 c-decl.c:7310
+#: c-decl.c:6993 c-decl.c:7144 c-decl.c:7354
#, gcc-internal-format
msgid "duplicate %qE"
msgstr ""
-#: c-decl.c:6972 c-decl.c:7109 c-decl.c:7212
+#: c-decl.c:7016 c-decl.c:7153 c-decl.c:7256
#, gcc-internal-format
msgid "two or more data types in declaration specifiers"
msgstr ""
-#: c-decl.c:6984 cp/decl.c:6694
+#: c-decl.c:7028 cp/decl.c:6863
#, gcc-internal-format
msgid "%<long long long%> is too long for GCC"
msgstr ""
-#: c-decl.c:6991 c-decl.c:7183
+#: c-decl.c:7035 c-decl.c:7227
#, gcc-internal-format
msgid "both %<long long%> and %<double%> in declaration specifiers"
msgstr ""
-#: c-decl.c:6997
+#: c-decl.c:7041
#, gcc-internal-format
msgid "ISO C90 does not support %<long long%>"
msgstr ""
-#: c-decl.c:7002 c-decl.c:7022
+#: c-decl.c:7046 c-decl.c:7066
#, gcc-internal-format
msgid "both %<long%> and %<short%> in declaration specifiers"
msgstr ""
-#: c-decl.c:7005 c-decl.c:7116
+#: c-decl.c:7049 c-decl.c:7160
#, gcc-internal-format
msgid "both %<long%> and %<void%> in declaration specifiers"
msgstr ""
-#: c-decl.c:7008 c-decl.c:7135
+#: c-decl.c:7052 c-decl.c:7179
#, gcc-internal-format
msgid "both %<long%> and %<_Bool%> in declaration specifiers"
msgstr ""
-#: c-decl.c:7011 c-decl.c:7154
+#: c-decl.c:7055 c-decl.c:7198
#, gcc-internal-format
msgid "both %<long%> and %<char%> in declaration specifiers"
msgstr ""
-#: c-decl.c:7014 c-decl.c:7167
+#: c-decl.c:7058 c-decl.c:7211
#, gcc-internal-format
msgid "both %<long%> and %<float%> in declaration specifiers"
msgstr ""
-#: c-decl.c:7025 c-decl.c:7119
+#: c-decl.c:7069 c-decl.c:7163
#, gcc-internal-format
msgid "both %<short%> and %<void%> in declaration specifiers"
msgstr ""
-#: c-decl.c:7028 c-decl.c:7138
+#: c-decl.c:7072 c-decl.c:7182
#, gcc-internal-format
msgid "both %<short%> and %<_Bool%> in declaration specifiers"
msgstr ""
-#: c-decl.c:7031 c-decl.c:7157
+#: c-decl.c:7075 c-decl.c:7201
#, gcc-internal-format
msgid "both %<short%> and %<char%> in declaration specifiers"
msgstr ""
-#: c-decl.c:7034 c-decl.c:7170
+#: c-decl.c:7078 c-decl.c:7214
#, gcc-internal-format
msgid "both %<short%> and %<float%> in declaration specifiers"
msgstr ""
-#: c-decl.c:7037 c-decl.c:7186
+#: c-decl.c:7081 c-decl.c:7230
#, gcc-internal-format
msgid "both %<short%> and %<double%> in declaration specifiers"
msgstr ""
-#: c-decl.c:7045 c-decl.c:7065
+#: c-decl.c:7089 c-decl.c:7109
#, gcc-internal-format
msgid "both %<signed%> and %<unsigned%> in declaration specifiers"
msgstr ""
-#: c-decl.c:7048 c-decl.c:7122
+#: c-decl.c:7092 c-decl.c:7166
#, gcc-internal-format
msgid "both %<signed%> and %<void%> in declaration specifiers"
msgstr ""
-#: c-decl.c:7051 c-decl.c:7141
+#: c-decl.c:7095 c-decl.c:7185
#, gcc-internal-format
msgid "both %<signed%> and %<_Bool%> in declaration specifiers"
msgstr ""
-#: c-decl.c:7054 c-decl.c:7173
+#: c-decl.c:7098 c-decl.c:7217
#, gcc-internal-format
msgid "both %<signed%> and %<float%> in declaration specifiers"
msgstr ""
-#: c-decl.c:7057 c-decl.c:7189
+#: c-decl.c:7101 c-decl.c:7233
#, gcc-internal-format
msgid "both %<signed%> and %<double%> in declaration specifiers"
msgstr ""
-#: c-decl.c:7068 c-decl.c:7125
+#: c-decl.c:7112 c-decl.c:7169
#, gcc-internal-format
msgid "both %<unsigned%> and %<void%> in declaration specifiers"
msgstr ""
-#: c-decl.c:7071 c-decl.c:7144
+#: c-decl.c:7115 c-decl.c:7188
#, gcc-internal-format
msgid "both %<unsigned%> and %<_Bool%> in declaration specifiers"
msgstr ""
-#: c-decl.c:7074 c-decl.c:7176
+#: c-decl.c:7118 c-decl.c:7220
#, gcc-internal-format
msgid "both %<unsigned%> and %<float%> in declaration specifiers"
msgstr ""
-#: c-decl.c:7077 c-decl.c:7192
+#: c-decl.c:7121 c-decl.c:7236
#, gcc-internal-format
msgid "both %<unsigned%> and %<double%> in declaration specifiers"
msgstr ""
-#: c-decl.c:7085
+#: c-decl.c:7129
#, gcc-internal-format
msgid "ISO C90 does not support complex types"
msgstr ""
-#: c-decl.c:7087 c-decl.c:7128
+#: c-decl.c:7131 c-decl.c:7172
#, gcc-internal-format
msgid "both %<complex%> and %<void%> in declaration specifiers"
msgstr ""
-#: c-decl.c:7090 c-decl.c:7147
+#: c-decl.c:7134 c-decl.c:7191
#, gcc-internal-format
msgid "both %<complex%> and %<_Bool%> in declaration specifiers"
msgstr ""
-#: c-decl.c:7229
+#: c-decl.c:7273
#, gcc-internal-format
msgid "%qE fails to be a typedef or built in type"
msgstr ""
-#: c-decl.c:7261
+#: c-decl.c:7305
#, gcc-internal-format
msgid "%qE is not at beginning of declaration"
msgstr ""
-#: c-decl.c:7275
+#: c-decl.c:7319
#, gcc-internal-format
msgid "%<__thread%> used with %<auto%>"
msgstr ""
-#: c-decl.c:7277
+#: c-decl.c:7321
#, gcc-internal-format
msgid "%<__thread%> used with %<register%>"
msgstr ""
-#: c-decl.c:7279
+#: c-decl.c:7323
#, gcc-internal-format
msgid "%<__thread%> used with %<typedef%>"
msgstr ""
-#: c-decl.c:7290 cp/parser.c:7365
+#: c-decl.c:7334 cp/parser.c:7366
#, gcc-internal-format
msgid "%<__thread%> before %<extern%>"
msgstr ""
-#: c-decl.c:7299 cp/parser.c:7355
+#: c-decl.c:7343 cp/parser.c:7356
#, gcc-internal-format
msgid "%<__thread%> before %<static%>"
msgstr ""
-#: c-decl.c:7315
+#: c-decl.c:7359
#, gcc-internal-format
msgid "multiple storage classes in declaration specifiers"
msgstr ""
-#: c-decl.c:7322
+#: c-decl.c:7366
#, gcc-internal-format
msgid "%<__thread%> used with %qE"
msgstr ""
-#: c-decl.c:7376
+#: c-decl.c:7420
#, gcc-internal-format
msgid "ISO C does not support plain %<complex%> meaning %<double complex%>"
msgstr ""
-#: c-decl.c:7421 c-decl.c:7447
+#: c-decl.c:7465 c-decl.c:7491
#, gcc-internal-format
msgid "ISO C does not support complex integer types"
msgstr ""
-#: c-decl.c:7522 toplev.c:826
+#: c-decl.c:7564 toplev.c:821
#, gcc-internal-format
-msgid "%J%qF used but never defined"
+msgid "%q+F used but never defined"
msgstr ""
-#: c-format.c:96 c-format.c:205
+#: c-format.c:97 c-format.c:206
#, gcc-internal-format
msgid "format string has invalid operand number"
msgstr ""
-#: c-format.c:113
+#: c-format.c:114
#, gcc-internal-format
msgid "function does not return string type"
msgstr ""
-#: c-format.c:142
+#: c-format.c:143
#, gcc-internal-format
msgid "format string argument not a string type"
msgstr ""
-#: c-format.c:185
+#: c-format.c:186
#, gcc-internal-format
msgid "unrecognized format specifier"
msgstr ""
-#: c-format.c:197
+#: c-format.c:198
#, gcc-internal-format
msgid "%qE is an unrecognized format function type"
msgstr ""
-#: c-format.c:211
+#: c-format.c:212
#, gcc-internal-format
msgid "%<...%> has invalid operand number"
msgstr ""
-#: c-format.c:218
+#: c-format.c:219
#, gcc-internal-format
msgid "format string argument follows the args to be formatted"
msgstr ""
-#: c-format.c:836
+#: c-format.c:899
#, gcc-internal-format
msgid "function might be possible candidate for %qs format attribute"
msgstr ""
-#: c-format.c:928 c-format.c:949 c-format.c:1963
+#: c-format.c:991 c-format.c:1012 c-format.c:2026
#, gcc-internal-format
msgid "missing $ operand number in format"
msgstr ""
-#: c-format.c:958
+#: c-format.c:1021
#, gcc-internal-format
msgid "%s does not support %%n$ operand number formats"
msgstr ""
-#: c-format.c:965
+#: c-format.c:1028
#, gcc-internal-format
msgid "operand number out of range in format"
msgstr ""
-#: c-format.c:988
+#: c-format.c:1051
#, gcc-internal-format
msgid "format argument %d used more than once in %s format"
msgstr ""
-#: c-format.c:1020
+#: c-format.c:1083
#, gcc-internal-format
msgid "$ operand number used after format without operand number"
msgstr ""
-#: c-format.c:1051
+#: c-format.c:1114
#, gcc-internal-format
msgid "format argument %d unused before used argument %d in $-style format"
msgstr ""
-#: c-format.c:1146
+#: c-format.c:1209
#, gcc-internal-format
msgid "format not a string literal, format string not checked"
msgstr ""
-#: c-format.c:1161 c-format.c:1164
+#: c-format.c:1224 c-format.c:1227
#, gcc-internal-format
msgid "format not a string literal and no format arguments"
msgstr ""
-#: c-format.c:1167
+#: c-format.c:1230
#, gcc-internal-format
msgid "format not a string literal, argument types not checked"
msgstr ""
-#: c-format.c:1180
+#: c-format.c:1243
#, gcc-internal-format
msgid "too many arguments for format"
msgstr ""
-#: c-format.c:1183
+#: c-format.c:1246
#, gcc-internal-format
msgid "unused arguments in $-style format"
msgstr ""
-#: c-format.c:1186
+#: c-format.c:1249
#, gcc-internal-format
msgid "zero-length %s format string"
msgstr ""
-#: c-format.c:1190
+#: c-format.c:1253
#, gcc-internal-format
msgid "format is a wide character string"
msgstr ""
-#: c-format.c:1193
+#: c-format.c:1256
#, gcc-internal-format
msgid "unterminated format string"
msgstr ""
-#: c-format.c:1407
+#: c-format.c:1470
#, gcc-internal-format
msgid "embedded %<\\0%> in format"
msgstr ""
-#: c-format.c:1422
+#: c-format.c:1485
#, gcc-internal-format
msgid "spurious trailing %<%%%> in format"
msgstr ""
-#: c-format.c:1466 c-format.c:1711
+#: c-format.c:1529 c-format.c:1774
#, gcc-internal-format
msgid "repeated %s in format"
msgstr ""
-#: c-format.c:1479
+#: c-format.c:1542
#, gcc-internal-format
msgid "missing fill character at end of strfmon format"
msgstr ""
-#: c-format.c:1523 c-format.c:1625 c-format.c:1910 c-format.c:1975
+#: c-format.c:1586 c-format.c:1688 c-format.c:1973 c-format.c:2038
#, gcc-internal-format
msgid "too few arguments for format"
msgstr ""
-#: c-format.c:1564
+#: c-format.c:1627
#, gcc-internal-format
msgid "zero width in %s format"
msgstr ""
-#: c-format.c:1582
+#: c-format.c:1645
#, gcc-internal-format
msgid "empty left precision in %s format"
msgstr ""
-#: c-format.c:1655
+#: c-format.c:1718
#, gcc-internal-format
msgid "empty precision in %s format"
msgstr ""
-#: c-format.c:1695
+#: c-format.c:1758
#, gcc-internal-format
msgid "%s does not support the %qs %s length modifier"
msgstr ""
-#: c-format.c:1745
+#: c-format.c:1808
#, gcc-internal-format
msgid "conversion lacks type at end of format"
msgstr ""
-#: c-format.c:1756
+#: c-format.c:1819
#, gcc-internal-format
msgid "unknown conversion type character %qc in format"
msgstr ""
-#: c-format.c:1759
+#: c-format.c:1822
#, gcc-internal-format
msgid "unknown conversion type character 0x%x in format"
msgstr ""
-#: c-format.c:1766
+#: c-format.c:1829
#, gcc-internal-format
msgid "%s does not support the %<%%%c%> %s format"
msgstr ""
-#: c-format.c:1782
+#: c-format.c:1845
#, gcc-internal-format
msgid "%s used with %<%%%c%> %s format"
msgstr ""
-#: c-format.c:1791
+#: c-format.c:1854
#, gcc-internal-format
msgid "%s does not support %s"
msgstr ""
-#: c-format.c:1801
+#: c-format.c:1864
#, gcc-internal-format
msgid "%s does not support %s with the %<%%%c%> %s format"
msgstr ""
-#: c-format.c:1835
+#: c-format.c:1898
#, gcc-internal-format
msgid "%s ignored with %s and %<%%%c%> %s format"
msgstr ""
-#: c-format.c:1839
+#: c-format.c:1902
#, gcc-internal-format
msgid "%s ignored with %s in %s format"
msgstr ""
-#: c-format.c:1846
+#: c-format.c:1909
#, gcc-internal-format
msgid "use of %s and %s together with %<%%%c%> %s format"
msgstr ""
-#: c-format.c:1850
+#: c-format.c:1913
#, gcc-internal-format
msgid "use of %s and %s together in %s format"
msgstr ""
-#: c-format.c:1869
+#: c-format.c:1932
#, gcc-internal-format
msgid "%<%%%c%> yields only last 2 digits of year in some locales"
msgstr ""
-#: c-format.c:1872
+#: c-format.c:1935
#, gcc-internal-format
msgid "%<%%%c%> yields only last 2 digits of year"
msgstr ""
#. The end of the format string was reached.
-#: c-format.c:1889
+#: c-format.c:1952
#, gcc-internal-format
msgid "no closing %<]%> for %<%%[%> format"
msgstr ""
-#: c-format.c:1903
+#: c-format.c:1966
#, gcc-internal-format
msgid "use of %qs length modifier with %qc type character"
msgstr ""
-#: c-format.c:1925
+#: c-format.c:1988
#, gcc-internal-format
msgid "%s does not support the %<%%%s%c%> %s format"
msgstr ""
-#: c-format.c:1942
+#: c-format.c:2005
#, gcc-internal-format
msgid "operand number specified with suppressed assignment"
msgstr ""
-#: c-format.c:1945
+#: c-format.c:2008
#, gcc-internal-format
msgid "operand number specified for format taking no argument"
msgstr ""
-#: c-format.c:2088
+#: c-format.c:2151
#, gcc-internal-format
msgid "writing through null pointer (argument %d)"
msgstr ""
-#: c-format.c:2096
+#: c-format.c:2159
#, gcc-internal-format
msgid "reading through null pointer (argument %d)"
msgstr ""
-#: c-format.c:2116
+#: c-format.c:2179
#, gcc-internal-format
msgid "writing into constant object (argument %d)"
msgstr ""
-#: c-format.c:2127
+#: c-format.c:2190
#, gcc-internal-format
msgid "extra type qualifiers in format argument (argument %d)"
msgstr ""
-#: c-format.c:2238
+#: c-format.c:2301
#, gcc-internal-format
msgid "%s should have type %<%s%s%>, but argument %d has type %qT"
msgstr ""
-#: c-format.c:2242
+#: c-format.c:2305
#, gcc-internal-format
msgid "format %q.*s expects type %<%s%s%>, but argument %d has type %qT"
msgstr ""
-#: c-format.c:2250
+#: c-format.c:2313
#, gcc-internal-format
msgid "%s should have type %<%T%s%>, but argument %d has type %qT"
msgstr ""
-#: c-format.c:2254
+#: c-format.c:2317
#, gcc-internal-format
msgid "format %q.*s expects type %<%T%s%>, but argument %d has type %qT"
msgstr ""
-#: c-format.c:2313 c-format.c:2319 c-format.c:2420
+#: c-format.c:2376 c-format.c:2382 c-format.c:2532
#, gcc-internal-format
msgid "%<__gcc_host_wide_int__%> is not defined as a type"
msgstr ""
-#: c-format.c:2326 c-format.c:2430
+#: c-format.c:2389 c-format.c:2542
#, gcc-internal-format
msgid "%<__gcc_host_wide_int__%> is not defined as %<long%> or %<long long%>"
msgstr ""
-#: c-format.c:2379
+#: c-format.c:2438
+#, gcc-internal-format
+msgid "%<locus%> is not defined as a type"
+msgstr ""
+
+#: c-format.c:2491
#, gcc-internal-format
msgid "%<location_t%> is not defined as a type"
msgstr ""
-#: c-format.c:2396
+#: c-format.c:2508
#, gcc-internal-format
msgid "%<tree%> is not defined as a type"
msgstr ""
-#: c-format.c:2401
+#: c-format.c:2513
#, gcc-internal-format
msgid "%<tree%> is not defined as a pointer type"
msgstr ""
-#: c-format.c:2587
+#: c-format.c:2724
#, gcc-internal-format
msgid "args to be formatted is not %<...%>"
msgstr ""
-#: c-format.c:2596
+#: c-format.c:2733
#, gcc-internal-format
msgid "strftime formats cannot format arguments"
msgstr ""
@@ -11102,52 +15808,52 @@ msgid "%Hignoring #pragma %s %s"
msgstr ""
#. ... or not.
-#: c-lex.c:411
+#: c-lex.c:412
#, gcc-internal-format
msgid "%Hstray %<@%> in program"
msgstr ""
-#: c-lex.c:425
+#: c-lex.c:426
#, gcc-internal-format
msgid "stray %qs in program"
msgstr ""
-#: c-lex.c:435
+#: c-lex.c:436
#, gcc-internal-format
msgid "missing terminating %c character"
msgstr ""
-#: c-lex.c:437
+#: c-lex.c:438
#, gcc-internal-format
msgid "stray %qc in program"
msgstr ""
-#: c-lex.c:439
+#: c-lex.c:440
#, gcc-internal-format
msgid "stray %<\\%o%> in program"
msgstr ""
-#: c-lex.c:600
+#: c-lex.c:601
#, gcc-internal-format
msgid "this decimal constant is unsigned only in ISO C90"
msgstr ""
-#: c-lex.c:604
+#: c-lex.c:605
#, gcc-internal-format
msgid "this decimal constant would be unsigned in ISO C90"
msgstr ""
-#: c-lex.c:620
+#: c-lex.c:621
#, gcc-internal-format
msgid "integer constant is too large for %qs type"
msgstr ""
-#: c-lex.c:686
+#: c-lex.c:687
#, gcc-internal-format
msgid "floating constant exceeds range of %<%s%>"
msgstr ""
-#: c-lex.c:769
+#: c-lex.c:770
#, gcc-internal-format
msgid "traditional C rejects string constant concatenation"
msgstr ""
@@ -11155,21 +15861,20 @@ msgstr ""
#: c-objc-common.c:81
#, gcc-internal-format
msgid ""
-"%Jfunction %qF can never be inlined because it is suppressed using -fno-"
-"inline"
+"function %q+F can never be inlined because it is suppressed using -fno-inline"
msgstr ""
#: c-objc-common.c:91
#, gcc-internal-format
msgid ""
-"%Jfunction %qF can never be inlined because it might not be bound within "
-"this unit of translation"
+"function %q+F can never be inlined because it might not be bound within this "
+"unit of translation"
msgstr ""
#: c-objc-common.c:99
#, gcc-internal-format
msgid ""
-"%Jfunction %qF can never be inlined because it uses attributes conflicting "
+"function %q+F can never be inlined because it uses attributes conflicting "
"with inlining"
msgstr ""
@@ -11259,47 +15964,42 @@ msgstr ""
msgid "-Wformat-security ignored without -Wformat"
msgstr ""
-#: c-opts.c:995
-#, gcc-internal-format
-msgid "-Wmissing-format-attribute ignored without -Wformat"
-msgstr ""
-
-#: c-opts.c:1015
+#: c-opts.c:1013
#, gcc-internal-format
msgid "opening output file %s: %m"
msgstr ""
-#: c-opts.c:1020
+#: c-opts.c:1018
#, gcc-internal-format
msgid "too many filenames given. Type %s --help for usage"
msgstr ""
-#: c-opts.c:1106
+#: c-opts.c:1104
#, gcc-internal-format
msgid "YYDEBUG was not defined at build time, -dy ignored"
msgstr ""
-#: c-opts.c:1152
+#: c-opts.c:1150
#, gcc-internal-format
msgid "opening dependency file %s: %m"
msgstr ""
-#: c-opts.c:1162
+#: c-opts.c:1160
#, gcc-internal-format
msgid "closing dependency file %s: %m"
msgstr ""
-#: c-opts.c:1165
+#: c-opts.c:1163
#, gcc-internal-format
msgid "when writing output to %s: %m"
msgstr ""
-#: c-opts.c:1245
+#: c-opts.c:1243
#, gcc-internal-format
msgid "to generate dependencies you must specify either -M or -MM"
msgstr ""
-#: c-opts.c:1413
+#: c-opts.c:1411
#, gcc-internal-format
msgid "too late for # directive to set debug directory"
msgstr ""
@@ -11309,7 +16009,7 @@ msgstr ""
msgid "ISO C forbids an empty source file"
msgstr ""
-#: c-parser.c:1054 c-parser.c:5755
+#: c-parser.c:1054 c-parser.c:5761
#, gcc-internal-format
msgid "ISO C does not allow extra %<;%> outside of a function"
msgstr ""
@@ -11342,17 +16042,17 @@ msgstr ""
msgid "ISO C forbids nested functions"
msgstr ""
-#: c-parser.c:1609 c-parser.c:2372 c-parser.c:2980 c-parser.c:3221
-#: c-parser.c:4007 c-parser.c:4588 c-parser.c:4978 c-parser.c:4998
-#: c-parser.c:5113 c-parser.c:5259 c-parser.c:5276 c-parser.c:5408
-#: c-parser.c:5420 c-parser.c:5445 c-parser.c:5573 c-parser.c:5602
-#: c-parser.c:5610 c-parser.c:5638 c-parser.c:5652 c-parser.c:5860
-#: c-parser.c:5959
+#: c-parser.c:1609 c-parser.c:2372 c-parser.c:2981 c-parser.c:3222
+#: c-parser.c:4008 c-parser.c:4589 c-parser.c:4979 c-parser.c:4999
+#: c-parser.c:5114 c-parser.c:5260 c-parser.c:5277 c-parser.c:5409
+#: c-parser.c:5421 c-parser.c:5446 c-parser.c:5574 c-parser.c:5603
+#: c-parser.c:5611 c-parser.c:5639 c-parser.c:5653 c-parser.c:5866
+#: c-parser.c:5965
#, gcc-internal-format
msgid "expected identifier"
msgstr ""
-#: c-parser.c:1635 cp/parser.c:10163
+#: c-parser.c:1635 cp/parser.c:10164
#, gcc-internal-format
msgid "comma at end of enumerator list"
msgstr ""
@@ -11362,7 +16062,7 @@ msgstr ""
msgid "expected %<,%> or %<}%>"
msgstr ""
-#: c-parser.c:1655 c-parser.c:1825
+#: c-parser.c:1655 c-parser.c:1825 c-parser.c:5728
#, gcc-internal-format
msgid "expected %<{%>"
msgstr ""
@@ -11377,7 +16077,7 @@ msgstr ""
msgid "expected class name"
msgstr ""
-#: c-parser.c:1786 c-parser.c:5512
+#: c-parser.c:1786 c-parser.c:5513
#, gcc-internal-format
msgid "extra semicolon in struct or union specified"
msgstr ""
@@ -11392,7 +16092,7 @@ msgstr ""
msgid "expected %<;%>"
msgstr ""
-#: c-parser.c:1888 c-parser.c:2814
+#: c-parser.c:1888 c-parser.c:2815
#, gcc-internal-format
msgid "expected specifier-qualifier-list"
msgstr ""
@@ -11427,77 +16127,77 @@ msgstr ""
msgid "ISO C requires a named argument before %<...%>"
msgstr ""
-#: c-parser.c:2536
+#: c-parser.c:2537
#, gcc-internal-format
msgid "expected declaration specifiers or %<...%>"
msgstr ""
-#: c-parser.c:2586
+#: c-parser.c:2587
#, gcc-internal-format
msgid "wide string literal in %<asm%>"
msgstr ""
-#: c-parser.c:2592
+#: c-parser.c:2593
#, gcc-internal-format
msgid "expected string literal"
msgstr ""
-#: c-parser.c:2906
+#: c-parser.c:2907
#, gcc-internal-format
msgid "ISO C forbids empty initializer braces"
msgstr ""
-#: c-parser.c:2951
+#: c-parser.c:2952
#, gcc-internal-format
msgid "obsolete use of designated initializer with %<:%>"
msgstr ""
-#: c-parser.c:3074
+#: c-parser.c:3075
#, gcc-internal-format
msgid "ISO C forbids specifying range of elements to initialize"
msgstr ""
-#: c-parser.c:3087
+#: c-parser.c:3088
#, gcc-internal-format
msgid "ISO C90 forbids specifying subobject to initialize"
msgstr ""
-#: c-parser.c:3095
+#: c-parser.c:3096
#, gcc-internal-format
msgid "obsolete use of designated initializer without %<=%>"
msgstr ""
-#: c-parser.c:3103
+#: c-parser.c:3104
#, gcc-internal-format
msgid "expected %<=%>"
msgstr ""
-#: c-parser.c:3240
+#: c-parser.c:3241
#, gcc-internal-format
msgid "ISO C forbids label declarations"
msgstr ""
-#: c-parser.c:3245 c-parser.c:3254
+#: c-parser.c:3246 c-parser.c:3255
#, gcc-internal-format
msgid "expected declaration or statement"
msgstr ""
-#: c-parser.c:3274 c-parser.c:3302
+#: c-parser.c:3275 c-parser.c:3303
#, gcc-internal-format
msgid "%HISO C90 forbids mixed declarations and code"
msgstr ""
-#: c-parser.c:3318
+#: c-parser.c:3319
#, gcc-internal-format
msgid "label at end of compound statement"
msgstr ""
-#: c-parser.c:3361
+#: c-parser.c:3362
#, gcc-internal-format
msgid "expected %<:%> or %<...%>"
msgstr ""
-#: c-parser.c:3497
+#: c-parser.c:3498
#, gcc-internal-format
msgid "expected identifier or %<*%>"
msgstr ""
@@ -11506,62 +16206,62 @@ msgstr ""
#. c_parser_skip_until_found stops at a closing nesting
#. delimiter without consuming it, but here we need to consume
#. it to proceed further.
-#: c-parser.c:3559
+#: c-parser.c:3560
#, gcc-internal-format
msgid "expected statement"
msgstr ""
-#: c-parser.c:3892
+#: c-parser.c:3893
#, gcc-internal-format
msgid "%E qualifier ignored on asm"
msgstr ""
-#: c-parser.c:4172
+#: c-parser.c:4173
#, gcc-internal-format
msgid "ISO C forbids omitting the middle term of a ?: expression"
msgstr ""
-#: c-parser.c:4558
+#: c-parser.c:4559
#, gcc-internal-format
msgid "traditional C rejects the unary plus operator"
msgstr ""
-#: c-parser.c:4671
+#: c-parser.c:4672
#, gcc-internal-format
msgid "%<sizeof%> applied to a bit-field"
msgstr ""
-#: c-parser.c:4814 c-parser.c:5155 c-parser.c:5177
+#: c-parser.c:4815 c-parser.c:5156 c-parser.c:5178
#, gcc-internal-format
msgid "expected expression"
msgstr ""
-#: c-parser.c:4840
+#: c-parser.c:4841
#, gcc-internal-format
msgid "braced-group within expression allowed only inside a function"
msgstr ""
-#: c-parser.c:4854
+#: c-parser.c:4855
#, gcc-internal-format
msgid "ISO C forbids braced-groups within expressions"
msgstr ""
-#: c-parser.c:5037
+#: c-parser.c:5038
#, gcc-internal-format
msgid "first argument to %<__builtin_choose_expr%> not a constant"
msgstr ""
-#: c-parser.c:5204
+#: c-parser.c:5205
#, gcc-internal-format
msgid "compound literal has variable size"
msgstr ""
-#: c-parser.c:5212
+#: c-parser.c:5213
#, gcc-internal-format
msgid "ISO C90 forbids compound literals"
msgstr ""
-#: c-parser.c:5723
+#: c-parser.c:5724
#, gcc-internal-format
msgid "extra semicolon in method definition specified"
msgstr ""
@@ -11613,7 +16313,7 @@ msgstr ""
#: c-pch.c:467
#, gcc-internal-format
-msgid "%s: couldn%'t open PCH file: %m\n"
+msgid "%s: couldn%'t open PCH file: %m"
msgstr ""
#: c-pch.c:472
@@ -11626,164 +16326,164 @@ msgstr ""
msgid "%s: PCH file was invalid"
msgstr ""
-#: c-pragma.c:100
+#: c-pragma.c:101
#, gcc-internal-format
msgid "#pragma pack (pop) encountered without matching #pragma pack (push)"
msgstr ""
-#: c-pragma.c:113
+#: c-pragma.c:114
#, gcc-internal-format
msgid ""
"#pragma pack(pop, %s) encountered without matching #pragma pack(push, %s)"
msgstr ""
-#: c-pragma.c:127
+#: c-pragma.c:128
#, gcc-internal-format
msgid "#pragma pack(push[, id], <n>) is not supported on this target"
msgstr ""
-#: c-pragma.c:129
+#: c-pragma.c:130
#, gcc-internal-format
msgid "#pragma pack(pop[, id], <n>) is not supported on this target"
msgstr ""
-#: c-pragma.c:150
+#: c-pragma.c:151
#, gcc-internal-format
msgid "missing %<(%> after %<#pragma pack%> - ignored"
msgstr ""
-#: c-pragma.c:163 c-pragma.c:203
+#: c-pragma.c:164 c-pragma.c:204
#, gcc-internal-format
msgid "malformed %<#pragma pack%> - ignored"
msgstr ""
-#: c-pragma.c:168
+#: c-pragma.c:169
#, gcc-internal-format
msgid "malformed %<#pragma pack(push[, id][, <n>])%> - ignored"
msgstr ""
-#: c-pragma.c:170
+#: c-pragma.c:171
#, gcc-internal-format
msgid "malformed %<#pragma pack(pop[, id])%> - ignored"
msgstr ""
-#: c-pragma.c:179
+#: c-pragma.c:180
#, gcc-internal-format
msgid "unknown action %qs for %<#pragma pack%> - ignored"
msgstr ""
-#: c-pragma.c:206
+#: c-pragma.c:207
#, gcc-internal-format
msgid "junk at end of %<#pragma pack%>"
msgstr ""
-#: c-pragma.c:209
+#: c-pragma.c:210
#, gcc-internal-format
msgid "#pragma pack has no effect with -fpack-struct - ignored"
msgstr ""
-#: c-pragma.c:229
+#: c-pragma.c:230
#, gcc-internal-format
msgid "alignment must be a small power of two, not %d"
msgstr ""
-#: c-pragma.c:262
+#: c-pragma.c:263
#, gcc-internal-format
msgid ""
-"%Japplying #pragma weak %qD after first use results in unspecified behavior"
+"applying #pragma weak %q+D after first use results in unspecified behavior"
msgstr ""
-#: c-pragma.c:336 c-pragma.c:341
+#: c-pragma.c:337 c-pragma.c:342
#, gcc-internal-format
msgid "malformed #pragma weak, ignored"
msgstr ""
-#: c-pragma.c:345
+#: c-pragma.c:346
#, gcc-internal-format
msgid "junk at end of #pragma weak"
msgstr ""
-#: c-pragma.c:413 c-pragma.c:415
+#: c-pragma.c:414 c-pragma.c:416
#, gcc-internal-format
msgid "malformed #pragma redefine_extname, ignored"
msgstr ""
-#: c-pragma.c:418
+#: c-pragma.c:419
#, gcc-internal-format
msgid "junk at end of #pragma redefine_extname"
msgstr ""
-#: c-pragma.c:424
+#: c-pragma.c:425
#, gcc-internal-format
msgid "#pragma redefine_extname not supported on this target"
msgstr ""
-#: c-pragma.c:441 c-pragma.c:528
+#: c-pragma.c:442 c-pragma.c:529
#, gcc-internal-format
msgid "#pragma redefine_extname ignored due to conflict with previous rename"
msgstr ""
-#: c-pragma.c:464
+#: c-pragma.c:465
#, gcc-internal-format
msgid ""
"#pragma redefine_extname ignored due to conflict with previous #pragma "
"redefine_extname"
msgstr ""
-#: c-pragma.c:483
+#: c-pragma.c:484
#, gcc-internal-format
msgid "malformed #pragma extern_prefix, ignored"
msgstr ""
-#: c-pragma.c:486
+#: c-pragma.c:487
#, gcc-internal-format
msgid "junk at end of #pragma extern_prefix"
msgstr ""
-#: c-pragma.c:493
+#: c-pragma.c:494
#, gcc-internal-format
msgid "#pragma extern_prefix not supported on this target"
msgstr ""
-#: c-pragma.c:519
+#: c-pragma.c:520
#, gcc-internal-format
msgid "asm declaration ignored due to conflict with previous rename"
msgstr ""
-#: c-pragma.c:550
+#: c-pragma.c:551
#, gcc-internal-format
msgid ""
"#pragma redefine_extname ignored due to conflict with __asm__ declaration"
msgstr ""
-#: c-pragma.c:615
+#: c-pragma.c:616
#, gcc-internal-format
msgid "#pragma GCC visibility must be followed by push or pop"
msgstr ""
-#: c-pragma.c:622
+#: c-pragma.c:623
#, gcc-internal-format
-msgid "No matching push for %<#pragma GCC visibility pop%>"
+msgid "no matching push for %<#pragma GCC visibility pop%>"
msgstr ""
-#: c-pragma.c:634 c-pragma.c:660
+#: c-pragma.c:635 c-pragma.c:661
#, gcc-internal-format
msgid "missing %<(%> after %<#pragma GCC visibility push%> - ignored"
msgstr ""
-#: c-pragma.c:638
+#: c-pragma.c:639
#, gcc-internal-format
msgid "malformed #pragma GCC visibility push"
msgstr ""
-#: c-pragma.c:655
+#: c-pragma.c:656
#, gcc-internal-format
msgid ""
"#pragma GCC visibility push() must specify default, internal, hidden or "
"protected"
msgstr ""
-#: c-pragma.c:664
+#: c-pragma.c:665
#, gcc-internal-format
msgid "junk at end of %<#pragma GCC visibility%>"
msgstr ""
@@ -11793,7 +16493,7 @@ msgstr ""
msgid "%qD has an incomplete type"
msgstr ""
-#: c-typeck.c:164 cp/call.c:2679
+#: c-typeck.c:164 cp/call.c:2696
#, gcc-internal-format
msgid "invalid use of void expression"
msgstr ""
@@ -11819,82 +16519,82 @@ msgstr ""
msgid "invalid use of incomplete typedef %qD"
msgstr ""
-#: c-typeck.c:396 c-typeck.c:421
+#: c-typeck.c:417 c-typeck.c:442
#, gcc-internal-format
msgid "function types not truly compatible in ISO C"
msgstr ""
-#: c-typeck.c:802
+#: c-typeck.c:824
#, gcc-internal-format
msgid "types are not quite compatible"
msgstr ""
-#: c-typeck.c:1044
+#: c-typeck.c:1066
#, gcc-internal-format
msgid "function return types not compatible due to %<volatile%>"
msgstr ""
-#: c-typeck.c:1203 c-typeck.c:2491
+#: c-typeck.c:1225 c-typeck.c:2519
#, gcc-internal-format
msgid "arithmetic on pointer to an incomplete type"
msgstr ""
-#: c-typeck.c:1594
+#: c-typeck.c:1616
#, gcc-internal-format
msgid "%qT has no member named %qE"
msgstr ""
-#: c-typeck.c:1629
+#: c-typeck.c:1651
#, gcc-internal-format
msgid "request for member %qE in something not a structure or union"
msgstr ""
-#: c-typeck.c:1660
+#: c-typeck.c:1682
#, gcc-internal-format
msgid "dereferencing pointer to incomplete type"
msgstr ""
-#: c-typeck.c:1664
+#: c-typeck.c:1686
#, gcc-internal-format
msgid "dereferencing %<void *%> pointer"
msgstr ""
-#: c-typeck.c:1681 cp/typeck.c:2129
+#: c-typeck.c:1703 cp/typeck.c:2128
#, gcc-internal-format
msgid "invalid type argument of %qs"
msgstr ""
-#: c-typeck.c:1709 cp/typeck.c:2280
+#: c-typeck.c:1731 cp/typeck.c:2279
#, gcc-internal-format
msgid "subscripted value is neither array nor pointer"
msgstr ""
-#: c-typeck.c:1720 cp/typeck.c:2199 cp/typeck.c:2285
+#: c-typeck.c:1742 cp/typeck.c:2198 cp/typeck.c:2284
#, gcc-internal-format
msgid "array subscript is not an integer"
msgstr ""
-#: c-typeck.c:1726
+#: c-typeck.c:1748
#, gcc-internal-format
msgid "subscripted value is pointer to function"
msgstr ""
-#: c-typeck.c:1739 cp/typeck.c:2195
+#: c-typeck.c:1761 cp/typeck.c:2194
#, gcc-internal-format
msgid "array subscript has type %<char%>"
msgstr ""
-#: c-typeck.c:1779
+#: c-typeck.c:1801
#, gcc-internal-format
msgid "ISO C forbids subscripting %<register%> array"
msgstr ""
-#: c-typeck.c:1781
+#: c-typeck.c:1803
#, gcc-internal-format
msgid "ISO C90 forbids subscripting non-lvalue array"
msgstr ""
-#: c-typeck.c:2023
+#: c-typeck.c:2045
#, gcc-internal-format
msgid "called object %qE is not a function"
msgstr ""
@@ -11902,802 +16602,823 @@ msgstr ""
#. This situation leads to run-time undefined behavior. We can't,
#. therefore, simply error unless we can prove that all possible
#. executions of the program must execute the code.
-#: c-typeck.c:2050
+#: c-typeck.c:2072
#, gcc-internal-format
msgid "function called through a non-compatible type"
msgstr ""
-#: c-typeck.c:2160
+#: c-typeck.c:2179
#, gcc-internal-format
msgid "too many arguments to function %qE"
msgstr ""
-#: c-typeck.c:2181
+#: c-typeck.c:2200
#, gcc-internal-format
msgid "type of formal parameter %d is incomplete"
msgstr ""
-#: c-typeck.c:2194
+#: c-typeck.c:2213
#, gcc-internal-format
msgid ""
"passing argument %d of %qE as integer rather than floating due to prototype"
msgstr ""
-#: c-typeck.c:2199
+#: c-typeck.c:2218
#, gcc-internal-format
msgid ""
"passing argument %d of %qE as integer rather than complex due to prototype"
msgstr ""
-#: c-typeck.c:2204
+#: c-typeck.c:2223
#, gcc-internal-format
msgid ""
"passing argument %d of %qE as complex rather than floating due to prototype"
msgstr ""
-#: c-typeck.c:2209
+#: c-typeck.c:2228
#, gcc-internal-format
msgid ""
"passing argument %d of %qE as floating rather than integer due to prototype"
msgstr ""
-#: c-typeck.c:2214
+#: c-typeck.c:2233
#, gcc-internal-format
msgid ""
"passing argument %d of %qE as complex rather than integer due to prototype"
msgstr ""
-#: c-typeck.c:2219
+#: c-typeck.c:2238
#, gcc-internal-format
msgid ""
"passing argument %d of %qE as floating rather than complex due to prototype"
msgstr ""
-#: c-typeck.c:2231
+#: c-typeck.c:2250
#, gcc-internal-format
msgid ""
"passing argument %d of %qE as %<float%> rather than %<double%> due to "
"prototype"
msgstr ""
-#: c-typeck.c:2251
+#: c-typeck.c:2270
#, gcc-internal-format
msgid "passing argument %d of %qE with different width due to prototype"
msgstr ""
-#: c-typeck.c:2274
+#: c-typeck.c:2293
#, gcc-internal-format
msgid "passing argument %d of %qE as unsigned due to prototype"
msgstr ""
-#: c-typeck.c:2278
+#: c-typeck.c:2297
#, gcc-internal-format
msgid "passing argument %d of %qE as signed due to prototype"
msgstr ""
-#: c-typeck.c:2367
+#: c-typeck.c:2387
#, gcc-internal-format
msgid "suggest parentheses around + or - inside shift"
msgstr ""
-#: c-typeck.c:2374
+#: c-typeck.c:2395
#, gcc-internal-format
msgid "suggest parentheses around && within ||"
msgstr ""
-#: c-typeck.c:2383
+#: c-typeck.c:2405
#, gcc-internal-format
msgid "suggest parentheses around arithmetic in operand of |"
msgstr ""
-#: c-typeck.c:2387
+#: c-typeck.c:2410
#, gcc-internal-format
msgid "suggest parentheses around comparison in operand of |"
msgstr ""
-#: c-typeck.c:2396
+#: c-typeck.c:2420
#, gcc-internal-format
msgid "suggest parentheses around arithmetic in operand of ^"
msgstr ""
-#: c-typeck.c:2400
+#: c-typeck.c:2425
#, gcc-internal-format
msgid "suggest parentheses around comparison in operand of ^"
msgstr ""
-#: c-typeck.c:2407
+#: c-typeck.c:2433
#, gcc-internal-format
msgid "suggest parentheses around + or - in operand of &"
msgstr ""
-#: c-typeck.c:2411
+#: c-typeck.c:2438
#, gcc-internal-format
msgid "suggest parentheses around comparison in operand of &"
msgstr ""
-#: c-typeck.c:2417
+#: c-typeck.c:2444
#, gcc-internal-format
msgid "comparisons like X<=Y<=Z do not have their mathematical meaning"
msgstr ""
-#: c-typeck.c:2443
+#: c-typeck.c:2471
#, gcc-internal-format
msgid "pointer of type %<void *%> used in subtraction"
msgstr ""
-#: c-typeck.c:2445
+#: c-typeck.c:2473
#, gcc-internal-format
msgid "pointer to a function used in subtraction"
msgstr ""
-#: c-typeck.c:2542
+#: c-typeck.c:2570
#, gcc-internal-format
msgid "wrong type argument to unary plus"
msgstr ""
-#: c-typeck.c:2555
+#: c-typeck.c:2583
#, gcc-internal-format
msgid "wrong type argument to unary minus"
msgstr ""
-#: c-typeck.c:2572
+#: c-typeck.c:2600
#, gcc-internal-format
msgid "ISO C does not support %<~%> for complex conjugation"
msgstr ""
-#: c-typeck.c:2578
+#: c-typeck.c:2606
#, gcc-internal-format
msgid "wrong type argument to bit-complement"
msgstr ""
-#: c-typeck.c:2586
+#: c-typeck.c:2614
#, gcc-internal-format
msgid "wrong type argument to abs"
msgstr ""
-#: c-typeck.c:2598
+#: c-typeck.c:2626
#, gcc-internal-format
msgid "wrong type argument to conjugation"
msgstr ""
-#: c-typeck.c:2610
+#: c-typeck.c:2638
#, gcc-internal-format
msgid "wrong type argument to unary exclamation mark"
msgstr ""
-#: c-typeck.c:2647
+#: c-typeck.c:2675
#, gcc-internal-format
msgid "ISO C does not support %<++%> and %<--%> on complex types"
msgstr ""
-#: c-typeck.c:2663 c-typeck.c:2695
+#: c-typeck.c:2691 c-typeck.c:2723
#, gcc-internal-format
msgid "wrong type argument to increment"
msgstr ""
-#: c-typeck.c:2665 c-typeck.c:2697
+#: c-typeck.c:2693 c-typeck.c:2725
#, gcc-internal-format
msgid "wrong type argument to decrement"
msgstr ""
-#: c-typeck.c:2686
+#: c-typeck.c:2714
#, gcc-internal-format
msgid "increment of pointer to unknown structure"
msgstr ""
-#: c-typeck.c:2688
+#: c-typeck.c:2716
#, gcc-internal-format
msgid "decrement of pointer to unknown structure"
msgstr ""
-#: c-typeck.c:2862
+#: c-typeck.c:2887
#, gcc-internal-format
msgid "assignment of read-only member %qD"
msgstr ""
-#: c-typeck.c:2863
+#: c-typeck.c:2888
#, gcc-internal-format
msgid "increment of read-only member %qD"
msgstr ""
-#: c-typeck.c:2864
+#: c-typeck.c:2889
#, gcc-internal-format
msgid "decrement of read-only member %qD"
msgstr ""
-#: c-typeck.c:2868
+#: c-typeck.c:2893
#, gcc-internal-format
msgid "assignment of read-only variable %qD"
msgstr ""
-#: c-typeck.c:2869
+#: c-typeck.c:2894
#, gcc-internal-format
msgid "increment of read-only variable %qD"
msgstr ""
-#: c-typeck.c:2870
+#: c-typeck.c:2895
#, gcc-internal-format
msgid "decrement of read-only variable %qD"
msgstr ""
-#: c-typeck.c:2873
+#: c-typeck.c:2898
#, gcc-internal-format
msgid "assignment of read-only location"
msgstr ""
-#: c-typeck.c:2874
+#: c-typeck.c:2899
#, gcc-internal-format
msgid "increment of read-only location"
msgstr ""
-#: c-typeck.c:2875
+#: c-typeck.c:2900
#, gcc-internal-format
msgid "decrement of read-only location"
msgstr ""
-#: c-typeck.c:2910
+#: c-typeck.c:2935
#, gcc-internal-format
msgid "cannot take address of bit-field %qD"
msgstr ""
-#: c-typeck.c:2938
+#: c-typeck.c:2963
#, gcc-internal-format
msgid "global register variable %qD used in nested function"
msgstr ""
-#: c-typeck.c:2941
+#: c-typeck.c:2966
#, gcc-internal-format
msgid "register variable %qD used in nested function"
msgstr ""
-#: c-typeck.c:2946
+#: c-typeck.c:2971
#, gcc-internal-format
msgid "address of global register variable %qD requested"
msgstr ""
-#: c-typeck.c:2948
+#: c-typeck.c:2973
#, gcc-internal-format
msgid "address of register variable %qD requested"
msgstr ""
-#: c-typeck.c:2994
+#: c-typeck.c:3019
#, gcc-internal-format
msgid "non-lvalue array in conditional expression"
msgstr ""
-#: c-typeck.c:3038
+#: c-typeck.c:3063
#, gcc-internal-format
msgid "signed and unsigned type in conditional expression"
msgstr ""
-#: c-typeck.c:3045
+#: c-typeck.c:3070
#, gcc-internal-format
msgid "ISO C forbids conditional expr with only one void side"
msgstr ""
-#: c-typeck.c:3061 c-typeck.c:3069
+#: c-typeck.c:3086 c-typeck.c:3094
#, gcc-internal-format
msgid "ISO C forbids conditional expr between %<void *%> and function pointer"
msgstr ""
-#: c-typeck.c:3076
+#: c-typeck.c:3101
#, gcc-internal-format
msgid "pointer type mismatch in conditional expression"
msgstr ""
-#: c-typeck.c:3083 c-typeck.c:3093
+#: c-typeck.c:3108 c-typeck.c:3118
#, gcc-internal-format
msgid "pointer/integer type mismatch in conditional expression"
msgstr ""
-#: c-typeck.c:3107
+#: c-typeck.c:3132
#, gcc-internal-format
msgid "type mismatch in conditional expression"
msgstr ""
-#: c-typeck.c:3147
+#: c-typeck.c:3172
#, gcc-internal-format
msgid "left-hand operand of comma expression has no effect"
msgstr ""
-#: c-typeck.c:3181
+#: c-typeck.c:3206
#, gcc-internal-format
msgid "cast specifies array type"
msgstr ""
-#: c-typeck.c:3187
+#: c-typeck.c:3212
#, gcc-internal-format
msgid "cast specifies function type"
msgstr ""
-#: c-typeck.c:3197
+#: c-typeck.c:3222
#, gcc-internal-format
msgid "ISO C forbids casting nonscalar to the same type"
msgstr ""
-#: c-typeck.c:3214
+#: c-typeck.c:3239
#, gcc-internal-format
msgid "ISO C forbids casts to union type"
msgstr ""
-#: c-typeck.c:3223
+#: c-typeck.c:3247
#, gcc-internal-format
msgid "cast to union type from type not present in union"
msgstr ""
-#: c-typeck.c:3269
+#: c-typeck.c:3293
#, gcc-internal-format
msgid "cast adds new qualifiers to function type"
msgstr ""
#. There are qualifiers present in IN_OTYPE that are not
#. present in IN_TYPE.
-#: c-typeck.c:3274
+#: c-typeck.c:3298
#, gcc-internal-format
msgid "cast discards qualifiers from pointer target type"
msgstr ""
-#: c-typeck.c:3290
+#: c-typeck.c:3314
#, gcc-internal-format
msgid "cast increases required alignment of target type"
msgstr ""
-#: c-typeck.c:3297
+#: c-typeck.c:3321
#, gcc-internal-format
msgid "cast from pointer to integer of different size"
msgstr ""
-#: c-typeck.c:3301
+#: c-typeck.c:3325
#, gcc-internal-format
msgid "cast from function call of type %qT to non-matching type %qT"
msgstr ""
-#: c-typeck.c:3309
+#: c-typeck.c:3333
#, gcc-internal-format
msgid "cast to pointer from integer of different size"
msgstr ""
-#: c-typeck.c:3323
+#: c-typeck.c:3347
#, gcc-internal-format
msgid "type-punning to incomplete type might break strict-aliasing rules"
msgstr ""
-#: c-typeck.c:3331
+#: c-typeck.c:3355
#, gcc-internal-format
msgid "dereferencing type-punned pointer will break strict-aliasing rules"
msgstr ""
-#: c-typeck.c:3335
+#: c-typeck.c:3359
#, gcc-internal-format
msgid "dereferencing type-punned pointer might break strict-aliasing rules"
msgstr ""
-#: c-typeck.c:3348
+#: c-typeck.c:3372
#, gcc-internal-format
msgid "ISO C forbids conversion of function pointer to object pointer type"
msgstr ""
-#: c-typeck.c:3357
+#: c-typeck.c:3381
#, gcc-internal-format
msgid "ISO C forbids conversion of object pointer to function pointer type"
msgstr ""
-#: c-typeck.c:3628
+#: c-typeck.c:3652
#, gcc-internal-format
msgid "cannot pass rvalue to reference parameter"
msgstr ""
-#: c-typeck.c:3737 c-typeck.c:3869
+#: c-typeck.c:3761 c-typeck.c:3927
#, gcc-internal-format
msgid ""
"passing argument %d of %qE makes qualified function pointer from unqualified"
msgstr ""
-#: c-typeck.c:3740 c-typeck.c:3872
+#: c-typeck.c:3764 c-typeck.c:3930
#, gcc-internal-format
msgid "assignment makes qualified function pointer from unqualified"
msgstr ""
-#: c-typeck.c:3743 c-typeck.c:3874
+#: c-typeck.c:3767 c-typeck.c:3932
#, gcc-internal-format
msgid "initialization makes qualified function pointer from unqualified"
msgstr ""
-#: c-typeck.c:3746 c-typeck.c:3876
+#: c-typeck.c:3770 c-typeck.c:3934
#, gcc-internal-format
msgid "return makes qualified function pointer from unqualified"
msgstr ""
-#: c-typeck.c:3750 c-typeck.c:3836
+#: c-typeck.c:3774 c-typeck.c:3894
#, gcc-internal-format
msgid "passing argument %d of %qE discards qualifiers from pointer target type"
msgstr ""
-#: c-typeck.c:3752 c-typeck.c:3838
+#: c-typeck.c:3776 c-typeck.c:3896
#, gcc-internal-format
msgid "assignment discards qualifiers from pointer target type"
msgstr ""
-#: c-typeck.c:3754 c-typeck.c:3840
+#: c-typeck.c:3778 c-typeck.c:3898
#, gcc-internal-format
msgid "initialization discards qualifiers from pointer target type"
msgstr ""
-#: c-typeck.c:3756 c-typeck.c:3842
+#: c-typeck.c:3780 c-typeck.c:3900
#, gcc-internal-format
msgid "return discards qualifiers from pointer target type"
msgstr ""
-#: c-typeck.c:3761
+#: c-typeck.c:3785
#, gcc-internal-format
msgid "ISO C prohibits argument conversion to union type"
msgstr ""
-#: c-typeck.c:3796
+#: c-typeck.c:3820
#, gcc-internal-format
msgid "request for implicit conversion from %qT to %qT not permitted in C++"
msgstr ""
-#: c-typeck.c:3816
+#: c-typeck.c:3833
+#, gcc-internal-format
+msgid "argument %d of %qE might be a candidate for a format attribute"
+msgstr ""
+
+#: c-typeck.c:3839
+#, gcc-internal-format
+msgid "assignment left-hand side might be a candidate for a format attribute"
+msgstr ""
+
+#: c-typeck.c:3844
+#, gcc-internal-format
+msgid ""
+"initialization left-hand side might be a candidate for a format attribute"
+msgstr ""
+
+#: c-typeck.c:3849
+#, gcc-internal-format
+msgid "return type might be a candidate for a format attribute"
+msgstr ""
+
+#: c-typeck.c:3874
#, gcc-internal-format
msgid ""
"ISO C forbids passing argument %d of %qE between function pointer and %<void "
"*%>"
msgstr ""
-#: c-typeck.c:3819
+#: c-typeck.c:3877
#, gcc-internal-format
msgid "ISO C forbids assignment between function pointer and %<void *%>"
msgstr ""
-#: c-typeck.c:3821
+#: c-typeck.c:3879
#, gcc-internal-format
msgid "ISO C forbids initialization between function pointer and %<void *%>"
msgstr ""
-#: c-typeck.c:3823
+#: c-typeck.c:3881
#, gcc-internal-format
msgid "ISO C forbids return between function pointer and %<void *%>"
msgstr ""
-#: c-typeck.c:3852
+#: c-typeck.c:3910
#, gcc-internal-format
msgid "pointer targets in passing argument %d of %qE differ in signedness"
msgstr ""
-#: c-typeck.c:3854
+#: c-typeck.c:3912
#, gcc-internal-format
msgid "pointer targets in assignment differ in signedness"
msgstr ""
-#: c-typeck.c:3856
+#: c-typeck.c:3914
#, gcc-internal-format
msgid "pointer targets in initialization differ in signedness"
msgstr ""
-#: c-typeck.c:3858
+#: c-typeck.c:3916
#, gcc-internal-format
msgid "pointer targets in return differ in signedness"
msgstr ""
-#: c-typeck.c:3883
+#: c-typeck.c:3941
#, gcc-internal-format
msgid "passing argument %d of %qE from incompatible pointer type"
msgstr ""
-#: c-typeck.c:3885
+#: c-typeck.c:3943
#, gcc-internal-format
msgid "assignment from incompatible pointer type"
msgstr ""
-#: c-typeck.c:3886
+#: c-typeck.c:3944
#, gcc-internal-format
msgid "initialization from incompatible pointer type"
msgstr ""
-#: c-typeck.c:3888
+#: c-typeck.c:3946
#, gcc-internal-format
msgid "return from incompatible pointer type"
msgstr ""
-#: c-typeck.c:3910
+#: c-typeck.c:3968
#, gcc-internal-format
msgid "passing argument %d of %qE makes pointer from integer without a cast"
msgstr ""
-#: c-typeck.c:3912
+#: c-typeck.c:3970
#, gcc-internal-format
msgid "assignment makes pointer from integer without a cast"
msgstr ""
-#: c-typeck.c:3914
+#: c-typeck.c:3972
#, gcc-internal-format
msgid "initialization makes pointer from integer without a cast"
msgstr ""
-#: c-typeck.c:3916
+#: c-typeck.c:3974
#, gcc-internal-format
msgid "return makes pointer from integer without a cast"
msgstr ""
-#: c-typeck.c:3923
+#: c-typeck.c:3981
#, gcc-internal-format
msgid "passing argument %d of %qE makes integer from pointer without a cast"
msgstr ""
-#: c-typeck.c:3925
+#: c-typeck.c:3983
#, gcc-internal-format
msgid "assignment makes integer from pointer without a cast"
msgstr ""
-#: c-typeck.c:3927
+#: c-typeck.c:3985
#, gcc-internal-format
msgid "initialization makes integer from pointer without a cast"
msgstr ""
-#: c-typeck.c:3929
+#: c-typeck.c:3987
#, gcc-internal-format
msgid "return makes integer from pointer without a cast"
msgstr ""
-#: c-typeck.c:3945
+#: c-typeck.c:4003
#, gcc-internal-format
msgid "incompatible types in assignment"
msgstr ""
-#: c-typeck.c:3948
+#: c-typeck.c:4006
#, gcc-internal-format
msgid "incompatible types in initialization"
msgstr ""
-#: c-typeck.c:3951
+#: c-typeck.c:4009
#, gcc-internal-format
msgid "incompatible types in return"
msgstr ""
-#: c-typeck.c:4032
+#: c-typeck.c:4090
#, gcc-internal-format
msgid "traditional C rejects automatic aggregate initialization"
msgstr ""
-#: c-typeck.c:4200 c-typeck.c:4215 c-typeck.c:4230
+#: c-typeck.c:4258 c-typeck.c:4273 c-typeck.c:4288
#, gcc-internal-format
msgid "(near initialization for %qs)"
msgstr ""
-#: c-typeck.c:4759 cp/decl.c:4450
+#: c-typeck.c:4825 cp/decl.c:4562
#, gcc-internal-format
msgid "opaque vector types cannot be initialized"
msgstr ""
-#: c-typeck.c:5389
+#: c-typeck.c:5455
#, gcc-internal-format
msgid "unknown field %qE specified in initializer"
msgstr ""
-#: c-typeck.c:6279
+#: c-typeck.c:6349
#, gcc-internal-format
msgid "traditional C rejects initialization of unions"
msgstr ""
-#: c-typeck.c:6581
+#: c-typeck.c:6651
#, gcc-internal-format
msgid "jump into statement expression"
msgstr ""
-#: c-typeck.c:6587
+#: c-typeck.c:6657
#, gcc-internal-format
msgid "jump into scope of identifier with variably modified type"
msgstr ""
-#: c-typeck.c:6624
+#: c-typeck.c:6694
#, gcc-internal-format
msgid "ISO C forbids %<goto *expr;%>"
msgstr ""
-#: c-typeck.c:6638 cp/typeck.c:6119
+#: c-typeck.c:6709 cp/typeck.c:6156
#, gcc-internal-format
msgid "function declared %<noreturn%> has a %<return%> statement"
msgstr ""
-#: c-typeck.c:6645
+#: c-typeck.c:6717
#, gcc-internal-format
msgid "%<return%> with no value, in function returning non-void"
msgstr ""
-#: c-typeck.c:6652
+#: c-typeck.c:6726
#, gcc-internal-format
msgid "%<return%> with a value, in function returning void"
msgstr ""
-#: c-typeck.c:6709
+#: c-typeck.c:6783
#, gcc-internal-format
msgid "function returns address of local variable"
msgstr ""
-#: c-typeck.c:6780 cp/semantics.c:906
+#: c-typeck.c:6856 cp/semantics.c:908
#, gcc-internal-format
msgid "switch quantity not an integer"
msgstr ""
-#: c-typeck.c:6791
+#: c-typeck.c:6867
#, gcc-internal-format
msgid "%<long%> switch expression not converted to %<int%> in ISO C"
msgstr ""
-#: c-typeck.c:6832
+#: c-typeck.c:6908
#, gcc-internal-format
msgid ""
"case label in statement expression not containing enclosing switch statement"
msgstr ""
-#: c-typeck.c:6835
+#: c-typeck.c:6911
#, gcc-internal-format
msgid ""
"%<default%> label in statement expression not containing enclosing switch "
"statement"
msgstr ""
-#: c-typeck.c:6841
+#: c-typeck.c:6917
#, gcc-internal-format
msgid ""
"case label in scope of identifier with variably modified type not containing "
"enclosing switch statement"
msgstr ""
-#: c-typeck.c:6844
+#: c-typeck.c:6920
#, gcc-internal-format
msgid ""
"%<default%> label in scope of identifier with variably modified type not "
"containing enclosing switch statement"
msgstr ""
-#: c-typeck.c:6848 cp/parser.c:6191
+#: c-typeck.c:6924 cp/parser.c:6190
#, gcc-internal-format
msgid "case label not within a switch statement"
msgstr ""
-#: c-typeck.c:6850
+#: c-typeck.c:6926
#, gcc-internal-format
msgid "%<default%> label not within a switch statement"
msgstr ""
-#: c-typeck.c:6926
+#: c-typeck.c:7003
#, gcc-internal-format
msgid "%Hsuggest explicit braces to avoid ambiguous %<else%>"
msgstr ""
-#: c-typeck.c:6936
+#: c-typeck.c:7022
#, gcc-internal-format
msgid "%Hempty body in an if-statement"
msgstr ""
-#: c-typeck.c:6944
+#: c-typeck.c:7031
#, gcc-internal-format
msgid "%Hempty body in an else-statement"
msgstr ""
-#: c-typeck.c:7053 cp/cp-gimplify.c:118 cp/parser.c:6683
+#: c-typeck.c:7140 cp/cp-gimplify.c:118 cp/parser.c:6682
#, gcc-internal-format
msgid "break statement not within loop or switch"
msgstr ""
-#: c-typeck.c:7055 cp/parser.c:6694
+#: c-typeck.c:7142 cp/parser.c:6693
#, gcc-internal-format
msgid "continue statement not within a loop"
msgstr ""
-#: c-typeck.c:7075
+#: c-typeck.c:7162
#, gcc-internal-format
msgid "%Hstatement with no effect"
msgstr ""
-#: c-typeck.c:7097
+#: c-typeck.c:7184
#, gcc-internal-format
msgid "expression statement has incomplete type"
msgstr ""
-#: c-typeck.c:7549 c-typeck.c:7590
+#: c-typeck.c:7642 c-typeck.c:7683
#, gcc-internal-format
msgid "division by zero"
msgstr ""
-#: c-typeck.c:7635 cp/typeck.c:2970
+#: c-typeck.c:7728 cp/typeck.c:2967
#, gcc-internal-format
msgid "right shift count is negative"
msgstr ""
-#: c-typeck.c:7642 cp/typeck.c:2976
+#: c-typeck.c:7735 cp/typeck.c:2973
#, gcc-internal-format
msgid "right shift count >= width of type"
msgstr ""
-#: c-typeck.c:7663 cp/typeck.c:2995
+#: c-typeck.c:7756 cp/typeck.c:2992
#, gcc-internal-format
msgid "left shift count is negative"
msgstr ""
-#: c-typeck.c:7666 cp/typeck.c:2997
+#: c-typeck.c:7759 cp/typeck.c:2994
#, gcc-internal-format
msgid "left shift count >= width of type"
msgstr ""
-#: c-typeck.c:7684 cp/typeck.c:3032
+#: c-typeck.c:7777 cp/typeck.c:3029
#, gcc-internal-format
msgid "comparing floating point with == or != is unsafe"
msgstr ""
-#: c-typeck.c:7708 c-typeck.c:7715
+#: c-typeck.c:7801 c-typeck.c:7808
#, gcc-internal-format
msgid "ISO C forbids comparison of %<void *%> with function pointer"
msgstr ""
-#: c-typeck.c:7721 c-typeck.c:7767
+#: c-typeck.c:7814 c-typeck.c:7860
#, gcc-internal-format
msgid "comparison of distinct pointer types lacks a cast"
msgstr ""
-#: c-typeck.c:7735 c-typeck.c:7740 c-typeck.c:7787 c-typeck.c:7792
+#: c-typeck.c:7828 c-typeck.c:7833 c-typeck.c:7880 c-typeck.c:7885
#, gcc-internal-format
msgid "comparison between pointer and integer"
msgstr ""
-#: c-typeck.c:7759
+#: c-typeck.c:7852
#, gcc-internal-format
msgid "comparison of complete and incomplete pointers"
msgstr ""
-#: c-typeck.c:7762
+#: c-typeck.c:7855
#, gcc-internal-format
msgid "ISO C forbids ordered comparisons of pointers to functions"
msgstr ""
-#: c-typeck.c:7775 c-typeck.c:7782
+#: c-typeck.c:7868 c-typeck.c:7875
#, gcc-internal-format
msgid "ordered comparison of pointer with integer zero"
msgstr ""
-#: c-typeck.c:8012
+#: c-typeck.c:8105
#, gcc-internal-format
msgid "comparison between signed and unsigned"
msgstr ""
-#: c-typeck.c:8058 cp/typeck.c:3455
+#: c-typeck.c:8151 cp/typeck.c:3452
#, gcc-internal-format
msgid "comparison of promoted ~unsigned with constant"
msgstr ""
-#: c-typeck.c:8066 cp/typeck.c:3463
+#: c-typeck.c:8159 cp/typeck.c:3460
#, gcc-internal-format
msgid "comparison of promoted ~unsigned with unsigned"
msgstr ""
-#: c-typeck.c:8123
+#: c-typeck.c:8217
#, gcc-internal-format
msgid "used array that cannot be converted to pointer where scalar is required"
msgstr ""
-#: c-typeck.c:8127
+#: c-typeck.c:8221
#, gcc-internal-format
msgid "used struct type value where scalar is required"
msgstr ""
-#: c-typeck.c:8131
+#: c-typeck.c:8225
#, gcc-internal-format
msgid "used union type value where scalar is required"
msgstr ""
-#: calls.c:1915
+#: calls.c:1906
#, gcc-internal-format
msgid "function call has aggregate value"
msgstr ""
-#: cfgexpand.c:1491
+#: cfgexpand.c:1494
#, gcc-internal-format
msgid "not protecting local variables: variable length buffer"
msgstr ""
-#: cfgexpand.c:1493
+#: cfgexpand.c:1496
#, gcc-internal-format
msgid "not protecting function: no buffer at least %d bytes long"
msgstr ""
@@ -12742,9 +17463,9 @@ msgstr ""
msgid "verify_flow_info: Basic block %d succ edge is corrupted"
msgstr ""
-#: cfghooks.c:165 cfgrtl.c:2029
+#: cfghooks.c:165 cfgrtl.c:2051
#, gcc-internal-format
-msgid "Wrong amount of branch edges after unconditional jump %i"
+msgid "wrong amount of branch edges after unconditional jump %i"
msgstr ""
#: cfghooks.c:173 cfghooks.c:184
@@ -12769,375 +17490,375 @@ msgstr ""
#: cfghooks.c:288
#, gcc-internal-format
-msgid "%s does not support redirect_edge_and_branch."
+msgid "%s does not support redirect_edge_and_branch"
msgstr ""
#: cfghooks.c:306
#, gcc-internal-format
-msgid "%s does not support redirect_edge_and_branch_force."
+msgid "%s does not support redirect_edge_and_branch_force"
msgstr ""
#: cfghooks.c:324
#, gcc-internal-format
-msgid "%s does not support split_block."
+msgid "%s does not support split_block"
msgstr ""
#: cfghooks.c:360
#, gcc-internal-format
-msgid "%s does not support move_block_after."
+msgid "%s does not support move_block_after"
msgstr ""
#: cfghooks.c:373
#, gcc-internal-format
-msgid "%s does not support delete_basic_block."
+msgid "%s does not support delete_basic_block"
msgstr ""
#: cfghooks.c:405
#, gcc-internal-format
-msgid "%s does not support split_edge."
+msgid "%s does not support split_edge"
msgstr ""
#: cfghooks.c:466
#, gcc-internal-format
-msgid "%s does not support create_basic_block."
+msgid "%s does not support create_basic_block"
msgstr ""
#: cfghooks.c:494
#, gcc-internal-format
-msgid "%s does not support can_merge_blocks_p."
+msgid "%s does not support can_merge_blocks_p"
msgstr ""
#: cfghooks.c:505
#, gcc-internal-format
-msgid "%s does not support predict_edge."
+msgid "%s does not support predict_edge"
msgstr ""
#: cfghooks.c:514
#, gcc-internal-format
-msgid "%s does not support predicted_by_p."
+msgid "%s does not support predicted_by_p"
msgstr ""
#: cfghooks.c:528
#, gcc-internal-format
-msgid "%s does not support merge_blocks."
+msgid "%s does not support merge_blocks"
msgstr ""
#: cfghooks.c:573
#, gcc-internal-format
-msgid "%s does not support make_forwarder_block."
+msgid "%s does not support make_forwarder_block"
msgstr ""
#: cfghooks.c:678
#, gcc-internal-format
-msgid "%s does not support can_duplicate_block_p."
+msgid "%s does not support can_duplicate_block_p"
msgstr ""
-#: cfghooks.c:705
+#: cfghooks.c:706
#, gcc-internal-format
-msgid "%s does not support duplicate_block."
+msgid "%s does not support duplicate_block"
msgstr ""
-#: cfghooks.c:771
+#: cfghooks.c:774
#, gcc-internal-format
msgid "%s does not support block_ends_with_call_p"
msgstr ""
-#: cfghooks.c:782
+#: cfghooks.c:785
#, gcc-internal-format
msgid "%s does not support block_ends_with_condjump_p"
msgstr ""
-#: cfghooks.c:800
+#: cfghooks.c:803
#, gcc-internal-format
msgid "%s does not support flow_call_edges_add"
msgstr ""
#: cfgloop.c:1088
#, gcc-internal-format
-msgid "Size of loop %d should be %d, not %d."
+msgid "size of loop %d should be %d, not %d"
msgstr ""
#: cfgloop.c:1105
#, gcc-internal-format
-msgid "Bb %d do not belong to loop %d."
+msgid "bb %d do not belong to loop %d"
msgstr ""
#: cfgloop.c:1122
#, gcc-internal-format
-msgid "Loop %d's header does not have exactly 2 entries."
+msgid "loop %d's header does not have exactly 2 entries"
msgstr ""
#: cfgloop.c:1129
#, gcc-internal-format
-msgid "Loop %d's latch does not have exactly 1 successor."
+msgid "loop %d's latch does not have exactly 1 successor"
msgstr ""
#: cfgloop.c:1134
#, gcc-internal-format
-msgid "Loop %d's latch does not have header as successor."
+msgid "loop %d's latch does not have header as successor"
msgstr ""
#: cfgloop.c:1139
#, gcc-internal-format
-msgid "Loop %d's latch does not belong directly to it."
+msgid "loop %d's latch does not belong directly to it"
msgstr ""
#: cfgloop.c:1145
#, gcc-internal-format
-msgid "Loop %d's header does not belong directly to it."
+msgid "loop %d's header does not belong directly to it"
msgstr ""
#: cfgloop.c:1151
#, gcc-internal-format
-msgid "Loop %d's latch is marked as part of irreducible region."
+msgid "loop %d's latch is marked as part of irreducible region"
msgstr ""
#: cfgloop.c:1184
#, gcc-internal-format
-msgid "Basic block %d should be marked irreducible."
+msgid "basic block %d should be marked irreducible"
msgstr ""
#: cfgloop.c:1190
#, gcc-internal-format
-msgid "Basic block %d should not be marked irreducible."
+msgid "basic block %d should not be marked irreducible"
msgstr ""
#: cfgloop.c:1198
#, gcc-internal-format
-msgid "Edge from %d to %d should be marked irreducible."
+msgid "edge from %d to %d should be marked irreducible"
msgstr ""
#: cfgloop.c:1205
#, gcc-internal-format
-msgid "Edge from %d to %d should not be marked irreducible."
+msgid "edge from %d to %d should not be marked irreducible"
msgstr ""
#: cfgloop.c:1240
#, gcc-internal-format
-msgid "Wrong single exit %d->%d recorded for loop %d."
+msgid "wrong single exit %d->%d recorded for loop %d"
msgstr ""
#: cfgloop.c:1244
#, gcc-internal-format
-msgid "Right exit is %d->%d."
+msgid "right exit is %d->%d"
msgstr ""
#: cfgloop.c:1261
#, gcc-internal-format
-msgid "Single exit not recorded for loop %d."
+msgid "single exit not recorded for loop %d"
msgstr ""
#: cfgloop.c:1268
#, gcc-internal-format
-msgid "Loop %d should not have single exit (%d -> %d)."
+msgid "loop %d should not have single exit (%d -> %d)"
msgstr ""
-#: cfgrtl.c:1915
+#: cfgrtl.c:1937
#, gcc-internal-format
msgid "BB_RTL flag not set for block %d"
msgstr ""
-#: cfgrtl.c:1921
+#: cfgrtl.c:1943
#, gcc-internal-format
msgid "end insn %d for block %d not found in the insn stream"
msgstr ""
-#: cfgrtl.c:1935
+#: cfgrtl.c:1957
#, gcc-internal-format
msgid "insn %d is in multiple basic blocks (%d and %d)"
msgstr ""
-#: cfgrtl.c:1947
+#: cfgrtl.c:1969
#, gcc-internal-format
msgid "head insn %d for block %d not found in the insn stream"
msgstr ""
-#: cfgrtl.c:1971
+#: cfgrtl.c:1993
#, gcc-internal-format
msgid "verify_flow_info: REG_BR_PROB does not match cfg %wi %i"
msgstr ""
-#: cfgrtl.c:1986
+#: cfgrtl.c:2008
#, gcc-internal-format
-msgid "Fallthru edge crosses section boundary (bb %i)"
+msgid "fallthru edge crosses section boundary (bb %i)"
msgstr ""
-#: cfgrtl.c:2011
+#: cfgrtl.c:2033
#, gcc-internal-format
-msgid "Missing REG_EH_REGION note in the end of bb %i"
+msgid "missing REG_EH_REGION note in the end of bb %i"
msgstr ""
-#: cfgrtl.c:2019
+#: cfgrtl.c:2041
#, gcc-internal-format
-msgid "Too many outgoing branch edges from bb %i"
+msgid "too many outgoing branch edges from bb %i"
msgstr ""
-#: cfgrtl.c:2024
+#: cfgrtl.c:2046
#, gcc-internal-format
-msgid "Fallthru edge after unconditional jump %i"
+msgid "fallthru edge after unconditional jump %i"
msgstr ""
-#: cfgrtl.c:2035
+#: cfgrtl.c:2057
#, gcc-internal-format
-msgid "Wrong amount of branch edges after conditional jump %i"
+msgid "wrong amount of branch edges after conditional jump %i"
msgstr ""
-#: cfgrtl.c:2040
+#: cfgrtl.c:2062
#, gcc-internal-format
-msgid "Call edges for non-call insn in bb %i"
+msgid "call edges for non-call insn in bb %i"
msgstr ""
-#: cfgrtl.c:2049
+#: cfgrtl.c:2071
#, gcc-internal-format
-msgid "Abnormal edges for no purpose in bb %i"
+msgid "abnormal edges for no purpose in bb %i"
msgstr ""
-#: cfgrtl.c:2061
+#: cfgrtl.c:2083
#, gcc-internal-format
msgid "insn %d inside basic block %d but block_for_insn is NULL"
msgstr ""
-#: cfgrtl.c:2065
+#: cfgrtl.c:2087
#, gcc-internal-format
msgid "insn %d inside basic block %d but block_for_insn is %i"
msgstr ""
-#: cfgrtl.c:2079 cfgrtl.c:2089
+#: cfgrtl.c:2101 cfgrtl.c:2111
#, gcc-internal-format
msgid "NOTE_INSN_BASIC_BLOCK is missing for block %d"
msgstr ""
-#: cfgrtl.c:2102
+#: cfgrtl.c:2124
#, gcc-internal-format
msgid "NOTE_INSN_BASIC_BLOCK %d in middle of basic block %d"
msgstr ""
-#: cfgrtl.c:2112
+#: cfgrtl.c:2134
#, gcc-internal-format
msgid "in basic block %d:"
msgstr ""
-#: cfgrtl.c:2149
+#: cfgrtl.c:2171
#, gcc-internal-format
msgid "bb prediction set for block %i, but it is not used in RTL land"
msgstr ""
-#: cfgrtl.c:2167
+#: cfgrtl.c:2189
#, gcc-internal-format
msgid "missing barrier after block %i"
msgstr ""
-#: cfgrtl.c:2180
+#: cfgrtl.c:2202
#, gcc-internal-format
msgid "verify_flow_info: Incorrect blocks for fallthru %i->%i"
msgstr ""
-#: cfgrtl.c:2189
+#: cfgrtl.c:2211
#, gcc-internal-format
msgid "verify_flow_info: Incorrect fallthru %i->%i"
msgstr ""
-#: cfgrtl.c:2208
+#: cfgrtl.c:2230
#, gcc-internal-format
msgid "basic blocks not laid down consecutively"
msgstr ""
-#: cfgrtl.c:2247
+#: cfgrtl.c:2269
#, gcc-internal-format
msgid "number of bb notes in insn chain (%d) != n_basic_blocks (%d)"
msgstr ""
-#: cgraph.c:762
+#: cgraph.c:763
#, gcc-internal-format
msgid "%D renamed after being referenced in assembly"
msgstr ""
-#: cgraphunit.c:655
+#: cgraphunit.c:662
#, gcc-internal-format
-msgid "Aux field set for edge %s->%s"
+msgid "aux field set for edge %s->%s"
msgstr ""
-#: cgraphunit.c:667
+#: cgraphunit.c:674
#, gcc-internal-format
-msgid "Inlined_to pointer is wrong"
+msgid "inlined_to pointer is wrong"
msgstr ""
-#: cgraphunit.c:672
+#: cgraphunit.c:679
#, gcc-internal-format
-msgid "Multiple inline callers"
+msgid "multiple inline callers"
msgstr ""
-#: cgraphunit.c:679
+#: cgraphunit.c:686
#, gcc-internal-format
-msgid "Inlined_to pointer set for noninline callers"
+msgid "inlined_to pointer set for noninline callers"
msgstr ""
-#: cgraphunit.c:685
+#: cgraphunit.c:692
#, gcc-internal-format
-msgid "Inlined_to pointer is set but no predecesors found"
+msgid "inlined_to pointer is set but no predecesors found"
msgstr ""
-#: cgraphunit.c:690
+#: cgraphunit.c:697
#, gcc-internal-format
-msgid "Inlined_to pointer refers to itself"
+msgid "inlined_to pointer refers to itself"
msgstr ""
-#: cgraphunit.c:700
+#: cgraphunit.c:707
#, gcc-internal-format
-msgid "Node not found in DECL_ASSEMBLER_NAME hash"
+msgid "node not found in DECL_ASSEMBLER_NAME hash"
msgstr ""
-#: cgraphunit.c:728
+#: cgraphunit.c:735
#, gcc-internal-format
-msgid "Shared call_stmt:"
+msgid "shared call_stmt:"
msgstr ""
-#: cgraphunit.c:734
+#: cgraphunit.c:741
#, gcc-internal-format
-msgid "Edge points to wrong declaration:"
+msgid "edge points to wrong declaration:"
msgstr ""
-#: cgraphunit.c:743
+#: cgraphunit.c:750
#, gcc-internal-format
-msgid "Missing callgraph edge for call stmt:"
+msgid "missing callgraph edge for call stmt:"
msgstr ""
-#: cgraphunit.c:760
+#: cgraphunit.c:767
#, gcc-internal-format
-msgid "Edge %s->%s has no corresponding call_stmt"
+msgid "edge %s->%s has no corresponding call_stmt"
msgstr ""
-#: cgraphunit.c:772
+#: cgraphunit.c:779
#, gcc-internal-format
-msgid "verify_cgraph_node failed."
+msgid "verify_cgraph_node failed"
msgstr ""
-#: cgraphunit.c:1006
+#: cgraphunit.c:1016
#, gcc-internal-format
msgid "failed to reclaim unneeded function"
msgstr ""
-#: cgraphunit.c:1274
+#: cgraphunit.c:1296
#, gcc-internal-format
-msgid "Nodes with no released memory found."
+msgid "nodes with no released memory found"
msgstr ""
-#: collect2.c:1192
+#: collect2.c:1172
#, gcc-internal-format
msgid "unknown demangling style '%s'"
msgstr ""
-#: collect2.c:1515
+#: collect2.c:1495
#, gcc-internal-format
msgid "%s terminated with signal %d [%s]%s"
msgstr ""
-#: collect2.c:1533
+#: collect2.c:1513
#, gcc-internal-format
msgid "%s returned %d exit status"
msgstr ""
-#: collect2.c:2195
+#: collect2.c:2175
#, gcc-internal-format
msgid "cannot find 'ldd'"
msgstr ""
@@ -13199,7 +17920,7 @@ msgstr ""
#: coverage.c:274 coverage.c:282
#, gcc-internal-format
-msgid "coverage mismatch for function %u while reading execution counters."
+msgid "coverage mismatch for function %u while reading execution counters"
msgstr ""
#: coverage.c:276 coverage.c:359
@@ -13229,25 +17950,25 @@ msgstr ""
#: coverage.c:348
#, gcc-internal-format
-msgid "no coverage for function %qs found."
+msgid "no coverage for function %qs found"
msgstr ""
#: coverage.c:356 coverage.c:364
#, gcc-internal-format
-msgid "coverage mismatch for function %qs while reading counter %qs."
+msgid "coverage mismatch for function %qs while reading counter %qs"
msgstr ""
-#: coverage.c:549
+#: coverage.c:523
#, gcc-internal-format
msgid "cannot open %s"
msgstr ""
-#: coverage.c:584
+#: coverage.c:558
#, gcc-internal-format
msgid "error writing %qs"
msgstr ""
-#: diagnostic.c:589
+#: diagnostic.c:590
#, gcc-internal-format
msgid "in %s, at %s:%d"
msgstr ""
@@ -13267,27 +17988,27 @@ msgstr ""
msgid "ENTRY does not dominate bb %d"
msgstr ""
-#: dwarf2out.c:3451
+#: dwarf2out.c:3469
#, gcc-internal-format
-msgid "DW_LOC_OP %s not implemented\n"
+msgid "DW_LOC_OP %s not implemented"
msgstr ""
-#: emit-rtl.c:2201
+#: emit-rtl.c:2266
#, gcc-internal-format
-msgid "Invalid rtl sharing found in the insn"
+msgid "invalid rtl sharing found in the insn"
msgstr ""
-#: emit-rtl.c:2203
+#: emit-rtl.c:2268
#, gcc-internal-format
-msgid "Shared rtx"
+msgid "shared rtx"
msgstr ""
-#: emit-rtl.c:2205
+#: emit-rtl.c:2270 flow.c:495 flow.c:520 flow.c:542
#, gcc-internal-format
-msgid "Internal consistency failure"
+msgid "internal consistency failure"
msgstr ""
-#: emit-rtl.c:3269
+#: emit-rtl.c:3334
#, gcc-internal-format
msgid "ICE: emit_insn used where emit_jump_insn needed:\n"
msgstr ""
@@ -13297,147 +18018,142 @@ msgstr ""
msgid "abort in %s, at %s:%d"
msgstr ""
-#: except.c:331
+#: except.c:333
#, gcc-internal-format
msgid "exception handling disabled, use -fexceptions to enable"
msgstr ""
-#: except.c:2740
+#: except.c:2757
#, gcc-internal-format
msgid "argument of %<__builtin_eh_return_regno%> must be constant"
msgstr ""
-#: except.c:2871
+#: except.c:2888
#, gcc-internal-format
msgid "__builtin_eh_return not supported on this target"
msgstr ""
-#: except.c:3704 except.c:3713
+#: except.c:3738 except.c:3747
#, gcc-internal-format
msgid "region_array is corrupted for region %i"
msgstr ""
-#: except.c:3718
+#: except.c:3752
#, gcc-internal-format
msgid "outer block of region %i is wrong"
msgstr ""
-#: except.c:3723
+#: except.c:3757
#, gcc-internal-format
msgid "region %i may contain throw and is contained in region that may not"
msgstr ""
-#: except.c:3729
+#: except.c:3763
#, gcc-internal-format
msgid "negative nesting depth of region %i"
msgstr ""
-#: except.c:3749
+#: except.c:3783
#, gcc-internal-format
-msgid "Tree list ends on depth %i"
+msgid "tree list ends on depth %i"
msgstr ""
-#: except.c:3754
+#: except.c:3788
#, gcc-internal-format
msgid "array does not match the region tree"
msgstr ""
-#: except.c:3760
+#: except.c:3794
#, gcc-internal-format
-msgid "verify_eh_tree failed."
+msgid "verify_eh_tree failed"
msgstr ""
-#: explow.c:1217
+#: explow.c:1212
#, gcc-internal-format
msgid "stack limits not supported on this target"
msgstr ""
-#: flow.c:494 flow.c:519 flow.c:541
-#, gcc-internal-format
-msgid "internal consistency failure"
-msgstr ""
-
-#: fold-const.c:3310 fold-const.c:3321
+#: fold-const.c:3309 fold-const.c:3320
#, gcc-internal-format
msgid "comparison is always %d due to width of bit-field"
msgstr ""
-#: fold-const.c:4892 fold-const.c:4907
+#: fold-const.c:4903 fold-const.c:4918
#, gcc-internal-format
msgid "comparison is always %d"
msgstr ""
-#: fold-const.c:5036
+#: fold-const.c:5047
#, gcc-internal-format
msgid "%<or%> of unmatched not-equal tests is always 1"
msgstr ""
-#: fold-const.c:5041
+#: fold-const.c:5052
#, gcc-internal-format
msgid "%<and%> of mutually exclusive equal-tests is always 0"
msgstr ""
-#: fold-const.c:10152
+#: fold-const.c:10273
#, gcc-internal-format
msgid "fold check: original tree changed by fold"
msgstr ""
-#: function.c:823 varasm.c:1660
+#: function.c:823 varasm.c:1669
#, gcc-internal-format
-msgid "%Jsize of variable %qD is too large"
+msgid "size of variable %q+D is too large"
msgstr ""
-#: function.c:1532
+#: function.c:1526
#, gcc-internal-format
msgid "impossible constraint in %<asm%>"
msgstr ""
-#: function.c:3454
+#: function.c:3467
#, gcc-internal-format
-msgid "%Jvariable %qD might be clobbered by %<longjmp%> or %<vfork%>"
+msgid "variable %q+D might be clobbered by %<longjmp%> or %<vfork%>"
msgstr ""
-#: function.c:3475
+#: function.c:3488
#, gcc-internal-format
-msgid "%Jargument %qD might be clobbered by %<longjmp%> or %<vfork%>"
+msgid "argument %q+D might be clobbered by %<longjmp%> or %<vfork%>"
msgstr ""
-#: function.c:3870
+#: function.c:3883
#, gcc-internal-format
msgid "function returns an aggregate"
msgstr ""
-#: function.c:4280
+#: function.c:4311
#, gcc-internal-format
-msgid "%Junused parameter %qD"
+msgid "unused parameter %q+D"
msgstr ""
-#: gcc.c:1232
+#: gcc.c:1244
#, gcc-internal-format
msgid "ambiguous abbreviation %s"
msgstr ""
-#: gcc.c:1259
+#: gcc.c:1271
#, gcc-internal-format
msgid "incomplete '%s' option"
msgstr ""
-#: gcc.c:1270
+#: gcc.c:1282
#, gcc-internal-format
msgid "missing argument to '%s' option"
msgstr ""
-#: gcc.c:1283
+#: gcc.c:1295
#, gcc-internal-format
msgid "extraneous argument to '%s' option"
msgstr ""
-#: gcc.c:3770
+#: gcc.c:3799
#, gcc-internal-format
msgid "warning: -pipe ignored because -save-temps specified"
msgstr ""
-#: gcc.c:4066
+#: gcc.c:4100
#, gcc-internal-format
msgid "warning: '-x %s' after last input file has no effect"
msgstr ""
@@ -13445,68 +18161,68 @@ msgstr ""
#. Catch the case where a spec string contains something like
#. '%{foo:%*}'. i.e. there is no * in the pattern on the left
#. hand side of the :.
-#: gcc.c:5135
+#: gcc.c:5169
#, gcc-internal-format
msgid "spec failure: '%%*' has not been initialized by pattern match"
msgstr ""
-#: gcc.c:5144
+#: gcc.c:5178
#, gcc-internal-format
msgid "warning: use of obsolete %%[ operator in specs"
msgstr ""
-#: gcc.c:5225
+#: gcc.c:5259
#, gcc-internal-format
msgid "spec failure: unrecognized spec option '%c'"
msgstr ""
-#: gcc.c:6149
+#: gcc.c:6183
#, gcc-internal-format
-msgid "spec failure: more than one arg to SYSROOT_SUFFIX_SPEC."
+msgid "spec failure: more than one arg to SYSROOT_SUFFIX_SPEC"
msgstr ""
-#: gcc.c:6172
+#: gcc.c:6206
#, gcc-internal-format
-msgid "spec failure: more than one arg to SYSROOT_HEADERS_SUFFIX_SPEC."
+msgid "spec failure: more than one arg to SYSROOT_HEADERS_SUFFIX_SPEC"
msgstr ""
-#: gcc.c:6261
+#: gcc.c:6295
#, gcc-internal-format
msgid "unrecognized option '-%s'"
msgstr ""
-#: gcc.c:6449 gcc.c:6512
+#: gcc.c:6483 gcc.c:6546
#, gcc-internal-format
msgid "%s: %s compiler not installed on this system"
msgstr ""
-#: gcc.c:6594
+#: gcc.c:6638
#, gcc-internal-format
msgid "%s: linker input file unused because linking not done"
msgstr ""
-#: gcc.c:6634
+#: gcc.c:6678
#, gcc-internal-format
msgid "language %s not recognized"
msgstr ""
-#: gcc.c:6705
+#: gcc.c:6749
#, gcc-internal-format
msgid "%s: %s"
msgstr ""
-#: gcse.c:6540
+#: gcse.c:6542
#, gcc-internal-format
msgid "%s: %d basic blocks and %d edges/basic block"
msgstr ""
-#: gcse.c:6553
+#: gcse.c:6555
#, gcc-internal-format
msgid "%s: %d basic blocks and %d registers"
msgstr ""
#: ggc-common.c:404 ggc-common.c:412 ggc-common.c:480 ggc-common.c:499
-#: ggc-page.c:2202 ggc-page.c:2233 ggc-page.c:2240 ggc-zone.c:2291
+#: ggc-page.c:2110 ggc-page.c:2141 ggc-page.c:2148 ggc-zone.c:2291
#: ggc-zone.c:2306
#, gcc-internal-format
msgid "can't write PCH file: %m"
@@ -13523,7 +18239,7 @@ msgid "can't write padding to PCH file: %m"
msgstr ""
#: ggc-common.c:557 ggc-common.c:565 ggc-common.c:572 ggc-common.c:575
-#: ggc-common.c:585 ggc-common.c:588 ggc-page.c:2327 ggc-zone.c:2325
+#: ggc-common.c:585 ggc-common.c:588 ggc-page.c:2235 ggc-zone.c:2325
#, gcc-internal-format
msgid "can't read PCH file: %m"
msgstr ""
@@ -13533,12 +18249,12 @@ msgstr ""
msgid "had to relocate PCH"
msgstr ""
-#: ggc-page.c:1445
+#: ggc-page.c:1448
#, gcc-internal-format
msgid "open /dev/zero: %m"
msgstr ""
-#: ggc-page.c:2218 ggc-page.c:2224
+#: ggc-page.c:2126 ggc-page.c:2132
#, gcc-internal-format
msgid "can't write PCH file"
msgstr ""
@@ -13558,28 +18274,28 @@ msgstr ""
msgid "unexpected node"
msgstr ""
-#: gimplify.c:3509
+#: gimplify.c:3554
#, gcc-internal-format
msgid "invalid lvalue in asm output %d"
msgstr ""
-#: gimplify.c:3621
+#: gimplify.c:3666
#, gcc-internal-format
msgid "memory input %d is not directly addressable"
msgstr ""
-#: gimplify.c:4494
+#: gimplify.c:4552
#, gcc-internal-format
msgid "gimplification failed"
msgstr ""
-#: global.c:371 global.c:384 global.c:398
+#: global.c:376 global.c:389 global.c:403
#, gcc-internal-format
msgid "%s cannot be used in asm here"
msgstr ""
-#: graph.c:403 passes.c:129 java/jcf-parse.c:1076 java/jcf-parse.c:1211
-#: java/lex.c:1846 objc/objc-act.c:501
+#: graph.c:403 java/jcf-parse.c:1080 java/jcf-parse.c:1215 java/lex.c:1855
+#: objc/objc-act.c:501
#, gcc-internal-format
msgid "can't open %s: %m"
msgstr ""
@@ -13590,47 +18306,47 @@ msgid "fix_sched_param: unknown param: %s"
msgstr ""
#. Eventually this should become a hard error IMO.
-#: opts.c:260
+#: opts.c:261
#, gcc-internal-format
msgid "command line option \"%s\" is valid for %s but not for %s"
msgstr ""
-#: opts.c:314
+#: opts.c:315
#, gcc-internal-format
msgid "command line option %qs is not supported by this configuration"
msgstr ""
-#: opts.c:358
+#: opts.c:359
#, gcc-internal-format
msgid "missing argument to \"%s\""
msgstr ""
-#: opts.c:368
+#: opts.c:369
#, gcc-internal-format
msgid "argument to \"%s\" should be a non-negative integer"
msgstr ""
-#: opts.c:456
+#: opts.c:457
#, gcc-internal-format
msgid "unrecognized command line option \"%s\""
msgstr ""
-#: opts.c:667
+#: opts.c:670
#, gcc-internal-format
msgid "-Wuninitialized is not supported without -O"
msgstr ""
-#: opts.c:681
+#: opts.c:684
#, gcc-internal-format
msgid "-freorder-blocks-and-partition does not work with exceptions"
msgstr ""
-#: opts.c:690
+#: opts.c:693
#, gcc-internal-format
-msgid "-freorder-blocks-and-partition does not work on this architecture."
+msgid "-freorder-blocks-and-partition does not work on this architecture"
msgstr ""
-#: opts.c:854
+#: opts.c:861
#, gcc-internal-format
msgid "structure alignment must be a small power of two, not %d"
msgstr ""
@@ -13640,16 +18356,21 @@ msgstr ""
msgid "unrecognized visibility value \"%s\""
msgstr ""
-#: opts.c:971
+#: opts.c:967
#, gcc-internal-format
msgid "unrecognized register name \"%s\""
msgstr ""
-#: opts.c:995
+#: opts.c:991
#, gcc-internal-format
msgid "unknown tls-model \"%s\""
msgstr ""
+#: opts.c:1041
+#, gcc-internal-format
+msgid "-f[no-]force-mem is nop and option will be removed in 4.2"
+msgstr ""
+
#: opts.c:1064
#, gcc-internal-format
msgid "%s: --param arguments should be of the form NAME=VALUE"
@@ -13696,61 +18417,55 @@ msgstr ""
msgid "invalid parameter %qs"
msgstr ""
-#: passes.c:1215
-#, gcc-internal-format
-msgid ""
-"branch target register load optimization is not intended to be run twice"
-msgstr ""
-
-#: profile.c:284
+#: profile.c:287
#, gcc-internal-format
msgid "corrupted profile info: run_max * runs < sum_max"
msgstr ""
-#: profile.c:290
+#: profile.c:293
#, gcc-internal-format
msgid "corrupted profile info: sum_all is smaller than sum_max"
msgstr ""
-#: profile.c:335
+#: profile.c:338
#, gcc-internal-format
msgid "corrupted profile info: edge from %i to %i exceeds maximal count"
msgstr ""
-#: profile.c:500
+#: profile.c:503
#, gcc-internal-format
msgid ""
"corrupted profile info: number of iterations for basic block %d thought to "
"be %i"
msgstr ""
-#: profile.c:521
+#: profile.c:524
#, gcc-internal-format
msgid ""
"corrupted profile info: number of executions for edge %d-%d thought to be %i"
msgstr ""
-#: reg-stack.c:523
+#: reg-stack.c:526
#, gcc-internal-format
msgid "output constraint %d must specify a single register"
msgstr ""
-#: reg-stack.c:533
+#: reg-stack.c:536
#, gcc-internal-format
msgid "output constraint %d cannot be specified together with \"%s\" clobber"
msgstr ""
-#: reg-stack.c:556
+#: reg-stack.c:559
#, gcc-internal-format
msgid "output regs must be grouped at top of stack"
msgstr ""
-#: reg-stack.c:593
+#: reg-stack.c:596
#, gcc-internal-format
msgid "implicitly popped regs must be grouped at top of stack"
msgstr ""
-#: reg-stack.c:612
+#: reg-stack.c:615
#, gcc-internal-format
msgid "output operand %d must use %<&%> constraint"
msgstr ""
@@ -13760,8 +18475,8 @@ msgstr ""
msgid "can't use '%s' as a %s register"
msgstr ""
-#: regclass.c:781 config/ia64/ia64.c:4905 config/ia64/ia64.c:4912
-#: config/pa/pa.c:332 config/pa/pa.c:339
+#: regclass.c:781 config/ia64/ia64.c:4943 config/ia64/ia64.c:4950
+#: config/pa/pa.c:339 config/pa/pa.c:346
#, gcc-internal-format
msgid "unknown register name: %s"
msgstr ""
@@ -13781,22 +18496,22 @@ msgstr ""
msgid "call-clobbered register used for global register variable"
msgstr ""
-#: regrename.c:1878
+#: regrename.c:1880
#, gcc-internal-format
msgid "validate_value_data: [%u] Bad next_regno for empty chain (%u)"
msgstr ""
-#: regrename.c:1890
+#: regrename.c:1892
#, gcc-internal-format
msgid "validate_value_data: Loop in regno chain (%u)"
msgstr ""
-#: regrename.c:1893
+#: regrename.c:1895
#, gcc-internal-format
msgid "validate_value_data: [%u] Bad oldest_regno (%u)"
msgstr ""
-#: regrename.c:1905
+#: regrename.c:1907
#, gcc-internal-format
msgid "validate_value_data: [%u] Non-empty reg in chain (%s %u %i)"
msgstr ""
@@ -13811,47 +18526,47 @@ msgstr ""
msgid "impossible register constraint in %<asm%>"
msgstr ""
-#: reload.c:3550
+#: reload.c:3560
#, gcc-internal-format
msgid "%<&%> constraint used with no register class"
msgstr ""
-#: reload.c:3721 reload.c:3953
+#: reload.c:3731 reload.c:3963
#, gcc-internal-format
msgid "inconsistent operand constraints in an %<asm%>"
msgstr ""
-#: reload1.c:1228
+#: reload1.c:1229
#, gcc-internal-format
msgid "frame size too large for reliable stack checking"
msgstr ""
-#: reload1.c:1231
+#: reload1.c:1232
#, gcc-internal-format
msgid "try reducing the number of local variables"
msgstr ""
-#: reload1.c:1882
+#: reload1.c:1883
#, gcc-internal-format
msgid "can't find a register in class %qs while reloading %<asm%>"
msgstr ""
-#: reload1.c:1887
+#: reload1.c:1888
#, gcc-internal-format
msgid "unable to find a register to spill in class %qs"
msgstr ""
-#: reload1.c:3889
+#: reload1.c:3925
#, gcc-internal-format
msgid "%<asm%> operand requires impossible reload"
msgstr ""
-#: reload1.c:5013
+#: reload1.c:5049
#, gcc-internal-format
msgid "%<asm%> operand constraint incompatible with operand size"
msgstr ""
-#: reload1.c:6640
+#: reload1.c:6676
#, gcc-internal-format
msgid "output operand is constant in %<asm%>"
msgstr ""
@@ -13884,12 +18599,12 @@ msgstr ""
msgid "RTL check: expected code '%s' or '%s', have '%s' in %s, at %s:%d"
msgstr ""
-#: rtl.c:524
+#: rtl.c:539
#, gcc-internal-format
msgid "RTL check: access of elt %d of vector with last elt %d in %s, at %s:%d"
msgstr ""
-#: rtl.c:535
+#: rtl.c:550
#, gcc-internal-format
msgid "RTL flag check: %s used with unexpected rtx code '%s' in %s, at %s:%d"
msgstr ""
@@ -14009,69 +18724,69 @@ msgstr ""
msgid "undefined named operand %qs"
msgstr ""
-#: stmt.c:1478
+#: stmt.c:1457
#, gcc-internal-format
msgid "%Hvalue computed is not used"
msgstr ""
-#: stor-layout.c:148
+#: stor-layout.c:149
#, gcc-internal-format
msgid "type size can%'t be explicitly evaluated"
msgstr ""
-#: stor-layout.c:150
+#: stor-layout.c:151
#, gcc-internal-format
msgid "variable-size type declared outside of any function"
msgstr ""
-#: stor-layout.c:454
+#: stor-layout.c:455
#, gcc-internal-format
-msgid "%Jsize of %qD is %d bytes"
+msgid "size of %q+D is %d bytes"
msgstr ""
-#: stor-layout.c:456
+#: stor-layout.c:457
#, gcc-internal-format
-msgid "%Jsize of %qD is larger than %d bytes"
+msgid "size of %q+D is larger than %wd bytes"
msgstr ""
-#: stor-layout.c:854
+#: stor-layout.c:855
#, gcc-internal-format
-msgid "%Jpacked attribute causes inefficient alignment for %qD"
+msgid "packed attribute causes inefficient alignment for %q+D"
msgstr ""
-#: stor-layout.c:857
+#: stor-layout.c:858
#, gcc-internal-format
-msgid "%Jpacked attribute is unnecessary for %qD"
+msgid "packed attribute is unnecessary for %q+D"
msgstr ""
#. No, we need to skip space before this field.
#. Bump the cumulative size to multiple of field alignment.
-#: stor-layout.c:872
+#: stor-layout.c:873
#, gcc-internal-format
-msgid "%Jpadding struct to align %qD"
+msgid "padding struct to align %q+D"
msgstr ""
-#: stor-layout.c:1271
+#: stor-layout.c:1272
#, gcc-internal-format
msgid "padding struct size to alignment boundary"
msgstr ""
-#: stor-layout.c:1301
+#: stor-layout.c:1302
#, gcc-internal-format
msgid "packed attribute causes inefficient alignment for %qs"
msgstr ""
-#: stor-layout.c:1305
+#: stor-layout.c:1306
#, gcc-internal-format
msgid "packed attribute is unnecessary for %qs"
msgstr ""
-#: stor-layout.c:1311
+#: stor-layout.c:1312
#, gcc-internal-format
msgid "packed attribute causes inefficient alignment"
msgstr ""
-#: stor-layout.c:1313
+#: stor-layout.c:1314
#, gcc-internal-format
msgid "packed attribute is unnecessary"
msgstr ""
@@ -14113,379 +18828,366 @@ msgstr ""
msgid "setting core file size limit to maximum: %m"
msgstr ""
-#: toplev.c:828
+#: toplev.c:823
#, gcc-internal-format
-msgid "%J%qF declared %<static%> but never defined"
+msgid "%q+F declared %<static%> but never defined"
msgstr ""
-#: toplev.c:854
+#: toplev.c:848
#, gcc-internal-format
-msgid "%J%qD defined but not used"
+msgid "%q+D defined but not used"
msgstr ""
-#: toplev.c:877 toplev.c:900
+#: toplev.c:891 toplev.c:915
#, gcc-internal-format
msgid "%qs is deprecated (declared at %s:%d)"
msgstr ""
-#: toplev.c:903
+#: toplev.c:919
#, gcc-internal-format
msgid "type is deprecated (declared at %s:%d)"
msgstr ""
-#: toplev.c:909
+#: toplev.c:925
#, gcc-internal-format
msgid "%qs is deprecated"
msgstr ""
-#: toplev.c:911
+#: toplev.c:927
#, gcc-internal-format
msgid "type is deprecated"
msgstr ""
-#: toplev.c:1078
+#: toplev.c:1094
#, gcc-internal-format
msgid "unrecognized gcc debugging option: %c"
msgstr ""
-#: toplev.c:1225
+#: toplev.c:1247
#, gcc-internal-format
msgid "can%'t open %s for writing: %m"
msgstr ""
-#: toplev.c:1567
+#: toplev.c:1587
#, gcc-internal-format
msgid "instruction scheduling not supported on this target machine"
msgstr ""
-#: toplev.c:1571
+#: toplev.c:1591
#, gcc-internal-format
msgid "this target machine does not have delayed branches"
msgstr ""
-#: toplev.c:1585
+#: toplev.c:1605
#, gcc-internal-format
msgid "-f%sleading-underscore not supported on this target machine"
msgstr ""
-#: toplev.c:1659
+#: toplev.c:1679
#, gcc-internal-format
msgid "target system does not support the \"%s\" debug format"
msgstr ""
-#: toplev.c:1671
+#: toplev.c:1691
#, gcc-internal-format
msgid "variable tracking requested, but useless unless producing debug info"
msgstr ""
-#: toplev.c:1674
+#: toplev.c:1694
#, gcc-internal-format
msgid "variable tracking requested, but not supported by this debug format"
msgstr ""
-#: toplev.c:1694
+#: toplev.c:1714
#, gcc-internal-format
msgid "can%'t open %s: %m"
msgstr ""
-#: toplev.c:1701
+#: toplev.c:1721
#, gcc-internal-format
msgid "-ffunction-sections not supported for this target"
msgstr ""
-#: toplev.c:1706
+#: toplev.c:1726
#, gcc-internal-format
msgid "-fdata-sections not supported for this target"
msgstr ""
-#: toplev.c:1713
+#: toplev.c:1733
#, gcc-internal-format
msgid "-ffunction-sections disabled; it makes profiling impossible"
msgstr ""
-#: toplev.c:1720
+#: toplev.c:1740
#, gcc-internal-format
msgid "-fprefetch-loop-arrays not supported for this target"
msgstr ""
-#: toplev.c:1726
-#, gcc-internal-format
-msgid "-fspeculative-prefetching not supported for this target"
-msgstr ""
-
-#: toplev.c:1732
+#: toplev.c:1746
#, gcc-internal-format
msgid ""
"-fprefetch-loop-arrays not supported for this target (try -march switches)"
msgstr ""
-#: toplev.c:1738
-#, gcc-internal-format
-msgid ""
-"-fspeculative-prefetching not supported for this target (try -march switches)"
-msgstr ""
-
-#: toplev.c:1747
+#: toplev.c:1755
#, gcc-internal-format
msgid "-fprefetch-loop-arrays is not supported with -Os"
msgstr ""
-#: toplev.c:1753
+#: toplev.c:1761
#, gcc-internal-format
msgid "-ffunction-sections may affect debugging on some targets"
msgstr ""
-#: toplev.c:1768
+#: toplev.c:1776
#, gcc-internal-format
msgid "-fstack-protector not supported for this target"
msgstr ""
-#: toplev.c:1874
+#: toplev.c:1882
#, gcc-internal-format
msgid "error writing to %s: %m"
msgstr ""
-#: toplev.c:1876 java/jcf-parse.c:1095 java/jcf-write.c:3536
+#: toplev.c:1884 java/jcf-parse.c:1099 java/jcf-write.c:3539
#, gcc-internal-format
msgid "error closing %s: %m"
msgstr ""
-#: tree-cfg.c:1398 tree-cfg.c:2013 tree-cfg.c:2016
+#: tree-cfg.c:1422 tree-cfg.c:2054 tree-cfg.c:2057
#, gcc-internal-format
msgid "%Hwill never be executed"
msgstr ""
-#: tree-cfg.c:3094
+#: tree-cfg.c:3143
#, gcc-internal-format
msgid "SSA name in freelist but still referenced"
msgstr ""
-#: tree-cfg.c:3103
+#: tree-cfg.c:3152
#, gcc-internal-format
msgid "ASSERT_EXPR with an always-false condition"
msgstr ""
-#: tree-cfg.c:3113
+#: tree-cfg.c:3162
#, gcc-internal-format
msgid "GIMPLE register modified with BIT_FIELD_REF"
msgstr ""
-#: tree-cfg.c:3148
+#: tree-cfg.c:3197
#, gcc-internal-format
msgid "invariant not recomputed when ADDR_EXPR changed"
msgstr ""
-#: tree-cfg.c:3154
+#: tree-cfg.c:3203
#, gcc-internal-format
msgid "constant not recomputed when ADDR_EXPR changed"
msgstr ""
-#: tree-cfg.c:3159
+#: tree-cfg.c:3208
#, gcc-internal-format
msgid "side effects not recomputed when ADDR_EXPR changed"
msgstr ""
-#: tree-cfg.c:3175
+#: tree-cfg.c:3224
#, gcc-internal-format
msgid "address taken, but ADDRESSABLE bit not set"
msgstr ""
-#: tree-cfg.c:3185
+#: tree-cfg.c:3234
#, gcc-internal-format
msgid "non-boolean used in condition"
msgstr ""
-#: tree-cfg.c:3190
+#: tree-cfg.c:3239
#, gcc-internal-format
-msgid "Invalid conditional operand"
+msgid "invalid conditional operand"
msgstr ""
-#: tree-cfg.c:3245
+#: tree-cfg.c:3294
#, gcc-internal-format
-msgid "Invalid reference prefix."
+msgid "invalid reference prefix"
msgstr ""
-#: tree-cfg.c:3310
+#: tree-cfg.c:3359
#, gcc-internal-format
-msgid "Is not a valid GIMPLE statement."
+msgid "is not a valid GIMPLE statement"
msgstr ""
-#: tree-cfg.c:3330
+#: tree-cfg.c:3379
#, gcc-internal-format
-msgid "Statement marked for throw, but doesn%'t."
+msgid "statement marked for throw, but doesn%'t"
msgstr ""
-#: tree-cfg.c:3335
+#: tree-cfg.c:3384
#, gcc-internal-format
-msgid "Statement marked for throw in middle of block."
+msgid "statement marked for throw in middle of block"
msgstr ""
-#: tree-cfg.c:3430
+#: tree-cfg.c:3479
#, gcc-internal-format
-msgid "bb_for_stmt (phi) is set to a wrong basic block\n"
+msgid "bb_for_stmt (phi) is set to a wrong basic block"
msgstr ""
-#: tree-cfg.c:3445
+#: tree-cfg.c:3494
#, gcc-internal-format
msgid "PHI def is not a GIMPLE value"
msgstr ""
-#: tree-cfg.c:3461 tree-cfg.c:3484
+#: tree-cfg.c:3510 tree-cfg.c:3533
#, gcc-internal-format
-msgid "Incorrect sharing of tree nodes"
+msgid "incorrect sharing of tree nodes"
msgstr ""
-#: tree-cfg.c:3475
+#: tree-cfg.c:3524
#, gcc-internal-format
-msgid "bb_for_stmt (stmt) is set to a wrong basic block\n"
+msgid "bb_for_stmt (stmt) is set to a wrong basic block"
msgstr ""
-#: tree-cfg.c:3493
+#: tree-cfg.c:3542
#, gcc-internal-format
-msgid "verify_stmts failed."
+msgid "verify_stmts failed"
msgstr ""
-#: tree-cfg.c:3514
+#: tree-cfg.c:3563
#, gcc-internal-format
-msgid "ENTRY_BLOCK has a statement list associated with it\n"
+msgid "ENTRY_BLOCK has a statement list associated with it"
msgstr ""
-#: tree-cfg.c:3520
+#: tree-cfg.c:3569
#, gcc-internal-format
-msgid "EXIT_BLOCK has a statement list associated with it\n"
+msgid "EXIT_BLOCK has a statement list associated with it"
msgstr ""
-#: tree-cfg.c:3527
+#: tree-cfg.c:3576
#, gcc-internal-format
-msgid "Fallthru to exit from bb %d\n"
+msgid "fallthru to exit from bb %d"
msgstr ""
-#: tree-cfg.c:3549
+#: tree-cfg.c:3598
#, gcc-internal-format
-msgid "Nonlocal label %s is not first in a sequence of labels in bb %d"
+msgid "nonlocal label %s is not first in a sequence of labels in bb %d"
msgstr ""
-#: tree-cfg.c:3558
+#: tree-cfg.c:3607
#, gcc-internal-format
-msgid "Label %s to block does not match in bb %d\n"
+msgid "label %s to block does not match in bb %d"
msgstr ""
-#: tree-cfg.c:3567
+#: tree-cfg.c:3616
#, gcc-internal-format
-msgid "Label %s has incorrect context in bb %d\n"
+msgid "label %s has incorrect context in bb %d"
msgstr ""
-#: tree-cfg.c:3581
+#: tree-cfg.c:3630
#, gcc-internal-format
-msgid "Control flow in the middle of basic block %d\n"
+msgid "control flow in the middle of basic block %d"
msgstr ""
-#: tree-cfg.c:3591
+#: tree-cfg.c:3640
#, gcc-internal-format
-msgid "Label %s in the middle of basic block %d\n"
+msgid "label %s in the middle of basic block %d"
msgstr ""
-#: tree-cfg.c:3610
+#: tree-cfg.c:3659
#, gcc-internal-format
-msgid "Fallthru edge after a control statement in bb %d \n"
+msgid "fallthru edge after a control statement in bb %d"
msgstr ""
-#: tree-cfg.c:3625
+#: tree-cfg.c:3674
#, gcc-internal-format
-msgid "Structured COND_EXPR at the end of bb %d\n"
+msgid "structured COND_EXPR at the end of bb %d"
msgstr ""
-#: tree-cfg.c:3638 tree-cfg.c:3676 tree-cfg.c:3689 tree-cfg.c:3760
+#: tree-cfg.c:3687 tree-cfg.c:3725 tree-cfg.c:3738 tree-cfg.c:3809
#, gcc-internal-format
-msgid "Wrong outgoing edge flags at end of bb %d\n"
+msgid "wrong outgoing edge flags at end of bb %d"
msgstr ""
-#: tree-cfg.c:3646
+#: tree-cfg.c:3695
#, gcc-internal-format
-msgid "%<then%> label does not match edge at end of bb %d\n"
+msgid "%<then%> label does not match edge at end of bb %d"
msgstr ""
-#: tree-cfg.c:3654
+#: tree-cfg.c:3703
#, gcc-internal-format
-msgid "%<else%> label does not match edge at end of bb %d\n"
+msgid "%<else%> label does not match edge at end of bb %d"
msgstr ""
-#: tree-cfg.c:3664
+#: tree-cfg.c:3713
#, gcc-internal-format
-msgid "Explicit goto at end of bb %d\n"
+msgid "explicit goto at end of bb %d"
msgstr ""
-#: tree-cfg.c:3694
+#: tree-cfg.c:3743
#, gcc-internal-format
-msgid "Return edge does not point to exit in bb %d\n"
+msgid "return edge does not point to exit in bb %d"
msgstr ""
-#: tree-cfg.c:3727
+#: tree-cfg.c:3776
#, gcc-internal-format
-msgid "Found default case not at end of case vector"
+msgid "found default case not at end of case vector"
msgstr ""
-#: tree-cfg.c:3733
+#: tree-cfg.c:3782
#, gcc-internal-format
-msgid ""
-"Case labels not sorted:\n"
-" "
+msgid "case labels not sorted:"
msgstr ""
-#: tree-cfg.c:3744
+#: tree-cfg.c:3793
#, gcc-internal-format
-msgid "No default case found at end of case vector"
+msgid "no default case found at end of case vector"
msgstr ""
-#: tree-cfg.c:3752
+#: tree-cfg.c:3801
#, gcc-internal-format
-msgid "Extra outgoing edge %d->%d\n"
+msgid "extra outgoing edge %d->%d"
msgstr ""
-#: tree-cfg.c:3774
+#: tree-cfg.c:3823
#, gcc-internal-format
-msgid "Missing edge %i->%i"
+msgid "missing edge %i->%i"
msgstr ""
-#: tree-cfg.c:5043 tree-cfg.c:5047
+#: tree-cfg.c:5117 tree-cfg.c:5121
#, gcc-internal-format
msgid "%H%<noreturn%> function does return"
msgstr ""
-#: tree-cfg.c:5068 tree-cfg.c:5073
+#: tree-cfg.c:5143 tree-cfg.c:5148
#, gcc-internal-format
msgid "%Hcontrol reaches end of non-void function"
msgstr ""
-#: tree-cfg.c:5133
+#: tree-cfg.c:5208
#, gcc-internal-format
msgid "%Jfunction might be possible candidate for attribute %<noreturn%>"
msgstr ""
-#: tree-dump.c:851
+#: tree-dump.c:856
#, gcc-internal-format
msgid "could not open dump file %qs: %s"
msgstr ""
-#: tree-dump.c:967
+#: tree-dump.c:987
#, gcc-internal-format
msgid "ignoring unknown option %q.*s in %<-fdump-%s%>"
msgstr ""
#: tree-eh.c:1767
#, gcc-internal-format
-msgid "EH edge %i->%i is missing %i %i."
+msgid "EH edge %i->%i is missing"
msgstr ""
#: tree-eh.c:1772
#, gcc-internal-format
-msgid "EH edge %i->%i miss EH flag."
+msgid "EH edge %i->%i miss EH flag"
msgstr ""
#. ??? might not be mistake.
#: tree-eh.c:1778
#, gcc-internal-format
-msgid "EH edge %i->%i has duplicated regions."
+msgid "EH edge %i->%i has duplicated regions"
msgstr ""
#: tree-eh.c:1812
@@ -14500,69 +19202,68 @@ msgstr ""
#: tree-eh.c:1830
#, gcc-internal-format
-msgid "Unnecessary EH edge %i->%i"
+msgid "unnecessary EH edge %i->%i"
msgstr ""
-#: tree-inline.c:1324
+#: tree-inline.c:1338
#, gcc-internal-format
msgid ""
-"%Jfunction %qF can never be inlined because it uses alloca (override using "
+"function %q+F can never be inlined because it uses alloca (override using "
"the always_inline attribute)"
msgstr ""
-#: tree-inline.c:1336
+#: tree-inline.c:1350
#, gcc-internal-format
-msgid "%Jfunction %qF can never be inlined because it uses setjmp"
+msgid "function %q+F can never be inlined because it uses setjmp"
msgstr ""
-#: tree-inline.c:1350
+#: tree-inline.c:1364
#, gcc-internal-format
msgid ""
-"%Jfunction %qF can never be inlined because it uses variable argument lists"
+"function %q+F can never be inlined because it uses variable argument lists"
msgstr ""
-#: tree-inline.c:1361
+#: tree-inline.c:1375
#, gcc-internal-format
msgid ""
-"%Jfunction %qF can never be inlined because it uses setjmp-longjmp exception "
+"function %q+F can never be inlined because it uses setjmp-longjmp exception "
"handling"
msgstr ""
-#: tree-inline.c:1368
+#: tree-inline.c:1382
#, gcc-internal-format
-msgid "%Jfunction %qF can never be inlined because it uses non-local goto"
+msgid "function %q+F can never be inlined because it uses non-local goto"
msgstr ""
-#: tree-inline.c:1379
+#: tree-inline.c:1393
#, gcc-internal-format
msgid ""
-"%Jfunction %qF can never be inlined because it uses __builtin_return or "
+"function %q+F can never be inlined because it uses __builtin_return or "
"__builtin_apply_args"
msgstr ""
-#: tree-inline.c:1398
+#: tree-inline.c:1412
#, gcc-internal-format
-msgid "%Jfunction %qF can never be inlined because it contains a computed goto"
+msgid "function %q+F can never be inlined because it contains a computed goto"
msgstr ""
-#: tree-inline.c:1412
+#: tree-inline.c:1426
#, gcc-internal-format
-msgid ""
-"%Jfunction %qF can never be inlined because it receives a non-local goto"
+msgid "function %q+F can never be inlined because it receives a non-local goto"
msgstr ""
-#: tree-inline.c:1437
+#: tree-inline.c:1451
#, gcc-internal-format
msgid ""
-"%Jfunction %qF can never be inlined because it uses variable sized variables"
+"function %q+F can never be inlined because it uses variable sized variables"
msgstr ""
-#: tree-inline.c:1974 tree-inline.c:1984
+#: tree-inline.c:1990 tree-inline.c:2000
#, gcc-internal-format
-msgid "%Jinlining failed in call to %qF: %s"
+msgid "inlining failed in call to %q+F: %s"
msgstr ""
-#: tree-inline.c:1975 tree-inline.c:1986
+#: tree-inline.c:1991 tree-inline.c:2002
#, gcc-internal-format
msgid "called from here"
msgstr ""
@@ -14587,39 +19288,39 @@ msgstr ""
msgid "mudflap: this language is not supported"
msgstr ""
-#: tree-optimize.c:973
+#: tree-optimize.c:478
#, gcc-internal-format
-msgid "%Jsize of return value of %qD is %u bytes"
+msgid "size of return value of %q+D is %u bytes"
msgstr ""
-#: tree-optimize.c:976
+#: tree-optimize.c:481
#, gcc-internal-format
-msgid "%Jsize of return value of %qD is larger than %wd bytes"
+msgid "size of return value of %q+D is larger than %wd bytes"
msgstr ""
#: tree-outof-ssa.c:614 tree-outof-ssa.c:629 tree-outof-ssa.c:643
-#: tree-outof-ssa.c:665 tree-outof-ssa.c:1034 tree-outof-ssa.c:1842
-#: tree-ssa-live.c:429 tree-ssa-live.c:1814
+#: tree-outof-ssa.c:665 tree-outof-ssa.c:1120 tree-outof-ssa.c:1935
+#: tree-ssa-live.c:429 tree-ssa-live.c:1835
#, gcc-internal-format
msgid "SSA corruption"
msgstr ""
-#: tree-outof-ssa.c:2257
+#: tree-outof-ssa.c:2350
#, gcc-internal-format
msgid " Pending stmts not issued on PRED edge (%d, %d)\n"
msgstr ""
-#: tree-outof-ssa.c:2263
+#: tree-outof-ssa.c:2356
#, gcc-internal-format
msgid " Pending stmts not issued on SUCC edge (%d, %d)\n"
msgstr ""
-#: tree-outof-ssa.c:2270
+#: tree-outof-ssa.c:2363
#, gcc-internal-format
msgid " Pending stmts not issued on ENTRY edge (%d, %d)\n"
msgstr ""
-#: tree-outof-ssa.c:2276
+#: tree-outof-ssa.c:2369
#, gcc-internal-format
msgid " Pending stmts not issued on EXIT edge (%d, %d)\n"
msgstr ""
@@ -14629,39 +19330,44 @@ msgstr ""
msgid "unimplemented functionality"
msgstr ""
-#: tree-ssa-operands.c:1483
+#: tree-ssa-loop-niter.c:1031
+#, gcc-internal-format
+msgid "%H%s"
+msgstr ""
+
+#: tree-ssa-operands.c:1487
#, gcc-internal-format
msgid "internal error"
msgstr ""
#: tree-ssa.c:111
#, gcc-internal-format
-msgid "Expected an SSA_NAME object"
+msgid "expected an SSA_NAME object"
msgstr ""
#: tree-ssa.c:117
#, gcc-internal-format
-msgid "Type mismatch between an SSA_NAME and its symbol."
+msgid "type mismatch between an SSA_NAME and its symbol"
msgstr ""
#: tree-ssa.c:123
#, gcc-internal-format
-msgid "Found an SSA_NAME that had been released into the free pool"
+msgid "found an SSA_NAME that had been released into the free pool"
msgstr ""
#: tree-ssa.c:129
#, gcc-internal-format
-msgid "Found a virtual definition for a GIMPLE register"
+msgid "found a virtual definition for a GIMPLE register"
msgstr ""
#: tree-ssa.c:135
#, gcc-internal-format
-msgid "Found a real definition for a non-register"
+msgid "found a real definition for a non-register"
msgstr ""
#: tree-ssa.c:142
#, gcc-internal-format
-msgid "Found real variable when subvariables should have appeared"
+msgid "found real variable when subvariables should have appeared"
msgstr ""
#: tree-ssa.c:171
@@ -14676,17 +19382,17 @@ msgstr ""
#: tree-ssa.c:238
#, gcc-internal-format
-msgid "Missing definition"
+msgid "missing definition"
msgstr ""
#: tree-ssa.c:244
#, gcc-internal-format
-msgid "Definition in block %i does not dominate use in block %i"
+msgid "definition in block %i does not dominate use in block %i"
msgstr ""
#: tree-ssa.c:252
#, gcc-internal-format
-msgid "Definition in block %i follows the use"
+msgid "definition in block %i follows the use"
msgstr ""
#: tree-ssa.c:259
@@ -14696,22 +19402,22 @@ msgstr ""
#: tree-ssa.c:267
#, gcc-internal-format
-msgid "No immediate_use list"
+msgid "no immediate_use list"
msgstr ""
#: tree-ssa.c:279
#, gcc-internal-format
-msgid "Wrong immediate use list"
+msgid "wrong immediate use list"
msgstr ""
#: tree-ssa.c:312
#, gcc-internal-format
-msgid "Incoming edge count does not match number of PHI arguments\n"
+msgid "incoming edge count does not match number of PHI arguments"
msgstr ""
#: tree-ssa.c:327
#, gcc-internal-format
-msgid "PHI argument is missing for edge %d->%d\n"
+msgid "PHI argument is missing for edge %d->%d"
msgstr ""
#: tree-ssa.c:336
@@ -14721,297 +19427,314 @@ msgstr ""
#: tree-ssa.c:348
#, gcc-internal-format
-msgid "Wrong edge %d->%d for PHI argument\n"
+msgid "wrong edge %d->%d for PHI argument"
msgstr ""
#: tree-ssa.c:397
#, gcc-internal-format
-msgid "Non-addressable variable inside an alias set."
+msgid "non-addressable variable inside an alias set"
msgstr ""
#: tree-ssa.c:413
#, gcc-internal-format
-msgid "Addressable variable that is an alias tag but is not in any alias set."
+msgid "addressable variable that is an alias tag but is not in any alias set"
msgstr ""
#: tree-ssa.c:423
#, gcc-internal-format
-msgid "verify_flow_insensitive_alias_info failed."
+msgid "verify_flow_insensitive_alias_info failed"
msgstr ""
#: tree-ssa.c:465
#, gcc-internal-format
-msgid "Dereferenced pointers should have a name or a type tag"
+msgid "dereferenced pointers should have a name or a type tag"
msgstr ""
-#: tree-ssa.c:473
+#: tree-ssa.c:472
#, gcc-internal-format
-msgid ""
-"Pointers with a memory tag, should have points-to sets or point to malloc"
+msgid "pointers with a memory tag, should have points-to sets"
msgstr ""
-#: tree-ssa.c:481
+#: tree-ssa.c:480
#, gcc-internal-format
-msgid "Pointer escapes but its name tag is not call-clobbered."
+msgid "pointer escapes but its name tag is not call-clobbered"
msgstr ""
-#: tree-ssa.c:490
+#: tree-ssa.c:489
#, gcc-internal-format
-msgid "verify_flow_sensitive_alias_info failed."
+msgid "verify_flow_sensitive_alias_info failed"
msgstr ""
-#: tree-ssa.c:567
+#: tree-ssa.c:566
#, gcc-internal-format
msgid ""
-"Alias set of a pointer's type tag should be a superset of the corresponding "
+"alias set of a pointer's type tag should be a superset of the corresponding "
"name tag"
msgstr ""
-#: tree-ssa.c:583
+#: tree-ssa.c:582
#, gcc-internal-format
msgid ""
-"Two different pointers with identical points-to sets but different name tags"
+"two different pointers with identical points-to sets but different name tags"
msgstr ""
-#: tree-ssa.c:615
+#: tree-ssa.c:614
#, gcc-internal-format
msgid "verify_name_tags failed"
msgstr ""
-#: tree-ssa.c:686
+#: tree-ssa.c:685
#, gcc-internal-format
-msgid "AUX pointer initialized for edge %d->%d\n"
+msgid "AUX pointer initialized for edge %d->%d"
msgstr ""
-#: tree-ssa.c:709
+#: tree-ssa.c:708
#, gcc-internal-format
-msgid "Stmt (%p) marked modified after optimization pass : "
+msgid "stmt (%p) marked modified after optimization pass : "
msgstr ""
-#: tree-ssa.c:727
+#: tree-ssa.c:726
#, gcc-internal-format
-msgid "Statement makes a memory store, but has no V_MAY_DEFS nor V_MUST_DEFS"
+msgid "statement makes a memory store, but has no V_MAY_DEFS nor V_MUST_DEFS"
msgstr ""
-#: tree-ssa.c:738
+#: tree-ssa.c:737
#, gcc-internal-format
-msgid "Statement makes aliased stores, but has no V_MAY_DEFS"
+msgid "statement makes aliased stores, but has no V_MAY_DEFS"
msgstr ""
-#: tree-ssa.c:777
+#: tree-ssa.c:776
#, gcc-internal-format
-msgid "verify_ssa failed."
+msgid "verify_ssa failed"
msgstr ""
-#: tree-ssa.c:1151
+#: tree-ssa.c:1159
#, gcc-internal-format
msgid "%H%qD is used uninitialized in this function"
msgstr ""
-#: tree-ssa.c:1176
+#: tree-ssa.c:1184
#, gcc-internal-format
msgid "%H%qD may be used uninitialized in this function"
msgstr ""
-#: tree-vect-transform.c:632
+#: tree-vect-transform.c:634
#, gcc-internal-format
msgid "no support for induction"
msgstr ""
-#: tree.c:3352 config/darwin.c:1229 config/arm/arm.c:2824
-#: config/arm/arm.c:2852 config/avr/avr.c:4650 config/h8300/h8300.c:5282
-#: config/h8300/h8300.c:5306 config/i386/i386.c:1807 config/i386/i386.c:16160
-#: config/ia64/ia64.c:537 config/ip2k/ip2k.c:3164
-#: config/m68hc11/m68hc11.c:1118 config/sh/symbian.c:408
-#: config/sh/symbian.c:415
+#: tree.c:3532 config/darwin.c:1209 config/arm/arm.c:2828
+#: config/arm/arm.c:2856 config/avr/avr.c:4656 config/h8300/h8300.c:5282
+#: config/h8300/h8300.c:5306 config/i386/i386.c:2030 config/i386/i386.c:16527
+#: config/ia64/ia64.c:537 config/m68hc11/m68hc11.c:1118
+#: config/sh/symbian.c:409 config/sh/symbian.c:416
#, gcc-internal-format
msgid "%qs attribute ignored"
msgstr ""
-#: tree.c:3371
+#: tree.c:3551
#, gcc-internal-format
-msgid "%Jfunction %qD definition is marked dllimport."
+msgid "function %q+D definition is marked dllimport"
msgstr ""
-#: tree.c:3379
+#: tree.c:3559 config/sh/symbian.c:431
#, gcc-internal-format
-msgid "%Jvariable %qD definition is marked dllimport."
+msgid "variable %q+D definition is marked dllimport"
msgstr ""
-#: tree.c:3399
+#: tree.c:3579 config/sh/symbian.c:506
#, gcc-internal-format
-msgid "%Jexternal linkage required for symbol %qD because of %qs attribute."
+msgid "external linkage required for symbol %q+D because of %qs attribute"
msgstr ""
-#: tree.c:4662
+#: tree.c:4928
#, gcc-internal-format
msgid "arrays of functions are not meaningful"
msgstr ""
-#: tree.c:4714
+#: tree.c:4980
#, gcc-internal-format
msgid "function return type cannot be function"
msgstr ""
-#: tree.c:5610
+#: tree.c:5876
#, gcc-internal-format
msgid "tree check: %s, have %s in %s, at %s:%d"
msgstr ""
-#: tree.c:5647
+#: tree.c:5913
#, gcc-internal-format
msgid "tree check: expected none of %s, have %s in %s, at %s:%d"
msgstr ""
-#: tree.c:5660
+#: tree.c:5926
#, gcc-internal-format
msgid "tree check: expected class %qs, have %qs (%s) in %s, at %s:%d"
msgstr ""
-#: tree.c:5674
+#: tree.c:5951
+#, gcc-internal-format
+msgid ""
+"tree check: expected tree that contains %qs structure, have %qs in %s, at %"
+"s:%d"
+msgstr ""
+
+#: tree.c:5965
#, gcc-internal-format
msgid "tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d"
msgstr ""
-#: tree.c:5686
+#: tree.c:5977
#, gcc-internal-format
msgid "tree check: accessed elt %d of phi_node with %d elts in %s, at %s:%d"
msgstr ""
-#: tree.c:5698
+#: tree.c:5989
#, gcc-internal-format
msgid "tree check: accessed operand %d of %s with %d operands in %s, at %s:%d"
msgstr ""
-#: varasm.c:467
+#: value-prof.c:101
#, gcc-internal-format
-msgid "%J%D causes a section type conflict"
+msgid ""
+"%HCorrupted value profile: %s profiler overall count (%d) does not match BB "
+"count (%d)"
msgstr ""
-#: varasm.c:928
+#: varasm.c:470
#, gcc-internal-format
-msgid "%Jregister name not specified for %qD"
+msgid "%+D causes a section type conflict"
msgstr ""
-#: varasm.c:930
+#: varasm.c:932
#, gcc-internal-format
-msgid "%Jinvalid register name for %qD"
+msgid "register name not specified for %q+D"
msgstr ""
-#: varasm.c:932
+#: varasm.c:934
+#, gcc-internal-format
+msgid "invalid register name for %q+D"
+msgstr ""
+
+#: varasm.c:936
#, gcc-internal-format
-msgid "%Jdata type of %qD isn%'t suitable for a register"
+msgid "data type of %q+D isn%'t suitable for a register"
msgstr ""
-#: varasm.c:935
+#: varasm.c:939
#, gcc-internal-format
-msgid "%Jregister specified for %qD isn%'t suitable for data type"
+msgid "register specified for %q+D isn%'t suitable for data type"
msgstr ""
-#: varasm.c:945
+#: varasm.c:949
#, gcc-internal-format
msgid "global register variable has initial value"
msgstr ""
-#: varasm.c:948
+#: varasm.c:952
#, gcc-internal-format
msgid "volatile register variables don%'t work as you might wish"
msgstr ""
-#: varasm.c:986
+#: varasm.c:990
#, gcc-internal-format
-msgid "%Jregister name given for non-register variable %qD"
+msgid "register name given for non-register variable %q+D"
msgstr ""
-#: varasm.c:1063
+#: varasm.c:1067
#, gcc-internal-format
msgid "global destructors not supported on this target"
msgstr ""
-#: varasm.c:1124
+#: varasm.c:1128
#, gcc-internal-format
msgid "global constructors not supported on this target"
msgstr ""
-#: varasm.c:1683
+#: varasm.c:1692
#, gcc-internal-format
msgid ""
-"%Jalignment of %qD is greater than maximum object file alignment. Using %d"
+"alignment of %q+D is greater than maximum object file alignment. Using %d"
msgstr ""
-#: varasm.c:1722
+#: varasm.c:1731
#, gcc-internal-format
msgid "thread-local COMMON data not implemented"
msgstr ""
-#: varasm.c:1747
+#: varasm.c:1756
#, gcc-internal-format
msgid ""
-"%Jrequested alignment for %qD is greater than implemented alignment of %d"
+"requested alignment for %q+D is greater than implemented alignment of %wu"
+msgstr ""
+
+#: varasm.c:3886
+#, gcc-internal-format
+msgid "no-op convert from %wd to %wd bytes in initializer"
msgstr ""
-#: varasm.c:3867
+#: varasm.c:3930
#, gcc-internal-format
msgid "initializer for integer value is too complicated"
msgstr ""
-#: varasm.c:3872
+#: varasm.c:3935
#, gcc-internal-format
msgid "initializer for floating value is not a floating constant"
msgstr ""
-#: varasm.c:4139
+#: varasm.c:4204
#, gcc-internal-format
msgid "invalid initial value for member %qs"
msgstr ""
-#: varasm.c:4338 varasm.c:4382
+#: varasm.c:4404 varasm.c:4448
#, gcc-internal-format
-msgid "%Jweak declaration of %qD must precede definition"
+msgid "weak declaration of %q+D must precede definition"
msgstr ""
-#: varasm.c:4346
+#: varasm.c:4412
#, gcc-internal-format
msgid ""
-"%Jweak declaration of %qD after first use results in unspecified behavior"
+"weak declaration of %q+D after first use results in unspecified behavior"
msgstr ""
-#: varasm.c:4380
+#: varasm.c:4446
#, gcc-internal-format
-msgid "%Jweak declaration of %qD must be public"
+msgid "weak declaration of %q+D must be public"
msgstr ""
-#: varasm.c:4389
+#: varasm.c:4455
#, gcc-internal-format
-msgid "%Jweak declaration of %qD not supported"
+msgid "weak declaration of %q+D not supported"
msgstr ""
-#: varasm.c:4418
+#: varasm.c:4484
#, gcc-internal-format
msgid "only weak aliases are supported in this configuration"
msgstr ""
-#: varasm.c:4586
+#: varasm.c:4652
#, gcc-internal-format
-msgid "%J%qD aliased to undefined symbol %qE"
+msgid "%q+D aliased to undefined symbol %qs"
msgstr ""
-#: varasm.c:4589
+#: varasm.c:4655
#, gcc-internal-format
-msgid "%J%qD aliased to external symbol %qE"
+msgid "%q+D aliased to external symbol %qs"
msgstr ""
-#: varasm.c:4620
+#: varasm.c:4686
#, gcc-internal-format
msgid "%Jalias definitions not supported in this configuration"
msgstr ""
-#: varasm.c:4625
+#: varasm.c:4691
#, gcc-internal-format
msgid "%Jonly weak aliases are supported in this configuration"
msgstr ""
-#: varasm.c:4680
+#: varasm.c:4746
#, gcc-internal-format
msgid "visibility attribute not supported in this configuration; ignored"
msgstr ""
@@ -15034,7 +19757,7 @@ msgstr ""
#. Print an error message for unrecognized stab codes.
#: xcoffout.c:187
#, gcc-internal-format
-msgid "no sclass for %s stab (0x%x)\n"
+msgid "no sclass for %s stab (0x%x)"
msgstr ""
#: config/darwin-c.c:85
@@ -15078,7 +19801,12 @@ msgstr ""
msgid "subframework include %s conflicts with framework include"
msgstr ""
-#: config/darwin.c:1343
+#: config/darwin-c.c:576
+#, gcc-internal-format
+msgid "Unknown value %qs of -mmacosx-version-min"
+msgstr ""
+
+#: config/darwin.c:1323
#, gcc-internal-format
msgid ""
"internal and protected visibility attributes not supported in this "
@@ -15087,7 +19815,7 @@ msgstr ""
#: config/host-darwin.c:63
#, gcc-internal-format
-msgid "couldn't unmap pch_address_space: %m\n"
+msgid "couldn't unmap pch_address_space: %m"
msgstr ""
#: config/sol2-c.c:94 config/sol2-c.c:110
@@ -15147,7 +19875,7 @@ msgstr ""
#: config/sol2.c:54
#, gcc-internal-format
-msgid "%Jignoring %<#pragma align%> for explicitly aligned %<%D%>"
+msgid "ignoring %<#pragma align%> for explicitly aligned %q+D"
msgstr ""
#. Mach-O supports 'weak imports', and 'weak definitions' in coalesced
@@ -15155,17 +19883,23 @@ msgstr ""
#. coalesced sections. Weak aliases (or any other kind of aliases) are
#. not supported. Weak symbols that aren't visible outside the .s file
#. are not supported.
-#: config/darwin.h:378
+#: config/darwin.h:382
#, gcc-internal-format
msgid "alias definitions not supported in Mach-O; ignored"
msgstr ""
+#. No profiling.
+#: config/vx-common.h:83
+#, gcc-internal-format
+msgid "profiler support for VxWorks"
+msgstr ""
+
#: config/windiss.h:37
#, gcc-internal-format
msgid "profiler support for WindISS"
msgstr ""
-#: config/alpha/alpha.c:231 config/rs6000/rs6000.c:1547
+#: config/alpha/alpha.c:231 config/rs6000/rs6000.c:1566
#, gcc-internal-format
msgid "bad value %qs for -mtls-size switch"
msgstr ""
@@ -15240,8 +19974,8 @@ msgstr ""
msgid "bad value %qs for -mmemory-latency"
msgstr ""
-#: config/alpha/alpha.c:6371 config/alpha/alpha.c:6374 config/s390/s390.c:7303
-#: config/s390/s390.c:7306
+#: config/alpha/alpha.c:6542 config/alpha/alpha.c:6545 config/s390/s390.c:7579
+#: config/s390/s390.c:7582
#, gcc-internal-format
msgid "bad builtin fcode"
msgstr ""
@@ -15261,7 +19995,7 @@ msgstr ""
msgid "switch -mcpu=%s conflicts with -march= switch"
msgstr ""
-#: config/arm/arm.c:887 config/rs6000/rs6000.c:1203 config/sparc/sparc.c:698
+#: config/arm/arm.c:887 config/rs6000/rs6000.c:1222 config/sparc/sparc.c:698
#, gcc-internal-format
msgid "bad value (%s) for %s switch"
msgstr ""
@@ -15276,175 +20010,174 @@ msgstr ""
msgid "target CPU does not support THUMB instructions"
msgstr ""
-#: config/arm/arm.c:1016
+#: config/arm/arm.c:1021
#, gcc-internal-format
msgid ""
"enabling backtrace support is only meaningful when compiling for the Thumb"
msgstr ""
-#: config/arm/arm.c:1019
+#: config/arm/arm.c:1024
#, gcc-internal-format
msgid ""
"enabling callee interworking support is only meaningful when compiling for "
"the Thumb"
msgstr ""
-#: config/arm/arm.c:1022
+#: config/arm/arm.c:1027
#, gcc-internal-format
msgid ""
"enabling caller interworking support is only meaningful when compiling for "
"the Thumb"
msgstr ""
-#: config/arm/arm.c:1026
+#: config/arm/arm.c:1031
#, gcc-internal-format
msgid "-mapcs-stack-check incompatible with -mno-apcs-frame"
msgstr ""
-#: config/arm/arm.c:1034
+#: config/arm/arm.c:1039
#, gcc-internal-format
msgid "-fpic and -mapcs-reent are incompatible"
msgstr ""
-#: config/arm/arm.c:1037
+#: config/arm/arm.c:1042
#, gcc-internal-format
msgid "APCS reentrant code not supported. Ignored"
msgstr ""
-#: config/arm/arm.c:1045
+#: config/arm/arm.c:1050
#, gcc-internal-format
msgid "-g with -mno-apcs-frame may not give sensible debugging"
msgstr ""
-#: config/arm/arm.c:1053
+#: config/arm/arm.c:1058
#, gcc-internal-format
msgid "passing floating point arguments in fp regs not yet supported"
msgstr ""
-#: config/arm/arm.c:1094
+#: config/arm/arm.c:1099
#, gcc-internal-format
msgid "invalid ABI option: -mabi=%s"
msgstr ""
-#: config/arm/arm.c:1100
+#: config/arm/arm.c:1105
#, gcc-internal-format
msgid "iwmmxt requires an AAPCS compatible ABI for proper operation"
msgstr ""
-#: config/arm/arm.c:1103
+#: config/arm/arm.c:1108
#, gcc-internal-format
msgid "iwmmxt abi requires an iwmmxt capable cpu"
msgstr ""
-#: config/arm/arm.c:1113
+#: config/arm/arm.c:1118
#, gcc-internal-format
msgid "invalid floating point emulation option: -mfpe=%s"
msgstr ""
-#: config/arm/arm.c:1130
+#: config/arm/arm.c:1135
#, gcc-internal-format
msgid "invalid floating point option: -mfpu=%s"
msgstr ""
-#: config/arm/arm.c:1170
+#: config/arm/arm.c:1175
#, gcc-internal-format
msgid "invalid floating point abi: -mfloat-abi=%s"
msgstr ""
-#: config/arm/arm.c:1177
+#: config/arm/arm.c:1182
#, gcc-internal-format
msgid "-mfloat-abi=hard and VFP"
msgstr ""
-#: config/arm/arm.c:1203
+#: config/arm/arm.c:1208
#, gcc-internal-format
msgid "structure size boundary can only be set to %s"
msgstr ""
-#: config/arm/arm.c:1212
+#: config/arm/arm.c:1217
#, gcc-internal-format
msgid "-mpic-register= is useless without -fpic"
msgstr ""
-#: config/arm/arm.c:1219
+#: config/arm/arm.c:1224
#, gcc-internal-format
msgid "unable to use '%s' for PIC register"
msgstr ""
-#: config/arm/arm.c:2792 config/arm/arm.c:2810 config/avr/avr.c:4670
-#: config/bfin/bfin.c:2547 config/c4x/c4x.c:4076 config/h8300/h8300.c:5258
-#: config/i386/i386.c:1771 config/ip2k/ip2k.c:3183
-#: config/m68hc11/m68hc11.c:1155 config/m68k/m68k.c:376
-#: config/mcore/mcore.c:3032 config/ns32k/ns32k.c:1109
-#: config/rs6000/rs6000.c:16681 config/sh/sh.c:7401 config/sh/sh.c:7422
-#: config/sh/sh.c:7457 config/stormy16/stormy16.c:2279 config/v850/v850.c:2104
+#: config/arm/arm.c:2796 config/arm/arm.c:2814 config/avr/avr.c:4676
+#: config/bfin/bfin.c:2703 config/c4x/c4x.c:4076 config/h8300/h8300.c:5258
+#: config/i386/i386.c:1994 config/m68hc11/m68hc11.c:1155
+#: config/m68k/m68k.c:376 config/mcore/mcore.c:3032 config/ms1/ms1.c:1268
+#: config/rs6000/rs6000.c:17275 config/sh/sh.c:7516 config/sh/sh.c:7537
+#: config/sh/sh.c:7572 config/stormy16/stormy16.c:2241 config/v850/v850.c:2111
#, gcc-internal-format
msgid "%qs attribute only applies to functions"
msgstr ""
-#: config/arm/arm.c:11595
+#: config/arm/arm.c:11652
#, gcc-internal-format
msgid "unable to compute real location of stacked parameter"
msgstr ""
#. @@@ better error message
-#: config/arm/arm.c:12225 config/arm/arm.c:12262
+#: config/arm/arm.c:12282 config/arm/arm.c:12319
#, gcc-internal-format
msgid "selector must be an immediate"
msgstr ""
#. @@@ better error message
-#: config/arm/arm.c:12305 config/i386/i386.c:14934 config/i386/i386.c:14968
+#: config/arm/arm.c:12362 config/i386/i386.c:15301 config/i386/i386.c:15335
#, gcc-internal-format
msgid "mask must be an immediate"
msgstr ""
-#: config/arm/arm.c:12961
+#: config/arm/arm.c:13018
#, gcc-internal-format
msgid "no low registers available for popping high registers"
msgstr ""
-#: config/arm/arm.c:13179
+#: config/arm/arm.c:13242
#, gcc-internal-format
msgid "interrupt Service Routines cannot be coded in Thumb mode"
msgstr ""
#: config/arm/pe.c:165 config/mcore/mcore.c:2898
#, gcc-internal-format
-msgid "%Jinitialized variable '%D' is marked dllimport"
+msgid "initialized variable %q+D is marked dllimport"
msgstr ""
#: config/arm/pe.c:174
#, gcc-internal-format
-msgid "%Jstatic variable '%D' is marked dllimport"
+msgid "static variable %q+D is marked dllimport"
msgstr ""
-#: config/avr/avr.c:525
+#: config/avr/avr.c:531
#, gcc-internal-format
msgid "large frame pointer change (%d) with -mtiny-stack"
msgstr ""
-#: config/avr/avr.c:4643 config/ip2k/ip2k.c:3157
+#: config/avr/avr.c:4649
#, gcc-internal-format
msgid "only initialized variables can be placed into program memory area"
msgstr ""
-#: config/avr/avr.c:4687
+#: config/avr/avr.c:4693
#, gcc-internal-format
-msgid "`%s' appears to be a misspelled interrupt handler"
+msgid "%qs appears to be a misspelled interrupt handler"
msgstr ""
-#: config/avr/avr.c:4695
+#: config/avr/avr.c:4701
#, gcc-internal-format
-msgid "`%s' appears to be a misspelled signal handler"
+msgid "%qs appears to be a misspelled signal handler"
msgstr ""
-#: config/avr/avr.c:4764
+#: config/avr/avr.c:4770
#, gcc-internal-format
msgid "only uninitialized variables can be placed in the .noinit section"
msgstr ""
-#: config/avr/avr.c:4778
+#: config/avr/avr.c:4784
#, gcc-internal-format
msgid "MCU %qs supported for assembler only"
msgstr ""
@@ -15454,47 +20187,57 @@ msgstr ""
msgid "trampolines not supported"
msgstr ""
-#: config/bfin/bfin.c:1711 config/m68k/m68k.c:294
+#: config/bfin/bfin.c:1785 config/m68k/m68k.c:294
#, gcc-internal-format
msgid "-mshared-library-id=%s is not between 0 and %d"
msgstr ""
-#: config/bfin/bfin.c:1731
+#: config/bfin/bfin.c:1805
#, gcc-internal-format
msgid "-mshared-library-id= specified without -mid-shared-library"
msgstr ""
-#: config/bfin/bfin.c:2552
+#: config/bfin/bfin.c:2708
#, gcc-internal-format
msgid "multiple function type attributes specified"
msgstr ""
-#: config/c4x/c4x-c.c:71
+#: config/bfin/bfin.c:2764
+#, gcc-internal-format
+msgid "`%s' attribute only applies to functions"
+msgstr ""
+
+#: config/bfin/bfin.c:2775
+#, gcc-internal-format
+msgid "can't apply both longcall and shortcall attributes to the same function"
+msgstr ""
+
+#: config/c4x/c4x-c.c:72
#, gcc-internal-format
msgid "missing '(' after '#pragma %s' - ignored"
msgstr ""
-#: config/c4x/c4x-c.c:74
+#: config/c4x/c4x-c.c:75
#, gcc-internal-format
msgid "missing function name in '#pragma %s' - ignored"
msgstr ""
-#: config/c4x/c4x-c.c:79
+#: config/c4x/c4x-c.c:80
#, gcc-internal-format
msgid "malformed '#pragma %s' - ignored"
msgstr ""
-#: config/c4x/c4x-c.c:81
+#: config/c4x/c4x-c.c:82
#, gcc-internal-format
msgid "missing section name in '#pragma %s' - ignored"
msgstr ""
-#: config/c4x/c4x-c.c:86
+#: config/c4x/c4x-c.c:87
#, gcc-internal-format
msgid "missing ')' for '#pragma %s' - ignored"
msgstr ""
-#: config/c4x/c4x-c.c:89
+#: config/c4x/c4x-c.c:90
#, gcc-internal-format
msgid "junk at end of '#pragma %s'"
msgstr ""
@@ -15508,73 +20251,83 @@ msgstr ""
#. an operator, for immediate output. If that ever happens for
#. MULT, we need to apply TARGET_MUL_BUG in the caller. Make sure
#. we notice.
-#: config/cris/cris.c:435
+#: config/cris/cris.c:434
#, gcc-internal-format
msgid "MULT case in cris_op_str"
msgstr ""
-#: config/cris/cris.c:983
+#: config/cris/cris.c:812
+#, gcc-internal-format
+msgid "invalid use of ':' modifier"
+msgstr ""
+
+#: config/cris/cris.c:978
#, gcc-internal-format
msgid "internal error: bad register: %d"
msgstr ""
-#: config/cris/cris.c:1443
+#: config/cris/cris.c:1445
#, gcc-internal-format
msgid "internal error: sideeffect-insn affecting main effect"
msgstr ""
-#: config/cris/cris.c:1467
+#: config/cris/cris.c:1469
#, gcc-internal-format
-msgid "Unknown cc_attr value"
+msgid "unknown cc_attr value"
msgstr ""
#. If we get here, the caller got its initial tests wrong.
-#: config/cris/cris.c:1825
+#: config/cris/cris.c:1820
#, gcc-internal-format
msgid "internal error: cris_side_effect_mode_ok with bad operands"
msgstr ""
-#: config/cris/cris.c:2085
+#: config/cris/cris.c:2023
#, gcc-internal-format
msgid "-max-stackframe=%d is not usable, not between 0 and %d"
msgstr ""
-#: config/cris/cris.c:2113
+#: config/cris/cris.c:2051
#, gcc-internal-format
msgid "unknown CRIS version specification in -march= or -mcpu= : %s"
msgstr ""
-#: config/cris/cris.c:2149
+#: config/cris/cris.c:2087
#, gcc-internal-format
msgid "unknown CRIS cpu version specification in -mtune= : %s"
msgstr ""
-#: config/cris/cris.c:2167
+#: config/cris/cris.c:2105
#, gcc-internal-format
msgid "-fPIC and -fpic are not supported in this configuration"
msgstr ""
-#: config/cris/cris.c:2182
+#: config/cris/cris.c:2120
#, gcc-internal-format
msgid "that particular -g option is invalid with -maout and -melinux"
msgstr ""
-#: config/cris/cris.c:2376
+#: config/cris/cris.c:2314
#, gcc-internal-format
msgid "Unknown src"
msgstr ""
-#: config/cris/cris.c:2418
+#: config/cris/cris.c:2356
#, gcc-internal-format
msgid "Unknown dest"
msgstr ""
-#: config/cris/cris.c:2692
+#: config/cris/cris.c:2641
#, gcc-internal-format
msgid "stackframe too big: %d bytes"
msgstr ""
-#: config/cris/cris.c:3126
+#: config/cris/cris.c:3057 config/cris/cris.c:3084
+#, gcc-internal-format
+msgid "expand_binop failed in movsi got"
+msgstr ""
+
+#: config/cris/cris.c:3149
#, gcc-internal-format
msgid "emitting PIC operand, but PIC register isn't set up"
msgstr ""
@@ -15629,67 +20382,77 @@ msgstr ""
#. See cris.c for TARGET_ASM_FUNCTION_PROLOGUE and
#. TARGET_ASM_FUNCTION_EPILOGUE.
#. Node: Profiling
-#: config/cris/cris.h:857
+#: config/cris/cris.h:867
#, gcc-internal-format
msgid "no FUNCTION_PROFILER for CRIS"
msgstr ""
-#: config/frv/frv.c:8218
+#: config/crx/crx.h:355
+#, gcc-internal-format
+msgid "Profiler support for CRX"
+msgstr ""
+
+#: config/crx/crx.h:366
+#, gcc-internal-format
+msgid "Trampoline support for CRX"
+msgstr ""
+
+#: config/frv/frv.c:8623
#, gcc-internal-format
msgid "accumulator is not a constant integer"
msgstr ""
-#: config/frv/frv.c:8223
+#: config/frv/frv.c:8628
#, gcc-internal-format
msgid "accumulator number is out of bounds"
msgstr ""
-#: config/frv/frv.c:8234
+#: config/frv/frv.c:8639
#, gcc-internal-format
msgid "inappropriate accumulator for %qs"
msgstr ""
-#: config/frv/frv.c:8300
+#: config/frv/frv.c:8717
#, gcc-internal-format
msgid "invalid IACC argument"
msgstr ""
-#: config/frv/frv.c:8323
+#: config/frv/frv.c:8740
#, gcc-internal-format
msgid "%qs expects a constant argument"
msgstr ""
-#: config/frv/frv.c:8328
+#: config/frv/frv.c:8745
#, gcc-internal-format
msgid "constant argument out of range for %qs"
msgstr ""
-#: config/frv/frv.c:8763
+#: config/frv/frv.c:9227
#, gcc-internal-format
msgid "media functions are not available unless -mmedia is used"
msgstr ""
-#: config/frv/frv.c:8775
+#: config/frv/frv.c:9239
#, gcc-internal-format
msgid "this media function is only available on the fr500"
msgstr ""
-#: config/frv/frv.c:8803
+#: config/frv/frv.c:9267
#, gcc-internal-format
msgid "this media function is only available on the fr400 and fr550"
msgstr ""
-#: config/frv/frv.c:8822
+#: config/frv/frv.c:9286
#, gcc-internal-format
msgid "this builtin function is only available on the fr405 and fr450"
msgstr ""
-#: config/frv/frv.c:8831
+#: config/frv/frv.c:9295
#, gcc-internal-format
msgid "this builtin function is only available on the fr500 and fr550"
msgstr ""
-#: config/frv/frv.c:8843
+#: config/frv/frv.c:9307
#, gcc-internal-format
msgid "this builtin function is only available on the fr450"
msgstr ""
@@ -15714,212 +20477,222 @@ msgstr ""
msgid "can't set position in PCH file: %m"
msgstr ""
-#: config/i386/i386.c:1292
+#: config/i386/i386.c:1316
#, gcc-internal-format
msgid "code model %s not supported in PIC mode"
msgstr ""
-#: config/i386/i386.c:1302 config/sparc/sparc.c:662
+#: config/i386/i386.c:1324 config/sparc/sparc.c:662
#, gcc-internal-format
msgid "bad value (%s) for -mcmodel= switch"
msgstr ""
-#: config/i386/i386.c:1317
+#: config/i386/i386.c:1339
#, gcc-internal-format
msgid "bad value (%s) for -masm= switch"
msgstr ""
-#: config/i386/i386.c:1320
+#: config/i386/i386.c:1342
#, gcc-internal-format
msgid "code model %qs not supported in the %s bit mode"
msgstr ""
-#: config/i386/i386.c:1323
+#: config/i386/i386.c:1345
#, gcc-internal-format
msgid "code model %<large%> not supported yet"
msgstr ""
-#: config/i386/i386.c:1325
+#: config/i386/i386.c:1347
#, gcc-internal-format
msgid "%i-bit mode not compiled in"
msgstr ""
-#: config/i386/i386.c:1355 config/i386/i386.c:1379
+#: config/i386/i386.c:1377 config/i386/i386.c:1401
#, gcc-internal-format
msgid "CPU you selected does not support x86-64 instruction set"
msgstr ""
-#: config/i386/i386.c:1361
+#: config/i386/i386.c:1383 config/ms1/ms1.c:798
#, gcc-internal-format
msgid "bad value (%s) for -march= switch"
msgstr ""
-#: config/i386/i386.c:1392
+#: config/i386/i386.c:1414
#, gcc-internal-format
msgid "bad value (%s) for -mtune= switch"
msgstr ""
-#: config/i386/i386.c:1409
+#: config/i386/i386.c:1431
#, gcc-internal-format
msgid "-mregparm=%d is not between 0 and %d"
msgstr ""
-#: config/i386/i386.c:1422
+#: config/i386/i386.c:1444
#, gcc-internal-format
msgid "-malign-loops is obsolete, use -falign-loops"
msgstr ""
-#: config/i386/i386.c:1427 config/i386/i386.c:1440 config/i386/i386.c:1453
+#: config/i386/i386.c:1449 config/i386/i386.c:1462 config/i386/i386.c:1475
#, gcc-internal-format
msgid "-malign-loops=%d is not between 0 and %d"
msgstr ""
-#: config/i386/i386.c:1435
+#: config/i386/i386.c:1457
#, gcc-internal-format
msgid "-malign-jumps is obsolete, use -falign-jumps"
msgstr ""
-#: config/i386/i386.c:1448
+#: config/i386/i386.c:1470
#, gcc-internal-format
msgid "-malign-functions is obsolete, use -falign-functions"
msgstr ""
-#: config/i386/i386.c:1486
+#: config/i386/i386.c:1508
#, gcc-internal-format
msgid "-mpreferred-stack-boundary=%d is not between %d and 12"
msgstr ""
-#: config/i386/i386.c:1498
+#: config/i386/i386.c:1520
#, gcc-internal-format
msgid "-mbranch-cost=%d is not between 0 and 5"
msgstr ""
-#: config/i386/i386.c:1510
+#: config/i386/i386.c:1528
+#, gcc-internal-format
+msgid "-mlarge-data-threshold=%d is negative"
+msgstr ""
+
+#: config/i386/i386.c:1540
#, gcc-internal-format
msgid "bad value (%s) for -mtls-dialect= switch"
msgstr ""
-#: config/i386/i386.c:1557
+#: config/i386/i386.c:1587
#, gcc-internal-format
msgid "-malign-double makes no sense in the 64bit mode"
msgstr ""
-#: config/i386/i386.c:1559
+#: config/i386/i386.c:1589
#, gcc-internal-format
msgid "-mrtd calling convention not supported in the 64bit mode"
msgstr ""
-#: config/i386/i386.c:1586 config/i386/i386.c:1597
+#: config/i386/i386.c:1609
+#, gcc-internal-format
+msgid "-msseregparm used without SSE enabled"
+msgstr ""
+
+#: config/i386/i386.c:1621 config/i386/i386.c:1632
#, gcc-internal-format
msgid "SSE instruction set disabled, using 387 arithmetics"
msgstr ""
-#: config/i386/i386.c:1602
+#: config/i386/i386.c:1637
#, gcc-internal-format
msgid "387 instruction set disabled, using SSE arithmetics"
msgstr ""
-#: config/i386/i386.c:1609
+#: config/i386/i386.c:1644
#, gcc-internal-format
msgid "bad value (%s) for -mfpmath= switch"
msgstr ""
-#: config/i386/i386.c:1784 config/i386/i386.c:1826
+#: config/i386/i386.c:2007 config/i386/i386.c:2049
#, gcc-internal-format
msgid "fastcall and regparm attributes are not compatible"
msgstr ""
-#: config/i386/i386.c:1791
+#: config/i386/i386.c:2014
#, gcc-internal-format
msgid "%qs attribute requires an integer constant argument"
msgstr ""
-#: config/i386/i386.c:1797
+#: config/i386/i386.c:2020
#, gcc-internal-format
msgid "argument to %qs attribute larger than %d"
msgstr ""
-#: config/i386/i386.c:1818 config/i386/i386.c:1853
+#: config/i386/i386.c:2041 config/i386/i386.c:2076
#, gcc-internal-format
msgid "fastcall and cdecl attributes are not compatible"
msgstr ""
-#: config/i386/i386.c:1822
+#: config/i386/i386.c:2045
#, gcc-internal-format
msgid "fastcall and stdcall attributes are not compatible"
msgstr ""
-#: config/i386/i386.c:1836 config/i386/i386.c:1849
+#: config/i386/i386.c:2059 config/i386/i386.c:2072
#, gcc-internal-format
msgid "stdcall and cdecl attributes are not compatible"
msgstr ""
-#: config/i386/i386.c:1840
+#: config/i386/i386.c:2063
#, gcc-internal-format
msgid "stdcall and fastcall attributes are not compatible"
msgstr ""
-#: config/i386/i386.c:1956
+#: config/i386/i386.c:2197
#, gcc-internal-format
msgid "Calling %qD with attribute sseregparm without SSE/SSE2 enabled"
msgstr ""
-#: config/i386/i386.c:1959
+#: config/i386/i386.c:2200
#, gcc-internal-format
msgid "Calling %qT with attribute sseregparm without SSE/SSE2 enabled"
msgstr ""
-#: config/i386/i386.c:2684
+#: config/i386/i386.c:2925
#, gcc-internal-format
msgid "SSE register return with SSE disabled"
msgstr ""
-#: config/i386/i386.c:2686
+#: config/i386/i386.c:2927
#, gcc-internal-format
msgid "SSE register argument with SSE disabled"
msgstr ""
-#: config/i386/i386.c:3001
+#: config/i386/i386.c:3242
#, gcc-internal-format
msgid "SSE vector argument without SSE enabled changes the ABI"
msgstr ""
-#: config/i386/i386.c:3018
+#: config/i386/i386.c:3259
#, gcc-internal-format
msgid "MMX vector argument without MMX enabled changes the ABI"
msgstr ""
-#: config/i386/i386.c:3274
+#: config/i386/i386.c:3525
#, gcc-internal-format
msgid "SSE vector return without SSE enabled changes the ABI"
msgstr ""
-#: config/i386/i386.c:3284
+#: config/i386/i386.c:3535
#, gcc-internal-format
msgid "MMX vector return without MMX enabled changes the ABI"
msgstr ""
-#: config/i386/i386.c:6450
+#: config/i386/i386.c:6762
#, gcc-internal-format
msgid "extended registers have no high halves"
msgstr ""
-#: config/i386/i386.c:6465
+#: config/i386/i386.c:6777
#, gcc-internal-format
msgid "unsupported operand size for extended register"
msgstr ""
-#: config/i386/i386.c:14662
+#: config/i386/i386.c:15029 config/rs6000/rs6000.c:7060
#, gcc-internal-format
-msgid "selector must be an integer constant in the range 0..%i"
+msgid "selector must be an integer constant in the range 0..%wi"
msgstr ""
-#: config/i386/i386.c:15000
+#: config/i386/i386.c:15367
#, gcc-internal-format
msgid "shift must be an immediate"
msgstr ""
-#: config/i386/i386.c:16170
+#: config/i386/i386.c:16537
#, gcc-internal-format
msgid "%qs incompatible attribute ignored"
msgstr ""
@@ -15935,26 +20708,26 @@ msgid ""
"%qs attribute applies only to initialized variables with external linkage"
msgstr ""
-#: config/i386/winnt.c:202
+#: config/i386/winnt.c:202 config/sh/symbian.c:147
#, gcc-internal-format
msgid ""
-"%Jfunction '%D' is defined after prior declaration as dllimport: attribute "
+"function %q+D is defined after prior declaration as dllimport: attribute "
"ignored"
msgstr ""
-#: config/i386/winnt.c:213
+#: config/i386/winnt.c:213 config/sh/symbian.c:159
#, gcc-internal-format
-msgid "%Jinline function '%D' is declared as dllimport: attribute ignored."
+msgid "inline function %q+D is declared as dllimport: attribute ignored"
msgstr ""
-#: config/i386/winnt.c:225
+#: config/i386/winnt.c:225 config/sh/symbian.c:173
#, gcc-internal-format
-msgid "%Jdefinition of static data member '%D' of dllimport'd class."
+msgid "definition of static data member %q+D of dllimport'd class"
msgstr ""
#: config/i386/winnt.c:282
#, gcc-internal-format
-msgid "%Jinconsistent dll linkage for '%D', dllexport assumed."
+msgid "inconsistent dll linkage for %q+D, dllexport assumed"
msgstr ""
#: config/i386/winnt.c:323 config/sh/symbian.c:273
@@ -15964,19 +20737,19 @@ msgstr ""
#: config/i386/winnt.c:466
#, gcc-internal-format
-msgid "%J'%D' defined locally after being referenced with dllimport linkage"
+msgid "%q+D defined locally after being referenced with dllimport linkage"
msgstr ""
#: config/i386/winnt.c:469
#, gcc-internal-format
msgid ""
-"%J'%D' redeclared without dllimport attribute after being referenced with "
+"%q+D redeclared without dllimport attribute after being referenced with "
"dllimport linkage"
msgstr ""
#: config/i386/winnt.c:637
#, gcc-internal-format
-msgid "%J'%D' causes a section type conflict"
+msgid "%q+D causes a section type conflict"
msgstr ""
#: config/i386/cygming.h:166
@@ -16011,7 +20784,7 @@ msgstr ""
#: config/ia64/ia64.c:524
#, gcc-internal-format
-msgid "%Jaddress area of '%s' conflicts with previous declaration"
+msgid "address area of %q+D conflicts with previous declaration"
msgstr ""
#: config/ia64/ia64.c:531
@@ -16019,34 +20792,34 @@ msgstr ""
msgid "%Jaddress area attribute cannot be specified for functions"
msgstr ""
-#: config/ia64/ia64.c:4893 config/pa/pa.c:320
+#: config/ia64/ia64.c:4931 config/pa/pa.c:327
#, gcc-internal-format
msgid "value of -mfixed-range must have form REG1-REG2"
msgstr ""
-#: config/ia64/ia64.c:4920 config/pa/pa.c:347
+#: config/ia64/ia64.c:4958 config/pa/pa.c:354
#, gcc-internal-format
msgid "%s-%s is an empty range"
msgstr ""
-#: config/ia64/ia64.c:4948
+#: config/ia64/ia64.c:4986
#, gcc-internal-format
msgid "bad value %<%s%> for -mtls-size= switch"
msgstr ""
-#: config/ia64/ia64.c:4976
+#: config/ia64/ia64.c:5014
#, gcc-internal-format
msgid "bad value %<%s%> for -mtune= switch"
msgstr ""
-#: config/ia64/ia64.c:4995
+#: config/ia64/ia64.c:5033
#, gcc-internal-format
msgid "not yet implemented: latency-optimized inline square root"
msgstr ""
#: config/iq2000/iq2000.c:1808
#, gcc-internal-format
-msgid "gp_offset (%ld) or end_offset (%ld) is less than zero."
+msgid "gp_offset (%ld) or end_offset (%ld) is less than zero"
msgstr ""
#: config/iq2000/iq2000.c:2589
@@ -16054,7 +20827,8 @@ msgstr ""
msgid "argument %qd is not a constant"
msgstr ""
-#: config/iq2000/iq2000.c:2892 config/xtensa/xtensa.c:1773
+#: config/iq2000/iq2000.c:2892 config/ms1/ms1.c:338
+#: config/xtensa/xtensa.c:1773
#, gcc-internal-format
msgid "PRINT_OPERAND_ADDRESS, null pointer"
msgstr ""
@@ -16064,12 +20838,32 @@ msgstr ""
msgid "PRINT_OPERAND: Unknown punctuation '%c'"
msgstr ""
-#: config/iq2000/iq2000.c:3056 config/mips/mips.c:5240
+#: config/iq2000/iq2000.c:3056 config/mips/mips.c:5390
#: config/xtensa/xtensa.c:1627
#, gcc-internal-format
msgid "PRINT_OPERAND null pointer"
msgstr ""
+#: config/m32c/m32c-pragma.c:64
+#, gcc-internal-format
+msgid "junk at end of #pragma GCC memregs [0..16]"
+msgstr ""
+
+#: config/m32c/m32c-pragma.c:71
+#, gcc-internal-format
+msgid "#pragma GCC memregs must precede any function decls"
+msgstr ""
+
+#: config/m32c/m32c-pragma.c:82 config/m32c/m32c-pragma.c:89
+#, gcc-internal-format
+msgid "#pragma GCC memregs takes a number [0..16]"
+msgstr ""
+
+#: config/m32c/m32c.c:412
+#, gcc-internal-format
+msgid "invalid target memregs value '%d'"
+msgstr ""
+
#: config/m68hc11/m68hc11.c:279
#, gcc-internal-format
msgid "-f%s ignored for 68HC11/68HC12 (not supported)"
@@ -16092,112 +20886,122 @@ msgstr ""
#: config/m68k/m68k.c:333
#, gcc-internal-format
-msgid "-fPIC is not currently supported on the 68000 or 68010\n"
+msgid "-fPIC is not currently supported on the 68000 or 68010"
msgstr ""
-#: config/m68k/m68k.c:640 config/rs6000/rs6000.c:12955
+#: config/m68k/m68k.c:640 config/rs6000/rs6000.c:13546
#, gcc-internal-format
msgid "stack limit expression is not supported"
msgstr ""
-#: config/mips/mips.c:4447
+#: config/mips/mips.c:4584
#, gcc-internal-format
msgid ""
"-%s conflicts with the other architecture options, which specify a %s "
"processor"
msgstr ""
-#: config/mips/mips.c:4463
+#: config/mips/mips.c:4600
#, gcc-internal-format
msgid "-march=%s is not compatible with the selected ABI"
msgstr ""
-#: config/mips/mips.c:4481
+#: config/mips/mips.c:4618
#, gcc-internal-format
msgid "-mgp64 used with a 32-bit processor"
msgstr ""
-#: config/mips/mips.c:4483
+#: config/mips/mips.c:4620
#, gcc-internal-format
msgid "-mgp32 used with a 64-bit ABI"
msgstr ""
-#: config/mips/mips.c:4485
+#: config/mips/mips.c:4622
#, gcc-internal-format
msgid "-mgp64 used with a 32-bit ABI"
msgstr ""
-#: config/mips/mips.c:4503 config/mips/mips.c:4505 config/mips/mips.c:4507
-#: config/mips/mips.c:4583
+#: config/mips/mips.c:4640 config/mips/mips.c:4642 config/mips/mips.c:4644
+#: config/mips/mips.c:4720
#, gcc-internal-format
msgid "unsupported combination: %s"
msgstr ""
-#: config/mips/mips.c:4578
+#: config/mips/mips.c:4715
#, gcc-internal-format
msgid ""
"generation of Branch Likely instructions enabled, but not supported by "
"architecture"
msgstr ""
-#: config/mips/mips.c:4595
+#: config/mips/mips.c:4732
#, gcc-internal-format
msgid "-G is incompatible with PIC code which is the default"
msgstr ""
-#: config/mips/mips.c:4662
+#: config/mips/mips.c:4799
#, gcc-internal-format
msgid "-mips3d requires -mpaired-single"
msgstr ""
-#: config/mips/mips.c:4671
+#: config/mips/mips.c:4808
#, gcc-internal-format
msgid "-mips3d/-mpaired-single must be used with -mfp64 -mhard-float"
msgstr ""
-#: config/mips/mips.c:4676
+#: config/mips/mips.c:4813
#, gcc-internal-format
msgid "-mips3d/-mpaired-single must be used with -mips64"
msgstr ""
-#: config/mips/mips.c:5177
+#: config/mips/mips.c:4816
+#, gcc-internal-format
+msgid "-mips16 and -mdsp cannot be used together"
+msgstr ""
+
+#: config/mips/mips.c:5327
#, gcc-internal-format
msgid "internal error: %%) found without a %%( in assembler pattern"
msgstr ""
-#: config/mips/mips.c:5191
+#: config/mips/mips.c:5341
#, gcc-internal-format
msgid "internal error: %%] found without a %%[ in assembler pattern"
msgstr ""
-#: config/mips/mips.c:5204
+#: config/mips/mips.c:5354
#, gcc-internal-format
msgid "internal error: %%> found without a %%< in assembler pattern"
msgstr ""
-#: config/mips/mips.c:5217
+#: config/mips/mips.c:5367
#, gcc-internal-format
msgid "internal error: %%} found without a %%{ in assembler pattern"
msgstr ""
-#: config/mips/mips.c:5231
+#: config/mips/mips.c:5381
#, gcc-internal-format
msgid "PRINT_OPERAND: unknown punctuation '%c'"
msgstr ""
-#: config/mips/mips.c:7953
+#: config/mips/mips.c:8144
#, gcc-internal-format
msgid "cannot handle inconsistent calls to %qs"
msgstr ""
-#: config/mips/mips.c:9352
+#: config/mips/mips.c:9543
#, gcc-internal-format
msgid "the cpu name must be lower case"
msgstr ""
+#: config/mips/mips.c:10209
+#, gcc-internal-format
+msgid "invalid argument to builtin function"
+msgstr ""
+
#. Output assembler code to FILE to increment profiler label # LABELNO
#. for profiling a function entry.
-#: config/mips/mips.h:2043
+#: config/mips/mips.h:2106
#, gcc-internal-format
msgid "mips16 function profiling"
msgstr ""
@@ -16242,12 +21046,12 @@ msgstr ""
#: config/mmix/mmix.c:1894
#, gcc-internal-format
-msgid "stack frame not a multiple of 8 bytes: %d"
+msgid "stack frame not a multiple of 8 bytes: %wd"
msgstr ""
#: config/mmix/mmix.c:2130
#, gcc-internal-format
-msgid "stack frame not a multiple of octabyte: %d"
+msgid "stack frame not a multiple of octabyte: %wd"
msgstr ""
#: config/mmix/mmix.c:2470 config/mmix/mmix.c:2534
@@ -16255,27 +21059,32 @@ msgstr ""
msgid "MMIX Internal: %s is not a shiftable int"
msgstr ""
-#: config/pa/pa.c:452
+#: config/ms1/ms1.c:301
+#, gcc-internal-format
+msgid "info pointer NULL"
+msgstr ""
+
+#: config/pa/pa.c:459
#, gcc-internal-format
-msgid "PIC code generation is not supported in the portable runtime model\n"
+msgid "PIC code generation is not supported in the portable runtime model"
msgstr ""
-#: config/pa/pa.c:457
+#: config/pa/pa.c:464
#, gcc-internal-format
-msgid "PIC code generation is not compatible with fast indirect calls\n"
+msgid "PIC code generation is not compatible with fast indirect calls"
msgstr ""
-#: config/pa/pa.c:462
+#: config/pa/pa.c:469
#, gcc-internal-format
msgid "-g is only supported when using GAS on this processor,"
msgstr ""
-#: config/pa/pa.c:463
+#: config/pa/pa.c:470
#, gcc-internal-format
msgid "-g option disabled"
msgstr ""
-#: config/pa/pa.c:7840
+#: config/pa/pa.c:7982
#, gcc-internal-format
msgid ""
"alignment (%u) for %s exceeds maximum alignment for global common data. "
@@ -16316,238 +21125,238 @@ msgstr ""
#. rs6000_default_long_calls is set to the value of TOGGLE, changing
#. whether or not new function declarations receive a longcall
#. attribute by default.
-#: config/rs6000/rs6000-c.c:55
+#: config/rs6000/rs6000-c.c:53
#, gcc-internal-format
msgid "ignoring malformed #pragma longcall"
msgstr ""
-#: config/rs6000/rs6000-c.c:68
+#: config/rs6000/rs6000-c.c:66
#, gcc-internal-format
msgid "missing open paren"
msgstr ""
-#: config/rs6000/rs6000-c.c:70
+#: config/rs6000/rs6000-c.c:68
#, gcc-internal-format
msgid "missing number"
msgstr ""
-#: config/rs6000/rs6000-c.c:72
+#: config/rs6000/rs6000-c.c:70
#, gcc-internal-format
msgid "missing close paren"
msgstr ""
-#: config/rs6000/rs6000-c.c:75
+#: config/rs6000/rs6000-c.c:73
#, gcc-internal-format
msgid "number must be 0 or 1"
msgstr ""
-#: config/rs6000/rs6000-c.c:78
+#: config/rs6000/rs6000-c.c:76
#, gcc-internal-format
msgid "junk at end of #pragma longcall"
msgstr ""
-#: config/rs6000/rs6000-c.c:2524
+#: config/rs6000/rs6000-c.c:2520
#, gcc-internal-format
msgid "passing arg %d of %qE discards qualifiers frompointer target type"
msgstr ""
-#: config/rs6000/rs6000-c.c:2567
+#: config/rs6000/rs6000-c.c:2563
#, gcc-internal-format
msgid "invalid parameter combination for AltiVec intrinsic"
msgstr ""
-#: config/rs6000/rs6000.c:1227
+#: config/rs6000/rs6000.c:1246
#, gcc-internal-format
msgid "-mmultiple is not supported on little endian systems"
msgstr ""
-#: config/rs6000/rs6000.c:1234
+#: config/rs6000/rs6000.c:1253
#, gcc-internal-format
msgid "-mstring is not supported on little endian systems"
msgstr ""
-#: config/rs6000/rs6000.c:1248
+#: config/rs6000/rs6000.c:1267
#, gcc-internal-format
msgid "unknown -mdebug-%s switch"
msgstr ""
-#: config/rs6000/rs6000.c:1260
+#: config/rs6000/rs6000.c:1279
#, gcc-internal-format
msgid ""
"unknown -mtraceback arg %qs; expecting %<full%>, %<partial%> or %<none%>"
msgstr ""
-#: config/rs6000/rs6000.c:1301
+#: config/rs6000/rs6000.c:1320
#, gcc-internal-format
msgid "AltiVec and E500 instructions cannot coexist"
msgstr ""
-#: config/rs6000/rs6000.c:1530
+#: config/rs6000/rs6000.c:1549
#, gcc-internal-format
msgid "unknown -m%s= option specified: '%s'"
msgstr ""
-#: config/rs6000/rs6000.c:1732
+#: config/rs6000/rs6000.c:1751
#, gcc-internal-format
msgid "not configured for ABI: '%s'"
msgstr ""
-#: config/rs6000/rs6000.c:1742
+#: config/rs6000/rs6000.c:1761
#, gcc-internal-format
msgid "Using darwin64 ABI"
msgstr ""
-#: config/rs6000/rs6000.c:1747
+#: config/rs6000/rs6000.c:1766
#, gcc-internal-format
msgid "Using old darwin ABI"
msgstr ""
-#: config/rs6000/rs6000.c:1752
+#: config/rs6000/rs6000.c:1771
#, gcc-internal-format
msgid "unknown ABI specified: '%s'"
msgstr ""
-#: config/rs6000/rs6000.c:1779
+#: config/rs6000/rs6000.c:1798
#, gcc-internal-format
msgid "invalid option for -mfloat-gprs: '%s'"
msgstr ""
-#: config/rs6000/rs6000.c:1789
+#: config/rs6000/rs6000.c:1808
#, gcc-internal-format
msgid "Unknown switch -mlong-double-%s"
msgstr ""
-#: config/rs6000/rs6000.c:1810
+#: config/rs6000/rs6000.c:1829
#, gcc-internal-format
msgid ""
"-malign-power is not supported for 64-bit Darwin; it is incompatible with "
"the installed C and C++ libraries"
msgstr ""
-#: config/rs6000/rs6000.c:1818
+#: config/rs6000/rs6000.c:1837
#, gcc-internal-format
msgid "unknown -malign-XXXXX option specified: '%s'"
msgstr ""
-#: config/rs6000/rs6000.c:3981
+#: config/rs6000/rs6000.c:4131
#, gcc-internal-format
msgid ""
"GCC vector returned by reference: non-standard ABI extension with no "
"compatibility guarantee"
msgstr ""
-#: config/rs6000/rs6000.c:4054
+#: config/rs6000/rs6000.c:4204
#, gcc-internal-format
msgid ""
-"Cannot return value in vector register because altivec instructions are "
-"disabled, use -maltivec to enable them."
+"cannot return value in vector register because altivec instructions are "
+"disabled, use -maltivec to enable them"
msgstr ""
-#: config/rs6000/rs6000.c:4300
+#: config/rs6000/rs6000.c:4450
#, gcc-internal-format
msgid ""
-"Cannot pass argument in vector register because altivec instructions are "
-"disabled, use -maltivec to enable them."
+"cannot pass argument in vector register because altivec instructions are "
+"disabled, use -maltivec to enable them"
msgstr ""
-#: config/rs6000/rs6000.c:5152
+#: config/rs6000/rs6000.c:5303
#, gcc-internal-format
msgid ""
"GCC vector passed by reference: non-standard ABI extension with no "
"compatibility guarantee"
msgstr ""
-#: config/rs6000/rs6000.c:6260
+#: config/rs6000/rs6000.c:6474
#, gcc-internal-format
msgid "argument 1 must be a 5-bit signed literal"
msgstr ""
-#: config/rs6000/rs6000.c:6363 config/rs6000/rs6000.c:7030
+#: config/rs6000/rs6000.c:6577 config/rs6000/rs6000.c:7371
#, gcc-internal-format
msgid "argument 2 must be a 5-bit unsigned literal"
msgstr ""
-#: config/rs6000/rs6000.c:6403
+#: config/rs6000/rs6000.c:6617
#, gcc-internal-format
msgid "argument 1 of __builtin_altivec_predicate must be a constant"
msgstr ""
-#: config/rs6000/rs6000.c:6456
+#: config/rs6000/rs6000.c:6670
#, gcc-internal-format
msgid "argument 1 of __builtin_altivec_predicate is out of range"
msgstr ""
-#: config/rs6000/rs6000.c:6618
+#: config/rs6000/rs6000.c:6832
#, gcc-internal-format
msgid "argument 3 must be a 4-bit unsigned literal"
msgstr ""
-#: config/rs6000/rs6000.c:6790
+#: config/rs6000/rs6000.c:7004
#, gcc-internal-format
msgid "argument to %qs must be a 2-bit unsigned literal"
msgstr ""
-#: config/rs6000/rs6000.c:6829
+#: config/rs6000/rs6000.c:7148
#, gcc-internal-format
-msgid "unresolved overload for Altivec builtin %qE"
+msgid "unresolved overload for Altivec builtin %qF"
msgstr ""
-#: config/rs6000/rs6000.c:6911
+#: config/rs6000/rs6000.c:7230
#, gcc-internal-format
msgid "argument to dss must be a 2-bit unsigned literal"
msgstr ""
-#: config/rs6000/rs6000.c:7150
+#: config/rs6000/rs6000.c:7491
#, gcc-internal-format
msgid "argument 1 of __builtin_spe_predicate must be a constant"
msgstr ""
-#: config/rs6000/rs6000.c:7222
+#: config/rs6000/rs6000.c:7563
#, gcc-internal-format
msgid "argument 1 of __builtin_spe_predicate is out of range"
msgstr ""
-#: config/rs6000/rs6000.c:12918
+#: config/rs6000/rs6000.c:13509
#, gcc-internal-format
msgid "stack frame too large"
msgstr ""
-#: config/rs6000/rs6000.c:15478
+#: config/rs6000/rs6000.c:16069
#, gcc-internal-format
msgid "no profiling of 64-bit code for this ABI"
msgstr ""
-#: config/rs6000/rs6000.c:16584
+#: config/rs6000/rs6000.c:17178
#, gcc-internal-format
msgid "use of %<long%> in AltiVec types is invalid for 64-bit code"
msgstr ""
-#: config/rs6000/rs6000.c:16586
+#: config/rs6000/rs6000.c:17180
#, gcc-internal-format
msgid "use of %<long%> in AltiVec types is deprecated; use %<int%>"
msgstr ""
-#: config/rs6000/rs6000.c:16590
+#: config/rs6000/rs6000.c:17184
#, gcc-internal-format
msgid "use of %<long long%> in AltiVec types is invalid"
msgstr ""
-#: config/rs6000/rs6000.c:16592
+#: config/rs6000/rs6000.c:17186
#, gcc-internal-format
msgid "use of %<double%> in AltiVec types is invalid"
msgstr ""
-#: config/rs6000/rs6000.c:16594
+#: config/rs6000/rs6000.c:17188
#, gcc-internal-format
msgid "use of %<long double%> in AltiVec types is invalid"
msgstr ""
-#: config/rs6000/rs6000.c:16596
+#: config/rs6000/rs6000.c:17190
#, gcc-internal-format
msgid "use of boolean types in AltiVec types is invalid"
msgstr ""
-#: config/rs6000/rs6000.c:16598
+#: config/rs6000/rs6000.c:17192
#, gcc-internal-format
msgid "use of %<complex%> in AltiVec types is invalid"
msgstr ""
@@ -16611,7 +21420,7 @@ msgstr ""
#. Number of bytes into the frame return addresses can be found. See
#. rs6000_stack_info in rs6000.c for more information on how the different
#. abi's store the return address.
-#: config/rs6000/rs6000.h:1592
+#: config/rs6000/rs6000.h:1581
#, gcc-internal-format
msgid "RETURN_ADDRESS_OFFSET not supported"
msgstr ""
@@ -16679,151 +21488,123 @@ msgstr ""
msgid "-m%s not supported in this configuration"
msgstr ""
-#: config/s390/s390.c:1160
+#: config/s390/s390.c:1314
#, gcc-internal-format
msgid "stack guard value must be an exact power of 2"
msgstr ""
-#: config/s390/s390.c:1167
+#: config/s390/s390.c:1321
#, gcc-internal-format
msgid "stack size must be an exact power of 2"
msgstr ""
-#: config/s390/s390.c:1215
+#: config/s390/s390.c:1366
#, gcc-internal-format
-msgid "z/Architecture mode not supported on %s."
+msgid "z/Architecture mode not supported on %s"
msgstr ""
-#: config/s390/s390.c:1217
+#: config/s390/s390.c:1368
#, gcc-internal-format
-msgid "64-bit ABI not supported in ESA/390 mode."
+msgid "64-bit ABI not supported in ESA/390 mode"
msgstr ""
-#: config/s390/s390.c:1228
+#: config/s390/s390.c:1379
#, gcc-internal-format
msgid ""
-"-mbackchain -mpacked-stack -mhard-float are not supported in combination."
+"-mbackchain -mpacked-stack -mhard-float are not supported in combination"
msgstr ""
-#: config/s390/s390.c:1234
+#: config/s390/s390.c:1385
#, gcc-internal-format
msgid "-mstack-size implies use of -mstack-guard"
msgstr ""
-#: config/s390/s390.c:1236
+#: config/s390/s390.c:1387
#, gcc-internal-format
msgid "stack size must be greater than the stack guard value"
msgstr ""
-#: config/s390/s390.c:1239
+#: config/s390/s390.c:1390
#, gcc-internal-format
msgid "-mstack-guard implies use of -mstack-size"
msgstr ""
-#: config/s390/s390.c:5804
+#: config/s390/s390.c:6077
#, gcc-internal-format
-msgid "Total size of local variables exceeds architecture limit."
+msgid "total size of local variables exceeds architecture limit"
msgstr ""
-#: config/s390/s390.c:6347
+#: config/s390/s390.c:6623
#, gcc-internal-format
msgid "frame size of %qs is "
msgstr ""
-#: config/s390/s390.c:6347
+#: config/s390/s390.c:6623
#, gcc-internal-format
msgid " bytes"
msgstr ""
-#: config/s390/s390.c:6351
+#: config/s390/s390.c:6627
#, gcc-internal-format
msgid "%qs uses dynamic stack allocation"
msgstr ""
-#: config/sh/sh.c:6420
+#: config/sh/sh.c:6473
#, gcc-internal-format
msgid "__builtin_saveregs not supported by this subtarget"
msgstr ""
-#: config/sh/sh.c:7407
+#: config/sh/sh.c:7522
#, gcc-internal-format
msgid "attribute interrupt_handler is not compatible with -m5-compact"
msgstr ""
#. The sp_switch attribute only has meaning for interrupt functions.
#. The trap_exit attribute only has meaning for interrupt functions.
-#: config/sh/sh.c:7429 config/sh/sh.c:7464
+#: config/sh/sh.c:7544 config/sh/sh.c:7579
#, gcc-internal-format
msgid "%qs attribute only applies to interrupt functions"
msgstr ""
#. The argument must be a constant string.
-#: config/sh/sh.c:7436
+#: config/sh/sh.c:7551
#, gcc-internal-format
msgid "%qs attribute argument not a string constant"
msgstr ""
#. The argument must be a constant integer.
-#: config/sh/sh.c:7471
+#: config/sh/sh.c:7586
#, gcc-internal-format
msgid "%qs attribute argument not an integer constant"
msgstr ""
-#: config/sh/sh.c:9490
+#: config/sh/sh.c:9602
#, gcc-internal-format
msgid "r0 needs to be available as a call-clobbered register"
msgstr ""
-#: config/sh/sh.c:9511
+#: config/sh/sh.c:9623
#, gcc-internal-format
msgid "Need a second call-clobbered general purpose register"
msgstr ""
-#: config/sh/sh.c:9519
+#: config/sh/sh.c:9631
#, gcc-internal-format
msgid "Need a call-clobbered target register"
msgstr ""
-#: config/sh/symbian.c:147
-#, gcc-internal-format
-msgid ""
-"%H function '%D' is defined after prior declaration as dllimport: attribute "
-"ignored"
-msgstr ""
-
-#: config/sh/symbian.c:159
-#, gcc-internal-format
-msgid "%Hinline function '%D' is declared as dllimport: attribute ignored."
-msgstr ""
-
-#: config/sh/symbian.c:173
-#, gcc-internal-format
-msgid "%Hdefinition of static data member '%D' of dllimport'd class."
-msgstr ""
-
#: config/sh/symbian.c:280
#, gcc-internal-format
msgid ""
-"%Hfailure in redeclaration of '%D': dllimport'd symbol lacks external "
-"linkage."
+"failure in redeclaration of %q+D: dllimport'd symbol lacks external linkage"
msgstr ""
#: config/sh/symbian.c:326
#, gcc-internal-format
-msgid "%H%s '%D' %s after being referenced with dllimport linkage."
-msgstr ""
-
-#: config/sh/symbian.c:430
-#, gcc-internal-format
-msgid "%Hvariable %qD definition is marked dllimport."
+msgid "%s %q+D %s after being referenced with dllimport linkage"
msgstr ""
-#: config/sh/symbian.c:505
-#, gcc-internal-format
-msgid "%Hexternal linkage required for symbol '%D' because of '%s' attribute."
-msgstr ""
-
-#: config/sh/symbian.c:886 cp/tree.c:2287
+#: config/sh/symbian.c:892 cp/tree.c:2313
#, gcc-internal-format
msgid "lang_* check: failed in %s, at %s:%d"
msgstr ""
@@ -16840,7 +21621,7 @@ msgstr ""
#. -fprofile-arcs needs a working libgcov . In unified tree configurations with newlib, this requires to configure with --with-newlib --with-headers. But there is no way to check here we have a working libgcov, so just assume that we have.
#: config/sh/sh.h:607
#, gcc-internal-format
-msgid "Profiling is still experimental for this target."
+msgid "profiling is still experimental for this target"
msgstr ""
#: config/sparc/sparc.c:635
@@ -16860,42 +21641,42 @@ msgstr ""
#: config/stormy16/stormy16.c:497
#, gcc-internal-format
-msgid "Constant halfword load operand out of range."
+msgid "constant halfword load operand out of range"
msgstr ""
#: config/stormy16/stormy16.c:507
#, gcc-internal-format
-msgid "Constant arithmetic operand out of range."
+msgid "constant arithmetic operand out of range"
msgstr ""
-#: config/stormy16/stormy16.c:1110
+#: config/stormy16/stormy16.c:1108
#, gcc-internal-format
-msgid "Local variable memory requirements exceed capacity."
+msgid "local variable memory requirements exceed capacity"
msgstr ""
-#: config/stormy16/stormy16.c:1276
+#: config/stormy16/stormy16.c:1274
#, gcc-internal-format
msgid "function_profiler support"
msgstr ""
-#: config/stormy16/stormy16.c:1365
+#: config/stormy16/stormy16.c:1363
#, gcc-internal-format
msgid "cannot use va_start in interrupt function"
msgstr ""
-#: config/stormy16/stormy16.c:1933
+#: config/stormy16/stormy16.c:1895
#, gcc-internal-format
msgid "switch statement of size %lu entries too large"
msgstr ""
-#: config/stormy16/stormy16.c:2301
+#: config/stormy16/stormy16.c:2263
#, gcc-internal-format
msgid "%<__BELOW100__%> attribute only applies to variables"
msgstr ""
-#: config/stormy16/stormy16.c:2308
+#: config/stormy16/stormy16.c:2270
#, gcc-internal-format
-msgid "__BELOW100__ attribute not allowed with auto storage class."
+msgid "__BELOW100__ attribute not allowed with auto storage class"
msgstr ""
#: config/v850/v850-c.c:67
@@ -16903,67 +21684,67 @@ msgstr ""
msgid "#pragma GHS endXXXX found without previous startXXX"
msgstr ""
-#: config/v850/v850-c.c:69
+#: config/v850/v850-c.c:70
#, gcc-internal-format
msgid "#pragma GHS endXXX does not match previous startXXX"
msgstr ""
-#: config/v850/v850-c.c:94
+#: config/v850/v850-c.c:96
#, gcc-internal-format
msgid "cannot set interrupt attribute: no current function"
msgstr ""
-#: config/v850/v850-c.c:102
+#: config/v850/v850-c.c:104
#, gcc-internal-format
msgid "cannot set interrupt attribute: no such identifier"
msgstr ""
-#: config/v850/v850-c.c:147
+#: config/v850/v850-c.c:149
#, gcc-internal-format
msgid "junk at end of #pragma ghs section"
msgstr ""
-#: config/v850/v850-c.c:164
+#: config/v850/v850-c.c:166
#, gcc-internal-format
msgid "unrecognized section name \"%s\""
msgstr ""
-#: config/v850/v850-c.c:179
+#: config/v850/v850-c.c:181
#, gcc-internal-format
msgid "malformed #pragma ghs section"
msgstr ""
-#: config/v850/v850-c.c:198
+#: config/v850/v850-c.c:200
#, gcc-internal-format
msgid "junk at end of #pragma ghs interrupt"
msgstr ""
-#: config/v850/v850-c.c:209
+#: config/v850/v850-c.c:211
#, gcc-internal-format
msgid "junk at end of #pragma ghs starttda"
msgstr ""
-#: config/v850/v850-c.c:220
+#: config/v850/v850-c.c:222
#, gcc-internal-format
msgid "junk at end of #pragma ghs startsda"
msgstr ""
-#: config/v850/v850-c.c:231
+#: config/v850/v850-c.c:233
#, gcc-internal-format
msgid "junk at end of #pragma ghs startzda"
msgstr ""
-#: config/v850/v850-c.c:242
+#: config/v850/v850-c.c:244
#, gcc-internal-format
msgid "junk at end of #pragma ghs endtda"
msgstr ""
-#: config/v850/v850-c.c:253
+#: config/v850/v850-c.c:255
#, gcc-internal-format
msgid "junk at end of #pragma ghs endsda"
msgstr ""
-#: config/v850/v850-c.c:264
+#: config/v850/v850-c.c:266
#, gcc-internal-format
msgid "junk at end of #pragma ghs endzda"
msgstr ""
@@ -16973,49 +21754,49 @@ msgstr ""
msgid "value passed to %<-m%s%> is too large"
msgstr ""
-#: config/v850/v850.c:2140
+#: config/v850/v850.c:2147
#, gcc-internal-format
msgid "%Jdata area attributes cannot be specified for local variables"
msgstr ""
-#: config/v850/v850.c:2151
+#: config/v850/v850.c:2158
#, gcc-internal-format
-msgid "%Jdata area of '%D' conflicts with previous declaration"
+msgid "data area of %q+D conflicts with previous declaration"
msgstr ""
-#: config/v850/v850.c:2281
+#: config/v850/v850.c:2288
#, gcc-internal-format
-msgid "bogus JR construction: %d\n"
+msgid "bogus JR construction: %d"
msgstr ""
-#: config/v850/v850.c:2299 config/v850/v850.c:2408
+#: config/v850/v850.c:2306 config/v850/v850.c:2415
#, gcc-internal-format
msgid "bad amount of stack space removal: %d"
msgstr ""
-#: config/v850/v850.c:2388
+#: config/v850/v850.c:2395
#, gcc-internal-format
msgid "bogus JARL construction: %d\n"
msgstr ""
-#: config/v850/v850.c:2687
+#: config/v850/v850.c:2694
#, gcc-internal-format
-msgid "Bogus DISPOSE construction: %d\n"
+msgid "bogus DISPOSE construction: %d"
msgstr ""
-#: config/v850/v850.c:2706
+#: config/v850/v850.c:2713
#, gcc-internal-format
-msgid "Too much stack space to dispose of: %d"
+msgid "too much stack space to dispose of: %d"
msgstr ""
-#: config/v850/v850.c:2808
+#: config/v850/v850.c:2815
#, gcc-internal-format
-msgid "Bogus PREPEARE construction: %d\n"
+msgid "bogus PREPEARE construction: %d"
msgstr ""
-#: config/v850/v850.c:2827
+#: config/v850/v850.c:2834
#, gcc-internal-format
-msgid "Too much stack space to prepare: %d"
+msgid "too much stack space to prepare: %d"
msgstr ""
#: config/xtensa/xtensa.c:1505
@@ -17048,221 +21829,221 @@ msgstr ""
msgid "%<-gnat%> misspelled as %<-gant%>"
msgstr ""
-#: cp/call.c:288
+#: cp/call.c:289
#, gcc-internal-format
msgid "unable to call pointer to member function here"
msgstr ""
-#: cp/call.c:2376
+#: cp/call.c:2392
#, gcc-internal-format
msgid "%s %D(%T, %T, %T) <built-in>"
msgstr ""
-#: cp/call.c:2381
+#: cp/call.c:2397
#, gcc-internal-format
msgid "%s %D(%T, %T) <built-in>"
msgstr ""
-#: cp/call.c:2385
+#: cp/call.c:2401
#, gcc-internal-format
msgid "%s %D(%T) <built-in>"
msgstr ""
-#: cp/call.c:2389
+#: cp/call.c:2405
#, gcc-internal-format
msgid "%s %T <conversion>"
msgstr ""
-#: cp/call.c:2391
+#: cp/call.c:2407
#, gcc-internal-format
-msgid "%J%s %+#D <near match>"
+msgid "%s %+#D <near match>"
msgstr ""
-#: cp/call.c:2393
+#: cp/call.c:2409 cp/pt.c:1306
#, gcc-internal-format
-msgid "%J%s %+#D"
+msgid "%s %+#D"
msgstr ""
-#: cp/call.c:2614
+#: cp/call.c:2631
#, gcc-internal-format
msgid "conversion from %qT to %qT is ambiguous"
msgstr ""
-#: cp/call.c:2767 cp/call.c:2825
+#: cp/call.c:2782 cp/call.c:2800 cp/call.c:2858
#, gcc-internal-format
msgid "no matching function for call to %<%D(%A)%>"
msgstr ""
-#: cp/call.c:2770 cp/call.c:2828
+#: cp/call.c:2803 cp/call.c:2861
#, gcc-internal-format
msgid "call of overloaded %<%D(%A)%> is ambiguous"
msgstr ""
#. It's no good looking for an overloaded operator() on a
#. pointer-to-member-function.
-#: cp/call.c:2896
+#: cp/call.c:2929
#, gcc-internal-format
msgid ""
"pointer-to-member function %E cannot be called without an object; consider "
"using .* or ->*"
msgstr ""
-#: cp/call.c:2965
+#: cp/call.c:2998
#, gcc-internal-format
msgid "no match for call to %<(%T) (%A)%>"
msgstr ""
-#: cp/call.c:2974
+#: cp/call.c:3007
#, gcc-internal-format
msgid "call of %<(%T) (%A)%> is ambiguous"
msgstr ""
-#: cp/call.c:3012
+#: cp/call.c:3045
#, gcc-internal-format
msgid "%s for ternary %<operator?:%> in %<%E ? %E : %E%>"
msgstr ""
-#: cp/call.c:3018
+#: cp/call.c:3051
#, gcc-internal-format
msgid "%s for %<operator%s%> in %<%E%s%>"
msgstr ""
-#: cp/call.c:3022
+#: cp/call.c:3055
#, gcc-internal-format
msgid "%s for %<operator[]%> in %<%E[%E]%>"
msgstr ""
-#: cp/call.c:3027
+#: cp/call.c:3060
#, gcc-internal-format
msgid "%s for %qs in %<%s %E%>"
msgstr ""
-#: cp/call.c:3032
+#: cp/call.c:3065
#, gcc-internal-format
msgid "%s for %<operator%s%> in %<%E %s %E%>"
msgstr ""
-#: cp/call.c:3035
+#: cp/call.c:3068
#, gcc-internal-format
msgid "%s for %<operator%s%> in %<%s%E%>"
msgstr ""
-#: cp/call.c:3125
+#: cp/call.c:3160
#, gcc-internal-format
msgid "ISO C++ forbids omitting the middle term of a ?: expression"
msgstr ""
-#: cp/call.c:3202
+#: cp/call.c:3237
#, gcc-internal-format
msgid "%qE has type %<void%> and is not a throw-expression"
msgstr ""
-#: cp/call.c:3241 cp/call.c:3451
+#: cp/call.c:3276 cp/call.c:3486
#, gcc-internal-format
msgid "operands to ?: have different types"
msgstr ""
-#: cp/call.c:3405
+#: cp/call.c:3440
#, gcc-internal-format
msgid "enumeral mismatch in conditional expression: %qT vs %qT"
msgstr ""
-#: cp/call.c:3412
+#: cp/call.c:3447
#, gcc-internal-format
msgid "enumeral and non-enumeral type in conditional expression"
msgstr ""
-#: cp/call.c:3706
+#: cp/call.c:3741
#, gcc-internal-format
msgid "no %<%D(int)%> declared for postfix %qs, trying prefix operator instead"
msgstr ""
-#: cp/call.c:3779
+#: cp/call.c:3814
#, gcc-internal-format
msgid "comparison between %q#T and %q#T"
msgstr ""
-#: cp/call.c:4038
+#: cp/call.c:4073
#, gcc-internal-format
msgid "no suitable %<operator %s%> for %qT"
msgstr ""
-#: cp/call.c:4055
+#: cp/call.c:4090
#, gcc-internal-format
msgid "%q+#D is private"
msgstr ""
-#: cp/call.c:4057
+#: cp/call.c:4092
#, gcc-internal-format
msgid "%q+#D is protected"
msgstr ""
-#: cp/call.c:4059
+#: cp/call.c:4094
#, gcc-internal-format
msgid "%q+#D is inaccessible"
msgstr ""
-#: cp/call.c:4060
+#: cp/call.c:4095
#, gcc-internal-format
msgid "within this context"
msgstr ""
-#: cp/call.c:4149 cp/cvt.c:264
+#: cp/call.c:4184 cp/cvt.c:264
#, gcc-internal-format
msgid "invalid conversion from %qT to %qT"
msgstr ""
-#: cp/call.c:4151
+#: cp/call.c:4186
#, gcc-internal-format
msgid " initializing argument %P of %qD"
msgstr ""
-#: cp/call.c:4163
+#: cp/call.c:4198
#, gcc-internal-format
msgid "passing NULL to non-pointer argument %P of %qD"
msgstr ""
-#: cp/call.c:4166
+#: cp/call.c:4201
#, gcc-internal-format
msgid "converting to non-pointer type %qT from NULL"
msgstr ""
-#: cp/call.c:4174
+#: cp/call.c:4209
#, gcc-internal-format
msgid "passing %qT for argument %P to %qD"
msgstr ""
-#: cp/call.c:4177
+#: cp/call.c:4212
#, gcc-internal-format
msgid "converting to %qT from %qT"
msgstr ""
-#: cp/call.c:4186
+#: cp/call.c:4221
#, gcc-internal-format
msgid "passing negative value %qE for argument %P to %qD"
msgstr ""
-#: cp/call.c:4189
+#: cp/call.c:4224
#, gcc-internal-format
msgid "converting negative value %qE to %qT"
msgstr ""
-#: cp/call.c:4331
+#: cp/call.c:4366
#, gcc-internal-format
msgid "cannot bind bitfield %qE to %qT"
msgstr ""
-#: cp/call.c:4334 cp/call.c:4350
+#: cp/call.c:4369 cp/call.c:4385
#, gcc-internal-format
msgid "cannot bind packed field %qE to %qT"
msgstr ""
-#: cp/call.c:4337
+#: cp/call.c:4372
#, gcc-internal-format
msgid "cannot bind rvalue %qE to %qT"
msgstr ""
-#: cp/call.c:4446
+#: cp/call.c:4481
#, gcc-internal-format
msgid ""
"cannot pass objects of non-POD type %q#T through %<...%>; call will abort at "
@@ -17270,369 +22051,374 @@ msgid ""
msgstr ""
#. Undefined behavior [expr.call] 5.2.2/7.
-#: cp/call.c:4472
+#: cp/call.c:4507
#, gcc-internal-format
msgid ""
"cannot receive objects of non-POD type %q#T through %<...%>; call will abort "
"at runtime"
msgstr ""
-#: cp/call.c:4515
+#: cp/call.c:4550
#, gcc-internal-format
msgid "the default argument for parameter %d of %qD has not yet been parsed"
msgstr ""
-#: cp/call.c:4720
+#: cp/call.c:4629
+#, gcc-internal-format
+msgid "argument of function call might be a candidate for a format attribute"
+msgstr ""
+
+#: cp/call.c:4766
#, gcc-internal-format
msgid "passing %qT as %<this%> argument of %q#D discards qualifiers"
msgstr ""
-#: cp/call.c:4739
+#: cp/call.c:4785
#, gcc-internal-format
msgid "%qT is not an accessible base of %qT"
msgstr ""
-#: cp/call.c:4989
+#: cp/call.c:5035
#, gcc-internal-format
msgid "could not find class$ field in java interface type %qT"
msgstr ""
-#: cp/call.c:5249
+#: cp/call.c:5295
#, gcc-internal-format
msgid "call to non-function %qD"
msgstr ""
-#: cp/call.c:5274
+#: cp/call.c:5320
#, gcc-internal-format
msgid "request for member %qD in %qE, which is of non-aggregate type %qT"
msgstr ""
-#: cp/call.c:5353
+#: cp/call.c:5399
#, gcc-internal-format
msgid "no matching function for call to %<%T::%s(%A)%#V%>"
msgstr ""
-#: cp/call.c:5371
+#: cp/call.c:5417
#, gcc-internal-format
msgid "call of overloaded %<%s(%A)%> is ambiguous"
msgstr ""
-#: cp/call.c:5395
+#: cp/call.c:5441
#, gcc-internal-format
msgid "cannot call member function %qD without object"
msgstr ""
-#: cp/call.c:6000
+#: cp/call.c:6046
#, gcc-internal-format
msgid "passing %qT chooses %qT over %qT"
msgstr ""
-#: cp/call.c:6002 cp/name-lookup.c:4170
+#: cp/call.c:6048 cp/name-lookup.c:4225
#, gcc-internal-format
msgid " in call to %qD"
msgstr ""
-#: cp/call.c:6059
+#: cp/call.c:6105
#, gcc-internal-format
msgid "choosing %qD over %qD"
msgstr ""
-#: cp/call.c:6060
+#: cp/call.c:6106
#, gcc-internal-format
msgid " for conversion from %qT to %qT"
msgstr ""
-#: cp/call.c:6062
+#: cp/call.c:6108
#, gcc-internal-format
msgid " because conversion sequence for the argument is better"
msgstr ""
-#: cp/call.c:6182
+#: cp/call.c:6228
#, gcc-internal-format
msgid ""
"ISO C++ says that these are ambiguous, even though the worst conversion for "
"the first is better than the worst conversion for the second:"
msgstr ""
-#: cp/call.c:6323
+#: cp/call.c:6372
#, gcc-internal-format
msgid "could not convert %qE to %qT"
msgstr ""
-#: cp/call.c:6454
+#: cp/call.c:6504
#, gcc-internal-format
msgid ""
"invalid initialization of non-const reference of type %qT from a temporary "
"of type %qT"
msgstr ""
-#: cp/call.c:6458
+#: cp/call.c:6508
#, gcc-internal-format
msgid ""
"invalid initialization of reference of type %qT from expression of type %qT"
msgstr ""
-#: cp/class.c:273
+#: cp/class.c:274
#, gcc-internal-format
msgid "cannot convert from base %qT to derived type %qT via virtual base %qT"
msgstr ""
-#: cp/class.c:929
+#: cp/class.c:931
#, gcc-internal-format
msgid "Java class %qT cannot have a destructor"
msgstr ""
-#: cp/class.c:931
+#: cp/class.c:933
#, gcc-internal-format
msgid "Java class %qT cannot have an implicit non-trivial destructor"
msgstr ""
-#: cp/class.c:1032
+#: cp/class.c:1034
#, gcc-internal-format
-msgid "repeated using declaration %qD"
+msgid "repeated using declaration %q+D"
msgstr ""
-#: cp/class.c:1034
+#: cp/class.c:1036
#, gcc-internal-format
-msgid "using declaration %qD conflicts with a previous using declaration"
+msgid "using declaration %q+D conflicts with a previous using declaration"
msgstr ""
-#: cp/class.c:1039
+#: cp/class.c:1041
#, gcc-internal-format
-msgid "%q#D cannot be overloaded"
+msgid "%q+#D cannot be overloaded"
msgstr ""
-#: cp/class.c:1040
+#: cp/class.c:1042
#, gcc-internal-format
-msgid "with %q#D"
+msgid "with %q+#D"
msgstr ""
-#: cp/class.c:1095
+#: cp/class.c:1097
#, gcc-internal-format
-msgid "conflicting access specifications for method %qD, ignored"
+msgid "conflicting access specifications for method %q+D, ignored"
msgstr ""
-#: cp/class.c:1098
+#: cp/class.c:1100
#, gcc-internal-format
msgid "conflicting access specifications for field %qE, ignored"
msgstr ""
-#: cp/class.c:1159 cp/class.c:1167
+#: cp/class.c:1161 cp/class.c:1169
#, gcc-internal-format
-msgid "%qD invalid in %q#T"
+msgid "%q+D invalid in %q#T"
msgstr ""
-#: cp/class.c:1160
+#: cp/class.c:1162
#, gcc-internal-format
-msgid " because of local method %q#D with same name"
+msgid " because of local method %q+#D with same name"
msgstr ""
-#: cp/class.c:1168
+#: cp/class.c:1170
#, gcc-internal-format
-msgid " because of local member %q#D with same name"
+msgid " because of local member %q+#D with same name"
msgstr ""
-#: cp/class.c:1210
+#: cp/class.c:1212
#, gcc-internal-format
msgid "base class %q#T has a non-virtual destructor"
msgstr ""
-#: cp/class.c:1524
+#: cp/class.c:1526
#, gcc-internal-format
msgid "all member functions in class %qT are private"
msgstr ""
-#: cp/class.c:1535
+#: cp/class.c:1537
#, gcc-internal-format
msgid "%q#T only defines a private destructor and has no friends"
msgstr ""
-#: cp/class.c:1575
+#: cp/class.c:1577
#, gcc-internal-format
msgid "%q#T only defines private constructors and has no friends"
msgstr ""
-#: cp/class.c:1908
+#: cp/class.c:1910
#, gcc-internal-format
msgid "no unique final overrider for %qD in %qT"
msgstr ""
#. Here we know it is a hider, and no overrider exists.
-#: cp/class.c:2386
+#: cp/class.c:2388
#, gcc-internal-format
-msgid "%qD was hidden"
+msgid "%q+D was hidden"
msgstr ""
-#: cp/class.c:2387
+#: cp/class.c:2389
#, gcc-internal-format
-msgid " by %qD"
+msgid " by %q+D"
msgstr ""
-#: cp/class.c:2428 cp/decl2.c:1088
+#: cp/class.c:2430 cp/decl2.c:1085
#, gcc-internal-format
-msgid "%q#D invalid; an anonymous union can only have non-static data members"
+msgid "%q+#D invalid; an anonymous union can only have non-static data members"
msgstr ""
-#: cp/class.c:2435 cp/decl2.c:1095
+#: cp/class.c:2436 cp/decl2.c:1091
#, gcc-internal-format
-msgid "private member %q#D in anonymous union"
+msgid "private member %q+#D in anonymous union"
msgstr ""
-#: cp/class.c:2438 cp/decl2.c:1097
+#: cp/class.c:2438 cp/decl2.c:1093
#, gcc-internal-format
-msgid "protected member %q#D in anonymous union"
+msgid "protected member %q+#D in anonymous union"
msgstr ""
-#: cp/class.c:2605
+#: cp/class.c:2604
#, gcc-internal-format
-msgid "bit-field %q#D with non-integral type"
+msgid "bit-field %q+#D with non-integral type"
msgstr ""
-#: cp/class.c:2622
+#: cp/class.c:2621
#, gcc-internal-format
-msgid "bit-field %qD width not an integer constant"
+msgid "bit-field %q+D width not an integer constant"
msgstr ""
-#: cp/class.c:2628
+#: cp/class.c:2626
#, gcc-internal-format
-msgid "negative width in bit-field %qD"
+msgid "negative width in bit-field %q+D"
msgstr ""
-#: cp/class.c:2633
+#: cp/class.c:2631
#, gcc-internal-format
-msgid "zero width for bit-field %qD"
+msgid "zero width for bit-field %q+D"
msgstr ""
-#: cp/class.c:2639
+#: cp/class.c:2637
#, gcc-internal-format
-msgid "width of %qD exceeds its type"
+msgid "width of %q+D exceeds its type"
msgstr ""
-#: cp/class.c:2648
+#: cp/class.c:2646
#, gcc-internal-format
-msgid "%qD is too small to hold all values of %q#T"
+msgid "%q+D is too small to hold all values of %q#T"
msgstr ""
-#: cp/class.c:2708
+#: cp/class.c:2705
#, gcc-internal-format
-msgid "member %q#D with constructor not allowed in union"
+msgid "member %q+#D with constructor not allowed in union"
msgstr ""
-#: cp/class.c:2711
+#: cp/class.c:2708
#, gcc-internal-format
-msgid "member %q#D with destructor not allowed in union"
+msgid "member %q+#D with destructor not allowed in union"
msgstr ""
-#: cp/class.c:2714
+#: cp/class.c:2710
#, gcc-internal-format
-msgid "member %q#D with copy assignment operator not allowed in union"
+msgid "member %q+#D with copy assignment operator not allowed in union"
msgstr ""
-#: cp/class.c:2737
+#: cp/class.c:2733
#, gcc-internal-format
msgid "multiple fields in union %qT initialized"
msgstr ""
-#: cp/class.c:2798
+#: cp/class.c:2795
#, gcc-internal-format
-msgid "ignoring packed attribute on unpacked non-POD field %q#D"
+msgid "ignoring packed attribute on unpacked non-POD field %q+#D"
msgstr ""
-#: cp/class.c:2858
+#: cp/class.c:2855
#, gcc-internal-format
-msgid "%qD may not be static because it is a member of a union"
+msgid "%q+D may not be static because it is a member of a union"
msgstr ""
-#: cp/class.c:2863
+#: cp/class.c:2860
#, gcc-internal-format
-msgid "%qD may not have reference type %qT because it is a member of a union"
+msgid "%q+D may not have reference type %qT because it is a member of a union"
msgstr ""
-#: cp/class.c:2872
+#: cp/class.c:2869
#, gcc-internal-format
-msgid "field %qD in local class cannot be static"
+msgid "field %q+D in local class cannot be static"
msgstr ""
-#: cp/class.c:2878
+#: cp/class.c:2875
#, gcc-internal-format
-msgid "field %qD invalidly declared function type"
+msgid "field %q+D invalidly declared function type"
msgstr ""
-#: cp/class.c:2884
+#: cp/class.c:2881
#, gcc-internal-format
-msgid "field %qD invalidly declared method type"
+msgid "field %q+D invalidly declared method type"
msgstr ""
-#: cp/class.c:2916
+#: cp/class.c:2913
#, gcc-internal-format
-msgid "non-static reference %q#D in class without a constructor"
+msgid "non-static reference %q+#D in class without a constructor"
msgstr ""
-#: cp/class.c:2963
+#: cp/class.c:2960
#, gcc-internal-format
-msgid "non-static const member %q#D in class without a constructor"
+msgid "non-static const member %q+#D in class without a constructor"
msgstr ""
-#: cp/class.c:2978
+#: cp/class.c:2975
#, gcc-internal-format
-msgid "field %q#D with same name as class"
+msgid "field %q+#D with same name as class"
msgstr ""
-#: cp/class.c:3011
+#: cp/class.c:3008
#, gcc-internal-format
msgid "%q#T has pointer data members"
msgstr ""
-#: cp/class.c:3015
+#: cp/class.c:3012
#, gcc-internal-format
msgid " but does not override %<%T(const %T&)%>"
msgstr ""
-#: cp/class.c:3017
+#: cp/class.c:3014
#, gcc-internal-format
msgid " or %<operator=(const %T&)%>"
msgstr ""
-#: cp/class.c:3020
+#: cp/class.c:3017
#, gcc-internal-format
msgid " but does not override %<operator=(const %T&)%>"
msgstr ""
-#: cp/class.c:3453
+#: cp/class.c:3450
#, gcc-internal-format
msgid ""
"offset of empty base %qT may not be ABI-compliant and maychange in a future "
"version of GCC"
msgstr ""
-#: cp/class.c:3565
+#: cp/class.c:3562
#, gcc-internal-format
msgid "class %qT will be considered nearly empty in a future version of GCC"
msgstr ""
-#: cp/class.c:3647
+#: cp/class.c:3644
#, gcc-internal-format
-msgid "initializer specified for non-virtual method %qD"
+msgid "initializer specified for non-virtual method %q+D"
msgstr ""
-#: cp/class.c:4310
+#: cp/class.c:4306
#, gcc-internal-format
msgid ""
"offset of virtual base %qT is not ABI-compliant and may change in a future "
"version of GCC"
msgstr ""
-#: cp/class.c:4409
+#: cp/class.c:4405
#, gcc-internal-format
msgid "direct base %qT inaccessible in %qT due to ambiguity"
msgstr ""
-#: cp/class.c:4421
+#: cp/class.c:4417
#, gcc-internal-format
msgid "virtual base %qT inaccessible in %qT due to ambiguity"
msgstr ""
-#: cp/class.c:4598
+#: cp/class.c:4594
#, gcc-internal-format
msgid ""
"size assigned to %qT may not be ABI-compliant and may change in a future "
@@ -17641,89 +22427,89 @@ msgstr ""
#. Versions of G++ before G++ 3.4 did not reset the
#. DECL_MODE.
-#: cp/class.c:4637
+#: cp/class.c:4633
#, gcc-internal-format
msgid ""
"the offset of %qD may not be ABI-compliant and may change in a future "
"version of GCC"
msgstr ""
-#: cp/class.c:4665
+#: cp/class.c:4661
#, gcc-internal-format
msgid ""
-"offset of %qD is not ABI-compliant and may change in a future version of GCC"
+"offset of %q+D is not ABI-compliant and may change in a future version of GCC"
msgstr ""
-#: cp/class.c:4675
+#: cp/class.c:4670
#, gcc-internal-format
msgid ""
-"%qD contains empty classes which may cause base classes to be placed at "
+"%q+D contains empty classes which may cause base classes to be placed at "
"different locations in a future version of GCC"
msgstr ""
-#: cp/class.c:4735
+#: cp/class.c:4729
#, gcc-internal-format
msgid ""
"layout of classes derived from empty class %qT may change in a future "
"version of GCC"
msgstr ""
-#: cp/class.c:4876 cp/parser.c:13060
+#: cp/class.c:4870 cp/parser.c:13057
#, gcc-internal-format
msgid "redefinition of %q#T"
msgstr ""
-#: cp/class.c:5026
+#: cp/class.c:5020
#, gcc-internal-format
msgid "%q#T has virtual functions but non-virtual destructor"
msgstr ""
-#: cp/class.c:5123
+#: cp/class.c:5117
#, gcc-internal-format
msgid "trying to finish struct, but kicked out due to previous parse errors"
msgstr ""
-#: cp/class.c:5539
+#: cp/class.c:5533
#, gcc-internal-format
msgid "language string %<\"%E\"%> not recognized"
msgstr ""
-#: cp/class.c:5625
+#: cp/class.c:5619
#, gcc-internal-format
msgid "cannot resolve overloaded function %qD based on conversion to type %qT"
msgstr ""
-#: cp/class.c:5750
+#: cp/class.c:5746
#, gcc-internal-format
msgid "no matches converting function %qD to type %q#T"
msgstr ""
-#: cp/class.c:5773
+#: cp/class.c:5769
#, gcc-internal-format
msgid "converting overloaded function %qD to type %q#T is ambiguous"
msgstr ""
-#: cp/class.c:5799
+#: cp/class.c:5795
#, gcc-internal-format
msgid "assuming pointer to member %qD"
msgstr ""
-#: cp/class.c:5802
+#: cp/class.c:5798
#, gcc-internal-format
msgid "(a pointer to member can only be formed with %<&%E%>)"
msgstr ""
-#: cp/class.c:5847 cp/class.c:5878 cp/class.c:6030 cp/class.c:6037
+#: cp/class.c:5843 cp/class.c:5874 cp/class.c:6026 cp/class.c:6033
#, gcc-internal-format
msgid "not enough type information"
msgstr ""
-#: cp/class.c:5864
+#: cp/class.c:5860
#, gcc-internal-format
msgid "argument of type %qT does not match %qT"
msgstr ""
-#: cp/class.c:6014
+#: cp/class.c:6010
#, gcc-internal-format
msgid "invalid operation on uninstantiated type"
msgstr ""
@@ -17733,12 +22519,12 @@ msgstr ""
#. A name N used in a class S shall refer to the same declaration
#. in its context and when re-evaluated in the completed scope of
#. S.
-#: cp/class.c:6251 cp/decl.c:1093 cp/name-lookup.c:507 cp/pt.c:2200
+#: cp/class.c:6247 cp/decl.c:1101 cp/name-lookup.c:508
#, gcc-internal-format
msgid "declaration of %q#D"
msgstr ""
-#: cp/class.c:6252
+#: cp/class.c:6248
#, gcc-internal-format
msgid "changes meaning of %qD from %q+#D"
msgstr ""
@@ -17778,7 +22564,7 @@ msgstr ""
msgid "conversion from %qT to %qT discards qualifiers"
msgstr ""
-#: cp/cvt.c:516 cp/typeck.c:4872
+#: cp/cvt.c:516 cp/typeck.c:4890
#, gcc-internal-format
msgid "casting %qT to %qT does not dereference pointer"
msgstr ""
@@ -17866,114 +22652,104 @@ msgstr ""
msgid " candidate conversions include %qD and %qD"
msgstr ""
-#: cp/decl.c:355
-#, gcc-internal-format
-msgid "label %qD used but not defined"
-msgstr ""
-
-#: cp/decl.c:366
-#, gcc-internal-format
-msgid "label %qD defined but not used"
-msgstr ""
-
-#: cp/decl.c:999
+#: cp/decl.c:1003
#, gcc-internal-format
msgid "%qD was declared %<extern%> and later %<static%>"
msgstr ""
-#: cp/decl.c:1000 cp/decl.c:1466
+#: cp/decl.c:1004 cp/decl.c:1473 objc/objc-act.c:2903 objc/objc-act.c:7470
#, gcc-internal-format
-msgid "previous declaration of %qD"
+msgid "previous declaration of %q+D"
msgstr ""
-#: cp/decl.c:1048
+#: cp/decl.c:1054
#, gcc-internal-format
-msgid "%Jfunction %qD redeclared as inline"
+msgid "function %q+D redeclared as inline"
msgstr ""
-#: cp/decl.c:1050
+#: cp/decl.c:1056
#, gcc-internal-format
-msgid "%Jprevious declaration of %qD with attribute noinline"
+msgid "previous declaration of %q+D with attribute noinline"
msgstr ""
-#: cp/decl.c:1057
+#: cp/decl.c:1063
#, gcc-internal-format
-msgid "%Jfunction %qD redeclared with attribute noinline"
+msgid "function %q+D redeclared with attribute noinline"
msgstr ""
-#: cp/decl.c:1059
+#: cp/decl.c:1065
#, gcc-internal-format
-msgid "%Jprevious declaration of %qD was inline"
+msgid "previous declaration of %q+D was inline"
msgstr ""
-#: cp/decl.c:1080 cp/decl.c:1151
+#: cp/decl.c:1088 cp/decl.c:1161
#, gcc-internal-format
msgid "shadowing %s function %q#D"
msgstr ""
-#: cp/decl.c:1089
+#: cp/decl.c:1097
#, gcc-internal-format
msgid "library function %q#D redeclared as non-function %q#D"
msgstr ""
-#: cp/decl.c:1094
+#: cp/decl.c:1102
#, gcc-internal-format
msgid "conflicts with built-in declaration %q#D"
msgstr ""
-#: cp/decl.c:1146 cp/decl.c:1255 cp/decl.c:1271
+#: cp/decl.c:1156 cp/decl.c:1265 cp/decl.c:1281
#, gcc-internal-format
msgid "new declaration %q#D"
msgstr ""
-#: cp/decl.c:1147
+#: cp/decl.c:1157
#, gcc-internal-format
msgid "ambiguates built-in declaration %q#D"
msgstr ""
-#: cp/decl.c:1218
+#: cp/decl.c:1229
#, gcc-internal-format
msgid "%q#D redeclared as different kind of symbol"
msgstr ""
-#: cp/decl.c:1221
+#: cp/decl.c:1232
#, gcc-internal-format
-msgid "previous declaration of %q#D"
+msgid "previous declaration of %q+#D"
msgstr ""
-#: cp/decl.c:1240
+#: cp/decl.c:1251
#, gcc-internal-format
msgid "declaration of template %q#D"
msgstr ""
-#: cp/decl.c:1241 cp/name-lookup.c:508
+#: cp/decl.c:1252 cp/name-lookup.c:509
#, gcc-internal-format
-msgid "conflicts with previous declaration %q#D"
+msgid "conflicts with previous declaration %q+#D"
msgstr ""
-#: cp/decl.c:1256 cp/decl.c:1272
+#: cp/decl.c:1266 cp/decl.c:1282
#, gcc-internal-format
-msgid "ambiguates old declaration %q#D"
+msgid "ambiguates old declaration %q+#D"
msgstr ""
-#: cp/decl.c:1264
+#: cp/decl.c:1274
#, gcc-internal-format
msgid "declaration of C function %q#D conflicts with"
msgstr ""
-#: cp/decl.c:1266
+#: cp/decl.c:1276
#, gcc-internal-format
-msgid "previous declaration %q#D here"
+msgid "previous declaration %q+#D here"
msgstr ""
-#: cp/decl.c:1279
+#: cp/decl.c:1289
#, gcc-internal-format
msgid "conflicting declaration %q#D"
msgstr ""
-#: cp/decl.c:1280
+#: cp/decl.c:1290
#, gcc-internal-format
-msgid "%qD has a previous declaration as %q#D"
+msgid "%q+D has a previous declaration as %q#D"
msgstr ""
#. [namespace.alias]
@@ -17983,80 +22759,80 @@ msgstr ""
#. A namespace-name defined at global scope shall not be
#. declared as the name of any other entity in any global scope
#. of the program.
-#: cp/decl.c:1333
+#: cp/decl.c:1342
#, gcc-internal-format
msgid "declaration of namespace %qD conflicts with"
msgstr ""
-#: cp/decl.c:1334
+#: cp/decl.c:1343
#, gcc-internal-format
-msgid "previous declaration of namespace %qD here"
+msgid "previous declaration of namespace %q+D here"
msgstr ""
-#: cp/decl.c:1346
+#: cp/decl.c:1354
#, gcc-internal-format
-msgid "%q#D previously defined here"
+msgid "%q+#D previously defined here"
msgstr ""
-#: cp/decl.c:1347
+#: cp/decl.c:1355
#, gcc-internal-format
-msgid "%q#D previously declared here"
+msgid "%q+#D previously declared here"
msgstr ""
#. Prototype decl follows defn w/o prototype.
-#: cp/decl.c:1356
+#: cp/decl.c:1364
#, gcc-internal-format
-msgid "prototype for %q#D"
+msgid "prototype for %q+#D"
msgstr ""
-#: cp/decl.c:1357
+#: cp/decl.c:1365
#, gcc-internal-format
msgid "%Jfollows non-prototype definition here"
msgstr ""
-#: cp/decl.c:1369
+#: cp/decl.c:1377
#, gcc-internal-format
-msgid "previous declaration of %q#D with %qL linkage"
+msgid "previous declaration of %q+#D with %qL linkage"
msgstr ""
-#: cp/decl.c:1371
+#: cp/decl.c:1379
#, gcc-internal-format
msgid "conflicts with new declaration with %qL linkage"
msgstr ""
-#: cp/decl.c:1394 cp/decl.c:1401
+#: cp/decl.c:1402 cp/decl.c:1408
#, gcc-internal-format
msgid "default argument given for parameter %d of %q#D"
msgstr ""
-#: cp/decl.c:1396 cp/decl.c:1403
+#: cp/decl.c:1404 cp/decl.c:1410
#, gcc-internal-format
-msgid "after previous specification in %q#D"
+msgid "after previous specification in %q+#D"
msgstr ""
-#: cp/decl.c:1412
+#: cp/decl.c:1419
#, gcc-internal-format
msgid "%q#D was used before it was declared inline"
msgstr ""
-#: cp/decl.c:1413
+#: cp/decl.c:1420
#, gcc-internal-format
msgid "%Jprevious non-inline declaration here"
msgstr ""
-#: cp/decl.c:1465
+#: cp/decl.c:1472
#, gcc-internal-format
msgid "redundant redeclaration of %qD in same scope"
msgstr ""
-#: cp/decl.c:1559
+#: cp/decl.c:1566
#, gcc-internal-format
msgid "declaration of %qF throws different exceptions"
msgstr ""
-#: cp/decl.c:1561
+#: cp/decl.c:1568
#, gcc-internal-format
-msgid "than previous declaration %qF"
+msgid "than previous declaration %q+F"
msgstr ""
#. From [temp.expl.spec]:
@@ -18067,261 +22843,266 @@ msgstr ""
#. that specialization that would cause an implicit
#. instantiation to take place, in every translation unit in
#. which such a use occurs.
-#: cp/decl.c:1722
+#: cp/decl.c:1732
#, gcc-internal-format
msgid "explicit specialization of %qD after first use"
msgstr ""
-#: cp/decl.c:1801
+#: cp/decl.c:1811
#, gcc-internal-format
-msgid "%J%qD: visibility attribute ignored because it"
+msgid "%q+D: visibility attribute ignored because it"
msgstr ""
-#: cp/decl.c:1803
+#: cp/decl.c:1813
#, gcc-internal-format
msgid "%Jconflicts with previous declaration here"
msgstr ""
-#: cp/decl.c:2144 cp/decl.c:2168 cp/decl.c:2256
+#: cp/decl.c:2191 cp/decl.c:2213
#, gcc-internal-format
msgid "jump to label %qD"
msgstr ""
-#: cp/decl.c:2146 cp/decl.c:2170
+#: cp/decl.c:2193 cp/decl.c:2215
#, gcc-internal-format
msgid "jump to case label"
msgstr ""
-#: cp/decl.c:2149 cp/decl.c:2173
+#: cp/decl.c:2196 cp/decl.c:2218
#, gcc-internal-format
msgid "%H from here"
msgstr ""
-#: cp/decl.c:2154
+#: cp/decl.c:2201
#, gcc-internal-format
-msgid " crosses initialization of %q#D"
+msgid " crosses initialization of %q+#D"
msgstr ""
-#: cp/decl.c:2157 cp/decl.c:2272
+#: cp/decl.c:2203 cp/decl.c:2317
#, gcc-internal-format
-msgid " enters scope of non-POD %q#D"
+msgid " enters scope of non-POD %q+#D"
msgstr ""
-#: cp/decl.c:2177 cp/decl.c:2276
+#: cp/decl.c:2222 cp/decl.c:2321
#, gcc-internal-format
msgid " enters try block"
msgstr ""
-#: cp/decl.c:2179 cp/decl.c:2278
+#: cp/decl.c:2224 cp/decl.c:2323
#, gcc-internal-format
msgid " enters catch block"
msgstr ""
-#: cp/decl.c:2257
+#: cp/decl.c:2301
+#, gcc-internal-format
+msgid "jump to label %q+D"
+msgstr ""
+
+#: cp/decl.c:2302
#, gcc-internal-format
msgid " from here"
msgstr ""
#. Can't skip init of __exception_info.
-#: cp/decl.c:2268
+#: cp/decl.c:2313
#, gcc-internal-format
msgid "%J enters catch block"
msgstr ""
-#: cp/decl.c:2270
+#: cp/decl.c:2315
#, gcc-internal-format
-msgid " skips initialization of %q#D"
+msgid " skips initialization of %q+#D"
msgstr ""
-#: cp/decl.c:2304
+#: cp/decl.c:2349
#, gcc-internal-format
msgid "label named wchar_t"
msgstr ""
-#: cp/decl.c:2307
+#: cp/decl.c:2352
#, gcc-internal-format
msgid "duplicate label %qD"
msgstr ""
-#: cp/decl.c:2562 cp/parser.c:3610
+#: cp/decl.c:2607 cp/parser.c:3609
#, gcc-internal-format
msgid "%qD used without template parameters"
msgstr ""
-#: cp/decl.c:2579 cp/decl.c:2670
+#: cp/decl.c:2624 cp/decl.c:2715
#, gcc-internal-format
msgid "no class template named %q#T in %q#T"
msgstr ""
-#: cp/decl.c:2600 cp/decl.c:2610 cp/decl.c:2630
+#: cp/decl.c:2645 cp/decl.c:2655 cp/decl.c:2675
#, gcc-internal-format
msgid "no type named %q#T in %q#T"
msgstr ""
-#: cp/decl.c:2679
+#: cp/decl.c:2724
#, gcc-internal-format
msgid "template parameters do not match template"
msgstr ""
-#: cp/decl.c:2680 cp/friend.c:317 cp/friend.c:325
+#: cp/decl.c:2725 cp/friend.c:317 cp/friend.c:325
#, gcc-internal-format
-msgid "%qD declared here"
+msgid "%q+D declared here"
msgstr ""
-#: cp/decl.c:3352
+#: cp/decl.c:3398
#, gcc-internal-format
msgid "%Jan anonymous union cannot have function members"
msgstr ""
-#: cp/decl.c:3370
+#: cp/decl.c:3416
#, gcc-internal-format
-msgid "member %q#D with constructor not allowed in anonymous aggregate"
+msgid "member %q+#D with constructor not allowed in anonymous aggregate"
msgstr ""
-#: cp/decl.c:3374
+#: cp/decl.c:3419
#, gcc-internal-format
-msgid "member %q#D with destructor not allowed in anonymous aggregate"
+msgid "member %q+#D with destructor not allowed in anonymous aggregate"
msgstr ""
-#: cp/decl.c:3378
+#: cp/decl.c:3422
#, gcc-internal-format
msgid ""
-"member %q#D with copy assignment operator not allowed in anonymous aggregate"
+"member %q+#D with copy assignment operator not allowed in anonymous aggregate"
msgstr ""
-#: cp/decl.c:3404
+#: cp/decl.c:3447
#, gcc-internal-format
msgid "multiple types in one declaration"
msgstr ""
-#: cp/decl.c:3408
+#: cp/decl.c:3451
#, gcc-internal-format
msgid "redeclaration of C++ built-in type %qT"
msgstr ""
-#: cp/decl.c:3445
+#: cp/decl.c:3488
#, gcc-internal-format
msgid "missing type-name in typedef-declaration"
msgstr ""
-#: cp/decl.c:3453
+#: cp/decl.c:3496
#, gcc-internal-format
msgid "ISO C++ prohibits anonymous structs"
msgstr ""
-#: cp/decl.c:3460
+#: cp/decl.c:3503
#, gcc-internal-format
msgid "%qs can only be specified for functions"
msgstr ""
-#: cp/decl.c:3466
+#: cp/decl.c:3509
#, gcc-internal-format
msgid "%<friend%> can only be specified inside a class"
msgstr ""
-#: cp/decl.c:3468
+#: cp/decl.c:3511
#, gcc-internal-format
msgid "%<explicit%> can only be specified for constructors"
msgstr ""
-#: cp/decl.c:3470
+#: cp/decl.c:3513
#, gcc-internal-format
msgid "a storage class can only be specified for objects and functions"
msgstr ""
-#: cp/decl.c:3476
+#: cp/decl.c:3519
#, gcc-internal-format
msgid "qualifiers can only be specified for objects and functions"
msgstr ""
-#: cp/decl.c:3506
+#: cp/decl.c:3549
#, gcc-internal-format
-msgid "attribute ignored in declaration of %q#T"
+msgid "attribute ignored in declaration of %q+#T"
msgstr ""
-#: cp/decl.c:3507
+#: cp/decl.c:3550
#, gcc-internal-format
-msgid "attribute for %q#T must follow the %qs keyword"
+msgid "attribute for %q+#T must follow the %qs keyword"
msgstr ""
-#: cp/decl.c:3630
+#: cp/decl.c:3672
#, gcc-internal-format
msgid "function %q#D is initialized like a variable"
msgstr ""
-#: cp/decl.c:3642
+#: cp/decl.c:3684
#, gcc-internal-format
msgid "declaration of %q#D has %<extern%> and is initialized"
msgstr ""
-#: cp/decl.c:3672
+#: cp/decl.c:3714
#, gcc-internal-format
msgid "%q#D is not a static member of %q#T"
msgstr ""
-#: cp/decl.c:3678
+#: cp/decl.c:3720
#, gcc-internal-format
msgid "ISO C++ does not permit %<%T::%D%> to be defined as %<%T::%D%>"
msgstr ""
-#: cp/decl.c:3687
+#: cp/decl.c:3729
#, gcc-internal-format
msgid ""
"template header not allowed in member definition of explicitly specialized "
"class"
msgstr ""
-#: cp/decl.c:3695
+#: cp/decl.c:3738
#, gcc-internal-format
msgid "duplicate initialization of %qD"
msgstr ""
-#: cp/decl.c:3733
+#: cp/decl.c:3777
#, gcc-internal-format
msgid "declaration of %q#D outside of class is not definition"
msgstr ""
-#: cp/decl.c:3782
+#: cp/decl.c:3826
#, gcc-internal-format
msgid "variable %q#D has initializer but incomplete type"
msgstr ""
-#: cp/decl.c:3789 cp/decl.c:4410
+#: cp/decl.c:3833 cp/decl.c:4529
#, gcc-internal-format
msgid "elements of array %q#D have incomplete type"
msgstr ""
-#: cp/decl.c:3805
+#: cp/decl.c:3849
#, gcc-internal-format
msgid "aggregate %q#D has incomplete type and cannot be defined"
msgstr ""
-#: cp/decl.c:3855
+#: cp/decl.c:3899
#, gcc-internal-format
msgid "%qD declared as reference but not initialized"
msgstr ""
-#: cp/decl.c:3861
+#: cp/decl.c:3905
#, gcc-internal-format
msgid "ISO C++ forbids use of initializer list to initialize reference %qD"
msgstr ""
-#: cp/decl.c:3887
+#: cp/decl.c:3931
#, gcc-internal-format
msgid "cannot initialize %qT from %qT"
msgstr ""
-#: cp/decl.c:3920
+#: cp/decl.c:3964
#, gcc-internal-format
msgid "initializer fails to determine size of %qD"
msgstr ""
-#: cp/decl.c:3925
+#: cp/decl.c:3969
#, gcc-internal-format
msgid "array size missing in %qD"
msgstr ""
-#: cp/decl.c:3935
+#: cp/decl.c:3979
#, gcc-internal-format
msgid "zero-size array %qD"
msgstr ""
@@ -18329,235 +23110,248 @@ msgstr ""
#. An automatic variable with an incomplete type: that is an error.
#. Don't talk about array types here, since we took care of that
#. message in grokdeclarator.
-#: cp/decl.c:3971
+#: cp/decl.c:4015
#, gcc-internal-format
msgid "storage size of %qD isn't known"
msgstr ""
-#: cp/decl.c:3993
+#: cp/decl.c:4037
#, gcc-internal-format
msgid "storage size of %qD isn't constant"
msgstr ""
-#: cp/decl.c:4048
+#: cp/decl.c:4092
#, gcc-internal-format
msgid ""
-"sorry: semantics of inline function static data %q#D are wrong (you'll wind "
+"sorry: semantics of inline function static data %q+#D are wrong (you'll wind "
"up with multiple copies)"
msgstr ""
-#: cp/decl.c:4051
+#: cp/decl.c:4095
#, gcc-internal-format
msgid "%J you can work around this by removing the initializer"
msgstr ""
-#: cp/decl.c:4078
+#: cp/decl.c:4122
#, gcc-internal-format
msgid "uninitialized const %qD"
msgstr ""
-#: cp/decl.c:4143
+#: cp/decl.c:4193
#, gcc-internal-format
msgid "name %qD used in a GNU-style designated initializer for an array"
msgstr ""
-#: cp/decl.c:4214
+#: cp/decl.c:4240
#, gcc-internal-format
-msgid "brace-enclosed initializer used to initialize %qT"
+msgid "invalid type %qT as initializer for a vector of type %qT"
msgstr ""
-#: cp/decl.c:4279
+#: cp/decl.c:4282
#, gcc-internal-format
msgid "initializer for %qT must be brace-enclosed"
msgstr ""
-#: cp/decl.c:4295
+#: cp/decl.c:4297
#, gcc-internal-format
msgid "ISO C++ does not allow designated initializers"
msgstr ""
-#: cp/decl.c:4299
+#: cp/decl.c:4302
#, gcc-internal-format
msgid "%qT has no non-static data member named %qD"
msgstr ""
-#: cp/decl.c:4363
+#: cp/decl.c:4351
+#, gcc-internal-format
+msgid "braces around scalar initializer for type %qT"
+msgstr ""
+
+#: cp/decl.c:4429
+#, gcc-internal-format
+msgid "missing braces around initializer for %qT"
+msgstr ""
+
+#: cp/decl.c:4485
#, gcc-internal-format
msgid "too many initializers for %qT"
msgstr ""
-#: cp/decl.c:4404
+#: cp/decl.c:4523
#, gcc-internal-format
msgid "variable-sized object %qD may not be initialized"
msgstr ""
-#: cp/decl.c:4415
+#: cp/decl.c:4534
#, gcc-internal-format
msgid "%qD has incomplete type"
msgstr ""
-#: cp/decl.c:4469
+#: cp/decl.c:4581
#, gcc-internal-format
msgid "%qD must be initialized by constructor, not by %<{...}%>"
msgstr ""
-#: cp/decl.c:4505
+#: cp/decl.c:4617
#, gcc-internal-format
msgid "array %qD initialized by parenthesized string literal %qE"
msgstr ""
-#: cp/decl.c:4520
+#: cp/decl.c:4632
#, gcc-internal-format
msgid "structure %qD with uninitialized const members"
msgstr ""
-#: cp/decl.c:4522
+#: cp/decl.c:4634
#, gcc-internal-format
msgid "structure %qD with uninitialized reference members"
msgstr ""
-#: cp/decl.c:4724
+#: cp/decl.c:4836
#, gcc-internal-format
msgid "assignment (not initialization) in declaration"
msgstr ""
-#: cp/decl.c:4741
+#: cp/decl.c:4853
#, gcc-internal-format
msgid "cannot initialize %qD to namespace %qD"
msgstr ""
-#: cp/decl.c:4782
+#: cp/decl.c:4894
#, gcc-internal-format
msgid "shadowing previous type declaration of %q#D"
msgstr ""
-#: cp/decl.c:4812
+#: cp/decl.c:4924
#, gcc-internal-format
msgid "%qD cannot be thread-local because it has non-POD type %qT"
msgstr ""
-#: cp/decl.c:4827
+#: cp/decl.c:4939
#, gcc-internal-format
msgid "%qD is thread-local and so cannot be dynamically initialized"
msgstr ""
-#. The static data member cannot be initialized by a
-#. non-constant when being declared.
-#: cp/decl.c:4835
+#: cp/decl.c:4957
#, gcc-internal-format
msgid ""
"%qD cannot be initialized by a non-constant expression when being declared"
msgstr ""
-#: cp/decl.c:5418
+#: cp/decl.c:5547
#, gcc-internal-format
msgid "destructor for alien class %qT cannot be a member"
msgstr ""
-#: cp/decl.c:5420
+#: cp/decl.c:5549
#, gcc-internal-format
msgid "constructor for alien class %qT cannot be a member"
msgstr ""
-#: cp/decl.c:5441
+#: cp/decl.c:5570
#, gcc-internal-format
msgid "%qD declared as a %<virtual%> %s"
msgstr ""
-#: cp/decl.c:5443
+#: cp/decl.c:5572
#, gcc-internal-format
msgid "%qD declared as an %<inline%> %s"
msgstr ""
-#: cp/decl.c:5445
+#: cp/decl.c:5574
#, gcc-internal-format
msgid ""
"%<const%> and %<volatile%> function specifiers on %qD invalid in %s "
"declaration"
msgstr ""
-#: cp/decl.c:5449
+#: cp/decl.c:5578
#, gcc-internal-format
-msgid "%qD declared as a friend"
+msgid "%q+D declared as a friend"
msgstr ""
-#: cp/decl.c:5455
+#: cp/decl.c:5584
#, gcc-internal-format
-msgid "%qD declared with an exception specification"
+msgid "%q+D declared with an exception specification"
msgstr ""
-#: cp/decl.c:5541
+#: cp/decl.c:5618
+#, gcc-internal-format
+msgid "definition of %qD is not in namespace enclosing %qT"
+msgstr ""
+
+#: cp/decl.c:5709
#, gcc-internal-format
msgid "cannot declare %<::main%> to be a template"
msgstr ""
-#: cp/decl.c:5543
+#: cp/decl.c:5711
#, gcc-internal-format
msgid "cannot declare %<::main%> to be inline"
msgstr ""
-#: cp/decl.c:5545
+#: cp/decl.c:5713
#, gcc-internal-format
msgid "cannot declare %<::main%> to be static"
msgstr ""
-#: cp/decl.c:5549
+#: cp/decl.c:5717
#, gcc-internal-format
msgid "%<::main%> must return %<int%>"
msgstr ""
-#: cp/decl.c:5579
+#: cp/decl.c:5747
#, gcc-internal-format
msgid "non-local function %q#D uses anonymous type"
msgstr ""
-#: cp/decl.c:5582 cp/decl.c:5918
+#: cp/decl.c:5750 cp/decl.c:6087
#, gcc-internal-format
msgid ""
-"%q#D does not refer to the unqualified type, so it is not used for linkage"
+"%q+#D does not refer to the unqualified type, so it is not used for linkage"
msgstr ""
-#: cp/decl.c:5588
+#: cp/decl.c:5756
#, gcc-internal-format
msgid "non-local function %q#D uses local type %qT"
msgstr ""
-#: cp/decl.c:5611
+#: cp/decl.c:5779
#, gcc-internal-format
msgid "%smember function %qD cannot have cv-qualifier"
msgstr ""
-#: cp/decl.c:5635
+#: cp/decl.c:5803
#, gcc-internal-format
msgid "defining explicit specialization %qD in friend declaration"
msgstr ""
#. Something like `template <class T> friend void f<T>()'.
-#: cp/decl.c:5645
+#: cp/decl.c:5813
#, gcc-internal-format
msgid "invalid use of template-id %qD in declaration of primary template"
msgstr ""
-#: cp/decl.c:5673
+#: cp/decl.c:5841
#, gcc-internal-format
msgid ""
"default arguments are not allowed in declaration of friend template "
"specialization %qD"
msgstr ""
-#: cp/decl.c:5681
+#: cp/decl.c:5849
#, gcc-internal-format
msgid ""
"%<inline%> is not allowed in declaration of friend template specialization %"
"qD"
msgstr ""
-#: cp/decl.c:5747
+#: cp/decl.c:5915
#, gcc-internal-format
msgid "definition of implicitly-declared %qD"
msgstr ""
-#: cp/decl.c:5767 cp/decl2.c:704
+#: cp/decl.c:5935 cp/decl2.c:706
#, gcc-internal-format
msgid "no %q#D member function declared in class %qT"
msgstr ""
@@ -18566,523 +23360,523 @@ msgstr ""
#. no linkage can only be used to declare extern "C"
#. entities. Since it's not always an error in the
#. ISO C++ 90 Standard, we only issue a warning.
-#: cp/decl.c:5915
+#: cp/decl.c:6084
#, gcc-internal-format
msgid "non-local variable %q#D uses anonymous type"
msgstr ""
-#: cp/decl.c:5924
+#: cp/decl.c:6093
#, gcc-internal-format
msgid "non-local variable %q#D uses local type %qT"
msgstr ""
-#: cp/decl.c:6041
+#: cp/decl.c:6210
#, gcc-internal-format
msgid ""
"invalid in-class initialization of static data member of non-integral type %"
"qT"
msgstr ""
-#: cp/decl.c:6051
+#: cp/decl.c:6220
#, gcc-internal-format
msgid "ISO C++ forbids in-class initialization of non-const static member %qD"
msgstr ""
-#: cp/decl.c:6055
+#: cp/decl.c:6224
#, gcc-internal-format
msgid ""
"ISO C++ forbids initialization of member constant %qD of non-integral type %"
"qT"
msgstr ""
-#: cp/decl.c:6075
+#: cp/decl.c:6244
#, gcc-internal-format
msgid "size of array %qD has non-integral type %qT"
msgstr ""
-#: cp/decl.c:6077
+#: cp/decl.c:6246
#, gcc-internal-format
msgid "size of array has non-integral type %qT"
msgstr ""
-#: cp/decl.c:6113
+#: cp/decl.c:6282
#, gcc-internal-format
msgid "size of array %qD is negative"
msgstr ""
-#: cp/decl.c:6115
+#: cp/decl.c:6284
#, gcc-internal-format
msgid "size of array is negative"
msgstr ""
-#: cp/decl.c:6123
+#: cp/decl.c:6292
#, gcc-internal-format
msgid "ISO C++ forbids zero-size array %qD"
msgstr ""
-#: cp/decl.c:6125
+#: cp/decl.c:6294
#, gcc-internal-format
msgid "ISO C++ forbids zero-size array"
msgstr ""
-#: cp/decl.c:6132
+#: cp/decl.c:6301
#, gcc-internal-format
msgid "size of array %qD is not an integral constant-expression"
msgstr ""
-#: cp/decl.c:6135
+#: cp/decl.c:6304
#, gcc-internal-format
msgid "size of array is not an integral constant-expression"
msgstr ""
-#: cp/decl.c:6140
+#: cp/decl.c:6309
#, gcc-internal-format
msgid "ISO C++ forbids variable-size array %qD"
msgstr ""
-#: cp/decl.c:6142
+#: cp/decl.c:6311
#, gcc-internal-format
msgid "ISO C++ forbids variable-size array"
msgstr ""
-#: cp/decl.c:6172
+#: cp/decl.c:6341
#, gcc-internal-format
msgid "overflow in array dimension"
msgstr ""
-#: cp/decl.c:6246
+#: cp/decl.c:6415
#, gcc-internal-format
msgid "declaration of %qD as %s"
msgstr ""
-#: cp/decl.c:6248
+#: cp/decl.c:6417
#, gcc-internal-format
msgid "creating %s"
msgstr ""
-#: cp/decl.c:6260
+#: cp/decl.c:6429
#, gcc-internal-format
msgid ""
"declaration of %qD as multidimensional array must have bounds for all "
"dimensions except the first"
msgstr ""
-#: cp/decl.c:6264
+#: cp/decl.c:6433
#, gcc-internal-format
msgid ""
"multidimensional array must have bounds for all dimensions except the first"
msgstr ""
-#: cp/decl.c:6299
+#: cp/decl.c:6468
#, gcc-internal-format
msgid "return type specification for constructor invalid"
msgstr ""
-#: cp/decl.c:6309
+#: cp/decl.c:6478
#, gcc-internal-format
msgid "return type specification for destructor invalid"
msgstr ""
-#: cp/decl.c:6322
+#: cp/decl.c:6491
#, gcc-internal-format
msgid "operator %qT declared to return %qT"
msgstr ""
-#: cp/decl.c:6324
+#: cp/decl.c:6493
#, gcc-internal-format
msgid "return type specified for %<operator %T%>"
msgstr ""
-#: cp/decl.c:6346
+#: cp/decl.c:6515
#, gcc-internal-format
msgid "unnamed variable or field declared void"
msgstr ""
-#: cp/decl.c:6350
+#: cp/decl.c:6519
#, gcc-internal-format
msgid "variable or field %qE declared void"
msgstr ""
-#: cp/decl.c:6353
+#: cp/decl.c:6522
#, gcc-internal-format
msgid "variable or field declared void"
msgstr ""
-#: cp/decl.c:6508
+#: cp/decl.c:6677
#, gcc-internal-format
msgid "type %qT is not derived from type %qT"
msgstr ""
-#: cp/decl.c:6528 cp/decl.c:6620 cp/decl.c:7742
+#: cp/decl.c:6697 cp/decl.c:6789 cp/decl.c:7919
#, gcc-internal-format
msgid "declaration of %qD as non-function"
msgstr ""
-#: cp/decl.c:6534
+#: cp/decl.c:6703
#, gcc-internal-format
msgid "declaration of %qD as non-member"
msgstr ""
-#: cp/decl.c:6564
+#: cp/decl.c:6733
#, gcc-internal-format
msgid "declarator-id missing; using reserved word %qD"
msgstr ""
-#: cp/decl.c:6653
+#: cp/decl.c:6822
#, gcc-internal-format
msgid "two or more data types in declaration of %qs"
msgstr ""
-#: cp/decl.c:6696
+#: cp/decl.c:6865
#, gcc-internal-format
msgid "ISO C++ does not support %<long long%>"
msgstr ""
-#: cp/decl.c:6718
+#: cp/decl.c:6887
#, gcc-internal-format
msgid "duplicate %qs"
msgstr ""
-#: cp/decl.c:6756 cp/decl.c:6758
+#: cp/decl.c:6925 cp/decl.c:6927
#, gcc-internal-format
msgid "ISO C++ forbids declaration of %qs with no type"
msgstr ""
-#: cp/decl.c:6783
+#: cp/decl.c:6952
#, gcc-internal-format
msgid "short, signed or unsigned invalid for %qs"
msgstr ""
-#: cp/decl.c:6785
+#: cp/decl.c:6954
#, gcc-internal-format
msgid "long, short, signed or unsigned invalid for %qs"
msgstr ""
-#: cp/decl.c:6787
+#: cp/decl.c:6956
#, gcc-internal-format
msgid "long and short specified together for %qs"
msgstr ""
-#: cp/decl.c:6789
+#: cp/decl.c:6958
#, gcc-internal-format
msgid "long or short specified with char for %qs"
msgstr ""
-#: cp/decl.c:6791
+#: cp/decl.c:6960
#, gcc-internal-format
msgid "long or short specified with floating type for %qs"
msgstr ""
-#: cp/decl.c:6793
+#: cp/decl.c:6962
#, gcc-internal-format
msgid "signed and unsigned given together for %qs"
msgstr ""
-#: cp/decl.c:6799
+#: cp/decl.c:6968
#, gcc-internal-format
msgid "long, short, signed or unsigned used invalidly for %qs"
msgstr ""
-#: cp/decl.c:6864
+#: cp/decl.c:7033
#, gcc-internal-format
msgid "complex invalid for %qs"
msgstr ""
-#: cp/decl.c:6893
+#: cp/decl.c:7062
#, gcc-internal-format
msgid "qualifiers are not allowed on declaration of %<operator %T%>"
msgstr ""
-#: cp/decl.c:6905 cp/typeck.c:6479
+#: cp/decl.c:7074 cp/typeck.c:6522
#, gcc-internal-format
msgid "ignoring %qV qualifiers added to function type %qT"
msgstr ""
-#: cp/decl.c:6928
+#: cp/decl.c:7097
#, gcc-internal-format
msgid "member %qD cannot be declared both virtual and static"
msgstr ""
-#: cp/decl.c:6935
+#: cp/decl.c:7104
#, gcc-internal-format
msgid "%<%T::%D%> is not a valid declarator"
msgstr ""
-#: cp/decl.c:6943
+#: cp/decl.c:7112
#, gcc-internal-format
msgid "typedef declaration invalid in parameter declaration"
msgstr ""
-#: cp/decl.c:6947
+#: cp/decl.c:7116
#, gcc-internal-format
msgid "storage class specifiers invalid in parameter declarations"
msgstr ""
-#: cp/decl.c:6954
+#: cp/decl.c:7123
#, gcc-internal-format
msgid "virtual outside class declaration"
msgstr ""
-#: cp/decl.c:6967 cp/decl.c:6974
+#: cp/decl.c:7137 cp/decl.c:7146
#, gcc-internal-format
msgid "multiple storage classes in declaration of %qs"
msgstr ""
-#: cp/decl.c:6997
+#: cp/decl.c:7169
#, gcc-internal-format
msgid "storage class specified for %qs"
msgstr ""
-#: cp/decl.c:7031
+#: cp/decl.c:7203
#, gcc-internal-format
msgid "top-level declaration of %qs specifies %<auto%>"
msgstr ""
-#: cp/decl.c:7043
+#: cp/decl.c:7215
#, gcc-internal-format
msgid "storage class specifiers invalid in friend function declarations"
msgstr ""
-#: cp/decl.c:7169
+#: cp/decl.c:7341
#, gcc-internal-format
msgid "destructor cannot be static member function"
msgstr ""
-#: cp/decl.c:7172
+#: cp/decl.c:7344
#, gcc-internal-format
msgid "destructors may not be cv-qualified"
msgstr ""
-#: cp/decl.c:7192
+#: cp/decl.c:7364
#, gcc-internal-format
msgid "constructor cannot be static member function"
msgstr ""
-#: cp/decl.c:7195
+#: cp/decl.c:7367
#, gcc-internal-format
msgid "constructors cannot be declared virtual"
msgstr ""
-#: cp/decl.c:7200
+#: cp/decl.c:7372
#, gcc-internal-format
msgid "constructors may not be cv-qualified"
msgstr ""
-#: cp/decl.c:7220
+#: cp/decl.c:7392
#, gcc-internal-format
msgid "can't initialize friend function %qs"
msgstr ""
#. Cannot be both friend and virtual.
-#: cp/decl.c:7224
+#: cp/decl.c:7396
#, gcc-internal-format
msgid "virtual functions cannot be friends"
msgstr ""
-#: cp/decl.c:7228
+#: cp/decl.c:7400
#, gcc-internal-format
msgid "friend declaration not in class definition"
msgstr ""
-#: cp/decl.c:7230
+#: cp/decl.c:7402
#, gcc-internal-format
msgid "can't define friend function %qs in a local class definition"
msgstr ""
-#: cp/decl.c:7243
+#: cp/decl.c:7415
#, gcc-internal-format
msgid "destructors may not have parameters"
msgstr ""
-#: cp/decl.c:7262 cp/decl.c:7269
+#: cp/decl.c:7434 cp/decl.c:7441
#, gcc-internal-format
msgid "cannot declare reference to %q#T"
msgstr ""
-#: cp/decl.c:7263
+#: cp/decl.c:7435
#, gcc-internal-format
msgid "cannot declare pointer to %q#T"
msgstr ""
-#: cp/decl.c:7271
+#: cp/decl.c:7443
#, gcc-internal-format
msgid "cannot declare pointer to %q#T member"
msgstr ""
-#: cp/decl.c:7310
+#: cp/decl.c:7482
#, gcc-internal-format
msgid "%qD is a namespace"
msgstr ""
-#: cp/decl.c:7349
+#: cp/decl.c:7521
#, gcc-internal-format
msgid "template-id %qD used as a declarator"
msgstr ""
-#: cp/decl.c:7396
+#: cp/decl.c:7573
#, gcc-internal-format
msgid "extra qualification %<%T::%> on member %qs ignored"
msgstr ""
-#: cp/decl.c:7415
+#: cp/decl.c:7592
#, gcc-internal-format
msgid "cannot declare member function %<%T::%s%> within %<%T%>"
msgstr ""
-#: cp/decl.c:7430
+#: cp/decl.c:7607
#, gcc-internal-format
msgid "cannot declare member %<%T::%s%> within %qT"
msgstr ""
-#: cp/decl.c:7470
+#: cp/decl.c:7647
#, gcc-internal-format
msgid "data member may not have variably modified type %qT"
msgstr ""
-#: cp/decl.c:7472
+#: cp/decl.c:7649
#, gcc-internal-format
msgid "parameter may not have variably modified type %qT"
msgstr ""
#. [dcl.fct.spec] The explicit specifier shall only be used in
#. declarations of constructors within a class definition.
-#: cp/decl.c:7480
+#: cp/decl.c:7657
#, gcc-internal-format
msgid "only declarations of constructors can be %<explicit%>"
msgstr ""
-#: cp/decl.c:7488
+#: cp/decl.c:7665
#, gcc-internal-format
msgid "non-member %qs cannot be declared %<mutable%>"
msgstr ""
-#: cp/decl.c:7493
+#: cp/decl.c:7670
#, gcc-internal-format
msgid "non-object member %qs cannot be declared %<mutable%>"
msgstr ""
-#: cp/decl.c:7499
+#: cp/decl.c:7676
#, gcc-internal-format
msgid "function %qs cannot be declared %<mutable%>"
msgstr ""
-#: cp/decl.c:7504
+#: cp/decl.c:7681
#, gcc-internal-format
msgid "static %qs cannot be declared %<mutable%>"
msgstr ""
-#: cp/decl.c:7509
+#: cp/decl.c:7686
#, gcc-internal-format
msgid "const %qs cannot be declared %<mutable%>"
msgstr ""
-#: cp/decl.c:7529
+#: cp/decl.c:7706
#, gcc-internal-format
msgid "%Jtypedef name may not be a nested-name-specifier"
msgstr ""
-#: cp/decl.c:7545
+#: cp/decl.c:7722
#, gcc-internal-format
msgid "ISO C++ forbids nested type %qD with same name as enclosing class"
msgstr ""
-#: cp/decl.c:7644
+#: cp/decl.c:7821
#, gcc-internal-format
msgid "qualified function types cannot be used to declare %s functions"
msgstr ""
-#: cp/decl.c:7670
+#: cp/decl.c:7847
#, gcc-internal-format
msgid "type qualifiers specified for friend class declaration"
msgstr ""
-#: cp/decl.c:7675
+#: cp/decl.c:7852
#, gcc-internal-format
msgid "%<inline%> specified for friend class declaration"
msgstr ""
-#: cp/decl.c:7683
+#: cp/decl.c:7860
#, gcc-internal-format
msgid "template parameters cannot be friends"
msgstr ""
-#: cp/decl.c:7685
+#: cp/decl.c:7862
#, gcc-internal-format
msgid "friend declaration requires class-key, i.e. %<friend class %T::%D%>"
msgstr ""
-#: cp/decl.c:7689
+#: cp/decl.c:7866
#, gcc-internal-format
msgid "friend declaration requires class-key, i.e. %<friend %#T%>"
msgstr ""
-#: cp/decl.c:7702
+#: cp/decl.c:7879
#, gcc-internal-format
msgid "trying to make class %qT a friend of global scope"
msgstr ""
-#: cp/decl.c:7713
+#: cp/decl.c:7890
#, gcc-internal-format
msgid "invalid qualifiers on non-member function type"
msgstr ""
-#: cp/decl.c:7732
+#: cp/decl.c:7909
#, gcc-internal-format
msgid "abstract declarator %qT used as declaration"
msgstr ""
-#: cp/decl.c:7757
+#: cp/decl.c:7934
#, gcc-internal-format
msgid "cannot use %<::%> in parameter declaration"
msgstr ""
#. Something like struct S { int N::j; };
-#: cp/decl.c:7802
+#: cp/decl.c:7979
#, gcc-internal-format
msgid "invalid use of %<::%>"
msgstr ""
-#: cp/decl.c:7817
+#: cp/decl.c:7994
#, gcc-internal-format
msgid "can't make %qD into a method -- not in a class"
msgstr ""
-#: cp/decl.c:7826
+#: cp/decl.c:8003
#, gcc-internal-format
msgid "function %qD declared virtual inside a union"
msgstr ""
-#: cp/decl.c:7835
+#: cp/decl.c:8012
#, gcc-internal-format
msgid "%qD cannot be declared virtual, since it is always static"
msgstr ""
-#: cp/decl.c:7853
+#: cp/decl.c:8030
#, gcc-internal-format
msgid "declaration of %qD as member of %qT"
msgstr ""
-#: cp/decl.c:7929
+#: cp/decl.c:8106
#, gcc-internal-format
msgid "field %qD has incomplete type"
msgstr ""
-#: cp/decl.c:7931
+#: cp/decl.c:8108
#, gcc-internal-format
msgid "name %qT has incomplete type"
msgstr ""
-#: cp/decl.c:7940
+#: cp/decl.c:8117
#, gcc-internal-format
msgid " in instantiation of template %qT"
msgstr ""
-#: cp/decl.c:7950
+#: cp/decl.c:8127
#, gcc-internal-format
msgid "%qE is neither function nor member function; cannot be declared friend"
msgstr ""
-#: cp/decl.c:7961
+#: cp/decl.c:8138
#, gcc-internal-format
msgid "member functions are implicitly friends of their class"
msgstr ""
@@ -19099,97 +23893,97 @@ msgstr ""
#. the rest of the compiler does not correctly
#. handle the initialization unless the member is
#. static so we make it static below.
-#: cp/decl.c:8001
+#: cp/decl.c:8178
#, gcc-internal-format
msgid "ISO C++ forbids initialization of member %qD"
msgstr ""
-#: cp/decl.c:8003
+#: cp/decl.c:8180
#, gcc-internal-format
msgid "making %qD static"
msgstr ""
-#: cp/decl.c:8061
+#: cp/decl.c:8238
#, gcc-internal-format
msgid "storage class %<auto%> invalid for function %qs"
msgstr ""
-#: cp/decl.c:8063
+#: cp/decl.c:8240
#, gcc-internal-format
msgid "storage class %<register%> invalid for function %qs"
msgstr ""
-#: cp/decl.c:8065
+#: cp/decl.c:8242
#, gcc-internal-format
msgid "storage class %<__thread%> invalid for function %qs"
msgstr ""
-#: cp/decl.c:8076
+#: cp/decl.c:8253
#, gcc-internal-format
msgid ""
"%<static%> specified invalid for function %qs declared out of global scope"
msgstr ""
-#: cp/decl.c:8079
+#: cp/decl.c:8256
#, gcc-internal-format
msgid ""
"%<inline%> specifier invalid for function %qs declared out of global scope"
msgstr ""
-#: cp/decl.c:8087
+#: cp/decl.c:8264
#, gcc-internal-format
msgid "virtual non-class function %qs"
msgstr ""
-#: cp/decl.c:8118
+#: cp/decl.c:8295
#, gcc-internal-format
msgid "cannot declare member function %qD to have static linkage"
msgstr ""
#. FIXME need arm citation
-#: cp/decl.c:8125
+#: cp/decl.c:8302
#, gcc-internal-format
msgid "cannot declare static function inside another function"
msgstr ""
-#: cp/decl.c:8154
+#: cp/decl.c:8331
#, gcc-internal-format
msgid ""
"%<static%> may not be used when defining (as opposed to declaring) a static "
"data member"
msgstr ""
-#: cp/decl.c:8161
+#: cp/decl.c:8338
#, gcc-internal-format
msgid "static member %qD declared %<register%>"
msgstr ""
-#: cp/decl.c:8166
+#: cp/decl.c:8343
#, gcc-internal-format
msgid "cannot explicitly declare member %q#D to have extern linkage"
msgstr ""
-#: cp/decl.c:8309
+#: cp/decl.c:8488
#, gcc-internal-format
msgid "default argument for %q#D has type %qT"
msgstr ""
-#: cp/decl.c:8312
+#: cp/decl.c:8491
#, gcc-internal-format
msgid "default argument for parameter of type %qT has type %qT"
msgstr ""
-#: cp/decl.c:8329
+#: cp/decl.c:8508
#, gcc-internal-format
msgid "default argument %qE uses local variable %qD"
msgstr ""
-#: cp/decl.c:8397
+#: cp/decl.c:8576
#, gcc-internal-format
msgid "parameter %qD invalidly declared method type"
msgstr ""
-#: cp/decl.c:8421
+#: cp/decl.c:8600
#, gcc-internal-format
msgid "parameter %qD includes %s to array of unknown bound %qT"
msgstr ""
@@ -19209,134 +24003,134 @@ msgstr ""
#. or implicitly defined), there's no need to worry about their
#. existence. Theoretically, they should never even be
#. instantiated, but that's hard to forestall.
-#: cp/decl.c:8580
+#: cp/decl.c:8759
#, gcc-internal-format
msgid "invalid constructor; you probably meant %<%T (const %T&)%>"
msgstr ""
-#: cp/decl.c:8699
+#: cp/decl.c:8878
#, gcc-internal-format
msgid "%qD may not be declared within a namespace"
msgstr ""
-#: cp/decl.c:8701
+#: cp/decl.c:8880
#, gcc-internal-format
msgid "%qD may not be declared as static"
msgstr ""
-#: cp/decl.c:8722
+#: cp/decl.c:8901
#, gcc-internal-format
msgid "%qD must be a nonstatic member function"
msgstr ""
-#: cp/decl.c:8731
+#: cp/decl.c:8910
#, gcc-internal-format
msgid ""
"%qD must be either a non-static member function or a non-member function"
msgstr ""
-#: cp/decl.c:8751
+#: cp/decl.c:8930
#, gcc-internal-format
msgid "%qD must have an argument of class or enumerated type"
msgstr ""
-#: cp/decl.c:8792
+#: cp/decl.c:8971
#, gcc-internal-format
msgid "conversion to %s%s will never use a type conversion operator"
msgstr ""
#. 13.4.0.3
-#: cp/decl.c:8799
+#: cp/decl.c:8978
#, gcc-internal-format
msgid "ISO C++ prohibits overloading operator ?:"
msgstr ""
-#: cp/decl.c:8849
+#: cp/decl.c:9028
#, gcc-internal-format
msgid "postfix %qD must take %<int%> as its argument"
msgstr ""
-#: cp/decl.c:8853
+#: cp/decl.c:9032
#, gcc-internal-format
msgid "postfix %qD must take %<int%> as its second argument"
msgstr ""
-#: cp/decl.c:8860
+#: cp/decl.c:9039
#, gcc-internal-format
msgid "%qD must take either zero or one argument"
msgstr ""
-#: cp/decl.c:8862
+#: cp/decl.c:9041
#, gcc-internal-format
msgid "%qD must take either one or two arguments"
msgstr ""
-#: cp/decl.c:8883
+#: cp/decl.c:9062
#, gcc-internal-format
msgid "prefix %qD should return %qT"
msgstr ""
-#: cp/decl.c:8889
+#: cp/decl.c:9068
#, gcc-internal-format
msgid "postfix %qD should return %qT"
msgstr ""
-#: cp/decl.c:8898
+#: cp/decl.c:9077
#, gcc-internal-format
msgid "%qD must take %<void%>"
msgstr ""
-#: cp/decl.c:8900 cp/decl.c:8908
+#: cp/decl.c:9079 cp/decl.c:9087
#, gcc-internal-format
msgid "%qD must take exactly one argument"
msgstr ""
-#: cp/decl.c:8910
+#: cp/decl.c:9089
#, gcc-internal-format
msgid "%qD must take exactly two arguments"
msgstr ""
-#: cp/decl.c:8918
+#: cp/decl.c:9097
#, gcc-internal-format
msgid "user-defined %qD always evaluates both arguments"
msgstr ""
-#: cp/decl.c:8932
+#: cp/decl.c:9111
#, gcc-internal-format
msgid "%qD should return by value"
msgstr ""
-#: cp/decl.c:8944 cp/decl.c:8947
+#: cp/decl.c:9123 cp/decl.c:9126
#, gcc-internal-format
msgid "%qD cannot have default arguments"
msgstr ""
-#: cp/decl.c:9004
+#: cp/decl.c:9183
#, gcc-internal-format
msgid "using template type parameter %qT after %qs"
msgstr ""
-#: cp/decl.c:9019
+#: cp/decl.c:9198
#, gcc-internal-format
msgid "using typedef-name %qD after %qs"
msgstr ""
-#: cp/decl.c:9020
+#: cp/decl.c:9199
#, gcc-internal-format
-msgid "%qD has a previous declaration here"
+msgid "%q+D has a previous declaration here"
msgstr ""
-#: cp/decl.c:9028
+#: cp/decl.c:9207
#, gcc-internal-format
msgid "%qT referred to as %qs"
msgstr ""
-#: cp/decl.c:9029 cp/decl.c:9037
+#: cp/decl.c:9208 cp/decl.c:9215
#, gcc-internal-format
-msgid "%qT has a previous declaration here"
+msgid "%q+T has a previous declaration here"
msgstr ""
-#: cp/decl.c:9036
+#: cp/decl.c:9214
#, gcc-internal-format
msgid "%qT referred to as enum"
msgstr ""
@@ -19348,62 +24142,62 @@ msgstr ""
#. void f(class C); // No template header here
#.
#. then the required template argument is missing.
-#: cp/decl.c:9051
+#: cp/decl.c:9229
#, gcc-internal-format
msgid "template argument required for %<%s %T%>"
msgstr ""
-#: cp/decl.c:9099 cp/name-lookup.c:2601
+#: cp/decl.c:9277 cp/name-lookup.c:2628
#, gcc-internal-format
msgid "%qD has the same name as the class in which it is declared"
msgstr ""
-#: cp/decl.c:9237
+#: cp/decl.c:9415
#, gcc-internal-format
msgid "use of enum %q#D without previous declaration"
msgstr ""
-#: cp/decl.c:9255
+#: cp/decl.c:9433
#, gcc-internal-format
msgid "redeclaration of %qT as a non-template"
msgstr ""
-#: cp/decl.c:9362
+#: cp/decl.c:9540
#, gcc-internal-format
msgid "derived union %qT invalid"
msgstr ""
-#: cp/decl.c:9368
+#: cp/decl.c:9546
#, gcc-internal-format
msgid "Java class %qT cannot have multiple bases"
msgstr ""
-#: cp/decl.c:9376
+#: cp/decl.c:9554
#, gcc-internal-format
msgid "Java class %qT cannot have virtual bases"
msgstr ""
-#: cp/decl.c:9395
+#: cp/decl.c:9573
#, gcc-internal-format
msgid "base type %qT fails to be a struct or class type"
msgstr ""
-#: cp/decl.c:9428
+#: cp/decl.c:9606
#, gcc-internal-format
msgid "recursive type %qT undefined"
msgstr ""
-#: cp/decl.c:9430
+#: cp/decl.c:9608
#, gcc-internal-format
msgid "duplicate base type %qT invalid"
msgstr ""
-#: cp/decl.c:9500
+#: cp/decl.c:9678
#, gcc-internal-format
msgid "multiple definition of %q#T"
msgstr ""
-#: cp/decl.c:9501
+#: cp/decl.c:9679
#, gcc-internal-format
msgid "%Jprevious definition here"
msgstr ""
@@ -19412,84 +24206,84 @@ msgstr ""
#.
#. IF no integral type can represent all the enumerator values, the
#. enumeration is ill-formed.
-#: cp/decl.c:9638
+#: cp/decl.c:9816
#, gcc-internal-format
msgid "no integral type can represent all of the enumerator values for %qT"
msgstr ""
-#: cp/decl.c:9744
+#: cp/decl.c:9922
#, gcc-internal-format
msgid "enumerator value for %qD not integer constant"
msgstr ""
-#: cp/decl.c:9771
+#: cp/decl.c:9949
#, gcc-internal-format
msgid "overflow in enumeration values at %qD"
msgstr ""
-#: cp/decl.c:9842
+#: cp/decl.c:10020
#, gcc-internal-format
msgid "return type %q#T is incomplete"
msgstr ""
-#: cp/decl.c:9958 cp/typeck.c:6233
+#: cp/decl.c:10137 cp/typeck.c:6274
#, gcc-internal-format
msgid "%<operator=%> should return a reference to %<*this%>"
msgstr ""
-#: cp/decl.c:10286
+#: cp/decl.c:10472
#, gcc-internal-format
msgid "parameter %qD declared void"
msgstr ""
-#: cp/decl.c:10779
+#: cp/decl.c:10965
#, gcc-internal-format
msgid "invalid member function declaration"
msgstr ""
-#: cp/decl.c:10794
+#: cp/decl.c:10980
#, gcc-internal-format
msgid "%qD is already defined in class %qT"
msgstr ""
-#: cp/decl.c:11004
+#: cp/decl.c:11190
#, gcc-internal-format
msgid "static member function %q#D declared with type qualifiers"
msgstr ""
-#: cp/decl2.c:271
+#: cp/decl2.c:273
#, gcc-internal-format
msgid "name missing for member function"
msgstr ""
-#: cp/decl2.c:364 cp/decl2.c:378
+#: cp/decl2.c:366 cp/decl2.c:380
#, gcc-internal-format
msgid "ambiguous conversion for array subscript"
msgstr ""
-#: cp/decl2.c:372
+#: cp/decl2.c:374
#, gcc-internal-format
msgid "invalid types %<%T[%T]%> for array subscript"
msgstr ""
-#: cp/decl2.c:415
+#: cp/decl2.c:417
#, gcc-internal-format
msgid "deleting array %q#D"
msgstr ""
-#: cp/decl2.c:421
+#: cp/decl2.c:423
#, gcc-internal-format
msgid "type %q#T argument given to %<delete%>, expected pointer"
msgstr ""
-#: cp/decl2.c:433
+#: cp/decl2.c:435
#, gcc-internal-format
msgid ""
"cannot delete a function. Only pointer-to-objects are valid arguments to %"
"<delete%>"
msgstr ""
-#: cp/decl2.c:441
+#: cp/decl2.c:443
#, gcc-internal-format
msgid "deleting %qT is undefined"
msgstr ""
@@ -19497,147 +24291,146 @@ msgstr ""
#. 14.5.2.2 [temp.mem]
#.
#. A local class shall not have member templates.
-#: cp/decl2.c:477
+#: cp/decl2.c:479
#, gcc-internal-format
msgid "invalid declaration of member template %q#D in local class"
msgstr ""
-#: cp/decl2.c:486
+#: cp/decl2.c:488
#, gcc-internal-format
msgid "invalid use of %<virtual%> in template declaration of %q#D"
msgstr ""
-#: cp/decl2.c:496 cp/pt.c:2967
+#: cp/decl2.c:498 cp/pt.c:3007
#, gcc-internal-format
msgid "template declaration of %q#D"
msgstr ""
-#: cp/decl2.c:545
+#: cp/decl2.c:547
#, gcc-internal-format
msgid "Java method %qD has non-Java return type %qT"
msgstr ""
-#: cp/decl2.c:561
+#: cp/decl2.c:563
#, gcc-internal-format
msgid "Java method %qD has non-Java parameter type %qT"
msgstr ""
-#: cp/decl2.c:666
+#: cp/decl2.c:668
#, gcc-internal-format
msgid "prototype for %q#D does not match any in class %qT"
msgstr ""
-#: cp/decl2.c:763
+#: cp/decl2.c:765
#, gcc-internal-format
msgid "local class %q#T shall not have static data member %q#D"
msgstr ""
-#: cp/decl2.c:771
+#: cp/decl2.c:773
#, gcc-internal-format
msgid "initializer invalid for static member with constructor"
msgstr ""
-#: cp/decl2.c:774
+#: cp/decl2.c:776
#, gcc-internal-format
msgid "(an out of class initialization is required)"
msgstr ""
-#: cp/decl2.c:855
+#: cp/decl2.c:857
#, gcc-internal-format
msgid "member %qD conflicts with virtual function table field name"
msgstr ""
-#: cp/decl2.c:874
+#: cp/decl2.c:876
#, gcc-internal-format
msgid "applying attributes to template parameters is not implemented"
msgstr ""
-#: cp/decl2.c:884
+#: cp/decl2.c:886
#, gcc-internal-format
msgid "%qD is already defined in %qT"
msgstr ""
-#: cp/decl2.c:932
+#: cp/decl2.c:907
+#, gcc-internal-format
+msgid "initializer specified for static member function %qD"
+msgstr ""
+
+#: cp/decl2.c:930
#, gcc-internal-format
msgid "field initializer is not constant"
msgstr ""
-#: cp/decl2.c:960
+#: cp/decl2.c:957
#, gcc-internal-format
msgid "%<asm%> specifiers are not permitted on non-static data members"
msgstr ""
-#: cp/decl2.c:1006
+#: cp/decl2.c:1003
#, gcc-internal-format
msgid "cannot declare %qD to be a bit-field type"
msgstr ""
-#: cp/decl2.c:1016
+#: cp/decl2.c:1013
#, gcc-internal-format
msgid "cannot declare bit-field %qD with function type"
msgstr ""
-#: cp/decl2.c:1023
+#: cp/decl2.c:1020
#, gcc-internal-format
msgid "%qD is already defined in the class %qT"
msgstr ""
-#: cp/decl2.c:1030
+#: cp/decl2.c:1027
#, gcc-internal-format
msgid "static member %qD cannot be a bit-field"
msgstr ""
-#: cp/decl2.c:1075
+#: cp/decl2.c:1072
#, gcc-internal-format
msgid "anonymous struct not inside named type"
msgstr ""
-#: cp/decl2.c:1152
+#: cp/decl2.c:1155
#, gcc-internal-format
msgid "namespace-scope anonymous aggregates must be static"
msgstr ""
-#: cp/decl2.c:1159
+#: cp/decl2.c:1162
#, gcc-internal-format
msgid "anonymous union with no members"
msgstr ""
-#: cp/decl2.c:1195
+#: cp/decl2.c:1198
#, gcc-internal-format
msgid "%<operator new%> must return type %qT"
msgstr ""
-#: cp/decl2.c:1204
+#: cp/decl2.c:1207
#, gcc-internal-format
msgid "%<operator new%> takes type %<size_t%> (%qT) as first parameter"
msgstr ""
-#: cp/decl2.c:1233
+#: cp/decl2.c:1236
#, gcc-internal-format
msgid "%<operator delete%> must return type %qT"
msgstr ""
-#: cp/decl2.c:1242
+#: cp/decl2.c:1245
#, gcc-internal-format
msgid "%<operator delete%> takes type %qT as first parameter"
msgstr ""
-#: cp/decl2.c:3064
+#: cp/decl2.c:3072
#, gcc-internal-format
-msgid "inline function %qD used but never defined"
+msgid "inline function %q+D used but never defined"
msgstr ""
-#: cp/decl2.c:3215
+#: cp/decl2.c:3228
#, gcc-internal-format
msgid "default argument missing for parameter %P of %q+#D"
msgstr ""
-#. damn ICE suppression
-#: cp/error.c:2368
-#, gcc-internal-format
-msgid "unexpected letter %qc in locate_error\n"
-msgstr ""
-
#. Can't throw a reference.
#: cp/except.c:267
#, gcc-internal-format
@@ -19665,7 +24458,7 @@ msgstr ""
msgid "throwing NULL, which has integral, not pointer type"
msgstr ""
-#: cp/except.c:630 cp/init.c:1887
+#: cp/except.c:630 cp/init.c:1903
#, gcc-internal-format
msgid "%qD should never be overloaded"
msgstr ""
@@ -19778,236 +24571,241 @@ msgid ""
"template-friend disables this warning"
msgstr ""
-#: cp/init.c:326
+#: cp/init.c:327
#, gcc-internal-format
msgid "%J%qD should be initialized in the member initialization list"
msgstr ""
-#: cp/init.c:373
+#: cp/init.c:375
#, gcc-internal-format
msgid "%Jdefault-initialization of %q#D, which has reference type"
msgstr ""
-#: cp/init.c:379
+#: cp/init.c:381
#, gcc-internal-format
msgid "%Juninitialized reference member %qD"
msgstr ""
-#: cp/init.c:382
+#: cp/init.c:384
#, gcc-internal-format
msgid "%Juninitialized member %qD with %<const%> type %qT"
msgstr ""
-#: cp/init.c:525
+#: cp/init.c:527
#, gcc-internal-format
-msgid "%qD will be initialized after"
+msgid "%q+D will be initialized after"
msgstr ""
-#: cp/init.c:528
+#: cp/init.c:530
#, gcc-internal-format
msgid "base %qT will be initialized after"
msgstr ""
-#: cp/init.c:531
+#: cp/init.c:533
#, gcc-internal-format
-msgid " %q#D"
+msgid " %q+#D"
msgstr ""
-#: cp/init.c:533
+#: cp/init.c:535
#, gcc-internal-format
msgid " base %qT"
msgstr ""
-#: cp/init.c:534
+#: cp/init.c:536
#, gcc-internal-format
msgid "%J when initialized here"
msgstr ""
-#: cp/init.c:550
+#: cp/init.c:552
#, gcc-internal-format
msgid "%Jmultiple initializations given for %qD"
msgstr ""
-#: cp/init.c:553
+#: cp/init.c:555
#, gcc-internal-format
msgid "%Jmultiple initializations given for base %qT"
msgstr ""
-#: cp/init.c:620
+#: cp/init.c:622
#, gcc-internal-format
msgid "%Jinitializations for multiple members of %qT"
msgstr ""
-#: cp/init.c:682
+#: cp/init.c:684
#, gcc-internal-format
msgid ""
"%Jbase class %q#T should be explicitly initialized in the copy constructor"
msgstr ""
-#: cp/init.c:906 cp/init.c:925
+#: cp/init.c:908 cp/init.c:927
#, gcc-internal-format
msgid "class %qT does not have any field named %qD"
msgstr ""
-#: cp/init.c:912
+#: cp/init.c:914
#, gcc-internal-format
msgid ""
"%q#D is a static data member; it can only be initialized at its definition"
msgstr ""
-#: cp/init.c:919
+#: cp/init.c:921
#, gcc-internal-format
msgid "%q#D is not a non-static data member of %qT"
msgstr ""
-#: cp/init.c:958
+#: cp/init.c:960
#, gcc-internal-format
msgid "unnamed initializer for %qT, which has no base classes"
msgstr ""
-#: cp/init.c:966
+#: cp/init.c:968
#, gcc-internal-format
msgid "unnamed initializer for %qT, which uses multiple inheritance"
msgstr ""
-#: cp/init.c:1012
+#: cp/init.c:1014
#, gcc-internal-format
msgid "%qD is both a direct base and an indirect virtual base"
msgstr ""
-#: cp/init.c:1020
+#: cp/init.c:1022
#, gcc-internal-format
msgid "type %qD is not a direct or virtual base of %qT"
msgstr ""
-#: cp/init.c:1023
+#: cp/init.c:1025
#, gcc-internal-format
msgid "type %qD is not a direct base of %qT"
msgstr ""
-#: cp/init.c:1103
+#: cp/init.c:1105
#, gcc-internal-format
msgid "bad array initializer"
msgstr ""
-#: cp/init.c:1302
+#: cp/init.c:1305
#, gcc-internal-format
msgid "%qT is not an aggregate type"
msgstr ""
-#: cp/init.c:1394
+#: cp/init.c:1397
#, gcc-internal-format
msgid "qualified type %qT does not match destructor name %<~%T%>"
msgstr ""
-#: cp/init.c:1402
+#: cp/init.c:1405
#, gcc-internal-format
msgid "incomplete type %qT does not have member %qD"
msgstr ""
-#: cp/init.c:1421
+#: cp/init.c:1424
#, gcc-internal-format
msgid "%qD is not a member of type %qT"
msgstr ""
-#: cp/init.c:1440
+#: cp/init.c:1443
#, gcc-internal-format
msgid "invalid pointer to bit-field %qD"
msgstr ""
-#: cp/init.c:1542
+#: cp/init.c:1545
#, gcc-internal-format
msgid "invalid use of non-static member function %qD"
msgstr ""
-#: cp/init.c:1548 cp/semantics.c:1348
+#: cp/init.c:1551
#, gcc-internal-format
msgid "invalid use of non-static data member %qD"
msgstr ""
-#: cp/init.c:1645
+#: cp/init.c:1661
#, gcc-internal-format
msgid "size in array new must have integral type"
msgstr ""
-#: cp/init.c:1648
+#: cp/init.c:1664
#, gcc-internal-format
msgid "zero size array reserves no space"
msgstr ""
-#: cp/init.c:1656
+#: cp/init.c:1672
#, gcc-internal-format
msgid "new cannot be applied to a reference type"
msgstr ""
-#: cp/init.c:1662
+#: cp/init.c:1678
#, gcc-internal-format
msgid "new cannot be applied to a function type"
msgstr ""
-#: cp/init.c:1694
+#: cp/init.c:1710
#, gcc-internal-format
msgid "call to Java constructor, while %<jclass%> undefined"
msgstr ""
-#: cp/init.c:1710
+#: cp/init.c:1726
#, gcc-internal-format
msgid "can't find class$"
msgstr ""
-#: cp/init.c:1838
+#: cp/init.c:1854
#, gcc-internal-format
msgid "invalid type %<void%> for new"
msgstr ""
-#: cp/init.c:1848
+#: cp/init.c:1864
#, gcc-internal-format
msgid "uninitialized const in %<new%> of %q#T"
msgstr ""
-#: cp/init.c:1882
+#: cp/init.c:1898
#, gcc-internal-format
msgid "call to Java constructor with %qs undefined"
msgstr ""
-#: cp/init.c:1922
+#: cp/init.c:1938
+#, gcc-internal-format
+msgid "no suitable %qD found in class %qT"
+msgstr ""
+
+#: cp/init.c:1943
#, gcc-internal-format
msgid "request for member %qD is ambiguous"
msgstr ""
-#: cp/init.c:2055
+#: cp/init.c:2083
#, gcc-internal-format
msgid "ISO C++ forbids initialization in array new"
msgstr ""
-#: cp/init.c:2530
+#: cp/init.c:2571
#, gcc-internal-format
msgid "initializer ends prematurely"
msgstr ""
-#: cp/init.c:2583
+#: cp/init.c:2626
#, gcc-internal-format
msgid "cannot initialize multi-dimensional array with initializer"
msgstr ""
-#: cp/init.c:2738
+#: cp/init.c:2787
#, gcc-internal-format
msgid "possible problem detected in invocation of delete operator:"
msgstr ""
-#: cp/init.c:2741
+#: cp/init.c:2790
#, gcc-internal-format
msgid ""
"neither the destructor nor the class-specific operator delete will be "
"called, even if they are declared when the class is defined."
msgstr ""
-#: cp/init.c:2762
+#: cp/init.c:2811
#, gcc-internal-format
msgid "unknown array size in delete"
msgstr ""
-#: cp/init.c:2995
+#: cp/init.c:3044
#, gcc-internal-format
msgid "type to vector delete is neither pointer or array type"
msgstr ""
@@ -20071,54 +24869,54 @@ msgid ""
"use of an undeclared name is deprecated)"
msgstr ""
-#: cp/mangle.c:2139
+#: cp/mangle.c:2138
#, gcc-internal-format
msgid "call_expr cannot be mangled due to a defect in the C++ ABI"
msgstr ""
-#: cp/mangle.c:2147
+#: cp/mangle.c:2146
#, gcc-internal-format
msgid "zero-operand casts cannot be mangled due to a defect in the C++ ABI"
msgstr ""
-#: cp/mangle.c:2197
+#: cp/mangle.c:2196
#, gcc-internal-format
msgid "omitted middle operand to %<?:%> operand cannot be mangled"
msgstr ""
-#: cp/mangle.c:2507
+#: cp/mangle.c:2506
#, gcc-internal-format
msgid "the mangled name of %qD will change in a future version of GCC"
msgstr ""
-#: cp/method.c:456
+#: cp/method.c:457
#, gcc-internal-format
msgid "generic thunk code fails for method %q#D which uses %<...%>"
msgstr ""
-#: cp/method.c:691
+#: cp/method.c:692
#, gcc-internal-format
msgid "non-static const member %q#D, can't use default assignment operator"
msgstr ""
-#: cp/method.c:697
+#: cp/method.c:698
#, gcc-internal-format
msgid "non-static reference member %q#D, can't use default assignment operator"
msgstr ""
-#: cp/method.c:809
+#: cp/method.c:810
#, gcc-internal-format
msgid "%Hsynthesized method %qD first required here "
msgstr ""
-#: cp/method.c:1136
+#: cp/method.c:1137
#, gcc-internal-format
msgid ""
"vtable layout for class %qT may not be ABI-compliantand may change in a "
"future version of GCC due to implicit virtual destructor"
msgstr ""
-#: cp/name-lookup.c:692
+#: cp/name-lookup.c:694
#, gcc-internal-format
msgid "redeclaration of %<wchar_t%> as %qT"
msgstr ""
@@ -20129,486 +24927,475 @@ msgstr ""
#. [basic.start.main]
#.
#. This function shall not be overloaded.
-#: cp/name-lookup.c:724
+#: cp/name-lookup.c:726
#, gcc-internal-format
-msgid "invalid redeclaration of %qD"
+msgid "invalid redeclaration of %q+D"
msgstr ""
-#: cp/name-lookup.c:725
+#: cp/name-lookup.c:727
#, gcc-internal-format
msgid "as %qD"
msgstr ""
-#: cp/name-lookup.c:813
+#: cp/name-lookup.c:815
#, gcc-internal-format
msgid "type mismatch with previous external decl of %q#D"
msgstr ""
-#: cp/name-lookup.c:814
+#: cp/name-lookup.c:816
#, gcc-internal-format
-msgid "previous external decl of %q#D"
+msgid "previous external decl of %q+#D"
msgstr ""
-#: cp/name-lookup.c:896
+#: cp/name-lookup.c:907
#, gcc-internal-format
msgid "extern declaration of %q#D doesn't match"
msgstr ""
-#: cp/name-lookup.c:897
+#: cp/name-lookup.c:908
#, gcc-internal-format
-msgid "global declaration %q#D"
+msgid "global declaration %q+#D"
msgstr ""
-#: cp/name-lookup.c:933 cp/name-lookup.c:940
+#: cp/name-lookup.c:944 cp/name-lookup.c:951
#, gcc-internal-format
msgid "declaration of %q#D shadows a parameter"
msgstr ""
#. Location of previous decl is not useful in this case.
-#: cp/name-lookup.c:965
+#: cp/name-lookup.c:976
#, gcc-internal-format
msgid "declaration of %qD shadows a member of 'this'"
msgstr ""
-#: cp/name-lookup.c:971
+#: cp/name-lookup.c:982
#, gcc-internal-format
msgid "declaration of %qD shadows a previous local"
msgstr ""
-#: cp/name-lookup.c:978
+#: cp/name-lookup.c:989
#, gcc-internal-format
msgid "declaration of %qD shadows a global declaration"
msgstr ""
-#: cp/name-lookup.c:1094
+#: cp/name-lookup.c:1115
#, gcc-internal-format
msgid "name lookup of %qD changed"
msgstr ""
-#: cp/name-lookup.c:1095
+#: cp/name-lookup.c:1116
#, gcc-internal-format
-msgid " matches this %qD under ISO standard rules"
+msgid " matches this %q+D under ISO standard rules"
msgstr ""
-#: cp/name-lookup.c:1097
+#: cp/name-lookup.c:1118
#, gcc-internal-format
-msgid " matches this %qD under old rules"
+msgid " matches this %q+D under old rules"
msgstr ""
-#: cp/name-lookup.c:1115 cp/name-lookup.c:1123
+#: cp/name-lookup.c:1136 cp/name-lookup.c:1144
#, gcc-internal-format
msgid "name lookup of %qD changed for new ISO %<for%> scoping"
msgstr ""
-#: cp/name-lookup.c:1117
+#: cp/name-lookup.c:1138
#, gcc-internal-format
-msgid " cannot use obsolete binding at %qD because it has a destructor"
+msgid " cannot use obsolete binding at %q+D because it has a destructor"
msgstr ""
-#: cp/name-lookup.c:1125
+#: cp/name-lookup.c:1146
#, gcc-internal-format
-msgid " using obsolete binding at %qD"
+msgid " using obsolete binding at %q+D"
msgstr ""
-#: cp/name-lookup.c:1178
+#: cp/name-lookup.c:1199
#, gcc-internal-format
msgid "%s %s(%E) %p %d\n"
msgstr ""
-#: cp/name-lookup.c:1181
+#: cp/name-lookup.c:1202
#, gcc-internal-format
msgid "%s %s %p %d\n"
msgstr ""
-#: cp/name-lookup.c:1307
+#: cp/name-lookup.c:1328
#, gcc-internal-format
msgid "XXX is_class_level != (current_scope == class_scope)\n"
msgstr ""
-#: cp/name-lookup.c:1863
+#: cp/name-lookup.c:1886
#, gcc-internal-format
msgid "%q#D hides constructor for %q#T"
msgstr ""
-#: cp/name-lookup.c:1879
+#: cp/name-lookup.c:1902
#, gcc-internal-format
msgid "%q#D conflicts with previous using declaration %q#D"
msgstr ""
-#: cp/name-lookup.c:1898
+#: cp/name-lookup.c:1922
#, gcc-internal-format
-msgid "previous non-function declaration %q#D"
+msgid "previous non-function declaration %q+#D"
msgstr ""
-#: cp/name-lookup.c:1899
+#: cp/name-lookup.c:1923
#, gcc-internal-format
msgid "conflicts with function declaration %q#D"
msgstr ""
#. It's a nested name with template parameter dependent scope.
#. This can only be using-declaration for class member.
-#: cp/name-lookup.c:1977 cp/name-lookup.c:2002 cp/name-lookup.c:3208
+#: cp/name-lookup.c:2001 cp/name-lookup.c:2026
#, gcc-internal-format
msgid "%qT is not a namespace"
msgstr ""
#. 7.3.3/5
#. A using-declaration shall not name a template-id.
-#: cp/name-lookup.c:1987
+#: cp/name-lookup.c:2011
#, gcc-internal-format
msgid "a using-declaration cannot specify a template-id. Try %<using %D%>"
msgstr ""
-#: cp/name-lookup.c:1994
+#: cp/name-lookup.c:2018
#, gcc-internal-format
msgid "namespace %qD not allowed in using-declaration"
msgstr ""
-#: cp/name-lookup.c:2030
+#: cp/name-lookup.c:2054
#, gcc-internal-format
msgid "%qD not declared"
msgstr ""
-#: cp/name-lookup.c:2050 cp/name-lookup.c:2086 cp/name-lookup.c:2120
+#: cp/name-lookup.c:2075 cp/name-lookup.c:2112 cp/name-lookup.c:2146
#, gcc-internal-format
msgid "%qD is already declared in this scope"
msgstr ""
-#: cp/name-lookup.c:2126
+#: cp/name-lookup.c:2152
#, gcc-internal-format
msgid "using declaration %qD introduced ambiguous type %qT"
msgstr ""
-#: cp/name-lookup.c:2699
+#: cp/name-lookup.c:2726
#, gcc-internal-format
msgid "using-declaration for non-member at class scope"
msgstr ""
-#: cp/name-lookup.c:2725
+#: cp/name-lookup.c:2752
#, gcc-internal-format
msgid "%<%T::%D%> names destructor"
msgstr ""
-#: cp/name-lookup.c:2730
+#: cp/name-lookup.c:2757
#, gcc-internal-format
msgid "%<%T::%D%> names constructor"
msgstr ""
-#: cp/name-lookup.c:2735
+#: cp/name-lookup.c:2762
#, gcc-internal-format
msgid "%<%T::%D%> names constructor in %qT"
msgstr ""
-#: cp/name-lookup.c:2751
+#: cp/name-lookup.c:2778
#, gcc-internal-format
msgid "no members matching %<%T::%D%> in %q#T"
msgstr ""
-#: cp/name-lookup.c:2820
+#: cp/name-lookup.c:2847
#, gcc-internal-format
msgid "declaration of %qD not in a namespace surrounding %qD"
msgstr ""
-#: cp/name-lookup.c:2828
+#: cp/name-lookup.c:2855
#, gcc-internal-format
-msgid "explicit qualification in declaration of `%D'"
+msgid "explicit qualification in declaration of %qD"
msgstr ""
-#: cp/name-lookup.c:2864
+#: cp/name-lookup.c:2891
#, gcc-internal-format
msgid "%qD should have been declared inside %qD"
msgstr ""
-#: cp/name-lookup.c:2926
+#: cp/name-lookup.c:2953
#, gcc-internal-format
msgid "namespace alias %qD not allowed here, assuming %qD"
msgstr ""
-#. The parser did not find it, so it's not there.
-#: cp/name-lookup.c:3041
-#, gcc-internal-format
-msgid "unknown namespace %qD"
-msgstr ""
-
-#: cp/name-lookup.c:3202
-#, gcc-internal-format
-msgid "namespace %qT undeclared"
-msgstr ""
-
-#: cp/name-lookup.c:3246
+#: cp/name-lookup.c:3260
#, gcc-internal-format
msgid "strong using only meaningful at namespace scope"
msgstr ""
-#: cp/name-lookup.c:3253
+#: cp/name-lookup.c:3267
#, gcc-internal-format
msgid "%qD attribute directive ignored"
msgstr ""
-#: cp/name-lookup.c:3388
+#: cp/name-lookup.c:3410
#, gcc-internal-format
msgid "use of %qD is ambiguous"
msgstr ""
-#: cp/name-lookup.c:3389
+#: cp/name-lookup.c:3411
#, gcc-internal-format
-msgid " first declared as %q#D here"
+msgid " first declared as %q+#D here"
msgstr ""
-#: cp/name-lookup.c:3391
+#: cp/name-lookup.c:3413
#, gcc-internal-format
-msgid " also declared as %q#D here"
+msgid " also declared as %q+#D here"
msgstr ""
-#: cp/name-lookup.c:3406
+#: cp/name-lookup.c:3428
#, gcc-internal-format
msgid "%qD denotes an ambiguous type"
msgstr ""
-#: cp/name-lookup.c:3407
+#: cp/name-lookup.c:3429
#, gcc-internal-format
msgid "%J first type here"
msgstr ""
-#: cp/name-lookup.c:3408
+#: cp/name-lookup.c:3430
#, gcc-internal-format
msgid "%J other type here"
msgstr ""
#. This happens for A::B where B is a template, and there are no
#. template arguments.
-#: cp/name-lookup.c:3486 cp/parser.c:4490 cp/typeck.c:1802
+#: cp/name-lookup.c:3540 cp/parser.c:4489 cp/typeck.c:1801
#, gcc-internal-format
msgid "invalid use of %qD"
msgstr ""
-#: cp/name-lookup.c:3526
+#: cp/name-lookup.c:3580
#, gcc-internal-format
msgid "%<%D::%D%> is not a template"
msgstr ""
-#: cp/name-lookup.c:3541
+#: cp/name-lookup.c:3595
#, gcc-internal-format
msgid "%qD undeclared in namespace %qD"
msgstr ""
-#: cp/name-lookup.c:4168
+#: cp/name-lookup.c:4223
#, gcc-internal-format
-msgid "%qD is not a function,"
+msgid "%q+D is not a function,"
msgstr ""
-#: cp/name-lookup.c:4169
+#: cp/name-lookup.c:4224
#, gcc-internal-format
-msgid " conflict with %qD"
+msgid " conflict with %q+D"
msgstr ""
-#: cp/name-lookup.c:4954
+#: cp/name-lookup.c:5050
#, gcc-internal-format
msgid "XXX entering pop_everything ()\n"
msgstr ""
-#: cp/name-lookup.c:4963
+#: cp/name-lookup.c:5059
#, gcc-internal-format
msgid "XXX leaving pop_everything ()\n"
msgstr ""
-#: cp/parser.c:1849
+#: cp/parser.c:1850
#, gcc-internal-format
msgid "minimum/maximum operators are deprecated"
msgstr ""
-#: cp/parser.c:1869
+#: cp/parser.c:1870
#, gcc-internal-format
msgid "%<#pragma%> is not allowed here"
msgstr ""
-#: cp/parser.c:1898
+#: cp/parser.c:1899
#, gcc-internal-format
msgid "%<%D::%D%> has not been declared"
msgstr ""
-#: cp/parser.c:1901 cp/semantics.c:2416
+#: cp/parser.c:1902 cp/semantics.c:2357
#, gcc-internal-format
msgid "%<::%D%> has not been declared"
msgstr ""
-#: cp/parser.c:1904
+#: cp/parser.c:1905
#, gcc-internal-format
msgid "request for member %qD in non-class type %qT"
msgstr ""
-#: cp/parser.c:1907
+#: cp/parser.c:1908
#, gcc-internal-format
msgid "%<%T::%D%> has not been declared"
msgstr ""
-#: cp/parser.c:1910
+#: cp/parser.c:1911
#, gcc-internal-format
msgid "%qD has not been declared"
msgstr ""
-#: cp/parser.c:1913
+#: cp/parser.c:1914
#, gcc-internal-format
msgid "%<%D::%D%> %s"
msgstr ""
-#: cp/parser.c:1915
+#: cp/parser.c:1916
#, gcc-internal-format
msgid "%<::%D%> %s"
msgstr ""
-#: cp/parser.c:1917
+#: cp/parser.c:1918
#, gcc-internal-format
msgid "%qD %s"
msgstr ""
-#: cp/parser.c:1969
+#: cp/parser.c:1970
#, gcc-internal-format
msgid "new types may not be defined in a return type"
msgstr ""
-#: cp/parser.c:1970
+#: cp/parser.c:1971
#, gcc-internal-format
msgid "(perhaps a semicolon is missing after the definition of %qT)"
msgstr ""
-#: cp/parser.c:1989 cp/pt.c:4336
+#: cp/parser.c:1990 cp/pt.c:4378
#, gcc-internal-format
msgid "%qT is not a template"
msgstr ""
-#: cp/parser.c:1991
+#: cp/parser.c:1992
#, gcc-internal-format
msgid "%qE is not a template"
msgstr ""
-#: cp/parser.c:1993
+#: cp/parser.c:1994
#, gcc-internal-format
msgid "invalid template-id"
msgstr ""
-#: cp/parser.c:2022
+#: cp/parser.c:2023
#, gcc-internal-format
msgid "%s cannot appear in a constant-expression"
msgstr ""
-#: cp/parser.c:2047
+#: cp/parser.c:2048
#, gcc-internal-format
msgid "invalid use of template-name %qE without an argument list"
msgstr ""
#. Issue an error message.
-#: cp/parser.c:2052
+#: cp/parser.c:2053
#, gcc-internal-format
msgid "%qE does not name a type"
msgstr ""
-#: cp/parser.c:2084
+#: cp/parser.c:2085
#, gcc-internal-format
msgid "(perhaps %<typename %T::%E%> was intended)"
msgstr ""
-#: cp/parser.c:2099
+#: cp/parser.c:2100
#, gcc-internal-format
msgid "%qE in namespace %qE does not name a type"
msgstr ""
-#: cp/parser.c:2102
+#: cp/parser.c:2103
#, gcc-internal-format
msgid "%qE in class %qT does not name a type"
msgstr ""
-#: cp/parser.c:2828
+#: cp/parser.c:2827
#, gcc-internal-format
msgid "ISO C++ forbids braced-groups within expressions"
msgstr ""
-#: cp/parser.c:2837
+#: cp/parser.c:2836
#, gcc-internal-format
msgid "statement-expressions are allowed only inside functions"
msgstr ""
-#: cp/parser.c:2888
+#: cp/parser.c:2887
#, gcc-internal-format
msgid "%<this%> may not be used in this context"
msgstr ""
-#: cp/parser.c:3035
+#: cp/parser.c:3034
#, gcc-internal-format
msgid "local variable %qD may not appear in this context"
msgstr ""
-#: cp/parser.c:3412
+#: cp/parser.c:3411
#, gcc-internal-format
msgid "typedef-name %qD used as destructor declarator"
msgstr ""
-#: cp/parser.c:4066
+#: cp/parser.c:4065
#, gcc-internal-format
msgid "ISO C++ forbids compound-literals"
msgstr ""
-#: cp/parser.c:5010
+#: cp/parser.c:5009
#, gcc-internal-format
msgid "array bound forbidden after parenthesized type-id"
msgstr ""
-#: cp/parser.c:5011
+#: cp/parser.c:5010
#, gcc-internal-format
msgid "try removing the parentheses around the type-id"
msgstr ""
-#: cp/parser.c:5213
+#: cp/parser.c:5212
#, gcc-internal-format
msgid "expression in new-declarator must have integral or enumeration type"
msgstr ""
-#: cp/parser.c:5402
+#: cp/parser.c:5401
#, gcc-internal-format
msgid "use of old-style cast"
msgstr ""
-#: cp/parser.c:6181
+#: cp/parser.c:6180
#, gcc-internal-format
msgid "case label %qE not within a switch statement"
msgstr ""
-#: cp/parser.c:6725
+#: cp/parser.c:6724
#, gcc-internal-format
msgid "ISO C++ forbids computed gotos"
msgstr ""
-#: cp/parser.c:6850
+#: cp/parser.c:6849
#, gcc-internal-format
msgid "extra %<;%>"
msgstr ""
-#: cp/parser.c:7172
+#: cp/parser.c:7173
#, gcc-internal-format
msgid "mixing declarations and function-definitions is forbidden"
msgstr ""
-#: cp/parser.c:7303
+#: cp/parser.c:7304
#, gcc-internal-format
msgid "duplicate %<friend%>"
msgstr ""
-#: cp/parser.c:7472
+#: cp/parser.c:7473
#, gcc-internal-format
msgid "class definition may not be declared a friend"
msgstr ""
-#: cp/parser.c:7786
+#: cp/parser.c:7787
#, gcc-internal-format
msgid "only constructors take base initializers"
msgstr ""
-#: cp/parser.c:7837
+#: cp/parser.c:7838
#, gcc-internal-format
msgid "anachronistic old-style base class initializer"
msgstr ""
-#: cp/parser.c:7879
+#: cp/parser.c:7880
#, gcc-internal-format
msgid ""
"keyword %<typename%> not allowed in this context (a qualified member "
@@ -20616,194 +25403,199 @@ msgid ""
msgstr ""
#. Warn that we do not support `export'.
-#: cp/parser.c:8245
+#: cp/parser.c:8246
#, gcc-internal-format
msgid "keyword %<export%> not implemented, and will be ignored"
msgstr ""
#. Otherwise, emit an error about the invalid digraph, but continue
#. parsing because we got our argument list.
-#: cp/parser.c:8618
+#: cp/parser.c:8619
#, gcc-internal-format
msgid "%<<::%> cannot begin a template-argument list"
msgstr ""
-#: cp/parser.c:8619
+#: cp/parser.c:8620
#, gcc-internal-format
msgid ""
"%<<:%> is an alternate spelling for %<[%>. Insert whitespace between %<<%> "
"and %<::%>"
msgstr ""
-#: cp/parser.c:8626
+#: cp/parser.c:8627
#, gcc-internal-format
msgid "(if you use -fpermissive G++ will accept your code)"
msgstr ""
-#: cp/parser.c:8690
+#: cp/parser.c:8691
#, gcc-internal-format
msgid "parse error in template argument list"
msgstr ""
#. Explain what went wrong.
-#: cp/parser.c:8803
+#: cp/parser.c:8804
#, gcc-internal-format
msgid "non-template %qD used as template"
msgstr ""
-#: cp/parser.c:8804
+#: cp/parser.c:8805
#, gcc-internal-format
msgid "use %<%T::template %D%> to indicate that it is a template"
msgstr ""
-#: cp/parser.c:9393 cp/parser.c:15241
+#: cp/parser.c:9394 cp/parser.c:15240
#, gcc-internal-format
msgid "template declaration of %qs"
msgstr ""
-#: cp/parser.c:9866
+#: cp/parser.c:9867
#, gcc-internal-format
msgid "using %<typename%> outside of template"
msgstr ""
-#: cp/parser.c:10061
+#: cp/parser.c:10062
#, gcc-internal-format
msgid "type attributes are honored only at type definition"
msgstr ""
+#: cp/parser.c:10256
+#, gcc-internal-format
+msgid "%qD is not a namespace-name"
+msgstr ""
+
#. [namespace.udecl]
#.
#. A using declaration shall not name a template-id.
-#: cp/parser.c:10443
+#: cp/parser.c:10446
#, gcc-internal-format
msgid "a template-id may not appear in a using-declaration"
msgstr ""
-#: cp/parser.c:10773
+#: cp/parser.c:10776
#, gcc-internal-format
msgid "an asm-specification is not allowed on a function-definition"
msgstr ""
-#: cp/parser.c:10775
+#: cp/parser.c:10778
#, gcc-internal-format
msgid "attributes are not allowed on a function-definition"
msgstr ""
-#: cp/parser.c:10907
+#: cp/parser.c:10910
#, gcc-internal-format
msgid "attributes after parenthesized initializer ignored"
msgstr ""
-#: cp/parser.c:11292
+#: cp/parser.c:11295
#, gcc-internal-format
msgid "array bound is not an integer constant"
msgstr ""
-#: cp/parser.c:11362
+#: cp/parser.c:11365
#, gcc-internal-format
msgid "%<%T::%D%> is not a type"
msgstr ""
-#: cp/parser.c:11405
+#: cp/parser.c:11408
#, gcc-internal-format
msgid "invalid use of constructor as a template"
msgstr ""
-#: cp/parser.c:11406
+#: cp/parser.c:11409
#, gcc-internal-format
msgid ""
"use %<%T::%D%> instead of %<%T::%T%> to name the constructor in a qualified "
"name"
msgstr ""
-#: cp/parser.c:11594
+#: cp/parser.c:11597
#, gcc-internal-format
msgid "duplicate cv-qualifier"
msgstr ""
-#: cp/parser.c:12126
+#: cp/parser.c:12129
#, gcc-internal-format
msgid "file ends in default argument"
msgstr ""
-#: cp/parser.c:12188
+#: cp/parser.c:12191
#, gcc-internal-format
msgid "deprecated use of default argument for parameter of non-function"
msgstr ""
-#: cp/parser.c:12191
+#: cp/parser.c:12194
#, gcc-internal-format
msgid "default arguments are only permitted for function parameters"
msgstr ""
-#: cp/parser.c:12933
+#: cp/parser.c:12930
#, gcc-internal-format
msgid "invalid class name in declaration of %qD"
msgstr ""
-#: cp/parser.c:12944
+#: cp/parser.c:12941
#, gcc-internal-format
msgid "declaration of %qD in %qD which does not enclose %qD"
msgstr ""
-#: cp/parser.c:12957
+#: cp/parser.c:12954
#, gcc-internal-format
msgid "extra qualification ignored"
msgstr ""
-#: cp/parser.c:12968
+#: cp/parser.c:12965
#, gcc-internal-format
msgid "an explicit specialization must be preceded by %<template <>%>"
msgstr ""
-#: cp/parser.c:13061
+#: cp/parser.c:13058
#, gcc-internal-format
-msgid "previous definition of %q#T"
+msgid "previous definition of %q+#T"
msgstr ""
-#: cp/parser.c:13287
+#: cp/parser.c:13284
#, gcc-internal-format
msgid "%Hextra %<;%>"
msgstr ""
-#: cp/parser.c:13305
+#: cp/parser.c:13302
#, gcc-internal-format
msgid "a class-key must be used when declaring a friend"
msgstr ""
-#: cp/parser.c:13319
+#: cp/parser.c:13316
#, gcc-internal-format
msgid "friend declaration does not name a class or function"
msgstr ""
-#: cp/parser.c:13495
+#: cp/parser.c:13492
#, gcc-internal-format
msgid "pure-specifier on function-definition"
msgstr ""
-#: cp/parser.c:13773
+#: cp/parser.c:13770
#, gcc-internal-format
msgid "keyword %<typename%> not allowed outside of templates"
msgstr ""
-#: cp/parser.c:13775
+#: cp/parser.c:13772
#, gcc-internal-format
msgid ""
"keyword %<typename%> not allowed in this context (the base class is "
"implicitly a type)"
msgstr ""
-#: cp/parser.c:14050
+#: cp/parser.c:14047
#, gcc-internal-format
msgid "invalid catch parameter"
msgstr ""
-#: cp/parser.c:14628
+#: cp/parser.c:14627
#, gcc-internal-format
msgid "reference to %qD is ambiguous"
msgstr ""
-#: cp/parser.c:14797
+#: cp/parser.c:14796
#, gcc-internal-format
msgid "too few template-parameter-lists"
msgstr ""
@@ -20812,74 +25604,74 @@ msgstr ""
#. something like:
#.
#. template <class T> template <class U> void S::f();
-#: cp/parser.c:14812
+#: cp/parser.c:14811
#, gcc-internal-format
msgid "too many template-parameter-lists"
msgstr ""
#. Skip the entire function.
-#: cp/parser.c:15036
+#: cp/parser.c:15035
#, gcc-internal-format
msgid "invalid function declaration"
msgstr ""
#. Issue an error message.
-#: cp/parser.c:15073
+#: cp/parser.c:15072
#, gcc-internal-format
msgid "named return values are no longer supported"
msgstr ""
-#: cp/parser.c:15447
+#: cp/parser.c:15451
#, gcc-internal-format
msgid "%H%<>>%> should be %<> >%> within a nested template argument list"
msgstr ""
-#: cp/parser.c:15462
+#: cp/parser.c:15466
#, gcc-internal-format
msgid "spurious %<>>%>, use %<>%> to terminate a template argument list"
msgstr ""
-#: cp/parser.c:15467
+#: cp/parser.c:15471
#, gcc-internal-format
msgid "missing %<>%> to terminate the template argument list"
msgstr ""
-#: cp/parser.c:16018
+#: cp/parser.c:16023
#, gcc-internal-format
msgid "%qs tag used in naming %q#T"
msgstr ""
-#: cp/parser.c:16039
+#: cp/parser.c:16044
#, gcc-internal-format
msgid "%qD redeclared with different access"
msgstr ""
-#: cp/parser.c:16056
+#: cp/parser.c:16061
#, gcc-internal-format
msgid "%<template%> (as a disambiguator) is only allowed within templates"
msgstr ""
-#: cp/parser.c:16293 cp/parser.c:17196 cp/parser.c:17327
+#: cp/parser.c:16298 cp/parser.c:17219 cp/parser.c:17350
#, gcc-internal-format
-msgid "misplaced `@%D' Objective-C++ construct"
+msgid "misplaced %<@%D%> Objective-C++ construct"
msgstr ""
-#: cp/parser.c:16434
+#: cp/parser.c:16439
#, gcc-internal-format
-msgid "`@encode' must specify a type as an argument"
+msgid "%<@encode%> must specify a type as an argument"
msgstr ""
-#: cp/parser.c:16731
+#: cp/parser.c:16754
#, gcc-internal-format
msgid "invalid Objective-C++ selector name"
msgstr ""
-#: cp/parser.c:17060
+#: cp/parser.c:17083
#, gcc-internal-format
-msgid "identifier expected after `@protocol'"
+msgid "identifier expected after %<@protocol%>"
msgstr ""
-#: cp/parser.c:17350
+#: cp/parser.c:17373
#, gcc-internal-format
msgid "inter-module optimizations not implemented for C++"
msgstr ""
@@ -20909,104 +25701,106 @@ msgstr ""
msgid "specialization of %qD in different namespace"
msgstr ""
-#: cp/pt.c:670 cp/pt.c:739
+#: cp/pt.c:670 cp/pt.c:756
+#, gcc-internal-format
+msgid " from definition of %q+#D"
+msgstr ""
+
+#: cp/pt.c:687
#, gcc-internal-format
-msgid " from definition of %q#D"
+msgid ""
+"explicit instantiation of %qD in namespace %qD (which does not enclose "
+"namespace %qD)"
msgstr ""
-#: cp/pt.c:706
+#: cp/pt.c:723
#, gcc-internal-format
msgid "specialization of %qT after instantiation"
msgstr ""
-#: cp/pt.c:738
+#: cp/pt.c:755
#, gcc-internal-format
msgid "specializing %q#T in different namespace"
msgstr ""
-#: cp/pt.c:753
+#: cp/pt.c:770
#, gcc-internal-format
msgid "specialization %qT after instantiation %qT"
msgstr ""
-#: cp/pt.c:765
+#: cp/pt.c:782
#, gcc-internal-format
msgid "explicit specialization of non-template %qT"
msgstr ""
-#: cp/pt.c:1158
+#: cp/pt.c:1176
#, gcc-internal-format
msgid "specialization of %qD after instantiation"
msgstr ""
-#: cp/pt.c:1287
-#, gcc-internal-format
-msgid "%s %+#D"
-msgstr ""
-
-#: cp/pt.c:1343
+#: cp/pt.c:1362
#, gcc-internal-format
msgid "%qD is not a function template"
msgstr ""
-#: cp/pt.c:1536
+#: cp/pt.c:1555
#, gcc-internal-format
msgid "template-id %qD for %q+D does not match any template declaration"
msgstr ""
-#: cp/pt.c:1545
+#: cp/pt.c:1563
#, gcc-internal-format
msgid "ambiguous template specialization %qD for %q+D"
msgstr ""
#. This case handles bogus declarations like template <>
#. template <class T> void f<int>();
-#: cp/pt.c:1776 cp/pt.c:1830
+#: cp/pt.c:1794 cp/pt.c:1848
#, gcc-internal-format
msgid "template-id %qD in declaration of primary template"
msgstr ""
-#: cp/pt.c:1789
+#: cp/pt.c:1807
#, gcc-internal-format
msgid "template parameter list used in explicit instantiation"
msgstr ""
-#: cp/pt.c:1795
+#: cp/pt.c:1813
#, gcc-internal-format
msgid "definition provided for explicit instantiation"
msgstr ""
-#: cp/pt.c:1803
+#: cp/pt.c:1821
#, gcc-internal-format
msgid "too many template parameter lists in declaration of %qD"
msgstr ""
-#: cp/pt.c:1806
+#: cp/pt.c:1824
#, gcc-internal-format
msgid "too few template parameter lists in declaration of %qD"
msgstr ""
-#: cp/pt.c:1808
+#: cp/pt.c:1826
#, gcc-internal-format
msgid "explicit specialization of %qD must be introduced by %<template <>%>"
msgstr ""
-#: cp/pt.c:1827
+#: cp/pt.c:1845
#, gcc-internal-format
msgid "function template partial specialization %qD is not allowed"
msgstr ""
-#: cp/pt.c:1859
+#: cp/pt.c:1877
#, gcc-internal-format
msgid "default argument specified in explicit specialization"
msgstr ""
-#: cp/pt.c:1863
+#: cp/pt.c:1881
#, gcc-internal-format
msgid "template specialization with C linkage"
msgstr ""
-#: cp/pt.c:1890
+#: cp/pt.c:1908
#, gcc-internal-format
msgid "%qD is not a template function"
msgstr ""
@@ -21019,57 +25813,62 @@ msgstr ""
#. program is ill-formed.
#.
#. Similar language is found in [temp.explicit].
-#: cp/pt.c:1952
+#: cp/pt.c:1970
#, gcc-internal-format
msgid "specialization of implicitly-declared special member function"
msgstr ""
-#: cp/pt.c:1996
+#: cp/pt.c:2014
#, gcc-internal-format
msgid "no member function %qD declared in %qT"
msgstr ""
-#: cp/pt.c:2201
+#: cp/pt.c:2238
+#, gcc-internal-format
+msgid "declaration of %q+#D"
+msgstr ""
+
+#: cp/pt.c:2239
#, gcc-internal-format
-msgid " shadows template parm %q#D"
+msgid " shadows template parm %q+#D"
msgstr ""
-#: cp/pt.c:2603
+#: cp/pt.c:2642
#, gcc-internal-format
msgid "template parameters not used in partial specialization:"
msgstr ""
-#: cp/pt.c:2607
+#: cp/pt.c:2646
#, gcc-internal-format
msgid " %qD"
msgstr ""
-#: cp/pt.c:2618
+#: cp/pt.c:2657
#, gcc-internal-format
msgid "partial specialization %qT does not specialize any template arguments"
msgstr ""
-#: cp/pt.c:2643
+#: cp/pt.c:2682
#, gcc-internal-format
msgid "template argument %qE involves template parameter(s)"
msgstr ""
-#: cp/pt.c:2687
+#: cp/pt.c:2726
#, gcc-internal-format
msgid "type %qT of template argument %qE depends on template parameter(s)"
msgstr ""
-#: cp/pt.c:2774
+#: cp/pt.c:2813
#, gcc-internal-format
msgid "no default argument for %qD"
msgstr ""
-#: cp/pt.c:2931
+#: cp/pt.c:2971
#, gcc-internal-format
msgid "template with C linkage"
msgstr ""
-#: cp/pt.c:2934
+#: cp/pt.c:2974
#, gcc-internal-format
msgid "template class without a name"
msgstr ""
@@ -21077,7 +25876,7 @@ msgstr ""
#. [temp.mem]
#.
#. A destructor shall not be a member template.
-#: cp/pt.c:2942
+#: cp/pt.c:2982
#, gcc-internal-format
msgid "destructor %qD declared as member template"
msgstr ""
@@ -21087,67 +25886,67 @@ msgstr ""
#. An allocation function can be a function
#. template. ... Template allocation functions shall
#. have two or more parameters.
-#: cp/pt.c:2957
+#: cp/pt.c:2997
#, gcc-internal-format
msgid "invalid template declaration of %qD"
msgstr ""
-#: cp/pt.c:3038
+#: cp/pt.c:3078
#, gcc-internal-format
msgid "%qD does not declare a template type"
msgstr ""
-#: cp/pt.c:3044
+#: cp/pt.c:3084
#, gcc-internal-format
msgid "template definition of non-template %q#D"
msgstr ""
-#: cp/pt.c:3086
+#: cp/pt.c:3127
#, gcc-internal-format
msgid "expected %d levels of template parms for %q#D, got %d"
msgstr ""
-#: cp/pt.c:3098
+#: cp/pt.c:3139
#, gcc-internal-format
msgid "got %d template parameters for %q#D"
msgstr ""
-#: cp/pt.c:3101
+#: cp/pt.c:3142
#, gcc-internal-format
msgid "got %d template parameters for %q#T"
msgstr ""
-#: cp/pt.c:3103
+#: cp/pt.c:3144
#, gcc-internal-format
msgid " but %d required"
msgstr ""
-#: cp/pt.c:3199
+#: cp/pt.c:3241
#, gcc-internal-format
msgid "%qT is not a template type"
msgstr ""
-#: cp/pt.c:3212
+#: cp/pt.c:3254
#, gcc-internal-format
msgid "template specifiers not specified in declaration of %qD"
msgstr ""
-#: cp/pt.c:3222
+#: cp/pt.c:3264
#, gcc-internal-format
-msgid "previous declaration %qD"
+msgid "previous declaration %q+D"
msgstr ""
-#: cp/pt.c:3223
+#: cp/pt.c:3265
#, gcc-internal-format
msgid "used %d template parameter(s) instead of %d"
msgstr ""
-#: cp/pt.c:3242
+#: cp/pt.c:3284
#, gcc-internal-format
-msgid "template parameter %q#D"
+msgid "template parameter %q+#D"
msgstr ""
-#: cp/pt.c:3243
+#: cp/pt.c:3285
#, gcc-internal-format
msgid "redeclared here as %q#D"
msgstr ""
@@ -21156,388 +25955,383 @@ msgstr ""
#.
#. A template-parameter may not be given default arguments
#. by two different declarations in the same scope.
-#: cp/pt.c:3253
+#: cp/pt.c:3295
#, gcc-internal-format
msgid "redefinition of default argument for %q#D"
msgstr ""
-#: cp/pt.c:3254
+#: cp/pt.c:3296
#, gcc-internal-format
msgid "%J original definition appeared here"
msgstr ""
-#: cp/pt.c:3350
+#: cp/pt.c:3392
#, gcc-internal-format
msgid ""
"%qE is not a valid template argument for type %qT because function %qD has "
"not external linkage"
msgstr ""
-#: cp/pt.c:3391
+#: cp/pt.c:3433
#, gcc-internal-format
msgid ""
"%qE is not a valid template argument for type %qT because string literals "
"can never be used in this context"
msgstr ""
-#: cp/pt.c:3466
+#: cp/pt.c:3508
#, gcc-internal-format
msgid ""
"%qE is not a valid template argument for type %qT because it is a non-"
"constant expression"
msgstr ""
-#: cp/pt.c:3516
+#: cp/pt.c:3558
#, gcc-internal-format
msgid ""
"%qE is not a valid template argument for type %qT because it is not a "
"constant pointer"
msgstr ""
-#: cp/pt.c:3536
+#: cp/pt.c:3578
#, gcc-internal-format
msgid ""
"%qE is not a valid template argument for type %qT because of conflicts in cv-"
"qualification"
msgstr ""
-#: cp/pt.c:3543
+#: cp/pt.c:3585
#, gcc-internal-format
msgid ""
"%qE is not a valid template argument for type %qT because it is not a lvalue"
msgstr ""
-#: cp/pt.c:3556
+#: cp/pt.c:3598
#, gcc-internal-format
msgid ""
"%qE is not a valid template argument for type %qT because object %qD has not "
"external linkage"
msgstr ""
-#: cp/pt.c:3598
+#: cp/pt.c:3640
#, gcc-internal-format
msgid ""
"%qE is not a valid template argument for type %qT because it is a pointer"
msgstr ""
-#: cp/pt.c:3600
+#: cp/pt.c:3642
#, gcc-internal-format
msgid "try using %qE instead"
msgstr ""
-#: cp/pt.c:3635
+#: cp/pt.c:3677
#, gcc-internal-format
msgid ""
"%qE is not a valid template argument for type %qT because it is of type %qT"
msgstr ""
-#: cp/pt.c:3638
+#: cp/pt.c:3680
#, gcc-internal-format
msgid "standard conversions are not allowed in this context"
msgstr ""
-#: cp/pt.c:3807
+#: cp/pt.c:3849
#, gcc-internal-format
msgid "to refer to a type member of a template parameter, use %<typename %E%>"
msgstr ""
-#: cp/pt.c:3822 cp/pt.c:3841 cp/pt.c:3881
+#: cp/pt.c:3864 cp/pt.c:3883 cp/pt.c:3923
#, gcc-internal-format
msgid "type/value mismatch at argument %d in template parameter list for %qD"
msgstr ""
-#: cp/pt.c:3826
+#: cp/pt.c:3868
#, gcc-internal-format
msgid " expected a constant of type %qT, got %qT"
msgstr ""
-#: cp/pt.c:3830
+#: cp/pt.c:3872
#, gcc-internal-format
msgid " expected a class template, got %qE"
msgstr ""
-#: cp/pt.c:3832
+#: cp/pt.c:3874
#, gcc-internal-format
msgid " expected a type, got %qE"
msgstr ""
-#: cp/pt.c:3845
+#: cp/pt.c:3887
#, gcc-internal-format
msgid " expected a type, got %qT"
msgstr ""
-#: cp/pt.c:3847
+#: cp/pt.c:3889
#, gcc-internal-format
msgid " expected a class template, got %qT"
msgstr ""
-#: cp/pt.c:3884
+#: cp/pt.c:3926
#, gcc-internal-format
msgid " expected a template of type %qD, got %qD"
msgstr ""
-#: cp/pt.c:3920
+#: cp/pt.c:3962
#, gcc-internal-format
msgid "could not convert template argument %qE to %qT"
msgstr ""
-#: cp/pt.c:3959
+#: cp/pt.c:4001
#, gcc-internal-format
msgid "wrong number of template arguments (%d, should be %d)"
msgstr ""
-#: cp/pt.c:3963
+#: cp/pt.c:4005
#, gcc-internal-format
-msgid "provided for %qD"
+msgid "provided for %q+D"
msgstr ""
-#: cp/pt.c:3993
+#: cp/pt.c:4035
#, gcc-internal-format
msgid "template argument %d is invalid"
msgstr ""
-#: cp/pt.c:4348
+#: cp/pt.c:4390
#, gcc-internal-format
msgid "non-template type %qT used as a template"
msgstr ""
-#: cp/pt.c:4350
+#: cp/pt.c:4392
#, gcc-internal-format
-msgid "for template declaration %qD"
+msgid "for template declaration %q+D"
msgstr ""
-#: cp/pt.c:4992
+#: cp/pt.c:5040
#, gcc-internal-format
msgid ""
"template instantiation depth exceeds maximum of %d (use -ftemplate-depth-NN "
"to increase the maximum) instantiating %qD"
msgstr ""
-#: cp/pt.c:5438
+#: cp/pt.c:5486
#, gcc-internal-format
msgid "ambiguous class template instantiation for %q#T"
msgstr ""
-#: cp/pt.c:5444
+#: cp/pt.c:5492
#, gcc-internal-format
msgid "%s %+#T"
msgstr ""
-#: cp/pt.c:6550
+#: cp/pt.c:6595
#, gcc-internal-format
-msgid "instantiation of %qD as type %qT"
+msgid "instantiation of %q+D as type %qT"
msgstr ""
-#: cp/pt.c:6724
+#: cp/pt.c:6774
#, gcc-internal-format
msgid "invalid parameter type %qT"
msgstr ""
-#: cp/pt.c:6726
+#: cp/pt.c:6776
#, gcc-internal-format
-msgid "in declaration %qD"
+msgid "in declaration %q+D"
msgstr ""
-#: cp/pt.c:6799
+#: cp/pt.c:6849
#, gcc-internal-format
msgid "function returning an array"
msgstr ""
-#: cp/pt.c:6801
+#: cp/pt.c:6851
#, gcc-internal-format
msgid "function returning a function"
msgstr ""
-#: cp/pt.c:6828
+#: cp/pt.c:6878
#, gcc-internal-format
msgid "creating pointer to member function of non-class type %qT"
msgstr ""
-#: cp/pt.c:6996
+#: cp/pt.c:7046
#, gcc-internal-format
msgid "creating array with size zero"
msgstr ""
-#: cp/pt.c:7010
+#: cp/pt.c:7060
#, gcc-internal-format
msgid "creating array with size zero (%qE)"
msgstr ""
-#: cp/pt.c:7227
+#: cp/pt.c:7277
#, gcc-internal-format
msgid "forming reference to void"
msgstr ""
-#: cp/pt.c:7229
+#: cp/pt.c:7279
#, gcc-internal-format
msgid "forming %s to reference type %qT"
msgstr ""
-#: cp/pt.c:7266
+#: cp/pt.c:7316
#, gcc-internal-format
msgid "creating pointer to member of non-class type %qT"
msgstr ""
-#: cp/pt.c:7272
+#: cp/pt.c:7322
#, gcc-internal-format
msgid "creating pointer to member reference type %qT"
msgstr ""
-#: cp/pt.c:7278
+#: cp/pt.c:7328
#, gcc-internal-format
msgid "creating pointer to member of type void"
msgstr ""
-#: cp/pt.c:7343
+#: cp/pt.c:7395
#, gcc-internal-format
msgid "creating array of %qT"
msgstr ""
-#: cp/pt.c:7349
+#: cp/pt.c:7401
#, gcc-internal-format
msgid "creating array of %qT, which is an abstract class type"
msgstr ""
-#: cp/pt.c:7393
+#: cp/pt.c:7445
#, gcc-internal-format
msgid "%qT is not a class, struct, or union type"
msgstr ""
-#: cp/pt.c:7428
+#: cp/pt.c:7480
#, gcc-internal-format
msgid "%qT resolves to %qT, which is not an enumeration type"
msgstr ""
-#: cp/pt.c:7431
+#: cp/pt.c:7483
#, gcc-internal-format
msgid "%qT resolves to %qT, which is is not a class type"
msgstr ""
-#: cp/pt.c:7492
+#: cp/pt.c:7544
#, gcc-internal-format
msgid "use of %qs in template"
msgstr ""
-#: cp/pt.c:7617
+#: cp/pt.c:7669
#, gcc-internal-format
msgid ""
"dependent-name %qE is parsed as a non-type, but instantiation yields a type"
msgstr ""
-#: cp/pt.c:7619
+#: cp/pt.c:7671
#, gcc-internal-format
msgid "say %<typename %E%> if a type is meant"
msgstr ""
-#: cp/pt.c:7738
+#: cp/pt.c:7791
#, gcc-internal-format
msgid "using invalid field %qD"
msgstr ""
-#: cp/pt.c:8792
+#: cp/pt.c:8840
#, gcc-internal-format
msgid "%qT is not a class or namespace"
msgstr ""
-#: cp/pt.c:8795
+#: cp/pt.c:8843
#, gcc-internal-format
msgid "%qD is not a class or namespace"
msgstr ""
-#: cp/pt.c:8943
+#: cp/pt.c:8991
#, gcc-internal-format
msgid "%qT is/uses anonymous type"
msgstr ""
-#: cp/pt.c:8945
+#: cp/pt.c:8993
#, gcc-internal-format
msgid "%qT uses local type %qT"
msgstr ""
-#: cp/pt.c:8954
+#: cp/pt.c:9002
#, gcc-internal-format
msgid "%qT is a variably modified type"
msgstr ""
-#: cp/pt.c:8965
+#: cp/pt.c:9013
#, gcc-internal-format
msgid "integral expression %qE is not constant"
msgstr ""
-#: cp/pt.c:8970
+#: cp/pt.c:9018
#, gcc-internal-format
msgid " trying to instantiate %qD"
msgstr ""
-#: cp/pt.c:9431
-#, gcc-internal-format
-msgid "incomplete type unification"
-msgstr ""
-
-#: cp/pt.c:10900 cp/pt.c:10971
+#: cp/pt.c:10958 cp/pt.c:11029
#, gcc-internal-format
msgid "explicit instantiation of non-template %q#D"
msgstr ""
-#: cp/pt.c:10916 cp/pt.c:10966
+#: cp/pt.c:10974 cp/pt.c:11024
#, gcc-internal-format
msgid "no matching template for %qD found"
msgstr ""
-#: cp/pt.c:10922
+#: cp/pt.c:10980
#, gcc-internal-format
msgid "explicit instantiation of %q#D"
msgstr ""
-#: cp/pt.c:10958
+#: cp/pt.c:11016
#, gcc-internal-format
msgid "duplicate explicit instantiation of %q#D"
msgstr ""
-#: cp/pt.c:10980
+#: cp/pt.c:11038
#, gcc-internal-format
msgid "ISO C++ forbids the use of %<extern%> on explicit instantiations"
msgstr ""
-#: cp/pt.c:10985 cp/pt.c:11075
+#: cp/pt.c:11043 cp/pt.c:11136
#, gcc-internal-format
msgid "storage class %qD applied to template instantiation"
msgstr ""
-#: cp/pt.c:11047
+#: cp/pt.c:11108
#, gcc-internal-format
msgid "explicit instantiation of non-template type %qT"
msgstr ""
-#: cp/pt.c:11056
+#: cp/pt.c:11117
#, gcc-internal-format
msgid "explicit instantiation of %q#T before definition of template"
msgstr ""
-#: cp/pt.c:11064
+#: cp/pt.c:11125
#, gcc-internal-format
msgid "ISO C++ forbids the use of %qE on explicit instantiations"
msgstr ""
-#: cp/pt.c:11109
+#: cp/pt.c:11170
#, gcc-internal-format
msgid "duplicate explicit instantiation of %q#T"
msgstr ""
-#: cp/pt.c:11482
+#: cp/pt.c:11570
#, gcc-internal-format
msgid "explicit instantiation of %qD but no definition available"
msgstr ""
-#: cp/pt.c:11627
+#: cp/pt.c:11715
#, gcc-internal-format
msgid ""
-"template instantiation depth exceeds maximum of %d (use -ftemplate-depth-NN "
-"to increase the maximum) instantiating %q+D, possibly from virtual table "
-"generation"
+"template instantiation depth exceeds maximum of %d instantiating %q+D, "
+"possibly from virtual table generation (use -ftemplate-depth-NN to increase "
+"the maximum)"
msgstr ""
-#: cp/pt.c:11896
+#: cp/pt.c:11985
#, gcc-internal-format
msgid "%q#T is not a valid type for a template constant parameter"
msgstr ""
@@ -21595,486 +26389,491 @@ msgstr ""
#: cp/search.c:1842
#, gcc-internal-format
-msgid "deprecated covariant return type for %q#D"
+msgid "deprecated covariant return type for %q+#D"
msgstr ""
-#: cp/search.c:1844 cp/search.c:1859 cp/search.c:1865
+#: cp/search.c:1844 cp/search.c:1859 cp/search.c:1864
#, gcc-internal-format
-msgid " overriding %q#D"
+msgid " overriding %q+#D"
msgstr ""
#: cp/search.c:1858
#, gcc-internal-format
-msgid "invalid covariant return type for %q#D"
+msgid "invalid covariant return type for %q+#D"
msgstr ""
#: cp/search.c:1863
#, gcc-internal-format
-msgid "conflicting return type specified for %q#D"
+msgid "conflicting return type specified for %q+#D"
msgstr ""
-#: cp/search.c:1874
+#: cp/search.c:1873
#, gcc-internal-format
-msgid "looser throw specifier for %q#F"
+msgid "looser throw specifier for %q+#F"
msgstr ""
-#: cp/search.c:1875
+#: cp/search.c:1874
#, gcc-internal-format
-msgid " overriding %q#F"
+msgid " overriding %q+#F"
msgstr ""
#. A static member function cannot match an inherited
#. virtual member function.
-#: cp/search.c:1968
+#: cp/search.c:1967
#, gcc-internal-format
-msgid "%q#D cannot be declared"
+msgid "%q+#D cannot be declared"
msgstr ""
-#: cp/search.c:1969
+#: cp/search.c:1968
#, gcc-internal-format
-msgid " since %q#D declared in base class"
+msgid " since %q+#D declared in base class"
msgstr ""
-#: cp/semantics.c:1226
+#: cp/semantics.c:1228
#, gcc-internal-format
msgid "type of asm operand %qE could not be determined"
msgstr ""
-#: cp/semantics.c:1345
+#: cp/semantics.c:1347
+#, gcc-internal-format
+msgid "invalid use of member %q+D in static member function"
+msgstr ""
+
+#: cp/semantics.c:1349
#, gcc-internal-format
-msgid "invalid use of member %qD in static member function"
+msgid "invalid use of non-static data member %q+D"
msgstr ""
-#: cp/semantics.c:1349 cp/semantics.c:1388
+#: cp/semantics.c:1350 cp/semantics.c:1389
#, gcc-internal-format
msgid "from this location"
msgstr ""
-#: cp/semantics.c:1387
+#: cp/semantics.c:1388
#, gcc-internal-format
-msgid "object missing in reference to %qD"
+msgid "object missing in reference to %q+D"
msgstr ""
-#: cp/semantics.c:1877
+#: cp/semantics.c:1830
#, gcc-internal-format
msgid "arguments to destructor are not allowed"
msgstr ""
-#: cp/semantics.c:1928
+#: cp/semantics.c:1881
#, gcc-internal-format
msgid "%<this%> is unavailable for static member functions"
msgstr ""
-#: cp/semantics.c:1934
+#: cp/semantics.c:1887
#, gcc-internal-format
msgid "invalid use of %<this%> in non-member function"
msgstr ""
-#: cp/semantics.c:1936
+#: cp/semantics.c:1889
#, gcc-internal-format
msgid "invalid use of %<this%> at top level"
msgstr ""
-#: cp/semantics.c:1960
+#: cp/semantics.c:1913
#, gcc-internal-format
msgid "invalid qualifying scope in pseudo-destructor name"
msgstr ""
-#: cp/semantics.c:1980
+#: cp/semantics.c:1933
#, gcc-internal-format
msgid "%qE is not of type %qT"
msgstr ""
-#: cp/semantics.c:2080
+#: cp/semantics.c:2033
#, gcc-internal-format
msgid "template type parameters must use the keyword %<class%> or %<typename%>"
msgstr ""
-#: cp/semantics.c:2124
+#: cp/semantics.c:2077
#, gcc-internal-format
msgid ""
"invalid use of type %qT as a default value for a template template-parameter"
msgstr ""
-#: cp/semantics.c:2127
+#: cp/semantics.c:2080
#, gcc-internal-format
msgid "invalid use of %qD as a default value for a template template-parameter"
msgstr ""
-#: cp/semantics.c:2131
+#: cp/semantics.c:2084
#, gcc-internal-format
msgid "invalid default argument for a template template parameter"
msgstr ""
-#: cp/semantics.c:2148
+#: cp/semantics.c:2101
#, gcc-internal-format
msgid "definition of %q#T inside template parameter list"
msgstr ""
-#: cp/semantics.c:2159
+#: cp/semantics.c:2112
#, gcc-internal-format
msgid "invalid definition of qualified type %qT"
msgstr ""
-#: cp/semantics.c:2375
+#: cp/semantics.c:2314
#, gcc-internal-format
msgid "invalid base-class specification"
msgstr ""
-#: cp/semantics.c:2384
+#: cp/semantics.c:2323
#, gcc-internal-format
msgid "base class %qT has cv qualifiers"
msgstr ""
-#: cp/semantics.c:2404
+#: cp/semantics.c:2345
#, gcc-internal-format
msgid "incomplete type %qT used in nested name specifier"
msgstr ""
-#: cp/semantics.c:2407
+#: cp/semantics.c:2348
#, gcc-internal-format
msgid "reference to %<%T::%D%> is ambiguous"
msgstr ""
-#: cp/semantics.c:2411 cp/typeck.c:1637
+#: cp/semantics.c:2352 cp/typeck.c:1636
#, gcc-internal-format
msgid "%qD is not a member of %qT"
msgstr ""
-#: cp/semantics.c:2414
+#: cp/semantics.c:2355
#, gcc-internal-format
msgid "%qD is not a member of %qD"
msgstr ""
-#: cp/semantics.c:2543
+#: cp/semantics.c:2484
#, gcc-internal-format
msgid ""
"template parameter %qD of type %qT is not allowed in an integral constant "
"expression because it is not of integral or enumeration type"
msgstr ""
-#: cp/semantics.c:2697
+#: cp/semantics.c:2638
#, gcc-internal-format
msgid "%qD cannot appear in a constant-expression"
msgstr ""
-#: cp/semantics.c:2705
+#: cp/semantics.c:2646
#, gcc-internal-format
msgid "use of namespace %qD as expression"
msgstr ""
-#: cp/semantics.c:2710
+#: cp/semantics.c:2651
#, gcc-internal-format
msgid "use of class template %qT as expression"
msgstr ""
#. Ambiguous reference to base members.
-#: cp/semantics.c:2716
+#: cp/semantics.c:2657
#, gcc-internal-format
msgid "request for member %qD is ambiguous in multiple inheritance lattice"
msgstr ""
-#: cp/semantics.c:2790
+#: cp/semantics.c:2731
#, gcc-internal-format
msgid "use of %<auto%> variable from containing function"
msgstr ""
-#: cp/semantics.c:2791
+#: cp/semantics.c:2732
#, gcc-internal-format
msgid "use of parameter from containing function"
msgstr ""
-#: cp/semantics.c:2792
+#: cp/semantics.c:2733
#, gcc-internal-format
-msgid " %q#D declared here"
+msgid " %q+#D declared here"
msgstr ""
-#: cp/semantics.c:2842
+#: cp/semantics.c:2778
#, gcc-internal-format
msgid "type of %qE is unknown"
msgstr ""
-#: cp/tree.c:539
+#: cp/tree.c:559
#, gcc-internal-format
msgid "%qV qualifiers cannot be applied to %qT"
msgstr ""
-#: cp/tree.c:1741
+#: cp/tree.c:1761
#, gcc-internal-format
msgid "%qE attribute can only be applied to Java class definitions"
msgstr ""
-#: cp/tree.c:1770
+#: cp/tree.c:1790
#, gcc-internal-format
msgid "%qE attribute can only be applied to class definitions"
msgstr ""
-#: cp/tree.c:1776
+#: cp/tree.c:1796
#, gcc-internal-format
msgid "%qE is obsolete; g++ vtables are now COM-compatible by default"
msgstr ""
-#: cp/tree.c:1800
+#: cp/tree.c:1820
#, gcc-internal-format
msgid "requested init_priority is not an integer constant"
msgstr ""
-#: cp/tree.c:1821
+#: cp/tree.c:1841
#, gcc-internal-format
msgid ""
"can only use %qE attribute on file-scope definitions of objects of class type"
msgstr ""
-#: cp/tree.c:1829
+#: cp/tree.c:1849
#, gcc-internal-format
msgid "requested init_priority is out of range"
msgstr ""
-#: cp/tree.c:1839
+#: cp/tree.c:1859
#, gcc-internal-format
msgid "requested init_priority is reserved for internal use"
msgstr ""
-#: cp/tree.c:1849
+#: cp/tree.c:1870
#, gcc-internal-format
msgid "%qE attribute is not supported on this platform"
msgstr ""
-#: cp/typeck.c:430 cp/typeck.c:444 cp/typeck.c:544
+#: cp/typeck.c:429 cp/typeck.c:443 cp/typeck.c:543
#, gcc-internal-format
msgid "%s between distinct pointer types %qT and %qT lacks a cast"
msgstr ""
-#: cp/typeck.c:506
+#: cp/typeck.c:505
#, gcc-internal-format
msgid ""
"ISO C++ forbids %s between pointer of type %<void *%> and pointer-to-function"
msgstr ""
-#: cp/typeck.c:564
+#: cp/typeck.c:563
#, gcc-internal-format
msgid "%s between distinct pointer-to-member types %qT and %qT lacks a cast"
msgstr ""
-#: cp/typeck.c:1253
+#: cp/typeck.c:1252
#, gcc-internal-format
msgid "invalid application of %qs to a member function"
msgstr ""
-#: cp/typeck.c:1288
+#: cp/typeck.c:1287
#, gcc-internal-format
msgid "invalid application of %qs to a bit-field"
msgstr ""
-#: cp/typeck.c:1293
+#: cp/typeck.c:1292
#, gcc-internal-format
msgid "ISO C++ forbids applying %qs to an expression of function type"
msgstr ""
-#: cp/typeck.c:1330
+#: cp/typeck.c:1329
#, gcc-internal-format
msgid "invalid use of non-static member function"
msgstr ""
-#: cp/typeck.c:1497
+#: cp/typeck.c:1496
#, gcc-internal-format
msgid "deprecated conversion from string constant to %qT'"
msgstr ""
-#: cp/typeck.c:1608 cp/typeck.c:1902
+#: cp/typeck.c:1607 cp/typeck.c:1901
#, gcc-internal-format
msgid "request for member %qD in %qE, which is of non-class type %qT"
msgstr ""
-#: cp/typeck.c:1635
+#: cp/typeck.c:1634
#, gcc-internal-format
msgid "invalid use of nonstatic data member %qE"
msgstr ""
-#: cp/typeck.c:1687 cp/typeck.c:1715
+#: cp/typeck.c:1686 cp/typeck.c:1714
#, gcc-internal-format
msgid "invalid access to non-static data member %qD of NULL object"
msgstr ""
-#: cp/typeck.c:1690 cp/typeck.c:1717
+#: cp/typeck.c:1689 cp/typeck.c:1716
#, gcc-internal-format
msgid "(perhaps the %<offsetof%> macro was used incorrectly)"
msgstr ""
-#: cp/typeck.c:1828
+#: cp/typeck.c:1827
#, gcc-internal-format
msgid "qualified type %qT does not match destructor name ~%qT"
msgstr ""
-#: cp/typeck.c:1834
+#: cp/typeck.c:1833
#, gcc-internal-format
msgid "the type being destroyed is %qT, but the destructor refers to %qT"
msgstr ""
-#: cp/typeck.c:1948
+#: cp/typeck.c:1947
#, gcc-internal-format
msgid "%<%D::%D%> is not a member of %qT"
msgstr ""
-#: cp/typeck.c:1959
+#: cp/typeck.c:1958
#, gcc-internal-format
msgid "%qT is not a base of %qT"
msgstr ""
-#: cp/typeck.c:1978
+#: cp/typeck.c:1977
#, gcc-internal-format
msgid "%qD has no member named %qE"
msgstr ""
-#: cp/typeck.c:1993
+#: cp/typeck.c:1992
#, gcc-internal-format
msgid "%qD is not a member template function"
msgstr ""
#. A pointer to incomplete type (other than cv void) can be
#. dereferenced [expr.unary.op]/1
-#: cp/typeck.c:2100
+#: cp/typeck.c:2099
#, gcc-internal-format
msgid "%qT is not a pointer-to-object type"
msgstr ""
-#: cp/typeck.c:2125
+#: cp/typeck.c:2124
#, gcc-internal-format
msgid "invalid use of %qs on pointer to member"
msgstr ""
-#: cp/typeck.c:2131
+#: cp/typeck.c:2130
#, gcc-internal-format
msgid "invalid type argument"
msgstr ""
-#: cp/typeck.c:2154
+#: cp/typeck.c:2153
#, gcc-internal-format
msgid "subscript missing in array reference"
msgstr ""
-#: cp/typeck.c:2236
+#: cp/typeck.c:2235
#, gcc-internal-format
msgid "ISO C++ forbids subscripting non-lvalue array"
msgstr ""
-#: cp/typeck.c:2247
+#: cp/typeck.c:2246
#, gcc-internal-format
msgid "subscripting array declared %<register%>"
msgstr ""
-#: cp/typeck.c:2330
+#: cp/typeck.c:2329
#, gcc-internal-format
msgid "object missing in use of %qE"
msgstr ""
-#: cp/typeck.c:2444
+#: cp/typeck.c:2443
#, gcc-internal-format
msgid "ISO C++ forbids calling %<::main%> from within program"
msgstr ""
-#: cp/typeck.c:2469
+#: cp/typeck.c:2468
#, gcc-internal-format
msgid ""
"must use %<.*%> or %<->*%> to call pointer-to-member function in %<%E (...)%>"
msgstr ""
-#: cp/typeck.c:2483
+#: cp/typeck.c:2482
#, gcc-internal-format
msgid "%qE cannot be used as a function"
msgstr ""
-#: cp/typeck.c:2563
+#: cp/typeck.c:2562
#, gcc-internal-format
msgid "too many arguments to %s %q+#D"
msgstr ""
-#: cp/typeck.c:2565 cp/typeck.c:2668
+#: cp/typeck.c:2563 cp/typeck.c:2665
#, gcc-internal-format
msgid "at this point in file"
msgstr ""
-#: cp/typeck.c:2568
+#: cp/typeck.c:2566
#, gcc-internal-format
msgid "too many arguments to function"
msgstr ""
-#: cp/typeck.c:2602
+#: cp/typeck.c:2600
#, gcc-internal-format
msgid "parameter %P of %qD has incomplete type %qT"
msgstr ""
-#: cp/typeck.c:2605
+#: cp/typeck.c:2603
#, gcc-internal-format
msgid "parameter %P has incomplete type %qT"
msgstr ""
-#: cp/typeck.c:2666
+#: cp/typeck.c:2664
#, gcc-internal-format
msgid "too few arguments to %s %q+#D"
msgstr ""
-#: cp/typeck.c:2671
+#: cp/typeck.c:2668
#, gcc-internal-format
msgid "too few arguments to function"
msgstr ""
-#: cp/typeck.c:2819 cp/typeck.c:2829
+#: cp/typeck.c:2816 cp/typeck.c:2826
#, gcc-internal-format
msgid "assuming cast to type %qT from overloaded function"
msgstr ""
-#: cp/typeck.c:2897
+#: cp/typeck.c:2894
#, gcc-internal-format
msgid "division by zero in %<%E / 0%>"
msgstr ""
-#: cp/typeck.c:2899
+#: cp/typeck.c:2896
#, gcc-internal-format
msgid "division by zero in %<%E / 0.%>"
msgstr ""
-#: cp/typeck.c:2934
+#: cp/typeck.c:2931
#, gcc-internal-format
msgid "division by zero in %<%E %% 0%>"
msgstr ""
-#: cp/typeck.c:2936
+#: cp/typeck.c:2933
#, gcc-internal-format
msgid "division by zero in %<%E %% 0.%>"
msgstr ""
-#: cp/typeck.c:3016
+#: cp/typeck.c:3013
#, gcc-internal-format
msgid "%s rotate count is negative"
msgstr ""
-#: cp/typeck.c:3019
+#: cp/typeck.c:3016
#, gcc-internal-format
msgid "%s rotate count >= width of type"
msgstr ""
-#: cp/typeck.c:3053 cp/typeck.c:3058 cp/typeck.c:3154 cp/typeck.c:3159
+#: cp/typeck.c:3050 cp/typeck.c:3055 cp/typeck.c:3151 cp/typeck.c:3156
#, gcc-internal-format
msgid "ISO C++ forbids comparison between pointer and integer"
msgstr ""
-#: cp/typeck.c:3173
+#: cp/typeck.c:3170
#, gcc-internal-format
msgid "unordered comparison on non-floating point argument"
msgstr ""
-#: cp/typeck.c:3211
+#: cp/typeck.c:3208
#, gcc-internal-format
msgid "invalid operands of types %qT and %qT to binary %qO"
msgstr ""
-#: cp/typeck.c:3375
+#: cp/typeck.c:3372
#, gcc-internal-format
msgid "comparison between types %q#T and %q#T"
msgstr ""
-#: cp/typeck.c:3411
+#: cp/typeck.c:3408
#, gcc-internal-format
msgid "comparison between signed and unsigned integer expressions"
msgstr ""
@@ -22083,150 +26882,154 @@ msgstr ""
#. performed. Note that pointer-difference and pointer-addition
#. have already been handled above, and so we don't end up here in
#. that case.
-#: cp/typeck.c:3490
+#: cp/typeck.c:3487
#, gcc-internal-format
msgid "NULL used in arithmetic"
msgstr ""
-#: cp/typeck.c:3548
+#: cp/typeck.c:3545
#, gcc-internal-format
msgid "ISO C++ forbids using pointer of type %<void *%> in subtraction"
msgstr ""
-#: cp/typeck.c:3550
+#: cp/typeck.c:3547
#, gcc-internal-format
msgid "ISO C++ forbids using pointer to a function in subtraction"
msgstr ""
-#: cp/typeck.c:3552
+#: cp/typeck.c:3549
#, gcc-internal-format
msgid "ISO C++ forbids using pointer to a method in subtraction"
msgstr ""
-#: cp/typeck.c:3564
+#: cp/typeck.c:3561
#, gcc-internal-format
msgid "invalid use of a pointer to an incomplete type in pointer arithmetic"
msgstr ""
-#: cp/typeck.c:3623
+#: cp/typeck.c:3621
#, gcc-internal-format
-msgid ""
-"invalid use of %qE to form a pointer-to-member-function. Use a qualified-id."
+msgid "invalid use of %qE to form a pointer-to-member-function"
msgstr ""
-#: cp/typeck.c:3630
+#: cp/typeck.c:3624
+#, gcc-internal-format
+msgid " a qualified-id is required"
+msgstr ""
+
+#: cp/typeck.c:3629
#, gcc-internal-format
msgid ""
"parenthesis around %qE cannot be used to form a pointer-to-member-function"
msgstr ""
-#: cp/typeck.c:3653
+#: cp/typeck.c:3652
#, gcc-internal-format
msgid "taking address of temporary"
msgstr ""
-#: cp/typeck.c:3898
+#: cp/typeck.c:3896
#, gcc-internal-format
msgid "ISO C++ forbids %sing an enum"
msgstr ""
-#: cp/typeck.c:3909
+#: cp/typeck.c:3907
#, gcc-internal-format
msgid "cannot %s a pointer to incomplete type %qT"
msgstr ""
-#: cp/typeck.c:3915
+#: cp/typeck.c:3913
#, gcc-internal-format
msgid "ISO C++ forbids %sing a pointer of type %qT"
msgstr ""
-#: cp/typeck.c:3940
+#: cp/typeck.c:3938
#, gcc-internal-format
msgid "cast to non-reference type used as lvalue"
msgstr ""
-#: cp/typeck.c:3975
+#: cp/typeck.c:3973
#, gcc-internal-format
msgid "invalid use of %<--%> on bool variable %qD"
msgstr ""
#. ARM $3.4
-#: cp/typeck.c:4004
+#: cp/typeck.c:4002
#, gcc-internal-format
msgid "ISO C++ forbids taking address of function %<::main%>"
msgstr ""
#. An expression like &memfn.
-#: cp/typeck.c:4058
+#: cp/typeck.c:4056
#, gcc-internal-format
msgid ""
"ISO C++ forbids taking the address of an unqualified or parenthesized non-"
"static member function to form a pointer to member function. Say %<&%T::%D%>"
msgstr ""
-#: cp/typeck.c:4063
+#: cp/typeck.c:4061
#, gcc-internal-format
msgid ""
"ISO C++ forbids taking the address of a bound member function to form a "
"pointer to member function. Say %<&%T::%D%>"
msgstr ""
-#: cp/typeck.c:4091
+#: cp/typeck.c:4089
#, gcc-internal-format
msgid "ISO C++ forbids taking the address of a cast to a non-lvalue expression"
msgstr ""
-#: cp/typeck.c:4111
+#: cp/typeck.c:4109
#, gcc-internal-format
msgid "cannot create pointer to reference member %qD"
msgstr ""
-#: cp/typeck.c:4325
+#: cp/typeck.c:4323
#, gcc-internal-format
msgid "cannot take the address of %<this%>, which is an rvalue expression"
msgstr ""
-#: cp/typeck.c:4348
+#: cp/typeck.c:4346
#, gcc-internal-format
msgid "address of explicit register variable %qD requested"
msgstr ""
-#: cp/typeck.c:4353
+#: cp/typeck.c:4351
#, gcc-internal-format
msgid "address requested for %qD, which is declared %<register%>"
msgstr ""
-#: cp/typeck.c:4419
+#: cp/typeck.c:4417
#, gcc-internal-format
msgid "%s expression list treated as compound expression"
msgstr ""
-#: cp/typeck.c:4494
+#: cp/typeck.c:4492
#, gcc-internal-format
msgid "%s from type %qT to type %qT casts away constness"
msgstr ""
-#: cp/typeck.c:4793
+#: cp/typeck.c:4811
#, gcc-internal-format
msgid "invalid static_cast from type %qT to type %qT"
msgstr ""
-#: cp/typeck.c:4815
+#: cp/typeck.c:4833
#, gcc-internal-format
msgid "converting from %qT to %qT"
msgstr ""
-#: cp/typeck.c:4860
+#: cp/typeck.c:4878
#, gcc-internal-format
msgid "invalid cast of an rvalue expression of type %qT to type %qT"
msgstr ""
-#: cp/typeck.c:4919
+#: cp/typeck.c:4937
#, gcc-internal-format
msgid "cast from %qT to %qT loses precision"
msgstr ""
-#: cp/typeck.c:4944
+#: cp/typeck.c:4962
#, gcc-internal-format
msgid "cast from %qT to %qT increases required alignment of target type"
msgstr ""
@@ -22235,463 +27038,422 @@ msgstr ""
#. where possible, and it is necessary in some cases. DR 195
#. addresses this issue, but as of 2004/10/26 is still in
#. drafting.
-#: cp/typeck.c:4958
+#: cp/typeck.c:4976
#, gcc-internal-format
msgid ""
"ISO C++ forbids casting between pointer-to-function and pointer-to-object"
msgstr ""
-#: cp/typeck.c:4969
+#: cp/typeck.c:4987
#, gcc-internal-format
msgid "invalid cast from type %qT to type %qT"
msgstr ""
-#: cp/typeck.c:5025
+#: cp/typeck.c:5043
#, gcc-internal-format
msgid ""
"invalid use of const_cast with type %qT, which is not a pointer, reference, "
"nor a pointer-to-data-member type"
msgstr ""
-#: cp/typeck.c:5034
+#: cp/typeck.c:5052
#, gcc-internal-format
msgid ""
"invalid use of const_cast with type %qT, which is a pointer or reference to "
"a function type"
msgstr ""
-#: cp/typeck.c:5056
+#: cp/typeck.c:5074
#, gcc-internal-format
msgid "invalid const_cast of an rvalue of type %qT to type %qT"
msgstr ""
-#: cp/typeck.c:5099
+#: cp/typeck.c:5117
#, gcc-internal-format
msgid "invalid const_cast from type %qT to type %qT"
msgstr ""
-#: cp/typeck.c:5167 cp/typeck.c:5172
+#: cp/typeck.c:5185 cp/typeck.c:5190
#, gcc-internal-format
msgid "ISO C++ forbids casting to an array type %qT"
msgstr ""
-#: cp/typeck.c:5180
+#: cp/typeck.c:5198
#, gcc-internal-format
msgid "invalid cast to function type %qT"
msgstr ""
-#: cp/typeck.c:5396
+#: cp/typeck.c:5414
#, gcc-internal-format
msgid " in evaluation of %<%Q(%#T, %#T)%>"
msgstr ""
-#: cp/typeck.c:5465
+#: cp/typeck.c:5483
#, gcc-internal-format
msgid "incompatible types in assignment of %qT to %qT"
msgstr ""
-#: cp/typeck.c:5472
+#: cp/typeck.c:5490
#, gcc-internal-format
msgid "ISO C++ forbids assignment of arrays"
msgstr ""
-#: cp/typeck.c:5590
+#: cp/typeck.c:5610
#, gcc-internal-format
msgid " in pointer to member function conversion"
msgstr ""
-#: cp/typeck.c:5601 cp/typeck.c:5627
+#: cp/typeck.c:5621 cp/typeck.c:5647
#, gcc-internal-format
msgid "pointer to member cast via virtual base %qT"
msgstr ""
-#: cp/typeck.c:5604
+#: cp/typeck.c:5624
#, gcc-internal-format
msgid "pointer to member conversion via virtual base %qT"
msgstr ""
-#: cp/typeck.c:5613
+#: cp/typeck.c:5633
#, gcc-internal-format
msgid " in pointer to member conversion"
msgstr ""
-#: cp/typeck.c:5701
+#: cp/typeck.c:5723
#, gcc-internal-format
msgid "invalid conversion to type %qT from type %qT"
msgstr ""
-#: cp/typeck.c:5945
+#: cp/typeck.c:5967
#, gcc-internal-format
msgid "cannot convert %qT to %qT for argument %qP to %qD"
msgstr ""
-#: cp/typeck.c:5948
+#: cp/typeck.c:5970
#, gcc-internal-format
msgid "cannot convert %qT to %qT in %s"
msgstr ""
-#: cp/typeck.c:6021 cp/typeck.c:6023
+#: cp/typeck.c:5981
+#, gcc-internal-format
+msgid "%s might be a candidate for a format attribute"
+msgstr ""
+
+#: cp/typeck.c:6054 cp/typeck.c:6056
#, gcc-internal-format
msgid "in passing argument %P of %q+D"
msgstr ""
-#: cp/typeck.c:6073
+#: cp/typeck.c:6106
#, gcc-internal-format
msgid "returning reference to temporary"
msgstr ""
-#: cp/typeck.c:6080
+#: cp/typeck.c:6113
#, gcc-internal-format
msgid "reference to non-lvalue returned"
msgstr ""
-#: cp/typeck.c:6092
+#: cp/typeck.c:6125
#, gcc-internal-format
-msgid "reference to local variable %qD returned"
+msgid "reference to local variable %q+D returned"
msgstr ""
-#: cp/typeck.c:6095
+#: cp/typeck.c:6128
#, gcc-internal-format
-msgid "address of local variable %qD returned"
+msgid "address of local variable %q+D returned"
msgstr ""
-#: cp/typeck.c:6125
+#: cp/typeck.c:6162
#, gcc-internal-format
msgid "returning a value from a destructor"
msgstr ""
#. If a return statement appears in a handler of the
#. function-try-block of a constructor, the program is ill-formed.
-#: cp/typeck.c:6133
+#: cp/typeck.c:6170
#, gcc-internal-format
msgid "cannot return from a handler of a function-try-block of a constructor"
msgstr ""
#. You can't return a value from a constructor.
-#: cp/typeck.c:6136
+#: cp/typeck.c:6173
#, gcc-internal-format
msgid "returning a value from a constructor"
msgstr ""
-#: cp/typeck.c:6159
+#: cp/typeck.c:6196
#, gcc-internal-format
msgid "return-statement with no value, in function returning %qT"
msgstr ""
-#: cp/typeck.c:6176
+#: cp/typeck.c:6217
#, gcc-internal-format
msgid "return-statement with a value, in function returning 'void'"
msgstr ""
-#: cp/typeck.c:6207
+#: cp/typeck.c:6248
#, gcc-internal-format
msgid ""
"%<operator new%> must not return NULL unless it is declared %<throw()%> (or -"
"fcheck-new is in effect)"
msgstr ""
-#: cp/typeck2.c:52
+#: cp/typeck2.c:54
#, gcc-internal-format
msgid "type %qT is not a base type for type %qT"
msgstr ""
-#: cp/typeck2.c:292
+#: cp/typeck2.c:294
#, gcc-internal-format
msgid "cannot declare variable %q+D to be of abstract type %qT"
msgstr ""
-#: cp/typeck2.c:295
+#: cp/typeck2.c:297
#, gcc-internal-format
msgid "cannot declare parameter %q+D to be of abstract type %qT"
msgstr ""
-#: cp/typeck2.c:298
+#: cp/typeck2.c:300
#, gcc-internal-format
msgid "cannot declare field %q+D to be of abstract type %qT"
msgstr ""
-#: cp/typeck2.c:302
+#: cp/typeck2.c:304
#, gcc-internal-format
msgid "invalid abstract return type for member function %q+#D"
msgstr ""
-#: cp/typeck2.c:305
+#: cp/typeck2.c:306
#, gcc-internal-format
msgid "invalid abstract return type for function %q+#D"
msgstr ""
-#. Here we do not have location information, so use error instead
-#. of cp_error_at.
-#: cp/typeck2.c:310
+#. Here we do not have location information.
+#: cp/typeck2.c:309
#, gcc-internal-format
msgid "invalid abstract type %qT for %qE"
msgstr ""
-#: cp/typeck2.c:312
+#: cp/typeck2.c:311
#, gcc-internal-format
msgid "invalid abstract type for %q+D"
msgstr ""
-#: cp/typeck2.c:315
+#: cp/typeck2.c:314
#, gcc-internal-format
msgid "cannot allocate an object of abstract type %qT"
msgstr ""
-#: cp/typeck2.c:323
+#: cp/typeck2.c:322
#, gcc-internal-format
msgid "%J because the following virtual functions are pure within %qT:"
msgstr ""
-#: cp/typeck2.c:327
+#: cp/typeck2.c:326
#, gcc-internal-format
-msgid "%J\t%#D"
+msgid "\t%+#D"
msgstr ""
-#: cp/typeck2.c:334
+#: cp/typeck2.c:333
#, gcc-internal-format
msgid "%J since type %qT has pure virtual functions"
msgstr ""
-#: cp/typeck2.c:582
+#: cp/typeck2.c:588
#, gcc-internal-format
msgid "constructor syntax used, but no constructor declared for type %qT"
msgstr ""
-#: cp/typeck2.c:596
+#: cp/typeck2.c:602
#, gcc-internal-format
msgid "cannot initialize arrays using this syntax"
msgstr ""
-#: cp/typeck2.c:688
-#, gcc-internal-format
-msgid "initializing array with parameter list"
-msgstr ""
-
-#: cp/typeck2.c:710
+#: cp/typeck2.c:678
#, gcc-internal-format
msgid "int-array initialized from non-wide string"
msgstr ""
-#: cp/typeck2.c:743
-#, gcc-internal-format
-msgid "initializer for scalar variable requires one element"
-msgstr ""
-
-#: cp/typeck2.c:750
+#: cp/typeck2.c:720
#, gcc-internal-format
-msgid "braces around scalar initializer for %qT"
+msgid "cannot initialize aggregate of type %qT with a compound literal"
msgstr ""
-#: cp/typeck2.c:753
+#: cp/typeck2.c:794 cp/typeck2.c:892
#, gcc-internal-format
-msgid "ignoring extra initializers for %qT"
+msgid "non-trivial designated initializers not supported"
msgstr ""
-#: cp/typeck2.c:765
-#, gcc-internal-format
-msgid "variable-sized object of type %qT may not be initialized"
-msgstr ""
-
-#: cp/typeck2.c:776
-#, gcc-internal-format
-msgid "subobject of type %qT must be initialized by constructor, not by %qE"
-msgstr ""
-
-#: cp/typeck2.c:842
-#, gcc-internal-format
-msgid "aggregate has a partly bracketed initializer"
-msgstr ""
-
-#: cp/typeck2.c:880 cp/typeck2.c:969
-#, gcc-internal-format
-msgid "non-trivial labeled initializers"
-msgstr ""
-
-#: cp/typeck2.c:894
-#, gcc-internal-format
-msgid "non-empty initializer for array of empty elements"
-msgstr ""
-
-#: cp/typeck2.c:1008 cp/typeck2.c:1023
+#: cp/typeck2.c:914 cp/typeck2.c:928
#, gcc-internal-format
msgid "missing initializer for member %qD"
msgstr ""
-#: cp/typeck2.c:1013
+#: cp/typeck2.c:919
#, gcc-internal-format
msgid "uninitialized const member %qD"
msgstr ""
-#: cp/typeck2.c:1015
+#: cp/typeck2.c:921
#, gcc-internal-format
msgid "member %qD with uninitialized const fields"
msgstr ""
-#: cp/typeck2.c:1017
+#: cp/typeck2.c:923
#, gcc-internal-format
msgid "member %qD is uninitialized reference"
msgstr ""
-#: cp/typeck2.c:1064
+#: cp/typeck2.c:978
#, gcc-internal-format
-msgid "index value instead of field name in union initializer"
+msgid "no field %qD found in union being initialized"
msgstr ""
-#: cp/typeck2.c:1076
+#: cp/typeck2.c:987
#, gcc-internal-format
-msgid "no field %qD in union being initialized"
+msgid "index value instead of field name in union initializer"
msgstr ""
-#: cp/typeck2.c:1084
+#: cp/typeck2.c:1000
#, gcc-internal-format
msgid "union %qT with no named members cannot be initialized"
msgstr ""
-#: cp/typeck2.c:1119
-#, gcc-internal-format
-msgid "excess elements in aggregate initializer"
-msgstr ""
-
-#: cp/typeck2.c:1227
+#: cp/typeck2.c:1147
#, gcc-internal-format
msgid "circular pointer delegation detected"
msgstr ""
-#: cp/typeck2.c:1240
+#: cp/typeck2.c:1160
#, gcc-internal-format
msgid "base operand of %<->%> has non-pointer type %qT"
msgstr ""
-#: cp/typeck2.c:1264
+#: cp/typeck2.c:1184
#, gcc-internal-format
msgid "result of %<operator->()%> yields non-pointer result"
msgstr ""
-#: cp/typeck2.c:1266
+#: cp/typeck2.c:1186
#, gcc-internal-format
msgid "base operand of %<->%> is not a pointer"
msgstr ""
-#: cp/typeck2.c:1290
+#: cp/typeck2.c:1210
#, gcc-internal-format
msgid "%qE cannot be used as a member pointer, since it is of type %qT"
msgstr ""
-#: cp/typeck2.c:1299
+#: cp/typeck2.c:1219
#, gcc-internal-format
msgid ""
"cannot apply member pointer %qE to %qE, which is of non-aggregate type %qT"
msgstr ""
-#: cp/typeck2.c:1321
+#: cp/typeck2.c:1241
#, gcc-internal-format
msgid "pointer to member type %qT incompatible with object type %qT"
msgstr ""
-#: cp/typeck2.c:1544
+#: cp/typeck2.c:1464
#, gcc-internal-format
msgid "call to function %qD which throws incomplete type %q#T"
msgstr ""
-#: cp/typeck2.c:1547
+#: cp/typeck2.c:1467
#, gcc-internal-format
msgid "call to function which throws incomplete type %q#T"
msgstr ""
-#: fortran/f95-lang.c:240
+#: fortran/f95-lang.c:233
#, gcc-internal-format
msgid "Unexpected type in truthvalue_conversion"
msgstr ""
-#: fortran/f95-lang.c:293
+#: fortran/f95-lang.c:286
#, gcc-internal-format
msgid "can't open input file: %s"
msgstr ""
-#: fortran/f95-lang.c:620
+#: fortran/f95-lang.c:612
#, gcc-internal-format
msgid "global register variable %qs used in nested function"
msgstr ""
-#: fortran/f95-lang.c:624
+#: fortran/f95-lang.c:616
#, gcc-internal-format
msgid "register variable %qs used in nested function"
msgstr ""
-#: fortran/f95-lang.c:631
+#: fortran/f95-lang.c:623
#, gcc-internal-format
msgid "address of global register variable %qs requested"
msgstr ""
-#: fortran/f95-lang.c:649
+#: fortran/f95-lang.c:641
#, gcc-internal-format
msgid "address of register variable %qs requested"
msgstr ""
-#: fortran/trans-array.c:2885
+#: fortran/trans-array.c:3049
#, gcc-internal-format
msgid "Possible frontend bug: array constructor not expanded"
msgstr ""
-#: fortran/trans-array.c:4005
+#: fortran/trans-array.c:4159
#, gcc-internal-format
msgid ""
"Possible frontend bug: Deferred array size without pointer or allocatable "
"attribute."
msgstr ""
-#: fortran/trans-array.c:4164
-#, gcc-internal-format
-msgid "scalar vector subscript???"
-msgstr ""
-
-#: fortran/trans-array.c:4438
+#: fortran/trans-array.c:4608
#, gcc-internal-format
msgid "bad expression type during walk (%d)"
msgstr ""
-#: fortran/trans-const.c:305
+#: fortran/trans-const.c:334
#, gcc-internal-format
msgid "gfc_conv_constant_to_tree(): invalid type: %s"
msgstr ""
-#: fortran/trans-decl.c:783
+#: fortran/trans-decl.c:786
#, gcc-internal-format
msgid "intrinsic variable which isn't a procedure"
msgstr ""
-#: fortran/trans-decl.c:2031
+#: fortran/trans-decl.c:2066
#, gcc-internal-format
msgid "Function does not return a value"
msgstr ""
#. I don't think this should ever happen.
-#: fortran/trans-decl.c:2129
+#: fortran/trans-decl.c:2164
#, gcc-internal-format
msgid "module symbol %s in wrong namespace"
msgstr ""
-#: fortran/trans-decl.c:2143
+#: fortran/trans-decl.c:2182
#, gcc-internal-format
msgid "backend decl for module variable %s already exists"
msgstr ""
-#: fortran/trans-decl.c:2225
+#: fortran/trans-decl.c:2264
#, gcc-internal-format
msgid "unused parameter %qs"
msgstr ""
-#: fortran/trans-decl.c:2230
+#: fortran/trans-decl.c:2269
#, gcc-internal-format
msgid "unused variable %qs"
msgstr ""
-#: fortran/trans-decl.c:2384
+#: fortran/trans-decl.c:2441
#, gcc-internal-format
msgid "Function return value not set"
msgstr ""
-#: fortran/trans-expr.c:994
+#: fortran/trans-expr.c:998
#, gcc-internal-format
msgid "Unknown intrinsic op"
msgstr ""
@@ -22701,39 +27463,39 @@ msgstr ""
msgid "Intrinsic function %s(%d) not recognized"
msgstr ""
-#: fortran/trans-io.c:1399
+#: fortran/trans-io.c:1574
#, gcc-internal-format
msgid "Bad IO basetype (%d)"
msgstr ""
-#: fortran/trans-types.c:195
+#: fortran/trans-types.c:196
#, gcc-internal-format
msgid "integer kind=8 not available for -fdefault-integer-8 option"
msgstr ""
-#: fortran/trans-types.c:207
+#: fortran/trans-types.c:208
#, gcc-internal-format
msgid "real kind=8 not available for -fdefault-real-8 option"
msgstr ""
-#: fortran/trans-types.c:220
+#: fortran/trans-types.c:221
#, gcc-internal-format
msgid "Use of -fdefault-double-8 requires -fdefault-real-8"
msgstr ""
-#: fortran/trans-types.c:932
+#: fortran/trans-types.c:933
#, gcc-internal-format
msgid "Array element size too big"
msgstr ""
-#: fortran/trans.c:621
+#: fortran/trans.c:625
#, gcc-internal-format
msgid "gfc_trans_code(): Bad statement code"
msgstr ""
#. I changed this from sorry(...) because it should not return.
#. TODO: Remove gfc_todo_error before releasing version 1.0.
-#: fortran/trans.h:569
+#: fortran/trans.h:567
#, gcc-internal-format
msgid "gfc_todo: Not Implemented: "
msgstr ""
@@ -22748,12 +27510,12 @@ msgstr ""
msgid "variable %qD may not have been initialized"
msgstr ""
-#: java/check-init.c:946
+#: java/check-init.c:948
#, gcc-internal-format
msgid "internal error in check-init: tree code not implemented: %s"
msgstr ""
-#: java/check-init.c:1019
+#: java/check-init.c:1021
#, gcc-internal-format
msgid "%Jfinal field %qD may not have been initialized"
msgstr ""
@@ -22778,19 +27540,19 @@ msgstr ""
msgid "ConstantValue attribute of field '%s' has wrong type"
msgstr ""
-#: java/class.c:1433
+#: java/class.c:1438
#, gcc-internal-format
msgid "%Jabstract method in non-abstract class"
msgstr ""
-#: java/class.c:2362
+#: java/class.c:2366
#, gcc-internal-format
-msgid "%Jnon-static method '%D' overrides static method"
+msgid "non-static method %q+D overrides static method"
msgstr ""
#: java/decl.c:1313
#, gcc-internal-format
-msgid "%J'%D' used prior to declaration"
+msgid "%q+D used prior to declaration"
msgstr ""
#: java/decl.c:1354
@@ -22803,19 +27565,9 @@ msgstr ""
msgid "declaration of %qs shadows a symbol from the parameter list"
msgstr ""
-#: java/decl.c:1685
-#, gcc-internal-format
-msgid "%Jlabel '%D' used but not defined"
-msgstr ""
-
-#: java/decl.c:1690
-#, gcc-internal-format
-msgid "%Jlabel '%D' defined but not used"
-msgstr ""
-
#: java/decl.c:1818
#, gcc-internal-format
-msgid "%JIn %D: overlapped variable and exception ranges at %d"
+msgid "In %+D: overlapped variable and exception ranges at %d"
msgstr ""
#: java/decl.c:1881
@@ -22825,106 +27577,106 @@ msgstr ""
#: java/decl.c:1890
#, gcc-internal-format
-msgid "%Jbad PC range for debug info for local '%D'"
+msgid "bad PC range for debug info for local %q+D"
msgstr ""
-#: java/expr.c:382
+#: java/expr.c:370
#, gcc-internal-format
msgid "need to insert runtime check for %s"
msgstr ""
-#: java/expr.c:511 java/expr.c:558
+#: java/expr.c:499 java/expr.c:546
#, gcc-internal-format
msgid "assert: %s is assign compatible with %s"
msgstr ""
-#: java/expr.c:678
+#: java/expr.c:666
#, gcc-internal-format
msgid "stack underflow - dup* operation"
msgstr ""
-#: java/expr.c:1694
+#: java/expr.c:1652
#, gcc-internal-format
msgid "reference %qs is ambiguous: appears in interface %qs and interface %qs"
msgstr ""
-#: java/expr.c:1722
+#: java/expr.c:1680
#, gcc-internal-format
msgid "field %qs not found"
msgstr ""
-#: java/expr.c:2108
+#: java/expr.c:2059
#, gcc-internal-format
msgid "method '%s' not found in class"
msgstr ""
-#: java/expr.c:2313
+#: java/expr.c:2264
#, gcc-internal-format
msgid "failed to find class '%s'"
msgstr ""
-#: java/expr.c:2342
+#: java/expr.c:2293
#, gcc-internal-format
msgid "class '%s' has no method named '%s' matching signature '%s'"
msgstr ""
-#: java/expr.c:2373
+#: java/expr.c:2324
#, gcc-internal-format
msgid "invokestatic on non static method"
msgstr ""
-#: java/expr.c:2378
+#: java/expr.c:2329
#, gcc-internal-format
msgid "invokestatic on abstract method"
msgstr ""
-#: java/expr.c:2386
+#: java/expr.c:2337
#, gcc-internal-format
msgid "invoke[non-static] on static method"
msgstr ""
-#: java/expr.c:2703
+#: java/expr.c:2654
#, gcc-internal-format
msgid "missing field '%s' in '%s'"
msgstr ""
-#: java/expr.c:2710
+#: java/expr.c:2661
#, gcc-internal-format
msgid "mismatching signature for field '%s' in '%s'"
msgstr ""
-#: java/expr.c:2733
+#: java/expr.c:2684
#, gcc-internal-format
-msgid "%Jassignment to final field '%D' not in field's class"
+msgid "assignment to final field %q+D not in field's class"
msgstr ""
-#: java/expr.c:2738
+#: java/expr.c:2689
#, gcc-internal-format
-msgid "%Jassignment to final static field %qD not in class initializer"
+msgid "assignment to final static field %q+D not in class initializer"
msgstr ""
-#: java/expr.c:2747
+#: java/expr.c:2698
#, gcc-internal-format
-msgid "%Jassignment to final field '%D' not in constructor"
+msgid "assignment to final field %q+D not in constructor"
msgstr ""
-#: java/expr.c:2937
+#: java/expr.c:2888
#, gcc-internal-format
msgid "invalid PC in line number table"
msgstr ""
-#: java/expr.c:2993
+#: java/expr.c:2936
#, gcc-internal-format
msgid "unreachable bytecode from %d to before %d"
msgstr ""
-#: java/expr.c:3035
+#: java/expr.c:2978
#, gcc-internal-format
msgid "unreachable bytecode from %d to the end of the method"
msgstr ""
#. duplicate code from LOAD macro
-#: java/expr.c:3335
+#: java/expr.c:3278
#, gcc-internal-format
msgid "unrecogized wide sub-instruction"
msgstr ""
@@ -22954,7 +27706,7 @@ msgstr ""
msgid "Not a valid Java .class file."
msgstr ""
-#: java/gjavah.c:2068 java/jcf-parse.c:746
+#: java/gjavah.c:2068 java/jcf-parse.c:750
#, gcc-internal-format
msgid "error while parsing constant pool"
msgstr ""
@@ -23011,48 +27763,48 @@ msgstr ""
msgid "bad value constant type %d, index %d"
msgstr ""
-#: java/jcf-parse.c:572
+#: java/jcf-parse.c:576
#, gcc-internal-format
msgid "can't reopen %s: %m"
msgstr ""
-#: java/jcf-parse.c:579
+#: java/jcf-parse.c:583
#, gcc-internal-format
msgid "can't close %s: %m"
msgstr ""
-#: java/jcf-parse.c:714 java/jcf-parse.c:720
+#: java/jcf-parse.c:718 java/jcf-parse.c:724
#, gcc-internal-format
msgid "cannot find file for class %s"
msgstr ""
-#: java/jcf-parse.c:743
+#: java/jcf-parse.c:747
#, gcc-internal-format
msgid "not a valid Java .class file"
msgstr ""
#. FIXME - where was first time
-#: java/jcf-parse.c:761
+#: java/jcf-parse.c:765
#, gcc-internal-format
msgid "reading class %s for the second time from %s"
msgstr ""
-#: java/jcf-parse.c:779
+#: java/jcf-parse.c:783
#, gcc-internal-format
msgid "error while parsing fields"
msgstr ""
-#: java/jcf-parse.c:782
+#: java/jcf-parse.c:786
#, gcc-internal-format
msgid "error while parsing methods"
msgstr ""
-#: java/jcf-parse.c:785
+#: java/jcf-parse.c:789
#, gcc-internal-format
msgid "error while parsing final attributes"
msgstr ""
-#: java/jcf-parse.c:802
+#: java/jcf-parse.c:806
#, gcc-internal-format
msgid ""
"the %<java.lang.Object%> that was found in %qs didn't have the special zero-"
@@ -23061,58 +27813,58 @@ msgid ""
"info page describing how to set the classpath"
msgstr ""
-#: java/jcf-parse.c:836
+#: java/jcf-parse.c:840
#, gcc-internal-format
msgid "%Hduplicate class will only be compiled once"
msgstr ""
-#: java/jcf-parse.c:890
+#: java/jcf-parse.c:894
#, gcc-internal-format
msgid "missing Code attribute"
msgstr ""
-#: java/jcf-parse.c:1172
+#: java/jcf-parse.c:1176
#, gcc-internal-format
msgid "no input file specified"
msgstr ""
-#: java/jcf-parse.c:1207
+#: java/jcf-parse.c:1211
#, gcc-internal-format
msgid "can't close input file %s: %m"
msgstr ""
-#: java/jcf-parse.c:1254
+#: java/jcf-parse.c:1258
#, gcc-internal-format
msgid "bad zip/jar file %s"
msgstr ""
-#: java/jcf-parse.c:1475
+#: java/jcf-parse.c:1479
#, gcc-internal-format
msgid "error while reading %s from zip file"
msgstr ""
-#: java/jcf-write.c:2665
+#: java/jcf-write.c:2668
#, gcc-internal-format
msgid ""
"internal error in generate_bytecode_insn - tree code not implemented: %s"
msgstr ""
-#: java/jcf-write.c:3039
+#: java/jcf-write.c:3042
#, gcc-internal-format
msgid "field initializer type mismatch"
msgstr ""
-#: java/jcf-write.c:3496
+#: java/jcf-write.c:3499
#, gcc-internal-format
msgid "can't create directory %s: %m"
msgstr ""
-#: java/jcf-write.c:3529
+#: java/jcf-write.c:3532
#, gcc-internal-format
msgid "can't open %s for writing: %m"
msgstr ""
-#: java/jcf-write.c:3549
+#: java/jcf-write.c:3552
#, gcc-internal-format
msgid "can't create %s: %m"
msgstr ""
@@ -23137,12 +27889,12 @@ msgstr ""
msgid "warning: already-compiled .class files ignored with -C"
msgstr ""
-#: java/lang.c:624
+#: java/lang.c:615
#, gcc-internal-format
msgid "can't do dependency tracking with input from stdin"
msgstr ""
-#: java/lang.c:640
+#: java/lang.c:631
#, gcc-internal-format
msgid "couldn't determine target name for dependency tracking"
msgstr ""
@@ -23167,807 +27919,6 @@ msgstr ""
msgid "internal error - invalid Utf8 name"
msgstr ""
-#: java/parse.y:765
-#, gcc-internal-format
-msgid "Ambiguous class: %qs and %qs"
-msgstr ""
-
-#: java/parse.y:831
-#, gcc-internal-format
-msgid "Modifier %qs declared twice"
-msgstr ""
-
-#: java/parse.y:1074
-#, gcc-internal-format
-msgid "Discouraged form of returned type specification"
-msgstr ""
-
-#: java/parse.y:1169
-#, gcc-internal-format
-msgid ""
-"Can't define static initializer in class %qs. Static initializer can only be "
-"defined in top-level classes"
-msgstr ""
-
-#: java/parse.y:1464
-#, gcc-internal-format
-msgid "An empty declaration is a deprecated feature that should not be used"
-msgstr ""
-
-#: java/parse.y:3027
-#, gcc-internal-format
-msgid ": %qs JDK1.1(TM) feature"
-msgstr ""
-
-#: java/parse.y:3107 java/parse.y:3109
-#, gcc-internal-format
-msgid ""
-"%s.\n"
-"%s"
-msgstr ""
-
-#: java/parse.y:3268
-#, gcc-internal-format
-msgid "Missing return statement"
-msgstr ""
-
-#: java/parse.y:3290 java/parse.y:11970
-#: java/parse.y:11974
-#, gcc-internal-format
-msgid "Unreachable statement"
-msgstr ""
-
-#: java/parse.y:3300
-#, gcc-internal-format
-msgid "Can't access %s field %<%s.%s%> from %qs"
-msgstr ""
-
-#: java/parse.y:3369
-#, gcc-internal-format
-msgid "%s %qs already defined in %s:%d"
-msgstr ""
-
-#: java/parse.y:3387
-#, gcc-internal-format
-msgid ""
-"Variable %qs is already defined in this method and was declared %<%s %s%> at "
-"line %d"
-msgstr ""
-
-#: java/parse.y:3498
-#, gcc-internal-format
-msgid "Interface %qs repeated"
-msgstr ""
-
-#: java/parse.y:3528
-#, gcc-internal-format
-msgid "%s name %qs clashes with imported type %qs"
-msgstr ""
-
-#: java/parse.y:3560
-#, gcc-internal-format
-msgid "Public %s %qs must be defined in a file called %<%s.java%>"
-msgstr ""
-
-#: java/parse.y:3575
-#, gcc-internal-format
-msgid ""
-"Inner class %qs can't be static. Static classes can only occur in interfaces "
-"and top-level classes"
-msgstr ""
-
-#: java/parse.y:3656
-#, gcc-internal-format
-msgid ""
-"The class name %qs is already defined in this scope. An inner class may not "
-"have the same simple name as any of its enclosing classes"
-msgstr ""
-
-#: java/parse.y:3698
-#, gcc-internal-format
-msgid "Qualifier must be a reference"
-msgstr ""
-
-#: java/parse.y:3719
-#, gcc-internal-format
-msgid "Cyclic inheritance involving %s"
-msgstr ""
-
-#: java/parse.y:3979
-#, gcc-internal-format
-msgid ""
-"Redundant use of %<abstract%> modifier. Interface %qs is implicitly abstract"
-msgstr ""
-
-#: java/parse.y:4134
-#, gcc-internal-format
-msgid "Class %qs can't be declared both abstract and final"
-msgstr ""
-
-#: java/parse.y:4146
-#, gcc-internal-format
-msgid "%<java.lang.Object%> can't extend anything"
-msgstr ""
-
-#: java/parse.y:4389
-#, gcc-internal-format
-msgid "Duplicate variable declaration: %<%s %s%> was %<%s %s%> (%s:%d)"
-msgstr ""
-
-#: java/parse.y:4453
-#, gcc-internal-format
-msgid "Field %qs can't be static in inner class %qs unless it is final"
-msgstr ""
-
-#: java/parse.y:4696
-#, gcc-internal-format
-msgid "Class %qs must be declared abstract to define abstract method %qs"
-msgstr ""
-
-#: java/parse.y:4703
-#, gcc-internal-format
-msgid "native method %qs can't be strictfp"
-msgstr ""
-
-#: java/parse.y:4707
-#, gcc-internal-format
-msgid "method %qs can't be transient"
-msgstr ""
-
-#: java/parse.y:4710
-#, gcc-internal-format
-msgid "method %qs can't be volatile"
-msgstr ""
-
-#: java/parse.y:4760 java/parse.y:6489
-#, gcc-internal-format
-msgid ""
-"Method %qs can't be static in inner class %qs. Only members of interfaces "
-"and top-level classes can be static"
-msgstr ""
-
-#: java/parse.y:4915
-#, gcc-internal-format
-msgid "%s method %qs can't have a body defined"
-msgstr ""
-
-#: java/parse.y:4926
-#, gcc-internal-format
-msgid "Non native and non abstract method %qs must have a body defined"
-msgstr ""
-
-#: java/parse.y:4996
-#, gcc-internal-format
-msgid "%s: recursive invocation of constructor %qs"
-msgstr ""
-
-#: java/parse.y:5026
-#, gcc-internal-format
-msgid ""
-"Inconsistent member declaration. At most one of %<public%>, %<private%>, or "
-"%<protected%> may be specified"
-msgstr ""
-
-#: java/parse.y:5034
-#, gcc-internal-format
-msgid ""
-"Inconsistent member declaration. At most one of %<final%> or %<volatile%> "
-"may be specified"
-msgstr ""
-
-#: java/parse.y:5124
-#, gcc-internal-format
-msgid "Variable %qs is used more than once in the argument list of method %qs"
-msgstr ""
-
-#: java/parse.y:5208
-#, gcc-internal-format
-msgid "%s %qs can't implement/extend %s %qs"
-msgstr ""
-
-#: java/parse.y:5242
-#, gcc-internal-format
-msgid "Class %qs can't subclass %s %qs"
-msgstr ""
-
-#: java/parse.y:5251
-#, gcc-internal-format
-msgid "Can't subclass final classes: %s"
-msgstr ""
-
-#: java/parse.y:5437
-#, gcc-internal-format
-msgid "Cyclic class inheritance%s"
-msgstr ""
-
-#: java/parse.y:6140
-#, gcc-internal-format
-msgid "Superclass %qs of class %qs not found"
-msgstr ""
-
-#: java/parse.y:6146
-#, gcc-internal-format
-msgid "Type %qs not found in declaration of field %qs"
-msgstr ""
-
-#: java/parse.y:6152
-#, gcc-internal-format
-msgid "Type %qs not found in the declaration of the argument %qs of method %qs"
-msgstr ""
-
-#: java/parse.y:6159
-#, gcc-internal-format
-msgid "Type %qs not found in the declaration of the return type of method %qs"
-msgstr ""
-
-#: java/parse.y:6165
-#, gcc-internal-format
-msgid "Superinterface %qs of %s %qs not found"
-msgstr ""
-
-#: java/parse.y:6172
-#, gcc-internal-format
-msgid "Type %qs not found in the declaration of the local variable %qs"
-msgstr ""
-
-#: java/parse.y:6179
-#, gcc-internal-format
-msgid "Class %qs not found in %<throws%>"
-msgstr ""
-
-#: java/parse.y:6236
-#, gcc-internal-format
-msgid "Duplicate %s declaration %qs"
-msgstr ""
-
-#: java/parse.y:6310
-#, gcc-internal-format
-msgid ""
-"Class %qs doesn't define the abstract method %<%s %s%> from %s %<%s%>. This "
-"method must be defined or %s %qs must be declared abstract"
-msgstr ""
-
-#: java/parse.y:6466
-#, gcc-internal-format
-msgid ""
-"Class %qs in %<throws%> clause must be a subclass of class %<java.lang."
-"Throwable%>"
-msgstr ""
-
-#: java/parse.y:6510
-#, gcc-internal-format
-msgid ""
-"Class %qs must override %qs with a public method in order to implement "
-"interface %qs"
-msgstr ""
-
-#: java/parse.y:6524 java/parse.y:6747
-#, gcc-internal-format
-msgid "Method %qs was defined with return type %qs in class %qs"
-msgstr ""
-
-#: java/parse.y:6541
-#, gcc-internal-format
-msgid "%s methods can't be overridden. Method %qs is %s in class %qs"
-msgstr ""
-
-#: java/parse.y:6555
-#, gcc-internal-format
-msgid ""
-"Instance methods can't be overridden by a static method. Method %qs is an "
-"instance method in class %qs"
-msgstr ""
-
-#: java/parse.y:6578
-#, gcc-internal-format
-msgid ""
-"Methods can't be overridden to be more private. Method %qs is not %s in "
-"class %qs"
-msgstr ""
-
-#: java/parse.y:6715
-#, gcc-internal-format
-msgid ""
-"Invalid checked exception class %qs in %<throws%> clause. The exception "
-"must be a subclass of an exception thrown by %qs from class %qs"
-msgstr ""
-
-#: java/parse.y:6772
-#, gcc-internal-format
-msgid ""
-"Interface %qs inherits method %qs from interface %qs. This method is "
-"redefined with a different return type in interface %qs"
-msgstr ""
-
-#: java/parse.y:6947
-#, gcc-internal-format
-msgid "Class or interface %qs not found in import"
-msgstr ""
-
-#: java/parse.y:7036
-#, gcc-internal-format
-msgid "malformed .zip archive in CLASSPATH: %s"
-msgstr ""
-
-#: java/parse.y:7107
-#, gcc-internal-format
-msgid ""
-"Can't find default package %qs. Check the CLASSPATH environment variable and "
-"the access to the archives"
-msgstr ""
-
-#: java/parse.y:7112
-#, gcc-internal-format
-msgid "Package %qs not found in import"
-msgstr ""
-
-#: java/parse.y:7213
-#, gcc-internal-format
-msgid "Type %qs also potentially defined in package %qs"
-msgstr ""
-
-#: java/parse.y:7337
-#, gcc-internal-format
-msgid "Nested %s %s is %s; cannot be accessed from here"
-msgstr ""
-
-#: java/parse.y:7375
-#, gcc-internal-format
-msgid ""
-"Can't access %s %qs. Only public classes and interfaces in other packages "
-"can be accessed"
-msgstr ""
-
-#: java/parse.y:7413
-#, gcc-internal-format
-msgid "Only %<final%> is allowed as a local variables modifier"
-msgstr ""
-
-#: java/parse.y:9046
-#, gcc-internal-format
-msgid "No constructor matching %qs found in class %qs"
-msgstr ""
-
-#: java/parse.y:9544
-#, gcc-internal-format
-msgid "Can't reference %qs before the superclass constructor has been called"
-msgstr ""
-
-#: java/parse.y:9598
-#, gcc-internal-format
-msgid ""
-"Local variable %qs can't be accessed from within the inner class %qs unless "
-"it is declared final"
-msgstr ""
-
-#: java/parse.y:9603 java/parse.y:10061
-#, gcc-internal-format
-msgid "Undefined variable %qs"
-msgstr ""
-
-#: java/parse.y:9614
-#, gcc-internal-format
-msgid "Can't make a static reference to nonstatic variable %qs in class %qs"
-msgstr ""
-
-#: java/parse.y:9815 java/parse.y:10689
-#, gcc-internal-format
-msgid "No enclosing instance for inner class %qs is in scope%s"
-msgstr ""
-
-#: java/parse.y:9934 java/parse.y:12389
-#, gcc-internal-format
-msgid "Keyword %<this%> used outside allowed context"
-msgstr ""
-
-#: java/parse.y:9940 java/parse.y:10843
-#, gcc-internal-format
-msgid ""
-"Can't reference %<this%> before the superclass constructor has been called"
-msgstr ""
-
-#: java/parse.y:9956
-#, gcc-internal-format
-msgid ""
-"Can't use variable %<%s.this%>: type %qs isn't an outer type of type %qs"
-msgstr ""
-
-#: java/parse.y:9989
-#, gcc-internal-format
-msgid "Keyword %<super%> used outside allowed context"
-msgstr ""
-
-#: java/parse.y:10038
-#, gcc-internal-format
-msgid "No variable %qs defined in class %qs"
-msgstr ""
-
-#: java/parse.y:10043
-#, gcc-internal-format
-msgid "Undefined variable or class name: %qs"
-msgstr ""
-
-#: java/parse.y:10125
-#, gcc-internal-format
-msgid "Can't use type %qs as a qualifier"
-msgstr ""
-
-#: java/parse.y:10144
-#, gcc-internal-format
-msgid "Attempt to reference field %qs in %<%s %s%>"
-msgstr ""
-
-#: java/parse.y:10175
-#, gcc-internal-format
-msgid "No variable %qs defined in type %qs"
-msgstr ""
-
-#: java/parse.y:10267
-#, gcc-internal-format
-msgid "Attempt to reference field %<new%> in a %qs"
-msgstr ""
-
-#: java/parse.y:10404
-#, gcc-internal-format
-msgid "The class %qs has been deprecated"
-msgstr ""
-
-#: java/parse.y:10414
-#, gcc-internal-format
-msgid "The %s %qs in class %qs has been deprecated"
-msgstr ""
-
-#: java/parse.y:10531
-#, gcc-internal-format
-msgid "Can't invoke a method on primitive type %qs"
-msgstr ""
-
-#: java/parse.y:10546
-#, gcc-internal-format
-msgid "Can't make static reference to method %qs in interface %qs"
-msgstr ""
-
-#: java/parse.y:10556 java/parse.y:10890
-#, gcc-internal-format
-msgid "Can't make static reference to method %<%s %s%> in class %qs"
-msgstr ""
-
-#: java/parse.y:10596
-#, gcc-internal-format
-msgid "Can't invoke super constructor on java.lang.Object"
-msgstr ""
-
-#: java/parse.y:10609 java/parse.y:14452
-#, gcc-internal-format
-msgid "Class %qs not found in type declaration"
-msgstr ""
-
-#: java/parse.y:10621
-#, gcc-internal-format
-msgid "Class %qs is an abstract class. It can't be instantiated"
-msgstr ""
-
-#: java/parse.y:10651
-#, gcc-internal-format
-msgid "No method named %qs in scope"
-msgstr ""
-
-#: java/parse.y:10762
-#, gcc-internal-format
-msgid "Can't access %s %s %<%s.%s%> from %qs"
-msgstr ""
-
-#: java/parse.y:11236
-#, gcc-internal-format
-msgid "Can't find %s %<%s(%s)%> in type %qs%s"
-msgstr ""
-
-#: java/parse.y:11816
-#, gcc-internal-format
-msgid "Constant expression required"
-msgstr ""
-
-#: java/parse.y:11829
-#, gcc-internal-format
-msgid "Incompatible type for case. Can't convert %qs to %<int%>"
-msgstr ""
-
-#: java/parse.y:11863
-#, gcc-internal-format
-msgid "Duplicate case label: %<default%>"
-msgstr ""
-
-#: java/parse.y:12203
-#, gcc-internal-format
-msgid "Incompatible type for %<+=%>. Can't convert %qs to %<java.lang.String%>"
-msgstr ""
-
-#: java/parse.y:12369
-#, gcc-internal-format
-msgid "missing static field %qs"
-msgstr ""
-
-#: java/parse.y:12374
-#, gcc-internal-format
-msgid "not a static field %qs"
-msgstr ""
-
-#: java/parse.y:12397
-#, gcc-internal-format
-msgid ""
-"Can't reference %<this%> or %<super%> before the superclass constructor has "
-"been called"
-msgstr ""
-
-#: java/parse.y:12417
-#, gcc-internal-format
-msgid "No case for %s"
-msgstr ""
-
-#: java/parse.y:12847
-#, gcc-internal-format
-msgid "Invalid left hand side of assignment"
-msgstr ""
-
-#: java/parse.y:12898
-#, gcc-internal-format
-msgid "Incompatible type for %s. Can't convert %qs to %qs"
-msgstr ""
-
-#: java/parse.y:12901
-#, gcc-internal-format
-msgid "Incompatible type for %s. Explicit cast needed to convert %qs to %qs"
-msgstr ""
-
-#: java/parse.y:13073
-#, gcc-internal-format
-msgid ""
-"Constant expression %qs too wide for narrowing primitive conversion to %qs"
-msgstr ""
-
-#: java/parse.y:13364
-#, gcc-internal-format
-msgid "unregistered operator %s"
-msgstr ""
-
-#: java/parse.y:13513
-#, gcc-internal-format
-msgid ""
-"Evaluating this expression will result in an arithmetic exception being "
-"thrown"
-msgstr ""
-
-#: java/parse.y:13595
-#, gcc-internal-format
-msgid ""
-"Incompatible type for %qs. Explicit cast needed to convert shift distance "
-"from %qs to integral"
-msgstr ""
-
-#: java/parse.y:13600
-#, gcc-internal-format
-msgid ""
-"Incompatible type for %qs. Can't convert shift distance from %qs to integral"
-msgstr ""
-
-#: java/parse.y:13674
-#, gcc-internal-format
-msgid "Invalid argument %qs for %<instanceof%>"
-msgstr ""
-
-#: java/parse.y:13701
-#, gcc-internal-format
-msgid "Impossible for %qs to be instance of %qs"
-msgstr ""
-
-#: java/parse.y:13832
-#, gcc-internal-format
-msgid "Incompatible type for %qs. Can't convert %qs to %qs"
-msgstr ""
-
-#: java/parse.y:14307
-#, gcc-internal-format
-msgid "Invalid argument type %qs to %qs"
-msgstr ""
-
-#: java/parse.y:14543
-#, gcc-internal-format
-msgid "Invalid cast from %qs to %qs"
-msgstr ""
-
-#: java/parse.y:14590
-#, gcc-internal-format
-msgid "%<[]%> can only be applied to arrays. It can't be applied to %qs"
-msgstr ""
-
-#: java/parse.y:14603
-#, gcc-internal-format
-msgid ""
-"Incompatible type for %<[]%>. Explicit cast needed to convert %qs to %<int%>"
-msgstr ""
-
-#: java/parse.y:14607
-#, gcc-internal-format
-msgid "Incompatible type for %<[]%>. Can't convert %qs to %<int%>"
-msgstr ""
-
-#: java/parse.y:14678
-#, gcc-internal-format
-msgid ""
-"Incompatible type for dimension in array creation expression. %s convert %qs "
-"to %<int%>"
-msgstr ""
-
-#: java/parse.y:14794
-#, gcc-internal-format
-msgid "Invalid array initializer for non-array type %qs"
-msgstr ""
-
-#: java/parse.y:14881
-#, gcc-internal-format
-msgid "Incompatible type for array. %s convert %qs to %qs"
-msgstr ""
-
-#: java/parse.y:14950
-#, gcc-internal-format
-msgid "%<return%> inside instance initializer"
-msgstr ""
-
-#: java/parse.y:14954
-#, gcc-internal-format
-msgid "%<return%> inside static initializer"
-msgstr ""
-
-#: java/parse.y:14960
-#, gcc-internal-format
-msgid "%<return%> with%s value from %<%s %s%>"
-msgstr ""
-
-#: java/parse.y:14967
-#, gcc-internal-format
-msgid "%<return%> with value from constructor %qs"
-msgstr ""
-
-#: java/parse.y:15032
-#, gcc-internal-format
-msgid "Incompatible type for %<if%>. Can't convert %qs to %<boolean%>"
-msgstr ""
-
-#: java/parse.y:15065
-#, gcc-internal-format
-msgid "Declaration of %qs shadows a previous label declaration"
-msgstr ""
-
-#: java/parse.y:15070
-#, gcc-internal-format
-msgid "This is the location of the previous declaration of label %qs"
-msgstr ""
-
-#: java/parse.y:15317
-#, gcc-internal-format
-msgid "No label definition found for %qs"
-msgstr ""
-
-#: java/parse.y:15330
-#, gcc-internal-format
-msgid "%<continue%> must be in loop"
-msgstr ""
-
-#: java/parse.y:15333
-#, gcc-internal-format
-msgid "continue label %qs does not name a loop"
-msgstr ""
-
-#: java/parse.y:15354
-#, gcc-internal-format
-msgid "%<break%> must be in loop or switch"
-msgstr ""
-
-#: java/parse.y:15395
-#, gcc-internal-format
-msgid ""
-"Incompatible type for loop conditional. Can't convert %qs to %<boolean%>"
-msgstr ""
-
-#: java/parse.y:15433
-#, gcc-internal-format
-msgid "Incompatible type for %<switch%>. Can't convert %qs to %<int%>"
-msgstr ""
-
-#. The case_label_list is in reverse order, so print the
-#. outer label first.
-#: java/parse.y:15464
-#, gcc-internal-format
-msgid "duplicate case label: %<"
-msgstr ""
-
-#: java/parse.y:15465
-#, gcc-internal-format
-msgid "%>"
-msgstr ""
-
-#: java/parse.y:15468
-#, gcc-internal-format
-msgid "original label is here"
-msgstr ""
-
-#: java/parse.y:15685
-#, gcc-internal-format
-msgid ""
-"Can't catch class %qs. Catch clause parameter type must be a subclass of "
-"class %<java.lang.Throwable%>"
-msgstr ""
-
-#: java/parse.y:15709
-#, gcc-internal-format
-msgid "%<catch%> not reached because of the catch clause at line %d"
-msgstr ""
-
-#: java/parse.y:15776
-#, gcc-internal-format
-msgid ""
-"Incompatible type for %<synchronized%>. Can't convert %qs to %<java.lang."
-"Object%>"
-msgstr ""
-
-#: java/parse.y:15827
-#, gcc-internal-format
-msgid "Can't throw %qs; it must be a subclass of class %<java.lang.Throwable%>"
-msgstr ""
-
-#: java/parse.y:15856
-#, gcc-internal-format
-msgid ""
-"Checked exception %qs can't be thrown in instance initializer (not all "
-"declared constructor are declaring it in their %<throws%> clause)"
-msgstr ""
-
-#: java/parse.y:15877
-#, gcc-internal-format
-msgid ""
-"Checked exception %qs can't be caught by any of the catch clause(s) of the "
-"surrounding %<try%> block"
-msgstr ""
-
-#: java/parse.y:15890
-#, gcc-internal-format
-msgid "Checked exception %qs can't be thrown in initializer"
-msgstr ""
-
-#: java/parse.y:15894
-#, gcc-internal-format
-msgid "Checked exception %qs isn't thrown from a %<try%> block"
-msgstr ""
-
-#: java/parse.y:15900
-#, gcc-internal-format
-msgid ""
-"Checked exception %qs doesn't match any of current method's %<throws%> "
-"declaration(s)"
-msgstr ""
-
-#: java/parse.y:15952
-#, gcc-internal-format
-msgid "Exception %qs can't be thrown in initializer"
-msgstr ""
-
-#: java/parse.y:15957
-#, gcc-internal-format
-msgid ""
-"Exception %qs must be caught, or it must be declared in the %<throws%> "
-"clause of %qs"
-msgstr ""
-
-#: java/parse.y:16070
-#, gcc-internal-format
-msgid "Incompatible type for %<?:%>. Can't convert %qs to %<boolean%>"
-msgstr ""
-
-#: java/parse.y:16138
-#, gcc-internal-format
-msgid "Incompatible type for %<?:%>. Can't convert %qs to %qs"
-msgstr ""
-
#: java/typeck.c:531
#, gcc-internal-format
msgid "junk at end of signature string"
@@ -23983,21 +27934,11 @@ msgstr ""
msgid "verification failed at PC=%d: %s"
msgstr ""
-#: java/verify-glue.c:473 java/verify.c:480
+#: java/verify-glue.c:473
#, gcc-internal-format
msgid "bad pc in exception_table"
msgstr ""
-#: java/verify.c:1475
-#, gcc-internal-format
-msgid "unknown opcode %d@pc=%d during verification"
-msgstr ""
-
-#: java/verify.c:1550 java/verify.c:1566 java/verify.c:1571
-#, gcc-internal-format
-msgid "verification error at PC=%d"
-msgstr ""
-
#: java/parse.h:129
#, gcc-internal-format
msgid "%s method can't be abstract"
@@ -24008,18 +27949,6 @@ msgstr ""
msgid "Constructor can't be %s"
msgstr ""
-#. Pedantic warning on obsolete modifiers. Note: when cl is NULL,
-#. flags was set artificially, such as for a interface method
-#: java/parse.h:165
-#, gcc-internal-format
-msgid "Discouraged redundant use of %qs modifier in declaration of %s"
-msgstr ""
-
-#: java/parse.h:172
-#, gcc-internal-format
-msgid "Discouraged redundant use of %qs modifier in declaration of %s %qs"
-msgstr ""
-
#. Standard error messages
#: java/parse.h:356
#, gcc-internal-format
@@ -24062,224 +27991,219 @@ msgstr ""
msgid "method definition not in @implementation context"
msgstr ""
-#: objc/objc-act.c:1152
+#: objc/objc-act.c:1174
#, gcc-internal-format
msgid "comparison of distinct Objective-C types lacks a cast"
msgstr ""
-#: objc/objc-act.c:1156
+#: objc/objc-act.c:1178
#, gcc-internal-format
msgid "initialization from distinct Objective-C type"
msgstr ""
-#: objc/objc-act.c:1160
+#: objc/objc-act.c:1182
#, gcc-internal-format
msgid "assignment from distinct Objective-C type"
msgstr ""
-#: objc/objc-act.c:1164
+#: objc/objc-act.c:1186
#, gcc-internal-format
msgid "distinct Objective-C type in return"
msgstr ""
-#: objc/objc-act.c:1168
+#: objc/objc-act.c:1190
#, gcc-internal-format
msgid "passing argument %d of %qE from distinct Objective-C type"
msgstr ""
-#: objc/objc-act.c:1323
+#: objc/objc-act.c:1345
#, gcc-internal-format
msgid "statically allocated instance of Objective-C class %qs"
msgstr ""
-#: objc/objc-act.c:1394
+#: objc/objc-act.c:1416
#, gcc-internal-format
msgid "protocol %qs has circular dependency"
msgstr ""
-#: objc/objc-act.c:1416 objc/objc-act.c:6580
+#: objc/objc-act.c:1438 objc/objc-act.c:6554
#, gcc-internal-format
msgid "cannot find protocol declaration for %qs"
msgstr ""
-#: objc/objc-act.c:1866 objc/objc-act.c:3344 objc/objc-act.c:7189
-#: objc/objc-act.c:7525 objc/objc-act.c:7579 objc/objc-act.c:7604
+#: objc/objc-act.c:1888 objc/objc-act.c:3322 objc/objc-act.c:7163
+#: objc/objc-act.c:7499 objc/objc-act.c:7553 objc/objc-act.c:7578
#, gcc-internal-format
msgid "cannot find interface declaration for %qs"
msgstr ""
-#: objc/objc-act.c:1870
+#: objc/objc-act.c:1892
#, gcc-internal-format
msgid "interface %qs does not have valid constant string layout"
msgstr ""
-#: objc/objc-act.c:1875
+#: objc/objc-act.c:1897
#, gcc-internal-format
msgid "cannot find reference tag for class %qs"
msgstr ""
-#: objc/objc-act.c:2554
+#: objc/objc-act.c:2522
#, gcc-internal-format
msgid "%Hcreating selector for nonexistent method %qE"
msgstr ""
-#: objc/objc-act.c:2756
+#: objc/objc-act.c:2724
#, gcc-internal-format
msgid "%qs is not an Objective-C class name or alias"
msgstr ""
-#: objc/objc-act.c:2872 objc/objc-act.c:2903 objc/objc-act.c:7453
-#: objc/objc-act.c:7754 objc/objc-act.c:7784
+#: objc/objc-act.c:2850 objc/objc-act.c:2881 objc/objc-act.c:7427
+#: objc/objc-act.c:7728 objc/objc-act.c:7758
#, gcc-internal-format
msgid "Objective-C declarations may only appear in global scope"
msgstr ""
-#: objc/objc-act.c:2877
+#: objc/objc-act.c:2855
#, gcc-internal-format
msgid "cannot find class %qs"
msgstr ""
-#: objc/objc-act.c:2879
+#: objc/objc-act.c:2857
#, gcc-internal-format
msgid "class %qs already exists"
msgstr ""
-#: objc/objc-act.c:2923 objc/objc-act.c:7494
+#: objc/objc-act.c:2901 objc/objc-act.c:7468
#, gcc-internal-format
msgid "%qs redeclared as different kind of symbol"
msgstr ""
-#: objc/objc-act.c:2925 objc/objc-act.c:7496
-#, gcc-internal-format
-msgid "%Jprevious declaration of '%D'"
-msgstr ""
-
-#: objc/objc-act.c:3197
+#: objc/objc-act.c:3175
#, gcc-internal-format
msgid "strong-cast assignment has been intercepted"
msgstr ""
-#: objc/objc-act.c:3239
+#: objc/objc-act.c:3217
#, gcc-internal-format
msgid "strong-cast may possibly be needed"
msgstr ""
-#: objc/objc-act.c:3249
+#: objc/objc-act.c:3227
#, gcc-internal-format
msgid "instance variable assignment has been intercepted"
msgstr ""
-#: objc/objc-act.c:3268
+#: objc/objc-act.c:3246
#, gcc-internal-format
msgid "pointer arithmetic for garbage-collected objects not allowed"
msgstr ""
-#: objc/objc-act.c:3274
+#: objc/objc-act.c:3252
#, gcc-internal-format
msgid "global/static variable assignment has been intercepted"
msgstr ""
-#: objc/objc-act.c:3457
+#: objc/objc-act.c:3435
#, gcc-internal-format
msgid "use %<-fobjc-exceptions%> to enable Objective-C exception syntax"
msgstr ""
-#: objc/objc-act.c:3798
+#: objc/objc-act.c:3777
#, gcc-internal-format
msgid "@catch parameter is not a known Objective-C class type"
msgstr ""
-#: objc/objc-act.c:3814
+#: objc/objc-act.c:3793
#, gcc-internal-format
msgid "exception of type %<%T%> will be caught"
msgstr ""
-#: objc/objc-act.c:3816
+#: objc/objc-act.c:3795
#, gcc-internal-format
msgid "%H by earlier handler for %<%T%>"
msgstr ""
-#: objc/objc-act.c:3869
+#: objc/objc-act.c:3848
#, gcc-internal-format
msgid "%<@try%> without %<@catch%> or %<@finally%>"
msgstr ""
-#: objc/objc-act.c:3917
+#: objc/objc-act.c:3896
#, gcc-internal-format
msgid "%<@throw%> (rethrow) used outside of a @catch block"
msgstr ""
-#: objc/objc-act.c:4320
+#: objc/objc-act.c:4294
#, gcc-internal-format
-msgid "%Jtype '%D' does not have a known size"
+msgid "type %q+D does not have a known size"
msgstr ""
-#: objc/objc-act.c:4953
+#: objc/objc-act.c:4927
#, gcc-internal-format
msgid "%J%s %qs"
msgstr ""
-#: objc/objc-act.c:4976 objc/objc-act.c:4995
+#: objc/objc-act.c:4950 objc/objc-act.c:4969
#, gcc-internal-format
msgid "inconsistent instance variable specification"
msgstr ""
-#: objc/objc-act.c:5852
+#: objc/objc-act.c:5826
#, gcc-internal-format
msgid "can not use an object as parameter to a method"
msgstr ""
-#: objc/objc-act.c:6075
+#: objc/objc-act.c:6049
#, gcc-internal-format
msgid "multiple %s named %<%c%s%> found"
msgstr ""
-#: objc/objc-act.c:6304
+#: objc/objc-act.c:6278
#, gcc-internal-format
msgid "no super class declared in @interface for %qs"
msgstr ""
-#: objc/objc-act.c:6342
+#: objc/objc-act.c:6316
#, gcc-internal-format
msgid "found %<-%s%> instead of %<+%s%> in protocol(s)"
msgstr ""
-#: objc/objc-act.c:6401
+#: objc/objc-act.c:6375
#, gcc-internal-format
msgid "invalid receiver type %qs"
msgstr ""
-#: objc/objc-act.c:6416
+#: objc/objc-act.c:6390
#, gcc-internal-format
msgid "%<%c%s%> not found in protocol(s)"
msgstr ""
-#: objc/objc-act.c:6430
+#: objc/objc-act.c:6404
#, gcc-internal-format
msgid "%qs may not respond to %<%c%s%>"
msgstr ""
-#: objc/objc-act.c:6438
+#: objc/objc-act.c:6412
#, gcc-internal-format
msgid "no %<%c%s%> method found"
msgstr ""
-#: objc/objc-act.c:6444
+#: objc/objc-act.c:6418
#, gcc-internal-format
msgid "(Messages without a matching method signature"
msgstr ""
-#: objc/objc-act.c:6445
+#: objc/objc-act.c:6419
#, gcc-internal-format
msgid "will be assumed to return %<id%> and accept"
msgstr ""
-#: objc/objc-act.c:6446
+#: objc/objc-act.c:6420
#, gcc-internal-format
msgid "%<...%> as arguments.)"
msgstr ""
-#: objc/objc-act.c:6679
+#: objc/objc-act.c:6653
#, gcc-internal-format
msgid "undeclared selector %qs"
msgstr ""
@@ -24293,161 +28217,161 @@ msgstr ""
#. to an instance variable. It's better to catch the cases
#. where this is done unknowingly than to support the above
#. paradigm.
-#: objc/objc-act.c:6721
+#: objc/objc-act.c:6695
#, gcc-internal-format
msgid "instance variable %qs accessed in class method"
msgstr ""
-#: objc/objc-act.c:6953
+#: objc/objc-act.c:6927
#, gcc-internal-format
msgid "duplicate declaration of method %<%c%s%>"
msgstr ""
-#: objc/objc-act.c:7014
+#: objc/objc-act.c:6988
#, gcc-internal-format
msgid "duplicate interface declaration for category %<%s(%s)%>"
msgstr ""
-#: objc/objc-act.c:7041
+#: objc/objc-act.c:7015
#, gcc-internal-format
msgid "illegal reference type specified for instance variable %qs"
msgstr ""
-#: objc/objc-act.c:7052
+#: objc/objc-act.c:7026
#, gcc-internal-format
msgid "instance variable %qs has unknown size"
msgstr ""
-#: objc/objc-act.c:7077
+#: objc/objc-act.c:7051
#, gcc-internal-format
-msgid "type `%s' has no default constructor to call"
+msgid "type %qs has no default constructor to call"
msgstr ""
-#: objc/objc-act.c:7083
+#: objc/objc-act.c:7057
#, gcc-internal-format
-msgid "destructor for `%s' shall not be run either"
+msgid "destructor for %qs shall not be run either"
msgstr ""
#. Vtable pointers are Real Bad(tm), since Obj-C cannot
#. initialize them.
-#: objc/objc-act.c:7095
+#: objc/objc-act.c:7069
#, gcc-internal-format
-msgid "type `%s' has virtual member functions"
+msgid "type %qs has virtual member functions"
msgstr ""
-#: objc/objc-act.c:7096
+#: objc/objc-act.c:7070
#, gcc-internal-format
-msgid "illegal aggregate type `%s' specified for instance variable `%s'"
+msgid "illegal aggregate type %qs specified for instance variable %qs"
msgstr ""
-#: objc/objc-act.c:7106
+#: objc/objc-act.c:7080
#, gcc-internal-format
-msgid "type `%s' has a user-defined constructor"
+msgid "type %qs has a user-defined constructor"
msgstr ""
-#: objc/objc-act.c:7108
+#: objc/objc-act.c:7082
#, gcc-internal-format
-msgid "type `%s' has a user-defined destructor"
+msgid "type %qs has a user-defined destructor"
msgstr ""
-#: objc/objc-act.c:7112
+#: objc/objc-act.c:7086
#, gcc-internal-format
msgid ""
"C++ constructors and destructors will not be invoked for Objective-C fields"
msgstr ""
-#: objc/objc-act.c:7218
+#: objc/objc-act.c:7192
#, gcc-internal-format
msgid "instance variable %qs is declared private"
msgstr ""
-#: objc/objc-act.c:7229
+#: objc/objc-act.c:7203
#, gcc-internal-format
msgid "instance variable %qs is %s; this will be a hard error in the future"
msgstr ""
-#: objc/objc-act.c:7236
+#: objc/objc-act.c:7210
#, gcc-internal-format
msgid "instance variable %qs is declared %s"
msgstr ""
-#: objc/objc-act.c:7262 objc/objc-act.c:7350
+#: objc/objc-act.c:7236 objc/objc-act.c:7324
#, gcc-internal-format
msgid "incomplete implementation of class %qs"
msgstr ""
-#: objc/objc-act.c:7266 objc/objc-act.c:7355
+#: objc/objc-act.c:7240 objc/objc-act.c:7329
#, gcc-internal-format
msgid "incomplete implementation of category %qs"
msgstr ""
-#: objc/objc-act.c:7271 objc/objc-act.c:7360
+#: objc/objc-act.c:7245 objc/objc-act.c:7334
#, gcc-internal-format
msgid "method definition for %<%c%s%> not found"
msgstr ""
-#: objc/objc-act.c:7401
+#: objc/objc-act.c:7375
#, gcc-internal-format
msgid "%s %qs does not fully implement the %qs protocol"
msgstr ""
-#: objc/objc-act.c:7459 objc/objc-act.c:9128
+#: objc/objc-act.c:7433 objc/objc-act.c:9101
#, gcc-internal-format
msgid "%<@end%> missing in implementation context"
msgstr ""
-#: objc/objc-act.c:7478
+#: objc/objc-act.c:7452
#, gcc-internal-format
msgid "cannot find interface declaration for %qs, superclass of %qs"
msgstr ""
-#: objc/objc-act.c:7508
+#: objc/objc-act.c:7482
#, gcc-internal-format
msgid "reimplementation of class %qs"
msgstr ""
-#: objc/objc-act.c:7540
+#: objc/objc-act.c:7514
#, gcc-internal-format
msgid "conflicting super class name %qs"
msgstr ""
-#: objc/objc-act.c:7542
+#: objc/objc-act.c:7516
#, gcc-internal-format
msgid "previous declaration of %qs"
msgstr ""
-#: objc/objc-act.c:7556 objc/objc-act.c:7558
+#: objc/objc-act.c:7530 objc/objc-act.c:7532
#, gcc-internal-format
msgid "duplicate interface declaration for class %qs"
msgstr ""
-#: objc/objc-act.c:7812
+#: objc/objc-act.c:7786
#, gcc-internal-format
msgid "duplicate declaration for protocol %qs"
msgstr ""
#. Add a readable method name to the warning.
-#: objc/objc-act.c:8371
+#: objc/objc-act.c:8344
#, gcc-internal-format
msgid "%J%s %<%c%s%>"
msgstr ""
-#: objc/objc-act.c:8701
+#: objc/objc-act.c:8674
#, gcc-internal-format
msgid "no super class declared in interface for %qs"
msgstr ""
-#: objc/objc-act.c:8750
+#: objc/objc-act.c:8723
#, gcc-internal-format
msgid "[super ...] must appear in a method context"
msgstr ""
-#: objc/objc-act.c:8790
+#: objc/objc-act.c:8763
#, gcc-internal-format
msgid "method possibly missing a [super dealloc] call"
msgstr ""
-#: objc/objc-act.c:9420
+#: objc/objc-act.c:9391
#, gcc-internal-format
msgid "local declaration of %qs hides instance variable"
msgstr ""