From 41481754c30dea84669a0cf470cce266af0df21c Mon Sep 17 00:00:00 2001 From: fxcoudert Date: Sat, 17 Sep 2005 18:58:01 +0000 Subject: [PATCH] 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@104372 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/fortran/ChangeLog | 45 + gcc/fortran/arith.c | 14 +- gcc/fortran/array.c | 8 +- gcc/fortran/check.c | 23 +- gcc/fortran/error.c | 50 +- gcc/fortran/expr.c | 21 +- gcc/fortran/gfortran.h | 2 +- gcc/fortran/gfortranspec.c | 15 +- gcc/fortran/io.c | 22 +- gcc/fortran/matchexp.c | 2 +- gcc/fortran/misc.c | 30 - gcc/fortran/module.c | 28 +- gcc/fortran/parse.c | 44 +- gcc/fortran/primary.c | 28 +- gcc/fortran/resolve.c | 99 +- gcc/fortran/symbol.c | 3 +- gcc/fortran/trans-const.c | 9 +- gcc/po/ChangeLog | 7 + gcc/po/exgettext | 2 + gcc/po/gcc.pot | 24128 +++++++++++++++++++++++++------------------ 20 files changed, 14288 insertions(+), 10292 deletions(-) diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index fc3cfe37838..69168e58455 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,48 @@ +2005-09-17 Francois-Xavier Coudert + + 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 PR fortran/23906 diff --git a/gcc/fortran/arith.c b/gcc/fortran/arith.c index 4443f336446..ccc7ae17222 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 3e44e8577df..9491406d97e 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 fbbc96bf29d..8c9f5294e16 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 009419a0979..3f38c3b6802 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 e3613711062..78b811a628b 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 301afac2ef5..9cd28459750 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 0d6264e1d55..259a0b8efaf 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 0ffc13d2205..95abbc5ff52 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 058f7728d31..a306c953653 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 dc6a34b86bc..4d94d7fab72 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 b11a16baff1..511705084b7 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 9c404d5bebe..1e28a7e090c 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 48a5f347d9c..3ef8d4e376b 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 968d137c440..f9413336f53 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 57811f25484..acae453e72c 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 bab18699758..4a23a56854f 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 b15cb151835..9ae47f7ba41 100644 --- a/gcc/po/ChangeLog +++ b/gcc/po/ChangeLog @@ -1,3 +1,10 @@ +2005-09-17 Francois-Xavier Coudert + + 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 * zh_CN.po: Update. diff --git a/gcc/po/exgettext b/gcc/po/exgettext index 7f9c32d1327..7665463affc 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 c5e3fb1a39e..8e6497f76a6 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 \n" "Language-Team: LANGUAGE \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 "" 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 "" msgstr "" -#: c-opts.c:1330 +#: c-opts.c:1328 msgid "" 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= Display the full path to library \n" msgstr "" -#: gcc.c:3029 +#: gcc.c:3050 msgid "" " -print-prog-name= Display the full path to compiler component " "\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, Pass comma-separated on to the " "assembler\n" msgstr "" -#: gcc.c:3036 +#: gcc.c:3057 msgid "" " -Wp, Pass comma-separated on to the " "preprocessor\n" msgstr "" -#: gcc.c:3037 +#: gcc.c:3058 msgid "" " -Wl, Pass comma-separated on to the linker\n" msgstr "" -#: gcc.c:3038 +#: gcc.c:3059 msgid " -Xassembler Pass on to the assembler\n" msgstr "" -#: gcc.c:3039 +#: gcc.c:3060 msgid " -Xpreprocessor Pass on to the preprocessor\n" msgstr "" -#: gcc.c:3040 +#: gcc.c:3061 msgid " -Xlinker Pass 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= Override built-in specs with the contents of " "\n" msgstr "" -#: gcc.c:3046 +#: gcc.c:3067 msgid "" " -std= Assume that the input sources are for \n" msgstr "" -#: gcc.c:3047 +#: gcc.c:3068 +msgid "" +" --sysroot= Use as the root directory for " +"headers\n" +" for headers and libraries\n" +msgstr "" + +#: gcc.c:3071 msgid "" " -B Add to the compiler's search paths\n" msgstr "" -#: gcc.c:3048 +#: gcc.c:3072 msgid " -b Run gcc for target , if installed\n" msgstr "" -#: gcc.c:3049 +#: gcc.c:3073 msgid "" " -V Run gcc version number , 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 Place the output into \n" msgstr "" -#: gcc.c:3056 +#: gcc.c:3080 msgid "" " -x 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 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,20533 +3457,24466 @@ 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 -#, c-format -msgid "overflowed output arg list for '%s'" +#: fortran/arith.c:141 +msgid "Arithmetic OK" msgstr "" -#: fortran/gfortranspec.c:375 -#, c-format -msgid "argument to '%s' missing" +#: fortran/arith.c:144 +msgid "Arithmetic overflow" msgstr "" -#: fortran/gfortranspec.c:379 -#, c-format -msgid "no input files; unwilling to write output files" +#: fortran/arith.c:147 +msgid "Arithmetic underflow" msgstr "" -#. FIXME: i18n bug here. Order of prints should not be -#. fixed. -#: java/gjavah.c:910 -#, c-format -msgid "ignored method '" +#: fortran/arith.c:150 +msgid "Arithmetic NaN" msgstr "" -#: java/gjavah.c:912 -#, c-format -msgid "' marked virtual\n" +#: fortran/arith.c:153 +msgid "Division by zero" msgstr "" -#: java/gjavah.c:2350 -#, c-format -msgid "Try '" +#: fortran/arith.c:156 +msgid "Array operands are incommensurate" msgstr "" -#: java/gjavah.c:2350 -#, c-format -msgid " --help' for more information.\n" +#: fortran/arith.c:159 +msgid "Integer outside symmetric range implied by Standard Fortran" msgstr "" -#: java/gjavah.c:2357 -#, c-format -msgid "Usage: " +#. 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 "" -#: java/gjavah.c:2357 -#, c-format -msgid "" -" [OPTION]... CLASS...\n" -"\n" +#: fortran/arith.c:1383 +msgid "Elemental binary operation" msgstr "" -#: java/gjavah.c:2358 -#, c-format -msgid "" -"Generate C or C++ header files from .class files\n" -"\n" +#: fortran/arith.c:1910 +#, no-c-format +msgid "%s converting %s to %s at %L" msgstr "" -#: java/gjavah.c:2359 -#, c-format -msgid " -stubs Generate an implementation stub file\n" +#: 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 "" -#: java/gjavah.c:2360 -#, c-format -msgid " -jni Generate a JNI header or stub\n" +#: fortran/array.c:97 +#, no-c-format +msgid "Expected array subscript at %C" msgstr "" -#: java/gjavah.c:2361 -#, c-format -msgid " -force Always overwrite output files\n" +#: fortran/array.c:124 +#, no-c-format +msgid "Expected array subscript stride at %C" msgstr "" -#: java/gjavah.c:2362 -#, c-format -msgid " -old Unused compatibility option\n" +#: fortran/array.c:167 +#, no-c-format +msgid "Invalid form of array reference at %C" msgstr "" -#: java/gjavah.c:2363 -#, c-format -msgid " -trace Unused compatibility option\n" +#: fortran/array.c:172 +#, no-c-format +msgid "Array reference at %C cannot have more than %d dimensions" msgstr "" -#: java/gjavah.c:2364 -#, c-format -msgid " -J OPTION Unused compatibility option\n" +#: fortran/array.c:224 +#, no-c-format +msgid "Variable '%s' at %L in this context must be constant" msgstr "" -#: java/gjavah.c:2366 -#, c-format -msgid " -add TEXT Insert TEXT into class body\n" +#: fortran/array.c:300 +#, no-c-format +msgid "Expected expression in array specification at %C" msgstr "" -#: java/gjavah.c:2367 -#, c-format -msgid " -append TEXT Insert TEXT after class declaration\n" +#: fortran/array.c:379 +#, no-c-format +msgid "Bad array specification for an explicitly shaped array at %C" msgstr "" -#: java/gjavah.c:2368 -#, c-format -msgid " -friend TEXT Insert TEXT as 'friend' declaration\n" +#: fortran/array.c:390 +#, no-c-format +msgid "Bad array specification for assumed shape array at %C" msgstr "" -#: java/gjavah.c:2369 -#, c-format -msgid " -prepend TEXT Insert TEXT before start of class\n" +#: fortran/array.c:403 +#, no-c-format +msgid "Bad specification for deferred shape array at %C" msgstr "" -#: java/gjavah.c:2371 java/jcf-dump.c:912 -#, c-format -msgid " --classpath PATH Set path to find .class files\n" +#: fortran/array.c:407 +#, no-c-format +msgid "Bad specification for assumed size array at %C" msgstr "" -#: java/gjavah.c:2372 java/jcf-dump.c:913 -#, c-format -msgid " -IDIR Append directory to class path\n" +#: fortran/array.c:416 +#, no-c-format +msgid "Expected another dimension in array declaration at %C" msgstr "" -#: java/gjavah.c:2373 java/jcf-dump.c:914 -#, c-format -msgid " --bootclasspath PATH Override built-in class path\n" +#: fortran/array.c:422 +#, no-c-format +msgid "Array specification at %C has more than %d dimensions" msgstr "" -#: java/gjavah.c:2374 java/jcf-dump.c:915 -#, c-format -msgid " --extdirs PATH Set extensions directory path\n" +#: fortran/array.c:627 +#, no-c-format +msgid "duplicated initializer" msgstr "" -#: java/gjavah.c:2375 -#, c-format -msgid " -d DIRECTORY Set output directory name\n" +#: fortran/array.c:720 +#, no-c-format +msgid "DO-iterator '%s' at %L is inside iterator of the same name" msgstr "" -#: java/gjavah.c:2376 java/jcf-dump.c:916 java/jv-scan.c:115 -#, c-format -msgid " -o FILE Set output file name\n" +#: fortran/array.c:822 fortran/array.c:931 +#, no-c-format +msgid "Syntax error in array constructor at %C" msgstr "" -#: java/gjavah.c:2377 -#, c-format -msgid " -td DIRECTORY Set temporary directory name\n" +#: fortran/array.c:877 +#, no-c-format +msgid "New in Fortran 2003: [...] style array constructors at %C" msgstr "" -#: java/gjavah.c:2379 java/jcf-dump.c:918 java/jv-scan.c:117 -#, c-format -msgid " --help Print this help, then exit\n" +#: fortran/array.c:891 +#, no-c-format +msgid "Empty array constructor at %C is not allowed" msgstr "" -#: java/gjavah.c:2380 java/jcf-dump.c:919 java/jv-scan.c:118 -#, c-format -msgid " --version Print version number, then exit\n" +#: fortran/array.c:976 +#, no-c-format +msgid "Element in %s array constructor at %L is %s" msgstr "" -#: java/gjavah.c:2381 java/jcf-dump.c:920 -#, c-format -msgid " -v, --verbose Print extra information while running\n" +#: fortran/array.c:1305 +#, no-c-format +msgid "Iterator step at %L cannot be zero" msgstr "" -#: java/gjavah.c:2383 -#, c-format -msgid "" -" -M Print all dependencies to stdout;\n" -" suppress ordinary output\n" +#: fortran/check.c:42 +#, no-c-format +msgid "'%s' argument of '%s' intrinsic at %L must be %s" msgstr "" -#: java/gjavah.c:2385 -#, c-format -msgid "" -" -MM Print non-system dependencies to stdout;\n" -" suppress ordinary output\n" +#: fortran/check.c:70 +msgid "a numeric type" msgstr "" -#: java/gjavah.c:2387 -#, c-format -msgid " -MD Print all dependencies to stdout\n" +#: fortran/check.c:83 +msgid "INTEGER or REAL" msgstr "" -#: java/gjavah.c:2388 -#, c-format -msgid " -MMD Print non-system dependencies to stdout\n" +#: fortran/check.c:98 +msgid "REAL or COMPLEX" msgstr "" -#: java/gjavah.c:2391 java/jcf-dump.c:922 java/jv-scan.c:120 -#, c-format -msgid "" -"For bug reporting instructions, please see:\n" -"%s.\n" +#: fortran/check.c:122 +msgid "a constant" msgstr "" -#: java/gjavah.c:2575 -#, c-format -msgid "Processing %s\n" +#: fortran/check.c:129 +#, no-c-format +msgid "Invalid kind for %s at %L" msgstr "" -#: java/gjavah.c:2585 -#, c-format -msgid "Found in %s\n" +#: fortran/check.c:148 +msgid "double precision" msgstr "" -#: java/jcf-dump.c:829 -#, c-format -msgid "Not a valid Java .class file.\n" +#: fortran/check.c:163 +msgid "a logical array" msgstr "" -#: java/jcf-dump.c:835 -#, c-format -msgid "error while parsing constant pool\n" +#: fortran/check.c:179 +msgid "an array" msgstr "" -#: java/jcf-dump.c:841 java/jcf-parse.c:749 -#, gcc-internal-format -msgid "error in constant pool entry #%d\n" +#: fortran/check.c:193 +msgid "a scalar" msgstr "" -#: java/jcf-dump.c:851 +#: fortran/check.c:209 #, c-format -msgid "error while parsing fields\n" +msgid "the same type and kind as '%s'" msgstr "" -#: java/jcf-dump.c:857 +#: fortran/check.c:228 #, c-format -msgid "error while parsing methods\n" +msgid "of rank %d" msgstr "" -#: java/jcf-dump.c:863 -#, c-format -msgid "error while parsing final attributes\n" +#: fortran/check.c:243 +#, no-c-format +msgid "'%s' argument of '%s' intrinsic at %L must not be OPTIONAL" msgstr "" -#: java/jcf-dump.c:900 +#: fortran/check.c:265 #, c-format -msgid "Try 'jcf-dump --help' for more information.\n" +msgid "of kind %d" msgstr "" -#: java/jcf-dump.c:907 -#, c-format -msgid "" -"Usage: jcf-dump [OPTION]... CLASS...\n" -"\n" +#: fortran/check.c:286 +#, no-c-format +msgid "'%s' argument of '%s' intrinsic at %L cannot be INTENT(IN)" msgstr "" -#: java/jcf-dump.c:908 -#, c-format -msgid "" -"Display contents of a class file in readable form.\n" -"\n" +#: fortran/check.c:292 +msgid "a variable" msgstr "" -#: java/jcf-dump.c:909 -#, c-format -msgid " -c Disassemble method bodies\n" +#: fortran/check.c:316 +#, no-c-format +msgid "Missing DIM parameter in intrinsic '%s' at %L" msgstr "" -#: java/jcf-dump.c:910 -#, c-format -msgid " --javap Generate output in 'javap' format\n" +#: fortran/check.c:353 +#, no-c-format +msgid "'dim' argument of '%s' intrinsic at %L is not a valid dimension index" msgstr "" -#: java/jcf-dump.c:950 java/jcf-dump.c:1018 -#, c-format -msgid "jcf-dump: no classes specified\n" +#: fortran/check.c:439 +msgid "ALLOCATABLE" msgstr "" -#: java/jcf-dump.c:1038 -#, c-format -msgid "Cannot open '%s' for output.\n" +#: fortran/check.c:476 fortran/check.c:1538 +msgid "a POINTER" msgstr "" -#: java/jcf-dump.c:1084 -#, c-format -msgid "bad format of .zip/.jar archive\n" +#: fortran/check.c:486 +#, no-c-format +msgid "" +"NULL pointer at %L is not permitted as actual argument of '%s' intrinsic " +"function" msgstr "" -#: java/jcf-dump.c:1202 -#, c-format -msgid "Bad byte codes.\n" +#: fortran/check.c:495 +msgid "a POINTER or a TARGET" msgstr "" -#: java/jv-scan.c:100 -#, c-format -msgid "Try 'jv-scan --help' for more information.\n" +#: 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 "" -#: java/jv-scan.c:107 -#, c-format -msgid "" -"Usage: jv-scan [OPTION]... FILE...\n" -"\n" +#: fortran/check.c:619 fortran/check.c:679 +msgid "not be present if 'x' is COMPLEX" msgstr "" -#: java/jv-scan.c:108 -#, c-format -msgid "" -"Print useful information read from Java source files.\n" -"\n" +#: fortran/check.c:726 fortran/check.c:1348 fortran/check.c:1354 +msgid "numeric or LOGICAL" msgstr "" -#: java/jv-scan.c:109 -#, c-format -msgid " --no-assert Don't recognize the assert keyword\n" +#: 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 "" -#: java/jv-scan.c:110 -#, c-format -msgid " --complexity Print cyclomatic complexity of input file\n" +#: fortran/check.c:973 +#, no-c-format +msgid "Argument of %s at %L must be of length one" msgstr "" -#: java/jv-scan.c:111 -#, c-format -msgid " --encoding NAME Specify encoding of input file\n" +#: fortran/check.c:1025 +msgid "the same kind as 'string'" msgstr "" -#: java/jv-scan.c:112 -#, c-format -msgid " --print-main Print name of class containing 'main'\n" +#: fortran/check.c:1137 +msgid "a non-derived type" msgstr "" -#: java/jv-scan.c:113 -#, c-format -msgid " --list-class List all classes defined in file\n" +#: fortran/check.c:1252 +#, no-c-format +msgid "Intrinsic '%s' at %L must have at least two arguments" msgstr "" -#: java/jv-scan.c:114 -#, c-format -msgid "" -" --list-filename Print input filename when listing class names\n" +#: fortran/check.c:1286 +#, no-c-format +msgid "'a%d' argument of '%s' intrinsic at %L must be %s(%d)" msgstr "" -#: java/jv-scan.c:257 -#, c-format -msgid "%s: error: " +#: fortran/check.c:1311 +#, no-c-format +msgid "'a1' argument of '%s' intrinsic at %L must be INTEGER or REAL" msgstr "" -#: java/jv-scan.c:269 java/jv-scan.c:280 -#, c-format -msgid "%s: warning: " +#: fortran/check.c:1373 +msgid "of rank 1 or 2" msgstr "" -#: java/jvgenmain.c:48 -#, c-format -msgid "Usage: %s [OPTIONS]... CLASSNAMEmain [OUTFILE]\n" +#: fortran/check.c:1557 +msgid "conformable with 'mask' argument" msgstr "" -#: java/jvgenmain.c:101 -#, c-format -msgid "%s: Cannot open output file: %s\n" +#: fortran/check.c:1581 +msgid "of type REAL or COMPLEX" msgstr "" -#: java/jvgenmain.c:138 -#, c-format -msgid "%s: Failed to close output file %s\n" +#: fortran/check.c:1600 +msgid "a dummy variable" msgstr "" -#: java/jvspec.c:420 -#, c-format -msgid "can't specify '-D' without '--main'\n" +#: fortran/check.c:1606 +msgid "an OPTIONAL dummy variable" msgstr "" -#: java/jvspec.c:423 -#, c-format -msgid "'%s' is not a valid class name" +#: fortran/check.c:1720 +#, no-c-format +msgid "" +"'shape' argument of 'reshape' intrinsic at %L must be an array of constant " +"size" msgstr "" -#: java/jvspec.c:429 -#, c-format -msgid "--resource requires -o" +#: fortran/check.c:1730 +#, no-c-format +msgid "'shape' argument of 'reshape' intrinsic at %L has more than %d elements" msgstr "" -#: java/jvspec.c:443 -#, c-format -msgid "cannot specify both -C and -o" +#: fortran/check.c:1801 +#, no-c-format +msgid "Missing arguments to %s intrinsic at %L" msgstr "" -#: java/jvspec.c:455 -#, c-format -msgid "cannot create temporary file" +#: fortran/check.c:1842 +#, no-c-format +msgid "" +"'source' argument of 'shape' intrinsic at %L must not be an assumed size " +"array" msgstr "" -#: java/jvspec.c:483 +#: fortran/check.c:1906 #, c-format -msgid "using both @FILE with multiple files not implemented" +msgid "less than rank %d" msgstr "" -#: java/jvspec.c:534 -#, c-format -msgid "cannot specify 'main' class when not linking" +#: fortran/check.c:2259 fortran/check.c:2279 +#, no-c-format +msgid "Too many arguments to %s at %L" 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" +#: fortran/data.c:63 +#, no-c-format +msgid "non-constant array in DATA statement %L." 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" +#: fortran/decl.c:184 +#, no-c-format +msgid "Variable '%s' at %C already has an initialization" msgstr "" -#: java/parse-scan.y:1371 -#: java/parse.y:16425 -msgid "parse error" +#: fortran/decl.c:195 +#, no-c-format +msgid "DATA statement at %C may not initialize variable '%s' from blank COMMON" msgstr "" -#: java/parse-scan.y:1373 -#: java/parse.y:16427 -msgid "parse error; also virtual memory exhausted" +#: fortran/decl.c:282 +#, no-c-format +msgid "Symbol '%s' must be a PARAMETER in DATA statement at %C" msgstr "" -#: java/parse-scan.y:1375 -#: java/parse.y:16429 -msgid "parse error: cannot back up" +#: fortran/decl.c:389 +#, no-c-format +msgid "Initialization at %C is not allowed in a PURE procedure" msgstr "" -#: java/parse.y:737 java/parse.y:775 -msgid "Missing name" +#: fortran/decl.c:436 +#, no-c-format +msgid "DATA statement at %C is not allowed in a PURE procedure" msgstr "" -#: java/parse.y:800 -msgid "'*' expected" +#: fortran/decl.c:464 +#, no-c-format +msgid "Bad INTENT specification at %C" msgstr "" -#: java/parse.y:814 -msgid "Class or interface declaration expected" +#: fortran/decl.c:528 +#, no-c-format +msgid "Syntax error in character length specification at %C" msgstr "" -#: java/parse.y:851 java/parse.y:853 -msgid "Missing class name" +#: fortran/decl.c:703 +#, no-c-format +msgid "Initializer not allowed for PARAMETER '%s' at %C" 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" +#: fortran/decl.c:712 +#, no-c-format +msgid "Initializer not allowed for COMMON variable '%s' at %C" msgstr "" -#: java/parse.y:870 -msgid "Missing super class name" +#: fortran/decl.c:722 +#, no-c-format +msgid "PARAMETER at %L is missing an initializer" msgstr "" -#: java/parse.y:880 java/parse.y:896 -msgid "Missing interface name" +#: fortran/decl.c:733 +#, no-c-format +msgid "" +"Variable '%s' at %C with an initializer already appears in a DATA statement" msgstr "" -#: java/parse.y:974 -msgid "Missing variable initializer" +#: fortran/decl.c:800 +#, no-c-format +msgid "Component at %C must have the POINTER attribute" msgstr "" -#: java/parse.y:991 -msgid "Invalid declaration" +#: fortran/decl.c:809 +#, no-c-format +msgid "Array component of structure at %C must have explicit or deferred shape" 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" +#: fortran/decl.c:838 +#, no-c-format +msgid "Pointer array component of structure at %C must have a deferred shape" msgstr "" -#: java/parse.y:998 -msgid "Unbalanced ']'" +#: fortran/decl.c:848 +#, no-c-format +msgid "Array component of structure at %C must have an explicit shape" msgstr "" -#: java/parse.y:1034 -msgid "Invalid method declaration, method name required" +#: fortran/decl.c:874 +#, no-c-format +msgid "NULL() initialization at %C is ambiguous" msgstr "" -#: java/parse.y:1039 java/parse.y:1044 -#: java/parse.y:1049 java/parse.y:2045 -msgid "Identifier expected" +#: fortran/decl.c:983 +#, no-c-format +msgid "Function name '%s' not allowed at %C" msgstr "" -#: java/parse.y:1054 java/parse.y:4721 -#, gcc-internal-format -msgid "Invalid method declaration, return type required" +#: fortran/decl.c:999 +#, no-c-format +msgid "Extension: Old-style initialization at %C" 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" +#: fortran/decl.c:1015 +#, no-c-format +msgid "Initialization at %C isn't for a pointer variable" msgstr "" -#: java/parse.y:1093 -msgid "Missing formal parameter term" +#: fortran/decl.c:1023 +#, no-c-format +msgid "Pointer initialization requires a NULL at %C" msgstr "" -#: java/parse.y:1108 java/parse.y:1113 -msgid "Missing identifier" +#: fortran/decl.c:1030 +#, no-c-format +msgid "Initialization of pointer at %C is not allowed in a PURE procedure" msgstr "" -#: java/parse.y:1133 java/parse.y:1142 -msgid "Missing class type term" +#: fortran/decl.c:1046 +#, no-c-format +msgid "Pointer initialization at %C requires '=>', not '='" msgstr "" -#: java/parse.y:1298 -msgid "Invalid interface type" +#: fortran/decl.c:1054 +#, no-c-format +msgid "Expected an initialization expression at %C" msgstr "" -#: java/parse.y:1485 java/parse.y:1659 -#: java/parse.y:1661 -msgid "':' expected" +#: fortran/decl.c:1061 +#, no-c-format +msgid "Initialization of variable at %C is not allowed in a PURE procedure" msgstr "" -#: java/parse.y:1511 java/parse.y:1516 -#: java/parse.y:1521 -msgid "Invalid expression statement" +#: fortran/decl.c:1116 +#, no-c-format +msgid "Old-style kind %d not supported for type %s at %C" 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" +#: fortran/decl.c:1152 +#, no-c-format +msgid "Expected initialization expression at %C" msgstr "" -#: java/parse.y:1610 -msgid "Missing term or ')'" +#: fortran/decl.c:1158 +#, no-c-format +msgid "Expected scalar initialization expression at %C" msgstr "" -#: java/parse.y:1657 -msgid "Missing or invalid constant expression" +#: fortran/decl.c:1176 +#, no-c-format +msgid "Kind %d not supported for type %s at %C" msgstr "" -#: java/parse.y:1678 -msgid "Missing term and ')' expected" +#: fortran/decl.c:1185 +#, no-c-format +msgid "Missing right paren at %C" msgstr "" -#: java/parse.y:1717 -msgid "Invalid control expression" +#: fortran/decl.c:1274 fortran/decl.c:1317 +#, no-c-format +msgid "Kind %d is not a CHARACTER kind at %C" msgstr "" -#: java/parse.y:1719 java/parse.y:1721 -msgid "Invalid update expression" +#: fortran/decl.c:1311 +#, no-c-format +msgid "Syntax error in CHARACTER declaration at %C" msgstr "" -#: java/parse.y:1746 -msgid "Invalid init statement" +#: fortran/decl.c:1428 +#, no-c-format +msgid "Type name '%s' at %C is ambiguous" msgstr "" -#: java/parse.y:1946 -msgid "Missing term or ')' expected" +#: fortran/decl.c:1494 +#, no-c-format +msgid "Missing character range in IMPLICIT at %C" msgstr "" -#: java/parse.y:1989 -msgid "'class' or 'this' expected" +#: fortran/decl.c:1540 +#, no-c-format +msgid "Letters must be in alphabetic order in IMPLICIT statement at %C" msgstr "" -#: java/parse.y:1991 java/parse.y:1993 -msgid "'class' expected" +#: fortran/decl.c:1594 +#, no-c-format +msgid "Empty IMPLICIT statement at %C" msgstr "" -#: java/parse.y:2038 -msgid "')' or term expected" +#: fortran/decl.c:1765 +#, no-c-format +msgid "Missing dimension specification at %C" msgstr "" -#: java/parse.y:2140 java/parse.y:2169 -msgid "'[' expected" +#: fortran/decl.c:1835 +#, no-c-format +msgid "Duplicate %s attribute at %L" msgstr "" -#: java/parse.y:2247 -msgid "Field expected" +#: fortran/decl.c:1852 +#, no-c-format +msgid "Attribute at %L is not allowed in a TYPE definition" msgstr "" -#: java/parse.y:2306 java/parse.y:2316 -#: java/parse.y:2326 -msgid "Missing term and ']' expected" +#: fortran/decl.c:1986 +#, no-c-format +msgid "Derived type at %C has not been previously defined" msgstr "" -#: java/parse.y:2431 -msgid "']' expected, invalid type expression" +#: fortran/decl.c:2013 +#, no-c-format +msgid "Syntax error in data declaration at %C" msgstr "" -#: java/parse.y:2434 -msgid "Invalid type expression" +#: fortran/decl.c:2159 +#, no-c-format +msgid "Name '%s' at %C is the name of the procedure" msgstr "" -#: java/parse.y:2546 -msgid "Invalid reference type" +#: fortran/decl.c:2171 +#, no-c-format +msgid "Unexpected junk in formal argument list at %C" msgstr "" -#: java/parse.y:3017 -msgid "Constructor invocation must be first thing in a constructor" +#: fortran/decl.c:2189 +#, no-c-format +msgid "Duplicate symbol '%s' in formal argument list at %C" msgstr "" -#: java/parse.y:3019 -msgid "Only constructors can invoke constructors" +#: fortran/decl.c:2232 +#, no-c-format +msgid "Unexpected junk following RESULT variable at %C" msgstr "" -#: java/lang-specs.h:34 -msgid "-fjni and -femit-class-files are incompatible" +#: fortran/decl.c:2239 +#, no-c-format +msgid "RESULT variable at %C must be different than function name" msgstr "" -#: java/lang-specs.h:35 -msgid "-fjni and -femit-class-file are incompatible" +#: fortran/decl.c:2294 +#, no-c-format +msgid "Expected formal argument list in function definition at %C" msgstr "" -#: java/lang-specs.h:36 java/lang-specs.h:37 -msgid "-femit-class-file should used along with -fsyntax-only" +#: fortran/decl.c:2305 +#, no-c-format +msgid "Unexpected junk after function declaration at %C" msgstr "" -#: config/sh/sh.h:460 -msgid "SH2a does not support little-endian" +#: fortran/decl.c:2326 +#, no-c-format +msgid "Function '%s' at %C already has a type of %s" msgstr "" -#: config/i386/mingw32.h:58 config/i386/cygwin.h:70 -msgid "shared and mdll are not compatible" +#: fortran/decl.c:2371 +#, no-c-format +msgid "ENTRY statement at %C cannot appear within %s" msgstr "" -#: config/lynx.h:71 -msgid "Cannot use mthreads and mlegacy-threads together." +#: fortran/decl.c:2380 +#, no-c-format +msgid "ENTRY statement at %C cannot appear in a contained procedure" msgstr "" -#: config/lynx.h:96 -msgid "Cannot use mshared and static together." +#: fortran/decl.c:2437 +#, no-c-format +msgid "RESULT attribute required in ENTRY statement at %C" msgstr "" -#: ada/lang-specs.h:34 java/jvspec.c:80 gcc.c:783 -msgid "-pg and -fomit-frame-pointer are incompatible" +#: fortran/decl.c:2635 +#, no-c-format +msgid "Unexpected END statement at %C" msgstr "" -#: ada/lang-specs.h:35 -msgid "-c or -S required for Ada" +#. We would have required END [something] +#: fortran/decl.c:2644 +#, no-c-format +msgid "%s statement expected at %L" msgstr "" -#: config/vax/netbsd-elf.h:42 -msgid "The -shared option is not currently supported for VAX ELF." +#: fortran/decl.c:2655 +#, no-c-format +msgid "Expecting %s statement at %C" msgstr "" -#: config/i386/nwld.h:34 -msgid "Static linking is not supported.\n" +#: fortran/decl.c:2669 +#, no-c-format +msgid "Expected block name of '%s' in %s statement at %C" msgstr "" -#: config/vax/vax.h:50 config/vax/vax.h:51 -msgid "profiling not supported with -mg\n" +#: fortran/decl.c:2685 +#, no-c-format +msgid "Expected terminating name at %C" 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" +#: fortran/decl.c:2694 +#, no-c-format +msgid "Expected label '%s' for %s statement at %C" msgstr "" -#: config/i386/sco5.h:189 -msgid "-pg not supported on this platform" +#: fortran/decl.c:2749 +#, no-c-format +msgid "Missing array specification at %L in DIMENSION statement" msgstr "" -#: config/i386/sco5.h:190 -msgid "-p and -pp specified - pick one" +#: fortran/decl.c:2758 +#, no-c-format +msgid "Array specification must be deferred at %L" msgstr "" -#: config/i386/sco5.h:264 -msgid "-G and -static are mutually exclusive" +#: fortran/decl.c:2821 +#, no-c-format +msgid "Unexpected character in variable list at %C" msgstr "" -#: config/i386/cygwin.h:29 -msgid "mno-cygwin and mno-win32 are not compatible" +#: fortran/decl.c:2974 +#, no-c-format +msgid "" +"Access specification of the %s operator at %C has already been specified" msgstr "" -#: config/mcore/mcore.h:57 -msgid "the m210 does not have little endian support" +#: fortran/decl.c:2992 +#, no-c-format +msgid "" +"Access specification of the .%s. operator at %C has already been specified" msgstr "" -#: config/rs6000/darwin.h:105 -msgid " conflicting code gen style switches are used" +#: fortran/decl.c:3079 +#, no-c-format +msgid "Expected variable name at %C in PARAMETER statement" msgstr "" -#: config/arc/arc.h:63 config/mips/mips.h:844 -msgid "may not use both -EB and -EL" +#: fortran/decl.c:3086 +#, no-c-format +msgid "Expected = sign in PARAMETER statement at %C" 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" +#: fortran/decl.c:3092 +#, no-c-format +msgid "Expected expression at %C in PARAMETER statement" msgstr "" -#: config/mips/r3900.h:35 -msgid "-mhard-float not supported" +#: fortran/decl.c:3150 +#, no-c-format +msgid "Unexpected characters in PARAMETER statement at %C" msgstr "" -#: config/mips/r3900.h:37 -msgid "-msingle-float and -msoft-float cannot both be specified" +#: fortran/decl.c:3174 +#, no-c-format +msgid "Blanket SAVE statement at %C follows previous SAVE statement" msgstr "" -#: config/darwin.h:233 -msgid "-current_version only allowed with -dynamiclib" +#: fortran/decl.c:3186 +#, no-c-format +msgid "SAVE statement at %C follows blanket SAVE statement" msgstr "" -#: config/darwin.h:235 -msgid "-install_name only allowed with -dynamiclib" +#: fortran/decl.c:3231 +#, no-c-format +msgid "Syntax error in SAVE statement at %C" msgstr "" -#: config/darwin.h:240 -msgid "-bundle not allowed with -dynamiclib" +#: fortran/decl.c:3252 +#, no-c-format +msgid "MODULE PROCEDURE at %C must be in a generic module interface" msgstr "" -#: config/darwin.h:241 -msgid "-bundle_loader not allowed with -dynamiclib" +#: fortran/decl.c:3312 +#, no-c-format +msgid "Derived type at %C can only be PRIVATE within a MODULE" msgstr "" -#: config/darwin.h:242 -msgid "-client_name not allowed with -dynamiclib" +#: fortran/decl.c:3325 +#, no-c-format +msgid "Derived type at %C can only be PUBLIC within a MODULE" msgstr "" -#: config/darwin.h:247 -msgid "-force_flat_namespace not allowed with -dynamiclib" +#: fortran/decl.c:3336 +#, no-c-format +msgid "Expected :: in TYPE definition at %C" msgstr "" -#: config/darwin.h:249 -msgid "-keep_private_externs not allowed with -dynamiclib" +#: fortran/decl.c:3353 +#, no-c-format +msgid "Type name '%s' at %C cannot be the same as an intrinsic type" msgstr "" -#: config/darwin.h:250 -msgid "-private_bundle not allowed with -dynamiclib" +#: fortran/decl.c:3363 +#, no-c-format +msgid "Derived type name '%s' at %C already has a basic type of %s" msgstr "" -#: gcc.c:756 -msgid "GCC does not support -C or -CC without -E" +#: fortran/decl.c:3380 +#, no-c-format +msgid "Derived type definition of '%s' at %C has already been defined" msgstr "" -#: gcc.c:951 -msgid "-E or -x required when input is from standard input" +#: fortran/dump-parse-tree.c:53 +#, c-format +msgid "%-5d " msgstr "" -#: config/arm/arm.h:141 -msgid "-msoft-float and -mhard_float may not be used together" +#: fortran/dump-parse-tree.c:55 +#, c-format +msgid " " msgstr "" -#: config/arm/arm.h:143 -msgid "-mbig-endian and -mlittle-endian may not be used together" +#: fortran/dump-parse-tree.c:77 fortran/dump-parse-tree.c:592 +#, c-format +msgid "(%s " msgstr "" -#: ada/lang.opt:74 -msgid "Specify options to GNAT" +#: 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 "" -#: c.opt:42 -msgid "" -"Assert the to . Putting '-' before disables " -"the to " +#: 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 "" -#: c.opt:46 -msgid "Do not discard comments" +#: fortran/dump-parse-tree.c:104 fortran/dump-parse-tree.c:419 +#, c-format +msgid "(" msgstr "" -#: c.opt:50 -msgid "Do not discard comments in macro expansions" +#: fortran/dump-parse-tree.c:110 +#, c-format +msgid "%s = " msgstr "" -#: c.opt:54 -msgid "" -"Define a with as its value. If just is given, " -"is taken to be 1" +#: fortran/dump-parse-tree.c:114 +#, c-format +msgid "(arg not-present)" msgstr "" -#: c.opt:61 -msgid "Add to the end of the main framework include path" +#: fortran/dump-parse-tree.c:118 fortran/dump-parse-tree.c:395 +#: fortran/dump-parse-tree.c:489 +#, c-format +msgid " " msgstr "" -#: c.opt:65 -msgid "Print the name of header files as they are used" +#: fortran/dump-parse-tree.c:135 fortran/dump-parse-tree.c:310 +#, c-format +msgid "()" msgstr "" -#: c.opt:69 c.opt:767 -msgid "Add to the end of the main include path" +#: fortran/dump-parse-tree.c:139 +#, c-format +msgid "(%d" msgstr "" -#: c.opt:73 -msgid "Generate make dependencies" +#: fortran/dump-parse-tree.c:153 +#, c-format +msgid " %s " msgstr "" -#: c.opt:77 -msgid "Generate make dependencies and compile" +#: fortran/dump-parse-tree.c:180 +#, c-format +msgid "FULL" msgstr "" -#: c.opt:81 -msgid "Write dependency output to the given file" +#: fortran/dump-parse-tree.c:211 fortran/dump-parse-tree.c:220 +#: fortran/dump-parse-tree.c:295 +#, c-format +msgid " , " msgstr "" -#: c.opt:85 -msgid "Treat missing header files as generated files" +#: fortran/dump-parse-tree.c:225 +#, c-format +msgid "UNKNOWN" msgstr "" -#: c.opt:89 -msgid "Like -M but ignore system header files" +#: fortran/dump-parse-tree.c:250 +#, c-format +msgid " %% %s" msgstr "" -#: c.opt:93 -msgid "Like -MD but ignore system header files" +#: fortran/dump-parse-tree.c:322 fortran/dump-parse-tree.c:379 +#, c-format +msgid "''" msgstr "" -#: c.opt:97 -msgid "Generate phony targets for all headers" +#: fortran/dump-parse-tree.c:324 +#, c-format +msgid "%c" msgstr "" -#: c.opt:101 -msgid "Add a MAKE-quoted target" +#: fortran/dump-parse-tree.c:331 +#, c-format +msgid "%s(" msgstr "" -#: c.opt:105 -msgid "Add an unquoted target" +#: fortran/dump-parse-tree.c:337 +#, c-format +msgid "(/ " msgstr "" -#: c.opt:109 -msgid "Do not generate #line directives" +#: fortran/dump-parse-tree.c:339 +#, c-format +msgid " /)" msgstr "" -#: c.opt:113 -msgid "Undefine " +#: fortran/dump-parse-tree.c:345 +#, c-format +msgid "NULL()" msgstr "" -#: c.opt:117 -msgid "" -"Warn about things that will change when compiling with an ABI-compliant " -"compiler" +#: 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 "" -#: c.opt:121 -msgid "Enable most warning messages" +#: fortran/dump-parse-tree.c:360 +#, c-format +msgid ".true." msgstr "" -#: c.opt:125 -msgid "" -"Warn whenever an Objective-C assignment is being intercepted by the garbage " -"collector" +#: fortran/dump-parse-tree.c:362 +#, c-format +msgid ".false." msgstr "" -#: c.opt:129 -msgid "Warn about casting functions to incompatible types" +#: fortran/dump-parse-tree.c:389 +#, c-format +msgid "(complex " msgstr "" -#: c.opt:133 -msgid "Warn about C constructs that are not in the common subset of C and C++" +#: fortran/dump-parse-tree.c:405 +#, c-format +msgid "???" msgstr "" -#: c.opt:138 -msgid "Warn about casts which discard qualifiers" +#: fortran/dump-parse-tree.c:413 fortran/dump-parse-tree.c:695 +#, c-format +msgid "%s:" msgstr "" -#: c.opt:142 -msgid "Warn about subscripts whose type is \"char\"" +#: fortran/dump-parse-tree.c:423 +#, c-format +msgid "U+ " msgstr "" -#: c.opt:146 -msgid "" -"Warn about possibly nested block comments, and C++ comments spanning more " -"than one physical line" +#: fortran/dump-parse-tree.c:426 +#, c-format +msgid "U- " msgstr "" -#: c.opt:150 -msgid "Synonym for -Wcomment" +#: fortran/dump-parse-tree.c:429 +#, c-format +msgid "+ " msgstr "" -#: c.opt:154 -msgid "Warn about possibly confusing type conversions" +#: fortran/dump-parse-tree.c:432 +#, c-format +msgid "- " msgstr "" -#: c.opt:158 -msgid "Warn when all constructors and destructors are private" +#: fortran/dump-parse-tree.c:435 +#, c-format +msgid "* " msgstr "" -#: c.opt:162 -msgid "Warn when a declaration is found after a statement" +#: fortran/dump-parse-tree.c:438 +#, c-format +msgid "/ " msgstr "" -#: c.opt:166 -msgid "Warn about deprecated compiler features" +#: fortran/dump-parse-tree.c:441 +#, c-format +msgid "** " msgstr "" -#: c.opt:170 -msgid "Warn about compile-time integer division by zero" +#: fortran/dump-parse-tree.c:444 +#, c-format +msgid "// " msgstr "" -#: c.opt:174 -msgid "Warn about violations of Effective C++ style rules" +#: fortran/dump-parse-tree.c:447 +#, c-format +msgid "AND " msgstr "" -#: c.opt:178 -msgid "Warn about stray tokens after #elif and #endif" +#: fortran/dump-parse-tree.c:450 +#, c-format +msgid "OR " msgstr "" -#: c.opt:186 -msgid "Make implicit function declarations an error" +#: fortran/dump-parse-tree.c:453 +#, c-format +msgid "EQV " msgstr "" -#: c.opt:190 -msgid "Warn if testing floating point numbers for equality" +#: fortran/dump-parse-tree.c:456 +#, c-format +msgid "NEQV " msgstr "" -#: c.opt:194 -msgid "Warn about printf/scanf/strftime/strfmon format string anomalies" +#: fortran/dump-parse-tree.c:459 +#, c-format +msgid "= " msgstr "" -#: c.opt:198 -msgid "Warn if passing too many arguments to a function for its format string" +#: fortran/dump-parse-tree.c:462 +#, c-format +msgid "<> " msgstr "" -#: c.opt:202 -msgid "Warn about format strings that are not literals" +#: fortran/dump-parse-tree.c:465 +#, c-format +msgid "> " msgstr "" -#: c.opt:206 -msgid "Warn about possible security problems with format functions" +#: fortran/dump-parse-tree.c:468 +#, c-format +msgid ">= " msgstr "" -#: c.opt:210 -msgid "Warn about strftime formats yielding 2-digit years" +#: fortran/dump-parse-tree.c:471 +#, c-format +msgid "< " msgstr "" -#: c.opt:214 -msgid "Warn about zero-length formats" +#: fortran/dump-parse-tree.c:474 +#, c-format +msgid "<= " msgstr "" -#: c.opt:221 -msgid "Warn about variables which are initialized to themselves." +#: fortran/dump-parse-tree.c:477 +#, c-format +msgid "NOT " msgstr "" -#: c.opt:228 -msgid "Warn about implicit function declarations" +#: fortran/dump-parse-tree.c:499 +#, c-format +msgid "%s[" msgstr "" -#: c.opt:232 -msgid "Warn when a declaration does not specify a type" +#: fortran/dump-parse-tree.c:505 +#, c-format +msgid "%s[[" msgstr "" -#: c.opt:236 -msgid "Deprecated. This switch has no effect." +#: fortran/dump-parse-tree.c:526 +#, c-format +msgid "(%s %s %s %s" msgstr "" -#: c.opt:240 -msgid "" -"Warn when there is a cast to a pointer from an integer of a different size" +#: fortran/dump-parse-tree.c:532 +#, c-format +msgid " ALLOCATABLE" msgstr "" -#: c.opt:244 -msgid "Warn about invalid uses of the \"offsetof\" macro" +#: fortran/dump-parse-tree.c:534 fortran/dump-parse-tree.c:597 +#, c-format +msgid " DIMENSION" msgstr "" -#: c.opt:248 -msgid "Warn about PCH files that are found but not used" +#: fortran/dump-parse-tree.c:536 +#, c-format +msgid " EXTERNAL" msgstr "" -#: c.opt:252 -msgid "Do not warn about using \"long long\" when -pedantic" +#: fortran/dump-parse-tree.c:538 +#, c-format +msgid " INTRINSIC" msgstr "" -#: c.opt:256 -msgid "Warn about suspicious declarations of \"main\"" +#: fortran/dump-parse-tree.c:540 +#, c-format +msgid " OPTIONAL" msgstr "" -#: c.opt:260 -msgid "Warn about possibly missing braces around initializers" +#: fortran/dump-parse-tree.c:542 fortran/dump-parse-tree.c:595 +#, c-format +msgid " POINTER" msgstr "" -#: c.opt:264 -msgid "Warn about global functions without previous declarations" +#: fortran/dump-parse-tree.c:544 +#, c-format +msgid " SAVE" msgstr "" -#: c.opt:268 -msgid "Warn about missing fields in struct initializers" +#: fortran/dump-parse-tree.c:546 +#, c-format +msgid " TARGET" msgstr "" -#: c.opt:272 -msgid "Warn about functions which might be candidates for format attributes" +#: fortran/dump-parse-tree.c:548 +#, c-format +msgid " DUMMY" msgstr "" -#: c.opt:276 -msgid "Warn about user-specified include directories that do not exist" +#: fortran/dump-parse-tree.c:550 +#, c-format +msgid " RESULT" msgstr "" -#: c.opt:280 -msgid "Warn about global functions without prototypes" +#: fortran/dump-parse-tree.c:552 +#, c-format +msgid " ENTRY" msgstr "" -#: c.opt:284 -msgid "Warn about use of multi-character character constants" +#: fortran/dump-parse-tree.c:555 +#, c-format +msgid " DATA" msgstr "" -#: c.opt:288 -msgid "Warn about \"extern\" declarations not at file scope" +#: fortran/dump-parse-tree.c:557 +#, c-format +msgid " USE-ASSOC" msgstr "" -#: c.opt:292 -msgid "" -"Warn when non-templatized friend functions are declared within a template" +#: fortran/dump-parse-tree.c:559 +#, c-format +msgid " IN-NAMELIST" msgstr "" -#: c.opt:296 -msgid "Warn about non-virtual destructors" +#: fortran/dump-parse-tree.c:561 +#, c-format +msgid " IN-COMMON" msgstr "" -#: c.opt:300 -msgid "" -"Warn about NULL being passed to argument slots marked as requiring non-NULL" +#: fortran/dump-parse-tree.c:564 +#, c-format +msgid " FUNCTION" msgstr "" -#: c.opt:304 -msgid "Warn about non-normalised Unicode strings" +#: fortran/dump-parse-tree.c:566 +#, c-format +msgid " SUBROUTINE" msgstr "" -#: c.opt:308 -msgid "Warn if a C-style cast is used in a program" +#: fortran/dump-parse-tree.c:568 +#, c-format +msgid " IMPLICIT-TYPE" msgstr "" -#: c.opt:312 -msgid "Warn if an old-style parameter definition is used" +#: fortran/dump-parse-tree.c:571 +#, c-format +msgid " SEQUENCE" msgstr "" -#: c.opt:316 -msgid "Warn about overloaded virtual function names" +#: fortran/dump-parse-tree.c:573 +#, c-format +msgid " ELEMENTAL" msgstr "" -#: c.opt:320 -msgid "Warn about possibly missing parentheses" +#: fortran/dump-parse-tree.c:575 +#, c-format +msgid " PURE" msgstr "" -#: c.opt:324 -msgid "Warn when converting the type of pointers to member functions" +#: fortran/dump-parse-tree.c:577 +#, c-format +msgid " RECURSIVE" msgstr "" -#: c.opt:328 -msgid "Warn about function pointer arithmetic" +#: fortran/dump-parse-tree.c:623 +#, c-format +msgid "symbol %s " msgstr "" -#: c.opt:332 -msgid "Warn when a pointer is cast to an integer of a different size" +#: fortran/dump-parse-tree.c:630 +#, c-format +msgid "value: " msgstr "" -#: c.opt:336 -msgid "Warn if inherited methods are unimplemented" +#: fortran/dump-parse-tree.c:637 +#, c-format +msgid "Array spec:" msgstr "" -#: c.opt:340 -msgid "Warn about multiple declarations of the same object" +#: fortran/dump-parse-tree.c:644 +#, c-format +msgid "Generic interfaces:" msgstr "" -#: c.opt:344 -msgid "Warn when the compiler reorders code" +#: 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 "" -#: c.opt:348 -msgid "" -"Warn whenever a function's return type defaults to \"int\" (C), or about " -"inconsistent return types (C++)" +#: fortran/dump-parse-tree.c:652 +#, c-format +msgid "result: %s" msgstr "" -#: c.opt:352 -msgid "Warn if a selector has multiple methods" +#: fortran/dump-parse-tree.c:658 +#, c-format +msgid "components: " msgstr "" -#: c.opt:356 -msgid "Warn about possible violations of sequence point rules" +#: fortran/dump-parse-tree.c:665 +#, c-format +msgid "Formal arglist:" msgstr "" -#: c.opt:360 -msgid "Warn about signed-unsigned comparisons" +#: fortran/dump-parse-tree.c:672 +#, c-format +msgid " [Alt Return]" msgstr "" -#: c.opt:364 -msgid "Warn when overload promotes from unsigned to signed" +#: fortran/dump-parse-tree.c:679 +#, c-format +msgid "Formal namespace" msgstr "" -#: c.opt:368 -msgid "Warn about uncasted NULL used as sentinel" +#: fortran/dump-parse-tree.c:736 +#, c-format +msgid "common: /%s/ " msgstr "" -#: c.opt:372 -msgid "Warn about unprototyped function declarations" +#: fortran/dump-parse-tree.c:744 fortran/dump-parse-tree.c:1449 +#, c-format +msgid ", " msgstr "" -#: c.opt:376 -msgid "Warn if type signatures of candidate methods do not match exactly" +#: fortran/dump-parse-tree.c:756 +#, c-format +msgid "symtree: %s Ambig %d" msgstr "" -#: c.opt:380 -msgid "Warn when synthesis behavior differs from Cfront" +#: fortran/dump-parse-tree.c:759 +#, c-format +msgid " from namespace %s" msgstr "" -#: c.opt:384 common.opt:138 -msgid "Do not suppress warnings from system headers" +#: fortran/dump-parse-tree.c:803 +#, c-format +msgid "NOP" msgstr "" -#: c.opt:388 -msgid "Warn about features not present in traditional C" +#: fortran/dump-parse-tree.c:807 +#, c-format +msgid "CONTINUE" msgstr "" -#: c.opt:392 -msgid "" -"Warn if trigraphs are encountered that might affect the meaning of the " -"program" +#: fortran/dump-parse-tree.c:811 +#, c-format +msgid "ENTRY %s" msgstr "" -#: c.opt:396 -msgid "Warn about @selector()s without previously declared methods" +#: fortran/dump-parse-tree.c:815 +#, c-format +msgid "ASSIGN " msgstr "" -#: c.opt:400 -msgid "Warn if an undefined macro is used in an #if directive" +#: fortran/dump-parse-tree.c:822 +#, c-format +msgid "LABEL ASSIGN " msgstr "" -#: c.opt:404 -msgid "Warn about unrecognized pragmas" +#: fortran/dump-parse-tree.c:824 +#, c-format +msgid " %d" msgstr "" -#: c.opt:408 -msgid "Warn about macros defined in the main file that are not used" +#: fortran/dump-parse-tree.c:828 +#, c-format +msgid "POINTER ASSIGN " msgstr "" -#: c.opt:412 -msgid "Do not warn about using variadic macros when -pedantic" +#: fortran/dump-parse-tree.c:835 +#, c-format +msgid "GOTO " msgstr "" -#: c.opt:416 -msgid "Give strings the type \"array of char\"" +#: fortran/dump-parse-tree.c:844 +#, c-format +msgid ", (" msgstr "" -#: c.opt:420 -msgid "Warn when a pointer differs in signedness in an assignment." +#: fortran/dump-parse-tree.c:858 +#, c-format +msgid "CALL %s " msgstr "" -#: c.opt:424 -msgid "A synonym for -std=c89 (for C) or -std=c++98 (for C++)." +#: fortran/dump-parse-tree.c:863 +#, c-format +msgid "RETURN " msgstr "" -#: c.opt:432 -msgid "Enforce class member access control semantics" +#: fortran/dump-parse-tree.c:869 +#, c-format +msgid "PAUSE " msgstr "" -#: c.opt:439 -msgid "Change when template instances are emitted" +#: fortran/dump-parse-tree.c:879 +#, c-format +msgid "STOP " msgstr "" -#: c.opt:443 -msgid "Recognize the \"asm\" keyword" +#: fortran/dump-parse-tree.c:889 fortran/dump-parse-tree.c:897 +#, c-format +msgid "IF " msgstr "" -#: c.opt:447 -msgid "Recognize built-in functions" +#: fortran/dump-parse-tree.c:891 +#, c-format +msgid " %d, %d, %d" msgstr "" -#: c.opt:454 -msgid "Check the return value of new" +#: fortran/dump-parse-tree.c:908 +#, c-format +msgid "ELSE\n" msgstr "" -#: c.opt:458 -msgid "Allow the arguments of the '?' operator to have different types" +#: fortran/dump-parse-tree.c:911 +#, c-format +msgid "ELSE IF " msgstr "" -#: c.opt:462 -msgid "Reduce the size of object files" +#: fortran/dump-parse-tree.c:921 +#, c-format +msgid "ENDIF" msgstr "" -#: c.opt:466 -msgid "Make string literals \"const char[]\" not \"char[]\"" +#: fortran/dump-parse-tree.c:926 +#, c-format +msgid "SELECT CASE " msgstr "" -#: c.opt:470 -msgid "Use class for constant strings" +#: fortran/dump-parse-tree.c:934 +#, c-format +msgid "CASE " msgstr "" -#: c.opt:474 -msgid "Inline member functions by default" +#: fortran/dump-parse-tree.c:950 +#, c-format +msgid "END SELECT" msgstr "" -#: c.opt:478 -msgid "Permit '$' as an identifier character" +#: fortran/dump-parse-tree.c:954 +#, c-format +msgid "WHERE " msgstr "" -#: c.opt:485 -msgid "Generate code to check exception specifications" +#: fortran/dump-parse-tree.c:965 +#, c-format +msgid "ELSE WHERE " msgstr "" -#: c.opt:492 -msgid "Convert all strings and character constants to character set " +#: fortran/dump-parse-tree.c:972 +#, c-format +msgid "END WHERE" msgstr "" -#: c.opt:496 -msgid "Specify the default character set for source files." +#: fortran/dump-parse-tree.c:977 +#, c-format +msgid "FORALL " msgstr "" -#: c.opt:510 -msgid "Scope of for-init-statement variables is local to the loop" +#: fortran/dump-parse-tree.c:1002 +#, c-format +msgid "END FORALL" msgstr "" -#: c.opt:514 -msgid "Do not assume that standard C libraries and \"main\" exist" +#: fortran/dump-parse-tree.c:1006 +#, c-format +msgid "DO " msgstr "" -#: c.opt:518 -msgid "Recognize GNU-defined keywords" +#: fortran/dump-parse-tree.c:1020 fortran/dump-parse-tree.c:1031 +#, c-format +msgid "END DO" msgstr "" -#: c.opt:522 -msgid "Generate code for GNU runtime environment" +#: fortran/dump-parse-tree.c:1024 +#, c-format +msgid "DO WHILE " msgstr "" -#: c.opt:535 -msgid "Assume normal C execution environment" +#: fortran/dump-parse-tree.c:1035 +#, c-format +msgid "CYCLE" msgstr "" -#: c.opt:539 -msgid "Enable support for huge objects" +#: fortran/dump-parse-tree.c:1041 +#, c-format +msgid "EXIT" msgstr "" -#: c.opt:543 -msgid "Export functions even if they can be inlined" +#: fortran/dump-parse-tree.c:1047 +#, c-format +msgid "ALLOCATE " msgstr "" -#: c.opt:547 -msgid "Emit implicit instantiations of inline templates" +#: fortran/dump-parse-tree.c:1050 fortran/dump-parse-tree.c:1066 +#, c-format +msgid " STAT=" msgstr "" -#: c.opt:551 -msgid "Emit implicit instantiations of templates" +#: fortran/dump-parse-tree.c:1063 +#, c-format +msgid "DEALLOCATE " msgstr "" -#: c.opt:558 -msgid "Don't warn about uses of Microsoft extensions" +#: fortran/dump-parse-tree.c:1079 +#, c-format +msgid "OPEN" msgstr "" -#: c.opt:568 -msgid "Generate code for NeXT (Apple Mac OS X) runtime environment" +#: 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 "" -#: c.opt:572 -msgid "Assume that receivers of Objective-C messages may be nil" +#: 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 "" -#: c.opt:584 -msgid "" -"Generate special Objective-C methods to initialize/destroy non-POD C++ " -"ivars, if needed" +#: 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 "" -#: c.opt:588 -msgid "Allow fast jumps to the message dispatcher" +#: fortran/dump-parse-tree.c:1099 fortran/dump-parse-tree.c:1228 +#, c-format +msgid " FILE=" msgstr "" -#: c.opt:594 -msgid "Enable Objective-C exception and synchronization syntax" +#: fortran/dump-parse-tree.c:1104 fortran/dump-parse-tree.c:1173 +#, c-format +msgid " STATUS=" msgstr "" -#: c.opt:598 -msgid "Enable garbage collection (GC) in Objective-C/Objective-C++ programs" +#: fortran/dump-parse-tree.c:1109 fortran/dump-parse-tree.c:1269 +#, c-format +msgid " ACCESS=" msgstr "" -#: c.opt:603 -msgid "Enable Objective-C setjmp exception handling runtime" +#: fortran/dump-parse-tree.c:1114 fortran/dump-parse-tree.c:1285 +#, c-format +msgid " FORM=" msgstr "" -#: c.opt:607 -msgid "Recognize C++ kewords like \"compl\" and \"xor\"" +#: fortran/dump-parse-tree.c:1119 fortran/dump-parse-tree.c:1300 +#, c-format +msgid " RECL=" msgstr "" -#: c.opt:611 -msgid "Enable optional diagnostics" +#: fortran/dump-parse-tree.c:1124 fortran/dump-parse-tree.c:1310 +#, c-format +msgid " BLANK=" msgstr "" -#: c.opt:618 -msgid "Look for and use PCH files even when preprocessing" +#: fortran/dump-parse-tree.c:1129 fortran/dump-parse-tree.c:1315 +#, c-format +msgid " POSITION=" msgstr "" -#: c.opt:622 -msgid "Downgrade conformance errors to warnings" +#: fortran/dump-parse-tree.c:1134 fortran/dump-parse-tree.c:1320 +#, c-format +msgid " ACTION=" msgstr "" -#: c.opt:626 -msgid "Treat the input file as already preprocessed" +#: fortran/dump-parse-tree.c:1139 fortran/dump-parse-tree.c:1340 +#, c-format +msgid " DELIM=" msgstr "" -#: c.opt:630 -msgid "" -"Used in Fix-and-Continue mode to indicate that object files may be swapped " -"in at runtime" +#: fortran/dump-parse-tree.c:1144 fortran/dump-parse-tree.c:1345 +#, c-format +msgid " PAD=" msgstr "" -#: c.opt:634 -msgid "Enable automatic template instantiation" +#: 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 "" -#: c.opt:638 -msgid "Generate run time type descriptor information" +#: fortran/dump-parse-tree.c:1153 +#, c-format +msgid "CLOSE" msgstr "" -#: c.opt:642 -msgid "Use the same size for double as for float" +#: fortran/dump-parse-tree.c:1181 +#, c-format +msgid "BACKSPACE" msgstr "" -#: c.opt:646 -msgid "Use the narrowest integer type possible for enumeration types" +#: fortran/dump-parse-tree.c:1185 +#, c-format +msgid "ENDFILE" msgstr "" -#: c.opt:650 -msgid "Force the underlying type for \"wchar_t\" to be \"unsigned short\"" +#: fortran/dump-parse-tree.c:1189 +#, c-format +msgid "REWIND" msgstr "" -#: c.opt:654 -msgid "When \"signed\" or \"unsigned\" is not given make the bitfield signed" +#: fortran/dump-parse-tree.c:1193 +#, c-format +msgid "FLUSH" msgstr "" -#: c.opt:658 -msgid "Make \"char\" signed by default" +#: fortran/dump-parse-tree.c:1218 +#, c-format +msgid "INQUIRE" msgstr "" -#: c.opt:665 -msgid "Display statistics accumulated during compilation" +#: fortran/dump-parse-tree.c:1244 +#, c-format +msgid " EXIST=" msgstr "" -#: c.opt:672 -msgid "Distance between tab stops for column reporting" +#: fortran/dump-parse-tree.c:1249 +#, c-format +msgid " OPENED=" msgstr "" -#: c.opt:676 -msgid "Specify maximum template instantiation depth" +#: fortran/dump-parse-tree.c:1254 +#, c-format +msgid " NUMBER=" msgstr "" -#: c.opt:683 -msgid "Do not generate thread-safe code for initializing local statics." +#: fortran/dump-parse-tree.c:1259 +#, c-format +msgid " NAMED=" msgstr "" -#: c.opt:687 -msgid "When \"signed\" or \"unsigned\" is not given make the bitfield unsigned" +#: fortran/dump-parse-tree.c:1264 +#, c-format +msgid " NAME=" msgstr "" -#: c.opt:691 -msgid "Make \"char\" unsigned by default" +#: fortran/dump-parse-tree.c:1274 +#, c-format +msgid " SEQUENTIAL=" msgstr "" -#: c.opt:695 -msgid "Use __cxa_atexit to register destructors" +#: fortran/dump-parse-tree.c:1280 +#, c-format +msgid " DIRECT=" msgstr "" -#: c.opt:699 -msgid "Marks all inlined methods as having hidden visibility" +#: fortran/dump-parse-tree.c:1290 +#, c-format +msgid " FORMATTED" msgstr "" -#: c.opt:703 -msgid "Discard unused virtual functions" +#: fortran/dump-parse-tree.c:1295 +#, c-format +msgid " UNFORMATTED=" msgstr "" -#: c.opt:707 -msgid "Implement vtables using thunks" +#: fortran/dump-parse-tree.c:1305 +#, c-format +msgid " NEXTREC=" msgstr "" -#: c.opt:711 -msgid "Emit common-like symbols as weak symbols" +#: fortran/dump-parse-tree.c:1325 +#, c-format +msgid " READ=" msgstr "" -#: c.opt:715 -msgid "" -"Convert all wide strings and character constants to character set " +#: fortran/dump-parse-tree.c:1330 +#, c-format +msgid " WRITE=" msgstr "" -#: c.opt:719 -msgid "Generate a #line directive pointing at the current working directory" +#: fortran/dump-parse-tree.c:1335 +#, c-format +msgid " READWRITE=" msgstr "" -#: c.opt:723 -msgid "Emit cross referencing information" +#: fortran/dump-parse-tree.c:1354 +#, c-format +msgid "IOLENGTH " msgstr "" -#: c.opt:727 -msgid "" -"Generate lazy class lookup (via objc_getClass()) for use in Zero-Link mode" +#: fortran/dump-parse-tree.c:1359 +#, c-format +msgid "READ" msgstr "" -#: c.opt:731 -msgid "Dump declarations to a .decl file" +#: fortran/dump-parse-tree.c:1363 +#, c-format +msgid "WRITE" msgstr "" -#: c.opt:735 c.opt:763 -msgid "Add to the end of the system include path" +#: fortran/dump-parse-tree.c:1375 +#, c-format +msgid " FMT=" msgstr "" -#: c.opt:739 -msgid "Accept definition of macros in " +#: fortran/dump-parse-tree.c:1380 +#, c-format +msgid " FMT=%d" msgstr "" -#: c.opt:743 -msgid "Include the contents of before other files" +#: fortran/dump-parse-tree.c:1382 +#, c-format +msgid " NML=%s" msgstr "" -#: c.opt:747 -msgid "Specify as a prefix for next two options" +#: fortran/dump-parse-tree.c:1396 +#, c-format +msgid " SIZE=" msgstr "" -#: c.opt:751 -msgid "Set to be the system root directory" +#: fortran/dump-parse-tree.c:1401 +#, c-format +msgid " REC=" msgstr "" -#: c.opt:755 -msgid "Add to the start of the system include path" +#: fortran/dump-parse-tree.c:1406 +#, c-format +msgid " ADVANCE=" msgstr "" -#: c.opt:759 -msgid "Add to the end of the quote include path" +#: fortran/dump-parse-tree.c:1413 +#, c-format +msgid "TRANSFER " msgstr "" -#: c.opt:777 -msgid "" -"Do not search standard system include directories (those specified with -" -"isystem will still be used)" +#: fortran/dump-parse-tree.c:1418 +#, c-format +msgid "DT_END" msgstr "" -#: c.opt:781 -msgid "Do not search standard system include directories for C++" +#: fortran/dump-parse-tree.c:1424 +#, c-format +msgid " END=%d" msgstr "" -#: c.opt:797 -msgid "Generate C header of platform-specific features" +#: fortran/dump-parse-tree.c:1426 +#, c-format +msgid " EOR=%d" msgstr "" -#: c.opt:801 -msgid "Print a checksum of the executable for PCH validity checking, and stop." +#: fortran/dump-parse-tree.c:1443 +#, c-format +msgid "Equivalence: " msgstr "" -#: c.opt:805 -msgid "Remap file names when including files" +#: fortran/dump-parse-tree.c:1469 +#, c-format +msgid "Namespace:" msgstr "" -#: c.opt:809 -msgid "Conform to the ISO 1998 C++ standard" +#: fortran/dump-parse-tree.c:1483 +#, c-format +msgid " %c-%c: " msgstr "" -#: c.opt:813 c.opt:841 -msgid "Conform to the ISO 1990 C standard" +#: fortran/dump-parse-tree.c:1485 +#, c-format +msgid " %c: " msgstr "" -#: c.opt:817 c.opt:849 -msgid "Conform to the ISO 1999 C standard" +#: fortran/dump-parse-tree.c:1494 +#, c-format +msgid "procedure name = %s" msgstr "" -#: c.opt:821 -msgid "Deprecated in favor of -std=c99" +#: fortran/dump-parse-tree.c:1510 +#, c-format +msgid "Operator interfaces for %s:" msgstr "" -#: c.opt:825 -msgid "Conform to the ISO 1998 C++ standard with GNU extensions" +#: fortran/dump-parse-tree.c:1519 +#, c-format +msgid "User operators:\n" msgstr "" -#: c.opt:829 -msgid "Conform to the ISO 1990 C standard with GNU extensions" +#: fortran/dump-parse-tree.c:1535 +#, c-format +msgid "CONTAINS\n" msgstr "" -#: c.opt:833 -msgid "Conform to the ISO 1999 C standard with GNU extensions" +#: fortran/error.c:137 +#, no-c-format +msgid "In file %s:%d\n" msgstr "" -#: c.opt:837 -msgid "Deprecated in favor of -std=gnu99" +#: fortran/error.c:152 +#, no-c-format +msgid " Included at %s:%d\n" msgstr "" -#: c.opt:845 -msgid "Conform to the ISO 1990 C standard as amended in 1994" +#: fortran/error.c:204 +#, no-c-format +msgid "\n" msgstr "" -#: c.opt:853 -msgid "Deprecated in favor of -std=iso9899:1999" +#: fortran/error.c:479 fortran/error.c:519 fortran/error.c:545 +msgid "Warning:" msgstr "" -#: c.opt:857 -msgid "Enable traditional preprocessing" +#: fortran/error.c:521 fortran/error.c:595 fortran/error.c:619 +msgid "Error:" msgstr "" -#: c.opt:861 -msgid "Support ISO C trigraphs" +#: fortran/error.c:637 +msgid "Fatal Error:" msgstr "" -#: c.opt:865 -msgid "Do not predefine system-specific and GCC-specific macros" +#: fortran/error.c:656 +#, no-c-format +msgid "Internal Error at (1):" msgstr "" -#: c.opt:869 -msgid "Enable verbose output" +#: fortran/expr.c:258 +#, c-format +msgid "Constant expression required at %C" msgstr "" -#: common.opt:28 -msgid "Display this information" +#: fortran/expr.c:261 +#, c-format +msgid "Integer expression required at %C" msgstr "" -#: common.opt:32 -msgid "" -"Set parameter to value. See below for a complete list of parameters" +#: fortran/expr.c:266 +#, c-format +msgid "Integer value too large in expression at %C" msgstr "" -#: common.opt:42 -msgid "" -"Put global and static data smaller than bytes into a special " -"section (on some targets)" +#: fortran/expr.c:1256 +#, no-c-format +msgid "Numeric or CHARACTER operands are required in expression at %L" msgstr "" -#: common.opt:46 -msgid "Set optimization level to " +#: fortran/expr.c:1276 +#, no-c-format +msgid "Exponent at %L must be INTEGER for an initialization expression" msgstr "" -#: common.opt:50 -msgid "Optimize for space rather than speed" +#: fortran/expr.c:1289 +#, no-c-format +msgid "" +"Concatenation operator in expression at %L must have two CHARACTER operands" msgstr "" -#: common.opt:54 -msgid "This switch is deprecated; use -Wextra instead" +#: fortran/expr.c:1296 +#, no-c-format +msgid "Concat operator at %L must concatenate strings of the same kind" msgstr "" -#: common.opt:58 -msgid "Warn about returning structures, unions or arrays" +#: fortran/expr.c:1306 +#, no-c-format +msgid ".NOT. operator in expression at %L must have a LOGICAL operand" msgstr "" -#: common.opt:62 -msgid "Warn about inappropriate attribute usage" +#: fortran/expr.c:1322 +#, no-c-format +msgid "LOGICAL operands are required in expression at %L" msgstr "" -#: common.opt:66 -msgid "Warn about pointer casts which increase alignment" +#: fortran/expr.c:1330 +#, no-c-format +msgid "Only intrinsic operators can be used in expression at %L" msgstr "" -#: common.opt:70 -msgid "Warn about uses of __attribute__((deprecated)) declarations" +#: fortran/expr.c:1338 +#, no-c-format +msgid "Numeric operands are required in expression at %L" msgstr "" -#: common.opt:74 -msgid "Warn when an optimization pass is disabled" +#: fortran/expr.c:1443 +#, no-c-format +msgid "" +"Function '%s' in initialization expression at %L must be an intrinsic " +"function" msgstr "" -#: common.opt:78 -msgid "Treat all warnings as errors" +#: fortran/expr.c:1465 +#, no-c-format +msgid "Variable '%s' at %L cannot appear in an initialization expression" msgstr "" -#: common.opt:82 -msgid "Print extra (possibly unwanted) warnings" +#: fortran/expr.c:1587 +#, no-c-format +msgid "Specification function '%s' at %L cannot be a statement function" msgstr "" -#: common.opt:86 -msgid "Exit on the first error occurred" +#: fortran/expr.c:1594 +#, no-c-format +msgid "Specification function '%s' at %L cannot be an internal function" msgstr "" -#: common.opt:90 -msgid "Warn when an inlined function cannot be inlined" +#: fortran/expr.c:1601 +#, no-c-format +msgid "Specification function '%s' at %L must be PURE" msgstr "" -#: common.opt:94 -msgid "Warn if an object is larger than bytes" +#: fortran/expr.c:1608 +#, no-c-format +msgid "Specification function '%s' at %L cannot be RECURSIVE" msgstr "" -#: common.opt:98 -msgid "" -"Warn about functions which might be candidates for __attribute__((noreturn))" +#: fortran/expr.c:1665 +#, no-c-format +msgid "Dummy argument '%s' at %L cannot be OPTIONAL" msgstr "" -#: common.opt:102 -msgid "Warn when the packed attribute has no effect on struct layout" +#: fortran/expr.c:1672 +#, no-c-format +msgid "Dummy argument '%s' at %L cannot be INTENT(OUT)" msgstr "" -#: common.opt:106 -msgid "Warn when padding is required to align structure members" +#: fortran/expr.c:1688 +#, no-c-format +msgid "Variable '%s' cannot appear in the expression at %L" msgstr "" -#: common.opt:110 -msgid "Warn when one local variable shadows another" +#: fortran/expr.c:1734 +#, no-c-format +msgid "Expression at %L must be of INTEGER type" msgstr "" -#: common.opt:114 -msgid "Warn when not issuing stack smashing protection for some reason" +#: fortran/expr.c:1740 +#, no-c-format +msgid "Expression at %L must be scalar" msgstr "" -#: common.opt:118 common.opt:122 -msgid "Warn about code which might break strict aliasing rules" +#: fortran/expr.c:1768 +#, no-c-format +msgid "Incompatible ranks in %s at %L" msgstr "" -#: common.opt:126 -msgid "Warn about enumerated switches, with no default, missing a case" +#: fortran/expr.c:1782 +#, no-c-format +msgid "%s at %L has different shape on dimension %d (%d/%d)" msgstr "" -#: common.opt:130 -msgid "Warn about enumerated switches missing a \"default:\" statement" +#: fortran/expr.c:1815 +#, no-c-format +msgid "Can't assign to INTENT(IN) variable '%s' at %L" msgstr "" -#: common.opt:134 -msgid "Warn about all enumerated switches missing a specific case" +#: fortran/expr.c:1822 +#, no-c-format +msgid "Incompatible ranks %d and %d in assignment at %L" msgstr "" -#: common.opt:142 -msgid "Warn about uninitialized automatic variables" +#: fortran/expr.c:1829 +#, no-c-format +msgid "Variable type is UNKNOWN in assignment at %L" msgstr "" -#: common.opt:146 -msgid "Warn about code that will never be executed" +#: fortran/expr.c:1836 +#, no-c-format +msgid "NULL appears on right-hand side in assignment at %L" msgstr "" -#: common.opt:150 -msgid "Enable all -Wunused- warnings" +#: fortran/expr.c:1845 +#, no-c-format +msgid "POINTER valued function appears on right-hand side of assignment at %L" msgstr "" -#: common.opt:154 -msgid "Warn when a function is unused" +#: fortran/expr.c:1850 +msgid "Array assignment" msgstr "" -#: common.opt:158 fortran/lang.opt:70 -msgid "Warn when a label is unused" +#: fortran/expr.c:1867 +#, no-c-format +msgid "Incompatible types in assignment at %L, %s to %s" msgstr "" -#: common.opt:162 -msgid "Warn when a function parameter is unused" +#: fortran/expr.c:1890 +#, no-c-format +msgid "Pointer assignment target is not a POINTER at %L" msgstr "" -#: common.opt:166 -msgid "Warn when an expression value is unused" +#: fortran/expr.c:1898 +#, no-c-format +msgid "Pointer assignment to non-POINTER at %L" msgstr "" -#: common.opt:170 -msgid "Warn when a variable is unused" -msgstr "" - -#: common.opt:174 -msgid "Emit declaration information into " +#: fortran/expr.c:1906 +#, no-c-format +msgid "Bad pointer object in PURE procedure at %L" msgstr "" -#: common.opt:187 -msgid "Enable dumps from specific passes of the compiler" +#: fortran/expr.c:1919 +#, no-c-format +msgid "Different types in pointer assignment at %L" msgstr "" -#: common.opt:191 -msgid "Set the file basename to be used for dumps" +#: fortran/expr.c:1926 +#, no-c-format +msgid "Different kind type parameters in pointer assignment at %L" msgstr "" -#: common.opt:209 -msgid "Align the start of functions" +#: fortran/expr.c:1934 +#, no-c-format +msgid "Pointer assignment target is neither TARGET nor POINTER at %L" msgstr "" -#: common.opt:216 -msgid "Align labels which are only reached by jumping" +#: fortran/expr.c:1941 +#, no-c-format +msgid "Bad target in pointer assignment in PURE procedure at %L" msgstr "" -#: common.opt:223 -msgid "Align all labels" +#: fortran/expr.c:1947 +#, no-c-format +msgid "Unequal ranks %d and %d in pointer assignment at %L" msgstr "" -#: common.opt:230 -msgid "Align the start of loops" +#: fortran/gfortranspec.c:232 +#, c-format +msgid "overflowed output arg list for '%s'" msgstr "" -#: common.opt:243 -msgid "Specify that arguments may alias each other and globals" +#: 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 "" -#: common.opt:247 -msgid "Assume arguments may alias globals but not each other" +#: fortran/gfortranspec.c:374 +#, c-format +msgid "argument to '%s' missing" msgstr "" -#: common.opt:251 -msgid "Assume arguments alias neither each other nor globals" +#: fortran/gfortranspec.c:378 +#, c-format +msgid "no input files; unwilling to write output files" msgstr "" -#: common.opt:255 -msgid "Generate unwind tables that are exact at each instruction boundary" +#: fortran/gfortranspec.c:530 +#, c-format +msgid "Driving:" msgstr "" -#: common.opt:263 -msgid "Generate code to check bounds before indexing arrays" +#: fortran/interface.c:175 +#, no-c-format +msgid "Syntax error in generic specification at %C" msgstr "" -#: common.opt:267 -msgid "Replace add, compare, branch with branch on count register" +#: fortran/interface.c:204 +#, no-c-format +msgid "Syntax error: Trailing garbage in INTERFACE statement at %C" msgstr "" -#: common.opt:271 -msgid "Use profiling information for branch probabilities" +#: fortran/interface.c:262 +#, no-c-format +msgid "Syntax error: Trailing garbage in END INTERFACE statement at %C" msgstr "" -#: common.opt:275 -msgid "" -"Perform branch target load optimization before prologue / epilogue threading" +#: fortran/interface.c:273 +#, no-c-format +msgid "Expected a nameless interface at %C" msgstr "" -#: common.opt:279 -msgid "" -"Perform branch target load optimization after prologue / epilogue threading" +#: fortran/interface.c:284 +#, no-c-format +msgid "Expected 'END INTERFACE ASSIGNMENT (=)' at %C" msgstr "" -#: common.opt:283 -msgid "" -"Restrict target load migration not to re-use registers in any basic block" +#: fortran/interface.c:286 +#, no-c-format +msgid "Expecting 'END INTERFACE OPERATOR (%s)' at %C" msgstr "" -#: common.opt:287 -msgid "Mark as being preserved across functions" +#: fortran/interface.c:300 +#, no-c-format +msgid "Expecting 'END INTERFACE OPERATOR (.%s.)' at %C" msgstr "" -#: common.opt:291 -msgid "Mark as being corrupted by function calls" +#: fortran/interface.c:311 +#, no-c-format +msgid "Expecting 'END INTERFACE %s' at %C" msgstr "" -#: common.opt:298 -msgid "Save registers around function calls" +#: fortran/interface.c:509 +#, no-c-format +msgid "Assignment operator interface at %L must be a SUBROUTINE" msgstr "" -#: common.opt:302 -msgid "Do not put uninitialized globals in the common section" +#: fortran/interface.c:518 +#, no-c-format +msgid "Intrinsic operator interface at %L must be a FUNCTION" msgstr "" -#: common.opt:306 -msgid "Perform a register copy-propagation optimization pass" +#: fortran/interface.c:605 +#, no-c-format +msgid "" +"First argument of defined assignment at %L must be INTENT(IN) or INTENT" +"(INOUT)" msgstr "" -#: common.opt:310 -msgid "Perform cross-jumping optimization" +#: fortran/interface.c:609 +#, no-c-format +msgid "Second argument of defined assignment at %L must be INTENT(IN)" msgstr "" -#: common.opt:314 -msgid "When running CSE, follow jumps to their targets" +#: fortran/interface.c:615 +#, no-c-format +msgid "First argument of operator interface at %L must be INTENT(IN)" msgstr "" -#: common.opt:318 -msgid "When running CSE, follow conditional jumps" +#: fortran/interface.c:619 +#, no-c-format +msgid "Second argument of operator interface at %L must be INTENT(IN)" msgstr "" -#: common.opt:322 -msgid "Omit range reduction step when performing complex division" +#: fortran/interface.c:626 +#, no-c-format +msgid "Operator interface at %L conflicts with intrinsic interface" msgstr "" -#: common.opt:326 -msgid "Place data items into their own section" +#: fortran/interface.c:631 +#, no-c-format +msgid "Operator interface at %L has the wrong number of arguments" msgstr "" -#: common.opt:332 -msgid "Defer popping functions args from stack until later" +#: fortran/interface.c:880 +#, no-c-format +msgid "Procedure '%s' in %s at %L is neither function nor subroutine" msgstr "" -#: common.opt:336 -msgid "Attempt to fill delay slots of branch instructions" +#: fortran/interface.c:935 +#, no-c-format +msgid "Ambiguous interfaces '%s' and '%s' in %s at %L" msgstr "" -#: common.opt:340 -msgid "Delete useless null pointer checks" +#: fortran/interface.c:1184 +#, no-c-format +msgid "Keyword argument '%s' at %L is not in the procedure" msgstr "" -#: common.opt:344 +#: fortran/interface.c:1193 +#, no-c-format msgid "" -"How often to emit source location at the beginning of line-wrapped " -"diagnostics" +"Keyword argument '%s' at %L is already associated with another actual " +"argument" msgstr "" -#: common.opt:348 -msgid "" -"Amend appropriate diagnostic messages with the command line option that " -"controls them." +#: fortran/interface.c:1203 +#, no-c-format +msgid "More actual than formal arguments in procedure call at %L" msgstr "" -#: common.opt:352 -msgid "Dump various compiler internals to a file" +#: fortran/interface.c:1216 +#, no-c-format +msgid "Missing alternate return spec in subroutine call at %L" msgstr "" -#: common.opt:356 -msgid "" -"Suppress output of instruction numbers and line number notes in debugging " -"dumps" +#: fortran/interface.c:1225 +#, no-c-format +msgid "Unexpected alternate return spec in subroutine call at %L" msgstr "" -#: common.opt:360 -msgid "Perform DWARF2 duplicate elimination" +#: fortran/interface.c:1234 +#, no-c-format +msgid "Type/rank mismatch in argument '%s' at %L" msgstr "" -#: common.opt:364 common.opt:368 -msgid "Perform unused type elimination in debug info" +#: fortran/interface.c:1243 +#, no-c-format +msgid "Actual argument for '%s' must be a pointer at %L" msgstr "" -#: common.opt:372 -msgid "Enable exception handling" +#: fortran/interface.c:1264 +#, no-c-format +msgid "Missing actual argument for argument '%s' at %L" msgstr "" -#: common.opt:376 -msgid "Perform a number of minor, expensive optimizations" +#: 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 "" -#: common.opt:383 -msgid "Assume no NaNs or infinities are generated" +#: fortran/interface.c:1490 +#, no-c-format +msgid "" +"Procedure argument at %L is INTENT(IN) while interface specifies INTENT(%s)" msgstr "" -#: common.opt:387 -msgid "Mark as being unavailable to the compiler" +#: 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 "" -#: common.opt:391 -msgid "Don't allocate floats and doubles in extended-precision registers" +#: fortran/interface.c:1510 +#, no-c-format +msgid "" +"Procedure argument at %L is local to a PURE procedure and has the POINTER " +"attribute" msgstr "" -#: common.opt:397 -msgid "Copy memory address constants into registers before use" +#: fortran/interface.c:1531 +#, no-c-format +msgid "Procedure '%s' called with an implicit interface at %L" msgstr "" -#: common.opt:403 -msgid "Copy memory operands into registers before use" +#: fortran/interface.c:1697 +#, no-c-format +msgid "Function '%s' called in lieu of an operator at %L must be PURE" msgstr "" -#: common.opt:410 -msgid "Allow function addresses to be held in registers" +#: fortran/interface.c:1762 +#, no-c-format +msgid "Subroutine '%s' called in lieu of assignment at %L must be PURE" msgstr "" -#: common.opt:414 -msgid "Place each function into its own section" +#: fortran/interface.c:1784 +#, no-c-format +msgid "Entity '%s' at %C is already present in the interface" msgstr "" -#: common.opt:418 -msgid "Perform global common subexpression elimination" +#: fortran/intrinsic.c:2564 +#, no-c-format +msgid "Too many arguments in call to '%s' at %L" msgstr "" -#: common.opt:422 -msgid "" -"Perform enhanced load motion during global common subexpression elimination" +#: fortran/intrinsic.c:2578 +#, no-c-format +msgid "Can't find keyword named '%s' in call to '%s' at %L" msgstr "" -#: common.opt:426 -msgid "Perform store motion after global common subexpression elimination" +#: fortran/intrinsic.c:2585 +#, no-c-format +msgid "Argument '%s' is appears twice in call to '%s' at %L" msgstr "" -#: common.opt:430 -msgid "" -"Perform redundant load after store elimination in global common subexpression" +#: fortran/intrinsic.c:2599 +#, no-c-format +msgid "Missing actual argument '%s' in call to '%s' at %L" msgstr "" -#: common.opt:435 -msgid "" -"Perform global common subexpression elimination after register allocation" +#: fortran/intrinsic.c:2658 +#, no-c-format +msgid "Type of argument '%s' in call to '%s' at %L should be %s, not %s" msgstr "" -#: common.opt:440 -msgid "Enable guessing of branch probabilities" +#: fortran/intrinsic.c:2962 +#, no-c-format +msgid "Ranks of arguments to elemental intrinsic '%s' differ at %L" msgstr "" -#: common.opt:448 -msgid "Process #ident directives" +#: fortran/intrinsic.c:3008 +#, no-c-format +msgid "Intrinsic '%s' at %L is not included in the selected standard" msgstr "" -#: common.opt:452 -msgid "Perform conversion of conditional jumps to branchless equivalents" +#: fortran/intrinsic.c:3111 +#, no-c-format +msgid "Extension: Evaluation of nonstandard initialization expression at %L" msgstr "" -#: common.opt:456 -msgid "Perform conversion of conditional jumps to conditional execution" +#: fortran/intrinsic.c:3171 +#, no-c-format +msgid "Subroutine call to intrinsic '%s' at %L is not PURE" msgstr "" -#: common.opt:464 -msgid "Do not generate .size directives" +#: fortran/intrinsic.c:3246 +#, no-c-format +msgid "Extension: Conversion from %s to %s at %L" msgstr "" -#: common.opt:473 -msgid "Pay attention to the \"inline\" keyword" +#: fortran/intrinsic.c:3249 +#, no-c-format +msgid "Conversion from %s to %s at %L" msgstr "" -#: common.opt:477 -msgid "Integrate simple functions into their callers" +#: fortran/intrinsic.c:3286 +#, no-c-format +msgid "Can't convert %s to %s at %L" msgstr "" -#: common.opt:481 -msgid "Perform early inlining" +#: fortran/io.c:404 +msgid "Positive width required" msgstr "" -#: common.opt:488 -msgid "Limit the size of inlined functions to " +#: fortran/io.c:405 +msgid "Period required" msgstr "" -#: common.opt:492 -msgid "Instrument function entry and exit with profiling calls" +#: fortran/io.c:406 +msgid "Nonnegative width required" msgstr "" -#: common.opt:496 -msgid "Optimize induction variables on trees" +#: fortran/io.c:407 +msgid "Unexpected element" msgstr "" -#: common.opt:500 -msgid "Use jump tables for sufficiently large switch statements" +#: fortran/io.c:408 +msgid "Unexpected end of format string" msgstr "" -#: common.opt:504 -msgid "Generate code for functions even if they are fully inlined" +#: fortran/io.c:425 +msgid "Missing leading left parenthesis" msgstr "" -#: common.opt:508 -msgid "Emit static const variables even if they are not used" +#: fortran/io.c:463 +msgid "Expected P edit descriptor" msgstr "" -#: common.opt:512 -msgid "Give external symbols a leading underscore" +#. P requires a prior number. +#: fortran/io.c:471 +msgid "P descriptor requires leading scale factor" msgstr "" -#: common.opt:516 -msgid "Perform loop optimizations" +#. 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 "" -#: common.opt:520 -msgid "Perform loop optimizations using the new loop optimizer" +#: fortran/io.c:496 +#, no-c-format +msgid "Extension: $ descriptor at %C" msgstr "" -#: common.opt:524 -msgid "Set errno after built-in math functions" +#: fortran/io.c:501 +msgid "$ must be the last specifier" msgstr "" -#: common.opt:528 -msgid "Report on permanent memory allocation" +#: fortran/io.c:546 +msgid "Repeat count cannot follow P descriptor" msgstr "" -#: common.opt:535 -msgid "Attempt to merge identical constants and constant variables" +#: fortran/io.c:609 +msgid "Positive exponent width required" msgstr "" -#: common.opt:539 -msgid "Attempt to merge identical constants across compilation units" +#: fortran/io.c:710 fortran/io.c:762 +#, no-c-format +msgid "Extension: Missing comma at %C" msgstr "" -#: common.opt:543 -msgid "" -"Limit diagnostics to characters per line. 0 suppresses line-" -"wrapping" +#: fortran/io.c:777 fortran/io.c:780 +#, no-c-format +msgid "%s in format string at %C" msgstr "" -#: common.opt:547 -msgid "Perform SMS based modulo scheduling before the first scheduling pass" +#: fortran/io.c:820 +#, no-c-format +msgid "Missing format label at %C" msgstr "" -#: common.opt:551 -msgid "Move loop invariant computations out of loops" +#: fortran/io.c:878 fortran/io.c:902 +#, no-c-format +msgid "Duplicate %s specification at %C" msgstr "" -#: common.opt:555 -msgid "" -"Add mudflap bounds-checking instrumentation for single-threaded program." +#: fortran/io.c:909 +#, no-c-format +msgid "Variable tag cannot be INTENT(IN) at %C" msgstr "" -#: common.opt:559 -msgid "Add mudflap bounds-checking instrumentation for multi-threaded program." +#: fortran/io.c:916 +#, no-c-format +msgid "Variable tag cannot be assigned in PURE procedure at %C" msgstr "" -#: common.opt:563 -msgid "Ignore read operations when inserting mudflap instrumentation." +#: fortran/io.c:953 +#, no-c-format +msgid "Duplicate %s label specification at %C" msgstr "" -#: common.opt:567 -msgid "" -"Enable/Disable the traditional scheduling in loops that already passed " -"modulo scheduling" +#: fortran/io.c:975 +#, no-c-format +msgid "%s tag at %L must be of type %s" msgstr "" -#: common.opt:571 -msgid "Support synchronous non-call exceptions" +#: fortran/io.c:990 +#, no-c-format +msgid "%s tag at %L must be of type %s or %s" msgstr "" -#: common.opt:575 -msgid "When possible do not generate stack frames" +#: fortran/io.c:998 +#, no-c-format +msgid "Obsolete: ASSIGNED variable in FORMAT tag at %L" msgstr "" -#: common.opt:579 -msgid "Do the full register move optimization pass" +#: fortran/io.c:1003 +#, no-c-format +msgid "Variable '%s' at %L has not been assigned a format label" msgstr "" -#: common.opt:583 -msgid "Optimize sibling and tail recursive calls" +#: fortran/io.c:1018 +#, no-c-format +msgid "Extension: Character array in FORMAT tag at %L" msgstr "" -#: common.opt:587 -msgid "Pack structure members together without holes" +#: fortran/io.c:1025 +#, no-c-format +msgid "Extension: Non-character in FORMAT tag at %L" msgstr "" -#: common.opt:591 -msgid "Set initial maximum structure member alignment" +#: fortran/io.c:1036 +#, no-c-format +msgid "%s tag at %L must be scalar" msgstr "" -#: common.opt:595 -msgid "Return small aggregates in memory, not registers" +#: fortran/io.c:1041 +#, no-c-format +msgid "Fortran 2003: IOMSG tag at %L" msgstr "" -#: common.opt:599 -msgid "Perform loop peeling" +#: fortran/io.c:1205 +#, no-c-format +msgid "OPEN statement not allowed in PURE procedure at %C" msgstr "" -#: common.opt:603 -msgid "Enable machine specific peephole optimizations" +#: fortran/io.c:1313 +#, no-c-format +msgid "CLOSE statement not allowed in PURE procedure at %C" msgstr "" -#: common.opt:607 -msgid "Enable an RTL peephole pass before sched2" +#: fortran/io.c:1439 fortran/match.c:1441 +#, no-c-format +msgid "%s statement not allowed in PURE procedure at %C" msgstr "" -#: common.opt:611 -msgid "Generate position-independent code if possible (large mode)" +#: fortran/io.c:1499 +#, no-c-format +msgid "Fortran 2003: FLUSH statement at %C" msgstr "" -#: common.opt:615 -msgid "" -"Generate position-independent code for executables if possible (large mode)" +#: fortran/io.c:1559 +#, no-c-format +msgid "Duplicate UNIT specification at %C" msgstr "" -#: common.opt:619 -msgid "Generate position-independent code if possible (small mode)" +#: fortran/io.c:1615 +#, no-c-format +msgid "Duplicate format specification at %C" msgstr "" -#: common.opt:623 -msgid "" -"Generate position-independent code for executables if possible (small mode)" +#: fortran/io.c:1632 +#, no-c-format +msgid "Symbol '%s' in namelist '%s' is INTENT(IN) at %C" msgstr "" -#: common.opt:627 -msgid "Generate prefetch instructions, if available, for arrays in loops" +#: fortran/io.c:1668 +#, no-c-format +msgid "Duplicate NML specification at %C" msgstr "" -#: common.opt:631 -msgid "Enable basic program profiling code" +#: fortran/io.c:1677 +#, no-c-format +msgid "Symbol '%s' at %C must be a NAMELIST group name" msgstr "" -#: common.opt:635 -msgid "Insert arc-based program profiling code" +#: fortran/io.c:1713 +#, no-c-format +msgid "END tag at %C not allowed in output statement" msgstr "" -#: common.opt:639 +#: fortran/io.c:1773 +#, no-c-format msgid "" -"Enable common options for generating profile info for profile feedback " -"directed optimizations" +"UNIT specification at %L must be an INTEGER expression or a CHARACTER " +"variable" msgstr "" -#: common.opt:643 -msgid "" -"Enable common options for performing profile feedback directed optimizations" +#: fortran/io.c:1783 +#, no-c-format +msgid "REC tag at %L is incompatible with internal file" msgstr "" -#: common.opt:647 -msgid "Insert code to profile values of expressions" +#: fortran/io.c:1790 +#, no-c-format +msgid "Internal file at %L is incompatible with namelist" msgstr "" -#: common.opt:654 -msgid "Make compile reproducible using " +#: fortran/io.c:1797 +#, no-c-format +msgid "ADVANCE tag at %L is incompatible with internal file" msgstr "" -#: common.opt:658 -msgid "Return small aggregates in registers" +#: fortran/io.c:1807 +#, no-c-format +msgid "REC tag at %L is incompatible with END tag" msgstr "" -#: common.opt:662 -msgid "Enables a register move optimization" +#: fortran/io.c:1815 +#, no-c-format +msgid "END tag at %L is incompatible with list directed format (*)" msgstr "" -#: common.opt:666 -msgid "Perform a register renaming optimization pass" +#: fortran/io.c:1822 +#, no-c-format +msgid "REC tag at %L is incompatible with namelist" msgstr "" -#: common.opt:670 -msgid "Reorder basic blocks to improve code placement" +#: fortran/io.c:1830 +#, no-c-format +msgid "ADVANCE tag at %L is incompatible with list directed format (*)" msgstr "" -#: common.opt:674 -msgid "Reorder basic blocks and partition into hot and cold sections" +#: fortran/io.c:1837 +#, no-c-format +msgid "EOR tag at %L requires an ADVANCE tag" msgstr "" -#: common.opt:678 -msgid "Reorder functions to improve code placement" +#: fortran/io.c:1843 +#, no-c-format +msgid "SIZE tag at %L requires an ADVANCE tag" msgstr "" -#: common.opt:682 -msgid "Add a common subexpression elimination pass after loop optimizations" +#: fortran/io.c:1863 +#, no-c-format +msgid "FORMAT label %d at %L not defined" msgstr "" -#: common.opt:686 -msgid "Run the loop optimizer twice" +#: fortran/io.c:1984 +#, no-c-format +msgid "Syntax error in I/O iterator at %C" msgstr "" -#: common.opt:690 -msgid "Disable optimizations that assume default FP rounding behavior" +#: fortran/io.c:2015 +#, no-c-format +msgid "Expected variable in READ statement at %C" msgstr "" -#: common.opt:694 -msgid "Enable scheduling across basic blocks" +#: fortran/io.c:2021 +#, no-c-format +msgid "Expected expression in %s statement at %C" msgstr "" -#: common.opt:698 -msgid "Allow speculative motion of non-loads" +#: fortran/io.c:2032 +#, no-c-format +msgid "Variable '%s' in input list at %C cannot be INTENT(IN)" msgstr "" -#: common.opt:702 -msgid "Allow speculative motion of some loads" +#: fortran/io.c:2041 +#, no-c-format +msgid "Cannot read to variable '%s' in PURE procedure at %C" msgstr "" -#: common.opt:706 -msgid "Allow speculative motion of more loads" +#: fortran/io.c:2058 +#, no-c-format +msgid "Cannot write to internal file unit '%s' at %C inside a PURE procedure" msgstr "" -#: common.opt:710 -msgid "Set the verbosity level of the scheduler" +#. 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 "" -#: common.opt:714 -msgid "If scheduling post reload, do superblock scheduling" +#: fortran/io.c:2176 +#, no-c-format +msgid "PRINT namelist at %C is an extension" msgstr "" -#: common.opt:718 -msgid "If scheduling post reload, do trace scheduling" +#: fortran/io.c:2184 +#, no-c-format +msgid "Namelist followed by I/O list at %C" msgstr "" -#: common.opt:722 -msgid "Reschedule instructions before register allocation" +#: fortran/io.c:2286 +#, no-c-format +msgid "Extension: Comma before output item list at %C is an extension" msgstr "" -#: common.opt:726 -msgid "Reschedule instructions after register allocation" +#: fortran/io.c:2295 +#, no-c-format +msgid "Expected comma in I/O list at %C" msgstr "" -#: common.opt:732 -msgid "Allow premature scheduling of queued insns" +#: fortran/io.c:2313 +#, no-c-format +msgid "Internal file '%s' at %L is INTENT(IN)" msgstr "" -#: common.opt:736 -msgid "Set number of queued insns that can be prematurely scheduled" +#: 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 "" -#: common.opt:744 common.opt:748 -msgid "" -"Set dependence distance checking in premature scheduling of queued insns" +#: fortran/io.c:2376 +#, no-c-format +msgid "PRINT statement at %C not allowed within PURE procedure" msgstr "" -#: common.opt:752 -msgid "Mark data as shared rather than private" +#: fortran/io.c:2515 fortran/io.c:2563 +#, no-c-format +msgid "INQUIRE statement not allowed in PURE procedure at %C" msgstr "" -#: common.opt:756 -msgid "Show column numbers in diagnostics, when available. Default on." +#: fortran/io.c:2539 +#, no-c-format +msgid "IOLENGTH tag invalid in INQUIRE statement at %C" msgstr "" -#: common.opt:760 -msgid "Disable optimizations observable by IEEE signaling NaNs" +#: fortran/io.c:2549 +#, no-c-format +msgid "INQUIRE statement at %L cannot contain both FILE and UNIT specifiers" msgstr "" -#: common.opt:764 -msgid "Convert floating point constants to single precision constants" +#: fortran/io.c:2556 +#, no-c-format +msgid "INQUIRE statement at %L requires either FILE or UNIT specifier" msgstr "" -#: common.opt:768 -msgid "Use value profiling for speculative prefetching" +#: fortran/match.c:175 +#, no-c-format +msgid "Integer too large at %C" msgstr "" -#: common.opt:772 -msgid "Split lifetimes of induction variables when loops are unrolled." +#: fortran/match.c:238 +#, no-c-format +msgid "Statement label at %C is out of range" msgstr "" -#: common.opt:776 -msgid "Apply variable expansion when loops are unrolled." +#: fortran/match.c:263 +#, no-c-format +msgid "Label name '%s' at %C is ambiguous" msgstr "" -#: common.opt:782 -msgid "Insert stack checking code into the program" +#: fortran/match.c:269 +#, no-c-format +msgid "Duplicate construct label '%s' at %C" msgstr "" -#: common.opt:789 -msgid "Trap if the stack goes past " +#: fortran/match.c:393 +#, no-c-format +msgid "Name at %C is too long" msgstr "" -#: common.opt:793 -msgid "Trap if the stack goes past symbol " +#: fortran/match.c:510 +#, no-c-format +msgid "Loop variable at %C cannot be a sub-component" msgstr "" -#: common.opt:797 -msgid "Use propolice as a stack protection method" +#: fortran/match.c:516 +#, no-c-format +msgid "Loop variable '%s' at %C cannot be INTENT(IN)" msgstr "" -#: common.opt:801 -msgid "Use a stack protection method for every function" +#: fortran/match.c:523 +#, no-c-format +msgid "Loop variable at %C cannot have the POINTER attribute" msgstr "" -#: common.opt:805 -msgid "Perform strength reduction optimizations" +#: fortran/match.c:553 +#, no-c-format +msgid "Expected a step value in iterator at %C" msgstr "" -#: common.opt:813 -msgid "Assume strict aliasing rules apply" +#: fortran/match.c:565 +#, no-c-format +msgid "Syntax error in iterator at %C" msgstr "" -#: common.opt:817 -msgid "Check for syntax errors, then stop" +#: fortran/match.c:801 +#, no-c-format +msgid "Invalid form of PROGRAM statement at %C" msgstr "" -#: common.opt:821 -msgid "Create data files needed by \"gcov\"" +#: fortran/match.c:835 +#, no-c-format +msgid "Cannot assign to a PARAMETER variable at %C" msgstr "" -#: common.opt:825 -msgid "Perform jump threading optimizations" +#: fortran/match.c:924 fortran/match.c:1000 +#, no-c-format +msgid "Obsolete: arithmetic IF statement at %C" msgstr "" -#: common.opt:829 -msgid "Report the time taken by each compiler pass" +#: fortran/match.c:971 +#, no-c-format +msgid "Syntax error in IF-expression at %C" msgstr "" -#: common.opt:833 -msgid "Set the default thread-local storage code generation model" +#: fortran/match.c:983 +#, no-c-format +msgid "Block label not appropriate for arithmetic IF statement at %C" msgstr "" -#: common.opt:837 -msgid "Perform superblock formation via tail duplication" +#: fortran/match.c:1025 +#, no-c-format +msgid "Block label is not appropriate IF statement at %C" msgstr "" -#: common.opt:844 -msgid "Assume floating-point operations can trap" +#: fortran/match.c:1096 +#, no-c-format +msgid "Unclassifiable statement in IF-clause at %C" msgstr "" -#: common.opt:848 -msgid "Trap for signed overflow in addition, subtraction and multiplication" +#: fortran/match.c:1103 +#, no-c-format +msgid "Syntax error in IF-clause at %C" msgstr "" -#: common.opt:852 -msgid "Use tree-ssa based implementation of profiling" +#: fortran/match.c:1147 +#, no-c-format +msgid "Unexpected junk after ELSE statement at %C" msgstr "" -#: common.opt:856 -msgid "Enable SSA-CCP optimization on trees" +#: fortran/match.c:1153 fortran/match.c:1188 +#, no-c-format +msgid "Label '%s' at %C doesn't match IF label '%s'" msgstr "" -#: common.opt:860 -msgid "Enable SSA-CCP optimization for stores and loads" +#: fortran/match.c:1182 +#, no-c-format +msgid "Unexpected junk after ELSE IF statement at %C" msgstr "" -#: common.opt:864 -msgid "Enable loop header copying on trees" +#: fortran/match.c:1345 +#, no-c-format +msgid "Name '%s' in %s statement at %C is not a loop name" msgstr "" -#: common.opt:868 -msgid "Coalesce memory temporaries in the SSA->normal pass" +#: fortran/match.c:1360 +#, no-c-format +msgid "%s statement at %C is not within a loop" msgstr "" -#: common.opt:872 -msgid "Replace SSA temporaries with better names in copies." +#: fortran/match.c:1363 +#, no-c-format +msgid "%s statement at %C is not within loop '%s'" msgstr "" -#: common.opt:876 -msgid "Enable copy propagation on trees" +#: fortran/match.c:1419 +#, no-c-format +msgid "STOP code out of range at %C" msgstr "" -#: common.opt:880 -msgid "Enable copy propagation for stores and loads" +#: fortran/match.c:1472 +#, no-c-format +msgid "Obsolete: PAUSE statement at %C" msgstr "" -#: common.opt:884 -msgid "Enable SSA dead code elimination optimization on trees" +#: fortran/match.c:1521 +#, no-c-format +msgid "Obsolete: ASSIGN statement at %C" msgstr "" -#: common.opt:888 -msgid "Enable dominator optimizations" +#: fortran/match.c:1567 +#, no-c-format +msgid "Obsolete: Assigned GOTO statement at %C" msgstr "" -#: common.opt:892 -msgid "Enable dead store elimination" +#: fortran/match.c:1614 fortran/match.c:1666 +#, no-c-format +msgid "Statement label list in GOTO at %C cannot be empty" msgstr "" -#: common.opt:896 -msgid "Enable Full Redundancy Elimination (FRE) on trees" +#: fortran/match.c:1750 +#, no-c-format +msgid "Bad allocate-object in ALLOCATE statement at %C for a PURE procedure" msgstr "" -#: common.opt:900 -msgid "Enable loop invariant motion on trees" +#: fortran/match.c:1770 +#, no-c-format +msgid "STAT variable '%s' of ALLOCATE statement at %C cannot be INTENT(IN)" msgstr "" -#: common.opt:904 -msgid "Enable linear loop transforms on trees" +#: fortran/match.c:1778 +#, no-c-format +msgid "Illegal STAT variable in ALLOCATE statement at %C for a PURE procedure" msgstr "" -#: common.opt:908 -msgid "Create canonical induction variables in loops" +#: fortran/match.c:1785 fortran/match.c:1951 +#, no-c-format +msgid "STAT expression at %C must be a variable" msgstr "" -#: common.opt:912 -msgid "Enable loop optimizations on tree level" +#: fortran/match.c:1840 +#, no-c-format +msgid "Illegal variable in NULLIFY at %C for a PURE procedure" msgstr "" -#: common.opt:916 -msgid "Enable SSA-PRE optimization on trees" +#: fortran/match.c:1918 +#, no-c-format +msgid "Illegal deallocate-expression in DEALLOCATE at %C for a PURE procedure" msgstr "" -#: common.opt:920 -msgid "Perform structural alias analysis" +#: fortran/match.c:1937 +#, no-c-format +msgid "STAT variable '%s' of DEALLOCATE statement at %C cannot be INTENT(IN)" msgstr "" -#: common.opt:924 -msgid "Enable SSA code sinking on trees" +#: fortran/match.c:1944 +#, no-c-format +msgid "" +"Illegal STAT variable in DEALLOCATE statement at %C for a PURE procedure" msgstr "" -#: common.opt:928 -msgid "Perform scalar replacement of aggregates" +#: fortran/match.c:1993 +#, no-c-format +msgid "Alternate RETURN statement at %C is only allowed within a SUBROUTINE" msgstr "" -#: common.opt:932 -msgid "Replace temporary expressions in the SSA->normal pass" +#: fortran/match.c:2024 +#, no-c-format +msgid "Extension: RETURN statement in main program at %C" msgstr "" -#: common.opt:936 -msgid "Perform live range splitting during the SSA->normal pass." +#: fortran/match.c:2219 +#, no-c-format +msgid "Syntax error in common block name at %C" msgstr "" -#: common.opt:940 -msgid "Perform Value Range Propagation on trees" +#: fortran/match.c:2284 +#, no-c-format +msgid "Symbol '%s' at %C is already in a COMMON block" msgstr "" -#: common.opt:944 -msgid "Compile whole compilation unit at a time" +#: fortran/match.c:2296 +#, no-c-format +msgid "Previously initialized symbol '%s' in blank COMMON block at %C" msgstr "" -#: common.opt:948 -msgid "Perform loop unrolling when iteration count is known" +#: fortran/match.c:2299 +#, no-c-format +msgid "Previously initialized symbol '%s' in COMMON block '%s' at %C" msgstr "" -#: common.opt:952 -msgid "Perform loop unrolling for all loops" +#: fortran/match.c:2311 +#, no-c-format +msgid "" +"Derived type variable in COMMON at %C does not have the SEQUENCE attribute" msgstr "" -#: common.opt:960 -msgid "Allow math optimizations that may violate IEEE or ISO standards" +#: fortran/match.c:2334 +#, no-c-format +msgid "Array specification for symbol '%s' in COMMON at %C must be explicit" msgstr "" -#: common.opt:964 -msgid "Perform loop unswitching" +#: fortran/match.c:2345 +#, no-c-format +msgid "Symbol '%s' in COMMON at %C cannot be a POINTER array" msgstr "" -#: common.opt:968 -msgid "Just generate unwind tables for exception handling" +#: 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 "" -#: common.opt:972 -msgid "Perform variable tracking" +#: fortran/match.c:2487 +#, no-c-format +msgid "Namelist group name '%s' at %C already has a basic type of %s" msgstr "" -#: common.opt:976 -msgid "Enable loop vectorization on trees" +#: fortran/match.c:2629 +#, no-c-format +msgid "Array reference in EQUIVALENCE at %C cannot be an array section" msgstr "" -#: common.opt:980 -msgid "Set the verbosity level of the vectorizer" +#: fortran/match.c:2661 +#, no-c-format +msgid "" +"Attempt to indirectly overlap COMMON blocks %s and %s by EQUIVALENCE at %C" msgstr "" -#: common.opt:990 -msgid "Add extra commentary to assembler output" +#: fortran/match.c:2811 +#, no-c-format +msgid "Expected initialization expression in CASE at %C" msgstr "" -#: common.opt:994 -msgid "Set the default symbol visibility" +#: fortran/match.c:2838 +#, no-c-format +msgid "Expected case name of '%s' at %C" msgstr "" -#: common.opt:999 -msgid "Use expression value profiles in optimizations" +#: fortran/match.c:2882 +#, no-c-format +msgid "Unexpected CASE statement at %C" msgstr "" -#: common.opt:1003 -msgid "Construct webs and split unrelated uses of single variable" +#: fortran/match.c:2934 +#, no-c-format +msgid "Syntax error in CASE-specification at %C" msgstr "" -#: common.opt:1007 -msgid "Perform whole program optimizations" +#: fortran/match.c:3054 +#, no-c-format +msgid "ELSEWHERE statement at %C not enclosed in WHERE block" msgstr "" -#: common.opt:1011 -msgid "Assume signed arithmetic overflow wraps around" +#: fortran/match.c:3085 +#, no-c-format +msgid "Label '%s' at %C doesn't match WHERE label '%s'" msgstr "" -#: common.opt:1015 -msgid "Put zero initialized data in the bss section" +#: fortran/match.c:3180 +#, no-c-format +msgid "Syntax error in FORALL iterator at %C" msgstr "" -#: common.opt:1019 -msgid "Generate debug information in default format" +#: fortran/matchexp.c:29 +#, c-format +msgid "Syntax error in expression at %C" msgstr "" -#: common.opt:1023 -msgid "Generate debug information in COFF format" +#: fortran/matchexp.c:73 +#, no-c-format +msgid "Bad character '%c' in OPERATOR name at %C" msgstr "" -#: common.opt:1027 -msgid "Generate debug information in DWARF v2 format" +#: fortran/matchexp.c:81 +#, no-c-format +msgid "The name '%s' cannot be used as a defined operator at %C" msgstr "" -#: common.opt:1031 -msgid "Generate debug information in default extended format" +#: fortran/matchexp.c:156 +#, no-c-format +msgid "Expected a right parenthesis in expression at %C" msgstr "" -#: common.opt:1035 -msgid "Generate debug information in STABS format" +#: fortran/matchexp.c:278 +#, no-c-format +msgid "Expected exponent in expression at %C" msgstr "" -#: common.opt:1039 -msgid "Generate debug information in extended STABS format" +#: fortran/matchexp.c:314 fortran/matchexp.c:418 +#, no-c-format +msgid "" +"Extension: Unary operator following arithmetic operator (use parentheses) at " +"%C" msgstr "" -#: common.opt:1043 -msgid "Generate debug information in VMS format" +#: fortran/misc.c:42 +#, no-c-format +msgid "Out of memory-- malloc() failed" msgstr "" -#: common.opt:1047 -msgid "Generate debug information in XCOFF format" +#: fortran/module.c:529 +#, no-c-format +msgid "Missing generic specification in USE statement at %C" msgstr "" -#: common.opt:1051 -msgid "Generate debug information in extended XCOFF format" +#: fortran/module.c:837 +#, no-c-format +msgid "Reading module %s at line %d column %d: %s" msgstr "" -#: common.opt:1055 -msgid "Place output into " +#: fortran/module.c:841 +#, no-c-format +msgid "Writing module %s at line %d column %d: %s" msgstr "" -#: common.opt:1059 -msgid "Enable function profiling" +#: fortran/module.c:845 +#, no-c-format +msgid "Module %s at line %d column %d: %s" msgstr "" -#: common.opt:1063 -msgid "Issue warnings needed for strict compliance to the standard" +#: fortran/module.c:887 +msgid "Unexpected EOF" msgstr "" -#: common.opt:1067 -msgid "Like -pedantic but issue them as errors" +#: fortran/module.c:919 +msgid "Unexpected end of module in string constant" msgstr "" -#: common.opt:1071 -msgid "Do not display functions compiled or elapsed time" +#: fortran/module.c:973 +msgid "Integer overflow" msgstr "" -#: common.opt:1075 -msgid "Display the compiler's version" +#: fortran/module.c:1004 +msgid "Name too long" msgstr "" -#: common.opt:1079 -msgid "Suppress warnings" +#: fortran/module.c:1111 +msgid "Bad name" msgstr "" -#: config/alpha/alpha.opt:24 config/i386/i386.opt:182 -#: config/ns32k/ns32k.opt:104 -msgid "Do not use hardware fp" +#: fortran/module.c:1155 +msgid "Expected name" msgstr "" -#: config/alpha/alpha.opt:28 -msgid "Use fp registers" +#: fortran/module.c:1158 +msgid "Expected left parenthesis" msgstr "" -#: config/alpha/alpha.opt:32 -msgid "Assume GAS" +#: fortran/module.c:1161 +msgid "Expected right parenthesis" msgstr "" -#: config/alpha/alpha.opt:36 -msgid "Do not assume GAS" +#: fortran/module.c:1164 +msgid "Expected integer" msgstr "" -#: config/alpha/alpha.opt:40 -msgid "Request IEEE-conformant math library routines (OSF/1)" +#: fortran/module.c:1167 +msgid "Expected string" msgstr "" -#: config/alpha/alpha.opt:44 -msgid "Emit IEEE-conformant code, without inexact exceptions" +#: fortran/module.c:1191 +msgid "find_enum(): Enum not found" msgstr "" -#: config/alpha/alpha.opt:51 -msgid "Do not emit complex integer constants to read-only memory" +#: fortran/module.c:1206 +#, no-c-format +msgid "Error writing modules file: %s" msgstr "" -#: config/alpha/alpha.opt:55 -msgid "Use VAX fp" +#: fortran/module.c:1558 +msgid "Expected attribute bit name" msgstr "" -#: config/alpha/alpha.opt:59 -msgid "Do not use VAX fp" +#: fortran/module.c:2287 +msgid "Expected integer string" msgstr "" -#: config/alpha/alpha.opt:63 -msgid "Emit code for the byte/word ISA extension" +#: fortran/module.c:2291 +msgid "Error converting integer" msgstr "" -#: config/alpha/alpha.opt:67 -msgid "Emit code for the motion video ISA extension" +#: fortran/module.c:2314 +msgid "Expected real string" msgstr "" -#: config/alpha/alpha.opt:71 -msgid "Emit code for the fp move and sqrt ISA extension" +#: fortran/module.c:2460 +msgid "Expected expression type" msgstr "" -#: config/alpha/alpha.opt:75 -msgid "Emit code for the counting ISA extension" +#: fortran/module.c:2505 +msgid "Bad operator" msgstr "" -#: config/alpha/alpha.opt:79 -msgid "Emit code using explicit relocation directives" +#: fortran/module.c:2591 +msgid "Bad type in constant expression" msgstr "" -#: config/alpha/alpha.opt:83 -msgid "Emit 16-bit relocations to the small data areas" +#: fortran/module.c:2628 +#, no-c-format +msgid "Namelist %s cannot be renamed by USE association to %s." msgstr "" -#: config/alpha/alpha.opt:87 -msgid "Emit 32-bit relocations to the small data areas" +#: fortran/module.c:3283 +#, no-c-format +msgid "Symbol '%s' referenced at %L not found in module '%s'" msgstr "" -#: config/alpha/alpha.opt:91 -msgid "Emit direct branches to local functions" +#: fortran/module.c:3291 +#, no-c-format +msgid "User operator '%s' referenced at %L not found in module '%s'" msgstr "" -#: config/alpha/alpha.opt:95 -msgid "Emit indirect branches to local functions" +#: fortran/module.c:3297 +#, no-c-format +msgid "Intrinsic operator '%s' referenced at %L not found in module '%s'" msgstr "" -#: config/alpha/alpha.opt:99 -msgid "Emit rdval instead of rduniq for thread pointer" +#: fortran/module.c:3657 +#, no-c-format +msgid "Can't open module file '%s' for writing at %C: %s" msgstr "" -#: config/alpha/alpha.opt:103 config/sparc/long-double-switch.opt:24 -msgid "Use 128-bit long double" +#: fortran/module.c:3682 +#, no-c-format +msgid "Error writing module file '%s' for writing: %s" msgstr "" -#: config/alpha/alpha.opt:107 config/sparc/long-double-switch.opt:28 -msgid "Use 64-bit long double" +#: fortran/module.c:3703 +#, no-c-format +msgid "Can't open module file '%s' for reading at %C: %s" msgstr "" -#: config/alpha/alpha.opt:111 -msgid "Use features of and schedule given CPU" +#: fortran/module.c:3717 +msgid "Unexpected end of module" msgstr "" -#: config/alpha/alpha.opt:115 -msgid "Schedule given CPU" +#: fortran/module.c:3725 +#, no-c-format +msgid "Can't USE the same module we're building!" msgstr "" -#: config/alpha/alpha.opt:119 -msgid "Control the generated fp rounding mode" +#: fortran/options.c:188 +#, no-c-format +msgid "Reading file '%s' as free form." msgstr "" -#: config/alpha/alpha.opt:123 -msgid "Control the IEEE trap mode" +#: fortran/options.c:198 +#, no-c-format +msgid "'-fd-lines-as-comments' has no effect in free form." msgstr "" -#: config/alpha/alpha.opt:127 -msgid "Control the precision given to fp exceptions" +#: fortran/options.c:201 +#, no-c-format +msgid "'-fd-lines-as-code' has no effect in free form." msgstr "" -#: config/alpha/alpha.opt:131 -msgid "Tune expected memory latency" +#: fortran/options.c:262 +#, c-format +msgid "gfortran: Only one -M option allowed\n" msgstr "" -#: config/alpha/alpha.opt:135 config/ia64/ia64.opt:93 -#: config/rs6000/sysv4.opt:33 -msgid "Specify bit size of immediate TLS offsets" +#: fortran/options.c:268 +#, c-format +msgid "gfortran: Directory required after -M\n" msgstr "" -#: config/arc/arc.opt:33 -msgid "Prepend the name of the cpu to all public symbol names" +#: fortran/options.c:401 +#, no-c-format +msgid "Fixed line length must be at least seven." msgstr "" -#: config/arc/arc.opt:43 -msgid "Compile code for ARC variant CPU" +#: fortran/options.c:407 +#, no-c-format +msgid "Maximum supported idenitifier length is %d" msgstr "" -#: config/arc/arc.opt:47 -msgid "Put functions in SECTION" +#: fortran/options.c:414 +#, no-c-format +msgid "Argument to -fqkind isn't a valid real kind" msgstr "" -#: config/arc/arc.opt:51 -msgid "Put data in SECTION" +#: fortran/parse.c:292 +#, no-c-format +msgid "Unclassifiable statement at %C" msgstr "" -#: config/arc/arc.opt:55 -msgid "Put read-only data in SECTION" +#. Skip the bad statement label. +#: fortran/parse.c:327 +#, no-c-format +msgid "Ignoring bad statement label at %C" msgstr "" -#: config/arm/arm.opt:24 -msgid "Specify an ABI" +#: fortran/parse.c:338 +#, no-c-format +msgid "Ignoring statement label of zero at %C" msgstr "" -#: config/arm/arm.opt:28 -msgid "Generate a call to abort if a noreturn function returns" +#: fortran/parse.c:348 +#, no-c-format +msgid "Ignoring statement label in empty statement at %C" msgstr "" -#: config/arm/arm.opt:35 -msgid "Pass FP arguments in FP registers" +#: fortran/parse.c:410 +#, no-c-format +msgid "Non-numeric character in statement label at %C" msgstr "" -#: config/arm/arm.opt:39 -msgid "Generate APCS conformant stack frames" +#: fortran/parse.c:418 +#, no-c-format +msgid "Zero is not a valid statement label at %C" msgstr "" -#: config/arm/arm.opt:43 -msgid "Generate re-entrant, PIC code" +#: fortran/parse.c:437 +#, no-c-format +msgid "Bad continuation line at %C" msgstr "" -#: config/arm/arm.opt:50 -msgid "Specify the name of the target architecture" +#: fortran/parse.c:464 +#, no-c-format +msgid "Statement label in blank line will be ignored at %C" msgstr "" -#: config/arm/arm.opt:57 -msgid "Assume target CPU is configured as big endian" +#: fortran/parse.c:489 +#, no-c-format +msgid "Line truncated at %C" msgstr "" -#: config/arm/arm.opt:61 -msgid "Thumb: Assume non-static functions may be called from ARM code" +#: fortran/parse.c:662 +#, no-c-format +msgid "FORMAT statement at %L does not have a statement label" msgstr "" -#: config/arm/arm.opt:65 -msgid "Thumb: Assume function pointers may go to non-Thumb aware code" +#: fortran/parse.c:734 +msgid "arithmetic IF" msgstr "" -#: config/arm/arm.opt:69 -msgid "Cirrus: Place NOPs to avoid invalid instruction combinations" +#: fortran/parse.c:740 +msgid "attribute declaration" msgstr "" -#: config/arm/arm.opt:73 -msgid "Specify the name of the target CPU" +#: fortran/parse.c:770 +msgid "data declaration" msgstr "" -#: config/arm/arm.opt:77 -msgid "Specify if floating point hardware should be used" +#: fortran/parse.c:779 +msgid "derived type declaration" msgstr "" -#: config/arm/arm.opt:91 -msgid "Specify the name of the target floating point hardware/format" +#: fortran/parse.c:858 +msgid "block IF" msgstr "" -#: config/arm/arm.opt:95 -msgid "Alias for -mfloat-abi=hard" +#: fortran/parse.c:867 +msgid "implied END DO" msgstr "" -#: config/arm/arm.opt:99 -msgid "Assume target CPU is configured as little endian" +#: fortran/parse.c:934 +msgid "assignment" msgstr "" -#: config/arm/arm.opt:103 -msgid "Generate call insns as indirect calls, if necessary" +#: fortran/parse.c:937 +msgid "pointer assignment" msgstr "" -#: config/arm/arm.opt:107 -msgid "Specify the register to be used for PIC addressing" +#: fortran/parse.c:946 +msgid "simple IF" msgstr "" -#: config/arm/arm.opt:111 -msgid "Store function names in object code" +#: fortran/parse.c:972 +msgid "a PROGRAM" msgstr "" -#: config/arm/arm.opt:115 -msgid "Permit scheduling of a function's prologue sequence" +#: fortran/parse.c:975 +msgid "a MODULE" msgstr "" -#: config/arm/arm.opt:119 -msgid "Do not load the PIC register in function prologues" +#: fortran/parse.c:978 +msgid "a SUBROUTINE" msgstr "" -#: config/arm/arm.opt:123 -msgid "Alias for -mfloat-abi=soft" +#: fortran/parse.c:981 +msgid "a FUNCTION" msgstr "" -#: config/arm/arm.opt:127 -msgid "Specify the minimum bit alignment of structures" +#: fortran/parse.c:984 +msgid "a BLOCK DATA" msgstr "" -#: config/arm/arm.opt:131 -msgid "Compile for the Thumb not the ARM" +#: fortran/parse.c:987 +msgid "an INTERFACE" msgstr "" -#: config/arm/arm.opt:135 -msgid "Support calls between Thumb and ARM instruction sets" +#: fortran/parse.c:990 +msgid "a DERIVED TYPE block" msgstr "" -#: config/arm/arm.opt:139 -msgid "Thumb: Generate (non-leaf) stack frames even if not needed" +#: fortran/parse.c:993 +msgid "an IF-THEN block" msgstr "" -#: config/arm/arm.opt:143 -msgid "Thumb: Generate (leaf) stack frames even if not needed" +#: fortran/parse.c:996 +msgid "a DO block" msgstr "" -#: config/arm/arm.opt:147 -msgid "Tune code for the given processor" +#: fortran/parse.c:999 +msgid "a SELECT block" msgstr "" -#: config/arm/arm.opt:151 -msgid "Assume big endian bytes, little endian words" +#: fortran/parse.c:1002 +msgid "a FORALL block" msgstr "" -#: config/arm/pe.opt:24 -msgid "Ignore dllimport attribute for functions" +#: fortran/parse.c:1005 +msgid "a WHERE block" msgstr "" -#: config/avr/avr.opt:24 -msgid "Use subroutines for function prologues and epilogues" +#: fortran/parse.c:1008 +msgid "a contained subprogram" msgstr "" -#: config/avr/avr.opt:28 -msgid "Select the target MCU" +#: fortran/parse.c:1109 +#, no-c-format +msgid "Unexpected %s statement at %C" msgstr "" -#: config/avr/avr.opt:35 -msgid "Use STACK as the initial value of the stack pointer" +#: fortran/parse.c:1241 +#, no-c-format +msgid "%s statement at %C cannot follow %s statement at %L" msgstr "" -#: config/avr/avr.opt:39 -msgid "Use an 8-bit 'int' type" +#: fortran/parse.c:1258 +#, no-c-format +msgid "Unexpected end of file in '%s'" msgstr "" -#: config/avr/avr.opt:43 -msgid "Change the stack pointer without disabling interrupts" +#: fortran/parse.c:1311 +#, no-c-format +msgid "Derived type definition at %C has no components" msgstr "" -#: config/avr/avr.opt:47 -msgid "Do not generate tablejump insns" +#: fortran/parse.c:1322 +#, no-c-format +msgid "PRIVATE statement in TYPE at %C must be inside a MODULE" msgstr "" -#: config/avr/avr.opt:57 -msgid "Use rjmp/rcall (limited range) on >8K devices" +#: fortran/parse.c:1329 +#, no-c-format +msgid "PRIVATE statement at %C must precede structure components" msgstr "" -#: config/avr/avr.opt:61 -msgid "Output instruction sizes to the asm file" +#: fortran/parse.c:1337 +#, no-c-format +msgid "Duplicate PRIVATE statement at %C" msgstr "" -#: config/avr/avr.opt:65 -msgid "Change only the low 8 bits of the stack pointer" +#: fortran/parse.c:1349 +#, no-c-format +msgid "SEQUENCE statement at %C must precede structure components" msgstr "" -#: config/bfin/bfin.opt:24 -msgid "Omit frame pointer for leaf functions" +#: fortran/parse.c:1356 +#, no-c-format +msgid "SEQUENCE attribute at %C already specified in TYPE statement" msgstr "" -#: config/bfin/bfin.opt:28 -msgid "Program is entirely located in low 64k of memory." +#: fortran/parse.c:1361 +#, no-c-format +msgid "Duplicate SEQUENCE statement at %C" msgstr "" -#: config/bfin/bfin.opt:32 -msgid "Avoid speculative loads by inserting CSYNC or equivalent" +#: fortran/parse.c:1385 +#, no-c-format +msgid "" +"Component %s of SEQUENCE type declared at %C does not have the SEQUENCE " +"attribute" msgstr "" -#: config/bfin/bfin.opt:36 -msgid "Enabled ID based shared library" +#: fortran/parse.c:1454 +#, no-c-format +msgid "Unexpected %s statement in INTERFACE block at %C" msgstr "" -#: config/bfin/bfin.opt:40 config/m68k/m68k.opt:137 -msgid "ID of shared library to build" +#: fortran/parse.c:1481 +#, no-c-format +msgid "SUBROUTINE at %C does not belong in a generic function interface" msgstr "" -#: config/bfin/bfin.opt:44 -msgid "Avoid generating pc-relative calls; use indirection" +#: fortran/parse.c:1486 +#, no-c-format +msgid "FUNCTION at %C does not belong in a generic subroutine interface" msgstr "" -#: config/c4x/c4x.opt:24 -msgid "Generate code for C30 CPU" +#: fortran/parse.c:1503 +#, no-c-format +msgid "Unexpected %s statement at %C in INTERFACE body" msgstr "" -#: config/c4x/c4x.opt:28 -msgid "Generate code for C31 CPU" +#: fortran/parse.c:1575 +#, no-c-format +msgid "%s statement must appear in a MODULE" msgstr "" -#: config/c4x/c4x.opt:32 -msgid "Generate code for C32 CPU" +#: fortran/parse.c:1582 +#, no-c-format +msgid "%s statement at %C follows another accessibility specification" msgstr "" -#: config/c4x/c4x.opt:36 -msgid "Generate code for C33 CPU" +#: fortran/parse.c:1653 +#, no-c-format +msgid "ELSEWHERE statement at %C follows previous unmasked ELSEWHERE" msgstr "" -#: config/c4x/c4x.opt:40 -msgid "Generate code for C40 CPU" +#: fortran/parse.c:1674 +#, no-c-format +msgid "Unexpected %s statement in WHERE block at %C" msgstr "" -#: config/c4x/c4x.opt:44 -msgid "Generate code for C44 CPU" +#: fortran/parse.c:1734 +#, no-c-format +msgid "Unexpected %s statement in FORALL block at %C" msgstr "" -#: config/c4x/c4x.opt:48 -msgid "Assume that pointers may be aliased" +#: fortran/parse.c:1786 +#, no-c-format +msgid "ELSE IF statement at %C cannot follow ELSE statement at %L" msgstr "" -#: config/c4x/c4x.opt:52 -msgid "Big memory model" +#: fortran/parse.c:1804 +#, no-c-format +msgid "Duplicate ELSE statements at %L and %C" msgstr "" -#: config/c4x/c4x.opt:56 -msgid "Use the BK register as a general purpose register" +#: fortran/parse.c:1866 +#, no-c-format +msgid "Expected a CASE or END SELECT statement following SELECT CASE at %C" msgstr "" -#: config/c4x/c4x.opt:60 -msgid "Generate code for CPU" +#: fortran/parse.c:1924 +#, no-c-format +msgid "Variable '%s' at %C cannot be redefined inside loop beginning at %L" msgstr "" -#: config/c4x/c4x.opt:64 -msgid "Enable use of DB instruction" +#: fortran/parse.c:1959 +#, no-c-format +msgid "End of nonblock DO statement at %C is within another block" msgstr "" -#: config/c4x/c4x.opt:68 -msgid "Enable debugging" +#: fortran/parse.c:1968 +#, no-c-format +msgid "End of nonblock DO statement at %C is interwoven with another DO loop" msgstr "" -#: config/c4x/c4x.opt:72 -msgid "Enable new features under development" +#: fortran/parse.c:2018 +#, no-c-format +msgid "Statement label in ENDDO at %C doesn't match DO label" msgstr "" -#: config/c4x/c4x.opt:76 -msgid "Use fast but approximate float to integer conversion" +#: fortran/parse.c:2075 +#, no-c-format +msgid "%s statement at %C cannot terminate a non-block DO loop" msgstr "" -#: config/c4x/c4x.opt:80 -msgid "Force RTL generation to emit valid 3 operand insns" +#: fortran/parse.c:2214 +#, no-c-format +msgid "Contained procedure '%s' at %C is already ambiguous" msgstr "" -#: config/c4x/c4x.opt:84 -msgid "Force constants into registers to improve hoisting" +#: fortran/parse.c:2265 +#, no-c-format +msgid "Unexpected %s statement in CONTAINS section at %C" msgstr "" -#: config/c4x/c4x.opt:88 config/c4x/c4x.opt:112 -msgid "Save DP across ISR in small memory model" +#: fortran/parse.c:2350 +#, no-c-format +msgid "CONTAINS statement at %C is already in a contained program unit" msgstr "" -#: config/c4x/c4x.opt:92 -msgid "Allow unsigned iteration counts for RPTB/DB" +#: fortran/parse.c:2399 +#, no-c-format +msgid "Global name '%s' at %L is already being used as a %s at %L" msgstr "" -#: config/c4x/c4x.opt:96 -msgid "Pass arguments on the stack" +#: fortran/parse.c:2420 +#, no-c-format +msgid "Blank BLOCK DATA at %C conflicts with prior BLOCK DATA at %L" msgstr "" -#: config/c4x/c4x.opt:100 -msgid "Use MPYI instruction for C3x" +#: fortran/parse.c:2444 +#, no-c-format +msgid "Unexpected %s statement in BLOCK DATA at %C" msgstr "" -#: config/c4x/c4x.opt:104 -msgid "Enable parallel instructions" +#: fortran/parse.c:2486 +#, no-c-format +msgid "Unexpected %s statement in MODULE at %C" msgstr "" -#: config/c4x/c4x.opt:108 -msgid "Enable MPY||ADD and MPY||SUB instructions" +#. 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 "" -#: config/c4x/c4x.opt:116 -msgid "Preserve all 40 bits of FP reg across call" +#: fortran/primary.c:89 +#, no-c-format +msgid "Missing kind-parameter at %C" msgstr "" -#: config/c4x/c4x.opt:120 -msgid "Pass arguments in registers" +#: fortran/primary.c:212 +#, no-c-format +msgid "Integer kind %d at %C not available" msgstr "" -#: config/c4x/c4x.opt:124 -msgid "Enable use of RTPB instruction" +#: fortran/primary.c:220 +#, no-c-format +msgid "Integer too big for its kind at %C" msgstr "" -#: config/c4x/c4x.opt:128 -msgid "Enable use of RTPS instruction" +#: fortran/primary.c:250 +#, no-c-format +msgid "Extension: Hollerith constant at %C" msgstr "" -#: config/c4x/c4x.opt:132 -msgid "Set the maximum number of iterations for RPTS to N" +#: fortran/primary.c:262 +#, no-c-format +msgid "Invalid Hollerith constant: %L must contain at least one character" msgstr "" -#: config/c4x/c4x.opt:136 -msgid "Small memory model" +#: fortran/primary.c:268 +#, no-c-format +msgid "Invalid Hollerith constant: Interger kind at %L should be default" msgstr "" -#: config/c4x/c4x.opt:140 -msgid "Emit code compatible with TI tools" +#: fortran/primary.c:340 +#, no-c-format +msgid "Extension: Hexadecimal constant at %C uses non-standard syntax." msgstr "" -#: config/cris/aout.opt:28 -msgid "Compile for the MMU-less Etrax 100-based elinux system" +#: fortran/primary.c:353 +#, no-c-format +msgid "Empty set of digits in binary constant at %C" msgstr "" -#: config/cris/aout.opt:34 -msgid "For elinux, request a specified stack-size for this program" +#: fortran/primary.c:355 +#, no-c-format +msgid "Empty set of digits in octal constant at %C" msgstr "" -#: config/cris/cris.opt:46 -msgid "Work around bug in multiplication instruction" +#: fortran/primary.c:357 +#, no-c-format +msgid "Empty set of digits in hexadecimal constant at %C" msgstr "" -#: config/cris/cris.opt:52 -msgid "Compile for ETRAX 4 (CRIS v3)" +#: fortran/primary.c:369 +#, no-c-format +msgid "Illegal character in binary constant at %C" msgstr "" -#: config/cris/cris.opt:57 -msgid "Compile for ETRAX 100 (CRIS v8)" +#: fortran/primary.c:371 +#, no-c-format +msgid "Illegal character in octal constant at %C" msgstr "" -#: config/cris/cris.opt:65 -msgid "Emit verbose debug information in assembly code" +#: fortran/primary.c:373 +#, no-c-format +msgid "Illegal character in hexadecimal constant at %C" msgstr "" -#: config/cris/cris.opt:72 -msgid "Do not use condition codes from normal instructions" +#: fortran/primary.c:401 +#, no-c-format +msgid "Integer too big for integer kind %i at %C" msgstr "" -#: config/cris/cris.opt:81 -msgid "Do not emit addressing modes with side-effect assignment" +#: fortran/primary.c:502 +#, no-c-format +msgid "Missing exponent in real number at %C" msgstr "" -#: config/cris/cris.opt:90 -msgid "Do not tune stack alignment" +#: fortran/primary.c:559 +#, no-c-format +msgid "Real number at %C has a 'd' exponent and an explicit kind" msgstr "" -#: config/cris/cris.opt:99 -msgid "Do not tune writable data alignment" +#: fortran/primary.c:569 +#, no-c-format +msgid "Real number at %C has a 'q' exponent and an explicit kind" msgstr "" -#: config/cris/cris.opt:108 -msgid "Do not tune code and read-only data alignment" +#: fortran/primary.c:581 +#, no-c-format +msgid "Invalid real kind %d at %C" msgstr "" -#: config/cris/cris.opt:117 -msgid "Align code and data to 32 bits" +#: fortran/primary.c:595 +#, no-c-format +msgid "Real constant overflows its kind at %C" msgstr "" -#: config/cris/cris.opt:134 -msgid "Don't align items in code or data" +#: fortran/primary.c:600 +#, no-c-format +msgid "Real constant underflows its kind at %C" msgstr "" -#: config/cris/cris.opt:143 -msgid "Do not emit function prologue or epilogue" +#: fortran/primary.c:692 +#, no-c-format +msgid "Syntax error in SUBSTRING specification at %C" msgstr "" -#: config/cris/cris.opt:150 -msgid "Use the most feature-enabling options allowed by other options" +#: fortran/primary.c:924 +#, no-c-format +msgid "Invalid kind %d for CHARACTER constant at %C" msgstr "" -#: config/cris/cris.opt:159 -msgid "Override -mbest-lib-options" +#: fortran/primary.c:945 +#, no-c-format +msgid "Unterminated character constant beginning at %C" msgstr "" -#: config/cris/cris.opt:166 -msgid "Generate code for the specified chip or CPU version" +#: fortran/primary.c:1012 +#, no-c-format +msgid "Bad kind for logical constant at %C" msgstr "" -#: config/cris/cris.opt:170 -msgid "Tune alignment for the specified chip or CPU version" +#: fortran/primary.c:1047 +#, no-c-format +msgid "Expected PARAMETER symbol in complex constant at %C" msgstr "" -#: config/cris/cris.opt:174 -msgid "Warn when a stackframe is larger than the specified size" +#: fortran/primary.c:1053 +#, no-c-format +msgid "Numeric PARAMETER required in complex constant at %C" msgstr "" -#: config/cris/linux.opt:28 -msgid "Together with -fpic and -fPIC, do not use GOTPLT references" +#: fortran/primary.c:1059 +#, no-c-format +msgid "Scalar PARAMETER required in complex constant at %C" msgstr "" -#: config/darwin.opt:24 -msgid "Set sizeof(bool) to 1" +#: fortran/primary.c:1089 +#, no-c-format +msgid "Error converting PARAMETER constant in complex constant at %C" msgstr "" -#: config/darwin.opt:28 -msgid "Generate code suitable for fast turn around debugging" +#: fortran/primary.c:1216 +#, no-c-format +msgid "Syntax error in COMPLEX constant at %C" msgstr "" -#: config/fr30/fr30.opt:24 -msgid "Assume small address space" +#: fortran/primary.c:1382 +#, no-c-format +msgid "Keyword '%s' at %C has already appeared in the current argument list" msgstr "" -#: config/frv/frv.opt:24 -msgid "Use 4 media accumulators" +#: fortran/primary.c:1439 +#, no-c-format +msgid "Expected alternate return label at %C" msgstr "" -#: config/frv/frv.opt:28 -msgid "Use 8 media accumulators" +#: fortran/primary.c:1458 +#, no-c-format +msgid "Missing keyword name in actual argument list at %C" msgstr "" -#: config/frv/frv.opt:32 -msgid "Enable label alignment optimizations" +#: fortran/primary.c:1494 +#, no-c-format +msgid "Syntax error in argument list at %C" msgstr "" -#: config/frv/frv.opt:36 -msgid "Dynamically allocate cc registers" +#: fortran/primary.c:1581 +#, no-c-format +msgid "Expected structure component name at %C" msgstr "" -#: config/frv/frv.opt:43 -msgid "Set the cost of branches" +#: fortran/primary.c:1810 +#, no-c-format +msgid "Too many components in structure constructor at %C" msgstr "" -#: config/frv/frv.opt:47 -msgid "Enable conditional execution other than moves/scc" +#: fortran/primary.c:1825 +#, no-c-format +msgid "Too few components in structure constructor at %C" msgstr "" -#: config/frv/frv.opt:51 -msgid "Change the maximum length of conditionally-executed sequences" +#: fortran/primary.c:1843 +#, no-c-format +msgid "Syntax error in structure constructor at %C" msgstr "" -#: config/frv/frv.opt:55 -msgid "" -"Change the number of temporary registers that are available to conditionally-" -"executed sequences" +#: fortran/primary.c:1956 +#, no-c-format +msgid "Unexpected use of subroutine name '%s' at %C" msgstr "" -#: config/frv/frv.opt:59 -msgid "Enable conditional moves" +#: fortran/primary.c:1987 +#, no-c-format +msgid "Statement function '%s' requires argument list at %C" msgstr "" -#: config/frv/frv.opt:63 -msgid "Set the target CPU type" +#: fortran/primary.c:1990 +#, no-c-format +msgid "Function '%s' requires an argument list at %C" msgstr "" -#: config/frv/frv.opt:85 -msgid "Use fp double instructions" +#: fortran/primary.c:2144 +#, no-c-format +msgid "Missing argument list in function '%s' at %C" msgstr "" -#: config/frv/frv.opt:89 -msgid "Change the ABI to allow double word insns" +#: fortran/primary.c:2172 +#, no-c-format +msgid "Symbol at %C is not appropriate for an expression" msgstr "" -#: config/frv/frv.opt:93 -msgid "Enable Function Descriptor PIC mode" +#: fortran/primary.c:2242 +#, no-c-format +msgid "Expected VARIABLE at %C" msgstr "" -#: config/frv/frv.opt:97 -msgid "Just use icc0/fcc0" +#: fortran/resolve.c:82 +#, no-c-format +msgid "" +"Alternate return specifier in elemental subroutine '%s' at %L is not allowed" msgstr "" -#: config/frv/frv.opt:101 -msgid "Only use 32 FPRs" +#: fortran/resolve.c:86 +#, no-c-format +msgid "Alternate return specifier in function '%s' at %L is not allowed" msgstr "" -#: config/frv/frv.opt:105 -msgid "Use 64 FPRs" +#: fortran/resolve.c:100 +#, no-c-format +msgid "Dummy procedure '%s' of PURE procedure at %L must also be PURE" msgstr "" -#: config/frv/frv.opt:109 -msgid "Only use 32 GPRs" +#: fortran/resolve.c:108 +#, no-c-format +msgid "Dummy procedure at %L not allowed in ELEMENTAL procedure" msgstr "" -#: config/frv/frv.opt:113 -msgid "Use 64 GPRs" +#: fortran/resolve.c:162 +#, no-c-format +msgid "Argument '%s' of pure function '%s' at %L must be INTENT(IN)" msgstr "" -#: config/frv/frv.opt:117 -msgid "Enable use of GPREL for read-only data in FDPIC" +#: fortran/resolve.c:170 +#, no-c-format +msgid "" +"Argument '%s' of pure subroutine '%s' at %L must have its INTENT specified" msgstr "" -#: config/frv/frv.opt:121 config/pdp11/pdp11.opt:72 -#: config/rs6000/rs6000.opt:89 -msgid "Use hardware floating point" +#: fortran/resolve.c:181 +#, no-c-format +msgid "Argument '%s' of elemental procedure at %L must be scalar" msgstr "" -#: config/frv/frv.opt:125 -msgid "Enable inlining of PLT in function calls" +#: fortran/resolve.c:189 +#, no-c-format +msgid "" +"Argument '%s' of elemental procedure at %L cannot have the POINTER attribute" msgstr "" -#: config/frv/frv.opt:129 -msgid "Enable PIC support for building libraries" +#: fortran/resolve.c:201 +#, no-c-format +msgid "Argument '%s' of statement function at %L must be scalar" msgstr "" -#: config/frv/frv.opt:133 -msgid "Follow the EABI linkage requirements" +#: fortran/resolve.c:212 +#, no-c-format +msgid "" +"Character-valued argument '%s' of statement function at %L must has constant " +"length" msgstr "" -#: config/frv/frv.opt:137 -msgid "Disallow direct calls to global functions" +#: fortran/resolve.c:272 +#, no-c-format +msgid "Contained function '%s' at %L has no IMPLICIT type" msgstr "" -#: config/frv/frv.opt:141 -msgid "Use media instructions" +#: fortran/resolve.c:417 +#, no-c-format +msgid "FUNCTION result %s can't be an array in FUNCTION %s at %L" msgstr "" -#: config/frv/frv.opt:145 -msgid "Use multiply add/subtract instructions" +#: fortran/resolve.c:421 +#, no-c-format +msgid "ENTRY result %s can't be an array in FUNCTION %s at %L" msgstr "" -#: config/frv/frv.opt:149 -msgid "Enable optimizing &&/|| in conditional execution" +#: fortran/resolve.c:428 +#, no-c-format +msgid "FUNCTION result %s can't be a POINTER in FUNCTION %s at %L" msgstr "" -#: config/frv/frv.opt:153 -msgid "Enable nested conditional execution optimizations" +#: fortran/resolve.c:432 +#, no-c-format +msgid "ENTRY result %s can't be a POINTER in FUNCTION %s at %L" msgstr "" -#: config/frv/frv.opt:158 -msgid "Do not mark ABI switches in e_flags" +#: fortran/resolve.c:470 +#, no-c-format +msgid "FUNCTION result %s can't be of type %s in FUNCTION %s at %L" msgstr "" -#: config/frv/frv.opt:162 -msgid "Pack VLIW instructions" +#: fortran/resolve.c:475 +#, no-c-format +msgid "ENTRY result %s can't be of type %s in FUNCTION %s at %L" msgstr "" -#: config/frv/frv.opt:166 -msgid "Enable setting GPRs to the result of comparisons" +#: 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 "" -#: config/frv/frv.opt:170 -msgid "Change the amount of scheduler lookahead" +#: fortran/resolve.c:717 +#, no-c-format +msgid "Statement function '%s' at %L is not allowed as an actual argument" msgstr "" -#: config/frv/frv.opt:174 config/pa/pa.opt:105 -msgid "Use software floating point" +#: fortran/resolve.c:740 +#, no-c-format +msgid "Symbol '%s' at %L is ambiguous" msgstr "" -#: config/frv/frv.opt:178 -msgid "Assume a large TLS segment" +#: fortran/resolve.c:839 +#, no-c-format +msgid "Generic function '%s' at %L is not an intrinsic function" msgstr "" -#: config/frv/frv.opt:182 -msgid "Do not assume a large TLS segment" +#: fortran/resolve.c:849 +#, no-c-format +msgid "" +"Generic function '%s' at %L is not consistent with a specific intrinsic " +"interface" msgstr "" -#: config/frv/frv.opt:187 -msgid "Cause gas to print tomcat statistics" +#: fortran/resolve.c:887 +#, no-c-format +msgid "" +"Function '%s' at %L is INTRINSIC but is not compatible with an intrinsic" msgstr "" -#: config/frv/frv.opt:192 -msgid "Link with the library-pic libraries" +#: fortran/resolve.c:933 +#, no-c-format +msgid "Unable to resolve the specific function '%s' at %L" msgstr "" -#: config/frv/frv.opt:196 -msgid "Allow branches to be packed with other instructions" +#: fortran/resolve.c:989 fortran/resolve.c:5012 +#, no-c-format +msgid "Function '%s' at %L has no IMPLICIT type" msgstr "" -#: config/h8300/h8300.opt:24 -msgid "Generate H8S code" +#: fortran/resolve.c:1108 +#, no-c-format +msgid "Function reference to '%s' at %L is inside a FORALL block" msgstr "" -#: config/h8300/h8300.opt:28 -msgid "Generate H8SX code" +#: 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 "" -#: config/h8300/h8300.opt:32 -msgid "Generate H8S/2600 code" +#: fortran/resolve.c:1134 +#, no-c-format +msgid "Subroutine call to '%s' in FORALL block at %L is not PURE" msgstr "" -#: config/h8300/h8300.opt:36 -msgid "Make integers 32 bits wide" +#: fortran/resolve.c:1137 +#, no-c-format +msgid "Subroutine call to '%s' at %L is not PURE" msgstr "" -#: config/h8300/h8300.opt:43 -msgid "Use registers for argument passing" +#: fortran/resolve.c:1199 +#, no-c-format +msgid "Generic subroutine '%s' at %L is not an intrinsic subroutine" msgstr "" -#: config/h8300/h8300.opt:47 -msgid "Consider access to byte sized memory slow" +#: fortran/resolve.c:1208 +#, no-c-format +msgid "" +"Generic subroutine '%s' at %L is not consistent with an intrinsic subroutine " +"interface" msgstr "" -#: config/h8300/h8300.opt:51 -msgid "Enable linker relaxing" +#: fortran/resolve.c:1243 +#, no-c-format +msgid "" +"Subroutine '%s' at %L is INTRINSIC but is not compatible with an intrinsic" msgstr "" -#: config/h8300/h8300.opt:55 -msgid "Generate H8/300H code" +#: fortran/resolve.c:1286 +#, no-c-format +msgid "Unable to resolve the specific subroutine '%s' at %L" msgstr "" -#: config/h8300/h8300.opt:59 -msgid "Enable the normal mode" +#: fortran/resolve.c:1386 +#, no-c-format +msgid "Shapes for operands at %L and %L are not conformable" msgstr "" -#: config/h8300/h8300.opt:63 -msgid "Use H8/300 alignment rules" +#: fortran/resolve.c:1442 +#, c-format +msgid "Operand of unary numeric operator '%s' at %%L is %s" msgstr "" -#: config/i386/cygming.opt:24 -msgid "Create console application" +#: fortran/resolve.c:1458 +#, c-format +msgid "Operands of binary numeric operator '%s' at %%L are %s/%s" msgstr "" -#: config/i386/cygming.opt:28 -msgid "Use the Cygwin interface" +#: fortran/resolve.c:1472 +#, c-format +msgid "Operands of string concatenation operator at %%L are %s/%s" msgstr "" -#: config/i386/cygming.opt:32 -msgid "Generate code for a DLL" +#: fortran/resolve.c:1491 +#, c-format +msgid "Operands of logical operator '%s' at %%L are %s/%s" msgstr "" -#: config/i386/cygming.opt:36 -msgid "Ignore dllimport for functions" +#: fortran/resolve.c:1505 +#, c-format +msgid "Operand of .NOT. operator at %%L is %s" msgstr "" -#: config/i386/cygming.opt:40 -msgid "Use Mingw-specific thread support" +#: fortran/resolve.c:1515 +msgid "COMPLEX quantities cannot be compared at %L" msgstr "" -#: config/i386/cygming.opt:44 -msgid "Set Windows defines" +#: fortran/resolve.c:1541 +#, c-format +msgid "Logicals at %%L must be compared with %s instead of %s" msgstr "" -#: config/i386/cygming.opt:48 -msgid "Create GUI application" +#: fortran/resolve.c:1546 +#, c-format +msgid "Operands of comparison operator '%s' at %%L are %s/%s" msgstr "" -#: config/i386/djgpp.opt:26 -msgid "Ignored (obsolete)" +#: fortran/resolve.c:1554 +#, c-format +msgid "Operand of user operator '%s' at %%L is %s" msgstr "" -#: config/i386/i386.opt:24 -msgid "sizeof(long double) is 16" +#: fortran/resolve.c:1557 +#, c-format +msgid "Operands of user operator '%s' at %%L are %s/%s" msgstr "" -#: config/i386/i386.opt:28 -msgid "Generate 32bit i386 code" +#: fortran/resolve.c:1625 +#, no-c-format +msgid "Inconsistent ranks for operator at %L and %L" msgstr "" -#: config/i386/i386.opt:36 -msgid "Support 3DNow! built-in functions" +#: fortran/resolve.c:1747 +#, no-c-format +msgid "Illegal stride of zero at %L" msgstr "" -#: config/i386/i386.opt:44 -msgid "Generate 64bit x86-64 code" +#: fortran/resolve.c:1768 +#, no-c-format +msgid "Array reference at %L is out of bounds" msgstr "" -#: config/i386/i386.opt:48 config/i386/i386.opt:114 config/ns32k/ns32k.opt:28 -#: config/s390/s390.opt:52 -msgid "Use hardware fp" +#: fortran/resolve.c:1789 +#, no-c-format +msgid "Rightmost upper bound of assumed size array section not specified at %L" msgstr "" -#: config/i386/i386.opt:52 -msgid "sizeof(long double) is 12" +#: fortran/resolve.c:1799 +#, no-c-format +msgid "Rank mismatch in array reference at %L (%d/%d)" msgstr "" -#: config/i386/i386.opt:56 -msgid "Reserve space for outgoing arguments in the function prologue" +#: fortran/resolve.c:1827 +#, no-c-format +msgid "Array index at %L must be scalar" msgstr "" -#: config/i386/i386.opt:60 -msgid "Align some doubles on dword boundary" +#: fortran/resolve.c:1833 +#, no-c-format +msgid "Array index at %L must be of INTEGER type" msgstr "" -#: config/i386/i386.opt:64 -msgid "Function starts are aligned to this power of 2" +#: fortran/resolve.c:1839 +#, no-c-format +msgid "Extension: REAL array index at %L" msgstr "" -#: config/i386/i386.opt:68 -msgid "Jump targets are aligned to this power of 2" +#: fortran/resolve.c:1868 +#, no-c-format +msgid "Argument dim at %L must be scalar" msgstr "" -#: config/i386/i386.opt:72 -msgid "Loop code aligned to this power of 2" +#: fortran/resolve.c:1874 +#, no-c-format +msgid "Argument dim at %L must be of INTEGER type" msgstr "" -#: config/i386/i386.opt:76 -msgid "Align destination of the string operations" +#: fortran/resolve.c:1978 +#, no-c-format +msgid "Array index at %L is an array of rank %d" msgstr "" -#: config/i386/i386.opt:80 config/s390/s390.opt:32 -msgid "Generate code for given CPU" +#: fortran/resolve.c:2016 +#, no-c-format +msgid "Substring start index at %L must be of type INTEGER" msgstr "" -#: config/i386/i386.opt:84 -msgid "Use given assembler dialect" +#: fortran/resolve.c:2023 +#, no-c-format +msgid "Substring start index at %L must be scalar" msgstr "" -#: config/i386/i386.opt:88 -msgid "Branches are this expensive (1-5, arbitrary units)" +#: fortran/resolve.c:2030 +#, no-c-format +msgid "Substring start index at %L is less than one" msgstr "" -#: config/i386/i386.opt:92 -msgid "Use given x86-64 code model" +#: fortran/resolve.c:2043 +#, no-c-format +msgid "Substring end index at %L must be of type INTEGER" msgstr "" -#: config/i386/i386.opt:102 -msgid "Generate sin, cos, sqrt for FPU" +#: fortran/resolve.c:2050 +#, no-c-format +msgid "Substring end index at %L must be scalar" msgstr "" -#: config/i386/i386.opt:106 -msgid "Return values of functions in FPU registers" +#: fortran/resolve.c:2058 +#, no-c-format +msgid "Substring end index at %L is out of bounds" msgstr "" -#: config/i386/i386.opt:110 -msgid "Generate floating point mathematics using given instruction set" +#: 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 "" -#: config/i386/i386.opt:118 config/m68k/ieee.opt:25 config/ns32k/ns32k.opt:52 -msgid "Use IEEE math for fp comparisons" +#: fortran/resolve.c:2151 +#, no-c-format +msgid "" +"Two or more part references with nonzero rank must not be specified at %L" msgstr "" -#: config/i386/i386.opt:122 -msgid "Inline all known string operations" +#: fortran/resolve.c:2377 +#, no-c-format +msgid "%s at %L must be a scalar" msgstr "" -#: config/i386/i386.opt:130 -msgid "Support MMX built-in functions" +#: fortran/resolve.c:2385 +#, no-c-format +msgid "%s at %L must be INTEGER or REAL" msgstr "" -#: config/i386/i386.opt:134 -msgid "Use native (MS) bitfield layout" +#: fortran/resolve.c:2388 +#, no-c-format +msgid "%s at %L must be INTEGER" msgstr "" -#: config/i386/i386.opt:150 -msgid "Omit the frame pointer in leaf functions" +#: fortran/resolve.c:2404 +#, no-c-format +msgid "Obsolete: REAL DO loop iterator at %L" msgstr "" -#: config/i386/i386.opt:162 -msgid "Attempt to keep stack aligned to this power of 2" +#: fortran/resolve.c:2413 +#, no-c-format +msgid "Cannot assign to loop variable in PURE procedure at %L" msgstr "" -#: config/i386/i386.opt:166 -msgid "Use push instructions to save outgoing arguments" +#: fortran/resolve.c:2437 +#, no-c-format +msgid "Step expression in DO loop at %L cannot be zero" msgstr "" -#: config/i386/i386.opt:170 -msgid "Use red-zone in the x86-64 code" +#: fortran/resolve.c:2470 +#, no-c-format +msgid "FORALL Iteration variable at %L must be INTEGER" msgstr "" -#: config/i386/i386.opt:174 -msgid "Number of registers used to pass integer arguments" +#: fortran/resolve.c:2475 +#, no-c-format +msgid "FORALL start expression at %L must be INTEGER" msgstr "" -#: config/i386/i386.opt:178 -msgid "Alternate calling convention" +#: fortran/resolve.c:2482 +#, no-c-format +msgid "FORALL end expression at %L must be INTEGER" msgstr "" -#: config/i386/i386.opt:186 -msgid "Support MMX and SSE built-in functions and code generation" +#: fortran/resolve.c:2489 +#, no-c-format +msgid "FORALL Stride expression at %L must be INTEGER" msgstr "" -#: config/i386/i386.opt:190 -msgid "Support MMX, SSE and SSE2 built-in functions and code generation" +#: fortran/resolve.c:2563 +#, no-c-format +msgid "" +"Expression in DEALLOCATE statement at %L must be ALLOCATABLE or a POINTER" msgstr "" -#: config/i386/i386.opt:194 -msgid "Support MMX, SSE, SSE2 and SSE3 built-in functions and code generation" +#: fortran/resolve.c:2631 +#, no-c-format +msgid "Expression in ALLOCATE statement at %L must be ALLOCATABLE or a POINTER" msgstr "" -#: config/i386/i386.opt:198 -msgid "Uninitialized locals in .bss" +#: fortran/resolve.c:2643 +#, no-c-format +msgid "Array specification required in ALLOCATE statement at %L" msgstr "" -#: config/i386/i386.opt:202 -msgid "Enable stack probing" +#: fortran/resolve.c:2672 +#, no-c-format +msgid "Bad array specification in ALLOCATE statement at %L" msgstr "" -#: config/i386/i386.opt:206 -msgid "Use given thread-local storage dialect" +#. 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 "" -#: config/i386/i386.opt:210 -#, c-format -msgid "Use direct references against %gs when accessing tls data" +#: fortran/resolve.c:2879 +#, no-c-format +msgid "Expression in CASE statement at %L must be of type %s" msgstr "" -#: config/i386/i386.opt:214 config/ia64/ia64.opt:97 -#: config/rs6000/rs6000.opt:199 config/s390/s390.opt:80 -#: config/sparc/sparc.opt:96 -msgid "Schedule code for given CPU" +#: fortran/resolve.c:2890 +#, no-c-format +msgid "Expression in CASE statement at %L must be kind %d" msgstr "" -#: config/i386/sco5.opt:25 -msgid "Generate ELF output" +#: fortran/resolve.c:2902 +#, no-c-format +msgid "Expression in CASE statement at %L must be scalar" msgstr "" -#: config/i860/i860.opt:24 -msgid "Generate code which uses the FPU" +#: fortran/resolve.c:2948 +#, no-c-format +msgid "" +"Selection expression in computed GOTO statement at %L must be a scalar " +"integer expression" msgstr "" -#: config/i860/i860.opt:28 config/i860/i860.opt:32 -msgid "Do not generate code which uses the FPU" +#: fortran/resolve.c:2966 +#, no-c-format +msgid "Argument of SELECT statement at %L cannot be %s" msgstr "" -#: config/ia64/ia64.opt:3 -msgid "Generate big endian code" +#: fortran/resolve.c:2975 +#, no-c-format +msgid "Argument of SELECT statement at %L must be a scalar expression" msgstr "" -#: config/ia64/ia64.opt:7 -msgid "Generate little endian code" +#: fortran/resolve.c:3039 +#, no-c-format +msgid "" +"The DEFAULT CASE at %L cannot be followed by a second DEFAULT CASE at %L" msgstr "" -#: config/ia64/ia64.opt:11 -msgid "Generate code for GNU as" +#: fortran/resolve.c:3066 +#, no-c-format +msgid "Logical range in CASE statement at %L is not allowed" msgstr "" -#: config/ia64/ia64.opt:15 -msgid "Generate code for GNU ld" +#: fortran/resolve.c:3077 +#, no-c-format +msgid "Range specification at %L can never be matched" msgstr "" -#: config/ia64/ia64.opt:19 -msgid "Emit stop bits before and after volatile extended asms" +#: fortran/resolve.c:3180 +#, no-c-format +msgid "Logical SELECT CASE block at %L has more that two cases" msgstr "" -#: config/ia64/ia64.opt:23 -msgid "Use in/loc/out register names" +#: fortran/resolve.c:3217 +#, no-c-format +msgid "Data transfer element at %L cannot have POINTER components" msgstr "" -#: config/ia64/ia64.opt:30 -msgid "Enable use of sdata/scommon/sbss" +#: fortran/resolve.c:3224 +#, no-c-format +msgid "Data transfer element at %L cannot have PRIVATE components" msgstr "" -#: config/ia64/ia64.opt:34 -msgid "Generate code without GP reg" +#: fortran/resolve.c:3233 +#, no-c-format +msgid "" +"Data transfer element at %L cannot be a full reference to an assumed-size " +"array" msgstr "" -#: config/ia64/ia64.opt:38 -msgid "gp is constant (but save/restore gp on indirect calls)" +#: 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 "" -#: config/ia64/ia64.opt:42 -msgid "Generate self-relocatable code" +#: fortran/resolve.c:3276 +#, no-c-format +msgid "Branch at %L causes an infinite loop" msgstr "" -#: config/ia64/ia64.opt:46 -msgid "Generate inline floating point division, optimize for latency" +#. 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 "" -#: config/ia64/ia64.opt:50 -msgid "Generate inline floating point division, optimize for throughput" +#: fortran/resolve.c:3322 +#, no-c-format +msgid "Obsolete: GOTO at %L jumps to END of construct at %L" msgstr "" -#: config/ia64/ia64.opt:57 -msgid "Generate inline integer division, optimize for latency" +#: fortran/resolve.c:3396 +#, no-c-format +msgid "WHERE mask at %L has inconsistent shape" msgstr "" -#: config/ia64/ia64.opt:61 -msgid "Generate inline integer division, optimize for throughput" +#: fortran/resolve.c:3412 +#, no-c-format +msgid "WHERE assignment target at %L has inconsistent shape" msgstr "" -#: config/ia64/ia64.opt:65 -msgid "Do not inline integer division" +#: fortran/resolve.c:3422 fortran/resolve.c:3621 +#, no-c-format +msgid "Unsupported statement inside WHERE at %L" msgstr "" -#: config/ia64/ia64.opt:69 -msgid "Generate inline square root, optimize for latency" +#: fortran/resolve.c:3498 +#, no-c-format +msgid "expresion reference type error at %L" msgstr "" -#: config/ia64/ia64.opt:73 -msgid "Generate inline square root, optimize for throughput" +#: fortran/resolve.c:3530 +#, no-c-format +msgid "Unsupported statement while finding forall index in expression" msgstr "" -#: config/ia64/ia64.opt:77 -msgid "Do not inline square root" +#: fortran/resolve.c:3577 +#, no-c-format +msgid "Assignment to a FORALL index variable at %L" msgstr "" -#: config/ia64/ia64.opt:81 -msgid "Enable Dwarf 2 line debug info via GNU as" +#: fortran/resolve.c:3585 +#, no-c-format +msgid "" +"The FORALL with index '%s' cause more than one assignment to this object at %" +"L" msgstr "" -#: config/ia64/ia64.opt:85 -msgid "Enable earlier placing stop bits for better scheduling" +#: fortran/resolve.c:3712 +#, no-c-format +msgid "An outer FORALL construct already has an index with this name %L" msgstr "" -#: config/ia64/ia64.opt:89 -msgid "Specify range of registers to make fixed" +#: 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 "" -#: config/ia64/ilp32.opt:3 -msgid "Generate ILP32 code" +#: fortran/resolve.c:3773 +#, no-c-format +msgid "ELSE IF clause at %L requires a scalar LOGICAL expression" msgstr "" -#: config/ia64/ilp32.opt:7 -msgid "Generate LP64 code" +#: fortran/resolve.c:3783 +#, no-c-format +msgid "WHERE/ELSEWHERE clause at %L requires a LOGICAL array" msgstr "" -#: config/iq2000/iq2000.opt:24 -msgid "Specify CPU for code generation purposes" +#: fortran/resolve.c:3861 +#, no-c-format +msgid "ASSIGNED GOTO statement at %L requires an INTEGER variable" msgstr "" -#: config/iq2000/iq2000.opt:28 -msgid "Specify CPU for scheduling purposes" +#: fortran/resolve.c:3864 +#, no-c-format +msgid "Variable '%s' has not been assigned a target label at %L" msgstr "" -#: config/iq2000/iq2000.opt:32 config/mips/mips.opt:74 -msgid "Use ROM instead of RAM" +#: fortran/resolve.c:3874 +#, no-c-format +msgid "Alternate RETURN statement at %L requires an INTEGER return specifier" msgstr "" -#: config/iq2000/iq2000.opt:36 -msgid "Use GP relative sdata/sbss sections" +#: fortran/resolve.c:3890 +#, no-c-format +msgid "Cannot assign to variable '%s' in PURE procedure at %L" msgstr "" -#: config/iq2000/iq2000.opt:41 -msgid "No default crt0.o" +#: 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 "" -#: config/iq2000/iq2000.opt:45 config/mips/mips.opt:206 -msgid "Put uninitialized constants in ROM (needs -membedded-data)" +#: fortran/resolve.c:3919 +#, no-c-format +msgid "ASSIGN statement at %L requires a scalar default INTEGER variable" msgstr "" -#: config/lynx.opt:24 -msgid "Support legacy multi-threading" +#: fortran/resolve.c:3934 +#, no-c-format +msgid "Arithmetic IF statement at %L requires a numeric expression" msgstr "" -#: config/lynx.opt:28 -msgid "Use shared libraries" +#: fortran/resolve.c:3946 +#, no-c-format +msgid "IF clause at %L requires a scalar LOGICAL expression" msgstr "" -#: config/lynx.opt:32 -msgid "Support multi-threading" +#: fortran/resolve.c:3972 +#, no-c-format +msgid "" +"Exit condition of DO WHILE loop at %L must be a scalar LOGICAL expression" msgstr "" -#: config/m32r/m32r.opt:24 -msgid "Compile for the m32rx" +#: fortran/resolve.c:3979 +#, no-c-format +msgid "STAT tag in ALLOCATE statement at %L must be of type INTEGER" msgstr "" -#: config/m32r/m32r.opt:28 -msgid "Compile for the m32r2" +#: fortran/resolve.c:3991 +#, no-c-format +msgid "STAT tag in DEALLOCATE statement at %L must be of type INTEGER" msgstr "" -#: config/m32r/m32r.opt:32 -msgid "Compile for the m32r" +#: fortran/resolve.c:4057 +#, no-c-format +msgid "FORALL mask clause at %L requires a LOGICAL expression" msgstr "" -#: config/m32r/m32r.opt:36 -msgid "Align all loops to 32 byte boundary" +#: fortran/resolve.c:4177 +#, no-c-format +msgid "Assumed size array at %L must be a dummy argument" msgstr "" -#: config/m32r/m32r.opt:40 -msgid "Prefer branches over conditional execution" +#: fortran/resolve.c:4180 +#, no-c-format +msgid "Assumed shape array at %L must be a dummy argument" msgstr "" -#: config/m32r/m32r.opt:44 -msgid "Give branches their default cost" +#: fortran/resolve.c:4190 +#, no-c-format +msgid "Parameter array '%s' at %L cannot be automatic or assumed shape" msgstr "" -#: config/m32r/m32r.opt:48 -msgid "Display compile time statistics" +#: fortran/resolve.c:4202 +#, no-c-format +msgid "" +"Entity with assumed character length at %L must be a dummy argument or a " +"PARAMETER" msgstr "" -#: config/m32r/m32r.opt:52 -msgid "Specify cache flush function" +#: fortran/resolve.c:4214 +#, no-c-format +msgid "" +"Implicitly typed PARAMETER '%s' at %L doesn't match a later IMPLICIT type" msgstr "" -#: config/m32r/m32r.opt:56 -msgid "Specify cache flush trap number" +#: fortran/resolve.c:4224 +#, no-c-format +msgid "Incompatible derived type in PARAMETER at %L" msgstr "" -#: config/m32r/m32r.opt:60 -msgid "Only issue one instruction per cycle" +#: fortran/resolve.c:4235 +#, no-c-format +msgid "Symbol at %L is not a DUMMY variable" msgstr "" -#: config/m32r/m32r.opt:64 -msgid "Allow two instructions to be issued per cycle" +#: fortran/resolve.c:4246 +#, no-c-format +msgid "" +"Character-valued statement function '%s' at %L must have constant length" msgstr "" -#: config/m32r/m32r.opt:68 -msgid "Code size: small, medium or large" +#: fortran/resolve.c:4263 +#, no-c-format +msgid "Allocatable array at %L must have a deferred shape" msgstr "" -#: config/m32r/m32r.opt:72 -msgid "Don't call any cache flush functions" +#: fortran/resolve.c:4266 +#, no-c-format +msgid "Object at %L may not be ALLOCATABLE" msgstr "" -#: config/m32r/m32r.opt:76 -msgid "Don't call any cache flush trap" +#: fortran/resolve.c:4273 +#, no-c-format +msgid "Pointer to array at %L must have a deferred shape" msgstr "" -#: config/m32r/m32r.opt:83 -msgid "Small data area: none, sdata, use" +#: fortran/resolve.c:4284 +#, no-c-format +msgid "Array at %L cannot have a deferred shape" msgstr "" -#: config/m68hc11/m68hc11.opt:24 config/m68hc11/m68hc11.opt:32 -msgid "Compile for a 68HC11" +#: fortran/resolve.c:4297 +msgid "Allocatable" msgstr "" -#: config/m68hc11/m68hc11.opt:28 config/m68hc11/m68hc11.opt:36 -msgid "Compile for a 68HC12" +#: fortran/resolve.c:4299 +msgid "External" msgstr "" -#: config/m68hc11/m68hc11.opt:42 config/m68hc11/m68hc11.opt:46 -msgid "Compile for a 68HCS12" +#: fortran/resolve.c:4301 +msgid "Dummy" msgstr "" -#: config/m68hc11/m68hc11.opt:50 -msgid "Auto pre/post decrement increment allowed" +#: fortran/resolve.c:4303 +msgid "Intrinsic" msgstr "" -#: config/m68hc11/m68hc11.opt:54 -msgid "Min/max instructions allowed" +#: fortran/resolve.c:4305 +msgid "Function Result" msgstr "" -#: config/m68hc11/m68hc11.opt:58 -msgid "Use call and rtc for function calls and returns" +#: fortran/resolve.c:4316 +msgid "Automatic array" msgstr "" -#: config/m68hc11/m68hc11.opt:62 -msgid "Auto pre/post decrement increment not allowed" +#: fortran/resolve.c:4325 +#, no-c-format +msgid "%s '%s' at %L cannot have an initializer" msgstr "" -#: config/m68hc11/m68hc11.opt:66 -msgid "Use jsr and rts for function calls and returns" +#: fortran/resolve.c:4343 +#, no-c-format +msgid "PRIVATE symbol '%s' cannot be member of PUBLIC namelist at %L" msgstr "" -#: config/m68hc11/m68hc11.opt:70 -msgid "Min/max instructions not allowed" +#: fortran/resolve.c:4359 +#, no-c-format +msgid "Intrinsic at %L does not exist" msgstr "" -#: config/m68hc11/m68hc11.opt:74 -msgid "Use direct addressing mode for soft registers" +#: fortran/resolve.c:4471 +#, no-c-format +msgid "Nonconstant array section at %L in DATA statement" msgstr "" -#: config/m68hc11/m68hc11.opt:78 -msgid "Compile with 32-bit integer mode" +#: fortran/resolve.c:4484 +#, no-c-format +msgid "DATA statement at %L has more variables than values" msgstr "" -#: config/m68hc11/m68hc11.opt:83 -msgid "Specify the register allocation order" +#: fortran/resolve.c:4682 +#, no-c-format +msgid "DATA statement at %L has more values than variables" msgstr "" -#: config/m68hc11/m68hc11.opt:87 -msgid "Do not use direct addressing mode for soft registers" +#: fortran/resolve.c:4764 +#, no-c-format +msgid "Label %d at %L defined but not used" msgstr "" -#: config/m68hc11/m68hc11.opt:91 -msgid "Compile with 16-bit integer mode" +#: fortran/resolve.c:4769 +#, no-c-format +msgid "Label %d at %L defined but cannot be used" msgstr "" -#: config/m68hc11/m68hc11.opt:95 -msgid "Indicate the number of soft registers available" +#: fortran/resolve.c:4794 +#, no-c-format +msgid "" +"Derived type variable '%s' at %L must have SEQUENCE attribute to be an " +"EQUIVALENCE object" msgstr "" -#: config/m68k/m68k.opt:24 -msgid "Generate code for a 520X" +#: fortran/resolve.c:4809 +#, no-c-format +msgid "" +"Derived type variable '%s' at %L has pointer componet(s) cannot be an " +"EQUIVALENCE object" msgstr "" -#: config/m68k/m68k.opt:28 -msgid "Generate code for a 5206e" +#: fortran/resolve.c:4894 +#, no-c-format +msgid "Syntax error in EQUIVALENCE statement at %L" msgstr "" -#: config/m68k/m68k.opt:32 -msgid "Generate code for a 528x" +#: fortran/resolve.c:4908 +#, no-c-format +msgid "Dummy argument '%s' at %L cannot be an EQUIVALENCE object" msgstr "" -#: config/m68k/m68k.opt:36 -msgid "Generate code for a 5307" +#: fortran/resolve.c:4916 +#, no-c-format +msgid "Allocatable array '%s' at %L cannot be an EQUIVALENCE object" msgstr "" -#: config/m68k/m68k.opt:40 -msgid "Generate code for a 5407" +#: fortran/resolve.c:4924 +#, no-c-format +msgid "Pointer '%s' at %L cannot be an EQUIVALENCE object" msgstr "" -#: config/m68k/m68k.opt:44 config/m68k/m68k.opt:97 -msgid "Generate code for a 68000" +#: fortran/resolve.c:4933 +#, no-c-format +msgid "Entity '%s' at %L cannot be an EQUIVALENCE object" msgstr "" -#: config/m68k/m68k.opt:48 config/m68k/m68k.opt:101 -msgid "Generate code for a 68020" +#: fortran/resolve.c:4941 +#, no-c-format +msgid "Named constant '%s' at %L cannot be an EQUIVALENCE object" msgstr "" -#: config/m68k/m68k.opt:52 -msgid "Generate code for a 68040, without any new instructions" +#: fortran/resolve.c:4957 +#, no-c-format +msgid "" +"Array '%s' at %L with non-constant bounds cannot be an EQUIVALENCE object" msgstr "" -#: config/m68k/m68k.opt:56 -msgid "Generate code for a 68060, without any new instructions" +#: fortran/resolve.c:4968 +#, no-c-format +msgid "Structure component '%s' at %L cannot be an EQUIVALENCE object" msgstr "" -#: config/m68k/m68k.opt:60 -msgid "Generate code for a 68030" +#: fortran/resolve.c:4979 +#, no-c-format +msgid "Substring at %L has length zero" msgstr "" -#: config/m68k/m68k.opt:64 -msgid "Generate code for a 68040" +#: fortran/resolve.c:5025 +#, no-c-format +msgid "ENTRY '%s' at %L has no IMPLICIT type" msgstr "" -#: config/m68k/m68k.opt:68 -msgid "Generate code for a 68060" +#: fortran/resolve.c:5061 +#, no-c-format +msgid "Contained procedure '%s' at %L of a PURE procedure must also be PURE" msgstr "" -#: config/m68k/m68k.opt:72 -msgid "Generate code for a 68302" +#: fortran/scanner.c:924 +#, no-c-format +msgid "%s:%d: file %s left but not entered" msgstr "" -#: config/m68k/m68k.opt:76 -msgid "Generate code for a 68332" +#: fortran/scanner.c:947 +#, no-c-format +msgid "%s:%d: Illegal preprocessor directive" msgstr "" -#: config/m68k/m68k.opt:81 -msgid "Generate code for a 68851" +#: fortran/scanner.c:1022 +#, no-c-format +msgid "File '%s' is being included recursively" msgstr "" -#: config/m68k/m68k.opt:85 -msgid "Generate code that uses 68881 floating-point instructions" +#: fortran/scanner.c:1031 +#, no-c-format +msgid "Can't open file '%s'" msgstr "" -#: config/m68k/m68k.opt:89 -msgid "Align variables on a 32-bit boundary" +#: fortran/scanner.c:1040 +#, no-c-format +msgid "Can't open included file '%s'" msgstr "" -#: config/m68k/m68k.opt:93 -msgid "Use the bit-field instructions" +#: fortran/scanner.c:1129 +#, c-format +msgid "%s:%3d %s\n" msgstr "" -#: config/m68k/m68k.opt:105 -msgid "Generate code for a cpu32" +#: fortran/simplify.c:101 +#, no-c-format +msgid "Result of %s overflows its kind at %L" msgstr "" -#: config/m68k/m68k.opt:109 -msgid "Enable ID based shared library" +#: fortran/simplify.c:120 +#, no-c-format +msgid "KIND parameter of %s at %L must be an initialization expression" msgstr "" -#: config/m68k/m68k.opt:113 -msgid "Do not use the bit-field instructions" +#: fortran/simplify.c:130 +#, no-c-format +msgid "Invalid KIND parameter of %s at %L" msgstr "" -#: config/m68k/m68k.opt:117 -msgid "Use normal calling convention" +#: fortran/simplify.c:227 +#, no-c-format +msgid "" +"Extended ASCII not implemented: argument of ACHAR at %L must be between 0 " +"and 127" msgstr "" -#: config/m68k/m68k.opt:121 -msgid "Consider type 'int' to be 32 bits wide" +#: fortran/simplify.c:254 +#, no-c-format +msgid "Argument of ACOS at %L must be between -1 and 1" msgstr "" -#: config/m68k/m68k.opt:125 -msgid "Generate pc-relative code" +#: fortran/simplify.c:276 +#, no-c-format +msgid "Argument of ACOSH at %L must not be less than 1" msgstr "" -#: config/m68k/m68k.opt:129 -msgid "Use different calling convention using 'rtd'" +#: fortran/simplify.c:477 +#, no-c-format +msgid "Argument of ASIN at %L must be between -1 and 1" msgstr "" -#: config/m68k/m68k.opt:133 -msgid "Enable separate data segment" +#: fortran/simplify.c:533 +#, no-c-format +msgid "Argument of ATANH at %L must be inside the range -1 to 1" msgstr "" -#: config/m68k/m68k.opt:141 -msgid "Consider type 'int' to be 16 bits wide" +#: 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 "" -#: config/m68k/m68k.opt:145 -msgid "Generate code with library calls for floating point" +#: fortran/simplify.c:641 +#, no-c-format +msgid "Bad character in CHAR function at %L" msgstr "" -#: config/m68k/m68k.opt:149 -msgid "Do not use unaligned memory references" +#: fortran/simplify.c:1139 +#, no-c-format +msgid "Argument of IACHAR at %L must be of length one" msgstr "" -#: config/mcore/mcore.opt:24 -msgid "Generate code for the M*Core M210" +#: fortran/simplify.c:1179 +#, no-c-format +msgid "Invalid second argument of IBCLR at %L" msgstr "" -#: config/mcore/mcore.opt:28 -msgid "Generate code for the M*Core M340" +#: fortran/simplify.c:1187 +#, no-c-format +msgid "Second argument of IBCLR exceeds bit size at %L" msgstr "" -#: config/mcore/mcore.opt:32 -msgid "Set maximum alignment to 4" +#: fortran/simplify.c:1214 +#, no-c-format +msgid "Invalid second argument of IBITS at %L" msgstr "" -#: config/mcore/mcore.opt:36 -msgid "Force functions to be aligned to a 4 byte boundary" +#: fortran/simplify.c:1220 +#, no-c-format +msgid "Invalid third argument of IBITS at %L" msgstr "" -#: config/mcore/mcore.opt:40 -msgid "Set maximum alignment to 8" +#: fortran/simplify.c:1231 +#, no-c-format +msgid "Sum of second and third arguments of IBITS exceeds bit size at %L" msgstr "" -#: config/mcore/mcore.opt:44 -msgid "Generate big-endian code" +#: fortran/simplify.c:1279 +#, no-c-format +msgid "Invalid second argument of IBSET at %L" msgstr "" -#: config/mcore/mcore.opt:48 -msgid "Emit call graph information" +#: fortran/simplify.c:1287 +#, no-c-format +msgid "Second argument of IBSET exceeds bit size at %L" msgstr "" -#: config/mcore/mcore.opt:52 -msgid "Use the divide instruction" +#: fortran/simplify.c:1310 +#, no-c-format +msgid "Argument of ICHAR at %L must be of length one" msgstr "" -#: config/mcore/mcore.opt:56 -msgid "Inline constants if it can be done in 2 insns or less" +#: fortran/simplify.c:1318 +#, no-c-format +msgid "Argument of ICHAR at %L out of range of this processor" msgstr "" -#: config/mcore/mcore.opt:60 -msgid "Generate little-endian code" +#: fortran/simplify.c:1526 +#, no-c-format +msgid "Argument of INT at %L is not a valid type" msgstr "" -#: config/mcore/mcore.opt:68 -msgid "Use arbitrary sized immediates in bit operations" +#: fortran/simplify.c:1603 +#, no-c-format +msgid "Invalid second argument of ISHFT at %L" msgstr "" -#: config/mcore/mcore.opt:72 -msgid "Prefer word accesses over byte accesses" +#: fortran/simplify.c:1619 +#, no-c-format +msgid "Magnitude of second argument of ISHFT exceeds bit size at %L" msgstr "" -#: config/mcore/mcore.opt:76 -msgid "Set the maximum amount for a single stack increment operation" +#: fortran/simplify.c:1683 +#, no-c-format +msgid "Invalid second argument of ISHFTC at %L" msgstr "" -#: config/mcore/mcore.opt:80 -msgid "Always treat bitfields as int-sized" +#: fortran/simplify.c:1693 +#, no-c-format +msgid "Invalid third argument of ISHFTC at %L" msgstr "" -#: config/mips/mips.opt:24 -msgid "Generate code that conforms to the given ABI" +#: fortran/simplify.c:1708 +#, no-c-format +msgid "Magnitude of second argument of ISHFTC exceeds third argument at %L" msgstr "" -#: config/mips/mips.opt:28 -msgid "Use SVR4-style PIC" +#: fortran/simplify.c:1778 +#, no-c-format +msgid "Argument of KIND at %L is a DERIVED type" msgstr "" -#: config/mips/mips.opt:32 -msgid "Use PMC-style 'mad' instructions" +#: fortran/simplify.c:1849 +#, no-c-format +msgid "DIM argument at %L is out of bounds" msgstr "" -#: config/mips/mips.opt:36 -msgid "Generate code for the given ISA" +#: fortran/simplify.c:1979 +#, no-c-format +msgid "Argument of LOG at %L cannot be less than or equal to zero" msgstr "" -#: config/mips/mips.opt:40 -msgid "Use Branch Likely instructions, overriding the architecture default" +#: fortran/simplify.c:1992 +#, no-c-format +msgid "Complex argument of LOG at %L cannot be zero" msgstr "" -#: config/mips/mips.opt:44 -msgid "Trap on integer divide by zero" +#: fortran/simplify.c:2036 +#, no-c-format +msgid "Argument of LOG10 at %L cannot be less than or equal to zero" msgstr "" -#: config/mips/mips.opt:48 -msgid "Use branch-and-break sequences to check for integer divide by zero" +#. Result is processor-dependent. +#: fortran/simplify.c:2211 +#, no-c-format +msgid "Second argument MOD at %L is zero" msgstr "" -#: config/mips/mips.opt:52 -msgid "Use trap instructions to check for integer divide by zero" +#. Result is processor-dependent. +#: fortran/simplify.c:2222 +#, no-c-format +msgid "Second argument of MOD at %L is zero" msgstr "" -#: config/mips/mips.opt:56 -msgid "" -"Allow hardware floating-point instructions to cover both 32-bit and 64-bit " -"operations" +#. 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 "" -#: config/mips/mips.opt:66 -msgid "Use big-endian byte order" +#: fortran/simplify.c:2337 +#, no-c-format +msgid "Second argument of NEAREST at %L may not be zero" msgstr "" -#: config/mips/mips.opt:70 -msgid "Use little-endian byte order" +#: fortran/simplify.c:2605 +#, no-c-format +msgid "Invalid second argument of REPEAT at %L" msgstr "" -#: config/mips/mips.opt:78 -msgid "Use NewABI-style %reloc() assembly operators" +#: fortran/simplify.c:2679 +#, no-c-format +msgid "Integer too large in shape specification at %L" msgstr "" -#: config/mips/mips.opt:82 -msgid "Work around certain R4000 errata" +#: fortran/simplify.c:2689 +#, no-c-format +msgid "Too many dimensions in shape specification for RESHAPE at %L" msgstr "" -#: config/mips/mips.opt:86 -msgid "Work around certain R4400 errata" +#: fortran/simplify.c:2697 +#, no-c-format +msgid "Shape specification at %L cannot be negative" msgstr "" -#: config/mips/mips.opt:90 -msgid "Work around errata for early SB-1 revision 2 cores" +#: fortran/simplify.c:2707 +#, no-c-format +msgid "Shape specification at %L cannot be the null array" msgstr "" -#: config/mips/mips.opt:94 -msgid "Work around certain VR4120 errata" +#: fortran/simplify.c:2731 +#, no-c-format +msgid "" +"ORDER parameter of RESHAPE at %L is not the same size as SHAPE parameter" msgstr "" -#: config/mips/mips.opt:98 -msgid "Work around VR4130 mflo/mfhi errata" +#: fortran/simplify.c:2738 +#, no-c-format +msgid "Error in ORDER parameter of RESHAPE at %L" msgstr "" -#: config/mips/mips.opt:102 -msgid "Work around an early 4300 hardware bug" +#: fortran/simplify.c:2748 +#, no-c-format +msgid "ORDER parameter of RESHAPE at %L is out of range" msgstr "" -#: config/mips/mips.opt:106 -msgid "FP exceptions are enabled" +#: fortran/simplify.c:2757 +#, no-c-format +msgid "Invalid permutation in ORDER parameter at %L" msgstr "" -#: config/mips/mips.opt:110 -msgid "Use 32-bit floating-point registers" +#: fortran/simplify.c:2814 +#, no-c-format +msgid "PAD parameter required for short SOURCE parameter at %L" msgstr "" -#: config/mips/mips.opt:114 -msgid "Use 64-bit floating-point registers" +#: fortran/simplify.c:2948 +#, no-c-format +msgid "Result of SCALE overflows its kind at %L" msgstr "" -#: config/mips/mips.opt:118 -msgid "Use FUNC to flush the cache before calling stack trampolines" +#: fortran/simplify.c:3529 +#, no-c-format +msgid "Argument of SQRT at %L has a negative value" msgstr "" -#: config/mips/mips.opt:122 -msgid "Generate floating-point multiply-add instructions" +#: fortran/symbol.c:111 +#, no-c-format +msgid "Duplicate IMPLICIT NONE statement at %C" msgstr "" -#: config/mips/mips.opt:126 -msgid "Use 32-bit general registers" +#: fortran/symbol.c:151 +#, no-c-format +msgid "Letter '%c' already set in IMPLICIT statement at %C" msgstr "" -#: config/mips/mips.opt:130 -msgid "Use 64-bit general registers" +#: fortran/symbol.c:173 +#, no-c-format +msgid "Cannot specify IMPLICIT at %C after IMPLICIT NONE" msgstr "" -#: config/mips/mips.opt:134 -msgid "Allow the use of hardware floating-point instructions" +#: fortran/symbol.c:184 +#, no-c-format +msgid "Letter %c already has an IMPLICIT type at %C" msgstr "" -#: config/mips/mips.opt:138 -msgid "Generate code for ISA level N" +#: fortran/symbol.c:232 +#, no-c-format +msgid "Symbol '%s' at %L has no IMPLICIT type" msgstr "" -#: config/mips/mips.opt:142 -msgid "Generate mips16 code" +#: fortran/symbol.c:300 +#, no-c-format +msgid "%s attribute not allowed in BLOCK DATA program unit at %L" msgstr "" -#: config/mips/mips.opt:146 -msgid "Use MIPS-3D instructions" +#: fortran/symbol.c:448 fortran/symbol.c:878 +#, no-c-format +msgid "%s attribute conflicts with %s attribute at %L" msgstr "" -#: config/mips/mips.opt:150 -msgid "Use indirect calls" +#: fortran/symbol.c:451 +#, no-c-format +msgid "%s attribute conflicts with %s attribute in '%s' at %L" msgstr "" -#: config/mips/mips.opt:154 -msgid "Use a 32-bit long type" +#: fortran/symbol.c:493 +#, no-c-format +msgid "Cannot change attributes of USE-associated symbol at %L" msgstr "" -#: config/mips/mips.opt:158 -msgid "Use a 64-bit long type" +#: fortran/symbol.c:496 +#, no-c-format +msgid "Cannot change attributes of USE-associated symbol %s at %L" msgstr "" -#: config/mips/mips.opt:162 -msgid "Don't optimize block moves" +#: fortran/symbol.c:518 +#, no-c-format +msgid "Cannot change attributes of symbol at %L after it has been used" msgstr "" -#: config/mips/mips.opt:166 -msgid "Use the mips-tfile postpass" +#: fortran/symbol.c:534 +#, no-c-format +msgid "Duplicate %s attribute specified at %L" msgstr "" -#: config/mips/mips.opt:170 -msgid "Do not use a cache-flushing function before calling stack trampolines" +#: fortran/symbol.c:664 +#, no-c-format +msgid "SAVE attribute at %L cannot be specified in a PURE procedure" msgstr "" -#: config/mips/mips.opt:174 -msgid "Generate normal-mode code" +#: fortran/symbol.c:908 +#, no-c-format +msgid "%s procedure at %L is already declared as %s procedure" msgstr "" -#: config/mips/mips.opt:178 -msgid "Do not use MIPS-3D instructions" +#: fortran/symbol.c:943 +#, no-c-format +msgid "INTENT (%s) conflicts with INTENT(%s) at %L" msgstr "" -#: config/mips/mips.opt:182 -msgid "Use paired-single floating-point instructions" +#: fortran/symbol.c:966 +#, no-c-format +msgid "ACCESS specification at %L was already specified" msgstr "" -#: config/mips/mips.opt:186 -msgid "" -"Restrict the use of hardware floating-point instructions to 32-bit operations" +#: fortran/symbol.c:986 +#, no-c-format +msgid "Symbol '%s' at %L already has an explicit interface" msgstr "" -#: config/mips/mips.opt:190 -msgid "Prevent the use of all hardware floating-point instructions" +#: fortran/symbol.c:1014 +#, no-c-format +msgid "Symbol '%s' at %L already has basic type of %s" msgstr "" -#: config/mips/mips.opt:194 -msgid "Optimize lui/addiu address loads" +#: fortran/symbol.c:1026 +#, no-c-format +msgid "Symbol '%s' at %L cannot have a type" msgstr "" -#: config/mips/mips.opt:198 -msgid "Assume all symbols have 32-bit values" +#: fortran/symbol.c:1159 +#, no-c-format +msgid "Component '%s' at %C already declared at %L" msgstr "" -#: config/mips/mips.opt:202 -msgid "Optimize the output for PROCESSOR" +#: fortran/symbol.c:1237 +#, no-c-format +msgid "Symbol '%s' at %C is ambiguous" msgstr "" -#: config/mips/mips.opt:210 -msgid "Perform VR4130-specific alignment optimizations" +#: fortran/symbol.c:1277 +#, no-c-format +msgid "Derived type '%s' at %C is being used before it is defined" msgstr "" -#: config/mips/mips.opt:214 -msgid "Lift restrictions on GOT size" +#: fortran/symbol.c:1305 +#, no-c-format +msgid "'%s' at %C is not a member of the '%s' structure" msgstr "" -#: config/mmix/mmix.opt:25 -msgid "For intrinsics library: pass all parameters in registers" +#: fortran/symbol.c:1311 +#, no-c-format +msgid "Component '%s' at %C is a PRIVATE component of '%s'" msgstr "" -#: config/mmix/mmix.opt:29 -msgid "Use register stack for parameters and return value" +#: fortran/symbol.c:1451 +#, no-c-format +msgid "Duplicate statement label %d at %L and %L" msgstr "" -#: config/mmix/mmix.opt:33 -msgid "Use call-clobbered registers for parameters and return value" +#: fortran/symbol.c:1461 +#, no-c-format +msgid "Label %d at %C already referenced as branch target" msgstr "" -#: config/mmix/mmix.opt:38 -msgid "Use epsilon-respecting floating point compare instructions" +#: fortran/symbol.c:1470 +#, no-c-format +msgid "Label %d at %C already referenced as a format label" msgstr "" -#: config/mmix/mmix.opt:42 -msgid "Use zero-extending memory loads, not sign-extending ones" +#: fortran/symbol.c:1512 +#, no-c-format +msgid "Label %d at %C previously used as a FORMAT label" msgstr "" -#: config/mmix/mmix.opt:46 -msgid "" -"Generate divide results with reminder having the same sign as the divisor " -"(not the dividend)" +#: fortran/symbol.c:1520 +#, no-c-format +msgid "Label %d at %C previously used as branch target" msgstr "" -#: config/mmix/mmix.opt:50 -msgid "Prepend global symbols with \":\" (for use with PREFIX)" +#: fortran/symbol.c:1773 +#, no-c-format +msgid "Name '%s' at %C is an ambiguous reference to '%s' from module '%s'" msgstr "" -#: config/mmix/mmix.opt:54 -msgid "Do not provide a default start-address 0x100 of the program" +#: fortran/symbol.c:1776 +#, no-c-format +msgid "" +"Name '%s' at %C is an ambiguous reference to '%s' from current program unit" msgstr "" -#: config/mmix/mmix.opt:58 -msgid "Link to emit program in ELF format (rather than mmo)" +#. Symbol is from another namespace. +#: fortran/symbol.c:1913 +#, no-c-format +msgid "Symbol '%s' at %C has already been host associated" msgstr "" -#: config/mmix/mmix.opt:62 -msgid "Use P-mnemonics for branches statically predicted as taken" +#: fortran/trans-common.c:330 +#, no-c-format +msgid "Named COMMON block '%s' at %L shall be of the same size" msgstr "" -#: config/mmix/mmix.opt:66 -msgid "Don't use P-mnemonics for branches" +#: fortran/trans-common.c:593 +#, no-c-format +msgid "Bad array reference at %L" msgstr "" -#: config/mmix/mmix.opt:80 -msgid "Use addresses that allocate global registers" +#: fortran/trans-common.c:601 +#, no-c-format +msgid "Illegal reference type at %L as EQUIVALENCE object" msgstr "" -#: config/mmix/mmix.opt:84 -msgid "Do not use addresses that allocate global registers" +#: fortran/trans-common.c:641 +#, no-c-format +msgid "Inconsistent equivalence rules involving '%s' at %L and '%s' at %L" msgstr "" -#: config/mmix/mmix.opt:88 -msgid "Generate a single exit point for each function" +#. 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 "" -#: config/mmix/mmix.opt:92 -msgid "Do not generate a single exit point for each function" +#: fortran/trans-common.c:828 +#, no-c-format +msgid "Equivalence for '%s' does not match ordering of COMMON '%s' at %L" msgstr "" -#: config/mmix/mmix.opt:96 -msgid "Set start-address of the program" +#: fortran/trans-common.c:843 +#, no-c-format +msgid "" +"The equivalence set for '%s' cause an invalid extension to COMMON '%s' at %L" msgstr "" -#: config/mmix/mmix.opt:100 -msgid "Set start-address of data" +#. 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 "" -#: config/mn10300/mn10300.opt:24 -msgid "Target the AM33 processor" +#: fortran/trans-common.c:880 +#, no-c-format +msgid "COMMON '%s' at %L requires %d bytes of padding at start" msgstr "" -#: config/mn10300/mn10300.opt:28 -msgid "Target the AM33/2.0 processor" +#: fortran/trans-const.c:158 +msgid "Array bound mismatch" msgstr "" -#: config/mn10300/mn10300.opt:32 -msgid "Work around hardware multiply bug" +#: fortran/trans-const.c:161 +msgid "Array reference out of bounds" msgstr "" -#: config/mn10300/mn10300.opt:37 -msgid "Enable linker relaxations" +#: fortran/trans-const.c:164 +msgid "Incorrect function return value" msgstr "" -#: config/ns32k/ns32k.opt:24 -msgid "Optimize for 32032" +#: fortran/trans-decl.c:390 +#, no-c-format +msgid "storage size not known" msgstr "" -#: config/ns32k/ns32k.opt:32 -msgid "Optimize for 32332" +#: fortran/trans-decl.c:397 +#, no-c-format +msgid "storage size not constant" msgstr "" -#: config/ns32k/ns32k.opt:36 -msgid "Use the 32381 fpu" +#: fortran/trans-io.c:466 +msgid "Assigned label is not a format label" msgstr "" -#: config/ns32k/ns32k.opt:40 -msgid "Optimize for 32532" +#: fortran/trans-io.c:866 +#, no-c-format +msgid "INQUIRE statement at %L cannot contain both FILE and UNIT specifiers." msgstr "" -#: config/ns32k/ns32k.opt:44 -msgid "Use bit-field instructions" +#: fortran/trans-stmt.c:160 +msgid "Assigned label is not a target label" msgstr "" -#: config/ns32k/ns32k.opt:48 -msgid "Generate code for high memory" +#. Check the label list. +#: fortran/trans-stmt.c:176 +msgid "Assigned label is not in the list" msgstr "" -#: config/ns32k/ns32k.opt:56 -msgid "Use multiply-accumulate fp instructions" +#: fortran/trans-stmt.c:262 +#, no-c-format +msgid "An alternate return at %L without a * dummy argument" msgstr "" -#: config/ns32k/ns32k.opt:60 -msgid "Do not use bit-field instructions" +#. FIXME: i18n bug here. Order of prints should not be +#. fixed. +#: java/gjavah.c:910 +#, c-format +msgid "ignored method '" msgstr "" -#: config/ns32k/ns32k.opt:64 -msgid "Generate code for low memory" +#: java/gjavah.c:912 +#, c-format +msgid "' marked virtual\n" msgstr "" -#: config/ns32k/ns32k.opt:68 -msgid "Do not use IEEE math for fp comparisons" +#: java/gjavah.c:2350 +#, c-format +msgid "Try '" msgstr "" -#: config/ns32k/ns32k.opt:72 -msgid "Do not use multiply-accumulate fp instructions" +#: java/gjavah.c:2350 +#, c-format +msgid " --help' for more information.\n" msgstr "" -#: config/ns32k/ns32k.opt:76 -msgid "Pass all arguments on the stack" +#: java/gjavah.c:2357 +#, c-format +msgid "Usage: " msgstr "" -#: config/ns32k/ns32k.opt:80 -msgid "Use the normal calling convention" +#: java/gjavah.c:2357 +#, c-format +msgid "" +" [OPTION]... CLASS...\n" +"\n" msgstr "" -#: config/ns32k/ns32k.opt:84 -msgid "Do not use register sb" +#: java/gjavah.c:2358 +#, c-format +msgid "" +"Generate C or C++ header files from .class files\n" +"\n" msgstr "" -#: config/ns32k/ns32k.opt:88 -msgid "Do not use the 'small register classes' kludge" +#: java/gjavah.c:2359 +#, c-format +msgid " -stubs Generate an implementation stub file\n" msgstr "" -#: config/ns32k/ns32k.opt:92 -msgid "Pass some arguments in registers" +#: java/gjavah.c:2360 +#, c-format +msgid " -jni Generate a JNI header or stub\n" msgstr "" -#: config/ns32k/ns32k.opt:96 -msgid "Use an alternative calling convention" +#: java/gjavah.c:2361 +#, c-format +msgid " -force Always overwrite output files\n" msgstr "" -#: config/ns32k/ns32k.opt:100 -msgid "Register sb is zero, use it for absolute addressing" +#: java/gjavah.c:2362 +#, c-format +msgid " -old Unused compatibility option\n" msgstr "" -#: config/ns32k/ns32k.opt:108 -msgid "Use the 'small register classes' kludge" +#: java/gjavah.c:2363 +#, c-format +msgid " -trace Unused compatibility option\n" msgstr "" -#: config/pa/pa-hpux.opt:24 -msgid "Generate cpp defines for server IO" +#: java/gjavah.c:2364 +#, c-format +msgid " -J OPTION Unused compatibility option\n" msgstr "" -#: config/pa/pa-hpux.opt:28 config/pa/pa-hpux1010.opt:24 -#: config/pa/pa-hpux1111.opt:24 -msgid "Specify UNIX standard for predefines and linking" +#: java/gjavah.c:2366 +#, c-format +msgid " -add TEXT Insert TEXT into class body\n" msgstr "" -#: config/pa/pa-hpux.opt:32 -msgid "Generate cpp defines for workstation IO" +#: java/gjavah.c:2367 +#, c-format +msgid " -append TEXT Insert TEXT after class declaration\n" msgstr "" -#: config/pa/pa.opt:24 config/pa/pa.opt:77 config/pa/pa.opt:85 -msgid "Generate PA1.0 code" +#: java/gjavah.c:2368 +#, c-format +msgid " -friend TEXT Insert TEXT as 'friend' declaration\n" msgstr "" -#: config/pa/pa.opt:28 config/pa/pa.opt:89 config/pa/pa.opt:109 -msgid "Generate PA1.1 code" +#: java/gjavah.c:2369 +#, c-format +msgid " -prepend TEXT Insert TEXT before start of class\n" msgstr "" -#: config/pa/pa.opt:32 config/pa/pa.opt:93 -msgid "Generate PA2.0 code (requires binutils 2.10 or later)" +#: java/gjavah.c:2371 java/jcf-dump.c:912 +#, c-format +msgid " --classpath PATH Set path to find .class files\n" msgstr "" -#: config/pa/pa.opt:36 -msgid "Generate code for huge switch statements" +#: java/gjavah.c:2372 java/jcf-dump.c:913 +#, c-format +msgid " -IDIR Append directory to class path\n" msgstr "" -#: config/pa/pa.opt:40 -msgid "Disable FP regs" +#: java/gjavah.c:2373 java/jcf-dump.c:914 +#, c-format +msgid " --bootclasspath PATH Override built-in class path\n" msgstr "" -#: config/pa/pa.opt:44 -msgid "Disable indexed addressing" +#: java/gjavah.c:2374 java/jcf-dump.c:915 +#, c-format +msgid " --extdirs PATH Set extensions directory path\n" msgstr "" -#: config/pa/pa.opt:48 -msgid "Generate fast indirect calls" +#: java/gjavah.c:2375 +#, c-format +msgid " -d DIRECTORY Set output directory name\n" msgstr "" -#: config/pa/pa.opt:52 -msgid "Specify range of registers to make fixed." +#: java/gjavah.c:2376 java/jcf-dump.c:916 java/jv-scan.c:115 +#, c-format +msgid " -o FILE Set output file name\n" msgstr "" -#: config/pa/pa.opt:56 -msgid "Assume code will be assembled by GAS" +#: java/gjavah.c:2377 +#, c-format +msgid " -td DIRECTORY Set temporary directory name\n" msgstr "" -#: config/pa/pa.opt:60 -msgid "Put jumps in call delay slots" +#: java/gjavah.c:2379 java/jcf-dump.c:918 java/jv-scan.c:117 +#, c-format +msgid " --help Print this help, then exit\n" msgstr "" -#: config/pa/pa.opt:65 -msgid "Enable linker optimizations" +#: java/gjavah.c:2380 java/jcf-dump.c:919 java/jv-scan.c:118 +#, c-format +msgid " --version Print version number, then exit\n" msgstr "" -#: config/pa/pa.opt:69 -msgid "Always generate long calls" +#: java/gjavah.c:2381 java/jcf-dump.c:920 +#, c-format +msgid " -v, --verbose Print extra information while running\n" +msgstr "" + +#: java/gjavah.c:2383 +#, c-format +msgid "" +" -M Print all dependencies to stdout;\n" +" suppress ordinary output\n" +msgstr "" + +#: java/gjavah.c:2385 +#, c-format +msgid "" +" -MM Print non-system dependencies to stdout;\n" +" suppress ordinary output\n" +msgstr "" + +#: java/gjavah.c:2387 +#, c-format +msgid " -MD Print all dependencies to stdout\n" +msgstr "" + +#: java/gjavah.c:2388 +#, c-format +msgid " -MMD Print non-system dependencies to stdout\n" +msgstr "" + +#: java/gjavah.c:2391 java/jcf-dump.c:922 java/jv-scan.c:120 +#, c-format +msgid "" +"For bug reporting instructions, please see:\n" +"%s.\n" +msgstr "" + +#: java/gjavah.c:2575 +#, c-format +msgid "Processing %s\n" +msgstr "" + +#: java/gjavah.c:2585 +#, c-format +msgid "Found in %s\n" +msgstr "" + +#: java/jcf-dump.c:829 +#, c-format +msgid "Not a valid Java .class file.\n" +msgstr "" + +#: java/jcf-dump.c:835 +#, c-format +msgid "error while parsing constant pool\n" +msgstr "" + +#: java/jcf-dump.c:841 java/jcf-parse.c:753 +#, gcc-internal-format +msgid "error in constant pool entry #%d\n" +msgstr "" + +#: java/jcf-dump.c:851 +#, c-format +msgid "error while parsing fields\n" +msgstr "" + +#: java/jcf-dump.c:857 +#, c-format +msgid "error while parsing methods\n" +msgstr "" + +#: java/jcf-dump.c:863 +#, c-format +msgid "error while parsing final attributes\n" +msgstr "" + +#: java/jcf-dump.c:900 +#, c-format +msgid "Try 'jcf-dump --help' for more information.\n" +msgstr "" + +#: java/jcf-dump.c:907 +#, c-format +msgid "" +"Usage: jcf-dump [OPTION]... CLASS...\n" +"\n" +msgstr "" + +#: java/jcf-dump.c:908 +#, c-format +msgid "" +"Display contents of a class file in readable form.\n" +"\n" +msgstr "" + +#: java/jcf-dump.c:909 +#, c-format +msgid " -c Disassemble method bodies\n" +msgstr "" + +#: java/jcf-dump.c:910 +#, c-format +msgid " --javap Generate output in 'javap' format\n" +msgstr "" + +#: java/jcf-dump.c:950 java/jcf-dump.c:1018 +#, c-format +msgid "jcf-dump: no classes specified\n" +msgstr "" + +#: java/jcf-dump.c:1038 +#, c-format +msgid "Cannot open '%s' for output.\n" +msgstr "" + +#: java/jcf-dump.c:1084 +#, c-format +msgid "bad format of .zip/.jar archive\n" +msgstr "" + +#: java/jcf-dump.c:1202 +#, c-format +msgid "Bad byte codes.\n" +msgstr "" + +#: java/jv-scan.c:100 +#, c-format +msgid "Try 'jv-scan --help' for more information.\n" +msgstr "" + +#: java/jv-scan.c:107 +#, c-format +msgid "" +"Usage: jv-scan [OPTION]... FILE...\n" +"\n" +msgstr "" + +#: java/jv-scan.c:108 +#, c-format +msgid "" +"Print useful information read from Java source files.\n" +"\n" +msgstr "" + +#: java/jv-scan.c:109 +#, c-format +msgid " --no-assert Don't recognize the assert keyword\n" +msgstr "" + +#: java/jv-scan.c:110 +#, c-format +msgid " --complexity Print cyclomatic complexity of input file\n" +msgstr "" + +#: java/jv-scan.c:111 +#, c-format +msgid " --encoding NAME Specify encoding of input file\n" +msgstr "" + +#: java/jv-scan.c:112 +#, c-format +msgid " --print-main Print name of class containing 'main'\n" +msgstr "" + +#: java/jv-scan.c:113 +#, c-format +msgid " --list-class List all classes defined in file\n" +msgstr "" + +#: java/jv-scan.c:114 +#, c-format +msgid "" +" --list-filename Print input filename when listing class names\n" +msgstr "" + +#: java/jv-scan.c:257 +#, c-format +msgid "%s: error: " +msgstr "" + +#: java/jv-scan.c:269 java/jv-scan.c:280 +#, c-format +msgid "%s: warning: " +msgstr "" + +#: java/jvgenmain.c:48 +#, c-format +msgid "Usage: %s [OPTIONS]... CLASSNAMEmain [OUTFILE]\n" +msgstr "" + +#: java/jvgenmain.c:101 +#, c-format +msgid "%s: Cannot open output file: %s\n" +msgstr "" + +#: java/jvgenmain.c:138 +#, c-format +msgid "%s: Failed to close output file %s\n" +msgstr "" + +#: java/jvspec.c:420 +#, c-format +msgid "can't specify '-D' without '--main'\n" +msgstr "" + +#: java/jvspec.c:423 +#, c-format +msgid "'%s' is not a valid class name" +msgstr "" + +#: java/jvspec.c:429 +#, c-format +msgid "--resource requires -o" +msgstr "" + +#: java/jvspec.c:443 +#, c-format +msgid "cannot specify both -C and -o" +msgstr "" + +#: java/jvspec.c:455 +#, c-format +msgid "cannot create temporary file" +msgstr "" + +#: java/jvspec.c:483 +#, c-format +msgid "using both @FILE with multiple files not implemented" +msgstr "" + +#: java/jvspec.c:546 +#, c-format +msgid "cannot specify 'main' class when not linking" +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/darwin.h:239 +msgid "-current_version only allowed with -dynamiclib" +msgstr "" + +#: config/darwin.h:241 +msgid "-install_name only allowed with -dynamiclib" +msgstr "" + +#: config/darwin.h:246 +msgid "-bundle not allowed with -dynamiclib" +msgstr "" + +#: config/darwin.h:247 +msgid "-bundle_loader not allowed with -dynamiclib" +msgstr "" + +#: config/darwin.h:248 +msgid "-client_name not allowed with -dynamiclib" +msgstr "" + +#: config/darwin.h:253 +msgid "-force_flat_namespace not allowed with -dynamiclib" +msgstr "" + +#: config/darwin.h:255 +msgid "-keep_private_externs not allowed with -dynamiclib" +msgstr "" + +#: config/darwin.h:256 +msgid "-private_bundle not allowed with -dynamiclib" +msgstr "" + +#: config/vxworks.h:66 +msgid "-Xbind-now and -Xbind-lazy are incompatible" +msgstr "" + +#: config/arm/arm.h:141 +msgid "-msoft-float and -mhard_float may not be used together" +msgstr "" + +#: config/arm/arm.h:143 +msgid "-mbig-endian and -mlittle-endian may not be used together" +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/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 "" + +#: config/mips/mips.h:849 config/arc/arc.h:62 +msgid "may not use both -EB and -EL" +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 "" + +#: java/lang-specs.h:34 +msgid "-fjni and -femit-class-files are incompatible" +msgstr "" + +#: java/lang-specs.h:35 +msgid "-fjni and -femit-class-file are incompatible" +msgstr "" + +#: java/lang-specs.h:36 java/lang-specs.h:37 +msgid "-femit-class-file should used along with -fsyntax-only" +msgstr "" + +#: config/sh/sh.h:460 +msgid "SH2a does not support little-endian" +msgstr "" + +#: config/i386/mingw32.h:58 config/i386/cygwin.h:70 +msgid "shared and mdll are not compatible" +msgstr "" + +#: config/lynx.h:71 +msgid "cannot use mthreads and mlegacy-threads together" +msgstr "" + +#: config/lynx.h:96 +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" +msgstr "" + +#: config/i386/nwld.h:34 +msgid "Static linking is not supported.\n" +msgstr "" + +#: config/mcore/mcore.h:57 +msgid "the m210 does not have little endian support" +msgstr "" + +#: gcc.c:767 +msgid "GCC does not support -C or -CC without -E" +msgstr "" + +#: gcc.c:794 java/jvspec.c:80 ada/lang-specs.h:34 +msgid "-pg and -fomit-frame-pointer are incompatible" +msgstr "" + +#: gcc.c:962 +msgid "-E or -x required when input is from standard input" +msgstr "" + +#: config/s390/tpf.h:125 +msgid "static is not supported on TPF-OS" +msgstr "" + +#: config/rs6000/darwin.h:105 +msgid " conflicting code gen style switches are used" +msgstr "" + +#: ada/lang-specs.h:35 +msgid "-c or -S required for Ada" +msgstr "" + +#: config/vax/vax.h:50 config/vax/vax.h:51 +msgid "profiling not supported with -mg\n" +msgstr "" + +#: config/i386/cygwin.h:29 +msgid "mno-cygwin and mno-win32 are not compatible" +msgstr "" + +#: ada/lang.opt:74 +msgid "Specify options to GNAT" +msgstr "" + +#: c.opt:42 +msgid "" +"Assert the to . Putting '-' before disables " +"the to " +msgstr "" + +#: c.opt:46 +msgid "Do not discard comments" +msgstr "" + +#: c.opt:50 +msgid "Do not discard comments in macro expansions" +msgstr "" + +#: c.opt:54 +msgid "" +"Define a with as its value. If just is given, " +"is taken to be 1" +msgstr "" + +#: c.opt:61 +msgid "Add to the end of the main framework include path" +msgstr "" + +#: c.opt:65 +msgid "Print the name of header files as they are used" +msgstr "" + +#: c.opt:69 c.opt:775 +msgid "Add to the end of the main include path" +msgstr "" + +#: c.opt:73 +msgid "Generate make dependencies" +msgstr "" + +#: c.opt:77 +msgid "Generate make dependencies and compile" +msgstr "" + +#: c.opt:81 +msgid "Write dependency output to the given file" +msgstr "" + +#: c.opt:85 +msgid "Treat missing header files as generated files" +msgstr "" + +#: c.opt:89 +msgid "Like -M but ignore system header files" +msgstr "" + +#: c.opt:93 +msgid "Like -MD but ignore system header files" +msgstr "" + +#: c.opt:97 +msgid "Generate phony targets for all headers" +msgstr "" + +#: c.opt:101 +msgid "Add a MAKE-quoted target" +msgstr "" + +#: c.opt:105 +msgid "Add an unquoted target" +msgstr "" + +#: c.opt:109 +msgid "Do not generate #line directives" +msgstr "" + +#: c.opt:113 +msgid "Undefine " +msgstr "" + +#: c.opt:117 +msgid "" +"Warn about things that will change when compiling with an ABI-compliant " +"compiler" +msgstr "" + +#: c.opt:121 +msgid "Enable most warning messages" +msgstr "" + +#: c.opt:125 +msgid "" +"Warn whenever an Objective-C assignment is being intercepted by the garbage " +"collector" +msgstr "" + +#: c.opt:129 +msgid "Warn about casting functions to incompatible types" +msgstr "" + +#: c.opt:133 +msgid "Warn about C constructs that are not in the common subset of C and C++" +msgstr "" + +#: c.opt:138 +msgid "Warn about casts which discard qualifiers" +msgstr "" + +#: c.opt:142 +msgid "Warn about subscripts whose type is \"char\"" +msgstr "" + +#: c.opt:146 +msgid "" +"Warn about possibly nested block comments, and C++ comments spanning more " +"than one physical line" +msgstr "" + +#: c.opt:150 +msgid "Synonym for -Wcomment" +msgstr "" + +#: c.opt:154 +msgid "Warn about possibly confusing type conversions" +msgstr "" + +#: c.opt:158 +msgid "Warn when all constructors and destructors are private" +msgstr "" + +#: c.opt:162 +msgid "Warn when a declaration is found after a statement" +msgstr "" + +#: c.opt:166 +msgid "Warn about deprecated compiler features" +msgstr "" + +#: c.opt:170 +msgid "Warn about compile-time integer division by zero" +msgstr "" + +#: c.opt:174 +msgid "Warn about violations of Effective C++ style rules" +msgstr "" + +#: c.opt:178 +msgid "Warn about stray tokens after #elif and #endif" +msgstr "" + +#: c.opt:186 +msgid "Make implicit function declarations an error" +msgstr "" + +#: c.opt:190 +msgid "Warn if testing floating point numbers for equality" +msgstr "" + +#: c.opt:194 +msgid "Warn about printf/scanf/strftime/strfmon format string anomalies" +msgstr "" + +#: c.opt:198 +msgid "Warn if passing too many arguments to a function for its format string" +msgstr "" + +#: c.opt:202 +msgid "Warn about format strings that are not literals" +msgstr "" + +#: c.opt:206 +msgid "Warn about possible security problems with format functions" +msgstr "" + +#: c.opt:210 +msgid "Warn about strftime formats yielding 2-digit years" +msgstr "" + +#: c.opt:214 +msgid "Warn about zero-length formats" +msgstr "" + +#: c.opt:221 +msgid "Warn about variables which are initialized to themselves" +msgstr "" + +#: c.opt:228 +msgid "Warn about implicit function declarations" +msgstr "" + +#: c.opt:232 +msgid "Warn when a declaration does not specify a type" +msgstr "" + +#: c.opt:236 +msgid "Deprecated. This switch has no effect" +msgstr "" + +#: c.opt:240 +msgid "" +"Warn when there is a cast to a pointer from an integer of a different size" +msgstr "" + +#: c.opt:244 +msgid "Warn about invalid uses of the \"offsetof\" macro" +msgstr "" + +#: c.opt:248 +msgid "Warn about PCH files that are found but not used" +msgstr "" + +#: c.opt:252 +msgid "Do not warn about using \"long long\" when -pedantic" +msgstr "" + +#: c.opt:256 +msgid "Warn about suspicious declarations of \"main\"" +msgstr "" + +#: c.opt:260 +msgid "Warn about possibly missing braces around initializers" +msgstr "" + +#: c.opt:264 +msgid "Warn about global functions without previous declarations" +msgstr "" + +#: c.opt:268 +msgid "Warn about missing fields in struct initializers" +msgstr "" + +#: c.opt:272 +msgid "Warn about functions which might be candidates for format attributes" +msgstr "" + +#: c.opt:276 +msgid "Warn about user-specified include directories that do not exist" +msgstr "" + +#: c.opt:280 +msgid "Warn about global functions without prototypes" +msgstr "" + +#: c.opt:284 +msgid "Warn about use of multi-character character constants" +msgstr "" + +#: c.opt:288 +msgid "Warn about \"extern\" declarations not at file scope" +msgstr "" + +#: c.opt:292 +msgid "" +"Warn when non-templatized friend functions are declared within a template" +msgstr "" + +#: c.opt:296 +msgid "Warn about non-virtual destructors" +msgstr "" + +#: c.opt:300 +msgid "" +"Warn about NULL being passed to argument slots marked as requiring non-NULL" +msgstr "" + +#: c.opt:304 +msgid "Warn about non-normalised Unicode strings" +msgstr "" + +#: c.opt:308 +msgid "Warn if a C-style cast is used in a program" +msgstr "" + +#: c.opt:312 +msgid "Warn if an old-style parameter definition is used" +msgstr "" + +#: c.opt:316 +msgid "Warn about overloaded virtual function names" +msgstr "" + +#: c.opt:320 +msgid "Warn about possibly missing parentheses" +msgstr "" + +#: c.opt:324 +msgid "Warn when converting the type of pointers to member functions" +msgstr "" + +#: c.opt:328 +msgid "Warn about function pointer arithmetic" +msgstr "" + +#: c.opt:332 +msgid "Warn when a pointer is cast to an integer of a different size" +msgstr "" + +#: c.opt:336 +msgid "Warn about misuses of pragmas" +msgstr "" + +#: c.opt:340 +msgid "Warn if inherited methods are unimplemented" +msgstr "" + +#: c.opt:344 +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:356 +msgid "Warn if a selector has multiple methods" +msgstr "" + +#: c.opt:360 +msgid "Warn about possible violations of sequence point rules" +msgstr "" + +#: c.opt:364 +msgid "Warn about signed-unsigned comparisons" +msgstr "" + +#: c.opt:368 +msgid "Warn when overload promotes from unsigned to signed" +msgstr "" + +#: c.opt:372 +msgid "Warn about uncasted NULL used as sentinel" +msgstr "" + +#: c.opt:376 +msgid "Warn about unprototyped function declarations" +msgstr "" + +#: c.opt:380 +msgid "Warn if type signatures of candidate methods do not match exactly" +msgstr "" + +#: c.opt:384 +msgid "Warn when synthesis behavior differs from Cfront" +msgstr "" + +#: c.opt:388 common.opt:142 +msgid "Do not suppress warnings from system headers" +msgstr "" + +#: c.opt:392 +msgid "Warn about features not present in traditional C" +msgstr "" + +#: c.opt:396 +msgid "" +"Warn if trigraphs are encountered that might affect the meaning of the " +"program" +msgstr "" + +#: c.opt:400 +msgid "Warn about @selector()s without previously declared methods" +msgstr "" + +#: c.opt:404 +msgid "Warn if an undefined macro is used in an #if directive" +msgstr "" + +#: c.opt:408 +msgid "Warn about unrecognized pragmas" +msgstr "" + +#: c.opt:412 +msgid "Warn about macros defined in the main file that are not used" +msgstr "" + +#: c.opt:416 +msgid "Do not warn about using variadic macros when -pedantic" +msgstr "" + +#: c.opt:420 +msgid "Give strings the type \"array of char\"" +msgstr "" + +#: c.opt:424 +msgid "Warn when a pointer differs in signedness in an assignment" +msgstr "" + +#: c.opt:428 +msgid "A synonym for -std=c89 (for C) or -std=c++98 (for C++)" +msgstr "" + +#: c.opt:436 +msgid "Enforce class member access control semantics" +msgstr "" + +#: c.opt:443 +msgid "Change when template instances are emitted" +msgstr "" + +#: c.opt:447 +msgid "Recognize the \"asm\" keyword" +msgstr "" + +#: c.opt:451 +msgid "Recognize built-in functions" +msgstr "" + +#: c.opt:458 +msgid "Check the return value of new" +msgstr "" + +#: c.opt:462 +msgid "Allow the arguments of the '?' operator to have different types" +msgstr "" + +#: c.opt:466 +msgid "Reduce the size of object files" +msgstr "" + +#: c.opt:470 +msgid "Make string literals \"const char[]\" not \"char[]\"" +msgstr "" + +#: c.opt:474 +msgid "Use class for constant strings" +msgstr "" + +#: c.opt:478 +msgid "Inline member functions by default" +msgstr "" + +#: c.opt:482 +msgid "Permit '$' as an identifier character" +msgstr "" + +#: c.opt:489 +msgid "Generate code to check exception specifications" +msgstr "" + +#: c.opt:496 +msgid "Convert all strings and character constants to character set " +msgstr "" + +#: c.opt:500 +msgid "Specify the default character set for source files" +msgstr "" + +#: c.opt:514 +msgid "Scope of for-init-statement variables is local to the loop" +msgstr "" + +#: c.opt:518 +msgid "Do not assume that standard C libraries and \"main\" exist" +msgstr "" + +#: c.opt:522 +msgid "Recognize GNU-defined keywords" +msgstr "" + +#: c.opt:526 +msgid "Generate code for GNU runtime environment" +msgstr "" + +#: c.opt:539 +msgid "Assume normal C execution environment" +msgstr "" + +#: c.opt:543 +msgid "Enable support for huge objects" +msgstr "" + +#: c.opt:547 +msgid "Export functions even if they can be inlined" +msgstr "" + +#: c.opt:551 +msgid "Emit implicit instantiations of inline templates" +msgstr "" + +#: c.opt:555 +msgid "Emit implicit instantiations of templates" +msgstr "" + +#: 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:576 +msgid "Generate code for NeXT (Apple Mac OS X) runtime environment" +msgstr "" + +#: c.opt:580 +msgid "Assume that receivers of Objective-C messages may be nil" +msgstr "" + +#: c.opt:592 +msgid "" +"Generate special Objective-C methods to initialize/destroy non-POD C++ " +"ivars, if needed" +msgstr "" + +#: c.opt:596 +msgid "Allow fast jumps to the message dispatcher" +msgstr "" + +#: c.opt:602 +msgid "Enable Objective-C exception and synchronization syntax" +msgstr "" + +#: c.opt:606 +msgid "Enable garbage collection (GC) in Objective-C/Objective-C++ programs" +msgstr "" + +#: c.opt:611 +msgid "Enable Objective-C setjmp exception handling runtime" +msgstr "" + +#: c.opt:615 +msgid "Recognize C++ kewords like \"compl\" and \"xor\"" +msgstr "" + +#: c.opt:619 +msgid "Enable optional diagnostics" +msgstr "" + +#: c.opt:626 +msgid "Look for and use PCH files even when preprocessing" +msgstr "" + +#: c.opt:630 +msgid "Downgrade conformance errors to warnings" +msgstr "" + +#: c.opt:634 +msgid "Treat the input file as already preprocessed" +msgstr "" + +#: c.opt:638 +msgid "" +"Used in Fix-and-Continue mode to indicate that object files may be swapped " +"in at runtime" +msgstr "" + +#: c.opt:642 +msgid "Enable automatic template instantiation" +msgstr "" + +#: c.opt:646 +msgid "Generate run time type descriptor information" +msgstr "" + +#: c.opt:650 +msgid "Use the same size for double as for float" +msgstr "" + +#: c.opt:654 +msgid "Use the narrowest integer type possible for enumeration types" +msgstr "" + +#: c.opt:658 +msgid "Force the underlying type for \"wchar_t\" to be \"unsigned short\"" +msgstr "" + +#: c.opt:662 +msgid "When \"signed\" or \"unsigned\" is not given make the bitfield signed" +msgstr "" + +#: c.opt:666 +msgid "Make \"char\" signed by default" +msgstr "" + +#: c.opt:673 +msgid "Display statistics accumulated during compilation" +msgstr "" + +#: c.opt:680 +msgid "Distance between tab stops for column reporting" +msgstr "" + +#: c.opt:684 +msgid "Specify maximum template instantiation depth" +msgstr "" + +#: c.opt:691 +msgid "Do not generate thread-safe code for initializing local statics" +msgstr "" + +#: c.opt:695 +msgid "When \"signed\" or \"unsigned\" is not given make the bitfield unsigned" +msgstr "" + +#: c.opt:699 +msgid "Make \"char\" unsigned by default" +msgstr "" + +#: c.opt:703 +msgid "Use __cxa_atexit to register destructors" +msgstr "" + +#: c.opt:707 +msgid "Marks all inlined methods as having hidden visibility" +msgstr "" + +#: c.opt:711 +msgid "Discard unused virtual functions" +msgstr "" + +#: c.opt:715 +msgid "Implement vtables using thunks" +msgstr "" + +#: c.opt:719 +msgid "Emit common-like symbols as weak symbols" +msgstr "" + +#: c.opt:723 +msgid "" +"Convert all wide strings and character constants to character set " +msgstr "" + +#: c.opt:727 +msgid "Generate a #line directive pointing at the current working directory" +msgstr "" + +#: c.opt:731 +msgid "Emit cross referencing information" +msgstr "" + +#: c.opt:735 +msgid "" +"Generate lazy class lookup (via objc_getClass()) for use in Zero-Link mode" +msgstr "" + +#: c.opt:739 +msgid "Dump declarations to a .decl file" +msgstr "" + +#: c.opt:743 c.opt:771 +msgid "Add to the end of the system include path" +msgstr "" + +#: c.opt:747 +msgid "Accept definition of macros in " +msgstr "" + +#: c.opt:751 +msgid "Include the contents of before other files" +msgstr "" + +#: c.opt:755 +msgid "Specify as a prefix for next two options" +msgstr "" + +#: c.opt:759 +msgid "Set to be the system root directory" +msgstr "" + +#: c.opt:763 +msgid "Add to the start of the system include path" +msgstr "" + +#: c.opt:767 +msgid "Add to the end of the quote include path" +msgstr "" + +#: c.opt:785 +msgid "" +"Do not search standard system include directories (those specified with -" +"isystem will still be used)" +msgstr "" + +#: c.opt:789 +msgid "Do not search standard system include directories for C++" +msgstr "" + +#: c.opt:805 +msgid "Generate C header of platform-specific features" +msgstr "" + +#: c.opt:809 +msgid "Print a checksum of the executable for PCH validity checking, and stop" +msgstr "" + +#: c.opt:813 +msgid "Remap file names when including files" +msgstr "" + +#: c.opt:817 +msgid "Conform to the ISO 1998 C++ standard" +msgstr "" + +#: c.opt:821 c.opt:849 +msgid "Conform to the ISO 1990 C standard" +msgstr "" + +#: c.opt:825 c.opt:857 +msgid "Conform to the ISO 1999 C standard" +msgstr "" + +#: c.opt:829 +msgid "Deprecated in favor of -std=c99" +msgstr "" + +#: c.opt:833 +msgid "Conform to the ISO 1998 C++ standard with GNU extensions" +msgstr "" + +#: c.opt:837 +msgid "Conform to the ISO 1990 C standard with GNU extensions" +msgstr "" + +#: c.opt:841 +msgid "Conform to the ISO 1999 C standard with GNU extensions" +msgstr "" + +#: c.opt:845 +msgid "Deprecated in favor of -std=gnu99" +msgstr "" + +#: c.opt:853 +msgid "Conform to the ISO 1990 C standard as amended in 1994" +msgstr "" + +#: c.opt:861 +msgid "Deprecated in favor of -std=iso9899:1999" +msgstr "" + +#: c.opt:865 +msgid "Enable traditional preprocessing" +msgstr "" + +#: c.opt:869 +msgid "Support ISO C trigraphs" +msgstr "" + +#: c.opt:873 +msgid "Do not predefine system-specific and GCC-specific macros" +msgstr "" + +#: c.opt:877 +msgid "Enable verbose output" +msgstr "" + +#: common.opt:28 +msgid "Display this information" +msgstr "" + +#: common.opt:32 +msgid "" +"Set parameter to value. See below for a complete list of parameters" +msgstr "" + +#: common.opt:42 +msgid "" +"Put global and static data smaller than bytes into a special " +"section (on some targets)" +msgstr "" + +#: common.opt:46 +msgid "Set optimization level to " +msgstr "" + +#: common.opt:50 +msgid "Optimize for space rather than speed" +msgstr "" + +#: common.opt:54 +msgid "This switch is deprecated; use -Wextra instead" +msgstr "" + +#: common.opt:58 +msgid "Warn about returning structures, unions or arrays" +msgstr "" + +#: common.opt:62 +msgid "Warn about inappropriate attribute usage" +msgstr "" + +#: common.opt:66 +msgid "Warn about pointer casts which increase alignment" +msgstr "" + +#: common.opt:70 +msgid "Warn about uses of __attribute__((deprecated)) declarations" +msgstr "" + +#: common.opt:74 +msgid "Warn when an optimization pass is disabled" +msgstr "" + +#: common.opt:78 +msgid "Treat all warnings as errors" +msgstr "" + +#: common.opt:82 +msgid "Print extra (possibly unwanted) warnings" +msgstr "" + +#: common.opt:86 +msgid "Exit on the first error occurred" +msgstr "" + +#: common.opt:90 +msgid "Warn when an inlined function cannot be inlined" +msgstr "" + +#: common.opt:94 +msgid "Warn if an object is larger than 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:106 +msgid "Warn when the packed attribute has no effect on struct layout" +msgstr "" + +#: common.opt:110 +msgid "Warn when padding is required to align structure members" +msgstr "" + +#: common.opt:114 +msgid "Warn when one local variable shadows another" +msgstr "" + +#: common.opt:118 +msgid "Warn when not issuing stack smashing protection for some reason" +msgstr "" + +#: common.opt:122 common.opt:126 +msgid "Warn about code which might break strict aliasing rules" +msgstr "" + +#: common.opt:130 +msgid "Warn about enumerated switches, with no default, missing a case" +msgstr "" + +#: common.opt:134 +msgid "Warn about enumerated switches missing a \"default:\" statement" +msgstr "" + +#: common.opt:138 +msgid "Warn about all enumerated switches missing a specific case" +msgstr "" + +#: common.opt:146 +msgid "Warn about uninitialized automatic variables" +msgstr "" + +#: common.opt:150 +msgid "Warn about code that will never be executed" +msgstr "" + +#: common.opt:154 +msgid "Enable all -Wunused- warnings" +msgstr "" + +#: common.opt:158 +msgid "Warn when a function is unused" +msgstr "" + +#: common.opt:162 fortran/lang.opt:70 +msgid "Warn when a label is unused" +msgstr "" + +#: common.opt:166 +msgid "Warn when a function parameter is unused" +msgstr "" + +#: common.opt:170 +msgid "Warn when an expression value is unused" +msgstr "" + +#: common.opt:174 +msgid "Warn when a variable is unused" +msgstr "" + +#: common.opt:178 +msgid "Emit declaration information into " +msgstr "" + +#: common.opt:191 +msgid "Enable dumps from specific passes of the compiler" +msgstr "" + +#: common.opt:195 +msgid "Set the file basename to be used for dumps" +msgstr "" + +#: common.opt:213 +msgid "Align the start of functions" +msgstr "" + +#: common.opt:220 +msgid "Align labels which are only reached by jumping" +msgstr "" + +#: common.opt:227 +msgid "Align all labels" +msgstr "" + +#: common.opt:234 +msgid "Align the start of loops" +msgstr "" + +#: common.opt:247 +msgid "Specify that arguments may alias each other and globals" +msgstr "" + +#: common.opt:251 +msgid "Assume arguments may alias globals but not each other" +msgstr "" + +#: common.opt:255 +msgid "Assume arguments alias neither each other nor globals" +msgstr "" + +#: common.opt:259 +msgid "Generate unwind tables that are exact at each instruction boundary" +msgstr "" + +#: common.opt:267 +msgid "Generate code to check bounds before indexing arrays" +msgstr "" + +#: common.opt:271 +msgid "Replace add, compare, branch with branch on count register" +msgstr "" + +#: common.opt:275 +msgid "Use profiling information for branch probabilities" +msgstr "" + +#: common.opt:279 +msgid "" +"Perform branch target load optimization before prologue / epilogue threading" +msgstr "" + +#: common.opt:283 +msgid "" +"Perform branch target load optimization after prologue / epilogue threading" +msgstr "" + +#: common.opt:287 +msgid "" +"Restrict target load migration not to re-use registers in any basic block" +msgstr "" + +#: common.opt:291 +msgid "Mark as being preserved across functions" +msgstr "" + +#: common.opt:295 +msgid "Mark as being corrupted by function calls" +msgstr "" + +#: common.opt:302 +msgid "Save registers around function calls" +msgstr "" + +#: common.opt:306 +msgid "Do not put uninitialized globals in the common section" +msgstr "" + +#: common.opt:310 +msgid "Perform a register copy-propagation optimization pass" +msgstr "" + +#: common.opt:314 +msgid "Perform cross-jumping optimization" +msgstr "" + +#: common.opt:318 +msgid "When running CSE, follow jumps to their targets" +msgstr "" + +#: common.opt:322 +msgid "When running CSE, follow conditional jumps" +msgstr "" + +#: common.opt:326 +msgid "Omit range reduction step when performing complex division" +msgstr "" + +#: common.opt:330 +msgid "Place data items into their own section" +msgstr "" + +#: common.opt:336 +msgid "Defer popping functions args from stack until later" +msgstr "" + +#: common.opt:340 +msgid "Attempt to fill delay slots of branch instructions" +msgstr "" + +#: common.opt:344 +msgid "Delete useless null pointer checks" +msgstr "" + +#: common.opt:348 +msgid "" +"How often to emit source location at the beginning of line-wrapped " +"diagnostics" +msgstr "" + +#: common.opt:352 +msgid "" +"Amend appropriate diagnostic messages with the command line option that " +"controls them" +msgstr "" + +#: common.opt:356 +msgid "Dump various compiler internals to a file" +msgstr "" + +#: common.opt:360 +msgid "" +"Suppress output of instruction numbers and line number notes in debugging " +"dumps" +msgstr "" + +#: common.opt:364 +msgid "Perform early inlining" +msgstr "" + +#: common.opt:368 +msgid "Perform DWARF2 duplicate elimination" +msgstr "" + +#: common.opt:372 common.opt:376 +msgid "Perform unused type elimination in debug info" +msgstr "" + +#: common.opt:380 +msgid "Enable exception handling" +msgstr "" + +#: common.opt:384 +msgid "Perform a number of minor, expensive optimizations" +msgstr "" + +#: common.opt:391 +msgid "Assume no NaNs or infinities are generated" +msgstr "" + +#: common.opt:395 +msgid "Mark as being unavailable to the compiler" +msgstr "" + +#: common.opt:399 +msgid "Don't allocate floats and doubles in extended-precision registers" +msgstr "" + +#: common.opt:405 +msgid "Copy memory address constants into registers before use" +msgstr "" + +#: common.opt:411 +msgid "Copy memory operands into registers before use" +msgstr "" + +#: common.opt:418 +msgid "Allow function addresses to be held in registers" +msgstr "" + +#: common.opt:422 +msgid "Place each function into its own section" +msgstr "" + +#: common.opt:426 +msgid "Perform global common subexpression elimination" +msgstr "" + +#: common.opt:430 +msgid "" +"Perform enhanced load motion during global common subexpression elimination" +msgstr "" + +#: common.opt:434 +msgid "Perform store motion after global common subexpression elimination" +msgstr "" + +#: common.opt:438 +msgid "" +"Perform redundant load after store elimination in global common subexpression" +msgstr "" + +#: common.opt:443 +msgid "" +"Perform global common subexpression elimination after register allocation" +msgstr "" + +#: common.opt:448 +msgid "Enable guessing of branch probabilities" +msgstr "" + +#: common.opt:456 +msgid "Process #ident directives" +msgstr "" + +#: common.opt:460 +msgid "Perform conversion of conditional jumps to branchless equivalents" +msgstr "" + +#: common.opt:464 +msgid "Perform conversion of conditional jumps to conditional execution" +msgstr "" + +#: common.opt:472 +msgid "Do not generate .size directives" +msgstr "" + +#: common.opt:481 +msgid "Pay attention to the \"inline\" keyword" +msgstr "" + +#: common.opt:485 +msgid "Integrate simple functions into their callers" +msgstr "" + +#: common.opt:489 +msgid "Integrate functions called once into their callers" +msgstr "" + +#: common.opt:496 +msgid "Limit the size of inlined functions to " +msgstr "" + +#: common.opt:500 +msgid "Instrument function entry and exit with profiling calls" +msgstr "" + +#: 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:524 +msgid "Use jump tables for sufficiently large switch statements" +msgstr "" + +#: common.opt:528 +msgid "Generate code for functions even if they are fully inlined" +msgstr "" + +#: common.opt:532 +msgid "Emit static const variables even if they are not used" +msgstr "" + +#: common.opt:536 +msgid "Give external symbols a leading underscore" +msgstr "" + +#: common.opt:540 +msgid "Perform loop optimizations" +msgstr "" + +#: common.opt:544 +msgid "Perform loop optimizations using the new loop optimizer" +msgstr "" + +#: common.opt:548 +msgid "Set errno after built-in math functions" +msgstr "" + +#: common.opt:552 +msgid "Report on permanent memory allocation" +msgstr "" + +#: common.opt:559 +msgid "Attempt to merge identical constants and constant variables" +msgstr "" + +#: common.opt:563 +msgid "Attempt to merge identical constants across compilation units" +msgstr "" + +#: common.opt:567 +msgid "" +"Limit diagnostics to characters per line. 0 suppresses line-" +"wrapping" +msgstr "" + +#: common.opt:571 +msgid "Perform SMS based modulo scheduling before the first scheduling pass" +msgstr "" + +#: common.opt:575 +msgid "Move loop invariant computations out of loops" +msgstr "" + +#: common.opt:579 +msgid "Add mudflap bounds-checking instrumentation for single-threaded program" +msgstr "" + +#: common.opt:583 +msgid "Add mudflap bounds-checking instrumentation for multi-threaded program" +msgstr "" + +#: common.opt:587 +msgid "Ignore read operations when inserting mudflap instrumentation" +msgstr "" + +#: common.opt:591 +msgid "" +"Enable/Disable the traditional scheduling in loops that already passed " +"modulo scheduling" +msgstr "" + +#: common.opt:595 +msgid "Support synchronous non-call exceptions" +msgstr "" + +#: common.opt:599 +msgid "When possible do not generate stack frames" +msgstr "" + +#: common.opt:603 +msgid "Do the full register move optimization pass" +msgstr "" + +#: common.opt:607 +msgid "Optimize sibling and tail recursive calls" +msgstr "" + +#: common.opt:611 +msgid "Pack structure members together without holes" +msgstr "" + +#: common.opt:615 +msgid "Set initial maximum structure member alignment" +msgstr "" + +#: common.opt:619 +msgid "Return small aggregates in memory, not registers" +msgstr "" + +#: common.opt:623 +msgid "Perform loop peeling" +msgstr "" + +#: common.opt:627 +msgid "Enable machine specific peephole optimizations" +msgstr "" + +#: common.opt:631 +msgid "Enable an RTL peephole pass before sched2" +msgstr "" + +#: common.opt:635 +msgid "Generate position-independent code if possible (large mode)" +msgstr "" + +#: common.opt:639 +msgid "" +"Generate position-independent code for executables if possible (large mode)" +msgstr "" + +#: common.opt:643 +msgid "Generate position-independent code if possible (small mode)" +msgstr "" + +#: common.opt:647 +msgid "" +"Generate position-independent code for executables if possible (small mode)" +msgstr "" + +#: common.opt:651 +msgid "Generate prefetch instructions, if available, for arrays in loops" +msgstr "" + +#: common.opt:655 +msgid "Enable basic program profiling code" +msgstr "" + +#: common.opt:659 +msgid "Insert arc-based program profiling code" +msgstr "" + +#: common.opt:663 +msgid "" +"Enable common options for generating profile info for profile feedback " +"directed optimizations" +msgstr "" + +#: common.opt:667 +msgid "" +"Enable common options for performing profile feedback directed optimizations" +msgstr "" + +#: common.opt:671 +msgid "Insert code to profile values of expressions" +msgstr "" + +#: common.opt:678 +msgid "Make compile reproducible using " +msgstr "" + +#: common.opt:682 +msgid "Return small aggregates in registers" +msgstr "" + +#: common.opt:686 +msgid "Enables a register move optimization" +msgstr "" + +#: common.opt:690 +msgid "Perform a register renaming optimization pass" +msgstr "" + +#: common.opt:694 +msgid "Reorder basic blocks to improve code placement" +msgstr "" + +#: common.opt:698 +msgid "Reorder basic blocks and partition into hot and cold sections" +msgstr "" + +#: common.opt:702 +msgid "Reorder functions to improve code placement" +msgstr "" + +#: common.opt:706 +msgid "Add a common subexpression elimination pass after loop optimizations" +msgstr "" + +#: common.opt:710 +msgid "Run the loop optimizer twice" +msgstr "" + +#: common.opt:714 +msgid "Disable optimizations that assume default FP rounding behavior" +msgstr "" + +#: common.opt:718 +msgid "Enable scheduling across basic blocks" +msgstr "" + +#: common.opt:722 +msgid "Allow speculative motion of non-loads" +msgstr "" + +#: common.opt:726 +msgid "Allow speculative motion of some loads" +msgstr "" + +#: common.opt:730 +msgid "Allow speculative motion of more loads" +msgstr "" + +#: common.opt:734 +msgid "Set the verbosity level of the scheduler" +msgstr "" + +#: common.opt:738 +msgid "If scheduling post reload, do superblock scheduling" +msgstr "" + +#: common.opt:742 +msgid "If scheduling post reload, do trace scheduling" +msgstr "" + +#: common.opt:746 +msgid "Reschedule instructions before register allocation" +msgstr "" + +#: common.opt:750 +msgid "Reschedule instructions after register allocation" +msgstr "" + +#: common.opt:756 +msgid "Allow premature scheduling of queued insns" +msgstr "" + +#: common.opt:760 +msgid "Set number of queued insns that can be prematurely scheduled" +msgstr "" + +#: common.opt:768 common.opt:772 +msgid "" +"Set dependence distance checking in premature scheduling of queued insns" +msgstr "" + +#: common.opt:776 +msgid "Mark data as shared rather than private" +msgstr "" + +#: common.opt:780 +msgid "Show column numbers in diagnostics, when available. Default on" +msgstr "" + +#: common.opt:784 +msgid "Disable optimizations observable by IEEE signaling NaNs" +msgstr "" + +#: common.opt:788 +msgid "Convert floating point constants to single precision constants" +msgstr "" + +#: common.opt:792 +msgid "Split lifetimes of induction variables when loops are unrolled" +msgstr "" + +#: common.opt:796 +msgid "Apply variable expansion when loops are unrolled" +msgstr "" + +#: common.opt:802 +msgid "Insert stack checking code into the program" +msgstr "" + +#: common.opt:809 +msgid "Trap if the stack goes past " +msgstr "" + +#: common.opt:813 +msgid "Trap if the stack goes past symbol " +msgstr "" + +#: common.opt:817 +msgid "Use propolice as a stack protection method" +msgstr "" + +#: common.opt:821 +msgid "Use a stack protection method for every function" +msgstr "" + +#: common.opt:825 +msgid "Perform strength reduction optimizations" +msgstr "" + +#: common.opt:833 +msgid "Assume strict aliasing rules apply" +msgstr "" + +#: common.opt:837 +msgid "Check for syntax errors, then stop" +msgstr "" + +#: common.opt:841 +msgid "Create data files needed by \"gcov\"" +msgstr "" + +#: common.opt:845 +msgid "Perform jump threading optimizations" +msgstr "" + +#: common.opt:849 +msgid "Report the time taken by each compiler pass" +msgstr "" + +#: common.opt:853 +msgid "Set the default thread-local storage code generation model" +msgstr "" + +#: common.opt:857 +msgid "Perform superblock formation via tail duplication" +msgstr "" + +#: common.opt:864 +msgid "Assume floating-point operations can trap" +msgstr "" + +#: common.opt:868 +msgid "Trap for signed overflow in addition, subtraction and multiplication" +msgstr "" + +#: common.opt:872 +msgid "Enable SSA-CCP optimization on trees" +msgstr "" + +#: common.opt:876 +msgid "Enable SSA-CCP optimization for stores and loads" +msgstr "" + +#: common.opt:880 +msgid "Enable loop header copying on trees" +msgstr "" + +#: common.opt:884 +msgid "Coalesce memory temporaries in the SSA->normal pass" +msgstr "" + +#: common.opt:888 +msgid "Replace SSA temporaries with better names in copies" +msgstr "" + +#: common.opt:892 +msgid "Enable copy propagation on trees" +msgstr "" + +#: common.opt:896 +msgid "Enable copy propagation for stores and loads" +msgstr "" + +#: common.opt:900 +msgid "Enable SSA dead code elimination optimization on trees" +msgstr "" + +#: common.opt:904 +msgid "Enable dominator optimizations" +msgstr "" + +#: common.opt:908 +msgid "Enable dead store elimination" +msgstr "" + +#: common.opt:912 +msgid "Enable Full Redundancy Elimination (FRE) on trees" +msgstr "" + +#: common.opt:916 +msgid "Enable loop invariant motion on trees" +msgstr "" + +#: common.opt:920 +msgid "Enable linear loop transforms on trees" +msgstr "" + +#: common.opt:924 +msgid "Create canonical induction variables in loops" +msgstr "" + +#: common.opt:928 +msgid "Enable loop optimizations on tree level" +msgstr "" + +#: common.opt:932 +msgid "Enable SSA-PRE optimization on trees" +msgstr "" + +#: common.opt:936 +msgid "Perform structural alias analysis" +msgstr "" + +#: common.opt:940 +msgid "Enable SSA code sinking on trees" +msgstr "" + +#: common.opt:944 +msgid "Perform scalar replacement of aggregates" +msgstr "" + +#: common.opt:948 +msgid "Replace temporary expressions in the SSA->normal pass" +msgstr "" + +#: common.opt:952 +msgid "Perform live range splitting during the SSA->normal pass" +msgstr "" + +#: common.opt:956 +msgid "Perform Value Range Propagation on trees" +msgstr "" + +#: common.opt:960 +msgid "Compile whole compilation unit at a time" +msgstr "" + +#: common.opt:964 +msgid "Perform loop unrolling when iteration count is known" +msgstr "" + +#: common.opt:968 +msgid "Perform loop unrolling for all loops" +msgstr "" + +#: 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:987 +msgid "Perform loop unswitching" +msgstr "" + +#: common.opt:991 +msgid "Just generate unwind tables for exception handling" +msgstr "" + +#: common.opt:995 +msgid "Perform variable tracking" +msgstr "" + +#: common.opt:999 +msgid "Enable loop vectorization on trees" +msgstr "" + +#: 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:1017 +msgid "Add extra commentary to assembler output" +msgstr "" + +#: common.opt:1021 +msgid "Set the default symbol visibility" +msgstr "" + +#: common.opt:1026 +msgid "Use expression value profiles in optimizations" +msgstr "" + +#: common.opt:1030 +msgid "Construct webs and split unrelated uses of single variable" +msgstr "" + +#: common.opt:1034 +msgid "Perform whole program optimizations" +msgstr "" + +#: common.opt:1038 +msgid "Assume signed arithmetic overflow wraps around" +msgstr "" + +#: common.opt:1042 +msgid "Put zero initialized data in the bss section" +msgstr "" + +#: common.opt:1046 +msgid "Generate debug information in default format" +msgstr "" + +#: common.opt:1050 +msgid "Generate debug information in COFF format" +msgstr "" + +#: common.opt:1054 +msgid "Generate debug information in DWARF v2 format" +msgstr "" + +#: common.opt:1058 +msgid "Generate debug information in default extended format" +msgstr "" + +#: common.opt:1062 +msgid "Generate debug information in STABS format" +msgstr "" + +#: common.opt:1066 +msgid "Generate debug information in extended STABS format" +msgstr "" + +#: common.opt:1070 +msgid "Generate debug information in VMS format" +msgstr "" + +#: common.opt:1074 +msgid "Generate debug information in XCOFF format" +msgstr "" + +#: common.opt:1078 +msgid "Generate debug information in extended XCOFF format" +msgstr "" + +#: common.opt:1082 +msgid "Place output into " +msgstr "" + +#: common.opt:1086 +msgid "Enable function profiling" +msgstr "" + +#: common.opt:1090 +msgid "Issue warnings needed for strict compliance to the standard" +msgstr "" + +#: common.opt:1094 +msgid "Like -pedantic but issue them as errors" +msgstr "" + +#: common.opt:1098 +msgid "Do not display functions compiled or elapsed time" +msgstr "" + +#: common.opt:1102 +msgid "Display the compiler's version" +msgstr "" + +#: common.opt:1106 +msgid "Suppress warnings" +msgstr "" + +#: 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 "" + +#: config/alpha/alpha.opt:28 +msgid "Use fp registers" +msgstr "" + +#: config/alpha/alpha.opt:32 +msgid "Assume GAS" +msgstr "" + +#: config/alpha/alpha.opt:36 +msgid "Do not assume GAS" +msgstr "" + +#: config/alpha/alpha.opt:40 +msgid "Request IEEE-conformant math library routines (OSF/1)" +msgstr "" + +#: config/alpha/alpha.opt:44 +msgid "Emit IEEE-conformant code, without inexact exceptions" +msgstr "" + +#: config/alpha/alpha.opt:51 +msgid "Do not emit complex integer constants to read-only memory" +msgstr "" + +#: config/alpha/alpha.opt:55 +msgid "Use VAX fp" +msgstr "" + +#: config/alpha/alpha.opt:59 +msgid "Do not use VAX fp" +msgstr "" + +#: config/alpha/alpha.opt:63 +msgid "Emit code for the byte/word ISA extension" +msgstr "" + +#: config/alpha/alpha.opt:67 +msgid "Emit code for the motion video ISA extension" +msgstr "" + +#: config/alpha/alpha.opt:71 +msgid "Emit code for the fp move and sqrt ISA extension" +msgstr "" + +#: config/alpha/alpha.opt:75 +msgid "Emit code for the counting ISA extension" +msgstr "" + +#: config/alpha/alpha.opt:79 +msgid "Emit code using explicit relocation directives" +msgstr "" + +#: config/alpha/alpha.opt:83 +msgid "Emit 16-bit relocations to the small data areas" +msgstr "" + +#: config/alpha/alpha.opt:87 +msgid "Emit 32-bit relocations to the small data areas" +msgstr "" + +#: config/alpha/alpha.opt:91 +msgid "Emit direct branches to local functions" +msgstr "" + +#: config/alpha/alpha.opt:95 +msgid "Emit indirect branches to local functions" +msgstr "" + +#: config/alpha/alpha.opt:99 +msgid "Emit rdval instead of rduniq for thread pointer" +msgstr "" + +#: config/alpha/alpha.opt:103 config/sparc/long-double-switch.opt:24 +msgid "Use 128-bit long double" +msgstr "" + +#: config/alpha/alpha.opt:107 config/sparc/long-double-switch.opt:28 +msgid "Use 64-bit long double" +msgstr "" + +#: config/alpha/alpha.opt:111 +msgid "Use features of and schedule given CPU" +msgstr "" + +#: config/alpha/alpha.opt:115 +msgid "Schedule given CPU" +msgstr "" + +#: config/alpha/alpha.opt:119 +msgid "Control the generated fp rounding mode" +msgstr "" + +#: config/alpha/alpha.opt:123 +msgid "Control the IEEE trap mode" +msgstr "" + +#: config/alpha/alpha.opt:127 +msgid "Control the precision given to fp exceptions" +msgstr "" + +#: config/alpha/alpha.opt:131 +msgid "Tune expected memory latency" +msgstr "" + +#: config/alpha/alpha.opt:135 config/ia64/ia64.opt:93 +#: config/rs6000/sysv4.opt:33 +msgid "Specify bit size of immediate TLS offsets" +msgstr "" + +#: config/arc/arc.opt:33 +msgid "Prepend the name of the cpu to all public symbol names" +msgstr "" + +#: config/arc/arc.opt:43 +msgid "Compile code for ARC variant CPU" +msgstr "" + +#: config/arc/arc.opt:47 +msgid "Put functions in SECTION" +msgstr "" + +#: config/arc/arc.opt:51 +msgid "Put data in SECTION" +msgstr "" + +#: config/arc/arc.opt:55 +msgid "Put read-only data in SECTION" +msgstr "" + +#: config/arm/arm.opt:24 +msgid "Specify an ABI" +msgstr "" + +#: config/arm/arm.opt:28 +msgid "Generate a call to abort if a noreturn function returns" +msgstr "" + +#: config/arm/arm.opt:35 +msgid "Pass FP arguments in FP registers" +msgstr "" + +#: config/arm/arm.opt:39 +msgid "Generate APCS conformant stack frames" +msgstr "" + +#: config/arm/arm.opt:43 +msgid "Generate re-entrant, PIC code" +msgstr "" + +#: config/arm/arm.opt:50 +msgid "Specify the name of the target architecture" +msgstr "" + +#: config/arm/arm.opt:57 +msgid "Assume target CPU is configured as big endian" +msgstr "" + +#: config/arm/arm.opt:61 +msgid "Thumb: Assume non-static functions may be called from ARM code" +msgstr "" + +#: config/arm/arm.opt:65 +msgid "Thumb: Assume function pointers may go to non-Thumb aware code" +msgstr "" + +#: config/arm/arm.opt:69 +msgid "Cirrus: Place NOPs to avoid invalid instruction combinations" +msgstr "" + +#: config/arm/arm.opt:73 +msgid "Specify the name of the target CPU" +msgstr "" + +#: config/arm/arm.opt:77 +msgid "Specify if floating point hardware should be used" +msgstr "" + +#: config/arm/arm.opt:91 +msgid "Specify the name of the target floating point hardware/format" +msgstr "" + +#: config/arm/arm.opt:95 +msgid "Alias for -mfloat-abi=hard" +msgstr "" + +#: config/arm/arm.opt:99 +msgid "Assume target CPU is configured as little endian" +msgstr "" + +#: config/arm/arm.opt:103 +msgid "Generate call insns as indirect calls, if necessary" +msgstr "" + +#: config/arm/arm.opt:107 +msgid "Specify the register to be used for PIC addressing" +msgstr "" + +#: config/arm/arm.opt:111 +msgid "Store function names in object code" +msgstr "" + +#: config/arm/arm.opt:115 +msgid "Permit scheduling of a function's prologue sequence" +msgstr "" + +#: config/arm/arm.opt:119 +msgid "Do not load the PIC register in function prologues" +msgstr "" + +#: config/arm/arm.opt:123 +msgid "Alias for -mfloat-abi=soft" +msgstr "" + +#: config/arm/arm.opt:127 +msgid "Specify the minimum bit alignment of structures" +msgstr "" + +#: config/arm/arm.opt:131 +msgid "Compile for the Thumb not the ARM" +msgstr "" + +#: config/arm/arm.opt:135 +msgid "Support calls between Thumb and ARM instruction sets" +msgstr "" + +#: config/arm/arm.opt:139 +msgid "Thumb: Generate (non-leaf) stack frames even if not needed" +msgstr "" + +#: config/arm/arm.opt:143 +msgid "Thumb: Generate (leaf) stack frames even if not needed" +msgstr "" + +#: config/arm/arm.opt:147 +msgid "Tune code for the given processor" +msgstr "" + +#: config/arm/arm.opt:151 +msgid "Assume big endian bytes, little endian words" +msgstr "" + +#: config/arm/pe.opt:24 +msgid "Ignore dllimport attribute for functions" +msgstr "" + +#: config/avr/avr.opt:24 +msgid "Use subroutines for function prologues and epilogues" +msgstr "" + +#: config/avr/avr.opt:28 +msgid "Select the target MCU" +msgstr "" + +#: config/avr/avr.opt:35 +msgid "Use STACK as the initial value of the stack pointer" +msgstr "" + +#: config/avr/avr.opt:39 +msgid "Use an 8-bit 'int' type" +msgstr "" + +#: config/avr/avr.opt:43 +msgid "Change the stack pointer without disabling interrupts" +msgstr "" + +#: config/avr/avr.opt:47 +msgid "Do not generate tablejump insns" +msgstr "" + +#: config/avr/avr.opt:57 +msgid "Use rjmp/rcall (limited range) on >8K devices" +msgstr "" + +#: config/avr/avr.opt:61 +msgid "Output instruction sizes to the asm file" +msgstr "" + +#: config/avr/avr.opt:65 +msgid "Change only the low 8 bits of the stack pointer" +msgstr "" + +#: config/bfin/bfin.opt:24 +msgid "Omit frame pointer for leaf functions" +msgstr "" + +#: config/bfin/bfin.opt:28 +msgid "Program is entirely located in low 64k of memory" +msgstr "" + +#: config/bfin/bfin.opt:32 +msgid "Work around a hardware anomaly by adding a number of NOPs before a" +msgstr "" + +#: 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:45 config/m68k/m68k.opt:137 +msgid "ID of shared library to build" +msgstr "" + +#: config/bfin/bfin.opt:49 +msgid "Avoid generating pc-relative calls; use indirection" +msgstr "" + +#: config/c4x/c4x.opt:24 +msgid "Generate code for C30 CPU" +msgstr "" + +#: config/c4x/c4x.opt:28 +msgid "Generate code for C31 CPU" +msgstr "" + +#: config/c4x/c4x.opt:32 +msgid "Generate code for C32 CPU" +msgstr "" + +#: config/c4x/c4x.opt:36 +msgid "Generate code for C33 CPU" +msgstr "" + +#: config/c4x/c4x.opt:40 +msgid "Generate code for C40 CPU" +msgstr "" + +#: config/c4x/c4x.opt:44 +msgid "Generate code for C44 CPU" +msgstr "" + +#: config/c4x/c4x.opt:48 +msgid "Assume that pointers may be aliased" +msgstr "" + +#: config/c4x/c4x.opt:52 +msgid "Big memory model" +msgstr "" + +#: config/c4x/c4x.opt:56 +msgid "Use the BK register as a general purpose register" +msgstr "" + +#: config/c4x/c4x.opt:60 +msgid "Generate code for CPU" +msgstr "" + +#: config/c4x/c4x.opt:64 +msgid "Enable use of DB instruction" +msgstr "" + +#: config/c4x/c4x.opt:68 +msgid "Enable debugging" +msgstr "" + +#: config/c4x/c4x.opt:72 +msgid "Enable new features under development" +msgstr "" + +#: config/c4x/c4x.opt:76 +msgid "Use fast but approximate float to integer conversion" +msgstr "" + +#: config/c4x/c4x.opt:80 +msgid "Force RTL generation to emit valid 3 operand insns" +msgstr "" + +#: config/c4x/c4x.opt:84 +msgid "Force constants into registers to improve hoisting" +msgstr "" + +#: config/c4x/c4x.opt:88 config/c4x/c4x.opt:112 +msgid "Save DP across ISR in small memory model" +msgstr "" + +#: config/c4x/c4x.opt:92 +msgid "Allow unsigned iteration counts for RPTB/DB" +msgstr "" + +#: config/c4x/c4x.opt:96 +msgid "Pass arguments on the stack" +msgstr "" + +#: config/c4x/c4x.opt:100 +msgid "Use MPYI instruction for C3x" +msgstr "" + +#: config/c4x/c4x.opt:104 +msgid "Enable parallel instructions" +msgstr "" + +#: config/c4x/c4x.opt:108 +msgid "Enable MPY||ADD and MPY||SUB instructions" +msgstr "" + +#: config/c4x/c4x.opt:116 +msgid "Preserve all 40 bits of FP reg across call" +msgstr "" + +#: config/c4x/c4x.opt:120 +msgid "Pass arguments in registers" +msgstr "" + +#: config/c4x/c4x.opt:124 +msgid "Enable use of RTPB instruction" +msgstr "" + +#: config/c4x/c4x.opt:128 +msgid "Enable use of RTPS instruction" +msgstr "" + +#: config/c4x/c4x.opt:132 +msgid "Set the maximum number of iterations for RPTS to N" +msgstr "" + +#: config/c4x/c4x.opt:136 +msgid "Small memory model" +msgstr "" + +#: config/c4x/c4x.opt:140 +msgid "Emit code compatible with TI tools" +msgstr "" + +#: config/cris/aout.opt:28 +msgid "Compile for the MMU-less Etrax 100-based elinux system" +msgstr "" + +#: config/cris/aout.opt:34 +msgid "For elinux, request a specified stack-size for this program" +msgstr "" + +#: config/cris/cris.opt:46 +msgid "Work around bug in multiplication instruction" +msgstr "" + +#: config/cris/cris.opt:52 +msgid "Compile for ETRAX 4 (CRIS v3)" +msgstr "" + +#: config/cris/cris.opt:57 +msgid "Compile for ETRAX 100 (CRIS v8)" +msgstr "" + +#: config/cris/cris.opt:65 +msgid "Emit verbose debug information in assembly code" +msgstr "" + +#: config/cris/cris.opt:72 +msgid "Do not use condition codes from normal instructions" +msgstr "" + +#: config/cris/cris.opt:81 +msgid "Do not emit addressing modes with side-effect assignment" +msgstr "" + +#: config/cris/cris.opt:90 +msgid "Do not tune stack alignment" +msgstr "" + +#: config/cris/cris.opt:99 +msgid "Do not tune writable data alignment" +msgstr "" + +#: config/cris/cris.opt:108 +msgid "Do not tune code and read-only data alignment" +msgstr "" + +#: config/cris/cris.opt:117 +msgid "Align code and data to 32 bits" +msgstr "" + +#: config/cris/cris.opt:134 +msgid "Don't align items in code or data" +msgstr "" + +#: config/cris/cris.opt:143 +msgid "Do not emit function prologue or epilogue" +msgstr "" + +#: config/cris/cris.opt:150 +msgid "Use the most feature-enabling options allowed by other options" +msgstr "" + +#: config/cris/cris.opt:159 +msgid "Override -mbest-lib-options" +msgstr "" + +#: config/cris/cris.opt:166 +msgid "Generate code for the specified chip or CPU version" +msgstr "" + +#: config/cris/cris.opt:170 +msgid "Tune alignment for the specified chip or CPU version" +msgstr "" + +#: config/cris/cris.opt:174 +msgid "Warn when a stackframe is larger than the specified size" +msgstr "" + +#: config/cris/linux.opt:28 +msgid "Together with -fpic and -fPIC, do not use GOTPLT references" +msgstr "" + +#: config/crx/crx.opt:24 +msgid "Support multiply accumulate instructions" +msgstr "" + +#: 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 +msgid "Assume small address space" +msgstr "" + +#: config/frv/frv.opt:24 +msgid "Use 4 media accumulators" +msgstr "" + +#: config/frv/frv.opt:28 +msgid "Use 8 media accumulators" +msgstr "" + +#: config/frv/frv.opt:32 +msgid "Enable label alignment optimizations" +msgstr "" + +#: config/frv/frv.opt:36 +msgid "Dynamically allocate cc registers" +msgstr "" + +#: config/frv/frv.opt:43 +msgid "Set the cost of branches" +msgstr "" + +#: config/frv/frv.opt:47 +msgid "Enable conditional execution other than moves/scc" +msgstr "" + +#: config/frv/frv.opt:51 +msgid "Change the maximum length of conditionally-executed sequences" +msgstr "" + +#: config/frv/frv.opt:55 +msgid "" +"Change the number of temporary registers that are available to conditionally-" +"executed sequences" +msgstr "" + +#: config/frv/frv.opt:59 +msgid "Enable conditional moves" +msgstr "" + +#: config/frv/frv.opt:63 +msgid "Set the target CPU type" +msgstr "" + +#: config/frv/frv.opt:85 +msgid "Use fp double instructions" +msgstr "" + +#: config/frv/frv.opt:89 +msgid "Change the ABI to allow double word insns" +msgstr "" + +#: config/frv/frv.opt:93 +msgid "Enable Function Descriptor PIC mode" +msgstr "" + +#: config/frv/frv.opt:97 +msgid "Just use icc0/fcc0" +msgstr "" + +#: config/frv/frv.opt:101 +msgid "Only use 32 FPRs" +msgstr "" + +#: config/frv/frv.opt:105 +msgid "Use 64 FPRs" +msgstr "" + +#: config/frv/frv.opt:109 +msgid "Only use 32 GPRs" +msgstr "" + +#: config/frv/frv.opt:113 +msgid "Use 64 GPRs" +msgstr "" + +#: config/frv/frv.opt:117 +msgid "Enable use of GPREL for read-only data in FDPIC" +msgstr "" + +#: config/frv/frv.opt:121 config/pdp11/pdp11.opt:72 +#: config/rs6000/rs6000.opt:89 +msgid "Use hardware floating point" +msgstr "" + +#: config/frv/frv.opt:125 +msgid "Enable inlining of PLT in function calls" +msgstr "" + +#: config/frv/frv.opt:129 +msgid "Enable PIC support for building libraries" +msgstr "" + +#: config/frv/frv.opt:133 +msgid "Follow the EABI linkage requirements" +msgstr "" + +#: config/frv/frv.opt:137 +msgid "Disallow direct calls to global functions" +msgstr "" + +#: config/frv/frv.opt:141 +msgid "Use media instructions" +msgstr "" + +#: config/frv/frv.opt:145 +msgid "Use multiply add/subtract instructions" +msgstr "" + +#: config/frv/frv.opt:149 +msgid "Enable optimizing &&/|| in conditional execution" +msgstr "" + +#: config/frv/frv.opt:153 +msgid "Enable nested conditional execution optimizations" +msgstr "" + +#: config/frv/frv.opt:158 +msgid "Do not mark ABI switches in e_flags" +msgstr "" + +#: config/frv/frv.opt:162 +msgid "Remove redundant membars" +msgstr "" + +#: config/frv/frv.opt:166 +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:178 config/pa/pa.opt:105 +msgid "Use software floating point" +msgstr "" + +#: config/frv/frv.opt:182 +msgid "Assume a large TLS segment" +msgstr "" + +#: config/frv/frv.opt:186 +msgid "Do not assume a large TLS segment" +msgstr "" + +#: config/frv/frv.opt:191 +msgid "Cause gas to print tomcat statistics" +msgstr "" + +#: config/frv/frv.opt:196 +msgid "Link with the library-pic libraries" +msgstr "" + +#: config/frv/frv.opt:200 +msgid "Allow branches to be packed with other instructions" +msgstr "" + +#: config/h8300/h8300.opt:24 +msgid "Generate H8S code" +msgstr "" + +#: config/h8300/h8300.opt:28 +msgid "Generate H8SX code" +msgstr "" + +#: config/h8300/h8300.opt:32 +msgid "Generate H8S/2600 code" +msgstr "" + +#: config/h8300/h8300.opt:36 +msgid "Make integers 32 bits wide" +msgstr "" + +#: config/h8300/h8300.opt:43 +msgid "Use registers for argument passing" +msgstr "" + +#: config/h8300/h8300.opt:47 +msgid "Consider access to byte sized memory slow" +msgstr "" + +#: config/h8300/h8300.opt:51 +msgid "Enable linker relaxing" +msgstr "" + +#: config/h8300/h8300.opt:55 +msgid "Generate H8/300H code" +msgstr "" + +#: config/h8300/h8300.opt:59 +msgid "Enable the normal mode" +msgstr "" + +#: config/h8300/h8300.opt:63 +msgid "Use H8/300 alignment rules" +msgstr "" + +#: config/i386/cygming.opt:24 +msgid "Create console application" +msgstr "" + +#: config/i386/cygming.opt:28 +msgid "Use the Cygwin interface" +msgstr "" + +#: config/i386/cygming.opt:32 +msgid "Generate code for a DLL" +msgstr "" + +#: config/i386/cygming.opt:36 +msgid "Ignore dllimport for functions" +msgstr "" + +#: config/i386/cygming.opt:40 +msgid "Use Mingw-specific thread support" +msgstr "" + +#: config/i386/cygming.opt:44 +msgid "Set Windows defines" +msgstr "" + +#: config/i386/cygming.opt:48 +msgid "Create GUI application" +msgstr "" + +#: config/i386/djgpp.opt:26 +msgid "Ignored (obsolete)" +msgstr "" + +#: config/i386/i386.opt:24 +msgid "sizeof(long double) is 16" +msgstr "" + +#: config/i386/i386.opt:28 +msgid "Generate 32bit i386 code" +msgstr "" + +#: config/i386/i386.opt:36 +msgid "Support 3DNow! built-in functions" +msgstr "" + +#: config/i386/i386.opt:44 +msgid "Generate 64bit x86-64 code" +msgstr "" + +#: config/i386/i386.opt:48 config/i386/i386.opt:118 config/s390/s390.opt:52 +msgid "Use hardware fp" +msgstr "" + +#: config/i386/i386.opt:52 +msgid "sizeof(long double) is 12" +msgstr "" + +#: config/i386/i386.opt:56 +msgid "Reserve space for outgoing arguments in the function prologue" +msgstr "" + +#: config/i386/i386.opt:60 +msgid "Align some doubles on dword boundary" +msgstr "" + +#: config/i386/i386.opt:64 +msgid "Function starts are aligned to this power of 2" +msgstr "" + +#: config/i386/i386.opt:68 +msgid "Jump targets are aligned to this power of 2" +msgstr "" + +#: config/i386/i386.opt:72 +msgid "Loop code aligned to this power of 2" +msgstr "" + +#: config/i386/i386.opt:76 +msgid "Align destination of the string operations" +msgstr "" + +#: config/i386/i386.opt:80 config/s390/s390.opt:32 +msgid "Generate code for given CPU" +msgstr "" + +#: config/i386/i386.opt:84 +msgid "Use given assembler dialect" +msgstr "" + +#: config/i386/i386.opt:88 +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:106 +msgid "Generate sin, cos, sqrt for FPU" +msgstr "" + +#: config/i386/i386.opt:110 +msgid "Return values of functions in FPU registers" +msgstr "" + +#: config/i386/i386.opt:114 +msgid "Generate floating point mathematics using given instruction set" +msgstr "" + +#: config/i386/i386.opt:122 config/m68k/ieee.opt:25 +msgid "Use IEEE math for fp comparisons" +msgstr "" + +#: config/i386/i386.opt:126 +msgid "Inline all known string operations" +msgstr "" + +#: config/i386/i386.opt:134 +msgid "Support MMX built-in functions" +msgstr "" + +#: config/i386/i386.opt:138 +msgid "Use native (MS) bitfield layout" +msgstr "" + +#: config/i386/i386.opt:154 +msgid "Omit the frame pointer in leaf functions" +msgstr "" + +#: config/i386/i386.opt:166 +msgid "Attempt to keep stack aligned to this power of 2" +msgstr "" + +#: config/i386/i386.opt:170 +msgid "Use push instructions to save outgoing arguments" +msgstr "" + +#: config/i386/i386.opt:174 +msgid "Use red-zone in the x86-64 code" +msgstr "" + +#: config/i386/i386.opt:178 +msgid "Number of registers used to pass integer arguments" +msgstr "" + +#: config/i386/i386.opt:182 +msgid "Alternate calling convention" +msgstr "" + +#: config/i386/i386.opt:190 +msgid "Support MMX and SSE built-in functions and code generation" +msgstr "" + +#: config/i386/i386.opt:194 +msgid "Support MMX, SSE and SSE2 built-in functions and code generation" +msgstr "" + +#: config/i386/i386.opt:198 +msgid "Support MMX, SSE, SSE2 and SSE3 built-in functions and code generation" +msgstr "" + +#: 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:210 +msgid "Enable stack probing" +msgstr "" + +#: config/i386/i386.opt:214 +msgid "Use given thread-local storage dialect" +msgstr "" + +#: config/i386/i386.opt:218 +#, c-format +msgid "Use direct references against %gs when accessing tls data" +msgstr "" + +#: 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 "" + +#: config/i386/sco5.opt:25 +msgid "Generate ELF output" +msgstr "" + +#: config/ia64/ia64.opt:3 +msgid "Generate big endian code" +msgstr "" + +#: config/ia64/ia64.opt:7 +msgid "Generate little endian code" +msgstr "" + +#: config/ia64/ia64.opt:11 +msgid "Generate code for GNU as" +msgstr "" + +#: config/ia64/ia64.opt:15 +msgid "Generate code for GNU ld" +msgstr "" + +#: config/ia64/ia64.opt:19 +msgid "Emit stop bits before and after volatile extended asms" +msgstr "" + +#: config/ia64/ia64.opt:23 +msgid "Use in/loc/out register names" +msgstr "" + +#: config/ia64/ia64.opt:30 +msgid "Enable use of sdata/scommon/sbss" +msgstr "" + +#: config/ia64/ia64.opt:34 +msgid "Generate code without GP reg" +msgstr "" + +#: config/ia64/ia64.opt:38 +msgid "gp is constant (but save/restore gp on indirect calls)" +msgstr "" + +#: config/ia64/ia64.opt:42 +msgid "Generate self-relocatable code" +msgstr "" + +#: config/ia64/ia64.opt:46 +msgid "Generate inline floating point division, optimize for latency" +msgstr "" + +#: config/ia64/ia64.opt:50 +msgid "Generate inline floating point division, optimize for throughput" +msgstr "" + +#: config/ia64/ia64.opt:57 +msgid "Generate inline integer division, optimize for latency" +msgstr "" + +#: config/ia64/ia64.opt:61 +msgid "Generate inline integer division, optimize for throughput" +msgstr "" + +#: config/ia64/ia64.opt:65 +msgid "Do not inline integer division" +msgstr "" + +#: config/ia64/ia64.opt:69 +msgid "Generate inline square root, optimize for latency" +msgstr "" + +#: config/ia64/ia64.opt:73 +msgid "Generate inline square root, optimize for throughput" +msgstr "" + +#: config/ia64/ia64.opt:77 +msgid "Do not inline square root" +msgstr "" + +#: config/ia64/ia64.opt:81 +msgid "Enable Dwarf 2 line debug info via GNU as" +msgstr "" + +#: config/ia64/ia64.opt:85 +msgid "Enable earlier placing stop bits for better scheduling" +msgstr "" + +#: config/ia64/ia64.opt:89 config/pa/pa.opt:52 +msgid "Specify range of registers to make fixed" +msgstr "" + +#: config/ia64/ilp32.opt:3 +msgid "Generate ILP32 code" +msgstr "" + +#: config/ia64/ilp32.opt:7 +msgid "Generate LP64 code" +msgstr "" + +#: config/iq2000/iq2000.opt:24 config/ms1/ms1.opt:60 +msgid "Specify CPU for code generation purposes" +msgstr "" + +#: config/iq2000/iq2000.opt:28 +msgid "Specify CPU for scheduling purposes" +msgstr "" + +#: config/iq2000/iq2000.opt:32 config/mips/mips.opt:78 +msgid "Use ROM instead of RAM" +msgstr "" + +#: config/iq2000/iq2000.opt:36 +msgid "Use GP relative sdata/sbss sections" +msgstr "" + +#: config/iq2000/iq2000.opt:41 +msgid "No default crt0.o" +msgstr "" + +#: config/iq2000/iq2000.opt:45 config/mips/mips.opt:210 +msgid "Put uninitialized constants in ROM (needs -membedded-data)" +msgstr "" + +#: config/m32c/m32c.opt:25 config/ms1/ms1.opt:32 +msgid "Use simulator runtime" +msgstr "" + +#: config/m32c/m32c.opt:29 +msgid "Compile code for R8C variants" +msgstr "" + +#: 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 +msgid "Compile for the m32rx" +msgstr "" + +#: config/m32r/m32r.opt:28 +msgid "Compile for the m32r2" +msgstr "" + +#: config/m32r/m32r.opt:32 +msgid "Compile for the m32r" +msgstr "" + +#: config/m32r/m32r.opt:36 +msgid "Align all loops to 32 byte boundary" +msgstr "" + +#: config/m32r/m32r.opt:40 +msgid "Prefer branches over conditional execution" +msgstr "" + +#: config/m32r/m32r.opt:44 +msgid "Give branches their default cost" +msgstr "" + +#: config/m32r/m32r.opt:48 +msgid "Display compile time statistics" +msgstr "" + +#: config/m32r/m32r.opt:52 +msgid "Specify cache flush function" +msgstr "" + +#: config/m32r/m32r.opt:56 +msgid "Specify cache flush trap number" +msgstr "" + +#: config/m32r/m32r.opt:60 +msgid "Only issue one instruction per cycle" +msgstr "" + +#: config/m32r/m32r.opt:64 +msgid "Allow two instructions to be issued per cycle" +msgstr "" + +#: config/m32r/m32r.opt:68 +msgid "Code size: small, medium or large" +msgstr "" + +#: config/m32r/m32r.opt:72 +msgid "Don't call any cache flush functions" +msgstr "" + +#: config/m32r/m32r.opt:76 +msgid "Don't call any cache flush trap" msgstr "" -#: config/pa/pa.opt:73 -msgid "Emit long load/store sequences" +#: config/m32r/m32r.opt:83 +msgid "Small data area: none, sdata, use" msgstr "" -#: config/pa/pa.opt:81 -msgid "Disable space regs" +#: config/m68hc11/m68hc11.opt:24 config/m68hc11/m68hc11.opt:32 +msgid "Compile for a 68HC11" msgstr "" -#: config/pa/pa.opt:97 -msgid "Use portable calling conventions" +#: config/m68hc11/m68hc11.opt:28 config/m68hc11/m68hc11.opt:36 +msgid "Compile for a 68HC12" msgstr "" -#: config/pa/pa.opt:101 -msgid "" -"Specify CPU for scheduling purposes. Valid arguments are 700, 7100, 7100LC, " -"7200, 7300, and 8000." +#: config/m68hc11/m68hc11.opt:42 config/m68hc11/m68hc11.opt:46 +msgid "Compile for a 68HCS12" msgstr "" -#: config/pa/pa.opt:113 -msgid "Do not disable space regs" +#: config/m68hc11/m68hc11.opt:50 +msgid "Auto pre/post decrement increment allowed" msgstr "" -#: config/pa/pa64-hpux.opt:24 -msgid "Assume code will be linked by GNU ld" +#: config/m68hc11/m68hc11.opt:54 +msgid "Min/max instructions allowed" msgstr "" -#: config/pa/pa64-hpux.opt:28 -msgid "Assume code will be linked by HP ld" +#: config/m68hc11/m68hc11.opt:58 +msgid "Use call and rtc for function calls and returns" msgstr "" -#: config/pdp11/pdp11.opt:24 -msgid "Generate code for an 11/10" +#: config/m68hc11/m68hc11.opt:62 +msgid "Auto pre/post decrement increment not allowed" msgstr "" -#: config/pdp11/pdp11.opt:28 -msgid "Generate code for an 11/40" +#: config/m68hc11/m68hc11.opt:66 +msgid "Use jsr and rts for function calls and returns" msgstr "" -#: config/pdp11/pdp11.opt:32 -msgid "Generate code for an 11/45" +#: config/m68hc11/m68hc11.opt:70 +msgid "Min/max instructions not allowed" msgstr "" -#: config/pdp11/pdp11.opt:36 -msgid "Use 16-bit abs patterns" +#: config/m68hc11/m68hc11.opt:74 +msgid "Use direct addressing mode for soft registers" msgstr "" -#: config/pdp11/pdp11.opt:40 -msgid "Return floating-point results in ac0 (fr0 in Unix assembler syntax)" +#: config/m68hc11/m68hc11.opt:78 +msgid "Compile with 32-bit integer mode" msgstr "" -#: config/pdp11/pdp11.opt:44 -msgid "Do not use inline patterns for copying memory" +#: config/m68hc11/m68hc11.opt:83 +msgid "Specify the register allocation order" msgstr "" -#: config/pdp11/pdp11.opt:48 -msgid "Use inline patterns for copying memory" +#: config/m68hc11/m68hc11.opt:87 +msgid "Do not use direct addressing mode for soft registers" msgstr "" -#: config/pdp11/pdp11.opt:52 -msgid "Do not pretend that branches are expensive" +#: config/m68hc11/m68hc11.opt:91 +msgid "Compile with 16-bit integer mode" msgstr "" -#: config/pdp11/pdp11.opt:56 -msgid "Pretend that branches are expensive" +#: config/m68hc11/m68hc11.opt:95 +msgid "Indicate the number of soft registers available" msgstr "" -#: config/pdp11/pdp11.opt:60 -msgid "Use the DEC assembler syntax" +#: config/m68k/m68k.opt:24 +msgid "Generate code for a 520X" msgstr "" -#: config/pdp11/pdp11.opt:64 -msgid "Use 32 bit float" +#: config/m68k/m68k.opt:28 +msgid "Generate code for a 5206e" msgstr "" -#: config/pdp11/pdp11.opt:68 -msgid "Use 64 bit float" +#: config/m68k/m68k.opt:32 +msgid "Generate code for a 528x" msgstr "" -#: config/pdp11/pdp11.opt:76 -msgid "Use 16 bit int" +#: config/m68k/m68k.opt:36 +msgid "Generate code for a 5307" msgstr "" -#: config/pdp11/pdp11.opt:80 -msgid "Use 32 bit int" +#: config/m68k/m68k.opt:40 +msgid "Generate code for a 5407" msgstr "" -#: config/pdp11/pdp11.opt:84 config/rs6000/rs6000.opt:85 -msgid "Do not use hardware floating point" +#: config/m68k/m68k.opt:44 config/m68k/m68k.opt:97 +msgid "Generate code for a 68000" msgstr "" -#: config/pdp11/pdp11.opt:88 -msgid "Target has split I&D" +#: config/m68k/m68k.opt:48 config/m68k/m68k.opt:101 +msgid "Generate code for a 68020" msgstr "" -#: config/pdp11/pdp11.opt:92 -msgid "Use UNIX assembler syntax" +#: config/m68k/m68k.opt:52 +msgid "Generate code for a 68040, without any new instructions" msgstr "" -#: config/rs6000/aix.opt:25 config/rs6000/rs6000.opt:124 -msgid "Conform more closely to IBM XLC semantics" +#: config/m68k/m68k.opt:56 +msgid "Generate code for a 68060, without any new instructions" msgstr "" -#: config/rs6000/aix41.opt:25 config/rs6000/aix64.opt:33 -msgid "Support message passing with the Parallel Environment" +#: config/m68k/m68k.opt:60 +msgid "Generate code for a 68030" msgstr "" -#: config/rs6000/aix64.opt:25 -msgid "Compile for 64-bit pointers" +#: config/m68k/m68k.opt:64 +msgid "Generate code for a 68040" msgstr "" -#: config/rs6000/aix64.opt:29 -msgid "Compile for 32-bit pointers" +#: config/m68k/m68k.opt:68 +msgid "Generate code for a 68060" msgstr "" -#: config/rs6000/darwin.opt:25 config/rs6000/sysv4.opt:133 -msgid "Generate 64-bit code" +#: config/m68k/m68k.opt:72 +msgid "Generate code for a 68302" msgstr "" -#: config/rs6000/darwin.opt:29 config/rs6000/sysv4.opt:137 -msgid "Generate 32-bit code" +#: config/m68k/m68k.opt:76 +msgid "Generate code for a 68332" msgstr "" -#: config/rs6000/darwin.opt:33 -msgid "Generate code suitable for executables (NOT shared libs)" +#: config/m68k/m68k.opt:81 +msgid "Generate code for a 68851" msgstr "" -#: config/rs6000/linux64.opt:25 -msgid "Call mcount for profiling before a function prologue" +#: config/m68k/m68k.opt:85 +msgid "Generate code that uses 68881 floating-point instructions" msgstr "" -#: config/rs6000/rs6000.opt:25 -msgid "Use POWER instruction set" +#: config/m68k/m68k.opt:89 +msgid "Align variables on a 32-bit boundary" msgstr "" -#: config/rs6000/rs6000.opt:29 -msgid "Do not use POWER instruction set" +#: config/m68k/m68k.opt:93 +msgid "Use the bit-field instructions" msgstr "" -#: config/rs6000/rs6000.opt:33 -msgid "Use POWER2 instruction set" +#: config/m68k/m68k.opt:105 +msgid "Generate code for a cpu32" msgstr "" -#: config/rs6000/rs6000.opt:37 -msgid "Use PowerPC instruction set" +#: config/m68k/m68k.opt:109 +msgid "Enable ID based shared library" msgstr "" -#: config/rs6000/rs6000.opt:41 -msgid "Do not use PowerPC instruction set" +#: config/m68k/m68k.opt:113 +msgid "Do not use the bit-field instructions" msgstr "" -#: config/rs6000/rs6000.opt:45 -msgid "Use PowerPC-64 instruction set" +#: config/m68k/m68k.opt:117 +msgid "Use normal calling convention" msgstr "" -#: config/rs6000/rs6000.opt:49 -msgid "Use PowerPC General Purpose group optional instructions" +#: config/m68k/m68k.opt:121 +msgid "Consider type 'int' to be 32 bits wide" msgstr "" -#: config/rs6000/rs6000.opt:53 -msgid "Use PowerPC Graphics group optional instructions" +#: config/m68k/m68k.opt:125 +msgid "Generate pc-relative code" msgstr "" -#: config/rs6000/rs6000.opt:57 -msgid "Generate single field mfcr instruction" +#: config/m68k/m68k.opt:129 +msgid "Use different calling convention using 'rtd'" msgstr "" -#: config/rs6000/rs6000.opt:61 -msgid "Use PowerPC/AS popcntb instruction" +#: config/m68k/m68k.opt:133 +msgid "Enable separate data segment" msgstr "" -#: config/rs6000/rs6000.opt:65 -msgid "Use AltiVec instructions" +#: config/m68k/m68k.opt:141 +msgid "Consider type 'int' to be 16 bits wide" msgstr "" -#: config/rs6000/rs6000.opt:69 -msgid "Generate load/store multiple instructions" +#: config/m68k/m68k.opt:145 +msgid "Generate code with library calls for floating point" msgstr "" -#: config/rs6000/rs6000.opt:73 -msgid "Generate string instructions for block moves" +#: config/m68k/m68k.opt:149 +msgid "Do not use unaligned memory references" msgstr "" -#: config/rs6000/rs6000.opt:77 -msgid "Use new mnemonics for PowerPC architecture" +#: config/mcore/mcore.opt:24 +msgid "Generate code for the M*Core M210" msgstr "" -#: config/rs6000/rs6000.opt:81 -msgid "Use old mnemonics for PowerPC architecture" +#: config/mcore/mcore.opt:28 +msgid "Generate code for the M*Core M340" msgstr "" -#: config/rs6000/rs6000.opt:93 -msgid "Do not generate load/store with update instructions" +#: config/mcore/mcore.opt:32 +msgid "Set maximum alignment to 4" msgstr "" -#: config/rs6000/rs6000.opt:97 -msgid "Generate load/store with update instructions" +#: config/mcore/mcore.opt:36 +msgid "Force functions to be aligned to a 4 byte boundary" msgstr "" -#: config/rs6000/rs6000.opt:101 -msgid "Do not generate fused multiply/add instructions" +#: config/mcore/mcore.opt:40 +msgid "Set maximum alignment to 8" msgstr "" -#: config/rs6000/rs6000.opt:105 -msgid "Generate fused multiply/add instructions" +#: config/mcore/mcore.opt:44 +msgid "Generate big-endian code" msgstr "" -#: config/rs6000/rs6000.opt:109 -msgid "Schedule the start and end of the procedure" +#: config/mcore/mcore.opt:48 +msgid "Emit call graph information" +msgstr "" + +#: config/mcore/mcore.opt:52 +msgid "Use the divide instruction" +msgstr "" + +#: config/mcore/mcore.opt:56 +msgid "Inline constants if it can be done in 2 insns or less" +msgstr "" + +#: config/mcore/mcore.opt:60 +msgid "Generate little-endian code" +msgstr "" + +#: config/mcore/mcore.opt:68 +msgid "Use arbitrary sized immediates in bit operations" +msgstr "" + +#: config/mcore/mcore.opt:72 +msgid "Prefer word accesses over byte accesses" +msgstr "" + +#: config/mcore/mcore.opt:76 +msgid "Set the maximum amount for a single stack increment operation" +msgstr "" + +#: config/mcore/mcore.opt:80 +msgid "Always treat bitfields as int-sized" +msgstr "" + +#: config/mips/mips.opt:24 +msgid "Generate code that conforms to the given ABI" +msgstr "" + +#: config/mips/mips.opt:28 +msgid "Use SVR4-style PIC" +msgstr "" + +#: config/mips/mips.opt:32 +msgid "Use PMC-style 'mad' instructions" +msgstr "" + +#: config/mips/mips.opt:36 +msgid "Generate code for the given ISA" msgstr "" -#: config/rs6000/rs6000.opt:116 -msgid "Return all structures in memory (AIX default)" +#: config/mips/mips.opt:40 +msgid "Use Branch Likely instructions, overriding the architecture default" msgstr "" -#: config/rs6000/rs6000.opt:120 -msgid "Return small structures in registers (SVR4 default)" +#: config/mips/mips.opt:44 +msgid "Trap on integer divide by zero" msgstr "" -#: config/rs6000/rs6000.opt:128 -msgid "Generate software floating point divide for better throughput" +#: config/mips/mips.opt:48 +msgid "Use branch-and-break sequences to check for integer divide by zero" msgstr "" -#: config/rs6000/rs6000.opt:132 -msgid "Do not place floating point constants in TOC" +#: config/mips/mips.opt:52 +msgid "Use trap instructions to check for integer divide by zero" msgstr "" -#: config/rs6000/rs6000.opt:136 -msgid "Place floating point constants in TOC" +#: config/mips/mips.opt:56 +msgid "" +"Allow hardware floating-point instructions to cover both 32-bit and 64-bit " +"operations" msgstr "" -#: config/rs6000/rs6000.opt:140 -msgid "Do not place symbol+offset constants in TOC" +#: config/mips/mips.opt:60 +msgid "Use MIPS-DSP instructions" msgstr "" -#: config/rs6000/rs6000.opt:144 -msgid "Place symbol+offset constants in TOC" +#: config/mips/mips.opt:70 +msgid "Use big-endian byte order" msgstr "" -#: config/rs6000/rs6000.opt:155 -msgid "Use only one TOC entry per procedure" +#: config/mips/mips.opt:74 +msgid "Use little-endian byte order" msgstr "" -#: config/rs6000/rs6000.opt:159 -msgid "Put everything in the regular TOC" +#: config/mips/mips.opt:82 +msgid "Use NewABI-style %reloc() assembly operators" msgstr "" -#: config/rs6000/rs6000.opt:163 -msgid "Generate VRSAVE instructions when generating AltiVec code" +#: config/mips/mips.opt:86 +msgid "Work around certain R4000 errata" msgstr "" -#: config/rs6000/rs6000.opt:167 -msgid "Deprecated option. Use -mvrsave/-mno-vrsave instead." +#: config/mips/mips.opt:90 +msgid "Work around certain R4400 errata" msgstr "" -#: config/rs6000/rs6000.opt:171 -msgid "Generate isel instructions" +#: config/mips/mips.opt:94 +msgid "Work around errata for early SB-1 revision 2 cores" msgstr "" -#: config/rs6000/rs6000.opt:175 -msgid "Deprecated option. Use -misel/-mno-isel instead" +#: config/mips/mips.opt:98 +msgid "Work around certain VR4120 errata" msgstr "" -#: config/rs6000/rs6000.opt:179 -msgid "Generate SPE SIMD instructions on E500" +#: config/mips/mips.opt:102 +msgid "Work around VR4130 mflo/mfhi errata" msgstr "" -#: config/rs6000/rs6000.opt:183 -msgid "Deprecated option. Use -mspe/-mno-spe instead" +#: config/mips/mips.opt:106 +msgid "Work around an early 4300 hardware bug" msgstr "" -#: config/rs6000/rs6000.opt:187 -msgid "Enable debug output" +#: config/mips/mips.opt:110 +msgid "FP exceptions are enabled" msgstr "" -#: config/rs6000/rs6000.opt:191 -msgid "Specify ABI to use" +#: config/mips/mips.opt:114 +msgid "Use 32-bit floating-point registers" msgstr "" -#: config/rs6000/rs6000.opt:195 config/sparc/sparc.opt:92 -msgid "Use features of and schedule code for given CPU" +#: config/mips/mips.opt:118 +msgid "Use 64-bit floating-point registers" msgstr "" -#: config/rs6000/rs6000.opt:203 -msgid "Select full, part, or no traceback table" +#: config/mips/mips.opt:122 +msgid "Use FUNC to flush the cache before calling stack trampolines" msgstr "" -#: config/rs6000/rs6000.opt:207 -msgid "Avoid all range limits on call instructions" +#: config/mips/mips.opt:126 +msgid "Generate floating-point multiply-add instructions" msgstr "" -#: config/rs6000/rs6000.opt:211 -msgid "Warn about deprecated 'vector long ...' AltiVec type usage" +#: config/mips/mips.opt:130 +msgid "Use 32-bit general registers" msgstr "" -#: config/rs6000/rs6000.opt:215 -msgid "Select GPR floating point method." +#: config/mips/mips.opt:134 +msgid "Use 64-bit general registers" msgstr "" -#: config/rs6000/rs6000.opt:219 -msgid "Specify size of long double (64 or 128 bits)" +#: config/mips/mips.opt:138 +msgid "Allow the use of hardware floating-point instructions" msgstr "" -#: config/rs6000/rs6000.opt:223 -msgid "Determine which dependences between insns are considered costly" +#: config/mips/mips.opt:142 +msgid "Generate code for ISA level N" msgstr "" -#: config/rs6000/rs6000.opt:227 -msgid "Specify which post scheduling nop insertion scheme to apply" +#: config/mips/mips.opt:146 +msgid "Generate mips16 code" msgstr "" -#: config/rs6000/rs6000.opt:231 -msgid "Specify alignment of structure fields default/natural" +#: config/mips/mips.opt:150 +msgid "Use MIPS-3D instructions" msgstr "" -#: config/rs6000/rs6000.opt:235 -msgid "Specify scheduling priority for dispatch slot restricted insns" +#: config/mips/mips.opt:154 +msgid "Use indirect calls" msgstr "" -#: config/rs6000/sysv4.opt:25 -msgid "Select ABI calling convention" +#: config/mips/mips.opt:158 +msgid "Use a 32-bit long type" msgstr "" -#: config/rs6000/sysv4.opt:29 -msgid "Select method for sdata handling" +#: config/mips/mips.opt:162 +msgid "Use a 64-bit long type" msgstr "" -#: config/rs6000/sysv4.opt:37 config/rs6000/sysv4.opt:41 -msgid "Align to the base type of the bit-field" +#: config/mips/mips.opt:166 +msgid "Don't optimize block moves" msgstr "" -#: config/rs6000/sysv4.opt:46 config/rs6000/sysv4.opt:50 -msgid "Produce code relocatable at runtime" +#: config/mips/mips.opt:170 +msgid "Use the mips-tfile postpass" msgstr "" -#: config/rs6000/sysv4.opt:54 config/rs6000/sysv4.opt:58 -msgid "Produce little endian code" +#: config/mips/mips.opt:174 +msgid "Do not use a cache-flushing function before calling stack trampolines" msgstr "" -#: config/rs6000/sysv4.opt:62 config/rs6000/sysv4.opt:66 -msgid "Produce big endian code" +#: config/mips/mips.opt:178 +msgid "Generate normal-mode 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 -msgid "no description yet" +#: config/mips/mips.opt:182 +msgid "Do not use MIPS-3D instructions" msgstr "" -#: config/rs6000/sysv4.opt:88 -msgid "Use EABI" +#: config/mips/mips.opt:186 +msgid "Use paired-single floating-point instructions" msgstr "" -#: config/rs6000/sysv4.opt:92 -msgid "Allow bit-fields to cross word boundaries" +#: config/mips/mips.opt:190 +msgid "" +"Restrict the use of hardware floating-point instructions to 32-bit operations" msgstr "" -#: config/rs6000/sysv4.opt:96 -msgid "Use alternate register names" +#: config/mips/mips.opt:194 +msgid "Prevent the use of all hardware floating-point instructions" msgstr "" -#: config/rs6000/sysv4.opt:105 -msgid "Link with libsim.a, libc.a and sim-crt0.o" +#: config/mips/mips.opt:198 +msgid "Optimize lui/addiu address loads" msgstr "" -#: config/rs6000/sysv4.opt:109 -msgid "Link with libads.a, libc.a and crt0.o" +#: config/mips/mips.opt:202 +msgid "Assume all symbols have 32-bit values" msgstr "" -#: config/rs6000/sysv4.opt:113 -msgid "Link with libyk.a, libc.a and crt0.o" +#: config/mips/mips.opt:206 +msgid "Optimize the output for PROCESSOR" msgstr "" -#: config/rs6000/sysv4.opt:117 -msgid "Link with libmvme.a, libc.a and crt0.o" +#: config/mips/mips.opt:214 +msgid "Perform VR4130-specific alignment optimizations" msgstr "" -#: config/rs6000/sysv4.opt:121 -msgid "Set the PPC_EMB bit in the ELF flags header" +#: config/mips/mips.opt:218 +msgid "Lift restrictions on GOT size" msgstr "" -#: config/rs6000/sysv4.opt:125 -msgid "Use the WindISS simulator" +#: config/mmix/mmix.opt:25 +msgid "For intrinsics library: pass all parameters in registers" msgstr "" -#: config/rs6000/sysv4.opt:145 -msgid "Generate code to use a non-exec PLT and GOT" +#: config/mmix/mmix.opt:29 +msgid "Use register stack for parameters and return value" msgstr "" -#: config/rs6000/sysv4.opt:149 -msgid "Generate code for old exec BSS PLT" +#: config/mmix/mmix.opt:33 +msgid "Use call-clobbered registers for parameters and return value" msgstr "" -#: config/s390/s390.opt:24 -msgid "31 bit ABI" +#: config/mmix/mmix.opt:38 +msgid "Use epsilon-respecting floating point compare instructions" msgstr "" -#: config/s390/s390.opt:28 -msgid "64 bit ABI" +#: config/mmix/mmix.opt:42 +msgid "Use zero-extending memory loads, not sign-extending ones" msgstr "" -#: config/s390/s390.opt:36 -msgid "Maintain backchain pointer" +#: config/mmix/mmix.opt:46 +msgid "" +"Generate divide results with reminder having the same sign as the divisor " +"(not the dividend)" msgstr "" -#: config/s390/s390.opt:40 -msgid "Additional debug prints" +#: config/mmix/mmix.opt:50 +msgid "Prepend global symbols with \":\" (for use with PREFIX)" msgstr "" -#: config/s390/s390.opt:44 -msgid "ESA/390 architecture" +#: config/mmix/mmix.opt:54 +msgid "Do not provide a default start-address 0x100 of the program" msgstr "" -#: config/s390/s390.opt:48 -msgid "Enable fused multiply/add instructions" +#: config/mmix/mmix.opt:58 +msgid "Link to emit program in ELF format (rather than mmo)" msgstr "" -#: config/s390/s390.opt:56 -msgid "Use packed stack layout" +#: config/mmix/mmix.opt:62 +msgid "Use P-mnemonics for branches statically predicted as taken" msgstr "" -#: config/s390/s390.opt:60 -msgid "Use bras for executable < 64k" +#: config/mmix/mmix.opt:66 +msgid "Don't use P-mnemonics for branches" msgstr "" -#: config/s390/s390.opt:64 -msgid "Don't use hardware fp" +#: config/mmix/mmix.opt:80 +msgid "Use addresses that allocate global registers" msgstr "" -#: config/s390/s390.opt:68 -msgid "" -"Set the max. number of bytes which has to be left to stack size before a " -"trap instruction is triggered" +#: config/mmix/mmix.opt:84 +msgid "Do not use addresses that allocate global registers" msgstr "" -#: config/s390/s390.opt:72 -msgid "" -"Emit extra code in the function prologue in order to trap if the stack size " -"exceeds the given limit" +#: config/mmix/mmix.opt:88 +msgid "Generate a single exit point for each function" msgstr "" -#: config/s390/s390.opt:76 -msgid "Enable tpf OS tracing code" +#: config/mmix/mmix.opt:92 +msgid "Do not generate a single exit point for each function" msgstr "" -#: config/s390/s390.opt:84 -msgid "mvcle use" +#: config/mmix/mmix.opt:96 +msgid "Set start-address of the program" msgstr "" -#: config/s390/s390.opt:88 -msgid "Warn if a function uses alloca or creates an array with dynamic size" +#: config/mmix/mmix.opt:100 +msgid "Set start-address of data" msgstr "" -#: config/s390/s390.opt:92 -msgid "Warn if a single function's framesize exceeds the given framesize" +#: config/mn10300/mn10300.opt:24 +msgid "Target the AM33 processor" msgstr "" -#: config/s390/s390.opt:96 -msgid "z/Architecture" +#: config/mn10300/mn10300.opt:28 +msgid "Target the AM33/2.0 processor" msgstr "" -#: config/sh/sh.opt:45 -msgid "Generate SH1 code" +#: config/mn10300/mn10300.opt:32 +msgid "Work around hardware multiply bug" msgstr "" -#: config/sh/sh.opt:49 -msgid "Generate SH2 code" +#: config/mn10300/mn10300.opt:37 +msgid "Enable linker relaxations" msgstr "" -#: config/sh/sh.opt:53 -msgid "Generate SH2a code" +#: config/ms1/ms1.opt:24 +msgid "Generate multiply instructions" msgstr "" -#: config/sh/sh.opt:57 -msgid "Generate SH2a FPU-less code" +#: config/ms1/ms1.opt:28 +msgid "Use byte loads and stores when generating code." +msgstr "" + +#: config/ms1/ms1.opt:36 +msgid "Do not include crt0.o in the startup files" msgstr "" -#: config/sh/sh.opt:61 -msgid "Generate default single-precision SH2a code" +#: 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/sh/sh.opt:65 -msgid "Generate only single-precision SH2a code" +#: config/pa/pa-hpux.opt:24 +msgid "Generate cpp defines for server IO" msgstr "" -#: config/sh/sh.opt:69 -msgid "Generate SH2e code" +#: config/pa/pa-hpux.opt:28 config/pa/pa-hpux1010.opt:24 +#: config/pa/pa-hpux1111.opt:24 +msgid "Specify UNIX standard for predefines and linking" msgstr "" -#: config/sh/sh.opt:73 -msgid "Generate SH3 code" +#: config/pa/pa-hpux.opt:32 +msgid "Generate cpp defines for workstation IO" msgstr "" -#: config/sh/sh.opt:77 -msgid "Generate SH3e code" +#: config/pa/pa.opt:24 config/pa/pa.opt:77 config/pa/pa.opt:85 +msgid "Generate PA1.0 code" msgstr "" -#: config/sh/sh.opt:81 -msgid "Generate SH4 code" +#: config/pa/pa.opt:28 config/pa/pa.opt:89 config/pa/pa.opt:109 +msgid "Generate PA1.1 code" msgstr "" -#: config/sh/sh.opt:85 -msgid "Generate SH4 FPU-less code" +#: config/pa/pa.opt:32 config/pa/pa.opt:93 +msgid "Generate PA2.0 code (requires binutils 2.10 or later)" msgstr "" -#: config/sh/sh.opt:89 -msgid "Generate default single-precision SH4 code" +#: config/pa/pa.opt:36 +msgid "Generate code for huge switch statements" msgstr "" -#: config/sh/sh.opt:93 -msgid "Generate only single-precision SH4 code" +#: config/pa/pa.opt:40 +msgid "Disable FP regs" msgstr "" -#: config/sh/sh.opt:97 -msgid "Generate SH4a code" +#: config/pa/pa.opt:44 +msgid "Disable indexed addressing" msgstr "" -#: config/sh/sh.opt:101 -msgid "Generate SH4a FPU-less code" +#: config/pa/pa.opt:48 +msgid "Generate fast indirect calls" msgstr "" -#: config/sh/sh.opt:105 -msgid "Generate default single-precision SH4a code" +#: config/pa/pa.opt:56 +msgid "Assume code will be assembled by GAS" msgstr "" -#: config/sh/sh.opt:109 -msgid "Generate only single-precision SH4a code" +#: config/pa/pa.opt:60 +msgid "Put jumps in call delay slots" msgstr "" -#: config/sh/sh.opt:113 -msgid "Generate SH4al-dsp code" +#: config/pa/pa.opt:65 +msgid "Enable linker optimizations" msgstr "" -#: config/sh/sh.opt:117 -msgid "Generate 32-bit SHmedia code" +#: config/pa/pa.opt:69 +msgid "Always generate long calls" msgstr "" -#: config/sh/sh.opt:121 -msgid "Generate 32-bit FPU-less SHmedia code" +#: config/pa/pa.opt:73 +msgid "Emit long load/store sequences" msgstr "" -#: config/sh/sh.opt:125 -msgid "Generate 64-bit SHmedia code" +#: config/pa/pa.opt:81 +msgid "Disable space regs" msgstr "" -#: config/sh/sh.opt:129 -msgid "Generate 64-bit FPU-less SHmedia code" +#: config/pa/pa.opt:97 +msgid "Use portable calling conventions" msgstr "" -#: config/sh/sh.opt:133 -msgid "Generate SHcompact code" +#: config/pa/pa.opt:101 +msgid "" +"Specify CPU for scheduling purposes. Valid arguments are 700, 7100, 7100LC, " +"7200, 7300, and 8000" msgstr "" -#: config/sh/sh.opt:137 -msgid "Generate FPU-less SHcompact code" +#: config/pa/pa.opt:113 +msgid "Do not disable space regs" msgstr "" -#: config/sh/sh.opt:141 -msgid "" -"Throttle unrolling to avoid thrashing target registers unless the unroll " -"benefit outweighs this" +#: config/pa/pa64-hpux.opt:24 +msgid "Assume code will be linked by GNU ld" msgstr "" -#: config/sh/sh.opt:145 -msgid "Generate code in big endian mode" +#: config/pa/pa64-hpux.opt:28 +msgid "Assume code will be linked by HP ld" msgstr "" -#: config/sh/sh.opt:149 -msgid "Generate 32-bit offsets in switch tables" +#: config/pdp11/pdp11.opt:24 +msgid "Generate code for an 11/10" msgstr "" -#: config/sh/sh.opt:153 -msgid "Enable SH5 cut2 workaround" +#: config/pdp11/pdp11.opt:28 +msgid "Generate code for an 11/40" msgstr "" -#: config/sh/sh.opt:157 -msgid "Align doubles at 64-bit boundaries" +#: config/pdp11/pdp11.opt:32 +msgid "Generate code for an 11/45" msgstr "" -#: config/sh/sh.opt:161 -msgid "" -"Division strategy, one of: call, call2, fp, inv, inv:minlat, inv20u, inv20l, " -"inv:call, inv:call2, inv:fp" +#: config/pdp11/pdp11.opt:36 +msgid "Use 16-bit abs patterns" msgstr "" -#: config/sh/sh.opt:165 -msgid "Specify name for 32 bit signed division function" +#: config/pdp11/pdp11.opt:40 +msgid "Return floating-point results in ac0 (fr0 in Unix assembler syntax)" msgstr "" -#: config/sh/sh.opt:172 -msgid "Cost to assume for gettr insn" +#: config/pdp11/pdp11.opt:44 +msgid "Do not use inline patterns for copying memory" msgstr "" -#: config/sh/sh.opt:176 config/sh/sh.opt:222 -msgid "Follow Renesas (formerly Hitachi) / SuperH calling conventions" +#: config/pdp11/pdp11.opt:48 +msgid "Use inline patterns for copying memory" msgstr "" -#: config/sh/sh.opt:180 -msgid "Increase the IEEE compliance for floating-point code" +#: config/pdp11/pdp11.opt:52 +msgid "Do not pretend that branches are expensive" msgstr "" -#: config/sh/sh.opt:184 -msgid "Enable the use of the indexed addressing mode for SHmedia32/SHcompact" +#: config/pdp11/pdp11.opt:56 +msgid "Pretend that branches are expensive" msgstr "" -#: config/sh/sh.opt:188 -msgid "Assume symbols might be invalid" +#: config/pdp11/pdp11.opt:60 +msgid "Use the DEC assembler syntax" msgstr "" -#: config/sh/sh.opt:192 -msgid "Annotate assembler instructions with estimated addresses" +#: config/pdp11/pdp11.opt:64 +msgid "Use 32 bit float" msgstr "" -#: config/sh/sh.opt:196 -msgid "Generate code in little endian mode" +#: config/pdp11/pdp11.opt:68 +msgid "Use 64 bit float" msgstr "" -#: config/sh/sh.opt:200 -msgid "Mark MAC register as call-clobbered" +#: config/pdp11/pdp11.opt:76 +msgid "Use 16 bit int" msgstr "" -#: config/sh/sh.opt:206 -msgid "Make structs a multiple of 4 bytes (warning: ABI altered)" +#: config/pdp11/pdp11.opt:80 +msgid "Use 32 bit int" msgstr "" -#: config/sh/sh.opt:210 -msgid "Emit function-calls using global offset table when generating PIC" +#: config/pdp11/pdp11.opt:84 config/rs6000/rs6000.opt:85 +msgid "Do not use hardware floating point" msgstr "" -#: config/sh/sh.opt:214 -msgid "Assume pt* instructions won't trap" +#: config/pdp11/pdp11.opt:88 +msgid "Target has split I&D" msgstr "" -#: config/sh/sh.opt:218 -msgid "Shorten address references during linking" +#: config/pdp11/pdp11.opt:92 +msgid "Use UNIX assembler syntax" msgstr "" -#: config/sh/sh.opt:226 -msgid "Deprecated. Use -Os instead" +#: config/rs6000/aix41.opt:25 config/rs6000/aix64.opt:33 +msgid "Support message passing with the Parallel Environment" msgstr "" -#: config/sh/sh.opt:230 -msgid "Cost to assume for a multiply insn" +#: config/rs6000/aix.opt:25 config/rs6000/rs6000.opt:124 +msgid "Conform more closely to IBM XLC semantics" msgstr "" -#: config/sh/sh.opt:234 -msgid "" -"Generate library function call to invalidate instruction cache entries after " -"fixing trampoline" +#: config/rs6000/aix64.opt:25 +msgid "Compile for 64-bit pointers" msgstr "" -#: config/sparc/little-endian.opt:24 -msgid "Generate code for little-endian" +#: config/rs6000/aix64.opt:29 +msgid "Compile for 32-bit pointers" msgstr "" -#: config/sparc/little-endian.opt:28 -msgid "Generate code for big-endian" +#: config/rs6000/darwin.opt:25 config/rs6000/sysv4.opt:133 +msgid "Generate 64-bit code" msgstr "" -#: config/sparc/sparc.opt:24 config/sparc/sparc.opt:28 -msgid "Use hardware FP" +#: config/rs6000/darwin.opt:29 config/rs6000/sysv4.opt:137 +msgid "Generate 32-bit code" msgstr "" -#: config/sparc/sparc.opt:32 -msgid "Do not use hardware FP" +#: config/rs6000/darwin.opt:33 +msgid "Generate code suitable for executables (NOT shared libs)" msgstr "" -#: config/sparc/sparc.opt:36 -msgid "Assume possible double misalignment" +#: config/rs6000/linux64.opt:25 +msgid "Call mcount for profiling before a function prologue" msgstr "" -#: config/sparc/sparc.opt:40 -msgid "Pass -assert pure-text to linker" +#: config/rs6000/rs6000.opt:25 +msgid "Use POWER instruction set" msgstr "" -#: config/sparc/sparc.opt:44 -msgid "Use ABI reserved registers" +#: config/rs6000/rs6000.opt:29 +msgid "Do not use POWER instruction set" msgstr "" -#: config/sparc/sparc.opt:48 -msgid "Use hardware quad FP instructions" +#: config/rs6000/rs6000.opt:33 +msgid "Use POWER2 instruction set" msgstr "" -#: config/sparc/sparc.opt:52 -msgid "Do not use hardware quad fp instructions" +#: config/rs6000/rs6000.opt:37 +msgid "Use PowerPC instruction set" msgstr "" -#: config/sparc/sparc.opt:56 -msgid "Compile for V8+ ABI" +#: config/rs6000/rs6000.opt:41 +msgid "Do not use PowerPC instruction set" msgstr "" -#: config/sparc/sparc.opt:60 -msgid "Use UltraSPARC Visual Instruction Set extensions" +#: config/rs6000/rs6000.opt:45 +msgid "Use PowerPC-64 instruction set" msgstr "" -#: config/sparc/sparc.opt:64 -msgid "Pointers are 64-bit" +#: config/rs6000/rs6000.opt:49 +msgid "Use PowerPC General Purpose group optional instructions" msgstr "" -#: config/sparc/sparc.opt:68 -msgid "Pointers are 32-bit" +#: config/rs6000/rs6000.opt:53 +msgid "Use PowerPC Graphics group optional instructions" msgstr "" -#: config/sparc/sparc.opt:72 -msgid "Use 64-bit ABI" +#: config/rs6000/rs6000.opt:57 +msgid "Generate single field mfcr instruction" msgstr "" -#: config/sparc/sparc.opt:76 -msgid "Use 32-bit ABI" +#: config/rs6000/rs6000.opt:61 +msgid "Use PowerPC/AS popcntb instruction" msgstr "" -#: config/sparc/sparc.opt:80 -msgid "Use stack bias" +#: config/rs6000/rs6000.opt:65 +msgid "Use AltiVec instructions" msgstr "" -#: config/sparc/sparc.opt:84 -msgid "Use structs on stronger alignment for double-word copies" +#: config/rs6000/rs6000.opt:69 +msgid "Generate load/store multiple instructions" msgstr "" -#: config/sparc/sparc.opt:88 -msgid "Optimize tail call instructions in assembler and linker" +#: config/rs6000/rs6000.opt:73 +msgid "Generate string instructions for block moves" msgstr "" -#: config/sparc/sparc.opt:100 -msgid "Use given SPARC-V9 code model" +#: config/rs6000/rs6000.opt:77 +msgid "Use new mnemonics for PowerPC architecture" msgstr "" -#: config/stormy16/stormy16.opt:25 -msgid "Provide libraries for the simulator" +#: config/rs6000/rs6000.opt:81 +msgid "Use old mnemonics for PowerPC architecture" +msgstr "" + +#: config/rs6000/rs6000.opt:93 +msgid "Do not generate load/store with update instructions" msgstr "" -#: config/v850/v850.opt:24 -msgid "Use registers r2 and r5" +#: config/rs6000/rs6000.opt:97 +msgid "Generate load/store with update instructions" msgstr "" -#: config/v850/v850.opt:28 -msgid "Use 4 byte entries in switch tables" +#: config/rs6000/rs6000.opt:101 +msgid "Do not generate fused multiply/add instructions" msgstr "" -#: config/v850/v850.opt:32 -msgid "Enable backend debugging" +#: config/rs6000/rs6000.opt:105 +msgid "Generate fused multiply/add instructions" msgstr "" -#: config/v850/v850.opt:36 -msgid "Do not use the callt instruction" +#: config/rs6000/rs6000.opt:109 +msgid "Schedule the start and end of the procedure" msgstr "" -#: config/v850/v850.opt:40 -msgid "Reuse r30 on a per function basis" +#: config/rs6000/rs6000.opt:116 +msgid "Return all structures in memory (AIX default)" msgstr "" -#: config/v850/v850.opt:44 -msgid "Support Green Hills ABI" +#: config/rs6000/rs6000.opt:120 +msgid "Return small structures in registers (SVR4 default)" msgstr "" -#: config/v850/v850.opt:48 -msgid "Prohibit PC relative function calls" +#: config/rs6000/rs6000.opt:128 +msgid "Generate software floating point divide for better throughput" msgstr "" -#: config/v850/v850.opt:52 -msgid "Use stubs for function prologues" +#: config/rs6000/rs6000.opt:132 +msgid "Do not place floating point constants in TOC" msgstr "" -#: config/v850/v850.opt:56 -msgid "Set the max size of data eligible for the SDA area" +#: config/rs6000/rs6000.opt:136 +msgid "Place floating point constants in TOC" msgstr "" -#: config/v850/v850.opt:60 -msgid "Enable the use of the short load instructions" +#: config/rs6000/rs6000.opt:140 +msgid "Do not place symbol+offset constants in TOC" msgstr "" -#: config/v850/v850.opt:64 -msgid "Same as: -mep -mprolog-function" +#: config/rs6000/rs6000.opt:144 +msgid "Place symbol+offset constants in TOC" msgstr "" -#: config/v850/v850.opt:68 -msgid "Set the max size of data eligible for the TDA area" +#: config/rs6000/rs6000.opt:155 +msgid "Use only one TOC entry per procedure" msgstr "" -#: config/v850/v850.opt:72 -msgid "Enforce strict alignment" +#: config/rs6000/rs6000.opt:159 +msgid "Put everything in the regular TOC" msgstr "" -#: config/v850/v850.opt:79 -msgid "Compile for the v850 processor" +#: config/rs6000/rs6000.opt:163 +msgid "Generate VRSAVE instructions when generating AltiVec code" msgstr "" -#: config/v850/v850.opt:83 -msgid "Compile for the v850e processor" +#: config/rs6000/rs6000.opt:167 +msgid "Deprecated option. Use -mvrsave/-mno-vrsave instead" msgstr "" -#: config/v850/v850.opt:87 -msgid "Compile for the v850e1 processor" +#: config/rs6000/rs6000.opt:171 +msgid "Generate isel instructions" msgstr "" -#: config/v850/v850.opt:91 -msgid "Set the max size of data eligible for the ZDA area" +#: config/rs6000/rs6000.opt:175 +msgid "Deprecated option. Use -misel/-mno-isel instead" msgstr "" -#: config/vax/vax.opt:24 config/vax/vax.opt:28 -msgid "Target DFLOAT double precision code" +#: config/rs6000/rs6000.opt:179 +msgid "Generate SPE SIMD instructions on E500" msgstr "" -#: config/vax/vax.opt:32 config/vax/vax.opt:36 -msgid "Generate GFLOAT double precision code" +#: config/rs6000/rs6000.opt:183 +msgid "Deprecated option. Use -mspe/-mno-spe instead" msgstr "" -#: config/vax/vax.opt:40 -msgid "Generate code for GNU assembler (gas)" +#: config/rs6000/rs6000.opt:187 +msgid "Enable debug output" msgstr "" -#: config/vax/vax.opt:44 -msgid "Generate code for UNIX assembler" +#: config/rs6000/rs6000.opt:191 +msgid "Specify ABI to use" msgstr "" -#: config/vax/vax.opt:48 -msgid "Use VAXC structure conventions" +#: config/rs6000/rs6000.opt:195 config/sparc/sparc.opt:92 +msgid "Use features of and schedule code for given CPU" msgstr "" -#: config/xtensa/xtensa.opt:24 -msgid "Use CONST16 instruction to load constants" +#: config/rs6000/rs6000.opt:203 +msgid "Select full, part, or no traceback table" msgstr "" -#: config/xtensa/xtensa.opt:28 -msgid "Enable fused multiply/add and multiply/subtract FP instructions" +#: config/rs6000/rs6000.opt:207 +msgid "Avoid all range limits on call instructions" msgstr "" -#: config/xtensa/xtensa.opt:32 -msgid "Use indirect CALLXn instructions for large programs" +#: config/rs6000/rs6000.opt:211 +msgid "Warn about deprecated 'vector long ...' AltiVec type usage" msgstr "" -#: config/xtensa/xtensa.opt:36 -msgid "Automatically align branch targets to reduce branch penalties" +#: config/rs6000/rs6000.opt:215 +msgid "Select GPR floating point method" msgstr "" -#: config/xtensa/xtensa.opt:40 -msgid "Intersperse literal pools with code in the text section" +#: config/rs6000/rs6000.opt:219 +msgid "Specify size of long double (64 or 128 bits)" msgstr "" -#: fortran/lang.opt:30 -msgid "Add a directory for INCLUDE and MODULE searching" +#: config/rs6000/rs6000.opt:223 +msgid "Determine which dependences between insns are considered costly" msgstr "" -#: fortran/lang.opt:34 -msgid "Put MODULE files in 'directory'" +#: config/rs6000/rs6000.opt:227 +msgid "Specify which post scheduling nop insertion scheme to apply" msgstr "" -#: fortran/lang.opt:42 -msgid "Warn about possible aliasing of dummy arguments" +#: config/rs6000/rs6000.opt:231 +msgid "Specify alignment of structure fields default/natural" msgstr "" -#: fortran/lang.opt:46 -msgid "Warn about implicit conversion" +#: config/rs6000/rs6000.opt:235 +msgid "Specify scheduling priority for dispatch slot restricted insns" msgstr "" -#: fortran/lang.opt:50 -msgid "Warn about calls with implicit interface" +#: config/rs6000/sysv4.opt:25 +msgid "Select ABI calling convention" msgstr "" -#: fortran/lang.opt:54 -msgid "Warn about truncated source lines" +#: config/rs6000/sysv4.opt:29 +msgid "Select method for sdata handling" msgstr "" -#: fortran/lang.opt:58 -msgid "Warn about usage of non-standard intrinsics" +#: config/rs6000/sysv4.opt:37 config/rs6000/sysv4.opt:41 +msgid "Align to the base type of the bit-field" msgstr "" -#: fortran/lang.opt:62 -msgid "Warn about \"suspicious\" constructs" +#: config/rs6000/sysv4.opt:46 config/rs6000/sysv4.opt:50 +msgid "Produce code relocatable at runtime" msgstr "" -#: fortran/lang.opt:66 -msgid "Warn about underflow of numerical constant expressions" +#: config/rs6000/sysv4.opt:54 config/rs6000/sysv4.opt:58 +msgid "Produce little endian code" msgstr "" -#: fortran/lang.opt:74 -msgid "Set the default double precision kind to an 8 byte wide type" +#: config/rs6000/sysv4.opt:62 config/rs6000/sysv4.opt:66 +msgid "Produce big endian code" msgstr "" -#: fortran/lang.opt:78 -msgid "Set the default integer kind to an 8 byte wide type" +#: config/rs6000/sysv4.opt:71 config/rs6000/sysv4.opt:75 +#: 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 "" -#: fortran/lang.opt:82 -msgid "Set the default real kind to an 8 byte wide type" +#: config/rs6000/sysv4.opt:79 +msgid "Assume all variable arg functions are prototyped" msgstr "" -#: fortran/lang.opt:86 -msgid "Allow dollar signs in entity names" +#: config/rs6000/sysv4.opt:88 +msgid "Use EABI" msgstr "" -#: fortran/lang.opt:90 -msgid "Specify that backslash in string introduces an escape character" +#: config/rs6000/sysv4.opt:92 +msgid "Allow bit-fields to cross word boundaries" msgstr "" -#: fortran/lang.opt:94 -msgid "Display the code tree after parsing." +#: config/rs6000/sysv4.opt:96 +msgid "Use alternate register names" msgstr "" -#: fortran/lang.opt:98 -msgid "Use f2c calling convention." +#: config/rs6000/sysv4.opt:105 +msgid "Link with libsim.a, libc.a and sim-crt0.o" msgstr "" -#: fortran/lang.opt:102 -msgid "Assume that the source file is fixed form" +#: config/rs6000/sysv4.opt:109 +msgid "Link with libads.a, libc.a and crt0.o" msgstr "" -#: fortran/lang.opt:106 -msgid "Assume that the source file is free form" +#: config/rs6000/sysv4.opt:113 +msgid "Link with libyk.a, libc.a and crt0.o" msgstr "" -#: fortran/lang.opt:110 -msgid "Append underscores to externally visible names" +#: config/rs6000/sysv4.opt:117 +msgid "Link with libmvme.a, libc.a and crt0.o" msgstr "" -#: fortran/lang.opt:114 -msgid "Append a second underscore if the name already contains an underscore" +#: config/rs6000/sysv4.opt:121 +msgid "Set the PPC_EMB bit in the ELF flags header" msgstr "" -#: fortran/lang.opt:118 -msgid "" -"Specify that no implicit typing is allowed, unless overridden by explicit " -"IMPLICIT statements" +#: config/rs6000/sysv4.opt:125 +msgid "Use the WindISS simulator" msgstr "" -#: fortran/lang.opt:122 -msgid "Allow arbitrary character line width in fixed mode" +#: config/rs6000/sysv4.opt:145 +msgid "Generate code to use a non-exec PLT and GOT" msgstr "" -#: fortran/lang.opt:126 -msgid "Use n as character line width in fixed mode" +#: config/rs6000/sysv4.opt:149 +msgid "Generate code for old exec BSS PLT" msgstr "" -#: fortran/lang.opt:130 -msgid "Maximum identifier length." +#: config/s390/s390.opt:24 +msgid "31 bit ABI" msgstr "" -#: fortran/lang.opt:134 -msgid "Size in bytes of the largest array that will be put on the stack" +#: config/s390/s390.opt:28 +msgid "64 bit ABI" msgstr "" -#: fortran/lang.opt:138 -msgid "Set default accessibility of module entities to PRIVATE" +#: config/s390/s390.opt:36 +msgid "Maintain backchain pointer" msgstr "" -#: fortran/lang.opt:142 -msgid "Don't generate code, just do syntax and semantics checking" +#: config/s390/s390.opt:40 +msgid "Additional debug prints" msgstr "" -#: fortran/lang.opt:146 -msgid "Try to layout derived types as compact as possible" +#: config/s390/s390.opt:44 +msgid "ESA/390 architecture" msgstr "" -#: fortran/lang.opt:150 -msgid "Copy array sections into a contiguous block on procedure entry" +#: config/s390/s390.opt:48 +msgid "Enable fused multiply/add instructions" msgstr "" -#: fortran/lang.opt:154 -msgid "Set the kind for a real with the 'q' exponent to 'n'" +#: config/s390/s390.opt:56 +msgid "Use packed stack layout" msgstr "" -#: fortran/lang.opt:158 -msgid "Conform to the ISO Fortran 95 standard." +#: config/s390/s390.opt:60 +msgid "Use bras for executable < 64k" msgstr "" -#: fortran/lang.opt:162 -msgid "Conform to the ISO Fortran 2003 standard." +#: config/s390/s390.opt:64 +msgid "Don't use hardware fp" msgstr "" -#: fortran/lang.opt:166 -msgid "Conform nothing in particular." +#: config/s390/s390.opt:68 +msgid "" +"Set the max. number of bytes which has to be left to stack size before a " +"trap instruction is triggered" msgstr "" -#: fortran/lang.opt:170 -msgid "Accept extensions to support legacy code." +#: config/s390/s390.opt:72 +msgid "" +"Emit extra code in the function prologue in order to trap if the stack size " +"exceeds the given limit" msgstr "" -#: java/lang.opt:66 -msgid "Warn if a deprecated compiler feature, class, method, or field is used" +#: config/s390/s390.opt:80 +msgid "mvcle use" msgstr "" -#: java/lang.opt:70 -msgid "Warn if deprecated empty statements are found" +#: config/s390/s390.opt:84 +msgid "Warn if a function uses alloca or creates an array with dynamic size" msgstr "" -#: java/lang.opt:74 -msgid "Warn if .class files are out of date" +#: config/s390/s390.opt:88 +msgid "Warn if a single function's framesize exceeds the given framesize" msgstr "" -#: java/lang.opt:78 -msgid "Warn if modifiers are specified when not necessary" +#: config/s390/s390.opt:92 +msgid "z/Architecture" msgstr "" -#: java/lang.opt:82 -msgid "Deprecated; use --classpath instead" +#: config/s390/tpf.opt:24 +msgid "Enable TPF-OS tracing code" msgstr "" -#: java/lang.opt:86 -msgid "Permit the use of the assert keyword" +#: config/s390/tpf.opt:28 +msgid "Specify main object for TPF-OS" msgstr "" -#: java/lang.opt:108 -msgid "Replace system path" +#: config/sh/sh.opt:45 +msgid "Generate SH1 code" msgstr "" -#: java/lang.opt:112 -msgid "Generate checks for references to NULL" +#: config/sh/sh.opt:49 +msgid "Generate SH2 code" msgstr "" -#: java/lang.opt:116 -msgid "Set class path" +#: config/sh/sh.opt:53 +msgid "Generate SH2a code" msgstr "" -#: java/lang.opt:123 -msgid "Output a class file" +#: config/sh/sh.opt:57 +msgid "Generate SH2a FPU-less code" msgstr "" -#: java/lang.opt:127 -msgid "Alias for -femit-class-file" +#: config/sh/sh.opt:61 +msgid "Generate default single-precision SH2a code" msgstr "" -#: java/lang.opt:131 -msgid "Choose input encoding (defaults from your locale)" +#: config/sh/sh.opt:65 +msgid "Generate only single-precision SH2a code" msgstr "" -#: java/lang.opt:135 -msgid "Set the extension directory path" +#: config/sh/sh.opt:69 +msgid "Generate SH2e code" msgstr "" -#: java/lang.opt:139 -msgid "Input file is a file with a list of filenames to compile" +#: config/sh/sh.opt:73 +msgid "Generate SH3 code" msgstr "" -#: java/lang.opt:143 -msgid "Always check for non gcj generated classes archives" +#: config/sh/sh.opt:77 +msgid "Generate SH3e code" msgstr "" -#: java/lang.opt:147 -msgid "" -"Assume the runtime uses a hash table to map an object to its synchronization " -"structure" +#: config/sh/sh.opt:81 +msgid "Generate SH4 code" msgstr "" -#: java/lang.opt:151 -msgid "Use offset tables for virtual method calls" +#: config/sh/sh.opt:85 +msgid "Generate SH4 FPU-less code" msgstr "" -#: java/lang.opt:158 -msgid "Assume native functions are implemented using JNI" +#: config/sh/sh.opt:89 +msgid "Generate default single-precision SH4 code" msgstr "" -#: java/lang.opt:162 -msgid "Enable optimization of static class initialization code" +#: config/sh/sh.opt:93 +msgid "Generate only single-precision SH4 code" msgstr "" -#: java/lang.opt:169 -msgid "Enable assignability checks for stores into object arrays" +#: config/sh/sh.opt:97 +msgid "Generate SH4a code" msgstr "" -#: java/lang.opt:173 -msgid "Generate code for the Boehm GC" +#: config/sh/sh.opt:101 +msgid "Generate SH4a FPU-less code" msgstr "" -#: java/lang.opt:177 -msgid "Call a library routine to do integer divisions" +#: config/sh/sh.opt:105 +msgid "Generate default single-precision SH4a code" msgstr "" -#: java/lang.opt:181 -msgid "Generated should be loaded by bootstrap loader" +#: config/sh/sh.opt:109 +msgid "Generate only single-precision SH4a code" msgstr "" -#: treelang/lang.opt:30 -msgid "Trace lexical analysis" +#: config/sh/sh.opt:113 +msgid "Generate SH4al-dsp code" msgstr "" -#: treelang/lang.opt:34 -msgid "Trace the parsing process" +#: config/sh/sh.opt:117 +msgid "Generate 32-bit SHmedia code" msgstr "" -#: attribs.c:175 -#, gcc-internal-format -msgid "%qs attribute directive ignored" +#: config/sh/sh.opt:121 +msgid "Generate 32-bit FPU-less SHmedia code" msgstr "" -#: attribs.c:183 -#, gcc-internal-format -msgid "wrong number of arguments specified for %qs attribute" +#: config/sh/sh.opt:125 +msgid "Generate 64-bit SHmedia code" msgstr "" -#: attribs.c:200 -#, gcc-internal-format -msgid "%qs attribute does not apply to types" +#: config/sh/sh.opt:129 +msgid "Generate 64-bit FPU-less SHmedia code" msgstr "" -#: attribs.c:247 -#, gcc-internal-format -msgid "%qs attribute only applies to function types" +#: config/sh/sh.opt:133 +msgid "Generate SHcompact code" msgstr "" -#: bb-reorder.c:1866 -#, gcc-internal-format -msgid "Multiple hot/cold transitions found (bb %i)" +#: config/sh/sh.opt:137 +msgid "Generate FPU-less SHcompact code" msgstr "" -#: builtins.c:366 -#, gcc-internal-format -msgid "offset outside bounds of constant string" +#: config/sh/sh.opt:141 +msgid "" +"Throttle unrolling to avoid thrashing target registers unless the unroll " +"benefit outweighs this" msgstr "" -#: builtins.c:953 -#, gcc-internal-format -msgid "second argument to %<__builtin_prefetch%> must be a constant" +#: config/sh/sh.opt:145 +msgid "Generate code in big endian mode" msgstr "" -#: builtins.c:960 -#, gcc-internal-format -msgid "invalid second argument to %<__builtin_prefetch%>; using zero" +#: config/sh/sh.opt:149 +msgid "Generate 32-bit offsets in switch tables" msgstr "" -#: builtins.c:968 -#, gcc-internal-format -msgid "third argument to %<__builtin_prefetch%> must be a constant" +#: config/sh/sh.opt:153 +msgid "Enable SH5 cut2 workaround" msgstr "" -#: builtins.c:975 -#, gcc-internal-format -msgid "invalid third argument to %<__builtin_prefetch%>; using zero" +#: config/sh/sh.opt:157 +msgid "Align doubles at 64-bit boundaries" msgstr "" -#: builtins.c:3960 -#, gcc-internal-format -msgid "argument of %<__builtin_args_info%> must be constant" +#: config/sh/sh.opt:161 +msgid "" +"Division strategy, one of: call, call2, fp, inv, inv:minlat, inv20u, inv20l, " +"inv:call, inv:call2, inv:fp" msgstr "" -#: builtins.c:3966 -#, gcc-internal-format -msgid "argument of %<__builtin_args_info%> out of range" +#: config/sh/sh.opt:165 +msgid "Specify name for 32 bit signed division function" msgstr "" -#: builtins.c:3972 -#, gcc-internal-format -msgid "missing argument in %<__builtin_args_info%>" +#: config/sh/sh.opt:172 +msgid "Cost to assume for gettr insn" msgstr "" -#: builtins.c:4068 gimplify.c:1774 -#, gcc-internal-format -msgid "too few arguments to function %" +#: config/sh/sh.opt:176 config/sh/sh.opt:222 +msgid "Follow Renesas (formerly Hitachi) / SuperH calling conventions" msgstr "" -#: builtins.c:4231 -#, gcc-internal-format -msgid "first argument to % not of type %" +#: config/sh/sh.opt:180 +msgid "Increase the IEEE compliance for floating-point code" 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 -#, gcc-internal-format -msgid "%qT is promoted to %qT when passed through %<...%>" +#: config/sh/sh.opt:184 +msgid "Enable the use of the indexed addressing mode for SHmedia32/SHcompact" msgstr "" -#: builtins.c:4250 -#, gcc-internal-format -msgid "(so you should pass %qT not %qT to %)" +#: config/sh/sh.opt:188 +msgid "Assume symbols might be invalid" 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 -#, gcc-internal-format -msgid "if this code is reached, the program will abort" +#: config/sh/sh.opt:192 +msgid "Annotate assembler instructions with estimated addresses" msgstr "" -#: builtins.c:4375 -#, gcc-internal-format -msgid "invalid argument to %<__builtin_frame_address%>" +#: config/sh/sh.opt:196 +msgid "Generate code in little endian mode" msgstr "" -#: builtins.c:4377 -#, gcc-internal-format -msgid "invalid argument to %<__builtin_return_address%>" +#: config/sh/sh.opt:200 +msgid "Mark MAC register as call-clobbered" msgstr "" -#: builtins.c:4390 -#, gcc-internal-format -msgid "unsupported argument to %<__builtin_frame_address%>" +#: config/sh/sh.opt:206 +msgid "Make structs a multiple of 4 bytes (warning: ABI altered)" msgstr "" -#: builtins.c:4392 -#, gcc-internal-format -msgid "unsupported argument to %<__builtin_return_address%>" +#: config/sh/sh.opt:210 +msgid "Emit function-calls using global offset table when generating PIC" msgstr "" -#: builtins.c:4495 -#, gcc-internal-format -msgid "second argument to %<__builtin_expect%> must be a constant" +#: config/sh/sh.opt:214 +msgid "Assume pt* instructions won't trap" msgstr "" -#: builtins.c:5945 -#, gcc-internal-format -msgid "%<__builtin_longjmp%> second argument must be 1" +#: config/sh/sh.opt:218 +msgid "Shorten address references during linking" msgstr "" -#: builtins.c:6492 -#, gcc-internal-format -msgid "target format does not support infinity" +#: config/sh/sh.opt:226 +msgid "Deprecated. Use -Os instead" msgstr "" -#: builtins.c:8322 builtins.c:8416 -#, gcc-internal-format -msgid "too few arguments to function %qs" +#: config/sh/sh.opt:230 +msgid "Cost to assume for a multiply insn" msgstr "" -#: builtins.c:8328 builtins.c:8422 -#, gcc-internal-format -msgid "too many arguments to function %qs" +#: config/sh/sh.opt:234 +msgid "" +"Generate library function call to invalidate instruction cache entries after " +"fixing trampoline" msgstr "" -#: builtins.c:8334 builtins.c:8447 -#, gcc-internal-format -msgid "non-floating-point argument to function %qs" +#: config/sparc/little-endian.opt:24 +msgid "Generate code for little-endian" msgstr "" -#: builtins.c:9542 -#, gcc-internal-format -msgid "% used in function with fixed args" +#: config/sparc/little-endian.opt:28 +msgid "Generate code for big-endian" msgstr "" -#. Evidently an out of date version of ; can't validate -#. va_start's second argument, but can still work as intended. -#: builtins.c:9549 -#, gcc-internal-format -msgid "%<__builtin_next_arg%> called without an argument" +#: config/sparc/sparc.opt:24 config/sparc/sparc.opt:28 +msgid "Use hardware FP" msgstr "" -#: builtins.c:9564 -#, gcc-internal-format -msgid "% used with too many arguments" +#: config/sparc/sparc.opt:32 +msgid "Do not use hardware FP" msgstr "" -#. FIXME: Sometimes with the tree optimizers we can get the -#. not the last argument even though the user used the last -#. 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 -#, gcc-internal-format -msgid "second parameter of % not last named argument" +#: config/sparc/sparc.opt:36 +msgid "Assume possible double misalignment" msgstr "" -#: builtins.c:9693 -#, gcc-internal-format -msgid "%Hfirst argument of %D must be a pointer, second integer constant" +#: config/sparc/sparc.opt:40 +msgid "Pass -assert pure-text to linker" msgstr "" -#: builtins.c:9706 -#, gcc-internal-format -msgid "%Hlast argument of %D is not integer constant between 0 and 3" +#: config/sparc/sparc.opt:44 +msgid "Use ABI reserved registers" msgstr "" -#: builtins.c:9752 builtins.c:9905 builtins.c:9970 -#, gcc-internal-format -msgid "%Hcall to %D will always overflow destination buffer" +#: config/sparc/sparc.opt:48 +msgid "Use hardware quad FP instructions" msgstr "" -#: c-common.c:825 -#, gcc-internal-format -msgid "%qD is not defined outside of function scope" +#: config/sparc/sparc.opt:52 +msgid "Do not use hardware quad fp instructions" msgstr "" -#: c-common.c:846 -#, gcc-internal-format -msgid "" -"string length %qd is greater than the length %qd ISO C%d compilers are " -"required to support" +#: config/sparc/sparc.opt:56 +msgid "Compile for V8+ ABI" msgstr "" -#: c-common.c:887 -#, gcc-internal-format -msgid "overflow in constant expression" +#: config/sparc/sparc.opt:60 +msgid "Use UltraSPARC Visual Instruction Set extensions" msgstr "" -#: c-common.c:907 -#, gcc-internal-format -msgid "integer overflow in expression" +#: config/sparc/sparc.opt:64 +msgid "Pointers are 64-bit" msgstr "" -#: c-common.c:916 -#, gcc-internal-format -msgid "floating point overflow in expression" +#: config/sparc/sparc.opt:68 +msgid "Pointers are 32-bit" msgstr "" -#: c-common.c:922 -#, gcc-internal-format -msgid "vector overflow in expression" +#: config/sparc/sparc.opt:72 +msgid "Use 64-bit ABI" msgstr "" -#. This detects cases like converting -129 or 256 to unsigned char. -#: c-common.c:944 -#, gcc-internal-format -msgid "large integer implicitly truncated to unsigned type" +#: config/sparc/sparc.opt:76 +msgid "Use 32-bit ABI" msgstr "" -#: c-common.c:947 -#, gcc-internal-format -msgid "negative integer implicitly converted to unsigned type" +#: config/sparc/sparc.opt:80 +msgid "Use stack bias" msgstr "" -#: c-common.c:1005 -#, gcc-internal-format -msgid "overflow in implicit constant conversion" +#: config/sparc/sparc.opt:84 +msgid "Use structs on stronger alignment for double-word copies" msgstr "" -#: c-common.c:1141 -#, gcc-internal-format -msgid "operation on %qE may be undefined" +#: config/sparc/sparc.opt:88 +msgid "Optimize tail call instructions in assembler and linker" msgstr "" -#: c-common.c:1427 -#, gcc-internal-format -msgid "case label does not reduce to an integer constant" +#: config/sparc/sparc.opt:100 +msgid "Use given SPARC-V9 code model" msgstr "" -#: c-common.c:1467 -#, gcc-internal-format -msgid "case label value is less than minimum value for type" +#: config/stormy16/stormy16.opt:25 +msgid "Provide libraries for the simulator" msgstr "" -#: c-common.c:1475 -#, gcc-internal-format -msgid "case label value exceeds maximum value for type" +#: config/v850/v850.opt:24 +msgid "Use registers r2 and r5" msgstr "" -#: c-common.c:1483 -#, gcc-internal-format -msgid "lower value in case label range less than minimum value for type" +#: config/v850/v850.opt:28 +msgid "Use 4 byte entries in switch tables" msgstr "" -#: c-common.c:1492 -#, gcc-internal-format -msgid "upper value in case label range exceeds maximum value for type" +#: config/v850/v850.opt:32 +msgid "Enable backend debugging" msgstr "" -#: c-common.c:1832 -#, gcc-internal-format -msgid "invalid truth-value expression" +#: config/v850/v850.opt:36 +msgid "Do not use the callt instruction" msgstr "" -#: c-common.c:1880 -#, gcc-internal-format -msgid "invalid operands to binary %s" +#: config/v850/v850.opt:40 +msgid "Reuse r30 on a per function basis" msgstr "" -#: c-common.c:2115 -#, gcc-internal-format -msgid "comparison is always false due to limited range of data type" +#: config/v850/v850.opt:44 +msgid "Support Green Hills ABI" msgstr "" -#: c-common.c:2117 -#, gcc-internal-format -msgid "comparison is always true due to limited range of data type" +#: config/v850/v850.opt:48 +msgid "Prohibit PC relative function calls" msgstr "" -#: c-common.c:2187 -#, gcc-internal-format -msgid "comparison of unsigned expression >= 0 is always true" +#: config/v850/v850.opt:52 +msgid "Use stubs for function prologues" msgstr "" -#: c-common.c:2196 -#, gcc-internal-format -msgid "comparison of unsigned expression < 0 is always false" +#: config/v850/v850.opt:56 +msgid "Set the max size of data eligible for the SDA area" msgstr "" -#: c-common.c:2238 -#, gcc-internal-format -msgid "pointer of type % used in arithmetic" +#: config/v850/v850.opt:60 +msgid "Enable the use of the short load instructions" msgstr "" -#: c-common.c:2244 -#, gcc-internal-format -msgid "pointer to a function used in arithmetic" +#: config/v850/v850.opt:64 +msgid "Same as: -mep -mprolog-function" msgstr "" -#: c-common.c:2250 -#, gcc-internal-format -msgid "pointer to member function used in arithmetic" +#: config/v850/v850.opt:68 +msgid "Set the max size of data eligible for the TDA area" msgstr "" -#. Common Ada/Pascal programmer's mistake. We always warn -#. about this since it is so bad. -#: c-common.c:2376 -#, gcc-internal-format -msgid "the address of %qD, will always evaluate as %" +#: config/v850/v850.opt:72 +msgid "Enforce strict alignment" msgstr "" -#: c-common.c:2473 -#, gcc-internal-format -msgid "suggest parentheses around assignment used as truth value" +#: config/v850/v850.opt:79 +msgid "Compile for the v850 processor" msgstr "" -#: c-common.c:2541 c-common.c:2581 -#, gcc-internal-format -msgid "invalid use of %" +#: config/v850/v850.opt:83 +msgid "Compile for the v850e processor" msgstr "" -#: c-common.c:2797 -#, gcc-internal-format -msgid "invalid application of % to a function type" +#: config/v850/v850.opt:87 +msgid "Compile for the v850e1 processor" msgstr "" -#: c-common.c:2807 -#, gcc-internal-format -msgid "invalid application of %qs to a void type" +#: config/v850/v850.opt:91 +msgid "Set the max size of data eligible for the ZDA area" msgstr "" -#: c-common.c:2813 -#, gcc-internal-format -msgid "invalid application of %qs to incomplete type %qT " +#: config/vax/vax.opt:24 config/vax/vax.opt:28 +msgid "Target DFLOAT double precision code" msgstr "" -#: c-common.c:2854 -#, gcc-internal-format -msgid "%<__alignof%> applied to a bit-field" +#: config/vax/vax.opt:32 config/vax/vax.opt:36 +msgid "Generate GFLOAT double precision code" msgstr "" -#: c-common.c:3409 -#, gcc-internal-format -msgid "cannot disable built-in function %qs" +#: config/vax/vax.opt:40 +msgid "Generate code for GNU assembler (gas)" msgstr "" -#: c-common.c:3600 -#, gcc-internal-format -msgid "pointers are not permitted as case values" +#: config/vax/vax.opt:44 +msgid "Generate code for UNIX assembler" msgstr "" -#: c-common.c:3606 -#, gcc-internal-format -msgid "range expressions in switch statements are non-standard" +#: config/vax/vax.opt:48 +msgid "Use VAXC structure conventions" msgstr "" -#: c-common.c:3631 -#, gcc-internal-format -msgid "empty range specified" +#: config/xtensa/xtensa.opt:24 +msgid "Use CONST16 instruction to load constants" msgstr "" -#: c-common.c:3690 -#, gcc-internal-format -msgid "duplicate (or overlapping) case value" +#: config/xtensa/xtensa.opt:28 +msgid "Enable fused multiply/add and multiply/subtract FP instructions" msgstr "" -#: c-common.c:3691 -#, gcc-internal-format -msgid "%Jthis is the first entry overlapping that value" +#: config/xtensa/xtensa.opt:32 +msgid "Use indirect CALLXn instructions for large programs" msgstr "" -#: c-common.c:3695 -#, gcc-internal-format -msgid "duplicate case value" +#: config/xtensa/xtensa.opt:36 +msgid "Automatically align branch targets to reduce branch penalties" msgstr "" -#: c-common.c:3696 -#, gcc-internal-format -msgid "%Jpreviously used here" +#: config/xtensa/xtensa.opt:40 +msgid "Intersperse literal pools with code in the text section" msgstr "" -#: c-common.c:3700 -#, gcc-internal-format -msgid "multiple default labels in one switch" +#: fortran/lang.opt:30 +msgid "Add a directory for INCLUDE and MODULE searching" msgstr "" -#: c-common.c:3701 -#, gcc-internal-format -msgid "%Jthis is the first default label" +#: fortran/lang.opt:34 +msgid "Put MODULE files in 'directory'" msgstr "" -#: c-common.c:3750 -#, gcc-internal-format -msgid "%Jcase value %qs not in enumerated type" +#: fortran/lang.opt:42 +msgid "Warn about possible aliasing of dummy arguments" msgstr "" -#: c-common.c:3753 -#, gcc-internal-format -msgid "%Jcase value %qs not in enumerated type %qT" +#: fortran/lang.opt:46 +msgid "Warn about implicit conversion" msgstr "" -#: c-common.c:3810 -#, gcc-internal-format -msgid "%Hswitch missing default case" +#: fortran/lang.opt:50 +msgid "Warn about calls with implicit interface" msgstr "" -#. Warn if there are enumerators that don't correspond to -#. case expressions. -#: c-common.c:3845 -#, gcc-internal-format -msgid "%Henumeration value %qE not handled in switch" +#: fortran/lang.opt:54 +msgid "Warn about truncated source lines" msgstr "" -#: c-common.c:3872 -#, gcc-internal-format -msgid "taking the address of a label is non-standard" +#: fortran/lang.opt:58 +msgid "Warn about usage of non-standard intrinsics" 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 -#, gcc-internal-format -msgid "%qE attribute ignored" +#: fortran/lang.opt:62 +msgid "Warn about \"suspicious\" constructs" msgstr "" -#: c-common.c:4226 -#, gcc-internal-format -msgid "%qE attribute have effect only on public objects" +#: fortran/lang.opt:66 +msgid "Warn about underflow of numerical constant expressions" msgstr "" -#: c-common.c:4429 -#, gcc-internal-format -msgid "unknown machine mode %qs" +#: fortran/lang.opt:74 +msgid "" +"Do not treat local variables and COMMON blocks as if they were named in SAVE " +"statements" msgstr "" -#: c-common.c:4449 -#, gcc-internal-format -msgid "specifying vector types with __attribute__ ((mode)) is deprecated" +#: fortran/lang.opt:78 +msgid "Specify that backslash in string introduces an escape character" msgstr "" -#: c-common.c:4452 -#, gcc-internal-format -msgid "use __attribute__ ((vector_size)) instead" +#: fortran/lang.opt:82 +msgid "Set the default double precision kind to an 8 byte wide type" msgstr "" -#: c-common.c:4461 -#, gcc-internal-format -msgid "unable to emulate %qs" +#: fortran/lang.opt:86 +msgid "Set the default integer kind to an 8 byte wide type" msgstr "" -#: c-common.c:4471 -#, gcc-internal-format -msgid "invalid pointer mode %qs" +#: fortran/lang.opt:90 +msgid "Set the default real kind to an 8 byte wide type" msgstr "" -#: c-common.c:4486 -#, gcc-internal-format -msgid "no data type for mode %qs" +#: fortran/lang.opt:94 +msgid "Ignore 'D' in column one in fixed form" msgstr "" -#: c-common.c:4496 -#, gcc-internal-format -msgid "cannot use mode %qs for enumeral types" +#: fortran/lang.opt:98 +msgid "Treat lines with 'D' in column one as comments" msgstr "" -#: c-common.c:4520 -#, gcc-internal-format -msgid "mode %qs applied to inappropriate type" +#: fortran/lang.opt:102 +msgid "Allow dollar signs in entity names" msgstr "" -#: c-common.c:4551 -#, gcc-internal-format -msgid "%Jsection attribute cannot be specified for local variables" +#: fortran/lang.opt:106 +msgid "Display the code tree after parsing" msgstr "" -#: c-common.c:4562 -#, gcc-internal-format -msgid "%Jsection of %qD conflicts with previous declaration" +#: fortran/lang.opt:110 +msgid "Use f2c calling convention" msgstr "" -#: c-common.c:4571 -#, gcc-internal-format -msgid "%Jsection attribute not allowed for %qD" +#: fortran/lang.opt:114 +msgid "Assume that the source file is fixed form" msgstr "" -#: c-common.c:4577 -#, gcc-internal-format -msgid "%Jsection attributes are not supported for this target" +#: fortran/lang.opt:118 +msgid "Assume that the source file is free form" msgstr "" -#: c-common.c:4609 -#, gcc-internal-format -msgid "requested alignment is not a constant" +#: fortran/lang.opt:122 +msgid "Append underscores to externally visible names" msgstr "" -#: c-common.c:4614 -#, gcc-internal-format -msgid "requested alignment is not a power of 2" +#: fortran/lang.opt:126 +msgid "Append a second underscore if the name already contains an underscore" msgstr "" -#: c-common.c:4619 -#, gcc-internal-format -msgid "requested alignment is too large" +#: fortran/lang.opt:130 +msgid "" +"Specify that no implicit typing is allowed, unless overridden by explicit " +"IMPLICIT statements" msgstr "" -#: c-common.c:4645 -#, gcc-internal-format -msgid "%Jalignment may not be specified for %qD" +#: fortran/lang.opt:134 +msgid "Allow arbitrary character line width in fixed mode" msgstr "" -#: c-common.c:4683 -#, gcc-internal-format -msgid "%J%qD defined both normally and as an alias" +#: fortran/lang.opt:138 +msgid "Use n as character line width in fixed mode" msgstr "" -#: c-common.c:4699 -#, gcc-internal-format -msgid "alias argument not a string" +#: fortran/lang.opt:142 +msgid "Maximum identifier length" msgstr "" -#: c-common.c:4741 -#, gcc-internal-format -msgid "%qE attribute ignored on non-class types" +#: fortran/lang.opt:146 +msgid "Size in bytes of the largest array that will be put on the stack" msgstr "" -#: c-common.c:4754 -#, gcc-internal-format -msgid "visibility argument not a string" +#: fortran/lang.opt:150 +msgid "Set default accessibility of module entities to PRIVATE" msgstr "" -#: c-common.c:4766 -#, gcc-internal-format -msgid "%qE attribute ignored on types" +#: fortran/lang.opt:154 +msgid "Don't generate code, just do syntax and semantics checking" msgstr "" -#: c-common.c:4781 -#, gcc-internal-format -msgid "" -"visibility argument must be one of \"default\", \"hidden\", \"protected\" or " -"\"internal\"" +#: fortran/lang.opt:158 +msgid "Try to layout derived types as compact as possible" msgstr "" -#: c-common.c:4852 -#, gcc-internal-format -msgid "tls_model argument not a string" +#: fortran/lang.opt:162 +msgid "Copy array sections into a contiguous block on procedure entry" msgstr "" -#: c-common.c:4865 -#, gcc-internal-format -msgid "" -"tls_model argument must be one of \"local-exec\", \"initial-exec\", \"local-" -"dynamic\" or \"global-dynamic\"" +#: fortran/lang.opt:166 +msgid "Set the kind for a real with the 'q' exponent to 'n'" msgstr "" -#: c-common.c:4884 c-common.c:4948 -#, gcc-internal-format -msgid "%J%qE attribute applies only to functions" +#: fortran/lang.opt:170 +msgid "Conform to the ISO Fortran 95 standard" msgstr "" -#: c-common.c:4889 c-common.c:4953 -#, gcc-internal-format -msgid "%Jcan%'t set %qE attribute after definition" +#: fortran/lang.opt:174 +msgid "Conform to the ISO Fortran 2003 standard" msgstr "" -#: c-common.c:5042 -#, gcc-internal-format -msgid "%qE attribute ignored for %qE" +#: fortran/lang.opt:178 +msgid "Conform nothing in particular" msgstr "" -#: c-common.c:5097 -#, gcc-internal-format -msgid "invalid vector type for attribute %qE" +#: fortran/lang.opt:182 +msgid "Accept extensions to support legacy code" msgstr "" -#: c-common.c:5105 -#, gcc-internal-format -msgid "number of components of the vector not a power of two" +#: java/lang.opt:66 +msgid "Warn if a deprecated compiler feature, class, method, or field is used" msgstr "" -#: c-common.c:5133 -#, gcc-internal-format -msgid "nonnull attribute without arguments on a non-prototype" +#: java/lang.opt:70 +msgid "Warn if deprecated empty statements are found" msgstr "" -#: c-common.c:5148 -#, gcc-internal-format -msgid "nonnull argument has invalid operand number (argument %lu)" +#: java/lang.opt:74 +msgid "Warn if .class files are out of date" msgstr "" -#: c-common.c:5167 -#, gcc-internal-format -msgid "" -"nonnull argument with out-of-range operand number (argument %lu, operand %lu)" +#: java/lang.opt:78 +msgid "Warn if modifiers are specified when not necessary" msgstr "" -#: c-common.c:5175 -#, gcc-internal-format -msgid "" -"nonnull argument references non-pointer operand (argument %lu, operand %lu)" +#: java/lang.opt:82 +msgid "Deprecated; use --classpath instead" msgstr "" -#: c-common.c:5237 c-common.c:5259 -#, gcc-internal-format -msgid "not enough variable arguments to fit a sentinel" +#: java/lang.opt:86 +msgid "Permit the use of the assert keyword" msgstr "" -#: c-common.c:5280 -#, gcc-internal-format -msgid "missing sentinel in function call" +#: java/lang.opt:108 +msgid "Replace system path" msgstr "" -#: c-common.c:5322 -#, gcc-internal-format -msgid "null argument where non-null required (argument %lu)" +#: java/lang.opt:112 +msgid "Generate checks for references to NULL" msgstr "" -#: c-common.c:5387 -#, gcc-internal-format -msgid "cleanup argument not an identifier" +#: java/lang.opt:116 +msgid "Set class path" msgstr "" -#: c-common.c:5394 -#, gcc-internal-format -msgid "cleanup argument not a function" +#: java/lang.opt:123 +msgid "Output a class file" msgstr "" -#: c-common.c:5433 -#, gcc-internal-format -msgid "%qE attribute requires prototypes with named arguments" +#: java/lang.opt:127 +msgid "Alias for -femit-class-file" msgstr "" -#: c-common.c:5444 -#, gcc-internal-format -msgid "%qE attribute only applies to variadic functions" +#: java/lang.opt:131 +msgid "Choose input encoding (defaults from your locale)" msgstr "" -#: c-common.c:5455 -#, gcc-internal-format -msgid "requested position is not an integer constant" +#: java/lang.opt:135 +msgid "Set the extension directory path" msgstr "" -#: c-common.c:5462 -#, gcc-internal-format -msgid "requested position is less than zero" +#: java/lang.opt:139 +msgid "Input file is a file with a list of filenames to compile" msgstr "" -#: c-common.c:5764 -#, gcc-internal-format -msgid "" -"%Hignoring return value of %qD, declared with attribute warn_unused_result" +#: java/lang.opt:143 +msgid "Always check for non gcj generated classes archives" msgstr "" -#: c-common.c:5768 -#, gcc-internal-format +#: java/lang.opt:147 msgid "" -"%Hignoring return value of function declared with attribute " -"warn_unused_result" +"Assume the runtime uses a hash table to map an object to its synchronization " +"structure" msgstr "" -#: c-common.c:5828 cp/typeck.c:4171 -#, gcc-internal-format -msgid "attempt to take address of bit-field structure member %qD" +#: java/lang.opt:151 +msgid "Use offset tables for virtual method calls" msgstr "" -#: c-common.c:5875 -#, gcc-internal-format -msgid "invalid lvalue in assignment" +#: java/lang.opt:158 +msgid "Assume native functions are implemented using JNI" msgstr "" -#: c-common.c:5878 -#, gcc-internal-format -msgid "invalid lvalue in increment" +#: java/lang.opt:162 +msgid "Enable optimization of static class initialization code" msgstr "" -#: c-common.c:5881 -#, gcc-internal-format -msgid "invalid lvalue in decrement" +#: java/lang.opt:169 +msgid "Enable assignability checks for stores into object arrays" msgstr "" -#: c-common.c:5884 -#, gcc-internal-format -msgid "invalid lvalue in unary %<&%>" +#: java/lang.opt:173 +msgid "Generate code for the Boehm GC" msgstr "" -#: c-common.c:5887 -#, gcc-internal-format -msgid "invalid lvalue in asm statement" +#: java/lang.opt:177 +msgid "Call a library routine to do integer divisions" msgstr "" -#: c-common.c:6009 c-common.c:6058 c-typeck.c:2315 -#, gcc-internal-format -msgid "too few arguments to function %qE" +#: java/lang.opt:181 +msgid "Generated should be loaded by bootstrap loader" msgstr "" -#. ??? This should not be an error when inlining calls to -#. unprototyped functions. -#: c-common.c:6026 c-typeck.c:3942 -#, gcc-internal-format -msgid "incompatible type for argument %d of %qE" +#: treelang/lang.opt:30 +msgid "Trace lexical analysis" msgstr "" -#. Except for passing an argument to an unprototyped function, -#. this is a constraint violation. When passing an argument to -#. 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 -#, gcc-internal-format -msgid "void value not ignored as it ought to be" +#: treelang/lang.opt:34 +msgid "Trace the parsing process" msgstr "" -#: c-convert.c:134 fortran/convert.c:122 java/typeck.c:154 -#: treelang/tree-convert.c:105 +#: attribs.c:175 #, gcc-internal-format -msgid "conversion to non-scalar type requested" +msgid "%qs attribute directive ignored" msgstr "" -#: c-decl.c:563 +#: attribs.c:183 #, gcc-internal-format -msgid "%Jarray %qD assumed to have one element" +msgid "wrong number of arguments specified for %qs attribute" msgstr "" -#: c-decl.c:668 +#: attribs.c:200 #, gcc-internal-format -msgid "GCC supports only %u nested scopes" +msgid "%qs attribute does not apply to types" msgstr "" -#: c-decl.c:754 +#: attribs.c:247 #, gcc-internal-format -msgid "%Jlabel %qD used but not defined" +msgid "%qs attribute only applies to function types" msgstr "" -#: c-decl.c:760 +#: bb-reorder.c:1871 #, gcc-internal-format -msgid "%Jlabel %qD defined but not used" +msgid "multiple hot/cold transitions found (bb %i)" msgstr "" -#: c-decl.c:762 +#: bt-load.c:1504 #, gcc-internal-format -msgid "%Jlabel %qD declared but not defined" +msgid "" +"branch target register load optimization is not intended to be run twice" msgstr "" -#: c-decl.c:797 +#: builtins.c:366 #, gcc-internal-format -msgid "%Jnested function %qD declared but never defined" +msgid "offset outside bounds of constant string" msgstr "" -#: c-decl.c:810 cp/decl.c:560 +#: builtins.c:966 #, gcc-internal-format -msgid "%Junused variable %qD" +msgid "second argument to %<__builtin_prefetch%> must be a constant" msgstr "" -#: c-decl.c:814 +#: builtins.c:973 #, gcc-internal-format -msgid "%Jtype of array %qD completed incompatibly with implicit initialization" +msgid "invalid second argument to %<__builtin_prefetch%>; using zero" msgstr "" -#: c-decl.c:1048 +#: builtins.c:981 #, gcc-internal-format -msgid "" -"a parameter list with an ellipsis can%'t match an empty parameter name list " -"declaration" +msgid "third argument to %<__builtin_prefetch%> must be a constant" msgstr "" -#: c-decl.c:1055 +#: builtins.c:988 #, gcc-internal-format -msgid "" -"an argument type that has a default promotion can%'t match an empty " -"parameter name list declaration" +msgid "invalid third argument to %<__builtin_prefetch%>; using zero" msgstr "" -#: c-decl.c:1090 +#: builtins.c:4078 #, gcc-internal-format -msgid "" -"%Jprototype for %qD declares more arguments than previous old-style " -"definition" +msgid "argument of %<__builtin_args_info%> must be constant" msgstr "" -#: c-decl.c:1096 +#: builtins.c:4084 #, gcc-internal-format -msgid "" -"%Jprototype for %qD declares fewer arguments than previous old-style " -"definition" +msgid "argument of %<__builtin_args_info%> out of range" msgstr "" -#: c-decl.c:1105 +#: builtins.c:4090 #, gcc-internal-format -msgid "%Jprototype for %qD declares argument %d with incompatible type" +msgid "missing argument in %<__builtin_args_info%>" msgstr "" -#. If we get here, no errors were found, but do issue a warning -#. for this poor-style construct. -#: c-decl.c:1118 +#: builtins.c:4186 gimplify.c:1776 #, gcc-internal-format -msgid "%Jprototype for %qD follows non-prototype definition" +msgid "too few arguments to function %" msgstr "" -#: c-decl.c:1133 +#: builtins.c:4349 #, gcc-internal-format -msgid "%Jprevious definition of %qD was here" +msgid "first argument to % not of type %" msgstr "" -#: c-decl.c:1135 +#. 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:4363 #, gcc-internal-format -msgid "%Jprevious implicit declaration of %qD was here" +msgid "%qT is promoted to %qT when passed through %<...%>" msgstr "" -#: c-decl.c:1137 +#: builtins.c:4368 #, gcc-internal-format -msgid "%Jprevious declaration of %qD was here" +msgid "(so you should pass %qT not %qT to %)" msgstr "" -#: c-decl.c:1177 +#. We can, however, treat "undefined" any way we please. +#. Call abort to encourage the user to fix the program. +#: builtins.c:4374 c-typeck.c:2076 #, gcc-internal-format -msgid "%J%qD redeclared as different kind of symbol" +msgid "if this code is reached, the program will abort" msgstr "" -#: c-decl.c:1182 +#: builtins.c:4493 #, gcc-internal-format -msgid "%Jbuilt-in function %qD declared as non-function" +msgid "invalid argument to %<__builtin_frame_address%>" msgstr "" -#: c-decl.c:1185 c-decl.c:1301 c-decl.c:1903 +#: builtins.c:4495 #, gcc-internal-format -msgid "%Jdeclaration of %qD shadows a built-in function" +msgid "invalid argument to %<__builtin_return_address%>" msgstr "" -#: c-decl.c:1194 +#: builtins.c:4508 #, gcc-internal-format -msgid "%Jredeclaration of enumerator %qD" +msgid "unsupported argument to %<__builtin_frame_address%>" msgstr "" -#. If types don't match for a built-in, throw away the -#. built-in. No point in calling locate_old_decl here, it -#. won't print anything. -#: c-decl.c:1215 +#: builtins.c:4510 #, gcc-internal-format -msgid "%Jconflicting types for built-in function %qD" +msgid "unsupported argument to %<__builtin_return_address%>" msgstr "" -#: c-decl.c:1239 c-decl.c:1252 c-decl.c:1262 +#: builtins.c:4613 #, gcc-internal-format -msgid "%Jconflicting types for %qD" +msgid "second argument to %<__builtin_expect%> must be a constant" msgstr "" -#: c-decl.c:1260 +#: builtins.c:6063 #, gcc-internal-format -msgid "%J conflicting type qualifiers for %qD" +msgid "%<__builtin_longjmp%> second argument must be 1" msgstr "" -#. Allow OLDDECL to continue in use. -#: c-decl.c:1277 +#: builtins.c:6610 #, gcc-internal-format -msgid "%Jredefinition of typedef %qD" +msgid "target format does not support infinity" msgstr "" -#: c-decl.c:1325 c-decl.c:1403 +#: builtins.c:8439 builtins.c:8533 #, gcc-internal-format -msgid "%Jredefinition of %qD" +msgid "too few arguments to function %qs" msgstr "" -#: c-decl.c:1360 c-decl.c:1441 +#: builtins.c:8445 builtins.c:8539 #, gcc-internal-format -msgid "%Jstatic declaration of %qD follows non-static declaration" +msgid "too many arguments to function %qs" msgstr "" -#: c-decl.c:1370 c-decl.c:1377 c-decl.c:1430 c-decl.c:1438 +#: builtins.c:8451 builtins.c:8564 #, gcc-internal-format -msgid "%Jnon-static declaration of %qD follows static declaration" +msgid "non-floating-point argument to function %qs" msgstr "" -#: c-decl.c:1390 +#: builtins.c:9656 #, gcc-internal-format -msgid "%Jthread-local declaration of %qD follows non-thread-local declaration" +msgid "% used in function with fixed args" msgstr "" -#: c-decl.c:1393 +#. Evidently an out of date version of ; can't validate +#. va_start's second argument, but can still work as intended. +#: builtins.c:9663 #, gcc-internal-format -msgid "%Jnon-thread-local declaration of %qD follows thread-local declaration" +msgid "%<__builtin_next_arg%> called without an argument" msgstr "" -#: c-decl.c:1423 +#: builtins.c:9678 #, gcc-internal-format -msgid "%Jextern declaration of %qD follows declaration with no linkage" +msgid "% used with too many arguments" msgstr "" -#: c-decl.c:1459 +#. FIXME: Sometimes with the tree optimizers we can get the +#. not the last argument even though the user used the last +#. 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:9698 #, gcc-internal-format -msgid "%Jdeclaration of %qD with no linkage follows extern declaration" +msgid "second parameter of % not last named argument" msgstr "" -#: c-decl.c:1465 +#: builtins.c:9807 #, gcc-internal-format -msgid "%Jredeclaration of %qD with no linkage" +msgid "%Hfirst argument of %D must be a pointer, second integer constant" msgstr "" -#: c-decl.c:1479 +#: builtins.c:9820 #, gcc-internal-format -msgid "" -"%Jredeclaration of %qD with different visibility (old visibility preserved)" +msgid "%Hlast argument of %D is not integer constant between 0 and 3" msgstr "" -#: c-decl.c:1490 +#: builtins.c:9866 builtins.c:10019 builtins.c:10084 #, gcc-internal-format -msgid "%Jinline declaration of %qD follows declaration with attribute noinline" +msgid "%Hcall to %D will always overflow destination buffer" msgstr "" -#: c-decl.c:1497 +#: c-common.c:828 #, gcc-internal-format -msgid "" -"%Jdeclaration of %qD with attribute noinline follows inline declaration " +msgid "%qD is not defined outside of function scope" msgstr "" -#: c-decl.c:1512 +#: c-common.c:849 #, gcc-internal-format -msgid "%J%qD declared inline after being called" +msgid "" +"string length %qd is greater than the length %qd ISO C%d compilers are " +"required to support" msgstr "" -#: c-decl.c:1518 +#: c-common.c:890 #, gcc-internal-format -msgid "%J%qD declared inline after its definition" +msgid "overflow in constant expression" msgstr "" -#: c-decl.c:1538 +#: c-common.c:910 #, gcc-internal-format -msgid "%Jredefinition of parameter %qD" +msgid "integer overflow in expression" msgstr "" -#: c-decl.c:1562 +#: c-common.c:919 #, gcc-internal-format -msgid "%Jredundant redeclaration of %qD" +msgid "floating point overflow in expression" msgstr "" -#: c-decl.c:1890 +#: c-common.c:925 #, gcc-internal-format -msgid "%Jdeclaration of %qD shadows previous non-variable" +msgid "vector overflow in expression" msgstr "" -#: c-decl.c:1895 +#. This detects cases like converting -129 or 256 to unsigned char. +#: c-common.c:947 #, gcc-internal-format -msgid "%Jdeclaration of %qD shadows a parameter" +msgid "large integer implicitly truncated to unsigned type" msgstr "" -#: c-decl.c:1898 +#: c-common.c:950 #, gcc-internal-format -msgid "%Jdeclaration of %qD shadows a global declaration" +msgid "negative integer implicitly converted to unsigned type" msgstr "" -#: c-decl.c:1908 +#: c-common.c:1008 #, gcc-internal-format -msgid "%Jdeclaration of %qD shadows a previous local" +msgid "overflow in implicit constant conversion" msgstr "" -#: c-decl.c:1911 cp/name-lookup.c:941 cp/name-lookup.c:972 -#: cp/name-lookup.c:980 +#: c-common.c:1144 #, gcc-internal-format -msgid "%Jshadowed declaration is here" +msgid "operation on %qE may be undefined" msgstr "" -#: c-decl.c:2111 +#: c-common.c:1430 #, gcc-internal-format -msgid "nested extern declaration of %qD" +msgid "case label does not reduce to an integer constant" msgstr "" -#: c-decl.c:2279 +#: c-common.c:1470 #, gcc-internal-format -msgid "implicit declaration of function %qE" +msgid "case label value is less than minimum value for type" msgstr "" -#: c-decl.c:2340 +#: c-common.c:1478 #, gcc-internal-format -msgid "incompatible implicit declaration of built-in function %qD" +msgid "case label value exceeds maximum value for type" msgstr "" -#: c-decl.c:2349 +#: c-common.c:1486 #, gcc-internal-format -msgid "incompatible implicit declaration of function %qD" +msgid "lower value in case label range less than minimum value for type" msgstr "" -#: c-decl.c:2402 +#: c-common.c:1495 #, gcc-internal-format -msgid "%H%qE undeclared here (not in a function)" +msgid "upper value in case label range exceeds maximum value for type" msgstr "" -#: c-decl.c:2407 +#: c-common.c:1835 #, gcc-internal-format -msgid "%H%qE undeclared (first use in this function)" +msgid "invalid truth-value expression" msgstr "" -#: c-decl.c:2411 +#: c-common.c:1883 #, gcc-internal-format -msgid "%H(Each undeclared identifier is reported only once" +msgid "invalid operands to binary %s" msgstr "" -#: c-decl.c:2412 +#: c-common.c:2118 #, gcc-internal-format -msgid "%Hfor each function it appears in.)" +msgid "comparison is always false due to limited range of data type" msgstr "" -#: c-decl.c:2450 cp/decl.c:2048 +#: c-common.c:2120 #, gcc-internal-format -msgid "label %qE referenced outside of any function" +msgid "comparison is always true due to limited range of data type" msgstr "" -#: c-decl.c:2492 +#: c-common.c:2190 #, gcc-internal-format -msgid "duplicate label declaration %qE" +msgid "comparison of unsigned expression >= 0 is always true" msgstr "" -#: c-decl.c:2528 +#: c-common.c:2199 #, gcc-internal-format -msgid "%Hduplicate label %qD" +msgid "comparison of unsigned expression < 0 is always false" msgstr "" -#: c-decl.c:2538 +#: c-common.c:2241 #, gcc-internal-format -msgid "%Jjump into statement expression" +msgid "pointer of type % used in arithmetic" msgstr "" -#: c-decl.c:2540 +#: c-common.c:2247 #, gcc-internal-format -msgid "%Jjump into scope of identifier with variably modified type" +msgid "pointer to a function used in arithmetic" msgstr "" -#: c-decl.c:2555 +#: c-common.c:2253 #, gcc-internal-format -msgid "" -"%Htraditional C lacks a separate namespace for labels, identifier %qE " -"conflicts" +msgid "pointer to member function used in arithmetic" msgstr "" -#: c-decl.c:2630 +#. Common Ada/Pascal programmer's mistake. We always warn +#. about this since it is so bad. +#: c-common.c:2379 #, gcc-internal-format -msgid "%H%qE defined as wrong kind of tag" +msgid "the address of %qD, will always evaluate as %" msgstr "" -#: c-decl.c:2845 +#: c-common.c:2476 #, gcc-internal-format -msgid "unnamed struct/union that defines no instances" +msgid "suggest parentheses around assignment used as truth value" msgstr "" -#: c-decl.c:2853 +#: c-common.c:2544 c-common.c:2584 #, gcc-internal-format -msgid "empty declaration with storage class specifier does not redeclare tag" +msgid "invalid use of %" msgstr "" -#: c-decl.c:2864 +#: c-common.c:2800 #, gcc-internal-format -msgid "empty declaration with type qualifier does not redeclare tag" +msgid "invalid application of % to a function type" msgstr "" -#: c-decl.c:2885 c-decl.c:2892 +#: c-common.c:2810 #, gcc-internal-format -msgid "useless type name in empty declaration" +msgid "invalid application of %qs to a void type" msgstr "" -#: c-decl.c:2900 +#: c-common.c:2816 #, gcc-internal-format -msgid "% in empty declaration" +msgid "invalid application of %qs to incomplete type %qT " msgstr "" -#: c-decl.c:2906 +#: c-common.c:2857 #, gcc-internal-format -msgid "% in file-scope empty declaration" +msgid "%<__alignof%> applied to a bit-field" msgstr "" -#: c-decl.c:2912 +#: c-common.c:3388 #, gcc-internal-format -msgid "% in file-scope empty declaration" +msgid "cannot disable built-in function %qs" msgstr "" -#: c-decl.c:2918 +#: c-common.c:3576 #, gcc-internal-format -msgid "useless storage class specifier in empty declaration" +msgid "pointers are not permitted as case values" msgstr "" -#: c-decl.c:2924 +#: c-common.c:3582 #, gcc-internal-format -msgid "useless %<__thread%> in empty declaration" +msgid "range expressions in switch statements are non-standard" msgstr "" -#: c-decl.c:2932 +#: c-common.c:3607 #, gcc-internal-format -msgid "useless type qualifier in empty declaration" +msgid "empty range specified" msgstr "" -#: c-decl.c:2939 c-parser.c:1157 +#: c-common.c:3666 #, gcc-internal-format -msgid "empty declaration" +msgid "duplicate (or overlapping) case value" msgstr "" -#: c-decl.c:3005 +#: c-common.c:3667 #, gcc-internal-format -msgid "" -"ISO C90 does not support % or type qualifiers in parameter array " -"declarators" +msgid "%Jthis is the first entry overlapping that value" msgstr "" -#: c-decl.c:3008 +#: c-common.c:3671 #, gcc-internal-format -msgid "ISO C90 does not support %<[*]%> array declarators" +msgid "duplicate case value" msgstr "" -#: c-decl.c:3011 +#: c-common.c:3672 #, gcc-internal-format -msgid "GCC does not yet properly implement %<[*]%> array declarators" +msgid "%Jpreviously used here" msgstr "" -#: c-decl.c:3030 +#: c-common.c:3676 #, gcc-internal-format -msgid "static or type qualifiers in abstract declarator" +msgid "multiple default labels in one switch" msgstr "" -#: c-decl.c:3089 +#: c-common.c:3677 #, gcc-internal-format -msgid "%J%qD is usually a function" +msgid "%Jthis is the first default label" msgstr "" -#: c-decl.c:3098 cp/decl.c:3625 cp/decl2.c:838 +#: c-common.c:3726 #, gcc-internal-format -msgid "typedef %qD is initialized (use __typeof__ instead)" +msgid "%Jcase value %qs not in enumerated type" msgstr "" -#: c-decl.c:3103 +#: c-common.c:3729 #, gcc-internal-format -msgid "function %qD is initialized like a variable" +msgid "%Jcase value %qs not in enumerated type %qT" msgstr "" -#. DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. -#: c-decl.c:3109 +#: c-common.c:3786 #, gcc-internal-format -msgid "parameter %qD is initialized" +msgid "%Hswitch missing default case" msgstr "" -#: c-decl.c:3134 +#. Warn if there are enumerators that don't correspond to +#. case expressions. +#: c-common.c:3846 #, gcc-internal-format -msgid "variable %qD has initializer but incomplete type" +msgid "%Henumeration value %qE not handled in switch" msgstr "" -#: c-decl.c:3210 c-decl.c:5803 cp/decl.c:3664 cp/decl.c:9921 +#: c-common.c:3873 #, gcc-internal-format -msgid "%Jinline function %qD given attribute noinline" +msgid "taking the address of a label is non-standard" msgstr "" -#: c-decl.c:3282 +#: 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 "%Jinitializer fails to determine size of %qD" +msgid "%qE attribute ignored" msgstr "" -#: c-decl.c:3287 +#: c-common.c:4249 #, gcc-internal-format -msgid "%Jarray size missing in %qD" +msgid "%qE attribute have effect only on public objects" msgstr "" -#: c-decl.c:3299 +#: c-common.c:4452 #, gcc-internal-format -msgid "%Jzero or negative size array %qD" +msgid "unknown machine mode %qs" msgstr "" -#: c-decl.c:3351 varasm.c:1632 +#: c-common.c:4472 #, gcc-internal-format -msgid "%Jstorage size of %qD isn%'t known" +msgid "specifying vector types with __attribute__ ((mode)) is deprecated" msgstr "" -#: c-decl.c:3361 +#: c-common.c:4475 #, gcc-internal-format -msgid "%Jstorage size of %qD isn%'t constant" +msgid "use __attribute__ ((vector_size)) instead" msgstr "" -#: c-decl.c:3408 +#: c-common.c:4484 #, gcc-internal-format -msgid "%Jignoring asm-specifier for non-static local variable %qD" +msgid "unable to emulate %qs" msgstr "" -#: c-decl.c:3438 fortran/f95-lang.c:644 +#: c-common.c:4494 #, gcc-internal-format -msgid "cannot put object with volatile field into register" +msgid "invalid pointer mode %qs" msgstr "" -#: c-decl.c:3573 +#: c-common.c:4509 #, gcc-internal-format -msgid "ISO C forbids forward parameter declarations" +msgid "no data type for mode %qs" msgstr "" -#: c-decl.c:3700 +#: c-common.c:4519 #, gcc-internal-format -msgid "bit-field %qs width not an integer constant" +msgid "cannot use mode %qs for enumeral types" msgstr "" -#: c-decl.c:3708 +#: c-common.c:4543 #, gcc-internal-format -msgid "negative width in bit-field %qs" +msgid "mode %qs applied to inappropriate type" msgstr "" -#: c-decl.c:3713 +#: c-common.c:4574 #, gcc-internal-format -msgid "zero width for bit-field %qs" +msgid "%Jsection attribute cannot be specified for local variables" msgstr "" -#: c-decl.c:3723 +#: c-common.c:4585 #, gcc-internal-format -msgid "bit-field %qs has invalid type" +msgid "section of %q+D conflicts with previous declaration" msgstr "" -#: c-decl.c:3732 +#: c-common.c:4594 #, gcc-internal-format -msgid "type of bit-field %qs is a GCC extension" +msgid "section attribute not allowed for %q+D" msgstr "" -#: c-decl.c:3741 +#: c-common.c:4600 #, gcc-internal-format -msgid "width of %qs exceeds its type" +msgid "%Jsection attributes are not supported for this target" msgstr "" -#: c-decl.c:3754 +#: c-common.c:4632 #, gcc-internal-format -msgid "%qs is narrower than values of its type" +msgid "requested alignment is not a constant" msgstr "" -#: c-decl.c:3879 +#: c-common.c:4637 #, gcc-internal-format -msgid "type defaults to % in declaration of %qs" +msgid "requested alignment is not a power of 2" msgstr "" -#: c-decl.c:3907 +#: c-common.c:4642 #, gcc-internal-format -msgid "duplicate %" +msgid "requested alignment is too large" msgstr "" -#: c-decl.c:3909 +#: c-common.c:4668 #, gcc-internal-format -msgid "duplicate %" +msgid "alignment may not be specified for %q+D" msgstr "" -#: c-decl.c:3911 +#: c-common.c:4706 #, gcc-internal-format -msgid "duplicate %" +msgid "%q+D defined both normally and as an alias" msgstr "" -#: c-decl.c:3930 +#: c-common.c:4722 #, gcc-internal-format -msgid "function definition declared %" +msgid "alias argument not a string" msgstr "" -#: c-decl.c:3932 +#: c-common.c:4764 #, gcc-internal-format -msgid "function definition declared %" +msgid "%qE attribute ignored on non-class types" msgstr "" -#: c-decl.c:3934 +#: c-common.c:4777 #, gcc-internal-format -msgid "function definition declared %" +msgid "visibility argument not a string" msgstr "" -#: c-decl.c:3936 +#: c-common.c:4789 #, gcc-internal-format -msgid "function definition declared %<__thread%>" +msgid "%qE attribute ignored on types" msgstr "" -#: c-decl.c:3952 +#: c-common.c:4804 #, gcc-internal-format -msgid "storage class specified for structure field %qs" +msgid "" +"visibility argument must be one of \"default\", \"hidden\", \"protected\" or " +"\"internal\"" msgstr "" -#: c-decl.c:3956 cp/decl.c:7001 +#: c-common.c:4875 #, gcc-internal-format -msgid "storage class specified for parameter %qs" +msgid "tls_model argument not a string" msgstr "" -#: c-decl.c:3959 cp/decl.c:7003 +#: c-common.c:4888 #, gcc-internal-format -msgid "storage class specified for typename" +msgid "" +"tls_model argument must be one of \"local-exec\", \"initial-exec\", \"local-" +"dynamic\" or \"global-dynamic\"" msgstr "" -#: c-decl.c:3972 cp/decl.c:7020 +#: c-common.c:4907 c-common.c:4971 #, gcc-internal-format -msgid "%qs initialized and declared %" +msgid "%J%qE attribute applies only to functions" msgstr "" -#: c-decl.c:3974 cp/decl.c:7023 +#: c-common.c:4912 c-common.c:4976 #, gcc-internal-format -msgid "%qs has both % and initializer" +msgid "%Jcan%'t set %qE attribute after definition" msgstr "" -#: c-decl.c:3979 +#: c-common.c:5065 #, gcc-internal-format -msgid "file-scope declaration of %qs specifies %" +msgid "%qE attribute ignored for %qE" msgstr "" -#: c-decl.c:3981 +#: c-common.c:5120 #, gcc-internal-format -msgid "file-scope declaration of %qs specifies %" +msgid "invalid vector type for attribute %qE" msgstr "" -#: c-decl.c:3986 cp/decl.c:7027 +#: c-common.c:5128 #, gcc-internal-format -msgid "nested function %qs declared %" +msgid "number of components of the vector not a power of two" msgstr "" -#: c-decl.c:3989 cp/decl.c:7037 +#: c-common.c:5156 #, gcc-internal-format -msgid "function-scope %qs implicitly auto and declared %<__thread%>" +msgid "nonnull attribute without arguments on a non-prototype" 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-common.c:5171 #, gcc-internal-format -msgid "static or type qualifiers in non-parameter array declarator" +msgid "nonnull argument has invalid operand number (argument %lu)" msgstr "" -#: c-decl.c:4082 +#: c-common.c:5190 #, gcc-internal-format -msgid "declaration of %qs as array of voids" +msgid "" +"nonnull argument with out-of-range operand number (argument %lu, operand %lu)" msgstr "" -#: c-decl.c:4088 +#: c-common.c:5198 #, gcc-internal-format -msgid "declaration of %qs as array of functions" +msgid "" +"nonnull argument references non-pointer operand (argument %lu, operand %lu)" msgstr "" -#: c-decl.c:4093 +#: c-common.c:5261 c-common.c:5284 #, gcc-internal-format -msgid "invalid use of structure with flexible array member" +msgid "not enough variable arguments to fit a sentinel" msgstr "" -#: c-decl.c:4113 +#: c-common.c:5305 #, gcc-internal-format -msgid "size of array %qs has non-integer type" +msgid "missing sentinel in function call" msgstr "" -#: c-decl.c:4118 +#: c-common.c:5347 #, gcc-internal-format -msgid "ISO C forbids zero-size array %qs" +msgid "null argument where non-null required (argument %lu)" msgstr "" -#: c-decl.c:4125 +#: c-common.c:5412 #, gcc-internal-format -msgid "size of array %qs is negative" +msgid "cleanup argument not an identifier" msgstr "" -#: c-decl.c:4139 +#: c-common.c:5419 #, gcc-internal-format -msgid "ISO C90 forbids array %qs whose size can%'t be evaluated" +msgid "cleanup argument not a function" msgstr "" -#: c-decl.c:4143 +#: c-common.c:5458 #, gcc-internal-format -msgid "ISO C90 forbids variable-size array %qs" +msgid "%qE attribute requires prototypes with named arguments" msgstr "" -#: c-decl.c:4183 c-decl.c:4349 cp/decl.c:7459 +#: c-common.c:5469 #, gcc-internal-format -msgid "size of array %qs is too large" +msgid "%qE attribute only applies to variadic functions" msgstr "" -#: c-decl.c:4194 +#: c-common.c:5480 #, gcc-internal-format -msgid "ISO C90 does not support flexible array members" +msgid "requested position is not an integer constant" msgstr "" -#: c-decl.c:4204 +#: c-common.c:5487 #, gcc-internal-format -msgid "array type has incomplete element type" +msgid "requested position is less than zero" msgstr "" -#: c-decl.c:4259 cp/decl.c:7128 +#: c-common.c:5789 #, gcc-internal-format -msgid "%qs declared as function returning a function" +msgid "" +"%Hignoring return value of %qD, declared with attribute warn_unused_result" msgstr "" -#: c-decl.c:4264 cp/decl.c:7133 +#: c-common.c:5793 #, gcc-internal-format -msgid "%qs declared as function returning an array" +msgid "" +"%Hignoring return value of function declared with attribute " +"warn_unused_result" msgstr "" -#: c-decl.c:4284 +#: c-common.c:5853 cp/typeck.c:4169 #, gcc-internal-format -msgid "function definition has qualified void return type" +msgid "attempt to take address of bit-field structure member %qD" msgstr "" -#: c-decl.c:4287 +#: c-common.c:5900 #, gcc-internal-format -msgid "type qualifiers ignored on function return type" +msgid "invalid lvalue in assignment" msgstr "" -#: c-decl.c:4316 c-decl.c:4362 c-decl.c:4457 c-decl.c:4548 +#: c-common.c:5903 #, gcc-internal-format -msgid "ISO C forbids qualified function types" +msgid "invalid lvalue in increment" msgstr "" -#: c-decl.c:4370 +#: c-common.c:5906 #, gcc-internal-format -msgid "%Jtypedef %qD declared %" +msgid "invalid lvalue in decrement" msgstr "" -#: c-decl.c:4400 +#: c-common.c:5909 #, gcc-internal-format -msgid "ISO C forbids const or volatile function types" +msgid "invalid lvalue in unary %<&%>" msgstr "" -#: c-decl.c:4420 +#: c-common.c:5912 #, gcc-internal-format -msgid "variable or field %qs declared void" +msgid "invalid lvalue in asm statement" msgstr "" -#: c-decl.c:4450 +#: c-common.c:6040 c-common.c:6089 c-typeck.c:2334 #, gcc-internal-format -msgid "attributes in parameter array declarator ignored" +msgid "too few arguments to function %qE" msgstr "" -#: c-decl.c:4485 +#. ??? This should not be an error when inlining calls to +#. unprototyped functions. +#: c-common.c:6057 c-typeck.c:4000 #, gcc-internal-format -msgid "%Jparameter %qD declared %" +msgid "incompatible type for argument %d of %qE" msgstr "" -#: c-decl.c:4498 +#. Except for passing an argument to an unprototyped function, +#. this is a constraint violation. When passing an argument to +#. 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: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 "field %qs declared as a function" +msgid "void value not ignored as it ought to be" msgstr "" -#: c-decl.c:4504 +#: c-convert.c:134 fortran/convert.c:122 java/typeck.c:154 +#: treelang/tree-convert.c:105 #, gcc-internal-format -msgid "field %qs has incomplete type" +msgid "conversion to non-scalar type requested" msgstr "" -#: c-decl.c:4518 c-decl.c:4530 c-decl.c:4534 +#: c-decl.c:564 #, gcc-internal-format -msgid "invalid storage class for function %qs" +msgid "array %q+D assumed to have one element" msgstr "" -#: c-decl.c:4554 +#: c-decl.c:669 #, gcc-internal-format -msgid "% function returns non-void value" +msgid "GCC supports only %u nested scopes" msgstr "" -#: c-decl.c:4582 +#: c-decl.c:755 cp/decl.c:355 java/decl.c:1685 #, gcc-internal-format -msgid "cannot inline function %" +msgid "label %q+D used but not defined" msgstr "" -#: c-decl.c:4629 +#: c-decl.c:761 cp/decl.c:366 java/decl.c:1690 #, gcc-internal-format -msgid "variable previously declared % redeclared %" +msgid "label %q+D defined but not used" msgstr "" -#: c-decl.c:4639 +#: c-decl.c:763 #, gcc-internal-format -msgid "%Jvariable %qD declared %" +msgid "label %q+D declared but not defined" 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:798 #, gcc-internal-format -msgid "thread-local storage not supported for this target" +msgid "nested function %q+D declared but never defined" msgstr "" -#: c-decl.c:4732 c-decl.c:5882 +#: c-decl.c:811 cp/decl.c:560 #, gcc-internal-format -msgid "function declaration isn%'t a prototype" +msgid "unused variable %q+D" msgstr "" -#: c-decl.c:4740 +#: c-decl.c:815 #, gcc-internal-format -msgid "parameter names (without types) in function declaration" +msgid "type of array %q+D completed incompatibly with implicit initialization" msgstr "" -#: c-decl.c:4773 +#: c-decl.c:1049 #, gcc-internal-format -msgid "%Jparameter %u (%qD) has incomplete type" +msgid "" +"a parameter list with an ellipsis can%'t match an empty parameter name list " +"declaration" msgstr "" -#: c-decl.c:4776 +#: c-decl.c:1056 #, gcc-internal-format -msgid "%Jparameter %u has incomplete type" +msgid "" +"an argument type that has a default promotion can%'t match an empty " +"parameter name list declaration" msgstr "" -#: c-decl.c:4785 +#: c-decl.c:1091 #, gcc-internal-format -msgid "%Jparameter %u (%qD) has void type" +msgid "" +"prototype for %q+D declares more arguments than previous old-style definition" msgstr "" -#: c-decl.c:4788 +#: c-decl.c:1097 #, gcc-internal-format -msgid "%Jparameter %u has void type" +msgid "" +"prototype for %q+D declares fewer arguments than previous old-style " +"definition" msgstr "" -#: c-decl.c:4845 +#: c-decl.c:1106 #, gcc-internal-format -msgid "% as only parameter may not be qualified" +msgid "prototype for %q+D declares argument %d with incompatible type" msgstr "" -#: c-decl.c:4849 c-decl.c:4884 +#. If we get here, no errors were found, but do issue a warning +#. for this poor-style construct. +#: c-decl.c:1119 #, gcc-internal-format -msgid "% must be the only parameter" +msgid "prototype for %q+D follows non-prototype definition" msgstr "" -#: c-decl.c:4877 +#: c-decl.c:1134 #, gcc-internal-format -msgid "%Jparameter %qD has just a forward declaration" +msgid "previous definition of %q+D was here" msgstr "" -#. The %s will be one of 'struct', 'union', or 'enum'. -#: c-decl.c:4923 +#: c-decl.c:1136 #, gcc-internal-format -msgid "%<%s %E%> declared inside parameter list" +msgid "previous implicit declaration of %q+D was here" msgstr "" -#. The %s will be one of 'struct', 'union', or 'enum'. -#: c-decl.c:4927 +#: c-decl.c:1138 #, gcc-internal-format -msgid "anonymous %s declared inside parameter list" +msgid "previous declaration of %q+D was here" msgstr "" -#: c-decl.c:4932 +#: c-decl.c:1178 #, gcc-internal-format -msgid "" -"its scope is only this definition or declaration, which is probably not what " -"you want" +msgid "%q+D redeclared as different kind of symbol" msgstr "" -#: c-decl.c:5065 +#: c-decl.c:1182 #, gcc-internal-format -msgid "redefinition of %" +msgid "built-in function %q+D declared as non-function" msgstr "" -#: c-decl.c:5067 +#: c-decl.c:1185 c-decl.c:1301 c-decl.c:1921 #, gcc-internal-format -msgid "redefinition of %" +msgid "declaration of %q+D shadows a built-in function" msgstr "" -#: c-decl.c:5072 +#: c-decl.c:1194 #, gcc-internal-format -msgid "nested redefinition of %" +msgid "redeclaration of enumerator %q+D" msgstr "" -#: c-decl.c:5074 +#. If types don't match for a built-in, throw away the +#. built-in. No point in calling locate_old_decl here, it +#. won't print anything. +#: c-decl.c:1215 #, gcc-internal-format -msgid "nested redefinition of %" +msgid "conflicting types for built-in function %q+D" msgstr "" -#: c-decl.c:5145 cp/decl.c:3422 +#: c-decl.c:1239 c-decl.c:1252 c-decl.c:1262 #, gcc-internal-format -msgid "declaration does not declare anything" +msgid "conflicting types for %q+D" msgstr "" -#: c-decl.c:5149 +#: c-decl.c:1260 #, gcc-internal-format -msgid "ISO C doesn%'t support unnamed structs/unions" +msgid "conflicting type qualifiers for %q+D" msgstr "" -#: c-decl.c:5192 c-decl.c:5208 +#. Allow OLDDECL to continue in use. +#: c-decl.c:1277 #, gcc-internal-format -msgid "%Jduplicate member %qD" +msgid "redefinition of typedef %q+D" msgstr "" -#: c-decl.c:5247 +#: c-decl.c:1325 c-decl.c:1403 #, gcc-internal-format -msgid "union has no named members" +msgid "redefinition of %q+D" msgstr "" -#: c-decl.c:5249 +#: c-decl.c:1360 c-decl.c:1441 #, gcc-internal-format -msgid "union has no members" +msgid "static declaration of %q+D follows non-static declaration" msgstr "" -#: c-decl.c:5254 +#: c-decl.c:1370 c-decl.c:1377 c-decl.c:1430 c-decl.c:1438 #, gcc-internal-format -msgid "struct has no named members" +msgid "non-static declaration of %q+D follows static declaration" msgstr "" -#: c-decl.c:5256 +#: c-decl.c:1390 #, gcc-internal-format -msgid "struct has no members" +msgid "thread-local declaration of %q+D follows non-thread-local declaration" msgstr "" -#: c-decl.c:5313 +#: c-decl.c:1393 #, gcc-internal-format -msgid "%Jflexible array member in union" +msgid "non-thread-local declaration of %q+D follows thread-local declaration" msgstr "" -#: c-decl.c:5318 +#: c-decl.c:1423 #, gcc-internal-format -msgid "%Jflexible array member not at end of struct" +msgid "extern declaration of %q+D follows declaration with no linkage" msgstr "" -#: c-decl.c:5323 +#: c-decl.c:1459 #, gcc-internal-format -msgid "%Jflexible array member in otherwise empty struct" +msgid "declaration of %q+D with no linkage follows extern declaration" msgstr "" -#: c-decl.c:5330 +#: c-decl.c:1465 #, gcc-internal-format -msgid "%Jinvalid use of structure with flexible array member" +msgid "redeclaration of %q+D with no linkage" msgstr "" -#: c-decl.c:5438 +#: c-decl.c:1479 #, gcc-internal-format -msgid "union cannot be made transparent" +msgid "" +"redeclaration of %q+D with different visibility (old visibility preserved)" msgstr "" -#: c-decl.c:5509 +#: c-decl.c:1490 #, gcc-internal-format -msgid "nested redefinition of %" +msgid "inline declaration of %qD follows declaration with attribute noinline" msgstr "" -#. This enum is a named one that has been declared already. -#: c-decl.c:5516 +#: c-decl.c:1497 #, gcc-internal-format -msgid "redeclaration of %" +msgid "declaration of %q+D with attribute noinline follows inline declaration " msgstr "" -#: c-decl.c:5579 +#: c-decl.c:1512 #, gcc-internal-format -msgid "enumeration values exceed range of largest integer" +msgid "%q+D declared inline after being called" msgstr "" -#: c-decl.c:5596 +#: c-decl.c:1517 #, gcc-internal-format -msgid "specified mode too small for enumeral values" +msgid "%q+D declared inline after its definition" msgstr "" -#: c-decl.c:5692 +#: c-decl.c:1536 #, gcc-internal-format -msgid "enumerator value for %qE is not an integer constant" +msgid "redefinition of parameter %q+D" msgstr "" -#: c-decl.c:5709 +#: c-decl.c:1563 #, gcc-internal-format -msgid "overflow in enumeration values" +msgid "redundant redeclaration of %q+D" msgstr "" -#: c-decl.c:5714 +#: c-decl.c:1908 #, gcc-internal-format -msgid "ISO C restricts enumerator values to range of %" +msgid "declaration of %q+D shadows previous non-variable" msgstr "" -#: c-decl.c:5810 +#: c-decl.c:1913 #, gcc-internal-format -msgid "return type is an incomplete type" +msgid "declaration of %q+D shadows a parameter" msgstr "" -#: c-decl.c:5818 +#: c-decl.c:1916 #, gcc-internal-format -msgid "return type defaults to %" +msgid "declaration of %q+D shadows a global declaration" msgstr "" -#: c-decl.c:5889 +#: c-decl.c:1926 #, gcc-internal-format -msgid "%Jno previous prototype for %qD" +msgid "declaration of %q+D shadows a previous local" msgstr "" -#: c-decl.c:5899 +#: c-decl.c:1929 cp/name-lookup.c:952 cp/name-lookup.c:983 +#: cp/name-lookup.c:991 #, gcc-internal-format -msgid "%J%qD was used with no prototype before its definition" +msgid "%Jshadowed declaration is here" msgstr "" -#: c-decl.c:5906 +#: c-decl.c:2129 #, gcc-internal-format -msgid "%Jno previous declaration for %qD" +msgid "nested extern declaration of %qD" msgstr "" -#: c-decl.c:5916 +#: c-decl.c:2298 #, gcc-internal-format -msgid "%J%qD was used with no declaration before its definition" +msgid "implicit declaration of function %qE" msgstr "" -#: c-decl.c:5949 c-decl.c:6469 +#: c-decl.c:2359 #, gcc-internal-format -msgid "%Jreturn type of %qD is not %" +msgid "incompatible implicit declaration of built-in function %qD" msgstr "" -#: c-decl.c:5964 +#: c-decl.c:2368 #, gcc-internal-format -msgid "%Jfirst argument of %qD should be %" +msgid "incompatible implicit declaration of function %qD" msgstr "" -#: c-decl.c:5973 +#: c-decl.c:2421 #, gcc-internal-format -msgid "%Jsecond argument of %qD should be %" +msgid "%H%qE undeclared here (not in a function)" msgstr "" -#: c-decl.c:5982 +#: c-decl.c:2426 #, gcc-internal-format -msgid "%Jthird argument of %qD should probably be %" +msgid "%H%qE undeclared (first use in this function)" msgstr "" -#: c-decl.c:5992 +#: c-decl.c:2430 #, gcc-internal-format -msgid "%J%qD takes only zero or two arguments" +msgid "%H(Each undeclared identifier is reported only once" msgstr "" -#: c-decl.c:5995 +#: c-decl.c:2431 #, gcc-internal-format -msgid "%J%qD is normally a non-static function" +msgid "%Hfor each function it appears in.)" msgstr "" -#: c-decl.c:6041 +#: c-decl.c:2469 cp/decl.c:2095 #, gcc-internal-format -msgid "%Jold-style parameter declarations in prototyped function definition" +msgid "label %qE referenced outside of any function" msgstr "" -#: c-decl.c:6055 +#: c-decl.c:2511 #, gcc-internal-format -msgid "%Jtraditional C rejects ISO C style function definitions" +msgid "duplicate label declaration %qE" msgstr "" -#: c-decl.c:6067 +#: c-decl.c:2547 #, gcc-internal-format -msgid "%Jparameter name omitted" +msgid "%Hduplicate label %qD" msgstr "" -#: c-decl.c:6107 +#: c-decl.c:2557 #, gcc-internal-format -msgid "%Jold-style function definition" +msgid "%Jjump into statement expression" msgstr "" -#: c-decl.c:6116 +#: c-decl.c:2559 #, gcc-internal-format -msgid "%Jparameter name missing from parameter list" +msgid "%Jjump into scope of identifier with variably modified type" msgstr "" -#: c-decl.c:6127 +#: c-decl.c:2574 #, gcc-internal-format -msgid "%J%qD declared as a non-parameter" +msgid "" +"%Htraditional C lacks a separate namespace for labels, identifier %qE " +"conflicts" msgstr "" -#: c-decl.c:6132 +#: c-decl.c:2649 #, gcc-internal-format -msgid "%Jmultiple parameters named %qD" +msgid "%H%qE defined as wrong kind of tag" msgstr "" -#: c-decl.c:6140 +#: c-decl.c:2864 #, gcc-internal-format -msgid "%Jparameter %qD declared with void type" +msgid "unnamed struct/union that defines no instances" msgstr "" -#: c-decl.c:6155 c-decl.c:6157 +#: c-decl.c:2872 #, gcc-internal-format -msgid "%Jtype of %qD defaults to %" +msgid "empty declaration with storage class specifier does not redeclare tag" msgstr "" -#: c-decl.c:6177 +#: c-decl.c:2883 #, gcc-internal-format -msgid "%Jparameter %qD has incomplete type" +msgid "empty declaration with type qualifier does not redeclare tag" msgstr "" -#: c-decl.c:6183 +#: c-decl.c:2904 c-decl.c:2911 #, gcc-internal-format -msgid "%Jdeclaration for parameter %qD but no such parameter" +msgid "useless type name in empty declaration" msgstr "" -#: c-decl.c:6234 +#: c-decl.c:2919 #, gcc-internal-format -msgid "number of arguments doesn%'t match built-in prototype" +msgid "% in empty declaration" msgstr "" -#: c-decl.c:6238 +#: c-decl.c:2925 #, gcc-internal-format -msgid "number of arguments doesn%'t match prototype" +msgid "% in file-scope empty declaration" msgstr "" -#: c-decl.c:6239 c-decl.c:6279 c-decl.c:6292 +#: c-decl.c:2931 #, gcc-internal-format -msgid "%Hprototype declaration" +msgid "% in file-scope empty declaration" msgstr "" -#: c-decl.c:6273 +#: c-decl.c:2937 #, gcc-internal-format -msgid "promoted argument %qD doesn%'t match built-in prototype" +msgid "useless storage class specifier in empty declaration" msgstr "" -#: c-decl.c:6277 +#: c-decl.c:2943 #, gcc-internal-format -msgid "promoted argument %qD doesn%'t match prototype" +msgid "useless %<__thread%> in empty declaration" msgstr "" -#: c-decl.c:6287 +#: c-decl.c:2951 #, gcc-internal-format -msgid "argument %qD doesn%'t match built-in prototype" +msgid "useless type qualifier in empty declaration" msgstr "" -#: c-decl.c:6291 +#: c-decl.c:2958 c-parser.c:1157 #, gcc-internal-format -msgid "argument %qD doesn%'t match prototype" +msgid "empty declaration" msgstr "" -#: c-decl.c:6514 cp/decl.c:10691 +#: c-decl.c:3024 #, gcc-internal-format -msgid "no return statement in function returning non-void" +msgid "" +"ISO C90 does not support % or type qualifiers in parameter array " +"declarators" msgstr "" -#: c-decl.c:6523 +#: c-decl.c:3027 #, gcc-internal-format -msgid "this function may return with or without a value" +msgid "ISO C90 does not support %<[*]%> array declarators" 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:3030 #, gcc-internal-format -msgid "% loop initial declaration used outside C99 mode" +msgid "GCC does not yet properly implement %<[*]%> array declarators" msgstr "" -#: c-decl.c:6645 +#: c-decl.c:3049 #, gcc-internal-format -msgid "" -"%Jdeclaration of static variable %qD in % loop initial declaration" +msgid "static or type qualifiers in abstract declarator" msgstr "" -#: c-decl.c:6648 +#: c-decl.c:3108 #, gcc-internal-format -msgid "" -"%Jdeclaration of % variable %qD in % loop initial declaration" +msgid "%q+D is usually a function" msgstr "" -#: c-decl.c:6653 +#: c-decl.c:3117 cp/decl.c:3667 cp/decl2.c:840 #, gcc-internal-format -msgid "% declared in % loop initial declaration" +msgid "typedef %qD is initialized (use __typeof__ instead)" msgstr "" -#: c-decl.c:6657 +#: c-decl.c:3122 #, gcc-internal-format -msgid "% declared in % loop initial declaration" +msgid "function %qD is initialized like a variable" msgstr "" -#: c-decl.c:6661 +#. DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. +#: c-decl.c:3128 #, gcc-internal-format -msgid "% declared in % loop initial declaration" +msgid "parameter %qD is initialized" msgstr "" -#: c-decl.c:6665 +#: c-decl.c:3153 #, gcc-internal-format -msgid "%Jdeclaration of non-variable %qD in % loop initial declaration" +msgid "variable %qD has initializer but incomplete type" msgstr "" -#: c-decl.c:6949 c-decl.c:7100 c-decl.c:7310 +#: c-decl.c:3229 c-decl.c:5853 cp/decl.c:3706 cp/decl.c:10100 #, gcc-internal-format -msgid "duplicate %qE" +msgid "inline function %q+D given attribute noinline" msgstr "" -#: c-decl.c:6972 c-decl.c:7109 c-decl.c:7212 +#: c-decl.c:3301 #, gcc-internal-format -msgid "two or more data types in declaration specifiers" +msgid "initializer fails to determine size of %q+D" msgstr "" -#: c-decl.c:6984 cp/decl.c:6694 +#: c-decl.c:3306 #, gcc-internal-format -msgid "% is too long for GCC" +msgid "array size missing in %q+D" msgstr "" -#: c-decl.c:6991 c-decl.c:7183 +#: c-decl.c:3318 #, gcc-internal-format -msgid "both % and % in declaration specifiers" +msgid "zero or negative size array %q+D" msgstr "" -#: c-decl.c:6997 +#: c-decl.c:3370 varasm.c:1641 #, gcc-internal-format -msgid "ISO C90 does not support %" +msgid "storage size of %q+D isn%'t known" msgstr "" -#: c-decl.c:7002 c-decl.c:7022 +#: c-decl.c:3380 #, gcc-internal-format -msgid "both % and % in declaration specifiers" +msgid "storage size of %q+D isn%'t constant" msgstr "" -#: c-decl.c:7005 c-decl.c:7116 +#: c-decl.c:3427 #, gcc-internal-format -msgid "both % and % in declaration specifiers" +msgid "ignoring asm-specifier for non-static local variable %q+D" msgstr "" -#: c-decl.c:7008 c-decl.c:7135 +#: c-decl.c:3457 fortran/f95-lang.c:636 #, gcc-internal-format -msgid "both % and %<_Bool%> in declaration specifiers" +msgid "cannot put object with volatile field into register" msgstr "" -#: c-decl.c:7011 c-decl.c:7154 +#: c-decl.c:3592 #, gcc-internal-format -msgid "both % and % in declaration specifiers" +msgid "ISO C forbids forward parameter declarations" msgstr "" -#: c-decl.c:7014 c-decl.c:7167 +#: c-decl.c:3719 #, gcc-internal-format -msgid "both % and % in declaration specifiers" +msgid "bit-field %qs width not an integer constant" msgstr "" -#: c-decl.c:7025 c-decl.c:7119 +#: c-decl.c:3727 #, gcc-internal-format -msgid "both % and % in declaration specifiers" +msgid "negative width in bit-field %qs" msgstr "" -#: c-decl.c:7028 c-decl.c:7138 +#: c-decl.c:3732 #, gcc-internal-format -msgid "both % and %<_Bool%> in declaration specifiers" +msgid "zero width for bit-field %qs" msgstr "" -#: c-decl.c:7031 c-decl.c:7157 +#: c-decl.c:3742 #, gcc-internal-format -msgid "both % and % in declaration specifiers" +msgid "bit-field %qs has invalid type" msgstr "" -#: c-decl.c:7034 c-decl.c:7170 +#: c-decl.c:3751 #, gcc-internal-format -msgid "both % and % in declaration specifiers" +msgid "type of bit-field %qs is a GCC extension" msgstr "" -#: c-decl.c:7037 c-decl.c:7186 +#: c-decl.c:3760 #, gcc-internal-format -msgid "both % and % in declaration specifiers" +msgid "width of %qs exceeds its type" msgstr "" -#: c-decl.c:7045 c-decl.c:7065 +#: c-decl.c:3773 #, gcc-internal-format -msgid "both % and % in declaration specifiers" +msgid "%qs is narrower than values of its type" msgstr "" -#: c-decl.c:7048 c-decl.c:7122 +#: c-decl.c:3922 #, gcc-internal-format -msgid "both % and % in declaration specifiers" +msgid "type defaults to % in declaration of %qs" msgstr "" -#: c-decl.c:7051 c-decl.c:7141 +#: c-decl.c:3950 #, gcc-internal-format -msgid "both % and %<_Bool%> in declaration specifiers" +msgid "duplicate %" msgstr "" -#: c-decl.c:7054 c-decl.c:7173 +#: c-decl.c:3952 #, gcc-internal-format -msgid "both % and % in declaration specifiers" +msgid "duplicate %" msgstr "" -#: c-decl.c:7057 c-decl.c:7189 +#: c-decl.c:3954 #, gcc-internal-format -msgid "both % and % in declaration specifiers" +msgid "duplicate %" msgstr "" -#: c-decl.c:7068 c-decl.c:7125 +#: c-decl.c:3973 #, gcc-internal-format -msgid "both % and % in declaration specifiers" +msgid "function definition declared %" msgstr "" -#: c-decl.c:7071 c-decl.c:7144 +#: c-decl.c:3975 #, gcc-internal-format -msgid "both % and %<_Bool%> in declaration specifiers" +msgid "function definition declared %" msgstr "" -#: c-decl.c:7074 c-decl.c:7176 +#: c-decl.c:3977 #, gcc-internal-format -msgid "both % and % in declaration specifiers" +msgid "function definition declared %" msgstr "" -#: c-decl.c:7077 c-decl.c:7192 +#: c-decl.c:3979 #, gcc-internal-format -msgid "both % and % in declaration specifiers" +msgid "function definition declared %<__thread%>" msgstr "" -#: c-decl.c:7085 +#: c-decl.c:3995 #, gcc-internal-format -msgid "ISO C90 does not support complex types" +msgid "storage class specified for structure field %qs" msgstr "" -#: c-decl.c:7087 c-decl.c:7128 +#: c-decl.c:3999 cp/decl.c:7173 #, gcc-internal-format -msgid "both % and % in declaration specifiers" +msgid "storage class specified for parameter %qs" msgstr "" -#: c-decl.c:7090 c-decl.c:7147 +#: c-decl.c:4002 cp/decl.c:7175 #, gcc-internal-format -msgid "both % and %<_Bool%> in declaration specifiers" +msgid "storage class specified for typename" msgstr "" -#: c-decl.c:7229 +#: c-decl.c:4015 cp/decl.c:7192 #, gcc-internal-format -msgid "%qE fails to be a typedef or built in type" +msgid "%qs initialized and declared %" msgstr "" -#: c-decl.c:7261 +#: c-decl.c:4017 cp/decl.c:7195 #, gcc-internal-format -msgid "%qE is not at beginning of declaration" +msgid "%qs has both % and initializer" msgstr "" -#: c-decl.c:7275 +#: c-decl.c:4022 #, gcc-internal-format -msgid "%<__thread%> used with %" +msgid "file-scope declaration of %qs specifies %" msgstr "" -#: c-decl.c:7277 +#: c-decl.c:4024 #, gcc-internal-format -msgid "%<__thread%> used with %" +msgid "file-scope declaration of %qs specifies %" msgstr "" -#: c-decl.c:7279 +#: c-decl.c:4029 cp/decl.c:7199 #, gcc-internal-format -msgid "%<__thread%> used with %" +msgid "nested function %qs declared %" msgstr "" -#: c-decl.c:7290 cp/parser.c:7365 +#: c-decl.c:4032 cp/decl.c:7209 #, gcc-internal-format -msgid "%<__thread%> before %" +msgid "function-scope %qs implicitly auto and declared %<__thread%>" msgstr "" -#: c-decl.c:7299 cp/parser.c:7355 +#. 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:4079 c-decl.c:4270 #, gcc-internal-format -msgid "%<__thread%> before %" +msgid "static or type qualifiers in non-parameter array declarator" msgstr "" -#: c-decl.c:7315 +#: c-decl.c:4125 #, gcc-internal-format -msgid "multiple storage classes in declaration specifiers" +msgid "declaration of %qs as array of voids" msgstr "" -#: c-decl.c:7322 +#: c-decl.c:4131 #, gcc-internal-format -msgid "%<__thread%> used with %qE" +msgid "declaration of %qs as array of functions" msgstr "" -#: c-decl.c:7376 +#: c-decl.c:4136 #, gcc-internal-format -msgid "ISO C does not support plain % meaning %" +msgid "invalid use of structure with flexible array member" msgstr "" -#: c-decl.c:7421 c-decl.c:7447 +#: c-decl.c:4156 #, gcc-internal-format -msgid "ISO C does not support complex integer types" +msgid "size of array %qs has non-integer type" msgstr "" -#: c-decl.c:7522 toplev.c:826 +#: c-decl.c:4161 #, gcc-internal-format -msgid "%J%qF used but never defined" +msgid "ISO C forbids zero-size array %qs" msgstr "" -#: c-format.c:96 c-format.c:205 +#: c-decl.c:4168 #, gcc-internal-format -msgid "format string has invalid operand number" +msgid "size of array %qs is negative" msgstr "" -#: c-format.c:113 +#: c-decl.c:4182 #, gcc-internal-format -msgid "function does not return string type" +msgid "ISO C90 forbids array %qs whose size can%'t be evaluated" msgstr "" -#: c-format.c:142 +#: c-decl.c:4186 #, gcc-internal-format -msgid "format string argument not a string type" +msgid "ISO C90 forbids variable-size array %qs" msgstr "" -#: c-format.c:185 +#: c-decl.c:4226 c-decl.c:4392 cp/decl.c:7636 #, gcc-internal-format -msgid "unrecognized format specifier" +msgid "size of array %qs is too large" msgstr "" -#: c-format.c:197 +#: c-decl.c:4237 #, gcc-internal-format -msgid "%qE is an unrecognized format function type" +msgid "ISO C90 does not support flexible array members" msgstr "" -#: c-format.c:211 +#: c-decl.c:4247 #, gcc-internal-format -msgid "%<...%> has invalid operand number" +msgid "array type has incomplete element type" msgstr "" -#: c-format.c:218 +#: c-decl.c:4302 cp/decl.c:7300 #, gcc-internal-format -msgid "format string argument follows the args to be formatted" +msgid "%qs declared as function returning a function" msgstr "" -#: c-format.c:836 +#: c-decl.c:4307 cp/decl.c:7305 #, gcc-internal-format -msgid "function might be possible candidate for %qs format attribute" +msgid "%qs declared as function returning an array" msgstr "" -#: c-format.c:928 c-format.c:949 c-format.c:1963 +#: c-decl.c:4327 #, gcc-internal-format -msgid "missing $ operand number in format" +msgid "function definition has qualified void return type" msgstr "" -#: c-format.c:958 +#: c-decl.c:4330 #, gcc-internal-format -msgid "%s does not support %%n$ operand number formats" +msgid "type qualifiers ignored on function return type" msgstr "" -#: c-format.c:965 +#: c-decl.c:4359 c-decl.c:4405 c-decl.c:4500 c-decl.c:4590 #, gcc-internal-format -msgid "operand number out of range in format" +msgid "ISO C forbids qualified function types" msgstr "" -#: c-format.c:988 +#: c-decl.c:4413 #, gcc-internal-format -msgid "format argument %d used more than once in %s format" +msgid "typedef %q+D declared %" msgstr "" -#: c-format.c:1020 +#: c-decl.c:4443 #, gcc-internal-format -msgid "$ operand number used after format without operand number" +msgid "ISO C forbids const or volatile function types" msgstr "" -#: c-format.c:1051 +#: c-decl.c:4463 #, gcc-internal-format -msgid "format argument %d unused before used argument %d in $-style format" +msgid "variable or field %qs declared void" msgstr "" -#: c-format.c:1146 +#: c-decl.c:4493 #, gcc-internal-format -msgid "format not a string literal, format string not checked" +msgid "attributes in parameter array declarator ignored" msgstr "" -#: c-format.c:1161 c-format.c:1164 +#: c-decl.c:4527 #, gcc-internal-format -msgid "format not a string literal and no format arguments" +msgid "parameter %q+D declared %" msgstr "" -#: c-format.c:1167 +#: c-decl.c:4540 #, gcc-internal-format -msgid "format not a string literal, argument types not checked" +msgid "field %qs declared as a function" msgstr "" -#: c-format.c:1180 +#: c-decl.c:4546 #, gcc-internal-format -msgid "too many arguments for format" +msgid "field %qs has incomplete type" msgstr "" -#: c-format.c:1183 +#: c-decl.c:4560 c-decl.c:4572 c-decl.c:4576 #, gcc-internal-format -msgid "unused arguments in $-style format" +msgid "invalid storage class for function %qs" msgstr "" -#: c-format.c:1186 +#: c-decl.c:4596 #, gcc-internal-format -msgid "zero-length %s format string" +msgid "% function returns non-void value" msgstr "" -#: c-format.c:1190 +#: c-decl.c:4624 #, gcc-internal-format -msgid "format is a wide character string" +msgid "cannot inline function %" msgstr "" -#: c-format.c:1193 +#: c-decl.c:4671 #, gcc-internal-format -msgid "unterminated format string" +msgid "variable previously declared % redeclared %" msgstr "" -#: c-format.c:1407 +#: c-decl.c:4681 #, gcc-internal-format -msgid "embedded %<\\0%> in format" +msgid "variable %q+D declared %" msgstr "" -#: c-format.c:1422 +#. A mere warning is sure to result in improper semantics +#. at runtime. Don't bother to allow this to compile. +#: c-decl.c:4712 cp/decl.c:6060 #, gcc-internal-format -msgid "spurious trailing %<%%%> in format" +msgid "thread-local storage not supported for this target" msgstr "" -#: c-format.c:1466 c-format.c:1711 +#: c-decl.c:4777 c-decl.c:5932 #, gcc-internal-format -msgid "repeated %s in format" +msgid "function declaration isn%'t a prototype" msgstr "" -#: c-format.c:1479 +#: c-decl.c:4785 #, gcc-internal-format -msgid "missing fill character at end of strfmon format" +msgid "parameter names (without types) in function declaration" msgstr "" -#: c-format.c:1523 c-format.c:1625 c-format.c:1910 c-format.c:1975 +#: c-decl.c:4818 #, gcc-internal-format -msgid "too few arguments for format" +msgid "parameter %u (%q+D) has incomplete type" msgstr "" -#: c-format.c:1564 +#: c-decl.c:4821 #, gcc-internal-format -msgid "zero width in %s format" +msgid "%Jparameter %u has incomplete type" msgstr "" -#: c-format.c:1582 +#: c-decl.c:4830 #, gcc-internal-format -msgid "empty left precision in %s format" +msgid "parameter %u (%q+D) has void type" msgstr "" -#: c-format.c:1655 +#: c-decl.c:4833 #, gcc-internal-format -msgid "empty precision in %s format" +msgid "%Jparameter %u has void type" msgstr "" -#: c-format.c:1695 +#: c-decl.c:4893 #, gcc-internal-format -msgid "%s does not support the %qs %s length modifier" +msgid "% as only parameter may not be qualified" msgstr "" -#: c-format.c:1745 +#: c-decl.c:4897 c-decl.c:4931 #, gcc-internal-format -msgid "conversion lacks type at end of format" +msgid "% must be the only parameter" msgstr "" -#: c-format.c:1756 +#: c-decl.c:4925 #, gcc-internal-format -msgid "unknown conversion type character %qc in format" +msgid "parameter %q+D has just a forward declaration" msgstr "" -#: c-format.c:1759 +#. The %s will be one of 'struct', 'union', or 'enum'. +#: c-decl.c:4970 #, gcc-internal-format -msgid "unknown conversion type character 0x%x in format" +msgid "%<%s %E%> declared inside parameter list" msgstr "" -#: c-format.c:1766 +#. The %s will be one of 'struct', 'union', or 'enum'. +#: c-decl.c:4974 #, gcc-internal-format -msgid "%s does not support the %<%%%c%> %s format" +msgid "anonymous %s declared inside parameter list" msgstr "" -#: c-format.c:1782 +#: c-decl.c:4979 #, gcc-internal-format -msgid "%s used with %<%%%c%> %s format" +msgid "" +"its scope is only this definition or declaration, which is probably not what " +"you want" msgstr "" -#: c-format.c:1791 +#: c-decl.c:5112 #, gcc-internal-format -msgid "%s does not support %s" +msgid "redefinition of %" msgstr "" -#: c-format.c:1801 +#: c-decl.c:5114 #, gcc-internal-format -msgid "%s does not support %s with the %<%%%c%> %s format" +msgid "redefinition of %" msgstr "" -#: c-format.c:1835 +#: c-decl.c:5119 #, gcc-internal-format -msgid "%s ignored with %s and %<%%%c%> %s format" +msgid "nested redefinition of %" msgstr "" -#: c-format.c:1839 +#: c-decl.c:5121 #, gcc-internal-format -msgid "%s ignored with %s in %s format" +msgid "nested redefinition of %" msgstr "" -#: c-format.c:1846 +#: c-decl.c:5192 cp/decl.c:3465 #, gcc-internal-format -msgid "use of %s and %s together with %<%%%c%> %s format" +msgid "declaration does not declare anything" msgstr "" -#: c-format.c:1850 +#: c-decl.c:5196 #, gcc-internal-format -msgid "use of %s and %s together in %s format" +msgid "ISO C doesn%'t support unnamed structs/unions" msgstr "" -#: c-format.c:1869 +#: c-decl.c:5239 c-decl.c:5255 #, gcc-internal-format -msgid "%<%%%c%> yields only last 2 digits of year in some locales" +msgid "duplicate member %q+D" msgstr "" -#: c-format.c:1872 +#: c-decl.c:5294 #, gcc-internal-format -msgid "%<%%%c%> yields only last 2 digits of year" +msgid "union has no named members" msgstr "" -#. The end of the format string was reached. -#: c-format.c:1889 +#: c-decl.c:5296 #, gcc-internal-format -msgid "no closing %<]%> for %<%%[%> format" +msgid "union has no members" msgstr "" -#: c-format.c:1903 +#: c-decl.c:5301 #, gcc-internal-format -msgid "use of %qs length modifier with %qc type character" +msgid "struct has no named members" msgstr "" -#: c-format.c:1925 +#: c-decl.c:5303 #, gcc-internal-format -msgid "%s does not support the %<%%%s%c%> %s format" +msgid "struct has no members" msgstr "" -#: c-format.c:1942 +#: c-decl.c:5360 #, gcc-internal-format -msgid "operand number specified with suppressed assignment" +msgid "%Jflexible array member in union" msgstr "" -#: c-format.c:1945 +#: c-decl.c:5365 #, gcc-internal-format -msgid "operand number specified for format taking no argument" +msgid "%Jflexible array member not at end of struct" msgstr "" -#: c-format.c:2088 +#: c-decl.c:5370 #, gcc-internal-format -msgid "writing through null pointer (argument %d)" +msgid "%Jflexible array member in otherwise empty struct" msgstr "" -#: c-format.c:2096 +#: c-decl.c:5377 #, gcc-internal-format -msgid "reading through null pointer (argument %d)" +msgid "%Jinvalid use of structure with flexible array member" msgstr "" -#: c-format.c:2116 +#: c-decl.c:5488 #, gcc-internal-format -msgid "writing into constant object (argument %d)" +msgid "union cannot be made transparent" msgstr "" -#: c-format.c:2127 +#: c-decl.c:5559 #, gcc-internal-format -msgid "extra type qualifiers in format argument (argument %d)" +msgid "nested redefinition of %" msgstr "" -#: c-format.c:2238 +#. This enum is a named one that has been declared already. +#: c-decl.c:5566 #, gcc-internal-format -msgid "%s should have type %<%s%s%>, but argument %d has type %qT" +msgid "redeclaration of %" msgstr "" -#: c-format.c:2242 +#: c-decl.c:5629 #, gcc-internal-format -msgid "format %q.*s expects type %<%s%s%>, but argument %d has type %qT" +msgid "enumeration values exceed range of largest integer" msgstr "" -#: c-format.c:2250 +#: c-decl.c:5646 #, gcc-internal-format -msgid "%s should have type %<%T%s%>, but argument %d has type %qT" +msgid "specified mode too small for enumeral values" msgstr "" -#: c-format.c:2254 +#: c-decl.c:5742 #, gcc-internal-format -msgid "format %q.*s expects type %<%T%s%>, but argument %d has type %qT" +msgid "enumerator value for %qE is not an integer constant" msgstr "" -#: c-format.c:2313 c-format.c:2319 c-format.c:2420 +#: c-decl.c:5759 #, gcc-internal-format -msgid "%<__gcc_host_wide_int__%> is not defined as a type" +msgid "overflow in enumeration values" msgstr "" -#: c-format.c:2326 c-format.c:2430 +#: c-decl.c:5764 #, gcc-internal-format -msgid "%<__gcc_host_wide_int__%> is not defined as % or %" +msgid "ISO C restricts enumerator values to range of %" msgstr "" -#: c-format.c:2379 +#: c-decl.c:5860 #, gcc-internal-format -msgid "% is not defined as a type" +msgid "return type is an incomplete type" msgstr "" -#: c-format.c:2396 +#: c-decl.c:5868 #, gcc-internal-format -msgid "% is not defined as a type" +msgid "return type defaults to %" msgstr "" -#: c-format.c:2401 +#: c-decl.c:5939 #, gcc-internal-format -msgid "% is not defined as a pointer type" +msgid "no previous prototype for %q+D" msgstr "" -#: c-format.c:2587 +#: c-decl.c:5948 #, gcc-internal-format -msgid "args to be formatted is not %<...%>" +msgid "%q+D was used with no prototype before its definition" msgstr "" -#: c-format.c:2596 +#: c-decl.c:5954 #, gcc-internal-format -msgid "strftime formats cannot format arguments" +msgid "no previous declaration for %q+D" msgstr "" -#: c-lex.c:254 +#: c-decl.c:5964 #, gcc-internal-format -msgid "badly nested C headers from preprocessor" +msgid "%q+D was used with no declaration before its definition" msgstr "" -#: c-lex.c:302 +#: c-decl.c:5996 c-decl.c:6513 #, gcc-internal-format -msgid "%Hignoring #pragma %s %s" +msgid "return type of %q+D is not %" msgstr "" -#. ... or not. -#: c-lex.c:411 +#: c-decl.c:6011 #, gcc-internal-format -msgid "%Hstray %<@%> in program" +msgid "first argument of %q+D should be %" msgstr "" -#: c-lex.c:425 +#: c-decl.c:6019 #, gcc-internal-format -msgid "stray %qs in program" +msgid "second argument of %q+D should be %" msgstr "" -#: c-lex.c:435 +#: c-decl.c:6028 #, gcc-internal-format -msgid "missing terminating %c character" +msgid "third argument of %q+D should probably be %" msgstr "" -#: c-lex.c:437 +#: c-decl.c:6038 #, gcc-internal-format -msgid "stray %qc in program" +msgid "%q+D takes only zero or two arguments" msgstr "" -#: c-lex.c:439 +#: c-decl.c:6041 #, gcc-internal-format -msgid "stray %<\\%o%> in program" +msgid "%q+D is normally a non-static function" msgstr "" -#: c-lex.c:600 +#: c-decl.c:6087 #, gcc-internal-format -msgid "this decimal constant is unsigned only in ISO C90" +msgid "%Jold-style parameter declarations in prototyped function definition" msgstr "" -#: c-lex.c:604 +#: c-decl.c:6101 #, gcc-internal-format -msgid "this decimal constant would be unsigned in ISO C90" +msgid "%Jtraditional C rejects ISO C style function definitions" msgstr "" -#: c-lex.c:620 +#: c-decl.c:6117 #, gcc-internal-format -msgid "integer constant is too large for %qs type" +msgid "%Jparameter name omitted" msgstr "" -#: c-lex.c:686 +#: c-decl.c:6151 #, gcc-internal-format -msgid "floating constant exceeds range of %<%s%>" +msgid "%Jold-style function definition" msgstr "" -#: c-lex.c:769 +#: c-decl.c:6160 #, gcc-internal-format -msgid "traditional C rejects string constant concatenation" +msgid "%Jparameter name missing from parameter list" msgstr "" -#: c-objc-common.c:81 +#: c-decl.c:6171 #, gcc-internal-format -msgid "" -"%Jfunction %qF can never be inlined because it is suppressed using -fno-" -"inline" +msgid "%q+D declared as a non-parameter" msgstr "" -#: c-objc-common.c:91 +#: c-decl.c:6176 #, gcc-internal-format -msgid "" -"%Jfunction %qF can never be inlined because it might not be bound within " -"this unit of translation" +msgid "multiple parameters named %q+D" msgstr "" -#: c-objc-common.c:99 +#: c-decl.c:6184 #, gcc-internal-format -msgid "" -"%Jfunction %qF can never be inlined because it uses attributes conflicting " -"with inlining" +msgid "parameter %q+D declared with void type" msgstr "" -#: c-opts.c:144 +#: c-decl.c:6201 c-decl.c:6203 #, gcc-internal-format -msgid "no class name specified with %qs" +msgid "type of %q+D defaults to %" msgstr "" -#: c-opts.c:148 +#: c-decl.c:6222 #, gcc-internal-format -msgid "assertion missing after %qs" +msgid "parameter %q+D has incomplete type" msgstr "" -#: c-opts.c:153 +#: c-decl.c:6228 #, gcc-internal-format -msgid "macro name missing after %qs" +msgid "declaration for parameter %q+D but no such parameter" msgstr "" -#: c-opts.c:162 +#: c-decl.c:6278 #, gcc-internal-format -msgid "missing path after %qs" +msgid "number of arguments doesn%'t match built-in prototype" msgstr "" -#: c-opts.c:171 +#: c-decl.c:6282 #, gcc-internal-format -msgid "missing filename after %qs" +msgid "number of arguments doesn%'t match prototype" msgstr "" -#: c-opts.c:176 +#: c-decl.c:6283 c-decl.c:6323 c-decl.c:6336 #, gcc-internal-format -msgid "missing makefile target after %qs" +msgid "%Hprototype declaration" msgstr "" -#: c-opts.c:303 +#: c-decl.c:6317 #, gcc-internal-format -msgid "-I- specified twice" +msgid "promoted argument %qD doesn%'t match built-in prototype" msgstr "" -#: c-opts.c:306 +#: c-decl.c:6321 #, gcc-internal-format -msgid "obsolete option -I- used, please use -iquote instead" +msgid "promoted argument %qD doesn%'t match prototype" msgstr "" -#: c-opts.c:473 +#: c-decl.c:6331 #, gcc-internal-format -msgid "argument %qs to %<-Wnormalized%> not recognized" +msgid "argument %qD doesn%'t match built-in prototype" msgstr "" -#: c-opts.c:557 +#: c-decl.c:6335 #, gcc-internal-format -msgid "switch %qs is no longer supported" +msgid "argument %qD doesn%'t match prototype" msgstr "" -#: c-opts.c:670 +#: c-decl.c:6558 cp/decl.c:10877 #, gcc-internal-format -msgid "" -"-fhandle-exceptions has been renamed -fexceptions (and is now on by default)" +msgid "no return statement in function returning non-void" msgstr "" -#: c-opts.c:848 +#: c-decl.c:6567 #, gcc-internal-format -msgid "output filename specified twice" +msgid "this function may return with or without a value" msgstr "" -#: c-opts.c:985 +#. 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:6660 #, gcc-internal-format -msgid "-Wformat-y2k ignored without -Wformat" +msgid "% loop initial declaration used outside C99 mode" msgstr "" -#: c-opts.c:987 +#: c-decl.c:6689 #, gcc-internal-format -msgid "-Wformat-extra-args ignored without -Wformat" +msgid "declaration of static variable %q+D in % loop initial declaration" msgstr "" -#: c-opts.c:989 +#: c-decl.c:6692 #, gcc-internal-format -msgid "-Wformat-zero-length ignored without -Wformat" +msgid "" +"declaration of % variable %q+D in % loop initial declaration" msgstr "" -#: c-opts.c:991 +#: c-decl.c:6697 #, gcc-internal-format -msgid "-Wformat-nonliteral ignored without -Wformat" +msgid "% declared in % loop initial declaration" msgstr "" -#: c-opts.c:993 +#: c-decl.c:6701 #, gcc-internal-format -msgid "-Wformat-security ignored without -Wformat" +msgid "% declared in % loop initial declaration" msgstr "" -#: c-opts.c:995 +#: c-decl.c:6705 #, gcc-internal-format -msgid "-Wmissing-format-attribute ignored without -Wformat" +msgid "% declared in % loop initial declaration" msgstr "" -#: c-opts.c:1015 +#: c-decl.c:6709 #, gcc-internal-format -msgid "opening output file %s: %m" +msgid "declaration of non-variable %q+D in % loop initial declaration" msgstr "" -#: c-opts.c:1020 +#: c-decl.c:6993 c-decl.c:7144 c-decl.c:7354 #, gcc-internal-format -msgid "too many filenames given. Type %s --help for usage" +msgid "duplicate %qE" msgstr "" -#: c-opts.c:1106 +#: c-decl.c:7016 c-decl.c:7153 c-decl.c:7256 #, gcc-internal-format -msgid "YYDEBUG was not defined at build time, -dy ignored" +msgid "two or more data types in declaration specifiers" msgstr "" -#: c-opts.c:1152 +#: c-decl.c:7028 cp/decl.c:6863 #, gcc-internal-format -msgid "opening dependency file %s: %m" +msgid "% is too long for GCC" msgstr "" -#: c-opts.c:1162 +#: c-decl.c:7035 c-decl.c:7227 #, gcc-internal-format -msgid "closing dependency file %s: %m" +msgid "both % and % in declaration specifiers" msgstr "" -#: c-opts.c:1165 +#: c-decl.c:7041 #, gcc-internal-format -msgid "when writing output to %s: %m" +msgid "ISO C90 does not support %" msgstr "" -#: c-opts.c:1245 +#: c-decl.c:7046 c-decl.c:7066 #, gcc-internal-format -msgid "to generate dependencies you must specify either -M or -MM" +msgid "both % and % in declaration specifiers" msgstr "" -#: c-opts.c:1413 +#: c-decl.c:7049 c-decl.c:7160 #, gcc-internal-format -msgid "too late for # directive to set debug directory" +msgid "both % and % in declaration specifiers" msgstr "" -#: c-parser.c:969 +#: c-decl.c:7052 c-decl.c:7179 #, gcc-internal-format -msgid "ISO C forbids an empty source file" +msgid "both % and %<_Bool%> in declaration specifiers" msgstr "" -#: c-parser.c:1054 c-parser.c:5755 +#: c-decl.c:7055 c-decl.c:7198 #, gcc-internal-format -msgid "ISO C does not allow extra %<;%> outside of a function" +msgid "both % and % in declaration specifiers" msgstr "" -#: c-parser.c:1145 +#: c-decl.c:7058 c-decl.c:7211 #, gcc-internal-format -msgid "expected declaration specifiers" +msgid "both % and % in declaration specifiers" msgstr "" -#: c-parser.c:1193 +#: c-decl.c:7069 c-decl.c:7163 #, gcc-internal-format -msgid "data definition has no type or storage class" +msgid "both % and % in declaration specifiers" msgstr "" -#: c-parser.c:1247 +#: c-decl.c:7072 c-decl.c:7182 #, gcc-internal-format -msgid "expected %<,%> or %<;%>" +msgid "both % and %<_Bool%> in declaration specifiers" msgstr "" -#. This can appear in many cases looking nothing like a -#. function definition, so we don't give a more specific -#. error suggesting there was one. -#: c-parser.c:1254 c-parser.c:1271 +#: c-decl.c:7075 c-decl.c:7201 #, gcc-internal-format -msgid "expected %<=%>, %<,%>, %<;%>, % or %<__attribute__%>" +msgid "both % and % in declaration specifiers" msgstr "" -#: c-parser.c:1263 +#: c-decl.c:7078 c-decl.c:7214 #, gcc-internal-format -msgid "ISO C forbids nested functions" +msgid "both % and % in declaration specifiers" 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-decl.c:7081 c-decl.c:7230 #, gcc-internal-format -msgid "expected identifier" +msgid "both % and % in declaration specifiers" msgstr "" -#: c-parser.c:1635 cp/parser.c:10163 +#: c-decl.c:7089 c-decl.c:7109 #, gcc-internal-format -msgid "comma at end of enumerator list" +msgid "both % and % in declaration specifiers" msgstr "" -#: c-parser.c:1641 +#: c-decl.c:7092 c-decl.c:7166 #, gcc-internal-format -msgid "expected %<,%> or %<}%>" +msgid "both % and % in declaration specifiers" msgstr "" -#: c-parser.c:1655 c-parser.c:1825 +#: c-decl.c:7095 c-decl.c:7185 #, gcc-internal-format -msgid "expected %<{%>" +msgid "both % and %<_Bool%> in declaration specifiers" msgstr "" -#: c-parser.c:1664 +#: c-decl.c:7098 c-decl.c:7217 #, gcc-internal-format -msgid "ISO C forbids forward references to % types" +msgid "both % and % in declaration specifiers" msgstr "" -#: c-parser.c:1767 +#: c-decl.c:7101 c-decl.c:7233 #, gcc-internal-format -msgid "expected class name" +msgid "both % and % in declaration specifiers" msgstr "" -#: c-parser.c:1786 c-parser.c:5512 +#: c-decl.c:7112 c-decl.c:7169 #, gcc-internal-format -msgid "extra semicolon in struct or union specified" +msgid "both % and % in declaration specifiers" msgstr "" -#: c-parser.c:1808 +#: c-decl.c:7115 c-decl.c:7188 #, gcc-internal-format -msgid "no semicolon at end of struct or union" +msgid "both % and %<_Bool%> in declaration specifiers" msgstr "" -#: c-parser.c:1811 +#: c-decl.c:7118 c-decl.c:7220 #, gcc-internal-format -msgid "expected %<;%>" +msgid "both % and % in declaration specifiers" msgstr "" -#: c-parser.c:1888 c-parser.c:2814 +#: c-decl.c:7121 c-decl.c:7236 #, gcc-internal-format -msgid "expected specifier-qualifier-list" +msgid "both % and % in declaration specifiers" msgstr "" -#: c-parser.c:1898 +#: c-decl.c:7129 #, gcc-internal-format -msgid "ISO C forbids member declarations with no members" +msgid "ISO C90 does not support complex types" msgstr "" -#: c-parser.c:1967 +#: c-decl.c:7131 c-decl.c:7172 #, gcc-internal-format -msgid "expected %<,%>, %<;%> or %<}%>" +msgid "both % and % in declaration specifiers" msgstr "" -#: c-parser.c:1974 +#: c-decl.c:7134 c-decl.c:7191 #, gcc-internal-format -msgid "expected %<:%>, %<,%>, %<;%>, %<}%> or %<__attribute__%>" +msgid "both % and %<_Bool%> in declaration specifiers" msgstr "" -#: c-parser.c:2023 +#: c-decl.c:7273 #, gcc-internal-format -msgid "% applied to a bit-field" +msgid "%qE fails to be a typedef or built in type" msgstr "" -#: c-parser.c:2242 +#: c-decl.c:7305 #, gcc-internal-format -msgid "expected identifier or %<(%>" +msgid "%qE is not at beginning of declaration" msgstr "" -#: c-parser.c:2435 +#: c-decl.c:7319 #, gcc-internal-format -msgid "ISO C requires a named argument before %<...%>" +msgid "%<__thread%> used with %" msgstr "" -#: c-parser.c:2536 +#: c-decl.c:7321 #, gcc-internal-format -msgid "expected declaration specifiers or %<...%>" +msgid "%<__thread%> used with %" msgstr "" -#: c-parser.c:2586 +#: c-decl.c:7323 #, gcc-internal-format -msgid "wide string literal in %" +msgid "%<__thread%> used with %" msgstr "" -#: c-parser.c:2592 +#: c-decl.c:7334 cp/parser.c:7366 #, gcc-internal-format -msgid "expected string literal" +msgid "%<__thread%> before %" msgstr "" -#: c-parser.c:2906 +#: c-decl.c:7343 cp/parser.c:7356 #, gcc-internal-format -msgid "ISO C forbids empty initializer braces" +msgid "%<__thread%> before %" msgstr "" -#: c-parser.c:2951 +#: c-decl.c:7359 #, gcc-internal-format -msgid "obsolete use of designated initializer with %<:%>" +msgid "multiple storage classes in declaration specifiers" msgstr "" -#: c-parser.c:3074 +#: c-decl.c:7366 #, gcc-internal-format -msgid "ISO C forbids specifying range of elements to initialize" +msgid "%<__thread%> used with %qE" msgstr "" -#: c-parser.c:3087 +#: c-decl.c:7420 #, gcc-internal-format -msgid "ISO C90 forbids specifying subobject to initialize" +msgid "ISO C does not support plain % meaning %" msgstr "" -#: c-parser.c:3095 +#: c-decl.c:7465 c-decl.c:7491 #, gcc-internal-format -msgid "obsolete use of designated initializer without %<=%>" +msgid "ISO C does not support complex integer types" msgstr "" -#: c-parser.c:3103 +#: c-decl.c:7564 toplev.c:821 #, gcc-internal-format -msgid "expected %<=%>" +msgid "%q+F used but never defined" msgstr "" -#: c-parser.c:3240 +#: c-format.c:97 c-format.c:206 #, gcc-internal-format -msgid "ISO C forbids label declarations" +msgid "format string has invalid operand number" msgstr "" -#: c-parser.c:3245 c-parser.c:3254 +#: c-format.c:114 #, gcc-internal-format -msgid "expected declaration or statement" +msgid "function does not return string type" msgstr "" -#: c-parser.c:3274 c-parser.c:3302 +#: c-format.c:143 #, gcc-internal-format -msgid "%HISO C90 forbids mixed declarations and code" +msgid "format string argument not a string type" msgstr "" -#: c-parser.c:3318 +#: c-format.c:186 #, gcc-internal-format -msgid "label at end of compound statement" +msgid "unrecognized format specifier" msgstr "" -#: c-parser.c:3361 +#: c-format.c:198 #, gcc-internal-format -msgid "expected %<:%> or %<...%>" +msgid "%qE is an unrecognized format function type" msgstr "" -#: c-parser.c:3497 +#: c-format.c:212 #, gcc-internal-format -msgid "expected identifier or %<*%>" +msgid "%<...%> has invalid operand number" msgstr "" -#. Avoid infinite loop in error recovery: -#. 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-format.c:219 #, gcc-internal-format -msgid "expected statement" +msgid "format string argument follows the args to be formatted" msgstr "" -#: c-parser.c:3892 +#: c-format.c:899 #, gcc-internal-format -msgid "%E qualifier ignored on asm" +msgid "function might be possible candidate for %qs format attribute" msgstr "" -#: c-parser.c:4172 +#: c-format.c:991 c-format.c:1012 c-format.c:2026 #, gcc-internal-format -msgid "ISO C forbids omitting the middle term of a ?: expression" +msgid "missing $ operand number in format" msgstr "" -#: c-parser.c:4558 +#: c-format.c:1021 #, gcc-internal-format -msgid "traditional C rejects the unary plus operator" +msgid "%s does not support %%n$ operand number formats" msgstr "" -#: c-parser.c:4671 +#: c-format.c:1028 #, gcc-internal-format -msgid "% applied to a bit-field" +msgid "operand number out of range in format" msgstr "" -#: c-parser.c:4814 c-parser.c:5155 c-parser.c:5177 +#: c-format.c:1051 #, gcc-internal-format -msgid "expected expression" +msgid "format argument %d used more than once in %s format" msgstr "" -#: c-parser.c:4840 +#: c-format.c:1083 #, gcc-internal-format -msgid "braced-group within expression allowed only inside a function" +msgid "$ operand number used after format without operand number" msgstr "" -#: c-parser.c:4854 +#: c-format.c:1114 #, gcc-internal-format -msgid "ISO C forbids braced-groups within expressions" +msgid "format argument %d unused before used argument %d in $-style format" msgstr "" -#: c-parser.c:5037 +#: c-format.c:1209 #, gcc-internal-format -msgid "first argument to %<__builtin_choose_expr%> not a constant" +msgid "format not a string literal, format string not checked" msgstr "" -#: c-parser.c:5204 +#: c-format.c:1224 c-format.c:1227 #, gcc-internal-format -msgid "compound literal has variable size" +msgid "format not a string literal and no format arguments" msgstr "" -#: c-parser.c:5212 +#: c-format.c:1230 #, gcc-internal-format -msgid "ISO C90 forbids compound literals" +msgid "format not a string literal, argument types not checked" msgstr "" -#: c-parser.c:5723 +#: c-format.c:1243 #, gcc-internal-format -msgid "extra semicolon in method definition specified" +msgid "too many arguments for format" msgstr "" -#: c-pch.c:132 +#: c-format.c:1246 #, gcc-internal-format -msgid "can%'t create precompiled header %s: %m" +msgid "unused arguments in $-style format" msgstr "" -#: c-pch.c:153 +#: c-format.c:1249 #, gcc-internal-format -msgid "can%'t write to %s: %m" +msgid "zero-length %s format string" msgstr "" -#: c-pch.c:159 +#: c-format.c:1253 #, gcc-internal-format -msgid "%qs is not a valid output file" +msgid "format is a wide character string" msgstr "" -#: c-pch.c:188 c-pch.c:203 c-pch.c:217 +#: c-format.c:1256 #, gcc-internal-format -msgid "can%'t write %s: %m" +msgid "unterminated format string" msgstr "" -#: c-pch.c:193 c-pch.c:210 +#: c-format.c:1470 #, gcc-internal-format -msgid "can%'t seek in %s: %m" +msgid "embedded %<\\0%> in format" msgstr "" -#: c-pch.c:201 c-pch.c:243 c-pch.c:283 c-pch.c:334 +#: c-format.c:1485 #, gcc-internal-format -msgid "can%'t read %s: %m" +msgid "spurious trailing %<%%%> in format" msgstr "" -#: c-pch.c:452 +#: c-format.c:1529 c-format.c:1774 #, gcc-internal-format -msgid "malformed #pragma GCC pch_preprocess, ignored" +msgid "repeated %s in format" msgstr "" -#: c-pch.c:458 +#: c-format.c:1542 #, gcc-internal-format -msgid "pch_preprocess pragma should only be used with -fpreprocessed" +msgid "missing fill character at end of strfmon format" msgstr "" -#: c-pch.c:459 +#: c-format.c:1586 c-format.c:1688 c-format.c:1973 c-format.c:2038 #, gcc-internal-format -msgid "use #include instead" +msgid "too few arguments for format" msgstr "" -#: c-pch.c:467 +#: c-format.c:1627 #, gcc-internal-format -msgid "%s: couldn%'t open PCH file: %m\n" +msgid "zero width in %s format" msgstr "" -#: c-pch.c:472 +#: c-format.c:1645 #, gcc-internal-format -msgid "use -Winvalid-pch for more information" +msgid "empty left precision in %s format" msgstr "" -#: c-pch.c:473 +#: c-format.c:1718 #, gcc-internal-format -msgid "%s: PCH file was invalid" +msgid "empty precision in %s format" msgstr "" -#: c-pragma.c:100 +#: c-format.c:1758 #, gcc-internal-format -msgid "#pragma pack (pop) encountered without matching #pragma pack (push)" +msgid "%s does not support the %qs %s length modifier" msgstr "" -#: c-pragma.c:113 +#: c-format.c:1808 #, gcc-internal-format -msgid "" -"#pragma pack(pop, %s) encountered without matching #pragma pack(push, %s)" +msgid "conversion lacks type at end of format" msgstr "" -#: c-pragma.c:127 +#: c-format.c:1819 #, gcc-internal-format -msgid "#pragma pack(push[, id], ) is not supported on this target" +msgid "unknown conversion type character %qc in format" msgstr "" -#: c-pragma.c:129 +#: c-format.c:1822 #, gcc-internal-format -msgid "#pragma pack(pop[, id], ) is not supported on this target" +msgid "unknown conversion type character 0x%x in format" msgstr "" -#: c-pragma.c:150 +#: c-format.c:1829 #, gcc-internal-format -msgid "missing %<(%> after %<#pragma pack%> - ignored" +msgid "%s does not support the %<%%%c%> %s format" msgstr "" -#: c-pragma.c:163 c-pragma.c:203 +#: c-format.c:1845 #, gcc-internal-format -msgid "malformed %<#pragma pack%> - ignored" +msgid "%s used with %<%%%c%> %s format" msgstr "" -#: c-pragma.c:168 +#: c-format.c:1854 #, gcc-internal-format -msgid "malformed %<#pragma pack(push[, id][, ])%> - ignored" +msgid "%s does not support %s" msgstr "" -#: c-pragma.c:170 +#: c-format.c:1864 #, gcc-internal-format -msgid "malformed %<#pragma pack(pop[, id])%> - ignored" +msgid "%s does not support %s with the %<%%%c%> %s format" msgstr "" -#: c-pragma.c:179 +#: c-format.c:1898 #, gcc-internal-format -msgid "unknown action %qs for %<#pragma pack%> - ignored" +msgid "%s ignored with %s and %<%%%c%> %s format" msgstr "" -#: c-pragma.c:206 +#: c-format.c:1902 #, gcc-internal-format -msgid "junk at end of %<#pragma pack%>" +msgid "%s ignored with %s in %s format" msgstr "" -#: c-pragma.c:209 +#: c-format.c:1909 #, gcc-internal-format -msgid "#pragma pack has no effect with -fpack-struct - ignored" +msgid "use of %s and %s together with %<%%%c%> %s format" msgstr "" -#: c-pragma.c:229 +#: c-format.c:1913 #, gcc-internal-format -msgid "alignment must be a small power of two, not %d" +msgid "use of %s and %s together in %s format" msgstr "" -#: c-pragma.c:262 +#: c-format.c:1932 #, gcc-internal-format -msgid "" -"%Japplying #pragma weak %qD after first use results in unspecified behavior" +msgid "%<%%%c%> yields only last 2 digits of year in some locales" msgstr "" -#: c-pragma.c:336 c-pragma.c:341 +#: c-format.c:1935 #, gcc-internal-format -msgid "malformed #pragma weak, ignored" +msgid "%<%%%c%> yields only last 2 digits of year" msgstr "" -#: c-pragma.c:345 +#. The end of the format string was reached. +#: c-format.c:1952 #, gcc-internal-format -msgid "junk at end of #pragma weak" +msgid "no closing %<]%> for %<%%[%> format" msgstr "" -#: c-pragma.c:413 c-pragma.c:415 +#: c-format.c:1966 #, gcc-internal-format -msgid "malformed #pragma redefine_extname, ignored" +msgid "use of %qs length modifier with %qc type character" msgstr "" -#: c-pragma.c:418 +#: c-format.c:1988 #, gcc-internal-format -msgid "junk at end of #pragma redefine_extname" +msgid "%s does not support the %<%%%s%c%> %s format" msgstr "" -#: c-pragma.c:424 +#: c-format.c:2005 #, gcc-internal-format -msgid "#pragma redefine_extname not supported on this target" +msgid "operand number specified with suppressed assignment" msgstr "" -#: c-pragma.c:441 c-pragma.c:528 +#: c-format.c:2008 #, gcc-internal-format -msgid "#pragma redefine_extname ignored due to conflict with previous rename" +msgid "operand number specified for format taking no argument" msgstr "" -#: c-pragma.c:464 +#: c-format.c:2151 #, gcc-internal-format -msgid "" -"#pragma redefine_extname ignored due to conflict with previous #pragma " -"redefine_extname" +msgid "writing through null pointer (argument %d)" msgstr "" -#: c-pragma.c:483 +#: c-format.c:2159 #, gcc-internal-format -msgid "malformed #pragma extern_prefix, ignored" +msgid "reading through null pointer (argument %d)" msgstr "" -#: c-pragma.c:486 +#: c-format.c:2179 #, gcc-internal-format -msgid "junk at end of #pragma extern_prefix" +msgid "writing into constant object (argument %d)" msgstr "" -#: c-pragma.c:493 +#: c-format.c:2190 #, gcc-internal-format -msgid "#pragma extern_prefix not supported on this target" +msgid "extra type qualifiers in format argument (argument %d)" msgstr "" -#: c-pragma.c:519 +#: c-format.c:2301 #, gcc-internal-format -msgid "asm declaration ignored due to conflict with previous rename" +msgid "%s should have type %<%s%s%>, but argument %d has type %qT" msgstr "" -#: c-pragma.c:550 +#: c-format.c:2305 #, gcc-internal-format -msgid "" -"#pragma redefine_extname ignored due to conflict with __asm__ declaration" +msgid "format %q.*s expects type %<%s%s%>, but argument %d has type %qT" msgstr "" -#: c-pragma.c:615 +#: c-format.c:2313 #, gcc-internal-format -msgid "#pragma GCC visibility must be followed by push or pop" +msgid "%s should have type %<%T%s%>, but argument %d has type %qT" msgstr "" -#: c-pragma.c:622 +#: c-format.c:2317 #, gcc-internal-format -msgid "No matching push for %<#pragma GCC visibility pop%>" +msgid "format %q.*s expects type %<%T%s%>, but argument %d has type %qT" msgstr "" -#: c-pragma.c:634 c-pragma.c:660 +#: c-format.c:2376 c-format.c:2382 c-format.c:2532 #, gcc-internal-format -msgid "missing %<(%> after %<#pragma GCC visibility push%> - ignored" +msgid "%<__gcc_host_wide_int__%> is not defined as a type" msgstr "" -#: c-pragma.c:638 +#: c-format.c:2389 c-format.c:2542 #, gcc-internal-format -msgid "malformed #pragma GCC visibility push" +msgid "%<__gcc_host_wide_int__%> is not defined as % or %" msgstr "" -#: c-pragma.c:655 +#: c-format.c:2438 #, gcc-internal-format -msgid "" -"#pragma GCC visibility push() must specify default, internal, hidden or " -"protected" +msgid "% is not defined as a type" msgstr "" -#: c-pragma.c:664 +#: c-format.c:2491 #, gcc-internal-format -msgid "junk at end of %<#pragma GCC visibility%>" +msgid "% is not defined as a type" msgstr "" -#: c-typeck.c:143 +#: c-format.c:2508 #, gcc-internal-format -msgid "%qD has an incomplete type" +msgid "% is not defined as a type" msgstr "" -#: c-typeck.c:164 cp/call.c:2679 +#: c-format.c:2513 #, gcc-internal-format -msgid "invalid use of void expression" +msgid "% is not defined as a pointer type" msgstr "" -#: c-typeck.c:172 +#: c-format.c:2724 #, gcc-internal-format -msgid "invalid use of flexible array member" +msgid "args to be formatted is not %<...%>" msgstr "" -#: c-typeck.c:178 +#: c-format.c:2733 #, gcc-internal-format -msgid "invalid use of array with unspecified bounds" +msgid "strftime formats cannot format arguments" msgstr "" -#: c-typeck.c:186 +#: c-lex.c:254 #, gcc-internal-format -msgid "invalid use of undefined type %<%s %E%>" +msgid "badly nested C headers from preprocessor" msgstr "" -#. If this type has a typedef-name, the TYPE_NAME is a TYPE_DECL. -#: c-typeck.c:190 +#: c-lex.c:302 #, gcc-internal-format -msgid "invalid use of incomplete typedef %qD" +msgid "%Hignoring #pragma %s %s" msgstr "" -#: c-typeck.c:396 c-typeck.c:421 +#. ... or not. +#: c-lex.c:412 #, gcc-internal-format -msgid "function types not truly compatible in ISO C" +msgid "%Hstray %<@%> in program" msgstr "" -#: c-typeck.c:802 +#: c-lex.c:426 #, gcc-internal-format -msgid "types are not quite compatible" +msgid "stray %qs in program" msgstr "" -#: c-typeck.c:1044 +#: c-lex.c:436 #, gcc-internal-format -msgid "function return types not compatible due to %" +msgid "missing terminating %c character" msgstr "" -#: c-typeck.c:1203 c-typeck.c:2491 +#: c-lex.c:438 #, gcc-internal-format -msgid "arithmetic on pointer to an incomplete type" +msgid "stray %qc in program" msgstr "" -#: c-typeck.c:1594 +#: c-lex.c:440 #, gcc-internal-format -msgid "%qT has no member named %qE" +msgid "stray %<\\%o%> in program" msgstr "" -#: c-typeck.c:1629 +#: c-lex.c:601 #, gcc-internal-format -msgid "request for member %qE in something not a structure or union" +msgid "this decimal constant is unsigned only in ISO C90" msgstr "" -#: c-typeck.c:1660 +#: c-lex.c:605 #, gcc-internal-format -msgid "dereferencing pointer to incomplete type" +msgid "this decimal constant would be unsigned in ISO C90" msgstr "" -#: c-typeck.c:1664 +#: c-lex.c:621 #, gcc-internal-format -msgid "dereferencing % pointer" +msgid "integer constant is too large for %qs type" msgstr "" -#: c-typeck.c:1681 cp/typeck.c:2129 +#: c-lex.c:687 #, gcc-internal-format -msgid "invalid type argument of %qs" +msgid "floating constant exceeds range of %<%s%>" msgstr "" -#: c-typeck.c:1709 cp/typeck.c:2280 +#: c-lex.c:770 #, gcc-internal-format -msgid "subscripted value is neither array nor pointer" +msgid "traditional C rejects string constant concatenation" msgstr "" -#: c-typeck.c:1720 cp/typeck.c:2199 cp/typeck.c:2285 +#: c-objc-common.c:81 #, gcc-internal-format -msgid "array subscript is not an integer" +msgid "" +"function %q+F can never be inlined because it is suppressed using -fno-inline" msgstr "" -#: c-typeck.c:1726 +#: c-objc-common.c:91 #, gcc-internal-format -msgid "subscripted value is pointer to function" +msgid "" +"function %q+F can never be inlined because it might not be bound within this " +"unit of translation" msgstr "" -#: c-typeck.c:1739 cp/typeck.c:2195 +#: c-objc-common.c:99 #, gcc-internal-format -msgid "array subscript has type %" +msgid "" +"function %q+F can never be inlined because it uses attributes conflicting " +"with inlining" msgstr "" -#: c-typeck.c:1779 +#: c-opts.c:144 #, gcc-internal-format -msgid "ISO C forbids subscripting % array" +msgid "no class name specified with %qs" msgstr "" -#: c-typeck.c:1781 +#: c-opts.c:148 #, gcc-internal-format -msgid "ISO C90 forbids subscripting non-lvalue array" +msgid "assertion missing after %qs" msgstr "" -#: c-typeck.c:2023 +#: c-opts.c:153 #, gcc-internal-format -msgid "called object %qE is not a function" +msgid "macro name missing after %qs" 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-opts.c:162 #, gcc-internal-format -msgid "function called through a non-compatible type" +msgid "missing path after %qs" msgstr "" -#: c-typeck.c:2160 +#: c-opts.c:171 #, gcc-internal-format -msgid "too many arguments to function %qE" +msgid "missing filename after %qs" msgstr "" -#: c-typeck.c:2181 +#: c-opts.c:176 #, gcc-internal-format -msgid "type of formal parameter %d is incomplete" +msgid "missing makefile target after %qs" msgstr "" -#: c-typeck.c:2194 +#: c-opts.c:303 #, gcc-internal-format -msgid "" -"passing argument %d of %qE as integer rather than floating due to prototype" +msgid "-I- specified twice" msgstr "" -#: c-typeck.c:2199 +#: c-opts.c:306 #, gcc-internal-format -msgid "" -"passing argument %d of %qE as integer rather than complex due to prototype" +msgid "obsolete option -I- used, please use -iquote instead" msgstr "" -#: c-typeck.c:2204 +#: c-opts.c:473 #, gcc-internal-format -msgid "" -"passing argument %d of %qE as complex rather than floating due to prototype" +msgid "argument %qs to %<-Wnormalized%> not recognized" msgstr "" -#: c-typeck.c:2209 +#: c-opts.c:557 #, gcc-internal-format -msgid "" -"passing argument %d of %qE as floating rather than integer due to prototype" +msgid "switch %qs is no longer supported" msgstr "" -#: c-typeck.c:2214 +#: c-opts.c:670 #, gcc-internal-format msgid "" -"passing argument %d of %qE as complex rather than integer due to prototype" +"-fhandle-exceptions has been renamed -fexceptions (and is now on by default)" msgstr "" -#: c-typeck.c:2219 +#: c-opts.c:848 #, gcc-internal-format -msgid "" -"passing argument %d of %qE as floating rather than complex due to prototype" +msgid "output filename specified twice" msgstr "" -#: c-typeck.c:2231 +#: c-opts.c:985 #, gcc-internal-format -msgid "" -"passing argument %d of %qE as % rather than % due to " -"prototype" +msgid "-Wformat-y2k ignored without -Wformat" msgstr "" -#: c-typeck.c:2251 +#: c-opts.c:987 #, gcc-internal-format -msgid "passing argument %d of %qE with different width due to prototype" +msgid "-Wformat-extra-args ignored without -Wformat" msgstr "" -#: c-typeck.c:2274 +#: c-opts.c:989 #, gcc-internal-format -msgid "passing argument %d of %qE as unsigned due to prototype" +msgid "-Wformat-zero-length ignored without -Wformat" msgstr "" -#: c-typeck.c:2278 +#: c-opts.c:991 #, gcc-internal-format -msgid "passing argument %d of %qE as signed due to prototype" +msgid "-Wformat-nonliteral ignored without -Wformat" msgstr "" -#: c-typeck.c:2367 +#: c-opts.c:993 #, gcc-internal-format -msgid "suggest parentheses around + or - inside shift" +msgid "-Wformat-security ignored without -Wformat" msgstr "" -#: c-typeck.c:2374 +#: c-opts.c:1013 #, gcc-internal-format -msgid "suggest parentheses around && within ||" +msgid "opening output file %s: %m" msgstr "" -#: c-typeck.c:2383 +#: c-opts.c:1018 #, gcc-internal-format -msgid "suggest parentheses around arithmetic in operand of |" +msgid "too many filenames given. Type %s --help for usage" msgstr "" -#: c-typeck.c:2387 +#: c-opts.c:1104 #, gcc-internal-format -msgid "suggest parentheses around comparison in operand of |" +msgid "YYDEBUG was not defined at build time, -dy ignored" msgstr "" -#: c-typeck.c:2396 +#: c-opts.c:1150 #, gcc-internal-format -msgid "suggest parentheses around arithmetic in operand of ^" +msgid "opening dependency file %s: %m" msgstr "" -#: c-typeck.c:2400 +#: c-opts.c:1160 #, gcc-internal-format -msgid "suggest parentheses around comparison in operand of ^" +msgid "closing dependency file %s: %m" msgstr "" -#: c-typeck.c:2407 +#: c-opts.c:1163 #, gcc-internal-format -msgid "suggest parentheses around + or - in operand of &" +msgid "when writing output to %s: %m" msgstr "" -#: c-typeck.c:2411 +#: c-opts.c:1243 #, gcc-internal-format -msgid "suggest parentheses around comparison in operand of &" +msgid "to generate dependencies you must specify either -M or -MM" msgstr "" -#: c-typeck.c:2417 +#: c-opts.c:1411 #, gcc-internal-format -msgid "comparisons like X<=Y<=Z do not have their mathematical meaning" +msgid "too late for # directive to set debug directory" msgstr "" -#: c-typeck.c:2443 +#: c-parser.c:969 #, gcc-internal-format -msgid "pointer of type % used in subtraction" +msgid "ISO C forbids an empty source file" msgstr "" -#: c-typeck.c:2445 +#: c-parser.c:1054 c-parser.c:5761 #, gcc-internal-format -msgid "pointer to a function used in subtraction" +msgid "ISO C does not allow extra %<;%> outside of a function" msgstr "" -#: c-typeck.c:2542 +#: c-parser.c:1145 #, gcc-internal-format -msgid "wrong type argument to unary plus" +msgid "expected declaration specifiers" msgstr "" -#: c-typeck.c:2555 +#: c-parser.c:1193 #, gcc-internal-format -msgid "wrong type argument to unary minus" +msgid "data definition has no type or storage class" msgstr "" -#: c-typeck.c:2572 +#: c-parser.c:1247 #, gcc-internal-format -msgid "ISO C does not support %<~%> for complex conjugation" +msgid "expected %<,%> or %<;%>" msgstr "" -#: c-typeck.c:2578 +#. This can appear in many cases looking nothing like a +#. function definition, so we don't give a more specific +#. error suggesting there was one. +#: c-parser.c:1254 c-parser.c:1271 #, gcc-internal-format -msgid "wrong type argument to bit-complement" +msgid "expected %<=%>, %<,%>, %<;%>, % or %<__attribute__%>" msgstr "" -#: c-typeck.c:2586 +#: c-parser.c:1263 #, gcc-internal-format -msgid "wrong type argument to abs" +msgid "ISO C forbids nested functions" msgstr "" -#: c-typeck.c:2598 +#: 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 "wrong type argument to conjugation" +msgid "expected identifier" msgstr "" -#: c-typeck.c:2610 +#: c-parser.c:1635 cp/parser.c:10164 #, gcc-internal-format -msgid "wrong type argument to unary exclamation mark" +msgid "comma at end of enumerator list" msgstr "" -#: c-typeck.c:2647 +#: c-parser.c:1641 #, gcc-internal-format -msgid "ISO C does not support %<++%> and %<--%> on complex types" +msgid "expected %<,%> or %<}%>" msgstr "" -#: c-typeck.c:2663 c-typeck.c:2695 +#: c-parser.c:1655 c-parser.c:1825 c-parser.c:5728 #, gcc-internal-format -msgid "wrong type argument to increment" +msgid "expected %<{%>" msgstr "" -#: c-typeck.c:2665 c-typeck.c:2697 +#: c-parser.c:1664 #, gcc-internal-format -msgid "wrong type argument to decrement" +msgid "ISO C forbids forward references to % types" msgstr "" -#: c-typeck.c:2686 +#: c-parser.c:1767 #, gcc-internal-format -msgid "increment of pointer to unknown structure" +msgid "expected class name" msgstr "" -#: c-typeck.c:2688 +#: c-parser.c:1786 c-parser.c:5513 #, gcc-internal-format -msgid "decrement of pointer to unknown structure" +msgid "extra semicolon in struct or union specified" msgstr "" -#: c-typeck.c:2862 +#: c-parser.c:1808 #, gcc-internal-format -msgid "assignment of read-only member %qD" +msgid "no semicolon at end of struct or union" msgstr "" -#: c-typeck.c:2863 +#: c-parser.c:1811 #, gcc-internal-format -msgid "increment of read-only member %qD" +msgid "expected %<;%>" msgstr "" -#: c-typeck.c:2864 +#: c-parser.c:1888 c-parser.c:2815 #, gcc-internal-format -msgid "decrement of read-only member %qD" +msgid "expected specifier-qualifier-list" msgstr "" -#: c-typeck.c:2868 +#: c-parser.c:1898 #, gcc-internal-format -msgid "assignment of read-only variable %qD" +msgid "ISO C forbids member declarations with no members" msgstr "" -#: c-typeck.c:2869 +#: c-parser.c:1967 #, gcc-internal-format -msgid "increment of read-only variable %qD" +msgid "expected %<,%>, %<;%> or %<}%>" msgstr "" -#: c-typeck.c:2870 +#: c-parser.c:1974 #, gcc-internal-format -msgid "decrement of read-only variable %qD" +msgid "expected %<:%>, %<,%>, %<;%>, %<}%> or %<__attribute__%>" msgstr "" -#: c-typeck.c:2873 +#: c-parser.c:2023 #, gcc-internal-format -msgid "assignment of read-only location" +msgid "% applied to a bit-field" msgstr "" -#: c-typeck.c:2874 +#: c-parser.c:2242 #, gcc-internal-format -msgid "increment of read-only location" +msgid "expected identifier or %<(%>" msgstr "" -#: c-typeck.c:2875 +#: c-parser.c:2435 #, gcc-internal-format -msgid "decrement of read-only location" +msgid "ISO C requires a named argument before %<...%>" msgstr "" -#: c-typeck.c:2910 +#: c-parser.c:2537 #, gcc-internal-format -msgid "cannot take address of bit-field %qD" +msgid "expected declaration specifiers or %<...%>" msgstr "" -#: c-typeck.c:2938 +#: c-parser.c:2587 #, gcc-internal-format -msgid "global register variable %qD used in nested function" +msgid "wide string literal in %" msgstr "" -#: c-typeck.c:2941 +#: c-parser.c:2593 #, gcc-internal-format -msgid "register variable %qD used in nested function" +msgid "expected string literal" msgstr "" -#: c-typeck.c:2946 +#: c-parser.c:2907 #, gcc-internal-format -msgid "address of global register variable %qD requested" +msgid "ISO C forbids empty initializer braces" msgstr "" -#: c-typeck.c:2948 +#: c-parser.c:2952 #, gcc-internal-format -msgid "address of register variable %qD requested" +msgid "obsolete use of designated initializer with %<:%>" msgstr "" -#: c-typeck.c:2994 +#: c-parser.c:3075 #, gcc-internal-format -msgid "non-lvalue array in conditional expression" +msgid "ISO C forbids specifying range of elements to initialize" msgstr "" -#: c-typeck.c:3038 +#: c-parser.c:3088 #, gcc-internal-format -msgid "signed and unsigned type in conditional expression" +msgid "ISO C90 forbids specifying subobject to initialize" msgstr "" -#: c-typeck.c:3045 +#: c-parser.c:3096 #, gcc-internal-format -msgid "ISO C forbids conditional expr with only one void side" +msgid "obsolete use of designated initializer without %<=%>" msgstr "" -#: c-typeck.c:3061 c-typeck.c:3069 +#: c-parser.c:3104 #, gcc-internal-format -msgid "ISO C forbids conditional expr between % and function pointer" +msgid "expected %<=%>" msgstr "" -#: c-typeck.c:3076 +#: c-parser.c:3241 #, gcc-internal-format -msgid "pointer type mismatch in conditional expression" +msgid "ISO C forbids label declarations" msgstr "" -#: c-typeck.c:3083 c-typeck.c:3093 +#: c-parser.c:3246 c-parser.c:3255 #, gcc-internal-format -msgid "pointer/integer type mismatch in conditional expression" +msgid "expected declaration or statement" msgstr "" -#: c-typeck.c:3107 +#: c-parser.c:3275 c-parser.c:3303 #, gcc-internal-format -msgid "type mismatch in conditional expression" +msgid "%HISO C90 forbids mixed declarations and code" msgstr "" -#: c-typeck.c:3147 +#: c-parser.c:3319 #, gcc-internal-format -msgid "left-hand operand of comma expression has no effect" +msgid "label at end of compound statement" msgstr "" -#: c-typeck.c:3181 +#: c-parser.c:3362 #, gcc-internal-format -msgid "cast specifies array type" +msgid "expected %<:%> or %<...%>" msgstr "" -#: c-typeck.c:3187 +#: c-parser.c:3498 #, gcc-internal-format -msgid "cast specifies function type" +msgid "expected identifier or %<*%>" msgstr "" -#: c-typeck.c:3197 +#. Avoid infinite loop in error recovery: +#. 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:3560 #, gcc-internal-format -msgid "ISO C forbids casting nonscalar to the same type" +msgid "expected statement" msgstr "" -#: c-typeck.c:3214 +#: c-parser.c:3893 #, gcc-internal-format -msgid "ISO C forbids casts to union type" +msgid "%E qualifier ignored on asm" msgstr "" -#: c-typeck.c:3223 +#: c-parser.c:4173 #, gcc-internal-format -msgid "cast to union type from type not present in union" +msgid "ISO C forbids omitting the middle term of a ?: expression" msgstr "" -#: c-typeck.c:3269 +#: c-parser.c:4559 #, gcc-internal-format -msgid "cast adds new qualifiers to function type" +msgid "traditional C rejects the unary plus operator" msgstr "" -#. There are qualifiers present in IN_OTYPE that are not -#. present in IN_TYPE. -#: c-typeck.c:3274 +#: c-parser.c:4672 #, gcc-internal-format -msgid "cast discards qualifiers from pointer target type" +msgid "% applied to a bit-field" msgstr "" -#: c-typeck.c:3290 +#: c-parser.c:4815 c-parser.c:5156 c-parser.c:5178 #, gcc-internal-format -msgid "cast increases required alignment of target type" +msgid "expected expression" msgstr "" -#: c-typeck.c:3297 +#: c-parser.c:4841 #, gcc-internal-format -msgid "cast from pointer to integer of different size" +msgid "braced-group within expression allowed only inside a function" msgstr "" -#: c-typeck.c:3301 +#: c-parser.c:4855 #, gcc-internal-format -msgid "cast from function call of type %qT to non-matching type %qT" +msgid "ISO C forbids braced-groups within expressions" msgstr "" -#: c-typeck.c:3309 +#: c-parser.c:5038 #, gcc-internal-format -msgid "cast to pointer from integer of different size" +msgid "first argument to %<__builtin_choose_expr%> not a constant" msgstr "" -#: c-typeck.c:3323 +#: c-parser.c:5205 #, gcc-internal-format -msgid "type-punning to incomplete type might break strict-aliasing rules" +msgid "compound literal has variable size" msgstr "" -#: c-typeck.c:3331 +#: c-parser.c:5213 #, gcc-internal-format -msgid "dereferencing type-punned pointer will break strict-aliasing rules" +msgid "ISO C90 forbids compound literals" msgstr "" -#: c-typeck.c:3335 +#: c-parser.c:5724 #, gcc-internal-format -msgid "dereferencing type-punned pointer might break strict-aliasing rules" +msgid "extra semicolon in method definition specified" msgstr "" -#: c-typeck.c:3348 +#: c-pch.c:132 #, gcc-internal-format -msgid "ISO C forbids conversion of function pointer to object pointer type" +msgid "can%'t create precompiled header %s: %m" msgstr "" -#: c-typeck.c:3357 +#: c-pch.c:153 #, gcc-internal-format -msgid "ISO C forbids conversion of object pointer to function pointer type" +msgid "can%'t write to %s: %m" msgstr "" -#: c-typeck.c:3628 +#: c-pch.c:159 #, gcc-internal-format -msgid "cannot pass rvalue to reference parameter" +msgid "%qs is not a valid output file" msgstr "" -#: c-typeck.c:3737 c-typeck.c:3869 +#: c-pch.c:188 c-pch.c:203 c-pch.c:217 #, gcc-internal-format -msgid "" -"passing argument %d of %qE makes qualified function pointer from unqualified" +msgid "can%'t write %s: %m" msgstr "" -#: c-typeck.c:3740 c-typeck.c:3872 +#: c-pch.c:193 c-pch.c:210 #, gcc-internal-format -msgid "assignment makes qualified function pointer from unqualified" +msgid "can%'t seek in %s: %m" msgstr "" -#: c-typeck.c:3743 c-typeck.c:3874 +#: c-pch.c:201 c-pch.c:243 c-pch.c:283 c-pch.c:334 #, gcc-internal-format -msgid "initialization makes qualified function pointer from unqualified" +msgid "can%'t read %s: %m" msgstr "" -#: c-typeck.c:3746 c-typeck.c:3876 +#: c-pch.c:452 #, gcc-internal-format -msgid "return makes qualified function pointer from unqualified" +msgid "malformed #pragma GCC pch_preprocess, ignored" msgstr "" -#: c-typeck.c:3750 c-typeck.c:3836 +#: c-pch.c:458 #, gcc-internal-format -msgid "passing argument %d of %qE discards qualifiers from pointer target type" +msgid "pch_preprocess pragma should only be used with -fpreprocessed" msgstr "" -#: c-typeck.c:3752 c-typeck.c:3838 +#: c-pch.c:459 #, gcc-internal-format -msgid "assignment discards qualifiers from pointer target type" +msgid "use #include instead" msgstr "" -#: c-typeck.c:3754 c-typeck.c:3840 +#: c-pch.c:467 #, gcc-internal-format -msgid "initialization discards qualifiers from pointer target type" +msgid "%s: couldn%'t open PCH file: %m" msgstr "" -#: c-typeck.c:3756 c-typeck.c:3842 +#: c-pch.c:472 #, gcc-internal-format -msgid "return discards qualifiers from pointer target type" +msgid "use -Winvalid-pch for more information" msgstr "" -#: c-typeck.c:3761 +#: c-pch.c:473 #, gcc-internal-format -msgid "ISO C prohibits argument conversion to union type" +msgid "%s: PCH file was invalid" msgstr "" -#: c-typeck.c:3796 +#: c-pragma.c:101 #, gcc-internal-format -msgid "request for implicit conversion from %qT to %qT not permitted in C++" +msgid "#pragma pack (pop) encountered without matching #pragma pack (push)" msgstr "" -#: c-typeck.c:3816 +#: c-pragma.c:114 #, gcc-internal-format msgid "" -"ISO C forbids passing argument %d of %qE between function pointer and %" +"#pragma pack(pop, %s) encountered without matching #pragma pack(push, %s)" msgstr "" -#: c-typeck.c:3819 +#: c-pragma.c:128 #, gcc-internal-format -msgid "ISO C forbids assignment between function pointer and %" +msgid "#pragma pack(push[, id], ) is not supported on this target" msgstr "" -#: c-typeck.c:3821 +#: c-pragma.c:130 #, gcc-internal-format -msgid "ISO C forbids initialization between function pointer and %" +msgid "#pragma pack(pop[, id], ) is not supported on this target" msgstr "" -#: c-typeck.c:3823 +#: c-pragma.c:151 #, gcc-internal-format -msgid "ISO C forbids return between function pointer and %" +msgid "missing %<(%> after %<#pragma pack%> - ignored" msgstr "" -#: c-typeck.c:3852 +#: c-pragma.c:164 c-pragma.c:204 #, gcc-internal-format -msgid "pointer targets in passing argument %d of %qE differ in signedness" +msgid "malformed %<#pragma pack%> - ignored" msgstr "" -#: c-typeck.c:3854 +#: c-pragma.c:169 #, gcc-internal-format -msgid "pointer targets in assignment differ in signedness" +msgid "malformed %<#pragma pack(push[, id][, ])%> - ignored" msgstr "" -#: c-typeck.c:3856 +#: c-pragma.c:171 #, gcc-internal-format -msgid "pointer targets in initialization differ in signedness" +msgid "malformed %<#pragma pack(pop[, id])%> - ignored" msgstr "" -#: c-typeck.c:3858 +#: c-pragma.c:180 #, gcc-internal-format -msgid "pointer targets in return differ in signedness" +msgid "unknown action %qs for %<#pragma pack%> - ignored" msgstr "" -#: c-typeck.c:3883 +#: c-pragma.c:207 #, gcc-internal-format -msgid "passing argument %d of %qE from incompatible pointer type" +msgid "junk at end of %<#pragma pack%>" msgstr "" -#: c-typeck.c:3885 +#: c-pragma.c:210 #, gcc-internal-format -msgid "assignment from incompatible pointer type" +msgid "#pragma pack has no effect with -fpack-struct - ignored" msgstr "" -#: c-typeck.c:3886 +#: c-pragma.c:230 #, gcc-internal-format -msgid "initialization from incompatible pointer type" +msgid "alignment must be a small power of two, not %d" msgstr "" -#: c-typeck.c:3888 +#: c-pragma.c:263 #, gcc-internal-format -msgid "return from incompatible pointer type" +msgid "" +"applying #pragma weak %q+D after first use results in unspecified behavior" msgstr "" -#: c-typeck.c:3910 +#: c-pragma.c:337 c-pragma.c:342 #, gcc-internal-format -msgid "passing argument %d of %qE makes pointer from integer without a cast" +msgid "malformed #pragma weak, ignored" msgstr "" -#: c-typeck.c:3912 +#: c-pragma.c:346 #, gcc-internal-format -msgid "assignment makes pointer from integer without a cast" +msgid "junk at end of #pragma weak" msgstr "" -#: c-typeck.c:3914 +#: c-pragma.c:414 c-pragma.c:416 #, gcc-internal-format -msgid "initialization makes pointer from integer without a cast" +msgid "malformed #pragma redefine_extname, ignored" msgstr "" -#: c-typeck.c:3916 +#: c-pragma.c:419 #, gcc-internal-format -msgid "return makes pointer from integer without a cast" +msgid "junk at end of #pragma redefine_extname" msgstr "" -#: c-typeck.c:3923 +#: c-pragma.c:425 #, gcc-internal-format -msgid "passing argument %d of %qE makes integer from pointer without a cast" +msgid "#pragma redefine_extname not supported on this target" msgstr "" -#: c-typeck.c:3925 +#: c-pragma.c:442 c-pragma.c:529 #, gcc-internal-format -msgid "assignment makes integer from pointer without a cast" +msgid "#pragma redefine_extname ignored due to conflict with previous rename" msgstr "" -#: c-typeck.c:3927 +#: c-pragma.c:465 #, gcc-internal-format -msgid "initialization makes integer from pointer without a cast" +msgid "" +"#pragma redefine_extname ignored due to conflict with previous #pragma " +"redefine_extname" msgstr "" -#: c-typeck.c:3929 +#: c-pragma.c:484 #, gcc-internal-format -msgid "return makes integer from pointer without a cast" +msgid "malformed #pragma extern_prefix, ignored" msgstr "" -#: c-typeck.c:3945 +#: c-pragma.c:487 #, gcc-internal-format -msgid "incompatible types in assignment" +msgid "junk at end of #pragma extern_prefix" msgstr "" -#: c-typeck.c:3948 +#: c-pragma.c:494 #, gcc-internal-format -msgid "incompatible types in initialization" +msgid "#pragma extern_prefix not supported on this target" msgstr "" -#: c-typeck.c:3951 +#: c-pragma.c:520 #, gcc-internal-format -msgid "incompatible types in return" +msgid "asm declaration ignored due to conflict with previous rename" msgstr "" -#: c-typeck.c:4032 +#: c-pragma.c:551 #, gcc-internal-format -msgid "traditional C rejects automatic aggregate initialization" +msgid "" +"#pragma redefine_extname ignored due to conflict with __asm__ declaration" msgstr "" -#: c-typeck.c:4200 c-typeck.c:4215 c-typeck.c:4230 +#: c-pragma.c:616 #, gcc-internal-format -msgid "(near initialization for %qs)" +msgid "#pragma GCC visibility must be followed by push or pop" msgstr "" -#: c-typeck.c:4759 cp/decl.c:4450 +#: c-pragma.c:623 #, gcc-internal-format -msgid "opaque vector types cannot be initialized" +msgid "no matching push for %<#pragma GCC visibility pop%>" msgstr "" -#: c-typeck.c:5389 +#: c-pragma.c:635 c-pragma.c:661 #, gcc-internal-format -msgid "unknown field %qE specified in initializer" +msgid "missing %<(%> after %<#pragma GCC visibility push%> - ignored" msgstr "" -#: c-typeck.c:6279 +#: c-pragma.c:639 #, gcc-internal-format -msgid "traditional C rejects initialization of unions" +msgid "malformed #pragma GCC visibility push" msgstr "" -#: c-typeck.c:6581 +#: c-pragma.c:656 #, gcc-internal-format -msgid "jump into statement expression" +msgid "" +"#pragma GCC visibility push() must specify default, internal, hidden or " +"protected" msgstr "" -#: c-typeck.c:6587 +#: c-pragma.c:665 #, gcc-internal-format -msgid "jump into scope of identifier with variably modified type" +msgid "junk at end of %<#pragma GCC visibility%>" msgstr "" -#: c-typeck.c:6624 +#: c-typeck.c:143 #, gcc-internal-format -msgid "ISO C forbids %" +msgid "%qD has an incomplete type" msgstr "" -#: c-typeck.c:6638 cp/typeck.c:6119 +#: c-typeck.c:164 cp/call.c:2696 #, gcc-internal-format -msgid "function declared % has a % statement" +msgid "invalid use of void expression" msgstr "" -#: c-typeck.c:6645 +#: c-typeck.c:172 #, gcc-internal-format -msgid "% with no value, in function returning non-void" +msgid "invalid use of flexible array member" msgstr "" -#: c-typeck.c:6652 +#: c-typeck.c:178 #, gcc-internal-format -msgid "% with a value, in function returning void" +msgid "invalid use of array with unspecified bounds" msgstr "" -#: c-typeck.c:6709 +#: c-typeck.c:186 #, gcc-internal-format -msgid "function returns address of local variable" +msgid "invalid use of undefined type %<%s %E%>" msgstr "" -#: c-typeck.c:6780 cp/semantics.c:906 +#. If this type has a typedef-name, the TYPE_NAME is a TYPE_DECL. +#: c-typeck.c:190 #, gcc-internal-format -msgid "switch quantity not an integer" +msgid "invalid use of incomplete typedef %qD" msgstr "" -#: c-typeck.c:6791 +#: c-typeck.c:417 c-typeck.c:442 #, gcc-internal-format -msgid "% switch expression not converted to % in ISO C" +msgid "function types not truly compatible in ISO C" msgstr "" -#: c-typeck.c:6832 +#: c-typeck.c:824 #, gcc-internal-format -msgid "" -"case label in statement expression not containing enclosing switch statement" +msgid "types are not quite compatible" msgstr "" -#: c-typeck.c:6835 +#: c-typeck.c:1066 #, gcc-internal-format -msgid "" -"% label in statement expression not containing enclosing switch " -"statement" +msgid "function return types not compatible due to %" msgstr "" -#: c-typeck.c:6841 +#: c-typeck.c:1225 c-typeck.c:2519 #, gcc-internal-format -msgid "" -"case label in scope of identifier with variably modified type not containing " -"enclosing switch statement" +msgid "arithmetic on pointer to an incomplete type" +msgstr "" + +#: c-typeck.c:1616 +#, gcc-internal-format +msgid "%qT has no member named %qE" msgstr "" -#: c-typeck.c:6844 +#: c-typeck.c:1651 #, gcc-internal-format -msgid "" -"% label in scope of identifier with variably modified type not " -"containing enclosing switch statement" +msgid "request for member %qE in something not a structure or union" msgstr "" -#: c-typeck.c:6848 cp/parser.c:6191 +#: c-typeck.c:1682 #, gcc-internal-format -msgid "case label not within a switch statement" +msgid "dereferencing pointer to incomplete type" msgstr "" -#: c-typeck.c:6850 +#: c-typeck.c:1686 #, gcc-internal-format -msgid "% label not within a switch statement" +msgid "dereferencing % pointer" msgstr "" -#: c-typeck.c:6926 +#: c-typeck.c:1703 cp/typeck.c:2128 #, gcc-internal-format -msgid "%Hsuggest explicit braces to avoid ambiguous %" +msgid "invalid type argument of %qs" msgstr "" -#: c-typeck.c:6936 +#: c-typeck.c:1731 cp/typeck.c:2279 #, gcc-internal-format -msgid "%Hempty body in an if-statement" +msgid "subscripted value is neither array nor pointer" msgstr "" -#: c-typeck.c:6944 +#: c-typeck.c:1742 cp/typeck.c:2198 cp/typeck.c:2284 #, gcc-internal-format -msgid "%Hempty body in an else-statement" +msgid "array subscript is not an integer" msgstr "" -#: c-typeck.c:7053 cp/cp-gimplify.c:118 cp/parser.c:6683 +#: c-typeck.c:1748 #, gcc-internal-format -msgid "break statement not within loop or switch" +msgid "subscripted value is pointer to function" msgstr "" -#: c-typeck.c:7055 cp/parser.c:6694 +#: c-typeck.c:1761 cp/typeck.c:2194 #, gcc-internal-format -msgid "continue statement not within a loop" +msgid "array subscript has type %" msgstr "" -#: c-typeck.c:7075 +#: c-typeck.c:1801 #, gcc-internal-format -msgid "%Hstatement with no effect" +msgid "ISO C forbids subscripting % array" msgstr "" -#: c-typeck.c:7097 +#: c-typeck.c:1803 #, gcc-internal-format -msgid "expression statement has incomplete type" +msgid "ISO C90 forbids subscripting non-lvalue array" msgstr "" -#: c-typeck.c:7549 c-typeck.c:7590 +#: c-typeck.c:2045 #, gcc-internal-format -msgid "division by zero" +msgid "called object %qE is not a function" msgstr "" -#: c-typeck.c:7635 cp/typeck.c:2970 +#. 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:2072 #, gcc-internal-format -msgid "right shift count is negative" +msgid "function called through a non-compatible type" msgstr "" -#: c-typeck.c:7642 cp/typeck.c:2976 +#: c-typeck.c:2179 #, gcc-internal-format -msgid "right shift count >= width of type" +msgid "too many arguments to function %qE" msgstr "" -#: c-typeck.c:7663 cp/typeck.c:2995 +#: c-typeck.c:2200 #, gcc-internal-format -msgid "left shift count is negative" +msgid "type of formal parameter %d is incomplete" msgstr "" -#: c-typeck.c:7666 cp/typeck.c:2997 +#: c-typeck.c:2213 #, gcc-internal-format -msgid "left shift count >= width of type" +msgid "" +"passing argument %d of %qE as integer rather than floating due to prototype" msgstr "" -#: c-typeck.c:7684 cp/typeck.c:3032 +#: c-typeck.c:2218 #, gcc-internal-format -msgid "comparing floating point with == or != is unsafe" +msgid "" +"passing argument %d of %qE as integer rather than complex due to prototype" msgstr "" -#: c-typeck.c:7708 c-typeck.c:7715 +#: c-typeck.c:2223 #, gcc-internal-format -msgid "ISO C forbids comparison of % with function pointer" +msgid "" +"passing argument %d of %qE as complex rather than floating due to prototype" msgstr "" -#: c-typeck.c:7721 c-typeck.c:7767 +#: c-typeck.c:2228 #, gcc-internal-format -msgid "comparison of distinct pointer types lacks a cast" +msgid "" +"passing argument %d of %qE as floating rather than integer due to prototype" msgstr "" -#: c-typeck.c:7735 c-typeck.c:7740 c-typeck.c:7787 c-typeck.c:7792 +#: c-typeck.c:2233 #, gcc-internal-format -msgid "comparison between pointer and integer" +msgid "" +"passing argument %d of %qE as complex rather than integer due to prototype" msgstr "" -#: c-typeck.c:7759 +#: c-typeck.c:2238 #, gcc-internal-format -msgid "comparison of complete and incomplete pointers" +msgid "" +"passing argument %d of %qE as floating rather than complex due to prototype" msgstr "" -#: c-typeck.c:7762 +#: c-typeck.c:2250 #, gcc-internal-format -msgid "ISO C forbids ordered comparisons of pointers to functions" +msgid "" +"passing argument %d of %qE as % rather than % due to " +"prototype" msgstr "" -#: c-typeck.c:7775 c-typeck.c:7782 +#: c-typeck.c:2270 #, gcc-internal-format -msgid "ordered comparison of pointer with integer zero" +msgid "passing argument %d of %qE with different width due to prototype" msgstr "" -#: c-typeck.c:8012 +#: c-typeck.c:2293 #, gcc-internal-format -msgid "comparison between signed and unsigned" +msgid "passing argument %d of %qE as unsigned due to prototype" msgstr "" -#: c-typeck.c:8058 cp/typeck.c:3455 +#: c-typeck.c:2297 #, gcc-internal-format -msgid "comparison of promoted ~unsigned with constant" +msgid "passing argument %d of %qE as signed due to prototype" msgstr "" -#: c-typeck.c:8066 cp/typeck.c:3463 +#: c-typeck.c:2387 #, gcc-internal-format -msgid "comparison of promoted ~unsigned with unsigned" +msgid "suggest parentheses around + or - inside shift" msgstr "" -#: c-typeck.c:8123 +#: c-typeck.c:2395 #, gcc-internal-format -msgid "used array that cannot be converted to pointer where scalar is required" +msgid "suggest parentheses around && within ||" msgstr "" -#: c-typeck.c:8127 +#: c-typeck.c:2405 #, gcc-internal-format -msgid "used struct type value where scalar is required" +msgid "suggest parentheses around arithmetic in operand of |" msgstr "" -#: c-typeck.c:8131 +#: c-typeck.c:2410 #, gcc-internal-format -msgid "used union type value where scalar is required" +msgid "suggest parentheses around comparison in operand of |" msgstr "" -#: calls.c:1915 +#: c-typeck.c:2420 #, gcc-internal-format -msgid "function call has aggregate value" +msgid "suggest parentheses around arithmetic in operand of ^" msgstr "" -#: cfgexpand.c:1491 +#: c-typeck.c:2425 #, gcc-internal-format -msgid "not protecting local variables: variable length buffer" +msgid "suggest parentheses around comparison in operand of ^" msgstr "" -#: cfgexpand.c:1493 +#: c-typeck.c:2433 #, gcc-internal-format -msgid "not protecting function: no buffer at least %d bytes long" +msgid "suggest parentheses around + or - in operand of &" msgstr "" -#: cfghooks.c:90 +#: c-typeck.c:2438 #, gcc-internal-format -msgid "bb %d on wrong place" +msgid "suggest parentheses around comparison in operand of &" msgstr "" -#: cfghooks.c:96 +#: c-typeck.c:2444 #, gcc-internal-format -msgid "prev_bb of %d should be %d, not %d" +msgid "comparisons like X<=Y<=Z do not have their mathematical meaning" msgstr "" -#: cfghooks.c:113 +#: c-typeck.c:2471 #, gcc-internal-format -msgid "verify_flow_info: Wrong count of block %i %i" +msgid "pointer of type % used in subtraction" msgstr "" -#: cfghooks.c:119 +#: c-typeck.c:2473 #, gcc-internal-format -msgid "verify_flow_info: Wrong frequency of block %i %i" +msgid "pointer to a function used in subtraction" msgstr "" -#: cfghooks.c:127 +#: c-typeck.c:2570 #, gcc-internal-format -msgid "verify_flow_info: Duplicate edge %i->%i" +msgid "wrong type argument to unary plus" msgstr "" -#: cfghooks.c:133 +#: c-typeck.c:2583 #, gcc-internal-format -msgid "verify_flow_info: Wrong probability of edge %i->%i %i" +msgid "wrong type argument to unary minus" msgstr "" -#: cfghooks.c:139 +#: c-typeck.c:2600 #, gcc-internal-format -msgid "verify_flow_info: Wrong count of edge %i->%i %i" +msgid "ISO C does not support %<~%> for complex conjugation" msgstr "" -#: cfghooks.c:151 +#: c-typeck.c:2606 #, gcc-internal-format -msgid "verify_flow_info: Basic block %d succ edge is corrupted" +msgid "wrong type argument to bit-complement" msgstr "" -#: cfghooks.c:165 cfgrtl.c:2029 +#: c-typeck.c:2614 #, gcc-internal-format -msgid "Wrong amount of branch edges after unconditional jump %i" +msgid "wrong type argument to abs" msgstr "" -#: cfghooks.c:173 cfghooks.c:184 +#: c-typeck.c:2626 #, gcc-internal-format -msgid "basic block %d pred edge is corrupted" +msgid "wrong type argument to conjugation" msgstr "" -#: cfghooks.c:185 +#: c-typeck.c:2638 #, gcc-internal-format -msgid "its dest_idx should be %d, not %d" +msgid "wrong type argument to unary exclamation mark" msgstr "" -#: cfghooks.c:214 +#: c-typeck.c:2675 #, gcc-internal-format -msgid "basic block %i edge lists are corrupted" +msgid "ISO C does not support %<++%> and %<--%> on complex types" msgstr "" -#: cfghooks.c:227 +#: c-typeck.c:2691 c-typeck.c:2723 #, gcc-internal-format -msgid "verify_flow_info failed" +msgid "wrong type argument to increment" msgstr "" -#: cfghooks.c:288 +#: c-typeck.c:2693 c-typeck.c:2725 #, gcc-internal-format -msgid "%s does not support redirect_edge_and_branch." +msgid "wrong type argument to decrement" msgstr "" -#: cfghooks.c:306 +#: c-typeck.c:2714 #, gcc-internal-format -msgid "%s does not support redirect_edge_and_branch_force." +msgid "increment of pointer to unknown structure" msgstr "" -#: cfghooks.c:324 +#: c-typeck.c:2716 #, gcc-internal-format -msgid "%s does not support split_block." +msgid "decrement of pointer to unknown structure" msgstr "" -#: cfghooks.c:360 +#: c-typeck.c:2887 #, gcc-internal-format -msgid "%s does not support move_block_after." +msgid "assignment of read-only member %qD" msgstr "" -#: cfghooks.c:373 +#: c-typeck.c:2888 #, gcc-internal-format -msgid "%s does not support delete_basic_block." +msgid "increment of read-only member %qD" msgstr "" -#: cfghooks.c:405 +#: c-typeck.c:2889 #, gcc-internal-format -msgid "%s does not support split_edge." +msgid "decrement of read-only member %qD" msgstr "" -#: cfghooks.c:466 +#: c-typeck.c:2893 #, gcc-internal-format -msgid "%s does not support create_basic_block." +msgid "assignment of read-only variable %qD" msgstr "" -#: cfghooks.c:494 +#: c-typeck.c:2894 #, gcc-internal-format -msgid "%s does not support can_merge_blocks_p." +msgid "increment of read-only variable %qD" msgstr "" -#: cfghooks.c:505 +#: c-typeck.c:2895 #, gcc-internal-format -msgid "%s does not support predict_edge." +msgid "decrement of read-only variable %qD" msgstr "" -#: cfghooks.c:514 +#: c-typeck.c:2898 #, gcc-internal-format -msgid "%s does not support predicted_by_p." +msgid "assignment of read-only location" msgstr "" -#: cfghooks.c:528 +#: c-typeck.c:2899 #, gcc-internal-format -msgid "%s does not support merge_blocks." +msgid "increment of read-only location" msgstr "" -#: cfghooks.c:573 +#: c-typeck.c:2900 #, gcc-internal-format -msgid "%s does not support make_forwarder_block." +msgid "decrement of read-only location" msgstr "" -#: cfghooks.c:678 +#: c-typeck.c:2935 #, gcc-internal-format -msgid "%s does not support can_duplicate_block_p." +msgid "cannot take address of bit-field %qD" msgstr "" -#: cfghooks.c:705 +#: c-typeck.c:2963 #, gcc-internal-format -msgid "%s does not support duplicate_block." +msgid "global register variable %qD used in nested function" msgstr "" -#: cfghooks.c:771 +#: c-typeck.c:2966 #, gcc-internal-format -msgid "%s does not support block_ends_with_call_p" +msgid "register variable %qD used in nested function" msgstr "" -#: cfghooks.c:782 +#: c-typeck.c:2971 #, gcc-internal-format -msgid "%s does not support block_ends_with_condjump_p" +msgid "address of global register variable %qD requested" msgstr "" -#: cfghooks.c:800 +#: c-typeck.c:2973 #, gcc-internal-format -msgid "%s does not support flow_call_edges_add" +msgid "address of register variable %qD requested" msgstr "" -#: cfgloop.c:1088 +#: c-typeck.c:3019 #, gcc-internal-format -msgid "Size of loop %d should be %d, not %d." +msgid "non-lvalue array in conditional expression" msgstr "" -#: cfgloop.c:1105 +#: c-typeck.c:3063 #, gcc-internal-format -msgid "Bb %d do not belong to loop %d." +msgid "signed and unsigned type in conditional expression" msgstr "" -#: cfgloop.c:1122 +#: c-typeck.c:3070 #, gcc-internal-format -msgid "Loop %d's header does not have exactly 2 entries." +msgid "ISO C forbids conditional expr with only one void side" msgstr "" -#: cfgloop.c:1129 +#: c-typeck.c:3086 c-typeck.c:3094 #, gcc-internal-format -msgid "Loop %d's latch does not have exactly 1 successor." +msgid "ISO C forbids conditional expr between % and function pointer" msgstr "" -#: cfgloop.c:1134 +#: c-typeck.c:3101 #, gcc-internal-format -msgid "Loop %d's latch does not have header as successor." +msgid "pointer type mismatch in conditional expression" msgstr "" -#: cfgloop.c:1139 +#: c-typeck.c:3108 c-typeck.c:3118 #, gcc-internal-format -msgid "Loop %d's latch does not belong directly to it." +msgid "pointer/integer type mismatch in conditional expression" msgstr "" -#: cfgloop.c:1145 +#: c-typeck.c:3132 #, gcc-internal-format -msgid "Loop %d's header does not belong directly to it." +msgid "type mismatch in conditional expression" msgstr "" -#: cfgloop.c:1151 +#: c-typeck.c:3172 #, gcc-internal-format -msgid "Loop %d's latch is marked as part of irreducible region." +msgid "left-hand operand of comma expression has no effect" msgstr "" -#: cfgloop.c:1184 +#: c-typeck.c:3206 #, gcc-internal-format -msgid "Basic block %d should be marked irreducible." +msgid "cast specifies array type" msgstr "" -#: cfgloop.c:1190 +#: c-typeck.c:3212 #, gcc-internal-format -msgid "Basic block %d should not be marked irreducible." +msgid "cast specifies function type" msgstr "" -#: cfgloop.c:1198 +#: c-typeck.c:3222 #, gcc-internal-format -msgid "Edge from %d to %d should be marked irreducible." +msgid "ISO C forbids casting nonscalar to the same type" msgstr "" -#: cfgloop.c:1205 +#: c-typeck.c:3239 #, gcc-internal-format -msgid "Edge from %d to %d should not be marked irreducible." +msgid "ISO C forbids casts to union type" msgstr "" -#: cfgloop.c:1240 +#: c-typeck.c:3247 #, gcc-internal-format -msgid "Wrong single exit %d->%d recorded for loop %d." +msgid "cast to union type from type not present in union" msgstr "" -#: cfgloop.c:1244 +#: c-typeck.c:3293 #, gcc-internal-format -msgid "Right exit is %d->%d." +msgid "cast adds new qualifiers to function type" msgstr "" -#: cfgloop.c:1261 +#. There are qualifiers present in IN_OTYPE that are not +#. present in IN_TYPE. +#: c-typeck.c:3298 #, gcc-internal-format -msgid "Single exit not recorded for loop %d." +msgid "cast discards qualifiers from pointer target type" msgstr "" -#: cfgloop.c:1268 +#: c-typeck.c:3314 #, gcc-internal-format -msgid "Loop %d should not have single exit (%d -> %d)." +msgid "cast increases required alignment of target type" msgstr "" -#: cfgrtl.c:1915 +#: c-typeck.c:3321 #, gcc-internal-format -msgid "BB_RTL flag not set for block %d" +msgid "cast from pointer to integer of different size" msgstr "" -#: cfgrtl.c:1921 +#: c-typeck.c:3325 #, gcc-internal-format -msgid "end insn %d for block %d not found in the insn stream" +msgid "cast from function call of type %qT to non-matching type %qT" msgstr "" -#: cfgrtl.c:1935 +#: c-typeck.c:3333 #, gcc-internal-format -msgid "insn %d is in multiple basic blocks (%d and %d)" +msgid "cast to pointer from integer of different size" msgstr "" -#: cfgrtl.c:1947 +#: c-typeck.c:3347 #, gcc-internal-format -msgid "head insn %d for block %d not found in the insn stream" +msgid "type-punning to incomplete type might break strict-aliasing rules" msgstr "" -#: cfgrtl.c:1971 +#: c-typeck.c:3355 #, gcc-internal-format -msgid "verify_flow_info: REG_BR_PROB does not match cfg %wi %i" +msgid "dereferencing type-punned pointer will break strict-aliasing rules" msgstr "" -#: cfgrtl.c:1986 +#: c-typeck.c:3359 #, gcc-internal-format -msgid "Fallthru edge crosses section boundary (bb %i)" +msgid "dereferencing type-punned pointer might break strict-aliasing rules" msgstr "" -#: cfgrtl.c:2011 +#: c-typeck.c:3372 #, gcc-internal-format -msgid "Missing REG_EH_REGION note in the end of bb %i" +msgid "ISO C forbids conversion of function pointer to object pointer type" msgstr "" -#: cfgrtl.c:2019 +#: c-typeck.c:3381 #, gcc-internal-format -msgid "Too many outgoing branch edges from bb %i" +msgid "ISO C forbids conversion of object pointer to function pointer type" msgstr "" -#: cfgrtl.c:2024 +#: c-typeck.c:3652 #, gcc-internal-format -msgid "Fallthru edge after unconditional jump %i" +msgid "cannot pass rvalue to reference parameter" msgstr "" -#: cfgrtl.c:2035 +#: c-typeck.c:3761 c-typeck.c:3927 #, gcc-internal-format -msgid "Wrong amount of branch edges after conditional jump %i" +msgid "" +"passing argument %d of %qE makes qualified function pointer from unqualified" msgstr "" -#: cfgrtl.c:2040 +#: c-typeck.c:3764 c-typeck.c:3930 #, gcc-internal-format -msgid "Call edges for non-call insn in bb %i" +msgid "assignment makes qualified function pointer from unqualified" msgstr "" -#: cfgrtl.c:2049 +#: c-typeck.c:3767 c-typeck.c:3932 #, gcc-internal-format -msgid "Abnormal edges for no purpose in bb %i" +msgid "initialization makes qualified function pointer from unqualified" msgstr "" -#: cfgrtl.c:2061 +#: c-typeck.c:3770 c-typeck.c:3934 #, gcc-internal-format -msgid "insn %d inside basic block %d but block_for_insn is NULL" +msgid "return makes qualified function pointer from unqualified" msgstr "" -#: cfgrtl.c:2065 +#: c-typeck.c:3774 c-typeck.c:3894 #, gcc-internal-format -msgid "insn %d inside basic block %d but block_for_insn is %i" +msgid "passing argument %d of %qE discards qualifiers from pointer target type" msgstr "" -#: cfgrtl.c:2079 cfgrtl.c:2089 +#: c-typeck.c:3776 c-typeck.c:3896 #, gcc-internal-format -msgid "NOTE_INSN_BASIC_BLOCK is missing for block %d" +msgid "assignment discards qualifiers from pointer target type" msgstr "" -#: cfgrtl.c:2102 +#: c-typeck.c:3778 c-typeck.c:3898 #, gcc-internal-format -msgid "NOTE_INSN_BASIC_BLOCK %d in middle of basic block %d" +msgid "initialization discards qualifiers from pointer target type" msgstr "" -#: cfgrtl.c:2112 +#: c-typeck.c:3780 c-typeck.c:3900 #, gcc-internal-format -msgid "in basic block %d:" +msgid "return discards qualifiers from pointer target type" msgstr "" -#: cfgrtl.c:2149 +#: c-typeck.c:3785 #, gcc-internal-format -msgid "bb prediction set for block %i, but it is not used in RTL land" +msgid "ISO C prohibits argument conversion to union type" msgstr "" -#: cfgrtl.c:2167 +#: c-typeck.c:3820 #, gcc-internal-format -msgid "missing barrier after block %i" +msgid "request for implicit conversion from %qT to %qT not permitted in C++" msgstr "" -#: cfgrtl.c:2180 +#: c-typeck.c:3833 #, gcc-internal-format -msgid "verify_flow_info: Incorrect blocks for fallthru %i->%i" +msgid "argument %d of %qE might be a candidate for a format attribute" msgstr "" -#: cfgrtl.c:2189 +#: c-typeck.c:3839 #, gcc-internal-format -msgid "verify_flow_info: Incorrect fallthru %i->%i" +msgid "assignment left-hand side might be a candidate for a format attribute" msgstr "" -#: cfgrtl.c:2208 +#: c-typeck.c:3844 #, gcc-internal-format -msgid "basic blocks not laid down consecutively" +msgid "" +"initialization left-hand side might be a candidate for a format attribute" msgstr "" -#: cfgrtl.c:2247 +#: c-typeck.c:3849 #, gcc-internal-format -msgid "number of bb notes in insn chain (%d) != n_basic_blocks (%d)" +msgid "return type might be a candidate for a format attribute" msgstr "" -#: cgraph.c:762 +#: c-typeck.c:3874 #, gcc-internal-format -msgid "%D renamed after being referenced in assembly" +msgid "" +"ISO C forbids passing argument %d of %qE between function pointer and %" msgstr "" -#: cgraphunit.c:655 +#: c-typeck.c:3877 #, gcc-internal-format -msgid "Aux field set for edge %s->%s" +msgid "ISO C forbids assignment between function pointer and %" msgstr "" -#: cgraphunit.c:667 +#: c-typeck.c:3879 #, gcc-internal-format -msgid "Inlined_to pointer is wrong" +msgid "ISO C forbids initialization between function pointer and %" msgstr "" -#: cgraphunit.c:672 +#: c-typeck.c:3881 #, gcc-internal-format -msgid "Multiple inline callers" +msgid "ISO C forbids return between function pointer and %" msgstr "" -#: cgraphunit.c:679 +#: c-typeck.c:3910 #, gcc-internal-format -msgid "Inlined_to pointer set for noninline callers" +msgid "pointer targets in passing argument %d of %qE differ in signedness" msgstr "" -#: cgraphunit.c:685 +#: c-typeck.c:3912 #, gcc-internal-format -msgid "Inlined_to pointer is set but no predecesors found" +msgid "pointer targets in assignment differ in signedness" msgstr "" -#: cgraphunit.c:690 +#: c-typeck.c:3914 #, gcc-internal-format -msgid "Inlined_to pointer refers to itself" +msgid "pointer targets in initialization differ in signedness" msgstr "" -#: cgraphunit.c:700 +#: c-typeck.c:3916 #, gcc-internal-format -msgid "Node not found in DECL_ASSEMBLER_NAME hash" +msgid "pointer targets in return differ in signedness" msgstr "" -#: cgraphunit.c:728 +#: c-typeck.c:3941 #, gcc-internal-format -msgid "Shared call_stmt:" +msgid "passing argument %d of %qE from incompatible pointer type" msgstr "" -#: cgraphunit.c:734 +#: c-typeck.c:3943 #, gcc-internal-format -msgid "Edge points to wrong declaration:" +msgid "assignment from incompatible pointer type" msgstr "" -#: cgraphunit.c:743 +#: c-typeck.c:3944 #, gcc-internal-format -msgid "Missing callgraph edge for call stmt:" +msgid "initialization from incompatible pointer type" msgstr "" -#: cgraphunit.c:760 +#: c-typeck.c:3946 #, gcc-internal-format -msgid "Edge %s->%s has no corresponding call_stmt" +msgid "return from incompatible pointer type" msgstr "" -#: cgraphunit.c:772 +#: c-typeck.c:3968 #, gcc-internal-format -msgid "verify_cgraph_node failed." +msgid "passing argument %d of %qE makes pointer from integer without a cast" msgstr "" -#: cgraphunit.c:1006 +#: c-typeck.c:3970 #, gcc-internal-format -msgid "failed to reclaim unneeded function" +msgid "assignment makes pointer from integer without a cast" msgstr "" -#: cgraphunit.c:1274 +#: c-typeck.c:3972 #, gcc-internal-format -msgid "Nodes with no released memory found." +msgid "initialization makes pointer from integer without a cast" msgstr "" -#: collect2.c:1192 +#: c-typeck.c:3974 #, gcc-internal-format -msgid "unknown demangling style '%s'" +msgid "return makes pointer from integer without a cast" msgstr "" -#: collect2.c:1515 +#: c-typeck.c:3981 #, gcc-internal-format -msgid "%s terminated with signal %d [%s]%s" +msgid "passing argument %d of %qE makes integer from pointer without a cast" msgstr "" -#: collect2.c:1533 +#: c-typeck.c:3983 #, gcc-internal-format -msgid "%s returned %d exit status" +msgid "assignment makes integer from pointer without a cast" msgstr "" -#: collect2.c:2195 +#: c-typeck.c:3985 #, gcc-internal-format -msgid "cannot find 'ldd'" +msgid "initialization makes integer from pointer without a cast" msgstr "" -#: convert.c:65 +#: c-typeck.c:3987 #, gcc-internal-format -msgid "cannot convert to a pointer type" +msgid "return makes integer from pointer without a cast" msgstr "" -#: convert.c:298 +#: c-typeck.c:4003 #, gcc-internal-format -msgid "pointer value used where a floating point value was expected" +msgid "incompatible types in assignment" msgstr "" -#: convert.c:302 +#: c-typeck.c:4006 #, gcc-internal-format -msgid "aggregate value used where a float was expected" +msgid "incompatible types in initialization" msgstr "" -#: convert.c:327 +#: c-typeck.c:4009 #, gcc-internal-format -msgid "conversion to incomplete type" +msgid "incompatible types in return" msgstr "" -#: convert.c:684 convert.c:760 +#: c-typeck.c:4090 #, gcc-internal-format -msgid "can't convert between vector values of different size" +msgid "traditional C rejects automatic aggregate initialization" msgstr "" -#: convert.c:690 +#: c-typeck.c:4258 c-typeck.c:4273 c-typeck.c:4288 #, gcc-internal-format -msgid "aggregate value used where an integer was expected" +msgid "(near initialization for %qs)" msgstr "" -#: convert.c:740 +#: c-typeck.c:4825 cp/decl.c:4562 #, gcc-internal-format -msgid "pointer value used where a complex was expected" +msgid "opaque vector types cannot be initialized" msgstr "" -#: convert.c:744 +#: c-typeck.c:5455 #, gcc-internal-format -msgid "aggregate value used where a complex was expected" +msgid "unknown field %qE specified in initializer" msgstr "" -#: convert.c:766 +#: c-typeck.c:6349 #, gcc-internal-format -msgid "can't convert value to a vector" +msgid "traditional C rejects initialization of unions" msgstr "" -#: coverage.c:183 +#: c-typeck.c:6651 #, gcc-internal-format -msgid "%qs is not a gcov data file" +msgid "jump into statement expression" msgstr "" -#: coverage.c:194 +#: c-typeck.c:6657 #, gcc-internal-format -msgid "%qs is version %q.*s, expected version %q.*s" +msgid "jump into scope of identifier with variably modified type" msgstr "" -#: coverage.c:274 coverage.c:282 +#: c-typeck.c:6694 #, gcc-internal-format -msgid "coverage mismatch for function %u while reading execution counters." +msgid "ISO C forbids %" msgstr "" -#: coverage.c:276 coverage.c:359 +#: c-typeck.c:6709 cp/typeck.c:6156 #, gcc-internal-format -msgid "checksum is %x instead of %x" +msgid "function declared % has a % statement" msgstr "" -#: coverage.c:284 coverage.c:367 +#: c-typeck.c:6717 #, gcc-internal-format -msgid "number of counters is %d instead of %d" +msgid "% with no value, in function returning non-void" msgstr "" -#: coverage.c:290 +#: c-typeck.c:6726 #, gcc-internal-format -msgid "cannot merge separate %s counters for function %u" +msgid "% with a value, in function returning void" msgstr "" -#: coverage.c:311 +#: c-typeck.c:6783 #, gcc-internal-format -msgid "%qs has overflowed" +msgid "function returns address of local variable" msgstr "" -#: coverage.c:311 +#: c-typeck.c:6856 cp/semantics.c:908 #, gcc-internal-format -msgid "%qs is corrupted" +msgid "switch quantity not an integer" msgstr "" -#: coverage.c:348 +#: c-typeck.c:6867 #, gcc-internal-format -msgid "no coverage for function %qs found." +msgid "% switch expression not converted to % in ISO C" msgstr "" -#: coverage.c:356 coverage.c:364 +#: c-typeck.c:6908 #, gcc-internal-format -msgid "coverage mismatch for function %qs while reading counter %qs." +msgid "" +"case label in statement expression not containing enclosing switch statement" msgstr "" -#: coverage.c:549 +#: c-typeck.c:6911 #, gcc-internal-format -msgid "cannot open %s" +msgid "" +"% label in statement expression not containing enclosing switch " +"statement" msgstr "" -#: coverage.c:584 +#: c-typeck.c:6917 #, gcc-internal-format -msgid "error writing %qs" +msgid "" +"case label in scope of identifier with variably modified type not containing " +"enclosing switch statement" msgstr "" -#: diagnostic.c:589 +#: c-typeck.c:6920 #, gcc-internal-format -msgid "in %s, at %s:%d" +msgid "" +"% label in scope of identifier with variably modified type not " +"containing enclosing switch statement" msgstr "" -#: dominance.c:855 +#: c-typeck.c:6924 cp/parser.c:6190 #, gcc-internal-format -msgid "dominator of %d status unknown" +msgid "case label not within a switch statement" msgstr "" -#: dominance.c:857 +#: c-typeck.c:6926 #, gcc-internal-format -msgid "dominator of %d should be %d, not %d" +msgid "% label not within a switch statement" msgstr "" -#: dominance.c:869 +#: c-typeck.c:7003 #, gcc-internal-format -msgid "ENTRY does not dominate bb %d" +msgid "%Hsuggest explicit braces to avoid ambiguous %" msgstr "" -#: dwarf2out.c:3451 +#: c-typeck.c:7022 #, gcc-internal-format -msgid "DW_LOC_OP %s not implemented\n" +msgid "%Hempty body in an if-statement" msgstr "" -#: emit-rtl.c:2201 +#: c-typeck.c:7031 #, gcc-internal-format -msgid "Invalid rtl sharing found in the insn" +msgid "%Hempty body in an else-statement" msgstr "" -#: emit-rtl.c:2203 +#: c-typeck.c:7140 cp/cp-gimplify.c:118 cp/parser.c:6682 #, gcc-internal-format -msgid "Shared rtx" +msgid "break statement not within loop or switch" msgstr "" -#: emit-rtl.c:2205 +#: c-typeck.c:7142 cp/parser.c:6693 #, gcc-internal-format -msgid "Internal consistency failure" +msgid "continue statement not within a loop" msgstr "" -#: emit-rtl.c:3269 +#: c-typeck.c:7162 #, gcc-internal-format -msgid "ICE: emit_insn used where emit_jump_insn needed:\n" +msgid "%Hstatement with no effect" msgstr "" -#: errors.c:133 java/jv-scan.c:289 +#: c-typeck.c:7184 #, gcc-internal-format -msgid "abort in %s, at %s:%d" +msgid "expression statement has incomplete type" msgstr "" -#: except.c:331 +#: c-typeck.c:7642 c-typeck.c:7683 #, gcc-internal-format -msgid "exception handling disabled, use -fexceptions to enable" +msgid "division by zero" msgstr "" -#: except.c:2740 +#: c-typeck.c:7728 cp/typeck.c:2967 #, gcc-internal-format -msgid "argument of %<__builtin_eh_return_regno%> must be constant" +msgid "right shift count is negative" msgstr "" -#: except.c:2871 +#: c-typeck.c:7735 cp/typeck.c:2973 #, gcc-internal-format -msgid "__builtin_eh_return not supported on this target" +msgid "right shift count >= width of type" msgstr "" -#: except.c:3704 except.c:3713 +#: c-typeck.c:7756 cp/typeck.c:2992 #, gcc-internal-format -msgid "region_array is corrupted for region %i" +msgid "left shift count is negative" msgstr "" -#: except.c:3718 +#: c-typeck.c:7759 cp/typeck.c:2994 #, gcc-internal-format -msgid "outer block of region %i is wrong" +msgid "left shift count >= width of type" msgstr "" -#: except.c:3723 +#: c-typeck.c:7777 cp/typeck.c:3029 #, gcc-internal-format -msgid "region %i may contain throw and is contained in region that may not" +msgid "comparing floating point with == or != is unsafe" msgstr "" -#: except.c:3729 +#: c-typeck.c:7801 c-typeck.c:7808 #, gcc-internal-format -msgid "negative nesting depth of region %i" +msgid "ISO C forbids comparison of % with function pointer" msgstr "" -#: except.c:3749 +#: c-typeck.c:7814 c-typeck.c:7860 #, gcc-internal-format -msgid "Tree list ends on depth %i" +msgid "comparison of distinct pointer types lacks a cast" msgstr "" -#: except.c:3754 +#: c-typeck.c:7828 c-typeck.c:7833 c-typeck.c:7880 c-typeck.c:7885 #, gcc-internal-format -msgid "array does not match the region tree" +msgid "comparison between pointer and integer" msgstr "" -#: except.c:3760 +#: c-typeck.c:7852 #, gcc-internal-format -msgid "verify_eh_tree failed." +msgid "comparison of complete and incomplete pointers" msgstr "" -#: explow.c:1217 +#: c-typeck.c:7855 #, gcc-internal-format -msgid "stack limits not supported on this target" +msgid "ISO C forbids ordered comparisons of pointers to functions" msgstr "" -#: flow.c:494 flow.c:519 flow.c:541 +#: c-typeck.c:7868 c-typeck.c:7875 #, gcc-internal-format -msgid "internal consistency failure" +msgid "ordered comparison of pointer with integer zero" msgstr "" -#: fold-const.c:3310 fold-const.c:3321 +#: c-typeck.c:8105 #, gcc-internal-format -msgid "comparison is always %d due to width of bit-field" +msgid "comparison between signed and unsigned" msgstr "" -#: fold-const.c:4892 fold-const.c:4907 +#: c-typeck.c:8151 cp/typeck.c:3452 #, gcc-internal-format -msgid "comparison is always %d" +msgid "comparison of promoted ~unsigned with constant" msgstr "" -#: fold-const.c:5036 +#: c-typeck.c:8159 cp/typeck.c:3460 #, gcc-internal-format -msgid "% of unmatched not-equal tests is always 1" +msgid "comparison of promoted ~unsigned with unsigned" msgstr "" -#: fold-const.c:5041 +#: c-typeck.c:8217 #, gcc-internal-format -msgid "% of mutually exclusive equal-tests is always 0" +msgid "used array that cannot be converted to pointer where scalar is required" msgstr "" -#: fold-const.c:10152 +#: c-typeck.c:8221 #, gcc-internal-format -msgid "fold check: original tree changed by fold" +msgid "used struct type value where scalar is required" msgstr "" -#: function.c:823 varasm.c:1660 +#: c-typeck.c:8225 #, gcc-internal-format -msgid "%Jsize of variable %qD is too large" +msgid "used union type value where scalar is required" msgstr "" -#: function.c:1532 +#: calls.c:1906 #, gcc-internal-format -msgid "impossible constraint in %" +msgid "function call has aggregate value" msgstr "" -#: function.c:3454 +#: cfgexpand.c:1494 #, gcc-internal-format -msgid "%Jvariable %qD might be clobbered by % or %" +msgid "not protecting local variables: variable length buffer" msgstr "" -#: function.c:3475 +#: cfgexpand.c:1496 #, gcc-internal-format -msgid "%Jargument %qD might be clobbered by % or %" +msgid "not protecting function: no buffer at least %d bytes long" msgstr "" -#: function.c:3870 +#: cfghooks.c:90 #, gcc-internal-format -msgid "function returns an aggregate" +msgid "bb %d on wrong place" msgstr "" -#: function.c:4280 +#: cfghooks.c:96 #, gcc-internal-format -msgid "%Junused parameter %qD" +msgid "prev_bb of %d should be %d, not %d" msgstr "" -#: gcc.c:1232 +#: cfghooks.c:113 #, gcc-internal-format -msgid "ambiguous abbreviation %s" +msgid "verify_flow_info: Wrong count of block %i %i" msgstr "" -#: gcc.c:1259 +#: cfghooks.c:119 #, gcc-internal-format -msgid "incomplete '%s' option" +msgid "verify_flow_info: Wrong frequency of block %i %i" msgstr "" -#: gcc.c:1270 +#: cfghooks.c:127 #, gcc-internal-format -msgid "missing argument to '%s' option" +msgid "verify_flow_info: Duplicate edge %i->%i" msgstr "" -#: gcc.c:1283 +#: cfghooks.c:133 #, gcc-internal-format -msgid "extraneous argument to '%s' option" +msgid "verify_flow_info: Wrong probability of edge %i->%i %i" msgstr "" -#: gcc.c:3770 +#: cfghooks.c:139 #, gcc-internal-format -msgid "warning: -pipe ignored because -save-temps specified" +msgid "verify_flow_info: Wrong count of edge %i->%i %i" msgstr "" -#: gcc.c:4066 +#: cfghooks.c:151 #, gcc-internal-format -msgid "warning: '-x %s' after last input file has no effect" +msgid "verify_flow_info: Basic block %d succ edge is corrupted" 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 +#: cfghooks.c:165 cfgrtl.c:2051 #, gcc-internal-format -msgid "spec failure: '%%*' has not been initialized by pattern match" +msgid "wrong amount of branch edges after unconditional jump %i" msgstr "" -#: gcc.c:5144 +#: cfghooks.c:173 cfghooks.c:184 #, gcc-internal-format -msgid "warning: use of obsolete %%[ operator in specs" +msgid "basic block %d pred edge is corrupted" msgstr "" -#: gcc.c:5225 +#: cfghooks.c:185 #, gcc-internal-format -msgid "spec failure: unrecognized spec option '%c'" +msgid "its dest_idx should be %d, not %d" msgstr "" -#: gcc.c:6149 +#: cfghooks.c:214 #, gcc-internal-format -msgid "spec failure: more than one arg to SYSROOT_SUFFIX_SPEC." +msgid "basic block %i edge lists are corrupted" msgstr "" -#: gcc.c:6172 +#: cfghooks.c:227 #, gcc-internal-format -msgid "spec failure: more than one arg to SYSROOT_HEADERS_SUFFIX_SPEC." +msgid "verify_flow_info failed" msgstr "" -#: gcc.c:6261 +#: cfghooks.c:288 #, gcc-internal-format -msgid "unrecognized option '-%s'" +msgid "%s does not support redirect_edge_and_branch" msgstr "" -#: gcc.c:6449 gcc.c:6512 +#: cfghooks.c:306 #, gcc-internal-format -msgid "%s: %s compiler not installed on this system" +msgid "%s does not support redirect_edge_and_branch_force" msgstr "" -#: gcc.c:6594 +#: cfghooks.c:324 #, gcc-internal-format -msgid "%s: linker input file unused because linking not done" +msgid "%s does not support split_block" msgstr "" -#: gcc.c:6634 +#: cfghooks.c:360 #, gcc-internal-format -msgid "language %s not recognized" +msgid "%s does not support move_block_after" msgstr "" -#: gcc.c:6705 +#: cfghooks.c:373 #, gcc-internal-format -msgid "%s: %s" +msgid "%s does not support delete_basic_block" msgstr "" -#: gcse.c:6540 +#: cfghooks.c:405 #, gcc-internal-format -msgid "%s: %d basic blocks and %d edges/basic block" +msgid "%s does not support split_edge" msgstr "" -#: gcse.c:6553 +#: cfghooks.c:466 #, gcc-internal-format -msgid "%s: %d basic blocks and %d registers" +msgid "%s does not support create_basic_block" 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-zone.c:2306 +#: cfghooks.c:494 #, gcc-internal-format -msgid "can't write PCH file: %m" +msgid "%s does not support can_merge_blocks_p" msgstr "" -#: ggc-common.c:492 config/i386/host-cygwin.c:58 +#: cfghooks.c:505 #, gcc-internal-format -msgid "can't get position in PCH file: %m" +msgid "%s does not support predict_edge" msgstr "" -#: ggc-common.c:502 +#: cfghooks.c:514 #, gcc-internal-format -msgid "can't write padding to PCH file: %m" +msgid "%s does not support predicted_by_p" 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 +#: cfghooks.c:528 #, gcc-internal-format -msgid "can't read PCH file: %m" +msgid "%s does not support merge_blocks" msgstr "" -#: ggc-common.c:580 +#: cfghooks.c:573 #, gcc-internal-format -msgid "had to relocate PCH" +msgid "%s does not support make_forwarder_block" msgstr "" -#: ggc-page.c:1445 +#: cfghooks.c:678 #, gcc-internal-format -msgid "open /dev/zero: %m" +msgid "%s does not support can_duplicate_block_p" msgstr "" -#: ggc-page.c:2218 ggc-page.c:2224 +#: cfghooks.c:706 #, gcc-internal-format -msgid "can't write PCH file" +msgid "%s does not support duplicate_block" msgstr "" -#: ggc-zone.c:2288 ggc-zone.c:2299 +#: cfghooks.c:774 #, gcc-internal-format -msgid "can't seek PCH file: %m" +msgid "%s does not support block_ends_with_call_p" msgstr "" -#: ggc-zone.c:2302 +#: cfghooks.c:785 #, gcc-internal-format -msgid "can't write PCH fle: %m" +msgid "%s does not support block_ends_with_condjump_p" msgstr "" -#: gimple-low.c:202 +#: cfghooks.c:803 #, gcc-internal-format -msgid "unexpected node" +msgid "%s does not support flow_call_edges_add" msgstr "" -#: gimplify.c:3509 +#: cfgloop.c:1088 #, gcc-internal-format -msgid "invalid lvalue in asm output %d" +msgid "size of loop %d should be %d, not %d" msgstr "" -#: gimplify.c:3621 +#: cfgloop.c:1105 #, gcc-internal-format -msgid "memory input %d is not directly addressable" +msgid "bb %d do not belong to loop %d" msgstr "" -#: gimplify.c:4494 +#: cfgloop.c:1122 #, gcc-internal-format -msgid "gimplification failed" +msgid "loop %d's header does not have exactly 2 entries" msgstr "" -#: global.c:371 global.c:384 global.c:398 +#: cfgloop.c:1129 #, gcc-internal-format -msgid "%s cannot be used in asm here" +msgid "loop %d's latch does not have exactly 1 successor" 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 +#: cfgloop.c:1134 #, gcc-internal-format -msgid "can't open %s: %m" +msgid "loop %d's latch does not have header as successor" msgstr "" -#: haifa-sched.c:182 +#: cfgloop.c:1139 #, gcc-internal-format -msgid "fix_sched_param: unknown param: %s" +msgid "loop %d's latch does not belong directly to it" msgstr "" -#. Eventually this should become a hard error IMO. -#: opts.c:260 +#: cfgloop.c:1145 #, gcc-internal-format -msgid "command line option \"%s\" is valid for %s but not for %s" +msgid "loop %d's header does not belong directly to it" msgstr "" -#: opts.c:314 +#: cfgloop.c:1151 #, gcc-internal-format -msgid "command line option %qs is not supported by this configuration" +msgid "loop %d's latch is marked as part of irreducible region" msgstr "" -#: opts.c:358 +#: cfgloop.c:1184 #, gcc-internal-format -msgid "missing argument to \"%s\"" +msgid "basic block %d should be marked irreducible" msgstr "" -#: opts.c:368 +#: cfgloop.c:1190 #, gcc-internal-format -msgid "argument to \"%s\" should be a non-negative integer" +msgid "basic block %d should not be marked irreducible" msgstr "" -#: opts.c:456 +#: cfgloop.c:1198 #, gcc-internal-format -msgid "unrecognized command line option \"%s\"" +msgid "edge from %d to %d should be marked irreducible" msgstr "" -#: opts.c:667 +#: cfgloop.c:1205 #, gcc-internal-format -msgid "-Wuninitialized is not supported without -O" +msgid "edge from %d to %d should not be marked irreducible" msgstr "" -#: opts.c:681 +#: cfgloop.c:1240 #, gcc-internal-format -msgid "-freorder-blocks-and-partition does not work with exceptions" +msgid "wrong single exit %d->%d recorded for loop %d" msgstr "" -#: opts.c:690 +#: cfgloop.c:1244 #, gcc-internal-format -msgid "-freorder-blocks-and-partition does not work on this architecture." +msgid "right exit is %d->%d" msgstr "" -#: opts.c:854 +#: cfgloop.c:1261 #, gcc-internal-format -msgid "structure alignment must be a small power of two, not %d" +msgid "single exit not recorded for loop %d" msgstr "" -#: opts.c:919 +#: cfgloop.c:1268 #, gcc-internal-format -msgid "unrecognized visibility value \"%s\"" +msgid "loop %d should not have single exit (%d -> %d)" msgstr "" -#: opts.c:971 +#: cfgrtl.c:1937 #, gcc-internal-format -msgid "unrecognized register name \"%s\"" +msgid "BB_RTL flag not set for block %d" msgstr "" -#: opts.c:995 +#: cfgrtl.c:1943 #, gcc-internal-format -msgid "unknown tls-model \"%s\"" +msgid "end insn %d for block %d not found in the insn stream" msgstr "" -#: opts.c:1064 +#: cfgrtl.c:1957 #, gcc-internal-format -msgid "%s: --param arguments should be of the form NAME=VALUE" +msgid "insn %d is in multiple basic blocks (%d and %d)" msgstr "" -#: opts.c:1069 +#: cfgrtl.c:1969 #, gcc-internal-format -msgid "invalid --param value %qs" +msgid "head insn %d for block %d not found in the insn stream" msgstr "" -#: opts.c:1166 +#: cfgrtl.c:1993 #, gcc-internal-format -msgid "target system does not support debug output" +msgid "verify_flow_info: REG_BR_PROB does not match cfg %wi %i" msgstr "" -#: opts.c:1173 +#: cfgrtl.c:2008 #, gcc-internal-format -msgid "debug format \"%s\" conflicts with prior selection" +msgid "fallthru edge crosses section boundary (bb %i)" msgstr "" -#: opts.c:1189 +#: cfgrtl.c:2033 #, gcc-internal-format -msgid "unrecognised debug output level \"%s\"" +msgid "missing REG_EH_REGION note in the end of bb %i" msgstr "" -#: opts.c:1191 +#: cfgrtl.c:2041 #, gcc-internal-format -msgid "debug output level %s is too high" +msgid "too many outgoing branch edges from bb %i" msgstr "" -#: params.c:71 +#: cfgrtl.c:2046 #, gcc-internal-format -msgid "minimum value of parameter %qs is %u" +msgid "fallthru edge after unconditional jump %i" msgstr "" -#: params.c:76 +#: cfgrtl.c:2057 #, gcc-internal-format -msgid "maximum value of parameter %qs is %u" +msgid "wrong amount of branch edges after conditional jump %i" msgstr "" -#. If we didn't find this parameter, issue an error message. -#: params.c:85 +#: cfgrtl.c:2062 #, gcc-internal-format -msgid "invalid parameter %qs" +msgid "call edges for non-call insn in bb %i" msgstr "" -#: passes.c:1215 +#: cfgrtl.c:2071 #, gcc-internal-format -msgid "" -"branch target register load optimization is not intended to be run twice" +msgid "abnormal edges for no purpose in bb %i" msgstr "" -#: profile.c:284 +#: cfgrtl.c:2083 #, gcc-internal-format -msgid "corrupted profile info: run_max * runs < sum_max" +msgid "insn %d inside basic block %d but block_for_insn is NULL" msgstr "" -#: profile.c:290 +#: cfgrtl.c:2087 #, gcc-internal-format -msgid "corrupted profile info: sum_all is smaller than sum_max" +msgid "insn %d inside basic block %d but block_for_insn is %i" msgstr "" -#: profile.c:335 +#: cfgrtl.c:2101 cfgrtl.c:2111 #, gcc-internal-format -msgid "corrupted profile info: edge from %i to %i exceeds maximal count" +msgid "NOTE_INSN_BASIC_BLOCK is missing for block %d" msgstr "" -#: profile.c:500 +#: cfgrtl.c:2124 #, gcc-internal-format -msgid "" -"corrupted profile info: number of iterations for basic block %d thought to " -"be %i" +msgid "NOTE_INSN_BASIC_BLOCK %d in middle of basic block %d" msgstr "" -#: profile.c:521 +#: cfgrtl.c:2134 #, gcc-internal-format -msgid "" -"corrupted profile info: number of executions for edge %d-%d thought to be %i" +msgid "in basic block %d:" msgstr "" -#: reg-stack.c:523 +#: cfgrtl.c:2171 #, gcc-internal-format -msgid "output constraint %d must specify a single register" +msgid "bb prediction set for block %i, but it is not used in RTL land" msgstr "" -#: reg-stack.c:533 +#: cfgrtl.c:2189 #, gcc-internal-format -msgid "output constraint %d cannot be specified together with \"%s\" clobber" +msgid "missing barrier after block %i" msgstr "" -#: reg-stack.c:556 +#: cfgrtl.c:2202 #, gcc-internal-format -msgid "output regs must be grouped at top of stack" +msgid "verify_flow_info: Incorrect blocks for fallthru %i->%i" msgstr "" -#: reg-stack.c:593 +#: cfgrtl.c:2211 #, gcc-internal-format -msgid "implicitly popped regs must be grouped at top of stack" +msgid "verify_flow_info: Incorrect fallthru %i->%i" msgstr "" -#: reg-stack.c:612 +#: cfgrtl.c:2230 #, gcc-internal-format -msgid "output operand %d must use %<&%> constraint" +msgid "basic blocks not laid down consecutively" msgstr "" -#: regclass.c:766 +#: cfgrtl.c:2269 #, gcc-internal-format -msgid "can't use '%s' as a %s register" +msgid "number of bb notes in insn chain (%d) != n_basic_blocks (%d)" msgstr "" -#: regclass.c:781 config/ia64/ia64.c:4905 config/ia64/ia64.c:4912 -#: config/pa/pa.c:332 config/pa/pa.c:339 +#: cgraph.c:763 #, gcc-internal-format -msgid "unknown register name: %s" +msgid "%D renamed after being referenced in assembly" msgstr "" -#: regclass.c:791 +#: cgraphunit.c:662 #, gcc-internal-format -msgid "global register variable follows a function definition" +msgid "aux field set for edge %s->%s" msgstr "" -#: regclass.c:795 +#: cgraphunit.c:674 #, gcc-internal-format -msgid "register used for two global register variables" +msgid "inlined_to pointer is wrong" msgstr "" -#: regclass.c:800 +#: cgraphunit.c:679 #, gcc-internal-format -msgid "call-clobbered register used for global register variable" +msgid "multiple inline callers" msgstr "" -#: regrename.c:1878 +#: cgraphunit.c:686 #, gcc-internal-format -msgid "validate_value_data: [%u] Bad next_regno for empty chain (%u)" +msgid "inlined_to pointer set for noninline callers" msgstr "" -#: regrename.c:1890 +#: cgraphunit.c:692 #, gcc-internal-format -msgid "validate_value_data: Loop in regno chain (%u)" +msgid "inlined_to pointer is set but no predecesors found" msgstr "" -#: regrename.c:1893 +#: cgraphunit.c:697 #, gcc-internal-format -msgid "validate_value_data: [%u] Bad oldest_regno (%u)" +msgid "inlined_to pointer refers to itself" msgstr "" -#: regrename.c:1905 +#: cgraphunit.c:707 #, gcc-internal-format -msgid "validate_value_data: [%u] Non-empty reg in chain (%s %u %i)" +msgid "node not found in DECL_ASSEMBLER_NAME hash" msgstr "" -#: reload.c:1270 +#: cgraphunit.c:735 #, gcc-internal-format -msgid "cannot reload integer constant operand in %" +msgid "shared call_stmt:" msgstr "" -#: reload.c:1293 +#: cgraphunit.c:741 #, gcc-internal-format -msgid "impossible register constraint in %" +msgid "edge points to wrong declaration:" msgstr "" -#: reload.c:3550 +#: cgraphunit.c:750 #, gcc-internal-format -msgid "%<&%> constraint used with no register class" +msgid "missing callgraph edge for call stmt:" msgstr "" -#: reload.c:3721 reload.c:3953 +#: cgraphunit.c:767 #, gcc-internal-format -msgid "inconsistent operand constraints in an %" +msgid "edge %s->%s has no corresponding call_stmt" msgstr "" -#: reload1.c:1228 +#: cgraphunit.c:779 #, gcc-internal-format -msgid "frame size too large for reliable stack checking" +msgid "verify_cgraph_node failed" msgstr "" -#: reload1.c:1231 +#: cgraphunit.c:1016 #, gcc-internal-format -msgid "try reducing the number of local variables" +msgid "failed to reclaim unneeded function" msgstr "" -#: reload1.c:1882 +#: cgraphunit.c:1296 #, gcc-internal-format -msgid "can't find a register in class %qs while reloading %" +msgid "nodes with no released memory found" msgstr "" -#: reload1.c:1887 +#: collect2.c:1172 #, gcc-internal-format -msgid "unable to find a register to spill in class %qs" +msgid "unknown demangling style '%s'" msgstr "" -#: reload1.c:3889 +#: collect2.c:1495 #, gcc-internal-format -msgid "% operand requires impossible reload" +msgid "%s terminated with signal %d [%s]%s" msgstr "" -#: reload1.c:5013 +#: collect2.c:1513 #, gcc-internal-format -msgid "% operand constraint incompatible with operand size" +msgid "%s returned %d exit status" msgstr "" -#: reload1.c:6640 +#: collect2.c:2175 #, gcc-internal-format -msgid "output operand is constant in %" +msgid "cannot find 'ldd'" msgstr "" -#: rtl.c:474 +#: convert.c:65 #, gcc-internal-format -msgid "RTL check: access of elt %d of '%s' with last elt %d in %s, at %s:%d" +msgid "cannot convert to a pointer type" msgstr "" -#: rtl.c:484 +#: convert.c:298 #, gcc-internal-format -msgid "" -"RTL check: expected elt %d type '%c', have '%c' (rtx %s) in %s, at %s:%d" +msgid "pointer value used where a floating point value was expected" msgstr "" -#: rtl.c:494 +#: convert.c:302 #, gcc-internal-format -msgid "" -"RTL check: expected elt %d type '%c' or '%c', have '%c' (rtx %s) in %s, at %" -"s:%d" +msgid "aggregate value used where a float was expected" msgstr "" -#: rtl.c:503 +#: convert.c:327 #, gcc-internal-format -msgid "RTL check: expected code '%s', have '%s' in %s, at %s:%d" +msgid "conversion to incomplete type" msgstr "" -#: rtl.c:513 +#: convert.c:684 convert.c:760 #, gcc-internal-format -msgid "RTL check: expected code '%s' or '%s', have '%s' in %s, at %s:%d" +msgid "can't convert between vector values of different size" msgstr "" -#: rtl.c:524 +#: convert.c:690 #, gcc-internal-format -msgid "RTL check: access of elt %d of vector with last elt %d in %s, at %s:%d" +msgid "aggregate value used where an integer was expected" msgstr "" -#: rtl.c:535 +#: convert.c:740 #, gcc-internal-format -msgid "RTL flag check: %s used with unexpected rtx code '%s' in %s, at %s:%d" +msgid "pointer value used where a complex was expected" msgstr "" -#: stmt.c:317 +#: convert.c:744 #, gcc-internal-format -msgid "output operand constraint lacks %<=%>" +msgid "aggregate value used where a complex was expected" msgstr "" -#: stmt.c:332 +#: convert.c:766 #, gcc-internal-format -msgid "output constraint %qc for operand %d is not at the beginning" +msgid "can't convert value to a vector" msgstr "" -#: stmt.c:355 +#: coverage.c:183 #, gcc-internal-format -msgid "operand constraint contains incorrectly positioned %<+%> or %<=%>" +msgid "%qs is not a gcov data file" msgstr "" -#: stmt.c:362 stmt.c:461 +#: coverage.c:194 #, gcc-internal-format -msgid "%<%%%> constraint used with last operand" +msgid "%qs is version %q.*s, expected version %q.*s" msgstr "" -#: stmt.c:381 +#: coverage.c:274 coverage.c:282 #, gcc-internal-format -msgid "matching constraint not valid in output operand" +msgid "coverage mismatch for function %u while reading execution counters" msgstr "" -#: stmt.c:452 +#: coverage.c:276 coverage.c:359 #, gcc-internal-format -msgid "input operand constraint contains %qc" +msgid "checksum is %x instead of %x" msgstr "" -#: stmt.c:494 +#: coverage.c:284 coverage.c:367 #, gcc-internal-format -msgid "matching constraint references invalid operand number" +msgid "number of counters is %d instead of %d" msgstr "" -#: stmt.c:532 +#: coverage.c:290 #, gcc-internal-format -msgid "invalid punctuation %qc in constraint" +msgid "cannot merge separate %s counters for function %u" msgstr "" -#: stmt.c:556 +#: coverage.c:311 #, gcc-internal-format -msgid "matching constraint does not allow a register" +msgid "%qs has overflowed" msgstr "" -#: stmt.c:598 +#: coverage.c:311 #, gcc-internal-format -msgid "asm-specifier for variable %qs conflicts with asm clobber list" +msgid "%qs is corrupted" msgstr "" -#: stmt.c:686 +#: coverage.c:348 #, gcc-internal-format -msgid "unknown register name %qs in %" +msgid "no coverage for function %qs found" msgstr "" -#: stmt.c:694 +#: coverage.c:356 coverage.c:364 #, gcc-internal-format -msgid "PIC register %qs clobbered in %" +msgid "coverage mismatch for function %qs while reading counter %qs" msgstr "" -#: stmt.c:741 +#: coverage.c:523 #, gcc-internal-format -msgid "more than %d operands in %" +msgid "cannot open %s" msgstr "" -#: stmt.c:804 +#: coverage.c:558 #, gcc-internal-format -msgid "output number %d not directly addressable" +msgid "error writing %qs" msgstr "" -#: stmt.c:883 +#: diagnostic.c:590 #, gcc-internal-format -msgid "asm operand %d probably doesn%'t match constraints" +msgid "in %s, at %s:%d" msgstr "" -#: stmt.c:893 +#: dominance.c:855 #, gcc-internal-format -msgid "use of memory input without lvalue in asm operand %d is deprecated" +msgid "dominator of %d status unknown" msgstr "" -#: stmt.c:1040 +#: dominance.c:857 #, gcc-internal-format -msgid "asm clobber conflict with output operand" +msgid "dominator of %d should be %d, not %d" msgstr "" -#: stmt.c:1045 +#: dominance.c:869 #, gcc-internal-format -msgid "asm clobber conflict with input operand" +msgid "ENTRY does not dominate bb %d" msgstr "" -#: stmt.c:1122 +#: dwarf2out.c:3469 #, gcc-internal-format -msgid "too many alternatives in %" +msgid "DW_LOC_OP %s not implemented" msgstr "" -#: stmt.c:1134 +#: emit-rtl.c:2266 #, gcc-internal-format -msgid "operand constraints for % differ in number of alternatives" +msgid "invalid rtl sharing found in the insn" msgstr "" -#: stmt.c:1187 +#: emit-rtl.c:2268 #, gcc-internal-format -msgid "duplicate asm operand name %qs" +msgid "shared rtx" msgstr "" -#: stmt.c:1285 +#: emit-rtl.c:2270 flow.c:495 flow.c:520 flow.c:542 #, gcc-internal-format -msgid "missing close brace for named operand" +msgid "internal consistency failure" msgstr "" -#: stmt.c:1313 +#: emit-rtl.c:3334 #, gcc-internal-format -msgid "undefined named operand %qs" +msgid "ICE: emit_insn used where emit_jump_insn needed:\n" msgstr "" -#: stmt.c:1478 +#: errors.c:133 java/jv-scan.c:289 #, gcc-internal-format -msgid "%Hvalue computed is not used" +msgid "abort in %s, at %s:%d" msgstr "" -#: stor-layout.c:148 +#: except.c:333 #, gcc-internal-format -msgid "type size can%'t be explicitly evaluated" +msgid "exception handling disabled, use -fexceptions to enable" msgstr "" -#: stor-layout.c:150 +#: except.c:2757 #, gcc-internal-format -msgid "variable-size type declared outside of any function" +msgid "argument of %<__builtin_eh_return_regno%> must be constant" msgstr "" -#: stor-layout.c:454 +#: except.c:2888 #, gcc-internal-format -msgid "%Jsize of %qD is %d bytes" +msgid "__builtin_eh_return not supported on this target" msgstr "" -#: stor-layout.c:456 +#: except.c:3738 except.c:3747 #, gcc-internal-format -msgid "%Jsize of %qD is larger than %d bytes" +msgid "region_array is corrupted for region %i" msgstr "" -#: stor-layout.c:854 +#: except.c:3752 #, gcc-internal-format -msgid "%Jpacked attribute causes inefficient alignment for %qD" +msgid "outer block of region %i is wrong" msgstr "" -#: stor-layout.c:857 +#: except.c:3757 #, gcc-internal-format -msgid "%Jpacked attribute is unnecessary for %qD" +msgid "region %i may contain throw and is contained in region that may not" msgstr "" -#. No, we need to skip space before this field. -#. Bump the cumulative size to multiple of field alignment. -#: stor-layout.c:872 +#: except.c:3763 #, gcc-internal-format -msgid "%Jpadding struct to align %qD" +msgid "negative nesting depth of region %i" msgstr "" -#: stor-layout.c:1271 +#: except.c:3783 #, gcc-internal-format -msgid "padding struct size to alignment boundary" +msgid "tree list ends on depth %i" msgstr "" -#: stor-layout.c:1301 +#: except.c:3788 #, gcc-internal-format -msgid "packed attribute causes inefficient alignment for %qs" +msgid "array does not match the region tree" msgstr "" -#: stor-layout.c:1305 +#: except.c:3794 #, gcc-internal-format -msgid "packed attribute is unnecessary for %qs" +msgid "verify_eh_tree failed" msgstr "" -#: stor-layout.c:1311 +#: explow.c:1212 #, gcc-internal-format -msgid "packed attribute causes inefficient alignment" +msgid "stack limits not supported on this target" msgstr "" -#: stor-layout.c:1313 +#: fold-const.c:3309 fold-const.c:3320 #, gcc-internal-format -msgid "packed attribute is unnecessary" +msgid "comparison is always %d due to width of bit-field" msgstr "" -#: targhooks.c:97 +#: fold-const.c:4903 fold-const.c:4918 #, gcc-internal-format -msgid "__builtin_saveregs not supported by this target" +msgid "comparison is always %d" msgstr "" -#: tlink.c:484 +#: fold-const.c:5047 #, gcc-internal-format -msgid "repository file '%s' does not contain command-line arguments" +msgid "% of unmatched not-equal tests is always 1" msgstr "" -#: tlink.c:705 +#: fold-const.c:5052 #, gcc-internal-format -msgid "" -"'%s' was assigned to '%s', but was not defined during recompilation, or vice " -"versa" +msgid "% of mutually exclusive equal-tests is always 0" msgstr "" -#: tlink.c:775 +#: fold-const.c:10273 #, gcc-internal-format -msgid "ld returned %d exit status" +msgid "fold check: original tree changed by fold" msgstr "" -#: toplev.c:512 +#: function.c:823 varasm.c:1669 #, gcc-internal-format -msgid "invalid option argument %qs" +msgid "size of variable %q+D is too large" msgstr "" -#: toplev.c:602 +#: function.c:1526 #, gcc-internal-format -msgid "getting core file size maximum limit: %m" +msgid "impossible constraint in %" msgstr "" -#: toplev.c:605 +#: function.c:3467 #, gcc-internal-format -msgid "setting core file size limit to maximum: %m" +msgid "variable %q+D might be clobbered by % or %" msgstr "" -#: toplev.c:828 +#: function.c:3488 #, gcc-internal-format -msgid "%J%qF declared % but never defined" +msgid "argument %q+D might be clobbered by % or %" msgstr "" -#: toplev.c:854 +#: function.c:3883 #, gcc-internal-format -msgid "%J%qD defined but not used" +msgid "function returns an aggregate" msgstr "" -#: toplev.c:877 toplev.c:900 +#: function.c:4311 #, gcc-internal-format -msgid "%qs is deprecated (declared at %s:%d)" +msgid "unused parameter %q+D" msgstr "" -#: toplev.c:903 +#: gcc.c:1244 #, gcc-internal-format -msgid "type is deprecated (declared at %s:%d)" +msgid "ambiguous abbreviation %s" msgstr "" -#: toplev.c:909 +#: gcc.c:1271 #, gcc-internal-format -msgid "%qs is deprecated" +msgid "incomplete '%s' option" msgstr "" -#: toplev.c:911 +#: gcc.c:1282 #, gcc-internal-format -msgid "type is deprecated" +msgid "missing argument to '%s' option" msgstr "" -#: toplev.c:1078 +#: gcc.c:1295 #, gcc-internal-format -msgid "unrecognized gcc debugging option: %c" +msgid "extraneous argument to '%s' option" msgstr "" -#: toplev.c:1225 +#: gcc.c:3799 #, gcc-internal-format -msgid "can%'t open %s for writing: %m" +msgid "warning: -pipe ignored because -save-temps specified" msgstr "" -#: toplev.c:1567 +#: gcc.c:4100 #, gcc-internal-format -msgid "instruction scheduling not supported on this target machine" +msgid "warning: '-x %s' after last input file has no effect" msgstr "" -#: toplev.c:1571 +#. 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:5169 #, gcc-internal-format -msgid "this target machine does not have delayed branches" +msgid "spec failure: '%%*' has not been initialized by pattern match" msgstr "" -#: toplev.c:1585 +#: gcc.c:5178 #, gcc-internal-format -msgid "-f%sleading-underscore not supported on this target machine" +msgid "warning: use of obsolete %%[ operator in specs" msgstr "" -#: toplev.c:1659 +#: gcc.c:5259 #, gcc-internal-format -msgid "target system does not support the \"%s\" debug format" +msgid "spec failure: unrecognized spec option '%c'" msgstr "" -#: toplev.c:1671 +#: gcc.c:6183 #, gcc-internal-format -msgid "variable tracking requested, but useless unless producing debug info" +msgid "spec failure: more than one arg to SYSROOT_SUFFIX_SPEC" msgstr "" -#: toplev.c:1674 +#: gcc.c:6206 #, gcc-internal-format -msgid "variable tracking requested, but not supported by this debug format" +msgid "spec failure: more than one arg to SYSROOT_HEADERS_SUFFIX_SPEC" msgstr "" -#: toplev.c:1694 +#: gcc.c:6295 #, gcc-internal-format -msgid "can%'t open %s: %m" +msgid "unrecognized option '-%s'" msgstr "" -#: toplev.c:1701 +#: gcc.c:6483 gcc.c:6546 #, gcc-internal-format -msgid "-ffunction-sections not supported for this target" +msgid "%s: %s compiler not installed on this system" msgstr "" -#: toplev.c:1706 +#: gcc.c:6638 #, gcc-internal-format -msgid "-fdata-sections not supported for this target" +msgid "%s: linker input file unused because linking not done" msgstr "" -#: toplev.c:1713 +#: gcc.c:6678 #, gcc-internal-format -msgid "-ffunction-sections disabled; it makes profiling impossible" +msgid "language %s not recognized" msgstr "" -#: toplev.c:1720 +#: gcc.c:6749 #, gcc-internal-format -msgid "-fprefetch-loop-arrays not supported for this target" +msgid "%s: %s" msgstr "" -#: toplev.c:1726 +#: gcse.c:6542 #, gcc-internal-format -msgid "-fspeculative-prefetching not supported for this target" +msgid "%s: %d basic blocks and %d edges/basic block" msgstr "" -#: toplev.c:1732 +#: gcse.c:6555 #, gcc-internal-format -msgid "" -"-fprefetch-loop-arrays not supported for this target (try -march switches)" +msgid "%s: %d basic blocks and %d registers" msgstr "" -#: toplev.c:1738 +#: ggc-common.c:404 ggc-common.c:412 ggc-common.c:480 ggc-common.c:499 +#: ggc-page.c:2110 ggc-page.c:2141 ggc-page.c:2148 ggc-zone.c:2291 +#: ggc-zone.c:2306 #, gcc-internal-format -msgid "" -"-fspeculative-prefetching not supported for this target (try -march switches)" +msgid "can't write PCH file: %m" msgstr "" -#: toplev.c:1747 +#: ggc-common.c:492 config/i386/host-cygwin.c:58 #, gcc-internal-format -msgid "-fprefetch-loop-arrays is not supported with -Os" +msgid "can't get position in PCH file: %m" msgstr "" -#: toplev.c:1753 +#: ggc-common.c:502 #, gcc-internal-format -msgid "-ffunction-sections may affect debugging on some targets" +msgid "can't write padding to PCH file: %m" msgstr "" -#: toplev.c:1768 +#: 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:2235 ggc-zone.c:2325 #, gcc-internal-format -msgid "-fstack-protector not supported for this target" +msgid "can't read PCH file: %m" msgstr "" -#: toplev.c:1874 +#: ggc-common.c:580 #, gcc-internal-format -msgid "error writing to %s: %m" +msgid "had to relocate PCH" msgstr "" -#: toplev.c:1876 java/jcf-parse.c:1095 java/jcf-write.c:3536 +#: ggc-page.c:1448 #, gcc-internal-format -msgid "error closing %s: %m" +msgid "open /dev/zero: %m" msgstr "" -#: tree-cfg.c:1398 tree-cfg.c:2013 tree-cfg.c:2016 +#: ggc-page.c:2126 ggc-page.c:2132 #, gcc-internal-format -msgid "%Hwill never be executed" +msgid "can't write PCH file" msgstr "" -#: tree-cfg.c:3094 +#: ggc-zone.c:2288 ggc-zone.c:2299 #, gcc-internal-format -msgid "SSA name in freelist but still referenced" +msgid "can't seek PCH file: %m" msgstr "" -#: tree-cfg.c:3103 +#: ggc-zone.c:2302 #, gcc-internal-format -msgid "ASSERT_EXPR with an always-false condition" +msgid "can't write PCH fle: %m" msgstr "" -#: tree-cfg.c:3113 +#: gimple-low.c:202 #, gcc-internal-format -msgid "GIMPLE register modified with BIT_FIELD_REF" +msgid "unexpected node" msgstr "" -#: tree-cfg.c:3148 +#: gimplify.c:3554 #, gcc-internal-format -msgid "invariant not recomputed when ADDR_EXPR changed" +msgid "invalid lvalue in asm output %d" msgstr "" -#: tree-cfg.c:3154 +#: gimplify.c:3666 #, gcc-internal-format -msgid "constant not recomputed when ADDR_EXPR changed" +msgid "memory input %d is not directly addressable" msgstr "" -#: tree-cfg.c:3159 +#: gimplify.c:4552 #, gcc-internal-format -msgid "side effects not recomputed when ADDR_EXPR changed" +msgid "gimplification failed" msgstr "" -#: tree-cfg.c:3175 +#: global.c:376 global.c:389 global.c:403 #, gcc-internal-format -msgid "address taken, but ADDRESSABLE bit not set" +msgid "%s cannot be used in asm here" msgstr "" -#: tree-cfg.c:3185 +#: 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 "non-boolean used in condition" +msgid "can't open %s: %m" msgstr "" -#: tree-cfg.c:3190 +#: haifa-sched.c:182 #, gcc-internal-format -msgid "Invalid conditional operand" +msgid "fix_sched_param: unknown param: %s" msgstr "" -#: tree-cfg.c:3245 +#. Eventually this should become a hard error IMO. +#: opts.c:261 #, gcc-internal-format -msgid "Invalid reference prefix." +msgid "command line option \"%s\" is valid for %s but not for %s" msgstr "" -#: tree-cfg.c:3310 +#: opts.c:315 #, gcc-internal-format -msgid "Is not a valid GIMPLE statement." +msgid "command line option %qs is not supported by this configuration" msgstr "" -#: tree-cfg.c:3330 +#: opts.c:359 #, gcc-internal-format -msgid "Statement marked for throw, but doesn%'t." +msgid "missing argument to \"%s\"" msgstr "" -#: tree-cfg.c:3335 +#: opts.c:369 #, gcc-internal-format -msgid "Statement marked for throw in middle of block." +msgid "argument to \"%s\" should be a non-negative integer" msgstr "" -#: tree-cfg.c:3430 +#: opts.c:457 #, gcc-internal-format -msgid "bb_for_stmt (phi) is set to a wrong basic block\n" +msgid "unrecognized command line option \"%s\"" msgstr "" -#: tree-cfg.c:3445 +#: opts.c:670 #, gcc-internal-format -msgid "PHI def is not a GIMPLE value" +msgid "-Wuninitialized is not supported without -O" msgstr "" -#: tree-cfg.c:3461 tree-cfg.c:3484 +#: opts.c:684 #, gcc-internal-format -msgid "Incorrect sharing of tree nodes" +msgid "-freorder-blocks-and-partition does not work with exceptions" msgstr "" -#: tree-cfg.c:3475 +#: opts.c:693 #, gcc-internal-format -msgid "bb_for_stmt (stmt) is set to a wrong basic block\n" +msgid "-freorder-blocks-and-partition does not work on this architecture" msgstr "" -#: tree-cfg.c:3493 +#: opts.c:861 #, gcc-internal-format -msgid "verify_stmts failed." +msgid "structure alignment must be a small power of two, not %d" msgstr "" -#: tree-cfg.c:3514 +#: opts.c:919 #, gcc-internal-format -msgid "ENTRY_BLOCK has a statement list associated with it\n" +msgid "unrecognized visibility value \"%s\"" msgstr "" -#: tree-cfg.c:3520 +#: opts.c:967 #, gcc-internal-format -msgid "EXIT_BLOCK has a statement list associated with it\n" +msgid "unrecognized register name \"%s\"" msgstr "" -#: tree-cfg.c:3527 +#: opts.c:991 #, gcc-internal-format -msgid "Fallthru to exit from bb %d\n" +msgid "unknown tls-model \"%s\"" msgstr "" -#: tree-cfg.c:3549 +#: opts.c:1041 #, gcc-internal-format -msgid "Nonlocal label %s is not first in a sequence of labels in bb %d" +msgid "-f[no-]force-mem is nop and option will be removed in 4.2" msgstr "" -#: tree-cfg.c:3558 +#: opts.c:1064 #, gcc-internal-format -msgid "Label %s to block does not match in bb %d\n" +msgid "%s: --param arguments should be of the form NAME=VALUE" msgstr "" -#: tree-cfg.c:3567 +#: opts.c:1069 #, gcc-internal-format -msgid "Label %s has incorrect context in bb %d\n" +msgid "invalid --param value %qs" msgstr "" -#: tree-cfg.c:3581 +#: opts.c:1166 #, gcc-internal-format -msgid "Control flow in the middle of basic block %d\n" +msgid "target system does not support debug output" msgstr "" -#: tree-cfg.c:3591 +#: opts.c:1173 #, gcc-internal-format -msgid "Label %s in the middle of basic block %d\n" +msgid "debug format \"%s\" conflicts with prior selection" msgstr "" -#: tree-cfg.c:3610 +#: opts.c:1189 #, gcc-internal-format -msgid "Fallthru edge after a control statement in bb %d \n" +msgid "unrecognised debug output level \"%s\"" msgstr "" -#: tree-cfg.c:3625 +#: opts.c:1191 #, gcc-internal-format -msgid "Structured COND_EXPR at the end of bb %d\n" +msgid "debug output level %s is too high" msgstr "" -#: tree-cfg.c:3638 tree-cfg.c:3676 tree-cfg.c:3689 tree-cfg.c:3760 +#: params.c:71 #, gcc-internal-format -msgid "Wrong outgoing edge flags at end of bb %d\n" +msgid "minimum value of parameter %qs is %u" msgstr "" -#: tree-cfg.c:3646 +#: params.c:76 #, gcc-internal-format -msgid "% label does not match edge at end of bb %d\n" +msgid "maximum value of parameter %qs is %u" msgstr "" -#: tree-cfg.c:3654 +#. If we didn't find this parameter, issue an error message. +#: params.c:85 #, gcc-internal-format -msgid "% label does not match edge at end of bb %d\n" +msgid "invalid parameter %qs" msgstr "" -#: tree-cfg.c:3664 +#: profile.c:287 #, gcc-internal-format -msgid "Explicit goto at end of bb %d\n" +msgid "corrupted profile info: run_max * runs < sum_max" msgstr "" -#: tree-cfg.c:3694 +#: profile.c:293 #, gcc-internal-format -msgid "Return edge does not point to exit in bb %d\n" +msgid "corrupted profile info: sum_all is smaller than sum_max" msgstr "" -#: tree-cfg.c:3727 +#: profile.c:338 #, gcc-internal-format -msgid "Found default case not at end of case vector" +msgid "corrupted profile info: edge from %i to %i exceeds maximal count" msgstr "" -#: tree-cfg.c:3733 +#: profile.c:503 #, gcc-internal-format msgid "" -"Case labels not sorted:\n" -" " +"corrupted profile info: number of iterations for basic block %d thought to " +"be %i" msgstr "" -#: tree-cfg.c:3744 +#: profile.c:524 #, gcc-internal-format -msgid "No default case found at end of case vector" +msgid "" +"corrupted profile info: number of executions for edge %d-%d thought to be %i" msgstr "" -#: tree-cfg.c:3752 +#: reg-stack.c:526 #, gcc-internal-format -msgid "Extra outgoing edge %d->%d\n" +msgid "output constraint %d must specify a single register" msgstr "" -#: tree-cfg.c:3774 +#: reg-stack.c:536 #, gcc-internal-format -msgid "Missing edge %i->%i" +msgid "output constraint %d cannot be specified together with \"%s\" clobber" msgstr "" -#: tree-cfg.c:5043 tree-cfg.c:5047 +#: reg-stack.c:559 #, gcc-internal-format -msgid "%H% function does return" +msgid "output regs must be grouped at top of stack" msgstr "" -#: tree-cfg.c:5068 tree-cfg.c:5073 +#: reg-stack.c:596 #, gcc-internal-format -msgid "%Hcontrol reaches end of non-void function" +msgid "implicitly popped regs must be grouped at top of stack" msgstr "" -#: tree-cfg.c:5133 +#: reg-stack.c:615 #, gcc-internal-format -msgid "%Jfunction might be possible candidate for attribute %" +msgid "output operand %d must use %<&%> constraint" msgstr "" -#: tree-dump.c:851 +#: regclass.c:766 #, gcc-internal-format -msgid "could not open dump file %qs: %s" +msgid "can't use '%s' as a %s register" msgstr "" -#: tree-dump.c:967 +#: 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 "ignoring unknown option %q.*s in %<-fdump-%s%>" +msgid "unknown register name: %s" msgstr "" -#: tree-eh.c:1767 +#: regclass.c:791 #, gcc-internal-format -msgid "EH edge %i->%i is missing %i %i." +msgid "global register variable follows a function definition" msgstr "" -#: tree-eh.c:1772 +#: regclass.c:795 #, gcc-internal-format -msgid "EH edge %i->%i miss EH flag." +msgid "register used for two global register variables" msgstr "" -#. ??? might not be mistake. -#: tree-eh.c:1778 +#: regclass.c:800 #, gcc-internal-format -msgid "EH edge %i->%i has duplicated regions." +msgid "call-clobbered register used for global register variable" msgstr "" -#: tree-eh.c:1812 +#: regrename.c:1880 #, gcc-internal-format -msgid "BB %i can not throw but has EH edges" +msgid "validate_value_data: [%u] Bad next_regno for empty chain (%u)" msgstr "" -#: tree-eh.c:1819 +#: regrename.c:1892 #, gcc-internal-format -msgid "BB %i last statement has incorrectly set region" +msgid "validate_value_data: Loop in regno chain (%u)" msgstr "" -#: tree-eh.c:1830 +#: regrename.c:1895 #, gcc-internal-format -msgid "Unnecessary EH edge %i->%i" +msgid "validate_value_data: [%u] Bad oldest_regno (%u)" msgstr "" -#: tree-inline.c:1324 +#: regrename.c:1907 #, gcc-internal-format -msgid "" -"%Jfunction %qF can never be inlined because it uses alloca (override using " -"the always_inline attribute)" +msgid "validate_value_data: [%u] Non-empty reg in chain (%s %u %i)" msgstr "" -#: tree-inline.c:1336 +#: reload.c:1270 #, gcc-internal-format -msgid "%Jfunction %qF can never be inlined because it uses setjmp" +msgid "cannot reload integer constant operand in %" msgstr "" -#: tree-inline.c:1350 +#: reload.c:1293 #, gcc-internal-format -msgid "" -"%Jfunction %qF can never be inlined because it uses variable argument lists" +msgid "impossible register constraint in %" msgstr "" -#: tree-inline.c:1361 +#: reload.c:3560 #, gcc-internal-format -msgid "" -"%Jfunction %qF can never be inlined because it uses setjmp-longjmp exception " -"handling" +msgid "%<&%> constraint used with no register class" msgstr "" -#: tree-inline.c:1368 +#: reload.c:3731 reload.c:3963 #, gcc-internal-format -msgid "%Jfunction %qF can never be inlined because it uses non-local goto" +msgid "inconsistent operand constraints in an %" msgstr "" -#: tree-inline.c:1379 +#: reload1.c:1229 #, gcc-internal-format -msgid "" -"%Jfunction %qF can never be inlined because it uses __builtin_return or " -"__builtin_apply_args" +msgid "frame size too large for reliable stack checking" msgstr "" -#: tree-inline.c:1398 +#: reload1.c:1232 #, gcc-internal-format -msgid "%Jfunction %qF can never be inlined because it contains a computed goto" +msgid "try reducing the number of local variables" msgstr "" -#: tree-inline.c:1412 +#: reload1.c:1883 #, gcc-internal-format -msgid "" -"%Jfunction %qF can never be inlined because it receives a non-local goto" +msgid "can't find a register in class %qs while reloading %" msgstr "" -#: tree-inline.c:1437 +#: reload1.c:1888 #, gcc-internal-format -msgid "" -"%Jfunction %qF can never be inlined because it uses variable sized variables" +msgid "unable to find a register to spill in class %qs" msgstr "" -#: tree-inline.c:1974 tree-inline.c:1984 +#: reload1.c:3925 #, gcc-internal-format -msgid "%Jinlining failed in call to %qF: %s" +msgid "% operand requires impossible reload" msgstr "" -#: tree-inline.c:1975 tree-inline.c:1986 +#: reload1.c:5049 #, gcc-internal-format -msgid "called from here" +msgid "% operand constraint incompatible with operand size" msgstr "" -#: tree-mudflap.c:847 +#: reload1.c:6676 #, gcc-internal-format -msgid "mudflap checking not yet implemented for ARRAY_RANGE_REF" +msgid "output operand is constant in %" msgstr "" -#: tree-mudflap.c:1038 +#: rtl.c:474 #, gcc-internal-format -msgid "mudflap cannot track %qs in stub function" +msgid "RTL check: access of elt %d of '%s' with last elt %d in %s, at %s:%d" msgstr "" -#: tree-mudflap.c:1265 +#: rtl.c:484 #, gcc-internal-format -msgid "mudflap cannot track unknown size extern %qs" +msgid "" +"RTL check: expected elt %d type '%c', have '%c' (rtx %s) in %s, at %s:%d" msgstr "" -#: tree-nomudflap.c:51 +#: rtl.c:494 #, gcc-internal-format -msgid "mudflap: this language is not supported" +msgid "" +"RTL check: expected elt %d type '%c' or '%c', have '%c' (rtx %s) in %s, at %" +"s:%d" msgstr "" -#: tree-optimize.c:973 +#: rtl.c:503 #, gcc-internal-format -msgid "%Jsize of return value of %qD is %u bytes" +msgid "RTL check: expected code '%s', have '%s' in %s, at %s:%d" msgstr "" -#: tree-optimize.c:976 +#: rtl.c:513 #, gcc-internal-format -msgid "%Jsize of return value of %qD is larger than %wd bytes" +msgid "RTL check: expected code '%s' or '%s', have '%s' in %s, at %s:%d" 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 +#: rtl.c:539 #, gcc-internal-format -msgid "SSA corruption" +msgid "RTL check: access of elt %d of vector with last elt %d in %s, at %s:%d" msgstr "" -#: tree-outof-ssa.c:2257 +#: rtl.c:550 #, gcc-internal-format -msgid " Pending stmts not issued on PRED edge (%d, %d)\n" +msgid "RTL flag check: %s used with unexpected rtx code '%s' in %s, at %s:%d" msgstr "" -#: tree-outof-ssa.c:2263 +#: stmt.c:317 #, gcc-internal-format -msgid " Pending stmts not issued on SUCC edge (%d, %d)\n" +msgid "output operand constraint lacks %<=%>" msgstr "" -#: tree-outof-ssa.c:2270 +#: stmt.c:332 #, gcc-internal-format -msgid " Pending stmts not issued on ENTRY edge (%d, %d)\n" +msgid "output constraint %qc for operand %d is not at the beginning" msgstr "" -#: tree-outof-ssa.c:2276 +#: stmt.c:355 #, gcc-internal-format -msgid " Pending stmts not issued on EXIT edge (%d, %d)\n" +msgid "operand constraint contains incorrectly positioned %<+%> or %<=%>" msgstr "" -#: tree-profile.c:216 +#: stmt.c:362 stmt.c:461 #, gcc-internal-format -msgid "unimplemented functionality" +msgid "%<%%%> constraint used with last operand" msgstr "" -#: tree-ssa-operands.c:1483 +#: stmt.c:381 #, gcc-internal-format -msgid "internal error" +msgid "matching constraint not valid in output operand" msgstr "" -#: tree-ssa.c:111 +#: stmt.c:452 #, gcc-internal-format -msgid "Expected an SSA_NAME object" +msgid "input operand constraint contains %qc" msgstr "" -#: tree-ssa.c:117 +#: stmt.c:494 #, gcc-internal-format -msgid "Type mismatch between an SSA_NAME and its symbol." +msgid "matching constraint references invalid operand number" msgstr "" -#: tree-ssa.c:123 +#: stmt.c:532 #, gcc-internal-format -msgid "Found an SSA_NAME that had been released into the free pool" +msgid "invalid punctuation %qc in constraint" msgstr "" -#: tree-ssa.c:129 +#: stmt.c:556 #, gcc-internal-format -msgid "Found a virtual definition for a GIMPLE register" +msgid "matching constraint does not allow a register" msgstr "" -#: tree-ssa.c:135 +#: stmt.c:598 #, gcc-internal-format -msgid "Found a real definition for a non-register" +msgid "asm-specifier for variable %qs conflicts with asm clobber list" msgstr "" -#: tree-ssa.c:142 +#: stmt.c:686 #, gcc-internal-format -msgid "Found real variable when subvariables should have appeared" +msgid "unknown register name %qs in %" msgstr "" -#: tree-ssa.c:171 +#: stmt.c:694 #, gcc-internal-format -msgid "SSA_NAME created in two different blocks %i and %i" +msgid "PIC register %qs clobbered in %" msgstr "" -#: tree-ssa.c:180 +#: stmt.c:741 #, gcc-internal-format -msgid "SSA_NAME_DEF_STMT is wrong" +msgid "more than %d operands in %" msgstr "" -#: tree-ssa.c:238 +#: stmt.c:804 #, gcc-internal-format -msgid "Missing definition" +msgid "output number %d not directly addressable" msgstr "" -#: tree-ssa.c:244 +#: stmt.c:883 #, gcc-internal-format -msgid "Definition in block %i does not dominate use in block %i" +msgid "asm operand %d probably doesn%'t match constraints" msgstr "" -#: tree-ssa.c:252 +#: stmt.c:893 #, gcc-internal-format -msgid "Definition in block %i follows the use" +msgid "use of memory input without lvalue in asm operand %d is deprecated" msgstr "" -#: tree-ssa.c:259 +#: stmt.c:1040 #, gcc-internal-format -msgid "SSA_NAME_OCCURS_IN_ABNORMAL_PHI should be set" +msgid "asm clobber conflict with output operand" msgstr "" -#: tree-ssa.c:267 +#: stmt.c:1045 #, gcc-internal-format -msgid "No immediate_use list" +msgid "asm clobber conflict with input operand" msgstr "" -#: tree-ssa.c:279 +#: stmt.c:1122 #, gcc-internal-format -msgid "Wrong immediate use list" +msgid "too many alternatives in %" msgstr "" -#: tree-ssa.c:312 +#: stmt.c:1134 #, gcc-internal-format -msgid "Incoming edge count does not match number of PHI arguments\n" +msgid "operand constraints for % differ in number of alternatives" msgstr "" -#: tree-ssa.c:327 +#: stmt.c:1187 #, gcc-internal-format -msgid "PHI argument is missing for edge %d->%d\n" +msgid "duplicate asm operand name %qs" msgstr "" -#: tree-ssa.c:336 +#: stmt.c:1285 #, gcc-internal-format -msgid "PHI argument is not SSA_NAME, or invariant" +msgid "missing close brace for named operand" msgstr "" -#: tree-ssa.c:348 +#: stmt.c:1313 #, gcc-internal-format -msgid "Wrong edge %d->%d for PHI argument\n" +msgid "undefined named operand %qs" msgstr "" -#: tree-ssa.c:397 +#: stmt.c:1457 #, gcc-internal-format -msgid "Non-addressable variable inside an alias set." +msgid "%Hvalue computed is not used" msgstr "" -#: tree-ssa.c:413 +#: stor-layout.c:149 #, gcc-internal-format -msgid "Addressable variable that is an alias tag but is not in any alias set." +msgid "type size can%'t be explicitly evaluated" msgstr "" -#: tree-ssa.c:423 +#: stor-layout.c:151 #, gcc-internal-format -msgid "verify_flow_insensitive_alias_info failed." +msgid "variable-size type declared outside of any function" msgstr "" -#: tree-ssa.c:465 +#: stor-layout.c:455 #, gcc-internal-format -msgid "Dereferenced pointers should have a name or a type tag" +msgid "size of %q+D is %d bytes" msgstr "" -#: tree-ssa.c:473 +#: stor-layout.c:457 #, gcc-internal-format -msgid "" -"Pointers with a memory tag, should have points-to sets or point to malloc" +msgid "size of %q+D is larger than %wd bytes" msgstr "" -#: tree-ssa.c:481 +#: stor-layout.c:855 #, gcc-internal-format -msgid "Pointer escapes but its name tag is not call-clobbered." +msgid "packed attribute causes inefficient alignment for %q+D" msgstr "" -#: tree-ssa.c:490 +#: stor-layout.c:858 #, gcc-internal-format -msgid "verify_flow_sensitive_alias_info failed." +msgid "packed attribute is unnecessary for %q+D" msgstr "" -#: tree-ssa.c:567 +#. No, we need to skip space before this field. +#. Bump the cumulative size to multiple of field alignment. +#: stor-layout.c:873 #, gcc-internal-format -msgid "" -"Alias set of a pointer's type tag should be a superset of the corresponding " -"name tag" +msgid "padding struct to align %q+D" msgstr "" -#: tree-ssa.c:583 +#: stor-layout.c:1272 #, gcc-internal-format -msgid "" -"Two different pointers with identical points-to sets but different name tags" +msgid "padding struct size to alignment boundary" msgstr "" -#: tree-ssa.c:615 +#: stor-layout.c:1302 #, gcc-internal-format -msgid "verify_name_tags failed" +msgid "packed attribute causes inefficient alignment for %qs" msgstr "" -#: tree-ssa.c:686 +#: stor-layout.c:1306 #, gcc-internal-format -msgid "AUX pointer initialized for edge %d->%d\n" +msgid "packed attribute is unnecessary for %qs" msgstr "" -#: tree-ssa.c:709 +#: stor-layout.c:1312 #, gcc-internal-format -msgid "Stmt (%p) marked modified after optimization pass : " +msgid "packed attribute causes inefficient alignment" msgstr "" -#: tree-ssa.c:727 +#: stor-layout.c:1314 #, gcc-internal-format -msgid "Statement makes a memory store, but has no V_MAY_DEFS nor V_MUST_DEFS" +msgid "packed attribute is unnecessary" msgstr "" -#: tree-ssa.c:738 +#: targhooks.c:97 #, gcc-internal-format -msgid "Statement makes aliased stores, but has no V_MAY_DEFS" +msgid "__builtin_saveregs not supported by this target" msgstr "" -#: tree-ssa.c:777 +#: tlink.c:484 #, gcc-internal-format -msgid "verify_ssa failed." +msgid "repository file '%s' does not contain command-line arguments" msgstr "" -#: tree-ssa.c:1151 +#: tlink.c:705 #, gcc-internal-format -msgid "%H%qD is used uninitialized in this function" +msgid "" +"'%s' was assigned to '%s', but was not defined during recompilation, or vice " +"versa" msgstr "" -#: tree-ssa.c:1176 +#: tlink.c:775 #, gcc-internal-format -msgid "%H%qD may be used uninitialized in this function" +msgid "ld returned %d exit status" msgstr "" -#: tree-vect-transform.c:632 +#: toplev.c:512 #, gcc-internal-format -msgid "no support for induction" +msgid "invalid option argument %qs" 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 +#: toplev.c:602 #, gcc-internal-format -msgid "%qs attribute ignored" +msgid "getting core file size maximum limit: %m" msgstr "" -#: tree.c:3371 +#: toplev.c:605 #, gcc-internal-format -msgid "%Jfunction %qD definition is marked dllimport." +msgid "setting core file size limit to maximum: %m" msgstr "" -#: tree.c:3379 +#: toplev.c:823 #, gcc-internal-format -msgid "%Jvariable %qD definition is marked dllimport." +msgid "%q+F declared % but never defined" msgstr "" -#: tree.c:3399 +#: toplev.c:848 #, gcc-internal-format -msgid "%Jexternal linkage required for symbol %qD because of %qs attribute." +msgid "%q+D defined but not used" msgstr "" -#: tree.c:4662 +#: toplev.c:891 toplev.c:915 #, gcc-internal-format -msgid "arrays of functions are not meaningful" +msgid "%qs is deprecated (declared at %s:%d)" msgstr "" -#: tree.c:4714 +#: toplev.c:919 #, gcc-internal-format -msgid "function return type cannot be function" +msgid "type is deprecated (declared at %s:%d)" msgstr "" -#: tree.c:5610 +#: toplev.c:925 #, gcc-internal-format -msgid "tree check: %s, have %s in %s, at %s:%d" +msgid "%qs is deprecated" msgstr "" -#: tree.c:5647 +#: toplev.c:927 #, gcc-internal-format -msgid "tree check: expected none of %s, have %s in %s, at %s:%d" +msgid "type is deprecated" msgstr "" -#: tree.c:5660 +#: toplev.c:1094 #, gcc-internal-format -msgid "tree check: expected class %qs, have %qs (%s) in %s, at %s:%d" +msgid "unrecognized gcc debugging option: %c" msgstr "" -#: tree.c:5674 +#: toplev.c:1247 #, gcc-internal-format -msgid "tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d" +msgid "can%'t open %s for writing: %m" msgstr "" -#: tree.c:5686 +#: toplev.c:1587 #, gcc-internal-format -msgid "tree check: accessed elt %d of phi_node with %d elts in %s, at %s:%d" +msgid "instruction scheduling not supported on this target machine" msgstr "" -#: tree.c:5698 +#: toplev.c:1591 #, gcc-internal-format -msgid "tree check: accessed operand %d of %s with %d operands in %s, at %s:%d" +msgid "this target machine does not have delayed branches" msgstr "" -#: varasm.c:467 +#: toplev.c:1605 #, gcc-internal-format -msgid "%J%D causes a section type conflict" +msgid "-f%sleading-underscore not supported on this target machine" msgstr "" -#: varasm.c:928 +#: toplev.c:1679 #, gcc-internal-format -msgid "%Jregister name not specified for %qD" +msgid "target system does not support the \"%s\" debug format" msgstr "" -#: varasm.c:930 +#: toplev.c:1691 #, gcc-internal-format -msgid "%Jinvalid register name for %qD" +msgid "variable tracking requested, but useless unless producing debug info" msgstr "" -#: varasm.c:932 +#: toplev.c:1694 #, gcc-internal-format -msgid "%Jdata type of %qD isn%'t suitable for a register" +msgid "variable tracking requested, but not supported by this debug format" msgstr "" -#: varasm.c:935 +#: toplev.c:1714 #, gcc-internal-format -msgid "%Jregister specified for %qD isn%'t suitable for data type" +msgid "can%'t open %s: %m" msgstr "" -#: varasm.c:945 +#: toplev.c:1721 #, gcc-internal-format -msgid "global register variable has initial value" +msgid "-ffunction-sections not supported for this target" msgstr "" -#: varasm.c:948 +#: toplev.c:1726 #, gcc-internal-format -msgid "volatile register variables don%'t work as you might wish" +msgid "-fdata-sections not supported for this target" msgstr "" -#: varasm.c:986 +#: toplev.c:1733 #, gcc-internal-format -msgid "%Jregister name given for non-register variable %qD" +msgid "-ffunction-sections disabled; it makes profiling impossible" msgstr "" -#: varasm.c:1063 +#: toplev.c:1740 #, gcc-internal-format -msgid "global destructors not supported on this target" +msgid "-fprefetch-loop-arrays not supported for this target" msgstr "" -#: varasm.c:1124 +#: toplev.c:1746 #, gcc-internal-format -msgid "global constructors not supported on this target" +msgid "" +"-fprefetch-loop-arrays not supported for this target (try -march switches)" msgstr "" -#: varasm.c:1683 +#: toplev.c:1755 #, gcc-internal-format -msgid "" -"%Jalignment of %qD is greater than maximum object file alignment. Using %d" +msgid "-fprefetch-loop-arrays is not supported with -Os" msgstr "" -#: varasm.c:1722 +#: toplev.c:1761 #, gcc-internal-format -msgid "thread-local COMMON data not implemented" +msgid "-ffunction-sections may affect debugging on some targets" msgstr "" -#: varasm.c:1747 +#: toplev.c:1776 #, gcc-internal-format -msgid "" -"%Jrequested alignment for %qD is greater than implemented alignment of %d" +msgid "-fstack-protector not supported for this target" msgstr "" -#: varasm.c:3867 +#: toplev.c:1882 #, gcc-internal-format -msgid "initializer for integer value is too complicated" +msgid "error writing to %s: %m" msgstr "" -#: varasm.c:3872 +#: toplev.c:1884 java/jcf-parse.c:1099 java/jcf-write.c:3539 #, gcc-internal-format -msgid "initializer for floating value is not a floating constant" +msgid "error closing %s: %m" msgstr "" -#: varasm.c:4139 +#: tree-cfg.c:1422 tree-cfg.c:2054 tree-cfg.c:2057 #, gcc-internal-format -msgid "invalid initial value for member %qs" +msgid "%Hwill never be executed" msgstr "" -#: varasm.c:4338 varasm.c:4382 +#: tree-cfg.c:3143 #, gcc-internal-format -msgid "%Jweak declaration of %qD must precede definition" +msgid "SSA name in freelist but still referenced" msgstr "" -#: varasm.c:4346 +#: tree-cfg.c:3152 #, gcc-internal-format -msgid "" -"%Jweak declaration of %qD after first use results in unspecified behavior" +msgid "ASSERT_EXPR with an always-false condition" msgstr "" -#: varasm.c:4380 +#: tree-cfg.c:3162 #, gcc-internal-format -msgid "%Jweak declaration of %qD must be public" +msgid "GIMPLE register modified with BIT_FIELD_REF" msgstr "" -#: varasm.c:4389 +#: tree-cfg.c:3197 #, gcc-internal-format -msgid "%Jweak declaration of %qD not supported" +msgid "invariant not recomputed when ADDR_EXPR changed" msgstr "" -#: varasm.c:4418 +#: tree-cfg.c:3203 #, gcc-internal-format -msgid "only weak aliases are supported in this configuration" +msgid "constant not recomputed when ADDR_EXPR changed" msgstr "" -#: varasm.c:4586 +#: tree-cfg.c:3208 #, gcc-internal-format -msgid "%J%qD aliased to undefined symbol %qE" +msgid "side effects not recomputed when ADDR_EXPR changed" msgstr "" -#: varasm.c:4589 +#: tree-cfg.c:3224 #, gcc-internal-format -msgid "%J%qD aliased to external symbol %qE" +msgid "address taken, but ADDRESSABLE bit not set" msgstr "" -#: varasm.c:4620 +#: tree-cfg.c:3234 #, gcc-internal-format -msgid "%Jalias definitions not supported in this configuration" +msgid "non-boolean used in condition" msgstr "" -#: varasm.c:4625 +#: tree-cfg.c:3239 #, gcc-internal-format -msgid "%Jonly weak aliases are supported in this configuration" +msgid "invalid conditional operand" msgstr "" -#: varasm.c:4680 +#: tree-cfg.c:3294 #, gcc-internal-format -msgid "visibility attribute not supported in this configuration; ignored" +msgid "invalid reference prefix" msgstr "" -#: varray.c:207 +#: tree-cfg.c:3359 #, gcc-internal-format -msgid "virtual array %s[%lu]: element %lu out of bounds in %s, at %s:%d" +msgid "is not a valid GIMPLE statement" msgstr "" -#: varray.c:217 +#: tree-cfg.c:3379 #, gcc-internal-format -msgid "underflowed virtual array %s in %s, at %s:%d" +msgid "statement marked for throw, but doesn%'t" msgstr "" -#: vec.c:153 +#: tree-cfg.c:3384 #, gcc-internal-format -msgid "vector %s %s domain error, in %s at %s:%u" +msgid "statement marked for throw in middle of block" msgstr "" -#. Print an error message for unrecognized stab codes. -#: xcoffout.c:187 +#: tree-cfg.c:3479 #, gcc-internal-format -msgid "no sclass for %s stab (0x%x)\n" +msgid "bb_for_stmt (phi) is set to a wrong basic block" msgstr "" -#: config/darwin-c.c:85 +#: tree-cfg.c:3494 #, gcc-internal-format -msgid "too many #pragma options align=reset" +msgid "PHI def is not a GIMPLE value" msgstr "" -#: config/darwin-c.c:105 config/darwin-c.c:108 config/darwin-c.c:110 -#: config/darwin-c.c:112 +#: tree-cfg.c:3510 tree-cfg.c:3533 #, gcc-internal-format -msgid "malformed '#pragma options', ignoring" +msgid "incorrect sharing of tree nodes" msgstr "" -#: config/darwin-c.c:115 +#: tree-cfg.c:3524 #, gcc-internal-format -msgid "junk at end of '#pragma options'" +msgid "bb_for_stmt (stmt) is set to a wrong basic block" msgstr "" -#: config/darwin-c.c:125 +#: tree-cfg.c:3542 #, gcc-internal-format -msgid "malformed '#pragma options align={mac68k|power|reset}', ignoring" +msgid "verify_stmts failed" msgstr "" -#: config/darwin-c.c:137 +#: tree-cfg.c:3563 #, gcc-internal-format -msgid "missing '(' after '#pragma unused', ignoring" +msgid "ENTRY_BLOCK has a statement list associated with it" msgstr "" -#: config/darwin-c.c:155 +#: tree-cfg.c:3569 #, gcc-internal-format -msgid "missing ')' after '#pragma unused', ignoring" +msgid "EXIT_BLOCK has a statement list associated with it" msgstr "" -#: config/darwin-c.c:158 +#: tree-cfg.c:3576 #, gcc-internal-format -msgid "junk at end of '#pragma unused'" +msgid "fallthru to exit from bb %d" msgstr "" -#: config/darwin-c.c:384 +#: tree-cfg.c:3598 #, gcc-internal-format -msgid "subframework include %s conflicts with framework include" +msgid "nonlocal label %s is not first in a sequence of labels in bb %d" msgstr "" -#: config/darwin.c:1343 +#: tree-cfg.c:3607 #, gcc-internal-format -msgid "" -"internal and protected visibility attributes not supported in this " -"configuration; ignored" +msgid "label %s to block does not match in bb %d" msgstr "" -#: config/host-darwin.c:63 +#: tree-cfg.c:3616 #, gcc-internal-format -msgid "couldn't unmap pch_address_space: %m\n" +msgid "label %s has incorrect context in bb %d" msgstr "" -#: config/sol2-c.c:94 config/sol2-c.c:110 +#: tree-cfg.c:3630 #, gcc-internal-format -msgid "malformed %<#pragma align%>, ignoring" +msgid "control flow in the middle of basic block %d" msgstr "" -#: config/sol2-c.c:103 +#: tree-cfg.c:3640 #, gcc-internal-format -msgid "invalid alignment for %<#pragma align%>, ignoring" +msgid "label %s in the middle of basic block %d" msgstr "" -#: config/sol2-c.c:118 +#: tree-cfg.c:3659 #, gcc-internal-format -msgid "%<#pragma align%> must appear before the declaration of %D, ignoring" +msgid "fallthru edge after a control statement in bb %d" msgstr "" -#: config/sol2-c.c:130 config/sol2-c.c:142 +#: tree-cfg.c:3674 #, gcc-internal-format -msgid "malformed %<#pragma align%>" +msgid "structured COND_EXPR at the end of bb %d" msgstr "" -#: config/sol2-c.c:137 +#: tree-cfg.c:3687 tree-cfg.c:3725 tree-cfg.c:3738 tree-cfg.c:3809 #, gcc-internal-format -msgid "junk at end of %<#pragma align%>" +msgid "wrong outgoing edge flags at end of bb %d" msgstr "" -#: config/sol2-c.c:158 config/sol2-c.c:165 +#: tree-cfg.c:3695 #, gcc-internal-format -msgid "malformed %<#pragma init%>, ignoring" +msgid "% label does not match edge at end of bb %d" msgstr "" -#: config/sol2-c.c:188 config/sol2-c.c:200 +#: tree-cfg.c:3703 #, gcc-internal-format -msgid "malformed %<#pragma init%>" +msgid "% label does not match edge at end of bb %d" msgstr "" -#: config/sol2-c.c:195 +#: tree-cfg.c:3713 #, gcc-internal-format -msgid "junk at end of %<#pragma init%>" +msgid "explicit goto at end of bb %d" msgstr "" -#: config/sol2-c.c:216 config/sol2-c.c:223 +#: tree-cfg.c:3743 #, gcc-internal-format -msgid "malformed %<#pragma fini%>, ignoring" +msgid "return edge does not point to exit in bb %d" msgstr "" -#: config/sol2-c.c:246 config/sol2-c.c:258 +#: tree-cfg.c:3776 #, gcc-internal-format -msgid "malformed %<#pragma fini%>" +msgid "found default case not at end of case vector" msgstr "" -#: config/sol2-c.c:253 +#: tree-cfg.c:3782 #, gcc-internal-format -msgid "junk at end of %<#pragma fini%>" +msgid "case labels not sorted:" msgstr "" -#: config/sol2.c:54 +#: tree-cfg.c:3793 #, gcc-internal-format -msgid "%Jignoring %<#pragma align%> for explicitly aligned %<%D%>" +msgid "no default case found at end of case vector" msgstr "" -#. Mach-O supports 'weak imports', and 'weak definitions' in coalesced -#. sections. machopic_select_section ensures that weak variables go in -#. 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 +#: tree-cfg.c:3801 #, gcc-internal-format -msgid "alias definitions not supported in Mach-O; ignored" +msgid "extra outgoing edge %d->%d" msgstr "" -#: config/windiss.h:37 +#: tree-cfg.c:3823 #, gcc-internal-format -msgid "profiler support for WindISS" +msgid "missing edge %i->%i" msgstr "" -#: config/alpha/alpha.c:231 config/rs6000/rs6000.c:1547 +#: tree-cfg.c:5117 tree-cfg.c:5121 #, gcc-internal-format -msgid "bad value %qs for -mtls-size switch" +msgid "%H% function does return" msgstr "" -#: config/alpha/alpha.c:270 +#: tree-cfg.c:5143 tree-cfg.c:5148 #, gcc-internal-format -msgid "-f%s ignored for Unicos/Mk (not supported)" +msgid "%Hcontrol reaches end of non-void function" msgstr "" -#: config/alpha/alpha.c:294 +#: tree-cfg.c:5208 #, gcc-internal-format -msgid "-mieee not supported on Unicos/Mk" +msgid "%Jfunction might be possible candidate for attribute %" msgstr "" -#: config/alpha/alpha.c:305 +#: tree-dump.c:856 #, gcc-internal-format -msgid "-mieee-with-inexact not supported on Unicos/Mk" +msgid "could not open dump file %qs: %s" msgstr "" -#: config/alpha/alpha.c:322 +#: tree-dump.c:987 #, gcc-internal-format -msgid "bad value %qs for -mtrap-precision switch" +msgid "ignoring unknown option %q.*s in %<-fdump-%s%>" msgstr "" -#: config/alpha/alpha.c:336 +#: tree-eh.c:1767 #, gcc-internal-format -msgid "bad value %qs for -mfp-rounding-mode switch" +msgid "EH edge %i->%i is missing" msgstr "" -#: config/alpha/alpha.c:351 +#: tree-eh.c:1772 #, gcc-internal-format -msgid "bad value %qs for -mfp-trap-mode switch" +msgid "EH edge %i->%i miss EH flag" msgstr "" -#: config/alpha/alpha.c:365 config/alpha/alpha.c:377 +#. ??? might not be mistake. +#: tree-eh.c:1778 #, gcc-internal-format -msgid "bad value %qs for -mcpu switch" +msgid "EH edge %i->%i has duplicated regions" msgstr "" -#: config/alpha/alpha.c:384 +#: tree-eh.c:1812 #, gcc-internal-format -msgid "trap mode not supported on Unicos/Mk" +msgid "BB %i can not throw but has EH edges" msgstr "" -#: config/alpha/alpha.c:391 +#: tree-eh.c:1819 #, gcc-internal-format -msgid "fp software completion requires -mtrap-precision=i" +msgid "BB %i last statement has incorrectly set region" msgstr "" -#: config/alpha/alpha.c:407 +#: tree-eh.c:1830 #, gcc-internal-format -msgid "rounding mode not supported for VAX floats" +msgid "unnecessary EH edge %i->%i" msgstr "" -#: config/alpha/alpha.c:412 +#: tree-inline.c:1338 #, gcc-internal-format -msgid "trap mode not supported for VAX floats" +msgid "" +"function %q+F can never be inlined because it uses alloca (override using " +"the always_inline attribute)" msgstr "" -#: config/alpha/alpha.c:416 +#: tree-inline.c:1350 #, gcc-internal-format -msgid "128-bit long double not supported for VAX floats" +msgid "function %q+F can never be inlined because it uses setjmp" msgstr "" -#: config/alpha/alpha.c:444 +#: tree-inline.c:1364 #, gcc-internal-format -msgid "L%d cache latency unknown for %s" +msgid "" +"function %q+F can never be inlined because it uses variable argument lists" msgstr "" -#: config/alpha/alpha.c:459 +#: tree-inline.c:1375 #, gcc-internal-format -msgid "bad value %qs for -mmemory-latency" +msgid "" +"function %q+F can never be inlined because it uses setjmp-longjmp exception " +"handling" msgstr "" -#: config/alpha/alpha.c:6371 config/alpha/alpha.c:6374 config/s390/s390.c:7303 -#: config/s390/s390.c:7306 +#: tree-inline.c:1382 #, gcc-internal-format -msgid "bad builtin fcode" +msgid "function %q+F can never be inlined because it uses non-local goto" msgstr "" -#: config/arc/arc.c:390 +#: tree-inline.c:1393 #, gcc-internal-format -msgid "argument of %qs attribute is not a string constant" +msgid "" +"function %q+F can never be inlined because it uses __builtin_return or " +"__builtin_apply_args" msgstr "" -#: config/arc/arc.c:398 +#: tree-inline.c:1412 #, gcc-internal-format -msgid "argument of %qs attribute is not \"ilink1\" or \"ilink2\"" +msgid "function %q+F can never be inlined because it contains a computed goto" msgstr "" -#: config/arm/arm.c:877 +#: tree-inline.c:1426 #, gcc-internal-format -msgid "switch -mcpu=%s conflicts with -march= switch" +msgid "function %q+F can never be inlined because it receives a non-local goto" msgstr "" -#: config/arm/arm.c:887 config/rs6000/rs6000.c:1203 config/sparc/sparc.c:698 +#: tree-inline.c:1451 #, gcc-internal-format -msgid "bad value (%s) for %s switch" +msgid "" +"function %q+F can never be inlined because it uses variable sized variables" msgstr "" -#: config/arm/arm.c:997 +#: tree-inline.c:1990 tree-inline.c:2000 #, gcc-internal-format -msgid "target CPU does not support interworking" +msgid "inlining failed in call to %q+F: %s" msgstr "" -#: config/arm/arm.c:1003 +#: tree-inline.c:1991 tree-inline.c:2002 #, gcc-internal-format -msgid "target CPU does not support THUMB instructions" +msgid "called from here" msgstr "" -#: config/arm/arm.c:1016 +#: tree-mudflap.c:847 #, gcc-internal-format -msgid "" -"enabling backtrace support is only meaningful when compiling for the Thumb" +msgid "mudflap checking not yet implemented for ARRAY_RANGE_REF" msgstr "" -#: config/arm/arm.c:1019 +#: tree-mudflap.c:1038 #, gcc-internal-format -msgid "" -"enabling callee interworking support is only meaningful when compiling for " -"the Thumb" +msgid "mudflap cannot track %qs in stub function" msgstr "" -#: config/arm/arm.c:1022 +#: tree-mudflap.c:1265 #, gcc-internal-format -msgid "" -"enabling caller interworking support is only meaningful when compiling for " -"the Thumb" +msgid "mudflap cannot track unknown size extern %qs" msgstr "" -#: config/arm/arm.c:1026 +#: tree-nomudflap.c:51 #, gcc-internal-format -msgid "-mapcs-stack-check incompatible with -mno-apcs-frame" +msgid "mudflap: this language is not supported" msgstr "" -#: config/arm/arm.c:1034 +#: tree-optimize.c:478 #, gcc-internal-format -msgid "-fpic and -mapcs-reent are incompatible" +msgid "size of return value of %q+D is %u bytes" msgstr "" -#: config/arm/arm.c:1037 +#: tree-optimize.c:481 #, gcc-internal-format -msgid "APCS reentrant code not supported. Ignored" +msgid "size of return value of %q+D is larger than %wd bytes" msgstr "" -#: config/arm/arm.c:1045 +#: tree-outof-ssa.c:614 tree-outof-ssa.c:629 tree-outof-ssa.c:643 +#: 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 "-g with -mno-apcs-frame may not give sensible debugging" +msgid "SSA corruption" msgstr "" -#: config/arm/arm.c:1053 +#: tree-outof-ssa.c:2350 #, gcc-internal-format -msgid "passing floating point arguments in fp regs not yet supported" +msgid " Pending stmts not issued on PRED edge (%d, %d)\n" msgstr "" -#: config/arm/arm.c:1094 +#: tree-outof-ssa.c:2356 #, gcc-internal-format -msgid "invalid ABI option: -mabi=%s" +msgid " Pending stmts not issued on SUCC edge (%d, %d)\n" msgstr "" -#: config/arm/arm.c:1100 +#: tree-outof-ssa.c:2363 #, gcc-internal-format -msgid "iwmmxt requires an AAPCS compatible ABI for proper operation" +msgid " Pending stmts not issued on ENTRY edge (%d, %d)\n" msgstr "" -#: config/arm/arm.c:1103 +#: tree-outof-ssa.c:2369 #, gcc-internal-format -msgid "iwmmxt abi requires an iwmmxt capable cpu" +msgid " Pending stmts not issued on EXIT edge (%d, %d)\n" msgstr "" -#: config/arm/arm.c:1113 +#: tree-profile.c:216 #, gcc-internal-format -msgid "invalid floating point emulation option: -mfpe=%s" +msgid "unimplemented functionality" msgstr "" -#: config/arm/arm.c:1130 +#: tree-ssa-loop-niter.c:1031 #, gcc-internal-format -msgid "invalid floating point option: -mfpu=%s" +msgid "%H%s" msgstr "" -#: config/arm/arm.c:1170 +#: tree-ssa-operands.c:1487 #, gcc-internal-format -msgid "invalid floating point abi: -mfloat-abi=%s" +msgid "internal error" msgstr "" -#: config/arm/arm.c:1177 +#: tree-ssa.c:111 #, gcc-internal-format -msgid "-mfloat-abi=hard and VFP" +msgid "expected an SSA_NAME object" msgstr "" -#: config/arm/arm.c:1203 +#: tree-ssa.c:117 #, gcc-internal-format -msgid "structure size boundary can only be set to %s" +msgid "type mismatch between an SSA_NAME and its symbol" msgstr "" -#: config/arm/arm.c:1212 +#: tree-ssa.c:123 #, gcc-internal-format -msgid "-mpic-register= is useless without -fpic" +msgid "found an SSA_NAME that had been released into the free pool" msgstr "" -#: config/arm/arm.c:1219 +#: tree-ssa.c:129 #, gcc-internal-format -msgid "unable to use '%s' for PIC register" +msgid "found a virtual definition for a GIMPLE 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 +#: tree-ssa.c:135 #, gcc-internal-format -msgid "%qs attribute only applies to functions" +msgid "found a real definition for a non-register" msgstr "" -#: config/arm/arm.c:11595 +#: tree-ssa.c:142 #, gcc-internal-format -msgid "unable to compute real location of stacked parameter" +msgid "found real variable when subvariables should have appeared" msgstr "" -#. @@@ better error message -#: config/arm/arm.c:12225 config/arm/arm.c:12262 +#: tree-ssa.c:171 #, gcc-internal-format -msgid "selector must be an immediate" +msgid "SSA_NAME created in two different blocks %i and %i" msgstr "" -#. @@@ better error message -#: config/arm/arm.c:12305 config/i386/i386.c:14934 config/i386/i386.c:14968 +#: tree-ssa.c:180 #, gcc-internal-format -msgid "mask must be an immediate" +msgid "SSA_NAME_DEF_STMT is wrong" msgstr "" -#: config/arm/arm.c:12961 +#: tree-ssa.c:238 #, gcc-internal-format -msgid "no low registers available for popping high registers" +msgid "missing definition" msgstr "" -#: config/arm/arm.c:13179 +#: tree-ssa.c:244 #, gcc-internal-format -msgid "interrupt Service Routines cannot be coded in Thumb mode" +msgid "definition in block %i does not dominate use in block %i" msgstr "" -#: config/arm/pe.c:165 config/mcore/mcore.c:2898 +#: tree-ssa.c:252 #, gcc-internal-format -msgid "%Jinitialized variable '%D' is marked dllimport" +msgid "definition in block %i follows the use" msgstr "" -#: config/arm/pe.c:174 +#: tree-ssa.c:259 #, gcc-internal-format -msgid "%Jstatic variable '%D' is marked dllimport" +msgid "SSA_NAME_OCCURS_IN_ABNORMAL_PHI should be set" msgstr "" -#: config/avr/avr.c:525 +#: tree-ssa.c:267 #, gcc-internal-format -msgid "large frame pointer change (%d) with -mtiny-stack" +msgid "no immediate_use list" msgstr "" -#: config/avr/avr.c:4643 config/ip2k/ip2k.c:3157 +#: tree-ssa.c:279 #, gcc-internal-format -msgid "only initialized variables can be placed into program memory area" +msgid "wrong immediate use list" msgstr "" -#: config/avr/avr.c:4687 +#: tree-ssa.c:312 #, gcc-internal-format -msgid "`%s' appears to be a misspelled interrupt handler" +msgid "incoming edge count does not match number of PHI arguments" msgstr "" -#: config/avr/avr.c:4695 +#: tree-ssa.c:327 #, gcc-internal-format -msgid "`%s' appears to be a misspelled signal handler" +msgid "PHI argument is missing for edge %d->%d" msgstr "" -#: config/avr/avr.c:4764 +#: tree-ssa.c:336 #, gcc-internal-format -msgid "only uninitialized variables can be placed in the .noinit section" +msgid "PHI argument is not SSA_NAME, or invariant" msgstr "" -#: config/avr/avr.c:4778 +#: tree-ssa.c:348 #, gcc-internal-format -msgid "MCU %qs supported for assembler only" +msgid "wrong edge %d->%d for PHI argument" msgstr "" -#: config/avr/avr.h:713 +#: tree-ssa.c:397 #, gcc-internal-format -msgid "trampolines not supported" +msgid "non-addressable variable inside an alias set" msgstr "" -#: config/bfin/bfin.c:1711 config/m68k/m68k.c:294 +#: tree-ssa.c:413 #, gcc-internal-format -msgid "-mshared-library-id=%s is not between 0 and %d" +msgid "addressable variable that is an alias tag but is not in any alias set" msgstr "" -#: config/bfin/bfin.c:1731 +#: tree-ssa.c:423 #, gcc-internal-format -msgid "-mshared-library-id= specified without -mid-shared-library" +msgid "verify_flow_insensitive_alias_info failed" msgstr "" -#: config/bfin/bfin.c:2552 +#: tree-ssa.c:465 #, gcc-internal-format -msgid "multiple function type attributes specified" +msgid "dereferenced pointers should have a name or a type tag" msgstr "" -#: config/c4x/c4x-c.c:71 +#: tree-ssa.c:472 #, gcc-internal-format -msgid "missing '(' after '#pragma %s' - ignored" +msgid "pointers with a memory tag, should have points-to sets" msgstr "" -#: config/c4x/c4x-c.c:74 +#: tree-ssa.c:480 #, gcc-internal-format -msgid "missing function name in '#pragma %s' - ignored" +msgid "pointer escapes but its name tag is not call-clobbered" msgstr "" -#: config/c4x/c4x-c.c:79 +#: tree-ssa.c:489 #, gcc-internal-format -msgid "malformed '#pragma %s' - ignored" +msgid "verify_flow_sensitive_alias_info failed" msgstr "" -#: config/c4x/c4x-c.c:81 +#: tree-ssa.c:566 #, gcc-internal-format -msgid "missing section name in '#pragma %s' - ignored" +msgid "" +"alias set of a pointer's type tag should be a superset of the corresponding " +"name tag" msgstr "" -#: config/c4x/c4x-c.c:86 +#: tree-ssa.c:582 #, gcc-internal-format -msgid "missing ')' for '#pragma %s' - ignored" +msgid "" +"two different pointers with identical points-to sets but different name tags" msgstr "" -#: config/c4x/c4x-c.c:89 +#: tree-ssa.c:614 #, gcc-internal-format -msgid "junk at end of '#pragma %s'" +msgid "verify_name_tags failed" msgstr "" -#: config/c4x/c4x.c:860 +#: tree-ssa.c:685 #, gcc-internal-format -msgid "ISR %s requires %d words of local vars, max is 32767" +msgid "AUX pointer initialized for edge %d->%d" msgstr "" -#. This function is for retrieving a part of an instruction name for -#. 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 +#: tree-ssa.c:708 #, gcc-internal-format -msgid "MULT case in cris_op_str" +msgid "stmt (%p) marked modified after optimization pass : " msgstr "" -#: config/cris/cris.c:983 +#: tree-ssa.c:726 #, gcc-internal-format -msgid "internal error: bad register: %d" +msgid "statement makes a memory store, but has no V_MAY_DEFS nor V_MUST_DEFS" msgstr "" -#: config/cris/cris.c:1443 +#: tree-ssa.c:737 #, gcc-internal-format -msgid "internal error: sideeffect-insn affecting main effect" +msgid "statement makes aliased stores, but has no V_MAY_DEFS" msgstr "" -#: config/cris/cris.c:1467 +#: tree-ssa.c:776 #, gcc-internal-format -msgid "Unknown cc_attr value" +msgid "verify_ssa failed" msgstr "" -#. If we get here, the caller got its initial tests wrong. -#: config/cris/cris.c:1825 +#: tree-ssa.c:1159 #, gcc-internal-format -msgid "internal error: cris_side_effect_mode_ok with bad operands" +msgid "%H%qD is used uninitialized in this function" msgstr "" -#: config/cris/cris.c:2085 +#: tree-ssa.c:1184 #, gcc-internal-format -msgid "-max-stackframe=%d is not usable, not between 0 and %d" +msgid "%H%qD may be used uninitialized in this function" msgstr "" -#: config/cris/cris.c:2113 +#: tree-vect-transform.c:634 #, gcc-internal-format -msgid "unknown CRIS version specification in -march= or -mcpu= : %s" +msgid "no support for induction" msgstr "" -#: config/cris/cris.c:2149 +#: 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 "unknown CRIS cpu version specification in -mtune= : %s" +msgid "%qs attribute ignored" msgstr "" -#: config/cris/cris.c:2167 +#: tree.c:3551 #, gcc-internal-format -msgid "-fPIC and -fpic are not supported in this configuration" +msgid "function %q+D definition is marked dllimport" msgstr "" -#: config/cris/cris.c:2182 +#: tree.c:3559 config/sh/symbian.c:431 #, gcc-internal-format -msgid "that particular -g option is invalid with -maout and -melinux" +msgid "variable %q+D definition is marked dllimport" msgstr "" -#: config/cris/cris.c:2376 +#: tree.c:3579 config/sh/symbian.c:506 #, gcc-internal-format -msgid "Unknown src" +msgid "external linkage required for symbol %q+D because of %qs attribute" msgstr "" -#: config/cris/cris.c:2418 +#: tree.c:4928 #, gcc-internal-format -msgid "Unknown dest" +msgid "arrays of functions are not meaningful" msgstr "" -#: config/cris/cris.c:2692 +#: tree.c:4980 #, gcc-internal-format -msgid "stackframe too big: %d bytes" +msgid "function return type cannot be function" msgstr "" -#: config/cris/cris.c:3126 +#: tree.c:5876 #, gcc-internal-format -msgid "emitting PIC operand, but PIC register isn't set up" +msgid "tree check: %s, have %s in %s, at %s:%d" msgstr "" -#. Definitions for GCC. Part of the machine description for CRIS. -#. Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 -#. Free Software Foundation, Inc. -#. Contributed by Axis Communications. Written by Hans-Peter Nilsson. -#. -#. This file is part of GCC. -#. -#. GCC is free software; you can redistribute it and/or modify -#. it under the terms of the GNU General Public License as published by -#. the Free Software Foundation; either version 2, or (at your option) -#. any later version. -#. -#. GCC is distributed in the hope that it will be useful, -#. but WITHOUT ANY WARRANTY; without even the implied warranty of -#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -#. GNU General Public License for more details. -#. -#. You should have received a copy of the GNU General Public License -#. along with GCC; see the file COPYING. If not, write to -#. the Free Software Foundation, 51 Franklin Street, Fifth Floor, -#. Boston, MA 02110-1301, USA. -#. After the first "Node:" comment comes all preprocessor directives and -#. attached declarations described in the info files, the "Using and -#. Porting GCC" manual (uapgcc), in the same order as found in the "Target -#. macros" section in the gcc-2.9x CVS edition of 2000-03-17. FIXME: Not -#. really, but needs an update anyway. -#. -#. There is no generic copy-of-uapgcc comment, you'll have to see uapgcc -#. for that. If applicable, there is a CRIS-specific comment. The order -#. of macro definitions follow the order in the manual. Every section in -#. the manual (node in the info pages) has an introductory `Node: -#. ' comment. If no macros are defined for a section, only -#. the section-comment is present. -#. Note that other header files (e.g. config/elfos.h, config/linux.h, -#. config/cris/linux.h and config/cris/aout.h) are responsible for lots of -#. settings not repeated below. This file contains general CRIS -#. definitions and definitions for the cris-*-elf subtarget. -#. We don't want to use gcc_assert for everything, as that can be -#. compiled out. -#: config/cris/cris.h:44 +#: tree.c:5913 #, gcc-internal-format -msgid "CRIS-port assertion failed: " +msgid "tree check: expected none of %s, have %s in %s, at %s:%d" msgstr "" -#. Node: Caller Saves -#. (no definitions) -#. Node: Function entry -#. See cris.c for TARGET_ASM_FUNCTION_PROLOGUE and -#. TARGET_ASM_FUNCTION_EPILOGUE. -#. Node: Profiling -#: config/cris/cris.h:857 +#: tree.c:5926 #, gcc-internal-format -msgid "no FUNCTION_PROFILER for CRIS" +msgid "tree check: expected class %qs, have %qs (%s) in %s, at %s:%d" msgstr "" -#: config/frv/frv.c:8218 +#: tree.c:5951 #, gcc-internal-format -msgid "accumulator is not a constant integer" +msgid "" +"tree check: expected tree that contains %qs structure, have %qs in %s, at %" +"s:%d" msgstr "" -#: config/frv/frv.c:8223 +#: tree.c:5965 #, gcc-internal-format -msgid "accumulator number is out of bounds" +msgid "tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d" msgstr "" -#: config/frv/frv.c:8234 +#: tree.c:5977 #, gcc-internal-format -msgid "inappropriate accumulator for %qs" +msgid "tree check: accessed elt %d of phi_node with %d elts in %s, at %s:%d" msgstr "" -#: config/frv/frv.c:8300 +#: tree.c:5989 #, gcc-internal-format -msgid "invalid IACC argument" +msgid "tree check: accessed operand %d of %s with %d operands in %s, at %s:%d" msgstr "" -#: config/frv/frv.c:8323 +#: value-prof.c:101 #, gcc-internal-format -msgid "%qs expects a constant argument" +msgid "" +"%HCorrupted value profile: %s profiler overall count (%d) does not match BB " +"count (%d)" msgstr "" -#: config/frv/frv.c:8328 +#: varasm.c:470 #, gcc-internal-format -msgid "constant argument out of range for %qs" +msgid "%+D causes a section type conflict" msgstr "" -#: config/frv/frv.c:8763 +#: varasm.c:932 #, gcc-internal-format -msgid "media functions are not available unless -mmedia is used" +msgid "register name not specified for %q+D" msgstr "" -#: config/frv/frv.c:8775 +#: varasm.c:934 #, gcc-internal-format -msgid "this media function is only available on the fr500" +msgid "invalid register name for %q+D" msgstr "" -#: config/frv/frv.c:8803 +#: varasm.c:936 #, gcc-internal-format -msgid "this media function is only available on the fr400 and fr550" +msgid "data type of %q+D isn%'t suitable for a register" msgstr "" -#: config/frv/frv.c:8822 +#: varasm.c:939 #, gcc-internal-format -msgid "this builtin function is only available on the fr405 and fr450" +msgid "register specified for %q+D isn%'t suitable for data type" msgstr "" -#: config/frv/frv.c:8831 +#: varasm.c:949 #, gcc-internal-format -msgid "this builtin function is only available on the fr500 and fr550" +msgid "global register variable has initial value" msgstr "" -#: config/frv/frv.c:8843 +#: varasm.c:952 #, gcc-internal-format -msgid "this builtin function is only available on the fr450" +msgid "volatile register variables don%'t work as you might wish" msgstr "" -#: config/h8300/h8300.c:331 +#: varasm.c:990 #, gcc-internal-format -msgid "-ms2600 is used without -ms" +msgid "register name given for non-register variable %q+D" msgstr "" -#: config/h8300/h8300.c:337 +#: varasm.c:1067 #, gcc-internal-format -msgid "-mn is used without -mh or -ms" +msgid "global destructors not supported on this target" msgstr "" -#: config/i386/host-cygwin.c:65 +#: varasm.c:1128 #, gcc-internal-format -msgid "can't extend PCH file: %m" +msgid "global constructors not supported on this target" msgstr "" -#: config/i386/host-cygwin.c:76 +#: varasm.c:1692 #, gcc-internal-format -msgid "can't set position in PCH file: %m" +msgid "" +"alignment of %q+D is greater than maximum object file alignment. Using %d" msgstr "" -#: config/i386/i386.c:1292 +#: varasm.c:1731 #, gcc-internal-format -msgid "code model %s not supported in PIC mode" +msgid "thread-local COMMON data not implemented" msgstr "" -#: config/i386/i386.c:1302 config/sparc/sparc.c:662 +#: varasm.c:1756 #, gcc-internal-format -msgid "bad value (%s) for -mcmodel= switch" +msgid "" +"requested alignment for %q+D is greater than implemented alignment of %wu" msgstr "" -#: config/i386/i386.c:1317 +#: varasm.c:3886 #, gcc-internal-format -msgid "bad value (%s) for -masm= switch" +msgid "no-op convert from %wd to %wd bytes in initializer" msgstr "" -#: config/i386/i386.c:1320 +#: varasm.c:3930 #, gcc-internal-format -msgid "code model %qs not supported in the %s bit mode" +msgid "initializer for integer value is too complicated" msgstr "" -#: config/i386/i386.c:1323 +#: varasm.c:3935 #, gcc-internal-format -msgid "code model % not supported yet" +msgid "initializer for floating value is not a floating constant" msgstr "" -#: config/i386/i386.c:1325 +#: varasm.c:4204 #, gcc-internal-format -msgid "%i-bit mode not compiled in" +msgid "invalid initial value for member %qs" msgstr "" -#: config/i386/i386.c:1355 config/i386/i386.c:1379 +#: varasm.c:4404 varasm.c:4448 #, gcc-internal-format -msgid "CPU you selected does not support x86-64 instruction set" +msgid "weak declaration of %q+D must precede definition" msgstr "" -#: config/i386/i386.c:1361 +#: varasm.c:4412 #, gcc-internal-format -msgid "bad value (%s) for -march= switch" +msgid "" +"weak declaration of %q+D after first use results in unspecified behavior" msgstr "" -#: config/i386/i386.c:1392 +#: varasm.c:4446 #, gcc-internal-format -msgid "bad value (%s) for -mtune= switch" +msgid "weak declaration of %q+D must be public" msgstr "" -#: config/i386/i386.c:1409 +#: varasm.c:4455 #, gcc-internal-format -msgid "-mregparm=%d is not between 0 and %d" +msgid "weak declaration of %q+D not supported" msgstr "" -#: config/i386/i386.c:1422 +#: varasm.c:4484 #, gcc-internal-format -msgid "-malign-loops is obsolete, use -falign-loops" +msgid "only weak aliases are supported in this configuration" msgstr "" -#: config/i386/i386.c:1427 config/i386/i386.c:1440 config/i386/i386.c:1453 +#: varasm.c:4652 #, gcc-internal-format -msgid "-malign-loops=%d is not between 0 and %d" +msgid "%q+D aliased to undefined symbol %qs" msgstr "" -#: config/i386/i386.c:1435 +#: varasm.c:4655 #, gcc-internal-format -msgid "-malign-jumps is obsolete, use -falign-jumps" +msgid "%q+D aliased to external symbol %qs" msgstr "" -#: config/i386/i386.c:1448 +#: varasm.c:4686 #, gcc-internal-format -msgid "-malign-functions is obsolete, use -falign-functions" +msgid "%Jalias definitions not supported in this configuration" msgstr "" -#: config/i386/i386.c:1486 +#: varasm.c:4691 #, gcc-internal-format -msgid "-mpreferred-stack-boundary=%d is not between %d and 12" +msgid "%Jonly weak aliases are supported in this configuration" msgstr "" -#: config/i386/i386.c:1498 +#: varasm.c:4746 #, gcc-internal-format -msgid "-mbranch-cost=%d is not between 0 and 5" +msgid "visibility attribute not supported in this configuration; ignored" msgstr "" -#: config/i386/i386.c:1510 +#: varray.c:207 #, gcc-internal-format -msgid "bad value (%s) for -mtls-dialect= switch" +msgid "virtual array %s[%lu]: element %lu out of bounds in %s, at %s:%d" msgstr "" -#: config/i386/i386.c:1557 +#: varray.c:217 #, gcc-internal-format -msgid "-malign-double makes no sense in the 64bit mode" +msgid "underflowed virtual array %s in %s, at %s:%d" msgstr "" -#: config/i386/i386.c:1559 +#: vec.c:153 #, gcc-internal-format -msgid "-mrtd calling convention not supported in the 64bit mode" +msgid "vector %s %s domain error, in %s at %s:%u" msgstr "" -#: config/i386/i386.c:1586 config/i386/i386.c:1597 +#. Print an error message for unrecognized stab codes. +#: xcoffout.c:187 #, gcc-internal-format -msgid "SSE instruction set disabled, using 387 arithmetics" +msgid "no sclass for %s stab (0x%x)" msgstr "" -#: config/i386/i386.c:1602 +#: config/darwin-c.c:85 #, gcc-internal-format -msgid "387 instruction set disabled, using SSE arithmetics" +msgid "too many #pragma options align=reset" msgstr "" -#: config/i386/i386.c:1609 +#: config/darwin-c.c:105 config/darwin-c.c:108 config/darwin-c.c:110 +#: config/darwin-c.c:112 #, gcc-internal-format -msgid "bad value (%s) for -mfpmath= switch" +msgid "malformed '#pragma options', ignoring" msgstr "" -#: config/i386/i386.c:1784 config/i386/i386.c:1826 +#: config/darwin-c.c:115 #, gcc-internal-format -msgid "fastcall and regparm attributes are not compatible" +msgid "junk at end of '#pragma options'" msgstr "" -#: config/i386/i386.c:1791 +#: config/darwin-c.c:125 #, gcc-internal-format -msgid "%qs attribute requires an integer constant argument" +msgid "malformed '#pragma options align={mac68k|power|reset}', ignoring" msgstr "" -#: config/i386/i386.c:1797 +#: config/darwin-c.c:137 #, gcc-internal-format -msgid "argument to %qs attribute larger than %d" +msgid "missing '(' after '#pragma unused', ignoring" msgstr "" -#: config/i386/i386.c:1818 config/i386/i386.c:1853 +#: config/darwin-c.c:155 #, gcc-internal-format -msgid "fastcall and cdecl attributes are not compatible" +msgid "missing ')' after '#pragma unused', ignoring" msgstr "" -#: config/i386/i386.c:1822 +#: config/darwin-c.c:158 #, gcc-internal-format -msgid "fastcall and stdcall attributes are not compatible" +msgid "junk at end of '#pragma unused'" msgstr "" -#: config/i386/i386.c:1836 config/i386/i386.c:1849 +#: config/darwin-c.c:384 #, gcc-internal-format -msgid "stdcall and cdecl attributes are not compatible" +msgid "subframework include %s conflicts with framework include" msgstr "" -#: config/i386/i386.c:1840 +#: config/darwin-c.c:576 #, gcc-internal-format -msgid "stdcall and fastcall attributes are not compatible" +msgid "Unknown value %qs of -mmacosx-version-min" msgstr "" -#: config/i386/i386.c:1956 +#: config/darwin.c:1323 #, gcc-internal-format -msgid "Calling %qD with attribute sseregparm without SSE/SSE2 enabled" +msgid "" +"internal and protected visibility attributes not supported in this " +"configuration; ignored" msgstr "" -#: config/i386/i386.c:1959 +#: config/host-darwin.c:63 #, gcc-internal-format -msgid "Calling %qT with attribute sseregparm without SSE/SSE2 enabled" +msgid "couldn't unmap pch_address_space: %m" msgstr "" -#: config/i386/i386.c:2684 +#: config/sol2-c.c:94 config/sol2-c.c:110 #, gcc-internal-format -msgid "SSE register return with SSE disabled" +msgid "malformed %<#pragma align%>, ignoring" msgstr "" -#: config/i386/i386.c:2686 +#: config/sol2-c.c:103 #, gcc-internal-format -msgid "SSE register argument with SSE disabled" +msgid "invalid alignment for %<#pragma align%>, ignoring" msgstr "" -#: config/i386/i386.c:3001 +#: config/sol2-c.c:118 #, gcc-internal-format -msgid "SSE vector argument without SSE enabled changes the ABI" +msgid "%<#pragma align%> must appear before the declaration of %D, ignoring" msgstr "" -#: config/i386/i386.c:3018 +#: config/sol2-c.c:130 config/sol2-c.c:142 #, gcc-internal-format -msgid "MMX vector argument without MMX enabled changes the ABI" +msgid "malformed %<#pragma align%>" msgstr "" -#: config/i386/i386.c:3274 +#: config/sol2-c.c:137 #, gcc-internal-format -msgid "SSE vector return without SSE enabled changes the ABI" +msgid "junk at end of %<#pragma align%>" msgstr "" -#: config/i386/i386.c:3284 +#: config/sol2-c.c:158 config/sol2-c.c:165 #, gcc-internal-format -msgid "MMX vector return without MMX enabled changes the ABI" +msgid "malformed %<#pragma init%>, ignoring" msgstr "" -#: config/i386/i386.c:6450 +#: config/sol2-c.c:188 config/sol2-c.c:200 #, gcc-internal-format -msgid "extended registers have no high halves" +msgid "malformed %<#pragma init%>" msgstr "" -#: config/i386/i386.c:6465 +#: config/sol2-c.c:195 #, gcc-internal-format -msgid "unsupported operand size for extended register" +msgid "junk at end of %<#pragma init%>" msgstr "" -#: config/i386/i386.c:14662 +#: config/sol2-c.c:216 config/sol2-c.c:223 #, gcc-internal-format -msgid "selector must be an integer constant in the range 0..%i" +msgid "malformed %<#pragma fini%>, ignoring" msgstr "" -#: config/i386/i386.c:15000 +#: config/sol2-c.c:246 config/sol2-c.c:258 #, gcc-internal-format -msgid "shift must be an immediate" +msgid "malformed %<#pragma fini%>" msgstr "" -#: config/i386/i386.c:16170 +#: config/sol2-c.c:253 #, gcc-internal-format -msgid "%qs incompatible attribute ignored" +msgid "junk at end of %<#pragma fini%>" msgstr "" -#: config/i386/winnt.c:74 +#: config/sol2.c:54 #, gcc-internal-format -msgid "%qs attribute only applies to variables" +msgid "ignoring %<#pragma align%> for explicitly aligned %q+D" msgstr "" -#: config/i386/winnt.c:103 +#. Mach-O supports 'weak imports', and 'weak definitions' in coalesced +#. sections. machopic_select_section ensures that weak variables go in +#. 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:382 #, gcc-internal-format -msgid "" -"%qs attribute applies only to initialized variables with external linkage" +msgid "alias definitions not supported in Mach-O; ignored" msgstr "" -#: config/i386/winnt.c:202 +#. No profiling. +#: config/vx-common.h:83 #, gcc-internal-format -msgid "" -"%Jfunction '%D' is defined after prior declaration as dllimport: attribute " -"ignored" +msgid "profiler support for VxWorks" msgstr "" -#: config/i386/winnt.c:213 +#: config/windiss.h:37 #, gcc-internal-format -msgid "%Jinline function '%D' is declared as dllimport: attribute ignored." +msgid "profiler support for WindISS" msgstr "" -#: config/i386/winnt.c:225 +#: config/alpha/alpha.c:231 config/rs6000/rs6000.c:1566 #, gcc-internal-format -msgid "%Jdefinition of static data member '%D' of dllimport'd class." +msgid "bad value %qs for -mtls-size switch" msgstr "" -#: config/i386/winnt.c:282 +#: config/alpha/alpha.c:270 #, gcc-internal-format -msgid "%Jinconsistent dll linkage for '%D', dllexport assumed." +msgid "-f%s ignored for Unicos/Mk (not supported)" msgstr "" -#: config/i386/winnt.c:323 config/sh/symbian.c:273 +#: config/alpha/alpha.c:294 #, gcc-internal-format -msgid "%qs declared as both exported to and imported from a DLL" +msgid "-mieee not supported on Unicos/Mk" msgstr "" -#: config/i386/winnt.c:466 +#: config/alpha/alpha.c:305 #, gcc-internal-format -msgid "%J'%D' defined locally after being referenced with dllimport linkage" +msgid "-mieee-with-inexact not supported on Unicos/Mk" msgstr "" -#: config/i386/winnt.c:469 +#: config/alpha/alpha.c:322 #, gcc-internal-format -msgid "" -"%J'%D' redeclared without dllimport attribute after being referenced with " -"dllimport linkage" +msgid "bad value %qs for -mtrap-precision switch" msgstr "" -#: config/i386/winnt.c:637 +#: config/alpha/alpha.c:336 #, gcc-internal-format -msgid "%J'%D' causes a section type conflict" +msgid "bad value %qs for -mfp-rounding-mode switch" msgstr "" -#: config/i386/cygming.h:166 +#: config/alpha/alpha.c:351 #, gcc-internal-format -msgid "-f%s ignored for target (all code is position independent)" +msgid "bad value %qs for -mfp-trap-mode switch" msgstr "" -#: config/i386/djgpp.h:181 +#: config/alpha/alpha.c:365 config/alpha/alpha.c:377 #, gcc-internal-format -msgid "-mbnu210 is ignored (option is obsolete)" +msgid "bad value %qs for -mcpu switch" msgstr "" -#: config/i386/i386-interix.h:257 +#: config/alpha/alpha.c:384 #, gcc-internal-format -msgid "ms-bitfields not supported for objc" +msgid "trap mode not supported on Unicos/Mk" msgstr "" -#: config/ia64/ia64-c.c:52 +#: config/alpha/alpha.c:391 #, gcc-internal-format -msgid "malformed #pragma builtin" +msgid "fp software completion requires -mtrap-precision=i" msgstr "" -#: config/ia64/ia64.c:505 config/m32r/m32r.c:373 +#: config/alpha/alpha.c:407 #, gcc-internal-format -msgid "invalid argument of %qs attribute" +msgid "rounding mode not supported for VAX floats" msgstr "" -#: config/ia64/ia64.c:517 +#: config/alpha/alpha.c:412 #, gcc-internal-format -msgid "%Jan address area attribute cannot be specified for local variables" +msgid "trap mode not supported for VAX floats" msgstr "" -#: config/ia64/ia64.c:524 +#: config/alpha/alpha.c:416 #, gcc-internal-format -msgid "%Jaddress area of '%s' conflicts with previous declaration" +msgid "128-bit long double not supported for VAX floats" msgstr "" -#: config/ia64/ia64.c:531 +#: config/alpha/alpha.c:444 #, gcc-internal-format -msgid "%Jaddress area attribute cannot be specified for functions" +msgid "L%d cache latency unknown for %s" msgstr "" -#: config/ia64/ia64.c:4893 config/pa/pa.c:320 +#: config/alpha/alpha.c:459 #, gcc-internal-format -msgid "value of -mfixed-range must have form REG1-REG2" +msgid "bad value %qs for -mmemory-latency" msgstr "" -#: config/ia64/ia64.c:4920 config/pa/pa.c:347 +#: config/alpha/alpha.c:6542 config/alpha/alpha.c:6545 config/s390/s390.c:7579 +#: config/s390/s390.c:7582 #, gcc-internal-format -msgid "%s-%s is an empty range" +msgid "bad builtin fcode" msgstr "" -#: config/ia64/ia64.c:4948 +#: config/arc/arc.c:390 #, gcc-internal-format -msgid "bad value %<%s%> for -mtls-size= switch" +msgid "argument of %qs attribute is not a string constant" msgstr "" -#: config/ia64/ia64.c:4976 +#: config/arc/arc.c:398 #, gcc-internal-format -msgid "bad value %<%s%> for -mtune= switch" +msgid "argument of %qs attribute is not \"ilink1\" or \"ilink2\"" msgstr "" -#: config/ia64/ia64.c:4995 +#: config/arm/arm.c:877 #, gcc-internal-format -msgid "not yet implemented: latency-optimized inline square root" +msgid "switch -mcpu=%s conflicts with -march= switch" msgstr "" -#: config/iq2000/iq2000.c:1808 +#: config/arm/arm.c:887 config/rs6000/rs6000.c:1222 config/sparc/sparc.c:698 #, gcc-internal-format -msgid "gp_offset (%ld) or end_offset (%ld) is less than zero." +msgid "bad value (%s) for %s switch" msgstr "" -#: config/iq2000/iq2000.c:2589 +#: config/arm/arm.c:997 #, gcc-internal-format -msgid "argument %qd is not a constant" +msgid "target CPU does not support interworking" msgstr "" -#: config/iq2000/iq2000.c:2892 config/xtensa/xtensa.c:1773 +#: config/arm/arm.c:1003 #, gcc-internal-format -msgid "PRINT_OPERAND_ADDRESS, null pointer" +msgid "target CPU does not support THUMB instructions" msgstr "" -#: config/iq2000/iq2000.c:3047 +#: config/arm/arm.c:1021 #, gcc-internal-format -msgid "PRINT_OPERAND: Unknown punctuation '%c'" +msgid "" +"enabling backtrace support is only meaningful when compiling for the Thumb" msgstr "" -#: config/iq2000/iq2000.c:3056 config/mips/mips.c:5240 -#: config/xtensa/xtensa.c:1627 +#: config/arm/arm.c:1024 #, gcc-internal-format -msgid "PRINT_OPERAND null pointer" +msgid "" +"enabling callee interworking support is only meaningful when compiling for " +"the Thumb" msgstr "" -#: config/m68hc11/m68hc11.c:279 +#: config/arm/arm.c:1027 #, gcc-internal-format -msgid "-f%s ignored for 68HC11/68HC12 (not supported)" +msgid "" +"enabling caller interworking support is only meaningful when compiling for " +"the Thumb" msgstr "" -#: config/m68hc11/m68hc11.c:1240 +#: config/arm/arm.c:1031 #, gcc-internal-format -msgid "% and % attributes are not compatible, ignoring %" +msgid "-mapcs-stack-check incompatible with -mno-apcs-frame" msgstr "" -#: config/m68hc11/m68hc11.c:1247 +#: config/arm/arm.c:1039 #, gcc-internal-format -msgid "% attribute is already used" +msgid "-fpic and -mapcs-reent are incompatible" msgstr "" -#: config/m68k/m68k.c:321 +#: config/arm/arm.c:1042 #, gcc-internal-format -msgid "cannot specify both -msep-data and -mid-shared-library" +msgid "APCS reentrant code not supported. Ignored" msgstr "" -#: config/m68k/m68k.c:333 +#: config/arm/arm.c:1050 #, gcc-internal-format -msgid "-fPIC is not currently supported on the 68000 or 68010\n" +msgid "-g with -mno-apcs-frame may not give sensible debugging" msgstr "" -#: config/m68k/m68k.c:640 config/rs6000/rs6000.c:12955 +#: config/arm/arm.c:1058 #, gcc-internal-format -msgid "stack limit expression is not supported" +msgid "passing floating point arguments in fp regs not yet supported" msgstr "" -#: config/mips/mips.c:4447 +#: config/arm/arm.c:1099 #, gcc-internal-format -msgid "" -"-%s conflicts with the other architecture options, which specify a %s " -"processor" +msgid "invalid ABI option: -mabi=%s" msgstr "" -#: config/mips/mips.c:4463 +#: config/arm/arm.c:1105 #, gcc-internal-format -msgid "-march=%s is not compatible with the selected ABI" +msgid "iwmmxt requires an AAPCS compatible ABI for proper operation" msgstr "" -#: config/mips/mips.c:4481 +#: config/arm/arm.c:1108 #, gcc-internal-format -msgid "-mgp64 used with a 32-bit processor" +msgid "iwmmxt abi requires an iwmmxt capable cpu" msgstr "" -#: config/mips/mips.c:4483 +#: config/arm/arm.c:1118 #, gcc-internal-format -msgid "-mgp32 used with a 64-bit ABI" +msgid "invalid floating point emulation option: -mfpe=%s" msgstr "" -#: config/mips/mips.c:4485 +#: config/arm/arm.c:1135 #, gcc-internal-format -msgid "-mgp64 used with a 32-bit ABI" +msgid "invalid floating point option: -mfpu=%s" msgstr "" -#: config/mips/mips.c:4503 config/mips/mips.c:4505 config/mips/mips.c:4507 -#: config/mips/mips.c:4583 +#: config/arm/arm.c:1175 #, gcc-internal-format -msgid "unsupported combination: %s" +msgid "invalid floating point abi: -mfloat-abi=%s" msgstr "" -#: config/mips/mips.c:4578 +#: config/arm/arm.c:1182 #, gcc-internal-format -msgid "" -"generation of Branch Likely instructions enabled, but not supported by " -"architecture" +msgid "-mfloat-abi=hard and VFP" msgstr "" -#: config/mips/mips.c:4595 +#: config/arm/arm.c:1208 #, gcc-internal-format -msgid "-G is incompatible with PIC code which is the default" +msgid "structure size boundary can only be set to %s" msgstr "" -#: config/mips/mips.c:4662 +#: config/arm/arm.c:1217 #, gcc-internal-format -msgid "-mips3d requires -mpaired-single" +msgid "-mpic-register= is useless without -fpic" msgstr "" -#: config/mips/mips.c:4671 +#: config/arm/arm.c:1224 #, gcc-internal-format -msgid "-mips3d/-mpaired-single must be used with -mfp64 -mhard-float" +msgid "unable to use '%s' for PIC register" msgstr "" -#: config/mips/mips.c:4676 +#: 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 "-mips3d/-mpaired-single must be used with -mips64" +msgid "%qs attribute only applies to functions" msgstr "" -#: config/mips/mips.c:5177 +#: config/arm/arm.c:11652 #, gcc-internal-format -msgid "internal error: %%) found without a %%( in assembler pattern" +msgid "unable to compute real location of stacked parameter" msgstr "" -#: config/mips/mips.c:5191 +#. @@@ better error message +#: config/arm/arm.c:12282 config/arm/arm.c:12319 #, gcc-internal-format -msgid "internal error: %%] found without a %%[ in assembler pattern" +msgid "selector must be an immediate" msgstr "" -#: config/mips/mips.c:5204 +#. @@@ better error message +#: config/arm/arm.c:12362 config/i386/i386.c:15301 config/i386/i386.c:15335 #, gcc-internal-format -msgid "internal error: %%> found without a %%< in assembler pattern" +msgid "mask must be an immediate" msgstr "" -#: config/mips/mips.c:5217 +#: config/arm/arm.c:13018 #, gcc-internal-format -msgid "internal error: %%} found without a %%{ in assembler pattern" +msgid "no low registers available for popping high registers" msgstr "" -#: config/mips/mips.c:5231 +#: config/arm/arm.c:13242 #, gcc-internal-format -msgid "PRINT_OPERAND: unknown punctuation '%c'" +msgid "interrupt Service Routines cannot be coded in Thumb mode" msgstr "" -#: config/mips/mips.c:7953 +#: config/arm/pe.c:165 config/mcore/mcore.c:2898 #, gcc-internal-format -msgid "cannot handle inconsistent calls to %qs" +msgid "initialized variable %q+D is marked dllimport" msgstr "" -#: config/mips/mips.c:9352 +#: config/arm/pe.c:174 #, gcc-internal-format -msgid "the cpu name must be lower case" +msgid "static variable %q+D is marked dllimport" msgstr "" -#. Output assembler code to FILE to increment profiler label # LABELNO -#. for profiling a function entry. -#: config/mips/mips.h:2043 +#: config/avr/avr.c:531 #, gcc-internal-format -msgid "mips16 function profiling" +msgid "large frame pointer change (%d) with -mtiny-stack" msgstr "" -#: config/mmix/mmix.c:227 +#: config/avr/avr.c:4649 #, gcc-internal-format -msgid "-f%s not supported: ignored" +msgid "only initialized variables can be placed into program memory area" msgstr "" -#: config/mmix/mmix.c:655 +#: config/avr/avr.c:4693 #, gcc-internal-format -msgid "support for mode %qs" +msgid "%qs appears to be a misspelled interrupt handler" msgstr "" -#: config/mmix/mmix.c:669 +#: config/avr/avr.c:4701 #, gcc-internal-format -msgid "" -"too large function value type, needs %d registers, have only %d registers " -"for this" +msgid "%qs appears to be a misspelled signal handler" msgstr "" -#: config/mmix/mmix.c:839 +#: config/avr/avr.c:4770 #, gcc-internal-format -msgid "function_profiler support for MMIX" +msgid "only uninitialized variables can be placed in the .noinit section" msgstr "" -#: config/mmix/mmix.c:861 +#: config/avr/avr.c:4784 #, gcc-internal-format -msgid "MMIX Internal: Last named vararg would not fit in a register" +msgid "MCU %qs supported for assembler only" msgstr "" -#: config/mmix/mmix.c:1476 config/mmix/mmix.c:1500 config/mmix/mmix.c:1616 +#: config/avr/avr.h:713 #, gcc-internal-format -msgid "MMIX Internal: Bad register: %d" +msgid "trampolines not supported" msgstr "" -#. Presumably there's a missing case above if we get here. -#: config/mmix/mmix.c:1608 +#: config/bfin/bfin.c:1785 config/m68k/m68k.c:294 #, gcc-internal-format -msgid "MMIX Internal: Missing %qc case in mmix_print_operand" +msgid "-mshared-library-id=%s is not between 0 and %d" msgstr "" -#: config/mmix/mmix.c:1894 +#: config/bfin/bfin.c:1805 #, gcc-internal-format -msgid "stack frame not a multiple of 8 bytes: %d" +msgid "-mshared-library-id= specified without -mid-shared-library" msgstr "" -#: config/mmix/mmix.c:2130 +#: config/bfin/bfin.c:2708 #, gcc-internal-format -msgid "stack frame not a multiple of octabyte: %d" +msgid "multiple function type attributes specified" msgstr "" -#: config/mmix/mmix.c:2470 config/mmix/mmix.c:2534 +#: config/bfin/bfin.c:2764 #, gcc-internal-format -msgid "MMIX Internal: %s is not a shiftable int" +msgid "`%s' attribute only applies to functions" msgstr "" -#: config/pa/pa.c:452 +#: config/bfin/bfin.c:2775 #, gcc-internal-format -msgid "PIC code generation is not supported in the portable runtime model\n" +msgid "can't apply both longcall and shortcall attributes to the same function" msgstr "" -#: config/pa/pa.c:457 +#: config/c4x/c4x-c.c:72 #, gcc-internal-format -msgid "PIC code generation is not compatible with fast indirect calls\n" +msgid "missing '(' after '#pragma %s' - ignored" msgstr "" -#: config/pa/pa.c:462 +#: config/c4x/c4x-c.c:75 #, gcc-internal-format -msgid "-g is only supported when using GAS on this processor," +msgid "missing function name in '#pragma %s' - ignored" msgstr "" -#: config/pa/pa.c:463 +#: config/c4x/c4x-c.c:80 #, gcc-internal-format -msgid "-g option disabled" +msgid "malformed '#pragma %s' - ignored" msgstr "" -#: config/pa/pa.c:7840 +#: config/c4x/c4x-c.c:82 #, gcc-internal-format -msgid "" -"alignment (%u) for %s exceeds maximum alignment for global common data. " -"Using %u" +msgid "missing section name in '#pragma %s' - ignored" msgstr "" -#: config/pa/pa-hpux11.h:85 +#: config/c4x/c4x-c.c:87 #, gcc-internal-format -msgid "-munix=98 option required for C89 Amendment 1 features.\n" +msgid "missing ')' for '#pragma %s' - ignored" msgstr "" -#: config/rs6000/host-darwin.c:52 +#: config/c4x/c4x-c.c:90 #, gcc-internal-format -msgid "Segmentation Fault (code)" +msgid "junk at end of '#pragma %s'" msgstr "" -#: config/rs6000/host-darwin.c:117 +#: config/c4x/c4x.c:860 #, gcc-internal-format -msgid "Segmentation Fault" +msgid "ISR %s requires %d words of local vars, max is 32767" msgstr "" -#: config/rs6000/host-darwin.c:131 +#. This function is for retrieving a part of an instruction name for +#. 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:434 #, gcc-internal-format -msgid "While setting up signal stack: %m" +msgid "MULT case in cris_op_str" msgstr "" -#: config/rs6000/host-darwin.c:137 +#: config/cris/cris.c:812 #, gcc-internal-format -msgid "While setting up signal handler: %m" +msgid "invalid use of ':' modifier" msgstr "" -#. Handle the machine specific pragma longcall. Its syntax is -#. -#. # pragma longcall ( TOGGLE ) -#. -#. where TOGGLE is either 0 or 1. -#. -#. 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/cris/cris.c:978 #, gcc-internal-format -msgid "ignoring malformed #pragma longcall" +msgid "internal error: bad register: %d" msgstr "" -#: config/rs6000/rs6000-c.c:68 +#: config/cris/cris.c:1445 #, gcc-internal-format -msgid "missing open paren" +msgid "internal error: sideeffect-insn affecting main effect" msgstr "" -#: config/rs6000/rs6000-c.c:70 +#: config/cris/cris.c:1469 #, gcc-internal-format -msgid "missing number" +msgid "unknown cc_attr value" msgstr "" -#: config/rs6000/rs6000-c.c:72 +#. If we get here, the caller got its initial tests wrong. +#: config/cris/cris.c:1820 #, gcc-internal-format -msgid "missing close paren" +msgid "internal error: cris_side_effect_mode_ok with bad operands" msgstr "" -#: config/rs6000/rs6000-c.c:75 +#: config/cris/cris.c:2023 #, gcc-internal-format -msgid "number must be 0 or 1" +msgid "-max-stackframe=%d is not usable, not between 0 and %d" msgstr "" -#: config/rs6000/rs6000-c.c:78 +#: config/cris/cris.c:2051 #, gcc-internal-format -msgid "junk at end of #pragma longcall" +msgid "unknown CRIS version specification in -march= or -mcpu= : %s" msgstr "" -#: config/rs6000/rs6000-c.c:2524 +#: config/cris/cris.c:2087 #, gcc-internal-format -msgid "passing arg %d of %qE discards qualifiers frompointer target type" +msgid "unknown CRIS cpu version specification in -mtune= : %s" msgstr "" -#: config/rs6000/rs6000-c.c:2567 +#: config/cris/cris.c:2105 #, gcc-internal-format -msgid "invalid parameter combination for AltiVec intrinsic" +msgid "-fPIC and -fpic are not supported in this configuration" msgstr "" -#: config/rs6000/rs6000.c:1227 +#: config/cris/cris.c:2120 #, gcc-internal-format -msgid "-mmultiple is not supported on little endian systems" +msgid "that particular -g option is invalid with -maout and -melinux" msgstr "" -#: config/rs6000/rs6000.c:1234 +#: config/cris/cris.c:2314 #, gcc-internal-format -msgid "-mstring is not supported on little endian systems" +msgid "Unknown src" msgstr "" -#: config/rs6000/rs6000.c:1248 +#: config/cris/cris.c:2356 #, gcc-internal-format -msgid "unknown -mdebug-%s switch" +msgid "Unknown dest" msgstr "" -#: config/rs6000/rs6000.c:1260 +#: config/cris/cris.c:2641 #, gcc-internal-format -msgid "" -"unknown -mtraceback arg %qs; expecting %, % or %" +msgid "stackframe too big: %d bytes" msgstr "" -#: config/rs6000/rs6000.c:1301 +#: config/cris/cris.c:3057 config/cris/cris.c:3084 #, gcc-internal-format -msgid "AltiVec and E500 instructions cannot coexist" +msgid "expand_binop failed in movsi got" msgstr "" -#: config/rs6000/rs6000.c:1530 +#: config/cris/cris.c:3149 #, gcc-internal-format -msgid "unknown -m%s= option specified: '%s'" +msgid "emitting PIC operand, but PIC register isn't set up" msgstr "" -#: config/rs6000/rs6000.c:1732 +#. Definitions for GCC. Part of the machine description for CRIS. +#. Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 +#. Free Software Foundation, Inc. +#. Contributed by Axis Communications. Written by Hans-Peter Nilsson. +#. +#. This file is part of GCC. +#. +#. GCC is free software; you can redistribute it and/or modify +#. it under the terms of the GNU General Public License as published by +#. the Free Software Foundation; either version 2, or (at your option) +#. any later version. +#. +#. GCC is distributed in the hope that it will be useful, +#. but WITHOUT ANY WARRANTY; without even the implied warranty of +#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#. GNU General Public License for more details. +#. +#. You should have received a copy of the GNU General Public License +#. along with GCC; see the file COPYING. If not, write to +#. the Free Software Foundation, 51 Franklin Street, Fifth Floor, +#. Boston, MA 02110-1301, USA. +#. After the first "Node:" comment comes all preprocessor directives and +#. attached declarations described in the info files, the "Using and +#. Porting GCC" manual (uapgcc), in the same order as found in the "Target +#. macros" section in the gcc-2.9x CVS edition of 2000-03-17. FIXME: Not +#. really, but needs an update anyway. +#. +#. There is no generic copy-of-uapgcc comment, you'll have to see uapgcc +#. for that. If applicable, there is a CRIS-specific comment. The order +#. of macro definitions follow the order in the manual. Every section in +#. the manual (node in the info pages) has an introductory `Node: +#. ' comment. If no macros are defined for a section, only +#. the section-comment is present. +#. Note that other header files (e.g. config/elfos.h, config/linux.h, +#. config/cris/linux.h and config/cris/aout.h) are responsible for lots of +#. settings not repeated below. This file contains general CRIS +#. definitions and definitions for the cris-*-elf subtarget. +#. We don't want to use gcc_assert for everything, as that can be +#. compiled out. +#: config/cris/cris.h:44 #, gcc-internal-format -msgid "not configured for ABI: '%s'" +msgid "CRIS-port assertion failed: " msgstr "" -#: config/rs6000/rs6000.c:1742 +#. Node: Caller Saves +#. (no definitions) +#. Node: Function entry +#. See cris.c for TARGET_ASM_FUNCTION_PROLOGUE and +#. TARGET_ASM_FUNCTION_EPILOGUE. +#. Node: Profiling +#: config/cris/cris.h:867 #, gcc-internal-format -msgid "Using darwin64 ABI" +msgid "no FUNCTION_PROFILER for CRIS" msgstr "" -#: config/rs6000/rs6000.c:1747 +#: config/crx/crx.h:355 #, gcc-internal-format -msgid "Using old darwin ABI" +msgid "Profiler support for CRX" msgstr "" -#: config/rs6000/rs6000.c:1752 +#: config/crx/crx.h:366 #, gcc-internal-format -msgid "unknown ABI specified: '%s'" +msgid "Trampoline support for CRX" msgstr "" -#: config/rs6000/rs6000.c:1779 +#: config/frv/frv.c:8623 #, gcc-internal-format -msgid "invalid option for -mfloat-gprs: '%s'" +msgid "accumulator is not a constant integer" msgstr "" -#: config/rs6000/rs6000.c:1789 +#: config/frv/frv.c:8628 #, gcc-internal-format -msgid "Unknown switch -mlong-double-%s" +msgid "accumulator number is out of bounds" msgstr "" -#: config/rs6000/rs6000.c:1810 +#: config/frv/frv.c:8639 #, gcc-internal-format -msgid "" -"-malign-power is not supported for 64-bit Darwin; it is incompatible with " -"the installed C and C++ libraries" +msgid "inappropriate accumulator for %qs" msgstr "" -#: config/rs6000/rs6000.c:1818 +#: config/frv/frv.c:8717 #, gcc-internal-format -msgid "unknown -malign-XXXXX option specified: '%s'" +msgid "invalid IACC argument" msgstr "" -#: config/rs6000/rs6000.c:3981 +#: config/frv/frv.c:8740 #, gcc-internal-format -msgid "" -"GCC vector returned by reference: non-standard ABI extension with no " -"compatibility guarantee" +msgid "%qs expects a constant argument" msgstr "" -#: config/rs6000/rs6000.c:4054 +#: config/frv/frv.c:8745 #, gcc-internal-format -msgid "" -"Cannot return value in vector register because altivec instructions are " -"disabled, use -maltivec to enable them." +msgid "constant argument out of range for %qs" msgstr "" -#: config/rs6000/rs6000.c:4300 +#: config/frv/frv.c:9227 #, gcc-internal-format -msgid "" -"Cannot pass argument in vector register because altivec instructions are " -"disabled, use -maltivec to enable them." +msgid "media functions are not available unless -mmedia is used" msgstr "" -#: config/rs6000/rs6000.c:5152 +#: config/frv/frv.c:9239 #, gcc-internal-format -msgid "" -"GCC vector passed by reference: non-standard ABI extension with no " -"compatibility guarantee" +msgid "this media function is only available on the fr500" msgstr "" -#: config/rs6000/rs6000.c:6260 +#: config/frv/frv.c:9267 #, gcc-internal-format -msgid "argument 1 must be a 5-bit signed literal" +msgid "this media function is only available on the fr400 and fr550" msgstr "" -#: config/rs6000/rs6000.c:6363 config/rs6000/rs6000.c:7030 +#: config/frv/frv.c:9286 #, gcc-internal-format -msgid "argument 2 must be a 5-bit unsigned literal" +msgid "this builtin function is only available on the fr405 and fr450" msgstr "" -#: config/rs6000/rs6000.c:6403 +#: config/frv/frv.c:9295 #, gcc-internal-format -msgid "argument 1 of __builtin_altivec_predicate must be a constant" +msgid "this builtin function is only available on the fr500 and fr550" msgstr "" -#: config/rs6000/rs6000.c:6456 +#: config/frv/frv.c:9307 #, gcc-internal-format -msgid "argument 1 of __builtin_altivec_predicate is out of range" +msgid "this builtin function is only available on the fr450" msgstr "" -#: config/rs6000/rs6000.c:6618 +#: config/h8300/h8300.c:331 #, gcc-internal-format -msgid "argument 3 must be a 4-bit unsigned literal" +msgid "-ms2600 is used without -ms" msgstr "" -#: config/rs6000/rs6000.c:6790 +#: config/h8300/h8300.c:337 #, gcc-internal-format -msgid "argument to %qs must be a 2-bit unsigned literal" +msgid "-mn is used without -mh or -ms" msgstr "" -#: config/rs6000/rs6000.c:6829 +#: config/i386/host-cygwin.c:65 #, gcc-internal-format -msgid "unresolved overload for Altivec builtin %qE" +msgid "can't extend PCH file: %m" msgstr "" -#: config/rs6000/rs6000.c:6911 +#: config/i386/host-cygwin.c:76 #, gcc-internal-format -msgid "argument to dss must be a 2-bit unsigned literal" +msgid "can't set position in PCH file: %m" msgstr "" -#: config/rs6000/rs6000.c:7150 +#: config/i386/i386.c:1316 #, gcc-internal-format -msgid "argument 1 of __builtin_spe_predicate must be a constant" +msgid "code model %s not supported in PIC mode" msgstr "" -#: config/rs6000/rs6000.c:7222 +#: config/i386/i386.c:1324 config/sparc/sparc.c:662 #, gcc-internal-format -msgid "argument 1 of __builtin_spe_predicate is out of range" +msgid "bad value (%s) for -mcmodel= switch" msgstr "" -#: config/rs6000/rs6000.c:12918 +#: config/i386/i386.c:1339 #, gcc-internal-format -msgid "stack frame too large" +msgid "bad value (%s) for -masm= switch" msgstr "" -#: config/rs6000/rs6000.c:15478 +#: config/i386/i386.c:1342 #, gcc-internal-format -msgid "no profiling of 64-bit code for this ABI" +msgid "code model %qs not supported in the %s bit mode" msgstr "" -#: config/rs6000/rs6000.c:16584 +#: config/i386/i386.c:1345 #, gcc-internal-format -msgid "use of % in AltiVec types is invalid for 64-bit code" +msgid "code model % not supported yet" msgstr "" -#: config/rs6000/rs6000.c:16586 +#: config/i386/i386.c:1347 #, gcc-internal-format -msgid "use of % in AltiVec types is deprecated; use %" +msgid "%i-bit mode not compiled in" msgstr "" -#: config/rs6000/rs6000.c:16590 +#: config/i386/i386.c:1377 config/i386/i386.c:1401 #, gcc-internal-format -msgid "use of % in AltiVec types is invalid" +msgid "CPU you selected does not support x86-64 instruction set" msgstr "" -#: config/rs6000/rs6000.c:16592 +#: config/i386/i386.c:1383 config/ms1/ms1.c:798 #, gcc-internal-format -msgid "use of % in AltiVec types is invalid" +msgid "bad value (%s) for -march= switch" msgstr "" -#: config/rs6000/rs6000.c:16594 +#: config/i386/i386.c:1414 #, gcc-internal-format -msgid "use of % in AltiVec types is invalid" +msgid "bad value (%s) for -mtune= switch" msgstr "" -#: config/rs6000/rs6000.c:16596 +#: config/i386/i386.c:1431 #, gcc-internal-format -msgid "use of boolean types in AltiVec types is invalid" +msgid "-mregparm=%d is not between 0 and %d" msgstr "" -#: config/rs6000/rs6000.c:16598 +#: config/i386/i386.c:1444 #, gcc-internal-format -msgid "use of % in AltiVec types is invalid" +msgid "-malign-loops is obsolete, use -falign-loops" msgstr "" -#: config/rs6000/aix43.h:39 config/rs6000/aix51.h:38 config/rs6000/aix52.h:38 +#: config/i386/i386.c:1449 config/i386/i386.c:1462 config/i386/i386.c:1475 #, gcc-internal-format -msgid "-maix64 and POWER architecture are incompatible" +msgid "-malign-loops=%d is not between 0 and %d" msgstr "" -#: config/rs6000/aix43.h:44 config/rs6000/aix51.h:43 config/rs6000/aix52.h:43 +#: config/i386/i386.c:1457 #, gcc-internal-format -msgid "-maix64 requires PowerPC64 architecture remain enabled" +msgid "-malign-jumps is obsolete, use -falign-jumps" msgstr "" -#: config/rs6000/aix43.h:48 config/rs6000/aix51.h:47 config/rs6000/aix52.h:47 +#: config/i386/i386.c:1470 #, gcc-internal-format -msgid "" -"-maix64 required: 64-bit computation with 32-bit addressing not yet supported" +msgid "-malign-functions is obsolete, use -falign-functions" msgstr "" -#. The Darwin ABI always includes AltiVec, can't be (validly) turned -#. off. -#: config/rs6000/darwin.h:75 +#: config/i386/i386.c:1508 #, gcc-internal-format -msgid "-mdynamic-no-pic overrides -fpic or -fPIC" +msgid "-mpreferred-stack-boundary=%d is not between %d and 12" msgstr "" -#. Darwin doesn't support -fpic. -#: config/rs6000/darwin.h:81 +#: config/i386/i386.c:1520 #, gcc-internal-format -msgid "-fpic is not supported; -fPIC assumed" +msgid "-mbranch-cost=%d is not between 0 and 5" msgstr "" -#: config/rs6000/darwin.h:88 +#: config/i386/i386.c:1528 #, gcc-internal-format -msgid "-m64 requires PowerPC64 architecture, enabling" +msgid "-mlarge-data-threshold=%d is negative" msgstr "" -#. See note below. -#. if (!rs6000_explicit_options.long_double) -#. rs6000_long_double_type_size = 128; -#: config/rs6000/eabispe.h:45 config/rs6000/linuxspe.h:62 +#: config/i386/i386.c:1540 #, gcc-internal-format -msgid "-m64 not supported in this configuration" +msgid "bad value (%s) for -mtls-dialect= switch" msgstr "" -#: config/rs6000/linux64.h:109 +#: config/i386/i386.c:1587 #, gcc-internal-format -msgid "-m64 requires a PowerPC64 cpu" +msgid "-malign-double makes no sense in the 64bit mode" msgstr "" -#. Definitions for __builtin_return_address and __builtin_frame_address. -#. __builtin_return_address (0) should give link register (65), enable -#. this. -#. This should be uncommented, so that the link register is used, but -#. currently this would result in unmatched insns and spilling fixed -#. registers so we'll leave it for another day. When these problems are -#. taken care of one additional fetch will be necessary in RETURN_ADDR_RTX. -#. (mrs) -#. #define RETURN_ADDR_IN_PREVIOUS_FRAME -#. 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/i386/i386.c:1589 #, gcc-internal-format -msgid "RETURN_ADDRESS_OFFSET not supported" +msgid "-mrtd calling convention not supported in the 64bit mode" msgstr "" -#. Sometimes certain combinations of command options do not make sense -#. on a particular target machine. You can define a macro -#. `OVERRIDE_OPTIONS' to take account of this. This macro, if -#. defined, is executed once just after all the command options have -#. been parsed. -#. -#. The macro SUBTARGET_OVERRIDE_OPTIONS is provided for subtargets, to -#. get control. -#: config/rs6000/sysv4.h:130 +#: config/i386/i386.c:1609 #, gcc-internal-format -msgid "bad value for -mcall-%s" +msgid "-msseregparm used without SSE enabled" msgstr "" -#: config/rs6000/sysv4.h:146 +#: config/i386/i386.c:1621 config/i386/i386.c:1632 #, gcc-internal-format -msgid "bad value for -msdata=%s" +msgid "SSE instruction set disabled, using 387 arithmetics" msgstr "" -#: config/rs6000/sysv4.h:163 +#: config/i386/i386.c:1637 #, gcc-internal-format -msgid "-mrelocatable and -msdata=%s are incompatible" +msgid "387 instruction set disabled, using SSE arithmetics" msgstr "" -#: config/rs6000/sysv4.h:172 +#: config/i386/i386.c:1644 #, gcc-internal-format -msgid "-f%s and -msdata=%s are incompatible" +msgid "bad value (%s) for -mfpmath= switch" msgstr "" -#: config/rs6000/sysv4.h:181 +#: config/i386/i386.c:2007 config/i386/i386.c:2049 #, gcc-internal-format -msgid "-msdata=%s and -mcall-%s are incompatible" +msgid "fastcall and regparm attributes are not compatible" msgstr "" -#: config/rs6000/sysv4.h:190 +#: config/i386/i386.c:2014 #, gcc-internal-format -msgid "-mrelocatable and -mno-minimal-toc are incompatible" +msgid "%qs attribute requires an integer constant argument" msgstr "" -#: config/rs6000/sysv4.h:196 +#: config/i386/i386.c:2020 #, gcc-internal-format -msgid "-mrelocatable and -mcall-%s are incompatible" +msgid "argument to %qs attribute larger than %d" msgstr "" -#: config/rs6000/sysv4.h:203 +#: config/i386/i386.c:2041 config/i386/i386.c:2076 #, gcc-internal-format -msgid "-fPIC and -mcall-%s are incompatible" +msgid "fastcall and cdecl attributes are not compatible" msgstr "" -#: config/rs6000/sysv4.h:210 +#: config/i386/i386.c:2045 #, gcc-internal-format -msgid "-mcall-aixdesc must be big endian" +msgid "fastcall and stdcall attributes are not compatible" msgstr "" -#: config/rs6000/sysv4.h:215 +#: config/i386/i386.c:2059 config/i386/i386.c:2072 #, gcc-internal-format -msgid "-msecure-plt not supported by your assembler" +msgid "stdcall and cdecl attributes are not compatible" msgstr "" -#: config/rs6000/sysv4.h:230 +#: config/i386/i386.c:2063 #, gcc-internal-format -msgid "-m%s not supported in this configuration" +msgid "stdcall and fastcall attributes are not compatible" msgstr "" -#: config/s390/s390.c:1160 +#: config/i386/i386.c:2197 #, gcc-internal-format -msgid "stack guard value must be an exact power of 2" +msgid "Calling %qD with attribute sseregparm without SSE/SSE2 enabled" msgstr "" -#: config/s390/s390.c:1167 +#: config/i386/i386.c:2200 #, gcc-internal-format -msgid "stack size must be an exact power of 2" +msgid "Calling %qT with attribute sseregparm without SSE/SSE2 enabled" msgstr "" -#: config/s390/s390.c:1215 +#: config/i386/i386.c:2925 #, gcc-internal-format -msgid "z/Architecture mode not supported on %s." +msgid "SSE register return with SSE disabled" msgstr "" -#: config/s390/s390.c:1217 +#: config/i386/i386.c:2927 #, gcc-internal-format -msgid "64-bit ABI not supported in ESA/390 mode." +msgid "SSE register argument with SSE disabled" msgstr "" -#: config/s390/s390.c:1228 +#: config/i386/i386.c:3242 #, gcc-internal-format -msgid "" -"-mbackchain -mpacked-stack -mhard-float are not supported in combination." +msgid "SSE vector argument without SSE enabled changes the ABI" msgstr "" -#: config/s390/s390.c:1234 +#: config/i386/i386.c:3259 #, gcc-internal-format -msgid "-mstack-size implies use of -mstack-guard" +msgid "MMX vector argument without MMX enabled changes the ABI" msgstr "" -#: config/s390/s390.c:1236 +#: config/i386/i386.c:3525 #, gcc-internal-format -msgid "stack size must be greater than the stack guard value" +msgid "SSE vector return without SSE enabled changes the ABI" msgstr "" -#: config/s390/s390.c:1239 +#: config/i386/i386.c:3535 #, gcc-internal-format -msgid "-mstack-guard implies use of -mstack-size" +msgid "MMX vector return without MMX enabled changes the ABI" msgstr "" -#: config/s390/s390.c:5804 +#: config/i386/i386.c:6762 #, gcc-internal-format -msgid "Total size of local variables exceeds architecture limit." +msgid "extended registers have no high halves" msgstr "" -#: config/s390/s390.c:6347 +#: config/i386/i386.c:6777 #, gcc-internal-format -msgid "frame size of %qs is " +msgid "unsupported operand size for extended register" msgstr "" -#: config/s390/s390.c:6347 +#: config/i386/i386.c:15029 config/rs6000/rs6000.c:7060 #, gcc-internal-format -msgid " bytes" +msgid "selector must be an integer constant in the range 0..%wi" msgstr "" -#: config/s390/s390.c:6351 +#: config/i386/i386.c:15367 #, gcc-internal-format -msgid "%qs uses dynamic stack allocation" +msgid "shift must be an immediate" msgstr "" -#: config/sh/sh.c:6420 +#: config/i386/i386.c:16537 #, gcc-internal-format -msgid "__builtin_saveregs not supported by this subtarget" +msgid "%qs incompatible attribute ignored" msgstr "" -#: config/sh/sh.c:7407 +#: config/i386/winnt.c:74 #, gcc-internal-format -msgid "attribute interrupt_handler is not compatible with -m5-compact" +msgid "%qs attribute only applies to variables" 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/i386/winnt.c:103 #, gcc-internal-format -msgid "%qs attribute only applies to interrupt functions" +msgid "" +"%qs attribute applies only to initialized variables with external linkage" msgstr "" -#. The argument must be a constant string. -#: config/sh/sh.c:7436 +#: config/i386/winnt.c:202 config/sh/symbian.c:147 #, gcc-internal-format -msgid "%qs attribute argument not a string constant" +msgid "" +"function %q+D is defined after prior declaration as dllimport: attribute " +"ignored" msgstr "" -#. The argument must be a constant integer. -#: config/sh/sh.c:7471 +#: config/i386/winnt.c:213 config/sh/symbian.c:159 #, gcc-internal-format -msgid "%qs attribute argument not an integer constant" +msgid "inline function %q+D is declared as dllimport: attribute ignored" msgstr "" -#: config/sh/sh.c:9490 +#: config/i386/winnt.c:225 config/sh/symbian.c:173 #, gcc-internal-format -msgid "r0 needs to be available as a call-clobbered register" +msgid "definition of static data member %q+D of dllimport'd class" msgstr "" -#: config/sh/sh.c:9511 +#: config/i386/winnt.c:282 #, gcc-internal-format -msgid "Need a second call-clobbered general purpose register" +msgid "inconsistent dll linkage for %q+D, dllexport assumed" msgstr "" -#: config/sh/sh.c:9519 +#: config/i386/winnt.c:323 config/sh/symbian.c:273 #, gcc-internal-format -msgid "Need a call-clobbered target register" +msgid "%qs declared as both exported to and imported from a DLL" msgstr "" -#: config/sh/symbian.c:147 +#: config/i386/winnt.c:466 #, gcc-internal-format -msgid "" -"%H function '%D' is defined after prior declaration as dllimport: attribute " -"ignored" +msgid "%q+D defined locally after being referenced with dllimport linkage" msgstr "" -#: config/sh/symbian.c:159 +#: config/i386/winnt.c:469 #, gcc-internal-format -msgid "%Hinline function '%D' is declared as dllimport: attribute ignored." +msgid "" +"%q+D redeclared without dllimport attribute after being referenced with " +"dllimport linkage" msgstr "" -#: config/sh/symbian.c:173 +#: config/i386/winnt.c:637 #, gcc-internal-format -msgid "%Hdefinition of static data member '%D' of dllimport'd class." +msgid "%q+D causes a section type conflict" msgstr "" -#: config/sh/symbian.c:280 +#: config/i386/cygming.h:166 #, gcc-internal-format -msgid "" -"%Hfailure in redeclaration of '%D': dllimport'd symbol lacks external " -"linkage." +msgid "-f%s ignored for target (all code is position independent)" msgstr "" -#: config/sh/symbian.c:326 +#: config/i386/djgpp.h:181 #, gcc-internal-format -msgid "%H%s '%D' %s after being referenced with dllimport linkage." +msgid "-mbnu210 is ignored (option is obsolete)" msgstr "" -#: config/sh/symbian.c:430 +#: config/i386/i386-interix.h:257 #, gcc-internal-format -msgid "%Hvariable %qD definition is marked dllimport." +msgid "ms-bitfields not supported for objc" msgstr "" -#: config/sh/symbian.c:505 +#: config/ia64/ia64-c.c:52 #, gcc-internal-format -msgid "%Hexternal linkage required for symbol '%D' because of '%s' attribute." +msgid "malformed #pragma builtin" msgstr "" -#: config/sh/symbian.c:886 cp/tree.c:2287 +#: config/ia64/ia64.c:505 config/m32r/m32r.c:373 #, gcc-internal-format -msgid "lang_* check: failed in %s, at %s:%d" +msgid "invalid argument of %qs attribute" msgstr "" -#. FIXME -#: config/sh/netbsd-elf.h:95 +#: config/ia64/ia64.c:517 #, gcc-internal-format -msgid "unimplemented-shmedia profiling" +msgid "%Jan address area attribute cannot be specified for local variables" msgstr "" -#. There are no delay slots on SHmedia. -#. Relaxation isn't yet supported for SHmedia -#. After reload, if conversion does little good but can cause ICEs: - find_if_block doesn't do anything for SH because we don't have conditional execution patterns. (We use conditional move patterns, which are handled differently, and only before reload). - find_cond_trap doesn't do anything for the SH because we #. don't have conditional traps. - find_if_case_1 uses redirect_edge_and_branch_force in the only path that does an optimization, and this causes an ICE when branch targets are in registers. - find_if_case_2 doesn't do anything for the SHmedia after reload except when it can redirect a tablejump - and that's rather rare. -#. -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 +#: config/ia64/ia64.c:524 #, gcc-internal-format -msgid "Profiling is still experimental for this target." +msgid "address area of %q+D conflicts with previous declaration" msgstr "" -#: config/sparc/sparc.c:635 +#: config/ia64/ia64.c:531 #, gcc-internal-format -msgid "%s is not supported by this configuration" +msgid "%Jaddress area attribute cannot be specified for functions" msgstr "" -#: config/sparc/sparc.c:642 +#: config/ia64/ia64.c:4931 config/pa/pa.c:327 #, gcc-internal-format -msgid "-mlong-double-64 not allowed with -m64" +msgid "value of -mfixed-range must have form REG1-REG2" msgstr "" -#: config/sparc/sparc.c:667 +#: config/ia64/ia64.c:4958 config/pa/pa.c:354 #, gcc-internal-format -msgid "-mcmodel= is not supported on 32 bit systems" +msgid "%s-%s is an empty range" msgstr "" -#: config/stormy16/stormy16.c:497 +#: config/ia64/ia64.c:4986 #, gcc-internal-format -msgid "Constant halfword load operand out of range." +msgid "bad value %<%s%> for -mtls-size= switch" msgstr "" -#: config/stormy16/stormy16.c:507 +#: config/ia64/ia64.c:5014 #, gcc-internal-format -msgid "Constant arithmetic operand out of range." +msgid "bad value %<%s%> for -mtune= switch" msgstr "" -#: config/stormy16/stormy16.c:1110 +#: config/ia64/ia64.c:5033 #, gcc-internal-format -msgid "Local variable memory requirements exceed capacity." +msgid "not yet implemented: latency-optimized inline square root" msgstr "" -#: config/stormy16/stormy16.c:1276 +#: config/iq2000/iq2000.c:1808 #, gcc-internal-format -msgid "function_profiler support" +msgid "gp_offset (%ld) or end_offset (%ld) is less than zero" msgstr "" -#: config/stormy16/stormy16.c:1365 +#: config/iq2000/iq2000.c:2589 #, gcc-internal-format -msgid "cannot use va_start in interrupt function" +msgid "argument %qd is not a constant" msgstr "" -#: config/stormy16/stormy16.c:1933 +#: config/iq2000/iq2000.c:2892 config/ms1/ms1.c:338 +#: config/xtensa/xtensa.c:1773 #, gcc-internal-format -msgid "switch statement of size %lu entries too large" +msgid "PRINT_OPERAND_ADDRESS, null pointer" msgstr "" -#: config/stormy16/stormy16.c:2301 +#: config/iq2000/iq2000.c:3047 #, gcc-internal-format -msgid "%<__BELOW100__%> attribute only applies to variables" +msgid "PRINT_OPERAND: Unknown punctuation '%c'" msgstr "" -#: config/stormy16/stormy16.c:2308 +#: config/iq2000/iq2000.c:3056 config/mips/mips.c:5390 +#: config/xtensa/xtensa.c:1627 #, gcc-internal-format -msgid "__BELOW100__ attribute not allowed with auto storage class." +msgid "PRINT_OPERAND null pointer" msgstr "" -#: config/v850/v850-c.c:67 +#: config/m32c/m32c-pragma.c:64 #, gcc-internal-format -msgid "#pragma GHS endXXXX found without previous startXXX" +msgid "junk at end of #pragma GCC memregs [0..16]" msgstr "" -#: config/v850/v850-c.c:69 +#: config/m32c/m32c-pragma.c:71 #, gcc-internal-format -msgid "#pragma GHS endXXX does not match previous startXXX" +msgid "#pragma GCC memregs must precede any function decls" msgstr "" -#: config/v850/v850-c.c:94 +#: config/m32c/m32c-pragma.c:82 config/m32c/m32c-pragma.c:89 #, gcc-internal-format -msgid "cannot set interrupt attribute: no current function" +msgid "#pragma GCC memregs takes a number [0..16]" msgstr "" -#: config/v850/v850-c.c:102 +#: config/m32c/m32c.c:412 #, gcc-internal-format -msgid "cannot set interrupt attribute: no such identifier" +msgid "invalid target memregs value '%d'" msgstr "" -#: config/v850/v850-c.c:147 +#: config/m68hc11/m68hc11.c:279 #, gcc-internal-format -msgid "junk at end of #pragma ghs section" +msgid "-f%s ignored for 68HC11/68HC12 (not supported)" msgstr "" -#: config/v850/v850-c.c:164 +#: config/m68hc11/m68hc11.c:1240 #, gcc-internal-format -msgid "unrecognized section name \"%s\"" +msgid "% and % attributes are not compatible, ignoring %" msgstr "" -#: config/v850/v850-c.c:179 +#: config/m68hc11/m68hc11.c:1247 #, gcc-internal-format -msgid "malformed #pragma ghs section" +msgid "% attribute is already used" msgstr "" -#: config/v850/v850-c.c:198 +#: config/m68k/m68k.c:321 #, gcc-internal-format -msgid "junk at end of #pragma ghs interrupt" +msgid "cannot specify both -msep-data and -mid-shared-library" msgstr "" -#: config/v850/v850-c.c:209 +#: config/m68k/m68k.c:333 #, gcc-internal-format -msgid "junk at end of #pragma ghs starttda" +msgid "-fPIC is not currently supported on the 68000 or 68010" msgstr "" -#: config/v850/v850-c.c:220 +#: config/m68k/m68k.c:640 config/rs6000/rs6000.c:13546 #, gcc-internal-format -msgid "junk at end of #pragma ghs startsda" +msgid "stack limit expression is not supported" msgstr "" -#: config/v850/v850-c.c:231 +#: config/mips/mips.c:4584 #, gcc-internal-format -msgid "junk at end of #pragma ghs startzda" +msgid "" +"-%s conflicts with the other architecture options, which specify a %s " +"processor" msgstr "" -#: config/v850/v850-c.c:242 +#: config/mips/mips.c:4600 #, gcc-internal-format -msgid "junk at end of #pragma ghs endtda" +msgid "-march=%s is not compatible with the selected ABI" msgstr "" -#: config/v850/v850-c.c:253 +#: config/mips/mips.c:4618 #, gcc-internal-format -msgid "junk at end of #pragma ghs endsda" +msgid "-mgp64 used with a 32-bit processor" msgstr "" -#: config/v850/v850-c.c:264 +#: config/mips/mips.c:4620 #, gcc-internal-format -msgid "junk at end of #pragma ghs endzda" +msgid "-mgp32 used with a 64-bit ABI" msgstr "" -#: config/v850/v850.c:172 +#: config/mips/mips.c:4622 #, gcc-internal-format -msgid "value passed to %<-m%s%> is too large" +msgid "-mgp64 used with a 32-bit ABI" msgstr "" -#: config/v850/v850.c:2140 +#: config/mips/mips.c:4640 config/mips/mips.c:4642 config/mips/mips.c:4644 +#: config/mips/mips.c:4720 #, gcc-internal-format -msgid "%Jdata area attributes cannot be specified for local variables" +msgid "unsupported combination: %s" msgstr "" -#: config/v850/v850.c:2151 +#: config/mips/mips.c:4715 #, gcc-internal-format -msgid "%Jdata area of '%D' conflicts with previous declaration" +msgid "" +"generation of Branch Likely instructions enabled, but not supported by " +"architecture" msgstr "" -#: config/v850/v850.c:2281 +#: config/mips/mips.c:4732 #, gcc-internal-format -msgid "bogus JR construction: %d\n" +msgid "-G is incompatible with PIC code which is the default" msgstr "" -#: config/v850/v850.c:2299 config/v850/v850.c:2408 +#: config/mips/mips.c:4799 #, gcc-internal-format -msgid "bad amount of stack space removal: %d" +msgid "-mips3d requires -mpaired-single" msgstr "" -#: config/v850/v850.c:2388 +#: config/mips/mips.c:4808 #, gcc-internal-format -msgid "bogus JARL construction: %d\n" +msgid "-mips3d/-mpaired-single must be used with -mfp64 -mhard-float" msgstr "" -#: config/v850/v850.c:2687 +#: config/mips/mips.c:4813 #, gcc-internal-format -msgid "Bogus DISPOSE construction: %d\n" +msgid "-mips3d/-mpaired-single must be used with -mips64" msgstr "" -#: config/v850/v850.c:2706 +#: config/mips/mips.c:4816 #, gcc-internal-format -msgid "Too much stack space to dispose of: %d" +msgid "-mips16 and -mdsp cannot be used together" msgstr "" -#: config/v850/v850.c:2808 +#: config/mips/mips.c:5327 #, gcc-internal-format -msgid "Bogus PREPEARE construction: %d\n" +msgid "internal error: %%) found without a %%( in assembler pattern" msgstr "" -#: config/v850/v850.c:2827 +#: config/mips/mips.c:5341 #, gcc-internal-format -msgid "Too much stack space to prepare: %d" +msgid "internal error: %%] found without a %%[ in assembler pattern" msgstr "" -#: config/xtensa/xtensa.c:1505 +#: config/mips/mips.c:5354 #, gcc-internal-format -msgid "boolean registers required for the floating-point option" +msgid "internal error: %%> found without a %%< in assembler pattern" msgstr "" -#: config/xtensa/xtensa.c:1551 +#: config/mips/mips.c:5367 #, gcc-internal-format -msgid "-f%s is not supported with CONST16 instructions" +msgid "internal error: %%} found without a %%{ in assembler pattern" msgstr "" -#: config/xtensa/xtensa.c:1556 +#: config/mips/mips.c:5381 #, gcc-internal-format -msgid "PIC is required but not supported with CONST16 instructions" +msgid "PRINT_OPERAND: unknown punctuation '%c'" msgstr "" -#: config/xtensa/xtensa.c:2414 +#: config/mips/mips.c:8144 #, gcc-internal-format -msgid "only uninitialized variables can be placed in a .bss section" +msgid "cannot handle inconsistent calls to %qs" msgstr "" -#: ada/misc.c:262 +#: config/mips/mips.c:9543 #, gcc-internal-format -msgid "missing argument to \"-%s\"" +msgid "the cpu name must be lower case" msgstr "" -#: ada/misc.c:303 +#: config/mips/mips.c:10209 #, gcc-internal-format -msgid "%<-gnat%> misspelled as %<-gant%>" +msgid "invalid argument to builtin function" msgstr "" -#: cp/call.c:288 +#. Output assembler code to FILE to increment profiler label # LABELNO +#. for profiling a function entry. +#: config/mips/mips.h:2106 #, gcc-internal-format -msgid "unable to call pointer to member function here" +msgid "mips16 function profiling" msgstr "" -#: cp/call.c:2376 +#: config/mmix/mmix.c:227 #, gcc-internal-format -msgid "%s %D(%T, %T, %T) " +msgid "-f%s not supported: ignored" msgstr "" -#: cp/call.c:2381 +#: config/mmix/mmix.c:655 #, gcc-internal-format -msgid "%s %D(%T, %T) " +msgid "support for mode %qs" msgstr "" -#: cp/call.c:2385 +#: config/mmix/mmix.c:669 #, gcc-internal-format -msgid "%s %D(%T) " +msgid "" +"too large function value type, needs %d registers, have only %d registers " +"for this" msgstr "" -#: cp/call.c:2389 +#: config/mmix/mmix.c:839 #, gcc-internal-format -msgid "%s %T " +msgid "function_profiler support for MMIX" msgstr "" -#: cp/call.c:2391 +#: config/mmix/mmix.c:861 #, gcc-internal-format -msgid "%J%s %+#D " +msgid "MMIX Internal: Last named vararg would not fit in a register" msgstr "" -#: cp/call.c:2393 +#: config/mmix/mmix.c:1476 config/mmix/mmix.c:1500 config/mmix/mmix.c:1616 #, gcc-internal-format -msgid "%J%s %+#D" +msgid "MMIX Internal: Bad register: %d" msgstr "" -#: cp/call.c:2614 +#. Presumably there's a missing case above if we get here. +#: config/mmix/mmix.c:1608 #, gcc-internal-format -msgid "conversion from %qT to %qT is ambiguous" +msgid "MMIX Internal: Missing %qc case in mmix_print_operand" msgstr "" -#: cp/call.c:2767 cp/call.c:2825 +#: config/mmix/mmix.c:1894 #, gcc-internal-format -msgid "no matching function for call to %<%D(%A)%>" +msgid "stack frame not a multiple of 8 bytes: %wd" msgstr "" -#: cp/call.c:2770 cp/call.c:2828 +#: config/mmix/mmix.c:2130 #, gcc-internal-format -msgid "call of overloaded %<%D(%A)%> is ambiguous" +msgid "stack frame not a multiple of octabyte: %wd" msgstr "" -#. It's no good looking for an overloaded operator() on a -#. pointer-to-member-function. -#: cp/call.c:2896 +#: config/mmix/mmix.c:2470 config/mmix/mmix.c:2534 #, gcc-internal-format -msgid "" -"pointer-to-member function %E cannot be called without an object; consider " -"using .* or ->*" +msgid "MMIX Internal: %s is not a shiftable int" msgstr "" -#: cp/call.c:2965 +#: config/ms1/ms1.c:301 #, gcc-internal-format -msgid "no match for call to %<(%T) (%A)%>" +msgid "info pointer NULL" msgstr "" -#: cp/call.c:2974 +#: config/pa/pa.c:459 #, gcc-internal-format -msgid "call of %<(%T) (%A)%> is ambiguous" +msgid "PIC code generation is not supported in the portable runtime model" msgstr "" -#: cp/call.c:3012 +#: config/pa/pa.c:464 #, gcc-internal-format -msgid "%s for ternary % in %<%E ? %E : %E%>" +msgid "PIC code generation is not compatible with fast indirect calls" msgstr "" -#: cp/call.c:3018 +#: config/pa/pa.c:469 #, gcc-internal-format -msgid "%s for % in %<%E%s%>" +msgid "-g is only supported when using GAS on this processor," msgstr "" -#: cp/call.c:3022 +#: config/pa/pa.c:470 #, gcc-internal-format -msgid "%s for % in %<%E[%E]%>" +msgid "-g option disabled" msgstr "" -#: cp/call.c:3027 +#: config/pa/pa.c:7982 #, gcc-internal-format -msgid "%s for %qs in %<%s %E%>" +msgid "" +"alignment (%u) for %s exceeds maximum alignment for global common data. " +"Using %u" msgstr "" -#: cp/call.c:3032 +#: config/pa/pa-hpux11.h:85 #, gcc-internal-format -msgid "%s for % in %<%E %s %E%>" +msgid "-munix=98 option required for C89 Amendment 1 features.\n" msgstr "" -#: cp/call.c:3035 +#: config/rs6000/host-darwin.c:52 #, gcc-internal-format -msgid "%s for % in %<%s%E%>" +msgid "Segmentation Fault (code)" msgstr "" -#: cp/call.c:3125 +#: config/rs6000/host-darwin.c:117 #, gcc-internal-format -msgid "ISO C++ forbids omitting the middle term of a ?: expression" +msgid "Segmentation Fault" msgstr "" -#: cp/call.c:3202 +#: config/rs6000/host-darwin.c:131 #, gcc-internal-format -msgid "%qE has type % and is not a throw-expression" +msgid "While setting up signal stack: %m" msgstr "" -#: cp/call.c:3241 cp/call.c:3451 +#: config/rs6000/host-darwin.c:137 #, gcc-internal-format -msgid "operands to ?: have different types" +msgid "While setting up signal handler: %m" msgstr "" -#: cp/call.c:3405 +#. Handle the machine specific pragma longcall. Its syntax is +#. +#. # pragma longcall ( TOGGLE ) +#. +#. where TOGGLE is either 0 or 1. +#. +#. 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:53 #, gcc-internal-format -msgid "enumeral mismatch in conditional expression: %qT vs %qT" +msgid "ignoring malformed #pragma longcall" msgstr "" -#: cp/call.c:3412 +#: config/rs6000/rs6000-c.c:66 #, gcc-internal-format -msgid "enumeral and non-enumeral type in conditional expression" +msgid "missing open paren" msgstr "" -#: cp/call.c:3706 +#: config/rs6000/rs6000-c.c:68 #, gcc-internal-format -msgid "no %<%D(int)%> declared for postfix %qs, trying prefix operator instead" +msgid "missing number" msgstr "" -#: cp/call.c:3779 +#: config/rs6000/rs6000-c.c:70 #, gcc-internal-format -msgid "comparison between %q#T and %q#T" +msgid "missing close paren" msgstr "" -#: cp/call.c:4038 +#: config/rs6000/rs6000-c.c:73 #, gcc-internal-format -msgid "no suitable % for %qT" +msgid "number must be 0 or 1" msgstr "" -#: cp/call.c:4055 +#: config/rs6000/rs6000-c.c:76 #, gcc-internal-format -msgid "%q+#D is private" +msgid "junk at end of #pragma longcall" msgstr "" -#: cp/call.c:4057 +#: config/rs6000/rs6000-c.c:2520 #, gcc-internal-format -msgid "%q+#D is protected" +msgid "passing arg %d of %qE discards qualifiers frompointer target type" msgstr "" -#: cp/call.c:4059 +#: config/rs6000/rs6000-c.c:2563 #, gcc-internal-format -msgid "%q+#D is inaccessible" +msgid "invalid parameter combination for AltiVec intrinsic" msgstr "" -#: cp/call.c:4060 +#: config/rs6000/rs6000.c:1246 #, gcc-internal-format -msgid "within this context" +msgid "-mmultiple is not supported on little endian systems" msgstr "" -#: cp/call.c:4149 cp/cvt.c:264 +#: config/rs6000/rs6000.c:1253 #, gcc-internal-format -msgid "invalid conversion from %qT to %qT" +msgid "-mstring is not supported on little endian systems" msgstr "" -#: cp/call.c:4151 +#: config/rs6000/rs6000.c:1267 #, gcc-internal-format -msgid " initializing argument %P of %qD" +msgid "unknown -mdebug-%s switch" msgstr "" -#: cp/call.c:4163 +#: config/rs6000/rs6000.c:1279 #, gcc-internal-format -msgid "passing NULL to non-pointer argument %P of %qD" +msgid "" +"unknown -mtraceback arg %qs; expecting %, % or %" msgstr "" -#: cp/call.c:4166 +#: config/rs6000/rs6000.c:1320 #, gcc-internal-format -msgid "converting to non-pointer type %qT from NULL" +msgid "AltiVec and E500 instructions cannot coexist" msgstr "" -#: cp/call.c:4174 +#: config/rs6000/rs6000.c:1549 #, gcc-internal-format -msgid "passing %qT for argument %P to %qD" +msgid "unknown -m%s= option specified: '%s'" msgstr "" -#: cp/call.c:4177 +#: config/rs6000/rs6000.c:1751 #, gcc-internal-format -msgid "converting to %qT from %qT" +msgid "not configured for ABI: '%s'" msgstr "" -#: cp/call.c:4186 +#: config/rs6000/rs6000.c:1761 #, gcc-internal-format -msgid "passing negative value %qE for argument %P to %qD" +msgid "Using darwin64 ABI" msgstr "" -#: cp/call.c:4189 +#: config/rs6000/rs6000.c:1766 #, gcc-internal-format -msgid "converting negative value %qE to %qT" +msgid "Using old darwin ABI" msgstr "" -#: cp/call.c:4331 +#: config/rs6000/rs6000.c:1771 #, gcc-internal-format -msgid "cannot bind bitfield %qE to %qT" +msgid "unknown ABI specified: '%s'" msgstr "" -#: cp/call.c:4334 cp/call.c:4350 +#: config/rs6000/rs6000.c:1798 #, gcc-internal-format -msgid "cannot bind packed field %qE to %qT" +msgid "invalid option for -mfloat-gprs: '%s'" msgstr "" -#: cp/call.c:4337 +#: config/rs6000/rs6000.c:1808 #, gcc-internal-format -msgid "cannot bind rvalue %qE to %qT" +msgid "Unknown switch -mlong-double-%s" msgstr "" -#: cp/call.c:4446 +#: config/rs6000/rs6000.c:1829 #, gcc-internal-format msgid "" -"cannot pass objects of non-POD type %q#T through %<...%>; call will abort at " -"runtime" +"-malign-power is not supported for 64-bit Darwin; it is incompatible with " +"the installed C and C++ libraries" msgstr "" -#. Undefined behavior [expr.call] 5.2.2/7. -#: cp/call.c:4472 +#: config/rs6000/rs6000.c:1837 #, gcc-internal-format -msgid "" -"cannot receive objects of non-POD type %q#T through %<...%>; call will abort " -"at runtime" +msgid "unknown -malign-XXXXX option specified: '%s'" msgstr "" -#: cp/call.c:4515 +#: config/rs6000/rs6000.c:4131 #, gcc-internal-format -msgid "the default argument for parameter %d of %qD has not yet been parsed" +msgid "" +"GCC vector returned by reference: non-standard ABI extension with no " +"compatibility guarantee" msgstr "" -#: cp/call.c:4720 +#: config/rs6000/rs6000.c:4204 #, gcc-internal-format -msgid "passing %qT as % argument of %q#D discards qualifiers" +msgid "" +"cannot return value in vector register because altivec instructions are " +"disabled, use -maltivec to enable them" msgstr "" -#: cp/call.c:4739 +#: config/rs6000/rs6000.c:4450 #, gcc-internal-format -msgid "%qT is not an accessible base of %qT" +msgid "" +"cannot pass argument in vector register because altivec instructions are " +"disabled, use -maltivec to enable them" msgstr "" -#: cp/call.c:4989 +#: config/rs6000/rs6000.c:5303 #, gcc-internal-format -msgid "could not find class$ field in java interface type %qT" +msgid "" +"GCC vector passed by reference: non-standard ABI extension with no " +"compatibility guarantee" msgstr "" -#: cp/call.c:5249 +#: config/rs6000/rs6000.c:6474 #, gcc-internal-format -msgid "call to non-function %qD" +msgid "argument 1 must be a 5-bit signed literal" msgstr "" -#: cp/call.c:5274 +#: config/rs6000/rs6000.c:6577 config/rs6000/rs6000.c:7371 #, gcc-internal-format -msgid "request for member %qD in %qE, which is of non-aggregate type %qT" +msgid "argument 2 must be a 5-bit unsigned literal" msgstr "" -#: cp/call.c:5353 +#: config/rs6000/rs6000.c:6617 #, gcc-internal-format -msgid "no matching function for call to %<%T::%s(%A)%#V%>" +msgid "argument 1 of __builtin_altivec_predicate must be a constant" msgstr "" -#: cp/call.c:5371 +#: config/rs6000/rs6000.c:6670 #, gcc-internal-format -msgid "call of overloaded %<%s(%A)%> is ambiguous" +msgid "argument 1 of __builtin_altivec_predicate is out of range" msgstr "" -#: cp/call.c:5395 +#: config/rs6000/rs6000.c:6832 #, gcc-internal-format -msgid "cannot call member function %qD without object" +msgid "argument 3 must be a 4-bit unsigned literal" msgstr "" -#: cp/call.c:6000 +#: config/rs6000/rs6000.c:7004 #, gcc-internal-format -msgid "passing %qT chooses %qT over %qT" +msgid "argument to %qs must be a 2-bit unsigned literal" msgstr "" -#: cp/call.c:6002 cp/name-lookup.c:4170 +#: config/rs6000/rs6000.c:7148 #, gcc-internal-format -msgid " in call to %qD" +msgid "unresolved overload for Altivec builtin %qF" msgstr "" -#: cp/call.c:6059 +#: config/rs6000/rs6000.c:7230 #, gcc-internal-format -msgid "choosing %qD over %qD" +msgid "argument to dss must be a 2-bit unsigned literal" msgstr "" -#: cp/call.c:6060 +#: config/rs6000/rs6000.c:7491 #, gcc-internal-format -msgid " for conversion from %qT to %qT" +msgid "argument 1 of __builtin_spe_predicate must be a constant" msgstr "" -#: cp/call.c:6062 +#: config/rs6000/rs6000.c:7563 #, gcc-internal-format -msgid " because conversion sequence for the argument is better" +msgid "argument 1 of __builtin_spe_predicate is out of range" msgstr "" -#: cp/call.c:6182 +#: config/rs6000/rs6000.c:13509 #, 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:" +msgid "stack frame too large" msgstr "" -#: cp/call.c:6323 +#: config/rs6000/rs6000.c:16069 #, gcc-internal-format -msgid "could not convert %qE to %qT" +msgid "no profiling of 64-bit code for this ABI" msgstr "" -#: cp/call.c:6454 +#: config/rs6000/rs6000.c:17178 #, gcc-internal-format -msgid "" -"invalid initialization of non-const reference of type %qT from a temporary " -"of type %qT" +msgid "use of % in AltiVec types is invalid for 64-bit code" msgstr "" -#: cp/call.c:6458 +#: config/rs6000/rs6000.c:17180 #, gcc-internal-format -msgid "" -"invalid initialization of reference of type %qT from expression of type %qT" +msgid "use of % in AltiVec types is deprecated; use %" msgstr "" -#: cp/class.c:273 +#: config/rs6000/rs6000.c:17184 #, gcc-internal-format -msgid "cannot convert from base %qT to derived type %qT via virtual base %qT" +msgid "use of % in AltiVec types is invalid" msgstr "" -#: cp/class.c:929 +#: config/rs6000/rs6000.c:17186 #, gcc-internal-format -msgid "Java class %qT cannot have a destructor" +msgid "use of % in AltiVec types is invalid" msgstr "" -#: cp/class.c:931 +#: config/rs6000/rs6000.c:17188 #, gcc-internal-format -msgid "Java class %qT cannot have an implicit non-trivial destructor" +msgid "use of % in AltiVec types is invalid" msgstr "" -#: cp/class.c:1032 +#: config/rs6000/rs6000.c:17190 #, gcc-internal-format -msgid "repeated using declaration %qD" +msgid "use of boolean types in AltiVec types is invalid" msgstr "" -#: cp/class.c:1034 +#: config/rs6000/rs6000.c:17192 #, gcc-internal-format -msgid "using declaration %qD conflicts with a previous using declaration" +msgid "use of % in AltiVec types is invalid" msgstr "" -#: cp/class.c:1039 +#: config/rs6000/aix43.h:39 config/rs6000/aix51.h:38 config/rs6000/aix52.h:38 #, gcc-internal-format -msgid "%q#D cannot be overloaded" +msgid "-maix64 and POWER architecture are incompatible" msgstr "" -#: cp/class.c:1040 +#: config/rs6000/aix43.h:44 config/rs6000/aix51.h:43 config/rs6000/aix52.h:43 #, gcc-internal-format -msgid "with %q#D" +msgid "-maix64 requires PowerPC64 architecture remain enabled" msgstr "" -#: cp/class.c:1095 +#: config/rs6000/aix43.h:48 config/rs6000/aix51.h:47 config/rs6000/aix52.h:47 #, gcc-internal-format -msgid "conflicting access specifications for method %qD, ignored" +msgid "" +"-maix64 required: 64-bit computation with 32-bit addressing not yet supported" msgstr "" -#: cp/class.c:1098 +#. The Darwin ABI always includes AltiVec, can't be (validly) turned +#. off. +#: config/rs6000/darwin.h:75 #, gcc-internal-format -msgid "conflicting access specifications for field %qE, ignored" +msgid "-mdynamic-no-pic overrides -fpic or -fPIC" msgstr "" -#: cp/class.c:1159 cp/class.c:1167 +#. Darwin doesn't support -fpic. +#: config/rs6000/darwin.h:81 #, gcc-internal-format -msgid "%qD invalid in %q#T" +msgid "-fpic is not supported; -fPIC assumed" msgstr "" -#: cp/class.c:1160 +#: config/rs6000/darwin.h:88 #, gcc-internal-format -msgid " because of local method %q#D with same name" +msgid "-m64 requires PowerPC64 architecture, enabling" msgstr "" -#: cp/class.c:1168 +#. See note below. +#. if (!rs6000_explicit_options.long_double) +#. rs6000_long_double_type_size = 128; +#: config/rs6000/eabispe.h:45 config/rs6000/linuxspe.h:62 #, gcc-internal-format -msgid " because of local member %q#D with same name" +msgid "-m64 not supported in this configuration" msgstr "" -#: cp/class.c:1210 +#: config/rs6000/linux64.h:109 #, gcc-internal-format -msgid "base class %q#T has a non-virtual destructor" +msgid "-m64 requires a PowerPC64 cpu" msgstr "" -#: cp/class.c:1524 +#. Definitions for __builtin_return_address and __builtin_frame_address. +#. __builtin_return_address (0) should give link register (65), enable +#. this. +#. This should be uncommented, so that the link register is used, but +#. currently this would result in unmatched insns and spilling fixed +#. registers so we'll leave it for another day. When these problems are +#. taken care of one additional fetch will be necessary in RETURN_ADDR_RTX. +#. (mrs) +#. #define RETURN_ADDR_IN_PREVIOUS_FRAME +#. 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:1581 #, gcc-internal-format -msgid "all member functions in class %qT are private" +msgid "RETURN_ADDRESS_OFFSET not supported" msgstr "" -#: cp/class.c:1535 +#. Sometimes certain combinations of command options do not make sense +#. on a particular target machine. You can define a macro +#. `OVERRIDE_OPTIONS' to take account of this. This macro, if +#. defined, is executed once just after all the command options have +#. been parsed. +#. +#. The macro SUBTARGET_OVERRIDE_OPTIONS is provided for subtargets, to +#. get control. +#: config/rs6000/sysv4.h:130 #, gcc-internal-format -msgid "%q#T only defines a private destructor and has no friends" +msgid "bad value for -mcall-%s" msgstr "" -#: cp/class.c:1575 +#: config/rs6000/sysv4.h:146 #, gcc-internal-format -msgid "%q#T only defines private constructors and has no friends" +msgid "bad value for -msdata=%s" msgstr "" -#: cp/class.c:1908 +#: config/rs6000/sysv4.h:163 #, gcc-internal-format -msgid "no unique final overrider for %qD in %qT" +msgid "-mrelocatable and -msdata=%s are incompatible" msgstr "" -#. Here we know it is a hider, and no overrider exists. -#: cp/class.c:2386 +#: config/rs6000/sysv4.h:172 #, gcc-internal-format -msgid "%qD was hidden" +msgid "-f%s and -msdata=%s are incompatible" msgstr "" -#: cp/class.c:2387 +#: config/rs6000/sysv4.h:181 #, gcc-internal-format -msgid " by %qD" +msgid "-msdata=%s and -mcall-%s are incompatible" msgstr "" -#: cp/class.c:2428 cp/decl2.c:1088 +#: config/rs6000/sysv4.h:190 #, gcc-internal-format -msgid "%q#D invalid; an anonymous union can only have non-static data members" +msgid "-mrelocatable and -mno-minimal-toc are incompatible" msgstr "" -#: cp/class.c:2435 cp/decl2.c:1095 +#: config/rs6000/sysv4.h:196 #, gcc-internal-format -msgid "private member %q#D in anonymous union" +msgid "-mrelocatable and -mcall-%s are incompatible" msgstr "" -#: cp/class.c:2438 cp/decl2.c:1097 +#: config/rs6000/sysv4.h:203 #, gcc-internal-format -msgid "protected member %q#D in anonymous union" +msgid "-fPIC and -mcall-%s are incompatible" msgstr "" -#: cp/class.c:2605 +#: config/rs6000/sysv4.h:210 #, gcc-internal-format -msgid "bit-field %q#D with non-integral type" +msgid "-mcall-aixdesc must be big endian" msgstr "" -#: cp/class.c:2622 +#: config/rs6000/sysv4.h:215 #, gcc-internal-format -msgid "bit-field %qD width not an integer constant" +msgid "-msecure-plt not supported by your assembler" msgstr "" -#: cp/class.c:2628 +#: config/rs6000/sysv4.h:230 #, gcc-internal-format -msgid "negative width in bit-field %qD" +msgid "-m%s not supported in this configuration" msgstr "" -#: cp/class.c:2633 +#: config/s390/s390.c:1314 #, gcc-internal-format -msgid "zero width for bit-field %qD" +msgid "stack guard value must be an exact power of 2" msgstr "" -#: cp/class.c:2639 +#: config/s390/s390.c:1321 #, gcc-internal-format -msgid "width of %qD exceeds its type" +msgid "stack size must be an exact power of 2" msgstr "" -#: cp/class.c:2648 +#: config/s390/s390.c:1366 #, gcc-internal-format -msgid "%qD is too small to hold all values of %q#T" +msgid "z/Architecture mode not supported on %s" msgstr "" -#: cp/class.c:2708 +#: config/s390/s390.c:1368 #, gcc-internal-format -msgid "member %q#D with constructor not allowed in union" +msgid "64-bit ABI not supported in ESA/390 mode" msgstr "" -#: cp/class.c:2711 +#: config/s390/s390.c:1379 #, gcc-internal-format -msgid "member %q#D with destructor not allowed in union" +msgid "" +"-mbackchain -mpacked-stack -mhard-float are not supported in combination" msgstr "" -#: cp/class.c:2714 +#: config/s390/s390.c:1385 #, gcc-internal-format -msgid "member %q#D with copy assignment operator not allowed in union" +msgid "-mstack-size implies use of -mstack-guard" msgstr "" -#: cp/class.c:2737 +#: config/s390/s390.c:1387 #, gcc-internal-format -msgid "multiple fields in union %qT initialized" +msgid "stack size must be greater than the stack guard value" msgstr "" -#: cp/class.c:2798 +#: config/s390/s390.c:1390 #, gcc-internal-format -msgid "ignoring packed attribute on unpacked non-POD field %q#D" +msgid "-mstack-guard implies use of -mstack-size" msgstr "" -#: cp/class.c:2858 +#: config/s390/s390.c:6077 #, gcc-internal-format -msgid "%qD may not be static because it is a member of a union" +msgid "total size of local variables exceeds architecture limit" msgstr "" -#: cp/class.c:2863 +#: config/s390/s390.c:6623 #, gcc-internal-format -msgid "%qD may not have reference type %qT because it is a member of a union" +msgid "frame size of %qs is " msgstr "" -#: cp/class.c:2872 +#: config/s390/s390.c:6623 #, gcc-internal-format -msgid "field %qD in local class cannot be static" +msgid " bytes" msgstr "" -#: cp/class.c:2878 +#: config/s390/s390.c:6627 #, gcc-internal-format -msgid "field %qD invalidly declared function type" +msgid "%qs uses dynamic stack allocation" msgstr "" -#: cp/class.c:2884 +#: config/sh/sh.c:6473 #, gcc-internal-format -msgid "field %qD invalidly declared method type" +msgid "__builtin_saveregs not supported by this subtarget" msgstr "" -#: cp/class.c:2916 +#: config/sh/sh.c:7522 #, gcc-internal-format -msgid "non-static reference %q#D in class without a constructor" +msgid "attribute interrupt_handler is not compatible with -m5-compact" msgstr "" -#: cp/class.c:2963 +#. The sp_switch attribute only has meaning for interrupt functions. +#. The trap_exit attribute only has meaning for interrupt functions. +#: config/sh/sh.c:7544 config/sh/sh.c:7579 #, gcc-internal-format -msgid "non-static const member %q#D in class without a constructor" +msgid "%qs attribute only applies to interrupt functions" msgstr "" -#: cp/class.c:2978 +#. The argument must be a constant string. +#: config/sh/sh.c:7551 #, gcc-internal-format -msgid "field %q#D with same name as class" +msgid "%qs attribute argument not a string constant" msgstr "" -#: cp/class.c:3011 +#. The argument must be a constant integer. +#: config/sh/sh.c:7586 #, gcc-internal-format -msgid "%q#T has pointer data members" +msgid "%qs attribute argument not an integer constant" msgstr "" -#: cp/class.c:3015 +#: config/sh/sh.c:9602 #, gcc-internal-format -msgid " but does not override %<%T(const %T&)%>" +msgid "r0 needs to be available as a call-clobbered register" msgstr "" -#: cp/class.c:3017 +#: config/sh/sh.c:9623 #, gcc-internal-format -msgid " or %" +msgid "Need a second call-clobbered general purpose register" msgstr "" -#: cp/class.c:3020 +#: config/sh/sh.c:9631 #, gcc-internal-format -msgid " but does not override %" +msgid "Need a call-clobbered target register" msgstr "" -#: cp/class.c:3453 +#: config/sh/symbian.c:280 #, gcc-internal-format msgid "" -"offset of empty base %qT may not be ABI-compliant and maychange in a future " -"version of GCC" +"failure in redeclaration of %q+D: dllimport'd symbol lacks external linkage" msgstr "" -#: cp/class.c:3565 +#: config/sh/symbian.c:326 #, gcc-internal-format -msgid "class %qT will be considered nearly empty in a future version of GCC" +msgid "%s %q+D %s after being referenced with dllimport linkage" msgstr "" -#: cp/class.c:3647 +#: config/sh/symbian.c:892 cp/tree.c:2313 #, gcc-internal-format -msgid "initializer specified for non-virtual method %qD" +msgid "lang_* check: failed in %s, at %s:%d" msgstr "" -#: cp/class.c:4310 +#. FIXME +#: config/sh/netbsd-elf.h:95 #, gcc-internal-format -msgid "" -"offset of virtual base %qT is not ABI-compliant and may change in a future " -"version of GCC" +msgid "unimplemented-shmedia profiling" msgstr "" -#: cp/class.c:4409 +#. There are no delay slots on SHmedia. +#. Relaxation isn't yet supported for SHmedia +#. After reload, if conversion does little good but can cause ICEs: - find_if_block doesn't do anything for SH because we don't have conditional execution patterns. (We use conditional move patterns, which are handled differently, and only before reload). - find_cond_trap doesn't do anything for the SH because we #. don't have conditional traps. - find_if_case_1 uses redirect_edge_and_branch_force in the only path that does an optimization, and this causes an ICE when branch targets are in registers. - find_if_case_2 doesn't do anything for the SHmedia after reload except when it can redirect a tablejump - and that's rather rare. +#. -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 "direct base %qT inaccessible in %qT due to ambiguity" +msgid "profiling is still experimental for this target" msgstr "" -#: cp/class.c:4421 +#: config/sparc/sparc.c:635 #, gcc-internal-format -msgid "virtual base %qT inaccessible in %qT due to ambiguity" +msgid "%s is not supported by this configuration" msgstr "" -#: cp/class.c:4598 +#: config/sparc/sparc.c:642 #, gcc-internal-format -msgid "" -"size assigned to %qT may not be ABI-compliant and may change in a future " -"version of GCC" +msgid "-mlong-double-64 not allowed with -m64" msgstr "" -#. Versions of G++ before G++ 3.4 did not reset the -#. DECL_MODE. -#: cp/class.c:4637 +#: config/sparc/sparc.c:667 #, gcc-internal-format -msgid "" -"the offset of %qD may not be ABI-compliant and may change in a future " -"version of GCC" +msgid "-mcmodel= is not supported on 32 bit systems" msgstr "" -#: cp/class.c:4665 +#: config/stormy16/stormy16.c:497 #, gcc-internal-format -msgid "" -"offset of %qD is not ABI-compliant and may change in a future version of GCC" +msgid "constant halfword load operand out of range" msgstr "" -#: cp/class.c:4675 +#: config/stormy16/stormy16.c:507 #, gcc-internal-format -msgid "" -"%qD contains empty classes which may cause base classes to be placed at " -"different locations in a future version of GCC" +msgid "constant arithmetic operand out of range" msgstr "" -#: cp/class.c:4735 +#: config/stormy16/stormy16.c:1108 #, gcc-internal-format -msgid "" -"layout of classes derived from empty class %qT may change in a future " -"version of GCC" +msgid "local variable memory requirements exceed capacity" msgstr "" -#: cp/class.c:4876 cp/parser.c:13060 +#: config/stormy16/stormy16.c:1274 #, gcc-internal-format -msgid "redefinition of %q#T" +msgid "function_profiler support" msgstr "" -#: cp/class.c:5026 +#: config/stormy16/stormy16.c:1363 #, gcc-internal-format -msgid "%q#T has virtual functions but non-virtual destructor" +msgid "cannot use va_start in interrupt function" msgstr "" -#: cp/class.c:5123 +#: config/stormy16/stormy16.c:1895 #, gcc-internal-format -msgid "trying to finish struct, but kicked out due to previous parse errors" +msgid "switch statement of size %lu entries too large" msgstr "" -#: cp/class.c:5539 +#: config/stormy16/stormy16.c:2263 #, gcc-internal-format -msgid "language string %<\"%E\"%> not recognized" +msgid "%<__BELOW100__%> attribute only applies to variables" msgstr "" -#: cp/class.c:5625 +#: config/stormy16/stormy16.c:2270 #, gcc-internal-format -msgid "cannot resolve overloaded function %qD based on conversion to type %qT" +msgid "__BELOW100__ attribute not allowed with auto storage class" msgstr "" -#: cp/class.c:5750 +#: config/v850/v850-c.c:67 #, gcc-internal-format -msgid "no matches converting function %qD to type %q#T" +msgid "#pragma GHS endXXXX found without previous startXXX" msgstr "" -#: cp/class.c:5773 +#: config/v850/v850-c.c:70 #, gcc-internal-format -msgid "converting overloaded function %qD to type %q#T is ambiguous" +msgid "#pragma GHS endXXX does not match previous startXXX" msgstr "" -#: cp/class.c:5799 +#: config/v850/v850-c.c:96 #, gcc-internal-format -msgid "assuming pointer to member %qD" +msgid "cannot set interrupt attribute: no current function" msgstr "" -#: cp/class.c:5802 +#: config/v850/v850-c.c:104 #, gcc-internal-format -msgid "(a pointer to member can only be formed with %<&%E%>)" +msgid "cannot set interrupt attribute: no such identifier" msgstr "" -#: cp/class.c:5847 cp/class.c:5878 cp/class.c:6030 cp/class.c:6037 +#: config/v850/v850-c.c:149 #, gcc-internal-format -msgid "not enough type information" +msgid "junk at end of #pragma ghs section" msgstr "" -#: cp/class.c:5864 +#: config/v850/v850-c.c:166 #, gcc-internal-format -msgid "argument of type %qT does not match %qT" +msgid "unrecognized section name \"%s\"" msgstr "" -#: cp/class.c:6014 +#: config/v850/v850-c.c:181 #, gcc-internal-format -msgid "invalid operation on uninstantiated type" +msgid "malformed #pragma ghs section" msgstr "" -#. [basic.scope.class] -#. -#. 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 +#: config/v850/v850-c.c:200 #, gcc-internal-format -msgid "declaration of %q#D" +msgid "junk at end of #pragma ghs interrupt" msgstr "" -#: cp/class.c:6252 +#: config/v850/v850-c.c:211 #, gcc-internal-format -msgid "changes meaning of %qD from %q+#D" +msgid "junk at end of #pragma ghs starttda" msgstr "" -#: cp/cp-gimplify.c:120 +#: config/v850/v850-c.c:222 #, gcc-internal-format -msgid "continue statement not within loop or switch" +msgid "junk at end of #pragma ghs startsda" msgstr "" -#: cp/cp-gimplify.c:365 +#: config/v850/v850-c.c:233 #, gcc-internal-format -msgid "statement with no effect" +msgid "junk at end of #pragma ghs startzda" msgstr "" -#: cp/cvt.c:91 +#: config/v850/v850-c.c:244 #, gcc-internal-format -msgid "can't convert from incomplete type %qT to %qT" +msgid "junk at end of #pragma ghs endtda" msgstr "" -#: cp/cvt.c:100 +#: config/v850/v850-c.c:255 #, gcc-internal-format -msgid "conversion of %qE from %qT to %qT is ambiguous" +msgid "junk at end of #pragma ghs endsda" msgstr "" -#: cp/cvt.c:169 cp/cvt.c:238 cp/cvt.c:285 +#: config/v850/v850-c.c:266 #, gcc-internal-format -msgid "cannot convert %qE from type %qT to type %qT" +msgid "junk at end of #pragma ghs endzda" msgstr "" -#: cp/cvt.c:198 cp/cvt.c:202 +#: config/v850/v850.c:172 #, gcc-internal-format -msgid "pointer to member cast from %qT to %qT is via virtual base" +msgid "value passed to %<-m%s%> is too large" msgstr "" -#: cp/cvt.c:498 +#: config/v850/v850.c:2147 #, gcc-internal-format -msgid "conversion from %qT to %qT discards qualifiers" +msgid "%Jdata area attributes cannot be specified for local variables" msgstr "" -#: cp/cvt.c:516 cp/typeck.c:4872 +#: config/v850/v850.c:2158 #, gcc-internal-format -msgid "casting %qT to %qT does not dereference pointer" +msgid "data area of %q+D conflicts with previous declaration" msgstr "" -#: cp/cvt.c:543 +#: config/v850/v850.c:2288 #, gcc-internal-format -msgid "cannot convert type %qT to type %qT" +msgid "bogus JR construction: %d" msgstr "" -#: cp/cvt.c:679 +#: config/v850/v850.c:2306 config/v850/v850.c:2415 #, gcc-internal-format -msgid "conversion from %q#T to %q#T" +msgid "bad amount of stack space removal: %d" msgstr "" -#: cp/cvt.c:691 cp/cvt.c:711 +#: config/v850/v850.c:2395 #, gcc-internal-format -msgid "%q#T used where a %qT was expected" +msgid "bogus JARL construction: %d\n" msgstr "" -#: cp/cvt.c:726 +#: config/v850/v850.c:2694 #, gcc-internal-format -msgid "%q#T used where a floating point value was expected" +msgid "bogus DISPOSE construction: %d" msgstr "" -#: cp/cvt.c:773 +#: config/v850/v850.c:2713 #, gcc-internal-format -msgid "conversion from %qT to non-scalar type %qT requested" +msgid "too much stack space to dispose of: %d" msgstr "" -#: cp/cvt.c:807 +#: config/v850/v850.c:2815 #, gcc-internal-format -msgid "pseudo-destructor is not called" +msgid "bogus PREPEARE construction: %d" msgstr "" -#: cp/cvt.c:866 +#: config/v850/v850.c:2834 #, gcc-internal-format -msgid "object of incomplete type %qT will not be accessed in %s" +msgid "too much stack space to prepare: %d" msgstr "" -#: cp/cvt.c:869 +#: config/xtensa/xtensa.c:1505 #, gcc-internal-format -msgid "object of type %qT will not be accessed in %s" +msgid "boolean registers required for the floating-point option" msgstr "" -#: cp/cvt.c:885 +#: config/xtensa/xtensa.c:1551 #, gcc-internal-format -msgid "object %qE of incomplete type %qT will not be accessed in %s" +msgid "-f%s is not supported with CONST16 instructions" msgstr "" -#. [over.over] enumerates the places where we can take the address -#. of an overloaded function, and this is not one of them. -#: cp/cvt.c:901 +#: config/xtensa/xtensa.c:1556 #, gcc-internal-format -msgid "%s cannot resolve address of overloaded function" +msgid "PIC is required but not supported with CONST16 instructions" msgstr "" -#. Only warn when there is no &. -#: cp/cvt.c:907 +#: config/xtensa/xtensa.c:2414 #, gcc-internal-format -msgid "%s is a reference, not call, to function %qE" +msgid "only uninitialized variables can be placed in a .bss section" msgstr "" -#: cp/cvt.c:918 +#: ada/misc.c:262 #, gcc-internal-format -msgid "%s has no effect" +msgid "missing argument to \"-%s\"" msgstr "" -#: cp/cvt.c:950 +#: ada/misc.c:303 #, gcc-internal-format -msgid "value computed is not used" +msgid "%<-gnat%> misspelled as %<-gant%>" msgstr "" -#: cp/cvt.c:1058 +#: cp/call.c:289 #, gcc-internal-format -msgid "converting NULL to non-pointer type" +msgid "unable to call pointer to member function here" msgstr "" -#: cp/cvt.c:1131 +#: cp/call.c:2392 #, gcc-internal-format -msgid "ambiguous default type conversion from %qT" +msgid "%s %D(%T, %T, %T) " msgstr "" -#: cp/cvt.c:1133 +#: cp/call.c:2397 #, gcc-internal-format -msgid " candidate conversions include %qD and %qD" +msgid "%s %D(%T, %T) " msgstr "" -#: cp/decl.c:355 +#: cp/call.c:2401 #, gcc-internal-format -msgid "label %qD used but not defined" +msgid "%s %D(%T) " msgstr "" -#: cp/decl.c:366 +#: cp/call.c:2405 #, gcc-internal-format -msgid "label %qD defined but not used" +msgid "%s %T " msgstr "" -#: cp/decl.c:999 +#: cp/call.c:2407 #, gcc-internal-format -msgid "%qD was declared % and later %" +msgid "%s %+#D " msgstr "" -#: cp/decl.c:1000 cp/decl.c:1466 +#: cp/call.c:2409 cp/pt.c:1306 #, gcc-internal-format -msgid "previous declaration of %qD" +msgid "%s %+#D" msgstr "" -#: cp/decl.c:1048 +#: cp/call.c:2631 #, gcc-internal-format -msgid "%Jfunction %qD redeclared as inline" +msgid "conversion from %qT to %qT is ambiguous" msgstr "" -#: cp/decl.c:1050 +#: cp/call.c:2782 cp/call.c:2800 cp/call.c:2858 #, gcc-internal-format -msgid "%Jprevious declaration of %qD with attribute noinline" +msgid "no matching function for call to %<%D(%A)%>" msgstr "" -#: cp/decl.c:1057 +#: cp/call.c:2803 cp/call.c:2861 #, gcc-internal-format -msgid "%Jfunction %qD redeclared with attribute noinline" +msgid "call of overloaded %<%D(%A)%> is ambiguous" msgstr "" -#: cp/decl.c:1059 +#. It's no good looking for an overloaded operator() on a +#. pointer-to-member-function. +#: cp/call.c:2929 #, gcc-internal-format -msgid "%Jprevious declaration of %qD was inline" +msgid "" +"pointer-to-member function %E cannot be called without an object; consider " +"using .* or ->*" msgstr "" -#: cp/decl.c:1080 cp/decl.c:1151 +#: cp/call.c:2998 #, gcc-internal-format -msgid "shadowing %s function %q#D" +msgid "no match for call to %<(%T) (%A)%>" msgstr "" -#: cp/decl.c:1089 +#: cp/call.c:3007 #, gcc-internal-format -msgid "library function %q#D redeclared as non-function %q#D" +msgid "call of %<(%T) (%A)%> is ambiguous" msgstr "" -#: cp/decl.c:1094 +#: cp/call.c:3045 #, gcc-internal-format -msgid "conflicts with built-in declaration %q#D" +msgid "%s for ternary % in %<%E ? %E : %E%>" msgstr "" -#: cp/decl.c:1146 cp/decl.c:1255 cp/decl.c:1271 +#: cp/call.c:3051 #, gcc-internal-format -msgid "new declaration %q#D" +msgid "%s for % in %<%E%s%>" msgstr "" -#: cp/decl.c:1147 +#: cp/call.c:3055 #, gcc-internal-format -msgid "ambiguates built-in declaration %q#D" +msgid "%s for % in %<%E[%E]%>" msgstr "" -#: cp/decl.c:1218 +#: cp/call.c:3060 #, gcc-internal-format -msgid "%q#D redeclared as different kind of symbol" +msgid "%s for %qs in %<%s %E%>" msgstr "" -#: cp/decl.c:1221 +#: cp/call.c:3065 #, gcc-internal-format -msgid "previous declaration of %q#D" +msgid "%s for % in %<%E %s %E%>" msgstr "" -#: cp/decl.c:1240 +#: cp/call.c:3068 #, gcc-internal-format -msgid "declaration of template %q#D" +msgid "%s for % in %<%s%E%>" msgstr "" -#: cp/decl.c:1241 cp/name-lookup.c:508 +#: cp/call.c:3160 #, gcc-internal-format -msgid "conflicts with previous declaration %q#D" +msgid "ISO C++ forbids omitting the middle term of a ?: expression" msgstr "" -#: cp/decl.c:1256 cp/decl.c:1272 +#: cp/call.c:3237 #, gcc-internal-format -msgid "ambiguates old declaration %q#D" +msgid "%qE has type % and is not a throw-expression" msgstr "" -#: cp/decl.c:1264 +#: cp/call.c:3276 cp/call.c:3486 #, gcc-internal-format -msgid "declaration of C function %q#D conflicts with" +msgid "operands to ?: have different types" msgstr "" -#: cp/decl.c:1266 +#: cp/call.c:3440 #, gcc-internal-format -msgid "previous declaration %q#D here" +msgid "enumeral mismatch in conditional expression: %qT vs %qT" msgstr "" -#: cp/decl.c:1279 +#: cp/call.c:3447 #, gcc-internal-format -msgid "conflicting declaration %q#D" +msgid "enumeral and non-enumeral type in conditional expression" msgstr "" -#: cp/decl.c:1280 +#: cp/call.c:3741 #, gcc-internal-format -msgid "%qD has a previous declaration as %q#D" +msgid "no %<%D(int)%> declared for postfix %qs, trying prefix operator instead" msgstr "" -#. [namespace.alias] -#. -#. A namespace-name or namespace-alias shall not be declared as -#. the name of any other entity in the same declarative region. -#. 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/call.c:3814 #, gcc-internal-format -msgid "declaration of namespace %qD conflicts with" +msgid "comparison between %q#T and %q#T" msgstr "" -#: cp/decl.c:1334 +#: cp/call.c:4073 #, gcc-internal-format -msgid "previous declaration of namespace %qD here" +msgid "no suitable % for %qT" msgstr "" -#: cp/decl.c:1346 +#: cp/call.c:4090 #, gcc-internal-format -msgid "%q#D previously defined here" +msgid "%q+#D is private" msgstr "" -#: cp/decl.c:1347 +#: cp/call.c:4092 #, gcc-internal-format -msgid "%q#D previously declared here" +msgid "%q+#D is protected" msgstr "" -#. Prototype decl follows defn w/o prototype. -#: cp/decl.c:1356 +#: cp/call.c:4094 #, gcc-internal-format -msgid "prototype for %q#D" +msgid "%q+#D is inaccessible" msgstr "" -#: cp/decl.c:1357 +#: cp/call.c:4095 #, gcc-internal-format -msgid "%Jfollows non-prototype definition here" +msgid "within this context" msgstr "" -#: cp/decl.c:1369 +#: cp/call.c:4184 cp/cvt.c:264 #, gcc-internal-format -msgid "previous declaration of %q#D with %qL linkage" +msgid "invalid conversion from %qT to %qT" msgstr "" -#: cp/decl.c:1371 +#: cp/call.c:4186 #, gcc-internal-format -msgid "conflicts with new declaration with %qL linkage" +msgid " initializing argument %P of %qD" msgstr "" -#: cp/decl.c:1394 cp/decl.c:1401 +#: cp/call.c:4198 #, gcc-internal-format -msgid "default argument given for parameter %d of %q#D" +msgid "passing NULL to non-pointer argument %P of %qD" msgstr "" -#: cp/decl.c:1396 cp/decl.c:1403 +#: cp/call.c:4201 #, gcc-internal-format -msgid "after previous specification in %q#D" +msgid "converting to non-pointer type %qT from NULL" msgstr "" -#: cp/decl.c:1412 +#: cp/call.c:4209 #, gcc-internal-format -msgid "%q#D was used before it was declared inline" +msgid "passing %qT for argument %P to %qD" msgstr "" -#: cp/decl.c:1413 +#: cp/call.c:4212 #, gcc-internal-format -msgid "%Jprevious non-inline declaration here" +msgid "converting to %qT from %qT" msgstr "" -#: cp/decl.c:1465 +#: cp/call.c:4221 #, gcc-internal-format -msgid "redundant redeclaration of %qD in same scope" +msgid "passing negative value %qE for argument %P to %qD" msgstr "" -#: cp/decl.c:1559 +#: cp/call.c:4224 #, gcc-internal-format -msgid "declaration of %qF throws different exceptions" +msgid "converting negative value %qE to %qT" msgstr "" -#: cp/decl.c:1561 +#: cp/call.c:4366 #, gcc-internal-format -msgid "than previous declaration %qF" +msgid "cannot bind bitfield %qE to %qT" msgstr "" -#. From [temp.expl.spec]: -#. -#. If a template, a member template or the member of a class -#. template is explicitly specialized then that -#. specialization shall be declared before the first use of -#. 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/call.c:4369 cp/call.c:4385 #, gcc-internal-format -msgid "explicit specialization of %qD after first use" +msgid "cannot bind packed field %qE to %qT" msgstr "" -#: cp/decl.c:1801 +#: cp/call.c:4372 #, gcc-internal-format -msgid "%J%qD: visibility attribute ignored because it" +msgid "cannot bind rvalue %qE to %qT" msgstr "" -#: cp/decl.c:1803 +#: cp/call.c:4481 #, gcc-internal-format -msgid "%Jconflicts with previous declaration here" +msgid "" +"cannot pass objects of non-POD type %q#T through %<...%>; call will abort at " +"runtime" msgstr "" -#: cp/decl.c:2144 cp/decl.c:2168 cp/decl.c:2256 +#. Undefined behavior [expr.call] 5.2.2/7. +#: cp/call.c:4507 #, gcc-internal-format -msgid "jump to label %qD" +msgid "" +"cannot receive objects of non-POD type %q#T through %<...%>; call will abort " +"at runtime" msgstr "" -#: cp/decl.c:2146 cp/decl.c:2170 +#: cp/call.c:4550 #, gcc-internal-format -msgid "jump to case label" +msgid "the default argument for parameter %d of %qD has not yet been parsed" msgstr "" -#: cp/decl.c:2149 cp/decl.c:2173 +#: cp/call.c:4629 #, gcc-internal-format -msgid "%H from here" +msgid "argument of function call might be a candidate for a format attribute" msgstr "" -#: cp/decl.c:2154 +#: cp/call.c:4766 #, gcc-internal-format -msgid " crosses initialization of %q#D" +msgid "passing %qT as % argument of %q#D discards qualifiers" msgstr "" -#: cp/decl.c:2157 cp/decl.c:2272 +#: cp/call.c:4785 #, gcc-internal-format -msgid " enters scope of non-POD %q#D" +msgid "%qT is not an accessible base of %qT" msgstr "" -#: cp/decl.c:2177 cp/decl.c:2276 +#: cp/call.c:5035 #, gcc-internal-format -msgid " enters try block" +msgid "could not find class$ field in java interface type %qT" msgstr "" -#: cp/decl.c:2179 cp/decl.c:2278 +#: cp/call.c:5295 #, gcc-internal-format -msgid " enters catch block" +msgid "call to non-function %qD" msgstr "" -#: cp/decl.c:2257 +#: cp/call.c:5320 #, gcc-internal-format -msgid " from here" +msgid "request for member %qD in %qE, which is of non-aggregate type %qT" msgstr "" -#. Can't skip init of __exception_info. -#: cp/decl.c:2268 +#: cp/call.c:5399 #, gcc-internal-format -msgid "%J enters catch block" +msgid "no matching function for call to %<%T::%s(%A)%#V%>" msgstr "" -#: cp/decl.c:2270 +#: cp/call.c:5417 #, gcc-internal-format -msgid " skips initialization of %q#D" +msgid "call of overloaded %<%s(%A)%> is ambiguous" msgstr "" -#: cp/decl.c:2304 +#: cp/call.c:5441 #, gcc-internal-format -msgid "label named wchar_t" +msgid "cannot call member function %qD without object" msgstr "" -#: cp/decl.c:2307 +#: cp/call.c:6046 #, gcc-internal-format -msgid "duplicate label %qD" +msgid "passing %qT chooses %qT over %qT" msgstr "" -#: cp/decl.c:2562 cp/parser.c:3610 +#: cp/call.c:6048 cp/name-lookup.c:4225 #, gcc-internal-format -msgid "%qD used without template parameters" +msgid " in call to %qD" msgstr "" -#: cp/decl.c:2579 cp/decl.c:2670 +#: cp/call.c:6105 #, gcc-internal-format -msgid "no class template named %q#T in %q#T" +msgid "choosing %qD over %qD" msgstr "" -#: cp/decl.c:2600 cp/decl.c:2610 cp/decl.c:2630 +#: cp/call.c:6106 #, gcc-internal-format -msgid "no type named %q#T in %q#T" +msgid " for conversion from %qT to %qT" msgstr "" -#: cp/decl.c:2679 +#: cp/call.c:6108 #, gcc-internal-format -msgid "template parameters do not match template" +msgid " because conversion sequence for the argument is better" msgstr "" -#: cp/decl.c:2680 cp/friend.c:317 cp/friend.c:325 +#: cp/call.c:6228 #, gcc-internal-format -msgid "%qD declared here" +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/decl.c:3352 +#: cp/call.c:6372 #, gcc-internal-format -msgid "%Jan anonymous union cannot have function members" +msgid "could not convert %qE to %qT" msgstr "" -#: cp/decl.c:3370 +#: cp/call.c:6504 #, gcc-internal-format -msgid "member %q#D with constructor not allowed in anonymous aggregate" +msgid "" +"invalid initialization of non-const reference of type %qT from a temporary " +"of type %qT" msgstr "" -#: cp/decl.c:3374 +#: cp/call.c:6508 #, gcc-internal-format -msgid "member %q#D with destructor not allowed in anonymous aggregate" +msgid "" +"invalid initialization of reference of type %qT from expression of type %qT" msgstr "" -#: cp/decl.c:3378 +#: cp/class.c:274 #, gcc-internal-format -msgid "" -"member %q#D with copy assignment operator not allowed in anonymous aggregate" +msgid "cannot convert from base %qT to derived type %qT via virtual base %qT" msgstr "" -#: cp/decl.c:3404 +#: cp/class.c:931 #, gcc-internal-format -msgid "multiple types in one declaration" +msgid "Java class %qT cannot have a destructor" msgstr "" -#: cp/decl.c:3408 +#: cp/class.c:933 #, gcc-internal-format -msgid "redeclaration of C++ built-in type %qT" +msgid "Java class %qT cannot have an implicit non-trivial destructor" msgstr "" -#: cp/decl.c:3445 +#: cp/class.c:1034 #, gcc-internal-format -msgid "missing type-name in typedef-declaration" +msgid "repeated using declaration %q+D" msgstr "" -#: cp/decl.c:3453 +#: cp/class.c:1036 #, gcc-internal-format -msgid "ISO C++ prohibits anonymous structs" +msgid "using declaration %q+D conflicts with a previous using declaration" msgstr "" -#: cp/decl.c:3460 +#: cp/class.c:1041 #, gcc-internal-format -msgid "%qs can only be specified for functions" +msgid "%q+#D cannot be overloaded" msgstr "" -#: cp/decl.c:3466 +#: cp/class.c:1042 #, gcc-internal-format -msgid "% can only be specified inside a class" +msgid "with %q+#D" msgstr "" -#: cp/decl.c:3468 +#: cp/class.c:1097 #, gcc-internal-format -msgid "% can only be specified for constructors" +msgid "conflicting access specifications for method %q+D, ignored" msgstr "" -#: cp/decl.c:3470 +#: cp/class.c:1100 #, gcc-internal-format -msgid "a storage class can only be specified for objects and functions" +msgid "conflicting access specifications for field %qE, ignored" msgstr "" -#: cp/decl.c:3476 +#: cp/class.c:1161 cp/class.c:1169 #, gcc-internal-format -msgid "qualifiers can only be specified for objects and functions" +msgid "%q+D invalid in %q#T" msgstr "" -#: cp/decl.c:3506 +#: cp/class.c:1162 #, gcc-internal-format -msgid "attribute ignored in declaration of %q#T" +msgid " because of local method %q+#D with same name" msgstr "" -#: cp/decl.c:3507 +#: cp/class.c:1170 #, gcc-internal-format -msgid "attribute for %q#T must follow the %qs keyword" +msgid " because of local member %q+#D with same name" msgstr "" -#: cp/decl.c:3630 +#: cp/class.c:1212 #, gcc-internal-format -msgid "function %q#D is initialized like a variable" +msgid "base class %q#T has a non-virtual destructor" msgstr "" -#: cp/decl.c:3642 +#: cp/class.c:1526 #, gcc-internal-format -msgid "declaration of %q#D has % and is initialized" +msgid "all member functions in class %qT are private" msgstr "" -#: cp/decl.c:3672 +#: cp/class.c:1537 #, gcc-internal-format -msgid "%q#D is not a static member of %q#T" +msgid "%q#T only defines a private destructor and has no friends" msgstr "" -#: cp/decl.c:3678 +#: cp/class.c:1577 #, gcc-internal-format -msgid "ISO C++ does not permit %<%T::%D%> to be defined as %<%T::%D%>" +msgid "%q#T only defines private constructors and has no friends" msgstr "" -#: cp/decl.c:3687 +#: cp/class.c:1910 #, gcc-internal-format -msgid "" -"template header not allowed in member definition of explicitly specialized " -"class" +msgid "no unique final overrider for %qD in %qT" msgstr "" -#: cp/decl.c:3695 +#. Here we know it is a hider, and no overrider exists. +#: cp/class.c:2388 #, gcc-internal-format -msgid "duplicate initialization of %qD" +msgid "%q+D was hidden" msgstr "" -#: cp/decl.c:3733 +#: cp/class.c:2389 #, gcc-internal-format -msgid "declaration of %q#D outside of class is not definition" +msgid " by %q+D" msgstr "" -#: cp/decl.c:3782 +#: cp/class.c:2430 cp/decl2.c:1085 #, gcc-internal-format -msgid "variable %q#D has initializer but incomplete type" +msgid "%q+#D invalid; an anonymous union can only have non-static data members" msgstr "" -#: cp/decl.c:3789 cp/decl.c:4410 +#: cp/class.c:2436 cp/decl2.c:1091 #, gcc-internal-format -msgid "elements of array %q#D have incomplete type" +msgid "private member %q+#D in anonymous union" msgstr "" -#: cp/decl.c:3805 +#: cp/class.c:2438 cp/decl2.c:1093 #, gcc-internal-format -msgid "aggregate %q#D has incomplete type and cannot be defined" +msgid "protected member %q+#D in anonymous union" msgstr "" -#: cp/decl.c:3855 +#: cp/class.c:2604 #, gcc-internal-format -msgid "%qD declared as reference but not initialized" +msgid "bit-field %q+#D with non-integral type" msgstr "" -#: cp/decl.c:3861 +#: cp/class.c:2621 #, gcc-internal-format -msgid "ISO C++ forbids use of initializer list to initialize reference %qD" +msgid "bit-field %q+D width not an integer constant" msgstr "" -#: cp/decl.c:3887 +#: cp/class.c:2626 #, gcc-internal-format -msgid "cannot initialize %qT from %qT" +msgid "negative width in bit-field %q+D" msgstr "" -#: cp/decl.c:3920 +#: cp/class.c:2631 #, gcc-internal-format -msgid "initializer fails to determine size of %qD" +msgid "zero width for bit-field %q+D" msgstr "" -#: cp/decl.c:3925 +#: cp/class.c:2637 #, gcc-internal-format -msgid "array size missing in %qD" +msgid "width of %q+D exceeds its type" msgstr "" -#: cp/decl.c:3935 +#: cp/class.c:2646 #, gcc-internal-format -msgid "zero-size array %qD" +msgid "%q+D is too small to hold all values of %q#T" 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/class.c:2705 #, gcc-internal-format -msgid "storage size of %qD isn't known" +msgid "member %q+#D with constructor not allowed in union" msgstr "" -#: cp/decl.c:3993 +#: cp/class.c:2708 #, gcc-internal-format -msgid "storage size of %qD isn't constant" +msgid "member %q+#D with destructor not allowed in union" msgstr "" -#: cp/decl.c:4048 +#: cp/class.c:2710 #, gcc-internal-format -msgid "" -"sorry: semantics of inline function static data %q#D are wrong (you'll wind " -"up with multiple copies)" +msgid "member %q+#D with copy assignment operator not allowed in union" msgstr "" -#: cp/decl.c:4051 +#: cp/class.c:2733 #, gcc-internal-format -msgid "%J you can work around this by removing the initializer" +msgid "multiple fields in union %qT initialized" msgstr "" -#: cp/decl.c:4078 +#: cp/class.c:2795 #, gcc-internal-format -msgid "uninitialized const %qD" +msgid "ignoring packed attribute on unpacked non-POD field %q+#D" msgstr "" -#: cp/decl.c:4143 +#: cp/class.c:2855 #, gcc-internal-format -msgid "name %qD used in a GNU-style designated initializer for an array" +msgid "%q+D may not be static because it is a member of a union" msgstr "" -#: cp/decl.c:4214 +#: cp/class.c:2860 #, gcc-internal-format -msgid "brace-enclosed initializer used to initialize %qT" +msgid "%q+D may not have reference type %qT because it is a member of a union" msgstr "" -#: cp/decl.c:4279 +#: cp/class.c:2869 #, gcc-internal-format -msgid "initializer for %qT must be brace-enclosed" +msgid "field %q+D in local class cannot be static" msgstr "" -#: cp/decl.c:4295 +#: cp/class.c:2875 #, gcc-internal-format -msgid "ISO C++ does not allow designated initializers" +msgid "field %q+D invalidly declared function type" msgstr "" -#: cp/decl.c:4299 +#: cp/class.c:2881 #, gcc-internal-format -msgid "%qT has no non-static data member named %qD" +msgid "field %q+D invalidly declared method type" msgstr "" -#: cp/decl.c:4363 +#: cp/class.c:2913 #, gcc-internal-format -msgid "too many initializers for %qT" +msgid "non-static reference %q+#D in class without a constructor" msgstr "" -#: cp/decl.c:4404 +#: cp/class.c:2960 #, gcc-internal-format -msgid "variable-sized object %qD may not be initialized" +msgid "non-static const member %q+#D in class without a constructor" msgstr "" -#: cp/decl.c:4415 +#: cp/class.c:2975 #, gcc-internal-format -msgid "%qD has incomplete type" +msgid "field %q+#D with same name as class" msgstr "" -#: cp/decl.c:4469 +#: cp/class.c:3008 #, gcc-internal-format -msgid "%qD must be initialized by constructor, not by %<{...}%>" +msgid "%q#T has pointer data members" msgstr "" -#: cp/decl.c:4505 +#: cp/class.c:3012 #, gcc-internal-format -msgid "array %qD initialized by parenthesized string literal %qE" +msgid " but does not override %<%T(const %T&)%>" msgstr "" -#: cp/decl.c:4520 +#: cp/class.c:3014 #, gcc-internal-format -msgid "structure %qD with uninitialized const members" +msgid " or %" msgstr "" -#: cp/decl.c:4522 +#: cp/class.c:3017 #, gcc-internal-format -msgid "structure %qD with uninitialized reference members" +msgid " but does not override %" msgstr "" -#: cp/decl.c:4724 +#: cp/class.c:3450 #, gcc-internal-format -msgid "assignment (not initialization) in declaration" +msgid "" +"offset of empty base %qT may not be ABI-compliant and maychange in a future " +"version of GCC" msgstr "" -#: cp/decl.c:4741 +#: cp/class.c:3562 #, gcc-internal-format -msgid "cannot initialize %qD to namespace %qD" +msgid "class %qT will be considered nearly empty in a future version of GCC" msgstr "" -#: cp/decl.c:4782 +#: cp/class.c:3644 #, gcc-internal-format -msgid "shadowing previous type declaration of %q#D" +msgid "initializer specified for non-virtual method %q+D" msgstr "" -#: cp/decl.c:4812 +#: cp/class.c:4306 #, gcc-internal-format -msgid "%qD cannot be thread-local because it has non-POD type %qT" +msgid "" +"offset of virtual base %qT is not ABI-compliant and may change in a future " +"version of GCC" msgstr "" -#: cp/decl.c:4827 +#: cp/class.c:4405 #, gcc-internal-format -msgid "%qD is thread-local and so cannot be dynamically initialized" +msgid "direct base %qT inaccessible in %qT due to ambiguity" msgstr "" -#. The static data member cannot be initialized by a -#. non-constant when being declared. -#: cp/decl.c:4835 +#: cp/class.c:4417 #, gcc-internal-format -msgid "" -"%qD cannot be initialized by a non-constant expression when being declared" +msgid "virtual base %qT inaccessible in %qT due to ambiguity" msgstr "" -#: cp/decl.c:5418 +#: cp/class.c:4594 #, gcc-internal-format -msgid "destructor for alien class %qT cannot be a member" +msgid "" +"size assigned to %qT may not be ABI-compliant and may change in a future " +"version of GCC" msgstr "" -#: cp/decl.c:5420 +#. Versions of G++ before G++ 3.4 did not reset the +#. DECL_MODE. +#: cp/class.c:4633 #, gcc-internal-format -msgid "constructor for alien class %qT cannot be a member" +msgid "" +"the offset of %qD may not be ABI-compliant and may change in a future " +"version of GCC" msgstr "" -#: cp/decl.c:5441 +#: cp/class.c:4661 #, gcc-internal-format -msgid "%qD declared as a % %s" +msgid "" +"offset of %q+D is not ABI-compliant and may change in a future version of GCC" msgstr "" -#: cp/decl.c:5443 +#: cp/class.c:4670 #, gcc-internal-format -msgid "%qD declared as an % %s" +msgid "" +"%q+D contains empty classes which may cause base classes to be placed at " +"different locations in a future version of GCC" msgstr "" -#: cp/decl.c:5445 +#: cp/class.c:4729 #, gcc-internal-format msgid "" -"% and % function specifiers on %qD invalid in %s " -"declaration" +"layout of classes derived from empty class %qT may change in a future " +"version of GCC" msgstr "" -#: cp/decl.c:5449 +#: cp/class.c:4870 cp/parser.c:13057 #, gcc-internal-format -msgid "%qD declared as a friend" +msgid "redefinition of %q#T" msgstr "" -#: cp/decl.c:5455 +#: cp/class.c:5020 #, gcc-internal-format -msgid "%qD declared with an exception specification" +msgid "%q#T has virtual functions but non-virtual destructor" msgstr "" -#: cp/decl.c:5541 +#: cp/class.c:5117 #, gcc-internal-format -msgid "cannot declare %<::main%> to be a template" +msgid "trying to finish struct, but kicked out due to previous parse errors" msgstr "" -#: cp/decl.c:5543 +#: cp/class.c:5533 #, gcc-internal-format -msgid "cannot declare %<::main%> to be inline" +msgid "language string %<\"%E\"%> not recognized" msgstr "" -#: cp/decl.c:5545 +#: cp/class.c:5619 #, gcc-internal-format -msgid "cannot declare %<::main%> to be static" +msgid "cannot resolve overloaded function %qD based on conversion to type %qT" msgstr "" -#: cp/decl.c:5549 +#: cp/class.c:5746 #, gcc-internal-format -msgid "%<::main%> must return %" +msgid "no matches converting function %qD to type %q#T" msgstr "" -#: cp/decl.c:5579 +#: cp/class.c:5769 #, gcc-internal-format -msgid "non-local function %q#D uses anonymous type" +msgid "converting overloaded function %qD to type %q#T is ambiguous" msgstr "" -#: cp/decl.c:5582 cp/decl.c:5918 +#: cp/class.c:5795 #, gcc-internal-format -msgid "" -"%q#D does not refer to the unqualified type, so it is not used for linkage" +msgid "assuming pointer to member %qD" msgstr "" -#: cp/decl.c:5588 +#: cp/class.c:5798 #, gcc-internal-format -msgid "non-local function %q#D uses local type %qT" +msgid "(a pointer to member can only be formed with %<&%E%>)" msgstr "" -#: cp/decl.c:5611 +#: cp/class.c:5843 cp/class.c:5874 cp/class.c:6026 cp/class.c:6033 #, gcc-internal-format -msgid "%smember function %qD cannot have cv-qualifier" +msgid "not enough type information" msgstr "" -#: cp/decl.c:5635 +#: cp/class.c:5860 #, gcc-internal-format -msgid "defining explicit specialization %qD in friend declaration" +msgid "argument of type %qT does not match %qT" msgstr "" -#. Something like `template friend void f()'. -#: cp/decl.c:5645 +#: cp/class.c:6010 #, gcc-internal-format -msgid "invalid use of template-id %qD in declaration of primary template" +msgid "invalid operation on uninstantiated type" msgstr "" -#: cp/decl.c:5673 +#. [basic.scope.class] +#. +#. 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:6247 cp/decl.c:1101 cp/name-lookup.c:508 #, gcc-internal-format -msgid "" -"default arguments are not allowed in declaration of friend template " -"specialization %qD" +msgid "declaration of %q#D" msgstr "" -#: cp/decl.c:5681 +#: cp/class.c:6248 #, gcc-internal-format -msgid "" -"% is not allowed in declaration of friend template specialization %" -"qD" +msgid "changes meaning of %qD from %q+#D" msgstr "" -#: cp/decl.c:5747 +#: cp/cp-gimplify.c:120 #, gcc-internal-format -msgid "definition of implicitly-declared %qD" +msgid "continue statement not within loop or switch" msgstr "" -#: cp/decl.c:5767 cp/decl2.c:704 +#: cp/cp-gimplify.c:365 #, gcc-internal-format -msgid "no %q#D member function declared in class %qT" +msgid "statement with no effect" msgstr "" -#. DRs 132, 319 and 389 seem to indicate types with -#. 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/cvt.c:91 #, gcc-internal-format -msgid "non-local variable %q#D uses anonymous type" +msgid "can't convert from incomplete type %qT to %qT" msgstr "" -#: cp/decl.c:5924 +#: cp/cvt.c:100 #, gcc-internal-format -msgid "non-local variable %q#D uses local type %qT" +msgid "conversion of %qE from %qT to %qT is ambiguous" msgstr "" -#: cp/decl.c:6041 +#: cp/cvt.c:169 cp/cvt.c:238 cp/cvt.c:285 #, gcc-internal-format -msgid "" -"invalid in-class initialization of static data member of non-integral type %" -"qT" +msgid "cannot convert %qE from type %qT to type %qT" msgstr "" -#: cp/decl.c:6051 +#: cp/cvt.c:198 cp/cvt.c:202 #, gcc-internal-format -msgid "ISO C++ forbids in-class initialization of non-const static member %qD" +msgid "pointer to member cast from %qT to %qT is via virtual base" msgstr "" -#: cp/decl.c:6055 +#: cp/cvt.c:498 #, gcc-internal-format -msgid "" -"ISO C++ forbids initialization of member constant %qD of non-integral type %" -"qT" +msgid "conversion from %qT to %qT discards qualifiers" msgstr "" -#: cp/decl.c:6075 +#: cp/cvt.c:516 cp/typeck.c:4890 #, gcc-internal-format -msgid "size of array %qD has non-integral type %qT" +msgid "casting %qT to %qT does not dereference pointer" msgstr "" -#: cp/decl.c:6077 +#: cp/cvt.c:543 #, gcc-internal-format -msgid "size of array has non-integral type %qT" +msgid "cannot convert type %qT to type %qT" msgstr "" -#: cp/decl.c:6113 +#: cp/cvt.c:679 #, gcc-internal-format -msgid "size of array %qD is negative" +msgid "conversion from %q#T to %q#T" msgstr "" -#: cp/decl.c:6115 +#: cp/cvt.c:691 cp/cvt.c:711 #, gcc-internal-format -msgid "size of array is negative" +msgid "%q#T used where a %qT was expected" msgstr "" -#: cp/decl.c:6123 +#: cp/cvt.c:726 #, gcc-internal-format -msgid "ISO C++ forbids zero-size array %qD" +msgid "%q#T used where a floating point value was expected" msgstr "" -#: cp/decl.c:6125 +#: cp/cvt.c:773 #, gcc-internal-format -msgid "ISO C++ forbids zero-size array" +msgid "conversion from %qT to non-scalar type %qT requested" msgstr "" -#: cp/decl.c:6132 +#: cp/cvt.c:807 #, gcc-internal-format -msgid "size of array %qD is not an integral constant-expression" +msgid "pseudo-destructor is not called" msgstr "" -#: cp/decl.c:6135 +#: cp/cvt.c:866 #, gcc-internal-format -msgid "size of array is not an integral constant-expression" +msgid "object of incomplete type %qT will not be accessed in %s" msgstr "" -#: cp/decl.c:6140 +#: cp/cvt.c:869 #, gcc-internal-format -msgid "ISO C++ forbids variable-size array %qD" +msgid "object of type %qT will not be accessed in %s" msgstr "" -#: cp/decl.c:6142 +#: cp/cvt.c:885 #, gcc-internal-format -msgid "ISO C++ forbids variable-size array" +msgid "object %qE of incomplete type %qT will not be accessed in %s" msgstr "" -#: cp/decl.c:6172 +#. [over.over] enumerates the places where we can take the address +#. of an overloaded function, and this is not one of them. +#: cp/cvt.c:901 #, gcc-internal-format -msgid "overflow in array dimension" +msgid "%s cannot resolve address of overloaded function" msgstr "" -#: cp/decl.c:6246 +#. Only warn when there is no &. +#: cp/cvt.c:907 #, gcc-internal-format -msgid "declaration of %qD as %s" +msgid "%s is a reference, not call, to function %qE" msgstr "" -#: cp/decl.c:6248 +#: cp/cvt.c:918 #, gcc-internal-format -msgid "creating %s" +msgid "%s has no effect" msgstr "" -#: cp/decl.c:6260 +#: cp/cvt.c:950 #, gcc-internal-format -msgid "" -"declaration of %qD as multidimensional array must have bounds for all " -"dimensions except the first" +msgid "value computed is not used" msgstr "" -#: cp/decl.c:6264 +#: cp/cvt.c:1058 #, gcc-internal-format -msgid "" -"multidimensional array must have bounds for all dimensions except the first" +msgid "converting NULL to non-pointer type" msgstr "" -#: cp/decl.c:6299 +#: cp/cvt.c:1131 #, gcc-internal-format -msgid "return type specification for constructor invalid" +msgid "ambiguous default type conversion from %qT" msgstr "" -#: cp/decl.c:6309 +#: cp/cvt.c:1133 #, gcc-internal-format -msgid "return type specification for destructor invalid" +msgid " candidate conversions include %qD and %qD" msgstr "" -#: cp/decl.c:6322 +#: cp/decl.c:1003 #, gcc-internal-format -msgid "operator %qT declared to return %qT" +msgid "%qD was declared % and later %" msgstr "" -#: cp/decl.c:6324 +#: cp/decl.c:1004 cp/decl.c:1473 objc/objc-act.c:2903 objc/objc-act.c:7470 #, gcc-internal-format -msgid "return type specified for %" +msgid "previous declaration of %q+D" msgstr "" -#: cp/decl.c:6346 +#: cp/decl.c:1054 #, gcc-internal-format -msgid "unnamed variable or field declared void" +msgid "function %q+D redeclared as inline" msgstr "" -#: cp/decl.c:6350 +#: cp/decl.c:1056 #, gcc-internal-format -msgid "variable or field %qE declared void" +msgid "previous declaration of %q+D with attribute noinline" msgstr "" -#: cp/decl.c:6353 +#: cp/decl.c:1063 #, gcc-internal-format -msgid "variable or field declared void" +msgid "function %q+D redeclared with attribute noinline" msgstr "" -#: cp/decl.c:6508 +#: cp/decl.c:1065 #, gcc-internal-format -msgid "type %qT is not derived from type %qT" +msgid "previous declaration of %q+D was inline" msgstr "" -#: cp/decl.c:6528 cp/decl.c:6620 cp/decl.c:7742 +#: cp/decl.c:1088 cp/decl.c:1161 #, gcc-internal-format -msgid "declaration of %qD as non-function" +msgid "shadowing %s function %q#D" msgstr "" -#: cp/decl.c:6534 +#: cp/decl.c:1097 #, gcc-internal-format -msgid "declaration of %qD as non-member" +msgid "library function %q#D redeclared as non-function %q#D" msgstr "" -#: cp/decl.c:6564 +#: cp/decl.c:1102 #, gcc-internal-format -msgid "declarator-id missing; using reserved word %qD" +msgid "conflicts with built-in declaration %q#D" msgstr "" -#: cp/decl.c:6653 +#: cp/decl.c:1156 cp/decl.c:1265 cp/decl.c:1281 #, gcc-internal-format -msgid "two or more data types in declaration of %qs" +msgid "new declaration %q#D" msgstr "" -#: cp/decl.c:6696 +#: cp/decl.c:1157 #, gcc-internal-format -msgid "ISO C++ does not support %" +msgid "ambiguates built-in declaration %q#D" msgstr "" -#: cp/decl.c:6718 +#: cp/decl.c:1229 #, gcc-internal-format -msgid "duplicate %qs" +msgid "%q#D redeclared as different kind of symbol" msgstr "" -#: cp/decl.c:6756 cp/decl.c:6758 +#: cp/decl.c:1232 #, gcc-internal-format -msgid "ISO C++ forbids declaration of %qs with no type" +msgid "previous declaration of %q+#D" msgstr "" -#: cp/decl.c:6783 +#: cp/decl.c:1251 #, gcc-internal-format -msgid "short, signed or unsigned invalid for %qs" +msgid "declaration of template %q#D" msgstr "" -#: cp/decl.c:6785 +#: cp/decl.c:1252 cp/name-lookup.c:509 #, gcc-internal-format -msgid "long, short, signed or unsigned invalid for %qs" +msgid "conflicts with previous declaration %q+#D" msgstr "" -#: cp/decl.c:6787 +#: cp/decl.c:1266 cp/decl.c:1282 #, gcc-internal-format -msgid "long and short specified together for %qs" +msgid "ambiguates old declaration %q+#D" msgstr "" -#: cp/decl.c:6789 +#: cp/decl.c:1274 #, gcc-internal-format -msgid "long or short specified with char for %qs" +msgid "declaration of C function %q#D conflicts with" msgstr "" -#: cp/decl.c:6791 +#: cp/decl.c:1276 #, gcc-internal-format -msgid "long or short specified with floating type for %qs" +msgid "previous declaration %q+#D here" msgstr "" -#: cp/decl.c:6793 +#: cp/decl.c:1289 #, gcc-internal-format -msgid "signed and unsigned given together for %qs" +msgid "conflicting declaration %q#D" msgstr "" -#: cp/decl.c:6799 +#: cp/decl.c:1290 #, gcc-internal-format -msgid "long, short, signed or unsigned used invalidly for %qs" +msgid "%q+D has a previous declaration as %q#D" msgstr "" -#: cp/decl.c:6864 +#. [namespace.alias] +#. +#. A namespace-name or namespace-alias shall not be declared as +#. the name of any other entity in the same declarative region. +#. 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:1342 #, gcc-internal-format -msgid "complex invalid for %qs" +msgid "declaration of namespace %qD conflicts with" msgstr "" -#: cp/decl.c:6893 +#: cp/decl.c:1343 #, gcc-internal-format -msgid "qualifiers are not allowed on declaration of %" +msgid "previous declaration of namespace %q+D here" msgstr "" -#: cp/decl.c:6905 cp/typeck.c:6479 +#: cp/decl.c:1354 #, gcc-internal-format -msgid "ignoring %qV qualifiers added to function type %qT" +msgid "%q+#D previously defined here" msgstr "" -#: cp/decl.c:6928 +#: cp/decl.c:1355 #, gcc-internal-format -msgid "member %qD cannot be declared both virtual and static" +msgid "%q+#D previously declared here" msgstr "" -#: cp/decl.c:6935 +#. Prototype decl follows defn w/o prototype. +#: cp/decl.c:1364 #, gcc-internal-format -msgid "%<%T::%D%> is not a valid declarator" +msgid "prototype for %q+#D" msgstr "" -#: cp/decl.c:6943 +#: cp/decl.c:1365 #, gcc-internal-format -msgid "typedef declaration invalid in parameter declaration" +msgid "%Jfollows non-prototype definition here" msgstr "" -#: cp/decl.c:6947 +#: cp/decl.c:1377 #, gcc-internal-format -msgid "storage class specifiers invalid in parameter declarations" +msgid "previous declaration of %q+#D with %qL linkage" msgstr "" -#: cp/decl.c:6954 +#: cp/decl.c:1379 #, gcc-internal-format -msgid "virtual outside class declaration" +msgid "conflicts with new declaration with %qL linkage" msgstr "" -#: cp/decl.c:6967 cp/decl.c:6974 +#: cp/decl.c:1402 cp/decl.c:1408 #, gcc-internal-format -msgid "multiple storage classes in declaration of %qs" +msgid "default argument given for parameter %d of %q#D" msgstr "" -#: cp/decl.c:6997 +#: cp/decl.c:1404 cp/decl.c:1410 #, gcc-internal-format -msgid "storage class specified for %qs" +msgid "after previous specification in %q+#D" msgstr "" -#: cp/decl.c:7031 +#: cp/decl.c:1419 #, gcc-internal-format -msgid "top-level declaration of %qs specifies %" +msgid "%q#D was used before it was declared inline" msgstr "" -#: cp/decl.c:7043 +#: cp/decl.c:1420 #, gcc-internal-format -msgid "storage class specifiers invalid in friend function declarations" +msgid "%Jprevious non-inline declaration here" msgstr "" -#: cp/decl.c:7169 +#: cp/decl.c:1472 #, gcc-internal-format -msgid "destructor cannot be static member function" +msgid "redundant redeclaration of %qD in same scope" msgstr "" -#: cp/decl.c:7172 +#: cp/decl.c:1566 #, gcc-internal-format -msgid "destructors may not be cv-qualified" +msgid "declaration of %qF throws different exceptions" msgstr "" -#: cp/decl.c:7192 +#: cp/decl.c:1568 #, gcc-internal-format -msgid "constructor cannot be static member function" +msgid "than previous declaration %q+F" msgstr "" -#: cp/decl.c:7195 +#. From [temp.expl.spec]: +#. +#. If a template, a member template or the member of a class +#. template is explicitly specialized then that +#. specialization shall be declared before the first use of +#. that specialization that would cause an implicit +#. instantiation to take place, in every translation unit in +#. which such a use occurs. +#: cp/decl.c:1732 #, gcc-internal-format -msgid "constructors cannot be declared virtual" +msgid "explicit specialization of %qD after first use" msgstr "" -#: cp/decl.c:7200 +#: cp/decl.c:1811 #, gcc-internal-format -msgid "constructors may not be cv-qualified" +msgid "%q+D: visibility attribute ignored because it" msgstr "" -#: cp/decl.c:7220 +#: cp/decl.c:1813 #, gcc-internal-format -msgid "can't initialize friend function %qs" +msgid "%Jconflicts with previous declaration here" msgstr "" -#. Cannot be both friend and virtual. -#: cp/decl.c:7224 +#: cp/decl.c:2191 cp/decl.c:2213 #, gcc-internal-format -msgid "virtual functions cannot be friends" +msgid "jump to label %qD" msgstr "" -#: cp/decl.c:7228 +#: cp/decl.c:2193 cp/decl.c:2215 #, gcc-internal-format -msgid "friend declaration not in class definition" +msgid "jump to case label" msgstr "" -#: cp/decl.c:7230 +#: cp/decl.c:2196 cp/decl.c:2218 #, gcc-internal-format -msgid "can't define friend function %qs in a local class definition" +msgid "%H from here" msgstr "" -#: cp/decl.c:7243 +#: cp/decl.c:2201 #, gcc-internal-format -msgid "destructors may not have parameters" +msgid " crosses initialization of %q+#D" msgstr "" -#: cp/decl.c:7262 cp/decl.c:7269 +#: cp/decl.c:2203 cp/decl.c:2317 #, gcc-internal-format -msgid "cannot declare reference to %q#T" +msgid " enters scope of non-POD %q+#D" msgstr "" -#: cp/decl.c:7263 +#: cp/decl.c:2222 cp/decl.c:2321 #, gcc-internal-format -msgid "cannot declare pointer to %q#T" +msgid " enters try block" msgstr "" -#: cp/decl.c:7271 +#: cp/decl.c:2224 cp/decl.c:2323 #, gcc-internal-format -msgid "cannot declare pointer to %q#T member" +msgid " enters catch block" msgstr "" -#: cp/decl.c:7310 +#: cp/decl.c:2301 #, gcc-internal-format -msgid "%qD is a namespace" +msgid "jump to label %q+D" msgstr "" -#: cp/decl.c:7349 +#: cp/decl.c:2302 #, gcc-internal-format -msgid "template-id %qD used as a declarator" +msgid " from here" msgstr "" -#: cp/decl.c:7396 +#. Can't skip init of __exception_info. +#: cp/decl.c:2313 #, gcc-internal-format -msgid "extra qualification %<%T::%> on member %qs ignored" +msgid "%J enters catch block" msgstr "" -#: cp/decl.c:7415 +#: cp/decl.c:2315 #, gcc-internal-format -msgid "cannot declare member function %<%T::%s%> within %<%T%>" +msgid " skips initialization of %q+#D" msgstr "" -#: cp/decl.c:7430 +#: cp/decl.c:2349 #, gcc-internal-format -msgid "cannot declare member %<%T::%s%> within %qT" +msgid "label named wchar_t" msgstr "" -#: cp/decl.c:7470 +#: cp/decl.c:2352 #, gcc-internal-format -msgid "data member may not have variably modified type %qT" +msgid "duplicate label %qD" msgstr "" -#: cp/decl.c:7472 +#: cp/decl.c:2607 cp/parser.c:3609 #, gcc-internal-format -msgid "parameter may not have variably modified type %qT" +msgid "%qD used without template parameters" 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:2624 cp/decl.c:2715 #, gcc-internal-format -msgid "only declarations of constructors can be %" +msgid "no class template named %q#T in %q#T" msgstr "" -#: cp/decl.c:7488 +#: cp/decl.c:2645 cp/decl.c:2655 cp/decl.c:2675 #, gcc-internal-format -msgid "non-member %qs cannot be declared %" +msgid "no type named %q#T in %q#T" msgstr "" -#: cp/decl.c:7493 +#: cp/decl.c:2724 #, gcc-internal-format -msgid "non-object member %qs cannot be declared %" +msgid "template parameters do not match template" msgstr "" -#: cp/decl.c:7499 +#: cp/decl.c:2725 cp/friend.c:317 cp/friend.c:325 #, gcc-internal-format -msgid "function %qs cannot be declared %" +msgid "%q+D declared here" msgstr "" -#: cp/decl.c:7504 +#: cp/decl.c:3398 #, gcc-internal-format -msgid "static %qs cannot be declared %" +msgid "%Jan anonymous union cannot have function members" msgstr "" -#: cp/decl.c:7509 +#: cp/decl.c:3416 #, gcc-internal-format -msgid "const %qs cannot be declared %" +msgid "member %q+#D with constructor not allowed in anonymous aggregate" msgstr "" -#: cp/decl.c:7529 +#: cp/decl.c:3419 #, gcc-internal-format -msgid "%Jtypedef name may not be a nested-name-specifier" +msgid "member %q+#D with destructor not allowed in anonymous aggregate" msgstr "" -#: cp/decl.c:7545 +#: cp/decl.c:3422 #, gcc-internal-format -msgid "ISO C++ forbids nested type %qD with same name as enclosing class" +msgid "" +"member %q+#D with copy assignment operator not allowed in anonymous aggregate" msgstr "" -#: cp/decl.c:7644 +#: cp/decl.c:3447 #, gcc-internal-format -msgid "qualified function types cannot be used to declare %s functions" +msgid "multiple types in one declaration" msgstr "" -#: cp/decl.c:7670 +#: cp/decl.c:3451 #, gcc-internal-format -msgid "type qualifiers specified for friend class declaration" +msgid "redeclaration of C++ built-in type %qT" msgstr "" -#: cp/decl.c:7675 +#: cp/decl.c:3488 #, gcc-internal-format -msgid "% specified for friend class declaration" +msgid "missing type-name in typedef-declaration" msgstr "" -#: cp/decl.c:7683 +#: cp/decl.c:3496 #, gcc-internal-format -msgid "template parameters cannot be friends" +msgid "ISO C++ prohibits anonymous structs" msgstr "" -#: cp/decl.c:7685 +#: cp/decl.c:3503 #, gcc-internal-format -msgid "friend declaration requires class-key, i.e. %" +msgid "%qs can only be specified for functions" msgstr "" -#: cp/decl.c:7689 +#: cp/decl.c:3509 #, gcc-internal-format -msgid "friend declaration requires class-key, i.e. %" +msgid "% can only be specified inside a class" msgstr "" -#: cp/decl.c:7702 +#: cp/decl.c:3511 #, gcc-internal-format -msgid "trying to make class %qT a friend of global scope" +msgid "% can only be specified for constructors" msgstr "" -#: cp/decl.c:7713 +#: cp/decl.c:3513 #, gcc-internal-format -msgid "invalid qualifiers on non-member function type" +msgid "a storage class can only be specified for objects and functions" msgstr "" -#: cp/decl.c:7732 +#: cp/decl.c:3519 #, gcc-internal-format -msgid "abstract declarator %qT used as declaration" +msgid "qualifiers can only be specified for objects and functions" msgstr "" -#: cp/decl.c:7757 +#: cp/decl.c:3549 #, gcc-internal-format -msgid "cannot use %<::%> in parameter declaration" +msgid "attribute ignored in declaration of %q+#T" msgstr "" -#. Something like struct S { int N::j; }; -#: cp/decl.c:7802 +#: cp/decl.c:3550 #, gcc-internal-format -msgid "invalid use of %<::%>" +msgid "attribute for %q+#T must follow the %qs keyword" msgstr "" -#: cp/decl.c:7817 +#: cp/decl.c:3672 #, gcc-internal-format -msgid "can't make %qD into a method -- not in a class" +msgid "function %q#D is initialized like a variable" msgstr "" -#: cp/decl.c:7826 +#: cp/decl.c:3684 #, gcc-internal-format -msgid "function %qD declared virtual inside a union" +msgid "declaration of %q#D has % and is initialized" msgstr "" -#: cp/decl.c:7835 +#: cp/decl.c:3714 #, gcc-internal-format -msgid "%qD cannot be declared virtual, since it is always static" +msgid "%q#D is not a static member of %q#T" msgstr "" -#: cp/decl.c:7853 +#: cp/decl.c:3720 #, gcc-internal-format -msgid "declaration of %qD as member of %qT" +msgid "ISO C++ does not permit %<%T::%D%> to be defined as %<%T::%D%>" msgstr "" -#: cp/decl.c:7929 +#: cp/decl.c:3729 #, gcc-internal-format -msgid "field %qD has incomplete type" +msgid "" +"template header not allowed in member definition of explicitly specialized " +"class" msgstr "" -#: cp/decl.c:7931 +#: cp/decl.c:3738 #, gcc-internal-format -msgid "name %qT has incomplete type" +msgid "duplicate initialization of %qD" msgstr "" -#: cp/decl.c:7940 +#: cp/decl.c:3777 #, gcc-internal-format -msgid " in instantiation of template %qT" +msgid "declaration of %q#D outside of class is not definition" msgstr "" -#: cp/decl.c:7950 +#: cp/decl.c:3826 #, gcc-internal-format -msgid "%qE is neither function nor member function; cannot be declared friend" +msgid "variable %q#D has initializer but incomplete type" msgstr "" -#: cp/decl.c:7961 +#: cp/decl.c:3833 cp/decl.c:4529 #, gcc-internal-format -msgid "member functions are implicitly friends of their class" +msgid "elements of array %q#D have incomplete type" msgstr "" -#. An attempt is being made to initialize a non-static -#. member. But, from [class.mem]: -#. -#. 4 A member-declarator can contain a -#. constant-initializer only if it declares a static -#. member (_class.static_) of integral or enumeration -#. type, see _class.static.data_. -#. -#. This used to be relatively common practice, but -#. 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:3849 #, gcc-internal-format -msgid "ISO C++ forbids initialization of member %qD" +msgid "aggregate %q#D has incomplete type and cannot be defined" msgstr "" -#: cp/decl.c:8003 +#: cp/decl.c:3899 #, gcc-internal-format -msgid "making %qD static" +msgid "%qD declared as reference but not initialized" msgstr "" -#: cp/decl.c:8061 +#: cp/decl.c:3905 #, gcc-internal-format -msgid "storage class % invalid for function %qs" +msgid "ISO C++ forbids use of initializer list to initialize reference %qD" msgstr "" -#: cp/decl.c:8063 +#: cp/decl.c:3931 #, gcc-internal-format -msgid "storage class % invalid for function %qs" +msgid "cannot initialize %qT from %qT" msgstr "" -#: cp/decl.c:8065 +#: cp/decl.c:3964 #, gcc-internal-format -msgid "storage class %<__thread%> invalid for function %qs" +msgid "initializer fails to determine size of %qD" msgstr "" -#: cp/decl.c:8076 +#: cp/decl.c:3969 #, gcc-internal-format -msgid "" -"% specified invalid for function %qs declared out of global scope" +msgid "array size missing in %qD" msgstr "" -#: cp/decl.c:8079 +#: cp/decl.c:3979 #, gcc-internal-format -msgid "" -"% specifier invalid for function %qs declared out of global scope" +msgid "zero-size array %qD" msgstr "" -#: cp/decl.c:8087 +#. 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:4015 #, gcc-internal-format -msgid "virtual non-class function %qs" +msgid "storage size of %qD isn't known" msgstr "" -#: cp/decl.c:8118 +#: cp/decl.c:4037 #, gcc-internal-format -msgid "cannot declare member function %qD to have static linkage" +msgid "storage size of %qD isn't constant" msgstr "" -#. FIXME need arm citation -#: cp/decl.c:8125 +#: cp/decl.c:4092 #, gcc-internal-format -msgid "cannot declare static function inside another function" +msgid "" +"sorry: semantics of inline function static data %q+#D are wrong (you'll wind " +"up with multiple copies)" msgstr "" -#: cp/decl.c:8154 +#: cp/decl.c:4095 #, gcc-internal-format -msgid "" -"% may not be used when defining (as opposed to declaring) a static " -"data member" +msgid "%J you can work around this by removing the initializer" msgstr "" -#: cp/decl.c:8161 +#: cp/decl.c:4122 #, gcc-internal-format -msgid "static member %qD declared %" +msgid "uninitialized const %qD" msgstr "" -#: cp/decl.c:8166 +#: cp/decl.c:4193 #, gcc-internal-format -msgid "cannot explicitly declare member %q#D to have extern linkage" +msgid "name %qD used in a GNU-style designated initializer for an array" msgstr "" -#: cp/decl.c:8309 +#: cp/decl.c:4240 #, gcc-internal-format -msgid "default argument for %q#D has type %qT" +msgid "invalid type %qT as initializer for a vector of type %qT" msgstr "" -#: cp/decl.c:8312 +#: cp/decl.c:4282 #, gcc-internal-format -msgid "default argument for parameter of type %qT has type %qT" +msgid "initializer for %qT must be brace-enclosed" msgstr "" -#: cp/decl.c:8329 +#: cp/decl.c:4297 #, gcc-internal-format -msgid "default argument %qE uses local variable %qD" +msgid "ISO C++ does not allow designated initializers" msgstr "" -#: cp/decl.c:8397 +#: cp/decl.c:4302 #, gcc-internal-format -msgid "parameter %qD invalidly declared method type" +msgid "%qT has no non-static data member named %qD" msgstr "" -#: cp/decl.c:8421 +#: cp/decl.c:4351 #, gcc-internal-format -msgid "parameter %qD includes %s to array of unknown bound %qT" +msgid "braces around scalar initializer for type %qT" msgstr "" -#. [class.copy] -#. -#. A declaration of a constructor for a class X is ill-formed if -#. its first parameter is of type (optionally cv-qualified) X -#. and either there are no other parameters or else all other -#. parameters have default arguments. -#. -#. We *don't* complain about member template instantiations that -#. have this form, though; they can occur as we try to decide -#. what constructor to use during overload resolution. Since -#. overload resolution will never prefer such a constructor to -#. the non-template copy constructor (which is either explicitly -#. 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:4429 #, gcc-internal-format -msgid "invalid constructor; you probably meant %<%T (const %T&)%>" +msgid "missing braces around initializer for %qT" msgstr "" -#: cp/decl.c:8699 +#: cp/decl.c:4485 #, gcc-internal-format -msgid "%qD may not be declared within a namespace" +msgid "too many initializers for %qT" msgstr "" -#: cp/decl.c:8701 +#: cp/decl.c:4523 #, gcc-internal-format -msgid "%qD may not be declared as static" +msgid "variable-sized object %qD may not be initialized" msgstr "" -#: cp/decl.c:8722 +#: cp/decl.c:4534 #, gcc-internal-format -msgid "%qD must be a nonstatic member function" +msgid "%qD has incomplete type" msgstr "" -#: cp/decl.c:8731 +#: cp/decl.c:4581 #, gcc-internal-format -msgid "" -"%qD must be either a non-static member function or a non-member function" +msgid "%qD must be initialized by constructor, not by %<{...}%>" msgstr "" -#: cp/decl.c:8751 +#: cp/decl.c:4617 #, gcc-internal-format -msgid "%qD must have an argument of class or enumerated type" +msgid "array %qD initialized by parenthesized string literal %qE" msgstr "" -#: cp/decl.c:8792 +#: cp/decl.c:4632 #, gcc-internal-format -msgid "conversion to %s%s will never use a type conversion operator" +msgid "structure %qD with uninitialized const members" msgstr "" -#. 13.4.0.3 -#: cp/decl.c:8799 +#: cp/decl.c:4634 #, gcc-internal-format -msgid "ISO C++ prohibits overloading operator ?:" +msgid "structure %qD with uninitialized reference members" msgstr "" -#: cp/decl.c:8849 +#: cp/decl.c:4836 #, gcc-internal-format -msgid "postfix %qD must take % as its argument" +msgid "assignment (not initialization) in declaration" msgstr "" -#: cp/decl.c:8853 +#: cp/decl.c:4853 #, gcc-internal-format -msgid "postfix %qD must take % as its second argument" +msgid "cannot initialize %qD to namespace %qD" msgstr "" -#: cp/decl.c:8860 +#: cp/decl.c:4894 #, gcc-internal-format -msgid "%qD must take either zero or one argument" +msgid "shadowing previous type declaration of %q#D" msgstr "" -#: cp/decl.c:8862 +#: cp/decl.c:4924 #, gcc-internal-format -msgid "%qD must take either one or two arguments" +msgid "%qD cannot be thread-local because it has non-POD type %qT" msgstr "" -#: cp/decl.c:8883 +#: cp/decl.c:4939 #, gcc-internal-format -msgid "prefix %qD should return %qT" +msgid "%qD is thread-local and so cannot be dynamically initialized" msgstr "" -#: cp/decl.c:8889 +#: cp/decl.c:4957 #, gcc-internal-format -msgid "postfix %qD should return %qT" +msgid "" +"%qD cannot be initialized by a non-constant expression when being declared" msgstr "" -#: cp/decl.c:8898 +#: cp/decl.c:5547 #, gcc-internal-format -msgid "%qD must take %" +msgid "destructor for alien class %qT cannot be a member" msgstr "" -#: cp/decl.c:8900 cp/decl.c:8908 +#: cp/decl.c:5549 #, gcc-internal-format -msgid "%qD must take exactly one argument" +msgid "constructor for alien class %qT cannot be a member" msgstr "" -#: cp/decl.c:8910 +#: cp/decl.c:5570 #, gcc-internal-format -msgid "%qD must take exactly two arguments" +msgid "%qD declared as a % %s" msgstr "" -#: cp/decl.c:8918 +#: cp/decl.c:5572 #, gcc-internal-format -msgid "user-defined %qD always evaluates both arguments" +msgid "%qD declared as an % %s" msgstr "" -#: cp/decl.c:8932 +#: cp/decl.c:5574 #, gcc-internal-format -msgid "%qD should return by value" +msgid "" +"% and % function specifiers on %qD invalid in %s " +"declaration" msgstr "" -#: cp/decl.c:8944 cp/decl.c:8947 +#: cp/decl.c:5578 #, gcc-internal-format -msgid "%qD cannot have default arguments" +msgid "%q+D declared as a friend" msgstr "" -#: cp/decl.c:9004 +#: cp/decl.c:5584 #, gcc-internal-format -msgid "using template type parameter %qT after %qs" +msgid "%q+D declared with an exception specification" msgstr "" -#: cp/decl.c:9019 +#: cp/decl.c:5618 #, gcc-internal-format -msgid "using typedef-name %qD after %qs" +msgid "definition of %qD is not in namespace enclosing %qT" msgstr "" -#: cp/decl.c:9020 +#: cp/decl.c:5709 #, gcc-internal-format -msgid "%qD has a previous declaration here" +msgid "cannot declare %<::main%> to be a template" msgstr "" -#: cp/decl.c:9028 +#: cp/decl.c:5711 #, gcc-internal-format -msgid "%qT referred to as %qs" +msgid "cannot declare %<::main%> to be inline" msgstr "" -#: cp/decl.c:9029 cp/decl.c:9037 +#: cp/decl.c:5713 #, gcc-internal-format -msgid "%qT has a previous declaration here" +msgid "cannot declare %<::main%> to be static" msgstr "" -#: cp/decl.c:9036 +#: cp/decl.c:5717 #, gcc-internal-format -msgid "%qT referred to as enum" +msgid "%<::main%> must return %" msgstr "" -#. If a class template appears as elaborated type specifier -#. without a template header such as: -#. -#. template class C {}; -#. void f(class C); // No template header here -#. -#. then the required template argument is missing. -#: cp/decl.c:9051 +#: cp/decl.c:5747 #, gcc-internal-format -msgid "template argument required for %<%s %T%>" +msgid "non-local function %q#D uses anonymous type" msgstr "" -#: cp/decl.c:9099 cp/name-lookup.c:2601 +#: cp/decl.c:5750 cp/decl.c:6087 #, gcc-internal-format -msgid "%qD has the same name as the class in which it is declared" +msgid "" +"%q+#D does not refer to the unqualified type, so it is not used for linkage" msgstr "" -#: cp/decl.c:9237 +#: cp/decl.c:5756 #, gcc-internal-format -msgid "use of enum %q#D without previous declaration" +msgid "non-local function %q#D uses local type %qT" msgstr "" -#: cp/decl.c:9255 +#: cp/decl.c:5779 #, gcc-internal-format -msgid "redeclaration of %qT as a non-template" +msgid "%smember function %qD cannot have cv-qualifier" msgstr "" -#: cp/decl.c:9362 +#: cp/decl.c:5803 #, gcc-internal-format -msgid "derived union %qT invalid" +msgid "defining explicit specialization %qD in friend declaration" msgstr "" -#: cp/decl.c:9368 +#. Something like `template friend void f()'. +#: cp/decl.c:5813 #, gcc-internal-format -msgid "Java class %qT cannot have multiple bases" +msgid "invalid use of template-id %qD in declaration of primary template" msgstr "" -#: cp/decl.c:9376 +#: cp/decl.c:5841 #, gcc-internal-format -msgid "Java class %qT cannot have virtual bases" +msgid "" +"default arguments are not allowed in declaration of friend template " +"specialization %qD" msgstr "" -#: cp/decl.c:9395 +#: cp/decl.c:5849 #, gcc-internal-format -msgid "base type %qT fails to be a struct or class type" +msgid "" +"% is not allowed in declaration of friend template specialization %" +"qD" msgstr "" -#: cp/decl.c:9428 +#: cp/decl.c:5915 #, gcc-internal-format -msgid "recursive type %qT undefined" +msgid "definition of implicitly-declared %qD" msgstr "" -#: cp/decl.c:9430 +#: cp/decl.c:5935 cp/decl2.c:706 #, gcc-internal-format -msgid "duplicate base type %qT invalid" +msgid "no %q#D member function declared in class %qT" msgstr "" -#: cp/decl.c:9500 +#. DRs 132, 319 and 389 seem to indicate types with +#. 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:6084 #, gcc-internal-format -msgid "multiple definition of %q#T" +msgid "non-local variable %q#D uses anonymous type" msgstr "" -#: cp/decl.c:9501 +#: cp/decl.c:6093 #, gcc-internal-format -msgid "%Jprevious definition here" +msgid "non-local variable %q#D uses local type %qT" msgstr "" -#. DR 377 -#. -#. IF no integral type can represent all the enumerator values, the -#. enumeration is ill-formed. -#: cp/decl.c:9638 +#: cp/decl.c:6210 #, gcc-internal-format -msgid "no integral type can represent all of the enumerator values for %qT" +msgid "" +"invalid in-class initialization of static data member of non-integral type %" +"qT" msgstr "" -#: cp/decl.c:9744 +#: cp/decl.c:6220 #, gcc-internal-format -msgid "enumerator value for %qD not integer constant" +msgid "ISO C++ forbids in-class initialization of non-const static member %qD" msgstr "" -#: cp/decl.c:9771 +#: cp/decl.c:6224 #, gcc-internal-format -msgid "overflow in enumeration values at %qD" +msgid "" +"ISO C++ forbids initialization of member constant %qD of non-integral type %" +"qT" msgstr "" -#: cp/decl.c:9842 +#: cp/decl.c:6244 #, gcc-internal-format -msgid "return type %q#T is incomplete" +msgid "size of array %qD has non-integral type %qT" msgstr "" -#: cp/decl.c:9958 cp/typeck.c:6233 +#: cp/decl.c:6246 #, gcc-internal-format -msgid "% should return a reference to %<*this%>" +msgid "size of array has non-integral type %qT" msgstr "" -#: cp/decl.c:10286 +#: cp/decl.c:6282 #, gcc-internal-format -msgid "parameter %qD declared void" +msgid "size of array %qD is negative" msgstr "" -#: cp/decl.c:10779 +#: cp/decl.c:6284 #, gcc-internal-format -msgid "invalid member function declaration" +msgid "size of array is negative" msgstr "" -#: cp/decl.c:10794 +#: cp/decl.c:6292 #, gcc-internal-format -msgid "%qD is already defined in class %qT" +msgid "ISO C++ forbids zero-size array %qD" msgstr "" -#: cp/decl.c:11004 +#: cp/decl.c:6294 #, gcc-internal-format -msgid "static member function %q#D declared with type qualifiers" +msgid "ISO C++ forbids zero-size array" msgstr "" -#: cp/decl2.c:271 +#: cp/decl.c:6301 #, gcc-internal-format -msgid "name missing for member function" +msgid "size of array %qD is not an integral constant-expression" msgstr "" -#: cp/decl2.c:364 cp/decl2.c:378 +#: cp/decl.c:6304 #, gcc-internal-format -msgid "ambiguous conversion for array subscript" +msgid "size of array is not an integral constant-expression" msgstr "" -#: cp/decl2.c:372 +#: cp/decl.c:6309 #, gcc-internal-format -msgid "invalid types %<%T[%T]%> for array subscript" +msgid "ISO C++ forbids variable-size array %qD" msgstr "" -#: cp/decl2.c:415 +#: cp/decl.c:6311 #, gcc-internal-format -msgid "deleting array %q#D" +msgid "ISO C++ forbids variable-size array" msgstr "" -#: cp/decl2.c:421 +#: cp/decl.c:6341 #, gcc-internal-format -msgid "type %q#T argument given to %, expected pointer" +msgid "overflow in array dimension" msgstr "" -#: cp/decl2.c:433 +#: cp/decl.c:6415 #, gcc-internal-format -msgid "" -"cannot delete a function. Only pointer-to-objects are valid arguments to %" -"" +msgid "declaration of %qD as %s" msgstr "" -#: cp/decl2.c:441 +#: cp/decl.c:6417 #, gcc-internal-format -msgid "deleting %qT is undefined" +msgid "creating %s" msgstr "" -#. 14.5.2.2 [temp.mem] -#. -#. A local class shall not have member templates. -#: cp/decl2.c:477 +#: cp/decl.c:6429 #, gcc-internal-format -msgid "invalid declaration of member template %q#D in local class" +msgid "" +"declaration of %qD as multidimensional array must have bounds for all " +"dimensions except the first" msgstr "" -#: cp/decl2.c:486 +#: cp/decl.c:6433 #, gcc-internal-format -msgid "invalid use of % in template declaration of %q#D" +msgid "" +"multidimensional array must have bounds for all dimensions except the first" msgstr "" -#: cp/decl2.c:496 cp/pt.c:2967 +#: cp/decl.c:6468 #, gcc-internal-format -msgid "template declaration of %q#D" +msgid "return type specification for constructor invalid" msgstr "" -#: cp/decl2.c:545 +#: cp/decl.c:6478 #, gcc-internal-format -msgid "Java method %qD has non-Java return type %qT" +msgid "return type specification for destructor invalid" msgstr "" -#: cp/decl2.c:561 +#: cp/decl.c:6491 #, gcc-internal-format -msgid "Java method %qD has non-Java parameter type %qT" +msgid "operator %qT declared to return %qT" msgstr "" -#: cp/decl2.c:666 +#: cp/decl.c:6493 #, gcc-internal-format -msgid "prototype for %q#D does not match any in class %qT" +msgid "return type specified for %" msgstr "" -#: cp/decl2.c:763 +#: cp/decl.c:6515 #, gcc-internal-format -msgid "local class %q#T shall not have static data member %q#D" +msgid "unnamed variable or field declared void" msgstr "" -#: cp/decl2.c:771 +#: cp/decl.c:6519 #, gcc-internal-format -msgid "initializer invalid for static member with constructor" +msgid "variable or field %qE declared void" msgstr "" -#: cp/decl2.c:774 +#: cp/decl.c:6522 #, gcc-internal-format -msgid "(an out of class initialization is required)" +msgid "variable or field declared void" msgstr "" -#: cp/decl2.c:855 +#: cp/decl.c:6677 #, gcc-internal-format -msgid "member %qD conflicts with virtual function table field name" +msgid "type %qT is not derived from type %qT" msgstr "" -#: cp/decl2.c:874 +#: cp/decl.c:6697 cp/decl.c:6789 cp/decl.c:7919 #, gcc-internal-format -msgid "applying attributes to template parameters is not implemented" +msgid "declaration of %qD as non-function" msgstr "" -#: cp/decl2.c:884 +#: cp/decl.c:6703 #, gcc-internal-format -msgid "%qD is already defined in %qT" +msgid "declaration of %qD as non-member" msgstr "" -#: cp/decl2.c:932 +#: cp/decl.c:6733 #, gcc-internal-format -msgid "field initializer is not constant" +msgid "declarator-id missing; using reserved word %qD" msgstr "" -#: cp/decl2.c:960 +#: cp/decl.c:6822 #, gcc-internal-format -msgid "% specifiers are not permitted on non-static data members" +msgid "two or more data types in declaration of %qs" msgstr "" -#: cp/decl2.c:1006 +#: cp/decl.c:6865 #, gcc-internal-format -msgid "cannot declare %qD to be a bit-field type" +msgid "ISO C++ does not support %" msgstr "" -#: cp/decl2.c:1016 +#: cp/decl.c:6887 #, gcc-internal-format -msgid "cannot declare bit-field %qD with function type" +msgid "duplicate %qs" msgstr "" -#: cp/decl2.c:1023 +#: cp/decl.c:6925 cp/decl.c:6927 #, gcc-internal-format -msgid "%qD is already defined in the class %qT" +msgid "ISO C++ forbids declaration of %qs with no type" msgstr "" -#: cp/decl2.c:1030 +#: cp/decl.c:6952 #, gcc-internal-format -msgid "static member %qD cannot be a bit-field" +msgid "short, signed or unsigned invalid for %qs" msgstr "" -#: cp/decl2.c:1075 +#: cp/decl.c:6954 #, gcc-internal-format -msgid "anonymous struct not inside named type" +msgid "long, short, signed or unsigned invalid for %qs" msgstr "" -#: cp/decl2.c:1152 +#: cp/decl.c:6956 #, gcc-internal-format -msgid "namespace-scope anonymous aggregates must be static" +msgid "long and short specified together for %qs" msgstr "" -#: cp/decl2.c:1159 +#: cp/decl.c:6958 #, gcc-internal-format -msgid "anonymous union with no members" +msgid "long or short specified with char for %qs" msgstr "" -#: cp/decl2.c:1195 +#: cp/decl.c:6960 #, gcc-internal-format -msgid "% must return type %qT" +msgid "long or short specified with floating type for %qs" msgstr "" -#: cp/decl2.c:1204 +#: cp/decl.c:6962 #, gcc-internal-format -msgid "% takes type % (%qT) as first parameter" +msgid "signed and unsigned given together for %qs" msgstr "" -#: cp/decl2.c:1233 +#: cp/decl.c:6968 #, gcc-internal-format -msgid "% must return type %qT" +msgid "long, short, signed or unsigned used invalidly for %qs" msgstr "" -#: cp/decl2.c:1242 +#: cp/decl.c:7033 #, gcc-internal-format -msgid "% takes type %qT as first parameter" +msgid "complex invalid for %qs" msgstr "" -#: cp/decl2.c:3064 +#: cp/decl.c:7062 #, gcc-internal-format -msgid "inline function %qD used but never defined" +msgid "qualifiers are not allowed on declaration of %" msgstr "" -#: cp/decl2.c:3215 +#: cp/decl.c:7074 cp/typeck.c:6522 #, gcc-internal-format -msgid "default argument missing for parameter %P of %q+#D" +msgid "ignoring %qV qualifiers added to function type %qT" msgstr "" -#. damn ICE suppression -#: cp/error.c:2368 +#: cp/decl.c:7097 #, gcc-internal-format -msgid "unexpected letter %qc in locate_error\n" +msgid "member %qD cannot be declared both virtual and static" msgstr "" -#. Can't throw a reference. -#: cp/except.c:267 +#: cp/decl.c:7104 #, gcc-internal-format -msgid "type %qT is disallowed in Java % or %" +msgid "%<%T::%D%> is not a valid declarator" msgstr "" -#: cp/except.c:278 +#: cp/decl.c:7112 #, gcc-internal-format -msgid "call to Java % or % with % undefined" +msgid "typedef declaration invalid in parameter declaration" msgstr "" -#. Thrown object must be a Throwable. -#: cp/except.c:285 +#: cp/decl.c:7116 #, gcc-internal-format -msgid "type %qT is not derived from %" +msgid "storage class specifiers invalid in parameter declarations" msgstr "" -#: cp/except.c:348 +#: cp/decl.c:7123 #, gcc-internal-format -msgid "mixing C++ and Java catches in a single translation unit" +msgid "virtual outside class declaration" msgstr "" -#: cp/except.c:607 +#: cp/decl.c:7137 cp/decl.c:7146 #, gcc-internal-format -msgid "throwing NULL, which has integral, not pointer type" +msgid "multiple storage classes in declaration of %qs" msgstr "" -#: cp/except.c:630 cp/init.c:1887 +#: cp/decl.c:7169 #, gcc-internal-format -msgid "%qD should never be overloaded" +msgid "storage class specified for %qs" msgstr "" -#: cp/except.c:697 +#: cp/decl.c:7203 #, gcc-internal-format -msgid " in thrown expression" +msgid "top-level declaration of %qs specifies %" msgstr "" -#: cp/except.c:844 +#: cp/decl.c:7215 #, gcc-internal-format -msgid "" -"expression %qE of abstract class type %qT cannot be used in throw-expression" +msgid "storage class specifiers invalid in friend function declarations" msgstr "" -#: cp/except.c:929 +#: cp/decl.c:7341 #, gcc-internal-format -msgid "%Hexception of type %qT will be caught" +msgid "destructor cannot be static member function" msgstr "" -#: cp/except.c:931 +#: cp/decl.c:7344 #, gcc-internal-format -msgid "%H by earlier handler for %qT" +msgid "destructors may not be cv-qualified" msgstr "" -#: cp/except.c:961 +#: cp/decl.c:7364 #, gcc-internal-format -msgid "%H%<...%> handler must be the last handler for its try block" +msgid "constructor cannot be static member function" msgstr "" -#: cp/friend.c:152 +#: cp/decl.c:7367 #, gcc-internal-format -msgid "%qD is already a friend of class %qT" +msgid "constructors cannot be declared virtual" msgstr "" -#: cp/friend.c:228 +#: cp/decl.c:7372 #, gcc-internal-format -msgid "invalid type %qT declared %" +msgid "constructors may not be cv-qualified" msgstr "" -#. [temp.friend] -#. Friend declarations shall not declare partial -#. specializations. -#. template friend class T::X; -#. [temp.friend] -#. Friend declarations shall not declare partial -#. specializations. -#: cp/friend.c:244 cp/friend.c:274 +#: cp/decl.c:7392 #, gcc-internal-format -msgid "partial specialization %qT declared %" +msgid "can't initialize friend function %qs" msgstr "" -#: cp/friend.c:252 +#. Cannot be both friend and virtual. +#: cp/decl.c:7396 #, gcc-internal-format -msgid "class %qT is implicitly friends with itself" +msgid "virtual functions cannot be friends" msgstr "" -#: cp/friend.c:310 +#: cp/decl.c:7400 #, gcc-internal-format -msgid "%qT is not a member of %qT" +msgid "friend declaration not in class definition" msgstr "" -#: cp/friend.c:315 +#: cp/decl.c:7402 #, gcc-internal-format -msgid "%qT is not a member class template of %qT" +msgid "can't define friend function %qs in a local class definition" msgstr "" -#: cp/friend.c:323 +#: cp/decl.c:7415 #, gcc-internal-format -msgid "%qT is not a nested class of %qT" +msgid "destructors may not have parameters" msgstr "" -#. template friend class T; -#: cp/friend.c:336 +#: cp/decl.c:7434 cp/decl.c:7441 #, gcc-internal-format -msgid "template parameter type %qT declared %" +msgid "cannot declare reference to %q#T" msgstr "" -#. template friend class A; where A is not a template -#: cp/friend.c:342 +#: cp/decl.c:7435 #, gcc-internal-format -msgid "%q#T is not a template" +msgid "cannot declare pointer to %q#T" msgstr "" -#: cp/friend.c:364 +#: cp/decl.c:7443 #, gcc-internal-format -msgid "%qD is already a friend of %qT" +msgid "cannot declare pointer to %q#T member" msgstr "" -#: cp/friend.c:373 +#: cp/decl.c:7482 #, gcc-internal-format -msgid "%qT is already a friend of %qT" +msgid "%qD is a namespace" msgstr "" -#: cp/friend.c:497 +#: cp/decl.c:7521 #, gcc-internal-format -msgid "member %qD declared as friend before type %qT defined" +msgid "template-id %qD used as a declarator" msgstr "" -#: cp/friend.c:553 +#: cp/decl.c:7573 #, gcc-internal-format -msgid "friend declaration %q#D declares a non-template function" +msgid "extra qualification %<%T::%> on member %qs ignored" msgstr "" -#: cp/friend.c:557 +#: cp/decl.c:7592 #, gcc-internal-format -msgid "" -"(if this is not what you intended, make sure the function template has " -"already been declared and add <> after the function name here) -Wno-non-" -"template-friend disables this warning" +msgid "cannot declare member function %<%T::%s%> within %<%T%>" msgstr "" -#: cp/init.c:326 +#: cp/decl.c:7607 #, gcc-internal-format -msgid "%J%qD should be initialized in the member initialization list" +msgid "cannot declare member %<%T::%s%> within %qT" msgstr "" -#: cp/init.c:373 +#: cp/decl.c:7647 #, gcc-internal-format -msgid "%Jdefault-initialization of %q#D, which has reference type" +msgid "data member may not have variably modified type %qT" msgstr "" -#: cp/init.c:379 +#: cp/decl.c:7649 #, gcc-internal-format -msgid "%Juninitialized reference member %qD" +msgid "parameter may not have variably modified type %qT" msgstr "" -#: cp/init.c:382 +#. [dcl.fct.spec] The explicit specifier shall only be used in +#. declarations of constructors within a class definition. +#: cp/decl.c:7657 #, gcc-internal-format -msgid "%Juninitialized member %qD with % type %qT" +msgid "only declarations of constructors can be %" msgstr "" -#: cp/init.c:525 +#: cp/decl.c:7665 #, gcc-internal-format -msgid "%qD will be initialized after" +msgid "non-member %qs cannot be declared %" msgstr "" -#: cp/init.c:528 +#: cp/decl.c:7670 #, gcc-internal-format -msgid "base %qT will be initialized after" +msgid "non-object member %qs cannot be declared %" msgstr "" -#: cp/init.c:531 +#: cp/decl.c:7676 #, gcc-internal-format -msgid " %q#D" +msgid "function %qs cannot be declared %" msgstr "" -#: cp/init.c:533 +#: cp/decl.c:7681 #, gcc-internal-format -msgid " base %qT" +msgid "static %qs cannot be declared %" msgstr "" -#: cp/init.c:534 +#: cp/decl.c:7686 #, gcc-internal-format -msgid "%J when initialized here" +msgid "const %qs cannot be declared %" msgstr "" -#: cp/init.c:550 +#: cp/decl.c:7706 #, gcc-internal-format -msgid "%Jmultiple initializations given for %qD" +msgid "%Jtypedef name may not be a nested-name-specifier" msgstr "" -#: cp/init.c:553 +#: cp/decl.c:7722 #, gcc-internal-format -msgid "%Jmultiple initializations given for base %qT" +msgid "ISO C++ forbids nested type %qD with same name as enclosing class" msgstr "" -#: cp/init.c:620 +#: cp/decl.c:7821 #, gcc-internal-format -msgid "%Jinitializations for multiple members of %qT" +msgid "qualified function types cannot be used to declare %s functions" msgstr "" -#: cp/init.c:682 +#: cp/decl.c:7847 #, gcc-internal-format -msgid "" -"%Jbase class %q#T should be explicitly initialized in the copy constructor" +msgid "type qualifiers specified for friend class declaration" msgstr "" -#: cp/init.c:906 cp/init.c:925 +#: cp/decl.c:7852 #, gcc-internal-format -msgid "class %qT does not have any field named %qD" +msgid "% specified for friend class declaration" msgstr "" -#: cp/init.c:912 +#: cp/decl.c:7860 #, gcc-internal-format -msgid "" -"%q#D is a static data member; it can only be initialized at its definition" +msgid "template parameters cannot be friends" msgstr "" -#: cp/init.c:919 +#: cp/decl.c:7862 #, gcc-internal-format -msgid "%q#D is not a non-static data member of %qT" +msgid "friend declaration requires class-key, i.e. %" msgstr "" -#: cp/init.c:958 +#: cp/decl.c:7866 #, gcc-internal-format -msgid "unnamed initializer for %qT, which has no base classes" +msgid "friend declaration requires class-key, i.e. %" msgstr "" -#: cp/init.c:966 +#: cp/decl.c:7879 #, gcc-internal-format -msgid "unnamed initializer for %qT, which uses multiple inheritance" +msgid "trying to make class %qT a friend of global scope" msgstr "" -#: cp/init.c:1012 +#: cp/decl.c:7890 #, gcc-internal-format -msgid "%qD is both a direct base and an indirect virtual base" +msgid "invalid qualifiers on non-member function type" msgstr "" -#: cp/init.c:1020 +#: cp/decl.c:7909 #, gcc-internal-format -msgid "type %qD is not a direct or virtual base of %qT" +msgid "abstract declarator %qT used as declaration" msgstr "" -#: cp/init.c:1023 +#: cp/decl.c:7934 #, gcc-internal-format -msgid "type %qD is not a direct base of %qT" +msgid "cannot use %<::%> in parameter declaration" msgstr "" -#: cp/init.c:1103 +#. Something like struct S { int N::j; }; +#: cp/decl.c:7979 #, gcc-internal-format -msgid "bad array initializer" +msgid "invalid use of %<::%>" msgstr "" -#: cp/init.c:1302 +#: cp/decl.c:7994 #, gcc-internal-format -msgid "%qT is not an aggregate type" +msgid "can't make %qD into a method -- not in a class" msgstr "" -#: cp/init.c:1394 +#: cp/decl.c:8003 #, gcc-internal-format -msgid "qualified type %qT does not match destructor name %<~%T%>" +msgid "function %qD declared virtual inside a union" msgstr "" -#: cp/init.c:1402 +#: cp/decl.c:8012 #, gcc-internal-format -msgid "incomplete type %qT does not have member %qD" +msgid "%qD cannot be declared virtual, since it is always static" msgstr "" -#: cp/init.c:1421 +#: cp/decl.c:8030 #, gcc-internal-format -msgid "%qD is not a member of type %qT" +msgid "declaration of %qD as member of %qT" msgstr "" -#: cp/init.c:1440 +#: cp/decl.c:8106 #, gcc-internal-format -msgid "invalid pointer to bit-field %qD" +msgid "field %qD has incomplete type" msgstr "" -#: cp/init.c:1542 +#: cp/decl.c:8108 #, gcc-internal-format -msgid "invalid use of non-static member function %qD" +msgid "name %qT has incomplete type" msgstr "" -#: cp/init.c:1548 cp/semantics.c:1348 +#: cp/decl.c:8117 #, gcc-internal-format -msgid "invalid use of non-static data member %qD" +msgid " in instantiation of template %qT" msgstr "" -#: cp/init.c:1645 +#: cp/decl.c:8127 #, gcc-internal-format -msgid "size in array new must have integral type" +msgid "%qE is neither function nor member function; cannot be declared friend" msgstr "" -#: cp/init.c:1648 +#: cp/decl.c:8138 #, gcc-internal-format -msgid "zero size array reserves no space" +msgid "member functions are implicitly friends of their class" msgstr "" -#: cp/init.c:1656 +#. An attempt is being made to initialize a non-static +#. member. But, from [class.mem]: +#. +#. 4 A member-declarator can contain a +#. constant-initializer only if it declares a static +#. member (_class.static_) of integral or enumeration +#. type, see _class.static.data_. +#. +#. This used to be relatively common practice, but +#. 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:8178 #, gcc-internal-format -msgid "new cannot be applied to a reference type" +msgid "ISO C++ forbids initialization of member %qD" msgstr "" -#: cp/init.c:1662 +#: cp/decl.c:8180 #, gcc-internal-format -msgid "new cannot be applied to a function type" +msgid "making %qD static" msgstr "" -#: cp/init.c:1694 +#: cp/decl.c:8238 #, gcc-internal-format -msgid "call to Java constructor, while % undefined" +msgid "storage class % invalid for function %qs" msgstr "" -#: cp/init.c:1710 +#: cp/decl.c:8240 #, gcc-internal-format -msgid "can't find class$" +msgid "storage class % invalid for function %qs" msgstr "" -#: cp/init.c:1838 +#: cp/decl.c:8242 #, gcc-internal-format -msgid "invalid type % for new" +msgid "storage class %<__thread%> invalid for function %qs" msgstr "" -#: cp/init.c:1848 +#: cp/decl.c:8253 #, gcc-internal-format -msgid "uninitialized const in % of %q#T" +msgid "" +"% specified invalid for function %qs declared out of global scope" msgstr "" -#: cp/init.c:1882 +#: cp/decl.c:8256 #, gcc-internal-format -msgid "call to Java constructor with %qs undefined" +msgid "" +"% specifier invalid for function %qs declared out of global scope" msgstr "" -#: cp/init.c:1922 +#: cp/decl.c:8264 #, gcc-internal-format -msgid "request for member %qD is ambiguous" +msgid "virtual non-class function %qs" msgstr "" -#: cp/init.c:2055 +#: cp/decl.c:8295 #, gcc-internal-format -msgid "ISO C++ forbids initialization in array new" +msgid "cannot declare member function %qD to have static linkage" msgstr "" -#: cp/init.c:2530 +#. FIXME need arm citation +#: cp/decl.c:8302 #, gcc-internal-format -msgid "initializer ends prematurely" +msgid "cannot declare static function inside another function" msgstr "" -#: cp/init.c:2583 +#: cp/decl.c:8331 #, gcc-internal-format -msgid "cannot initialize multi-dimensional array with initializer" +msgid "" +"% may not be used when defining (as opposed to declaring) a static " +"data member" msgstr "" -#: cp/init.c:2738 +#: cp/decl.c:8338 #, gcc-internal-format -msgid "possible problem detected in invocation of delete operator:" +msgid "static member %qD declared %" msgstr "" -#: cp/init.c:2741 -#, 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." +#: cp/decl.c:8343 +#, gcc-internal-format +msgid "cannot explicitly declare member %q#D to have extern linkage" msgstr "" -#: cp/init.c:2762 +#: cp/decl.c:8488 #, gcc-internal-format -msgid "unknown array size in delete" +msgid "default argument for %q#D has type %qT" msgstr "" -#: cp/init.c:2995 +#: cp/decl.c:8491 #, gcc-internal-format -msgid "type to vector delete is neither pointer or array type" +msgid "default argument for parameter of type %qT has type %qT" msgstr "" -#: cp/lex.c:468 +#: cp/decl.c:8508 #, gcc-internal-format -msgid "junk at end of #pragma %s" +msgid "default argument %qE uses local variable %qD" msgstr "" -#: cp/lex.c:475 +#: cp/decl.c:8576 #, gcc-internal-format -msgid "invalid #pragma %s" +msgid "parameter %qD invalidly declared method type" msgstr "" -#: cp/lex.c:483 +#: cp/decl.c:8600 #, gcc-internal-format -msgid "#pragma vtable no longer supported" +msgid "parameter %qD includes %s to array of unknown bound %qT" msgstr "" -#: cp/lex.c:562 +#. [class.copy] +#. +#. A declaration of a constructor for a class X is ill-formed if +#. its first parameter is of type (optionally cv-qualified) X +#. and either there are no other parameters or else all other +#. parameters have default arguments. +#. +#. We *don't* complain about member template instantiations that +#. have this form, though; they can occur as we try to decide +#. what constructor to use during overload resolution. Since +#. overload resolution will never prefer such a constructor to +#. the non-template copy constructor (which is either explicitly +#. 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:8759 #, gcc-internal-format -msgid "#pragma implementation for %qs appears after file is included" +msgid "invalid constructor; you probably meant %<%T (const %T&)%>" msgstr "" -#: cp/lex.c:587 +#: cp/decl.c:8878 #, gcc-internal-format -msgid "junk at end of #pragma GCC java_exceptions" +msgid "%qD may not be declared within a namespace" msgstr "" -#: cp/lex.c:601 +#: cp/decl.c:8880 #, gcc-internal-format -msgid "%qD not defined" +msgid "%qD may not be declared as static" msgstr "" -#: cp/lex.c:605 +#: cp/decl.c:8901 #, gcc-internal-format -msgid "%qD was not declared in this scope" +msgid "%qD must be a nonstatic member function" msgstr "" -#. In a template, it is invalid to write "f()" or "f(3)" if no -#. declaration of "f" is available. Historically, G++ and most -#. other compilers accepted that usage since they deferred all name -#. lookup until instantiation time rather than doing unqualified -#. name lookup at template definition time; explain to the user what -#. is going wrong. -#. -#. Note that we have the exact wording of the following message in -#. the manual (trouble.texi, node "Name lookup"), so they need to -#. be kept in synch. -#: cp/lex.c:642 +#: cp/decl.c:8910 #, gcc-internal-format msgid "" -"there are no arguments to %qD that depend on a template parameter, so a " -"declaration of %qD must be available" +"%qD must be either a non-static member function or a non-member function" msgstr "" -#: cp/lex.c:651 +#: cp/decl.c:8930 #, gcc-internal-format -msgid "" -"(if you use %<-fpermissive%>, G++ will accept your code, but allowing the " -"use of an undeclared name is deprecated)" +msgid "%qD must have an argument of class or enumerated type" msgstr "" -#: cp/mangle.c:2139 +#: cp/decl.c:8971 #, gcc-internal-format -msgid "call_expr cannot be mangled due to a defect in the C++ ABI" +msgid "conversion to %s%s will never use a type conversion operator" msgstr "" -#: cp/mangle.c:2147 +#. 13.4.0.3 +#: cp/decl.c:8978 #, gcc-internal-format -msgid "zero-operand casts cannot be mangled due to a defect in the C++ ABI" +msgid "ISO C++ prohibits overloading operator ?:" msgstr "" -#: cp/mangle.c:2197 +#: cp/decl.c:9028 #, gcc-internal-format -msgid "omitted middle operand to % operand cannot be mangled" +msgid "postfix %qD must take % as its argument" msgstr "" -#: cp/mangle.c:2507 +#: cp/decl.c:9032 #, gcc-internal-format -msgid "the mangled name of %qD will change in a future version of GCC" +msgid "postfix %qD must take % as its second argument" msgstr "" -#: cp/method.c:456 +#: cp/decl.c:9039 #, gcc-internal-format -msgid "generic thunk code fails for method %q#D which uses %<...%>" +msgid "%qD must take either zero or one argument" msgstr "" -#: cp/method.c:691 +#: cp/decl.c:9041 #, gcc-internal-format -msgid "non-static const member %q#D, can't use default assignment operator" +msgid "%qD must take either one or two arguments" msgstr "" -#: cp/method.c:697 +#: cp/decl.c:9062 #, gcc-internal-format -msgid "non-static reference member %q#D, can't use default assignment operator" +msgid "prefix %qD should return %qT" msgstr "" -#: cp/method.c:809 +#: cp/decl.c:9068 #, gcc-internal-format -msgid "%Hsynthesized method %qD first required here " +msgid "postfix %qD should return %qT" msgstr "" -#: cp/method.c:1136 +#: cp/decl.c:9077 #, 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" +msgid "%qD must take %" msgstr "" -#: cp/name-lookup.c:692 +#: cp/decl.c:9079 cp/decl.c:9087 #, gcc-internal-format -msgid "redeclaration of % as %qT" +msgid "%qD must take exactly one argument" msgstr "" -#. A redeclaration of main, but not a duplicate of the -#. previous one. -#. -#. [basic.start.main] -#. -#. This function shall not be overloaded. -#: cp/name-lookup.c:724 +#: cp/decl.c:9089 #, gcc-internal-format -msgid "invalid redeclaration of %qD" +msgid "%qD must take exactly two arguments" msgstr "" -#: cp/name-lookup.c:725 +#: cp/decl.c:9097 #, gcc-internal-format -msgid "as %qD" +msgid "user-defined %qD always evaluates both arguments" msgstr "" -#: cp/name-lookup.c:813 +#: cp/decl.c:9111 #, gcc-internal-format -msgid "type mismatch with previous external decl of %q#D" +msgid "%qD should return by value" msgstr "" -#: cp/name-lookup.c:814 +#: cp/decl.c:9123 cp/decl.c:9126 #, gcc-internal-format -msgid "previous external decl of %q#D" +msgid "%qD cannot have default arguments" msgstr "" -#: cp/name-lookup.c:896 +#: cp/decl.c:9183 #, gcc-internal-format -msgid "extern declaration of %q#D doesn't match" +msgid "using template type parameter %qT after %qs" msgstr "" -#: cp/name-lookup.c:897 +#: cp/decl.c:9198 #, gcc-internal-format -msgid "global declaration %q#D" +msgid "using typedef-name %qD after %qs" msgstr "" -#: cp/name-lookup.c:933 cp/name-lookup.c:940 +#: cp/decl.c:9199 #, gcc-internal-format -msgid "declaration of %q#D shadows a parameter" +msgid "%q+D has a previous declaration here" msgstr "" -#. Location of previous decl is not useful in this case. -#: cp/name-lookup.c:965 +#: cp/decl.c:9207 #, gcc-internal-format -msgid "declaration of %qD shadows a member of 'this'" +msgid "%qT referred to as %qs" msgstr "" -#: cp/name-lookup.c:971 +#: cp/decl.c:9208 cp/decl.c:9215 #, gcc-internal-format -msgid "declaration of %qD shadows a previous local" +msgid "%q+T has a previous declaration here" msgstr "" -#: cp/name-lookup.c:978 +#: cp/decl.c:9214 #, gcc-internal-format -msgid "declaration of %qD shadows a global declaration" +msgid "%qT referred to as enum" msgstr "" -#: cp/name-lookup.c:1094 +#. If a class template appears as elaborated type specifier +#. without a template header such as: +#. +#. template class C {}; +#. void f(class C); // No template header here +#. +#. then the required template argument is missing. +#: cp/decl.c:9229 #, gcc-internal-format -msgid "name lookup of %qD changed" +msgid "template argument required for %<%s %T%>" msgstr "" -#: cp/name-lookup.c:1095 +#: cp/decl.c:9277 cp/name-lookup.c:2628 #, gcc-internal-format -msgid " matches this %qD under ISO standard rules" +msgid "%qD has the same name as the class in which it is declared" msgstr "" -#: cp/name-lookup.c:1097 +#: cp/decl.c:9415 #, gcc-internal-format -msgid " matches this %qD under old rules" +msgid "use of enum %q#D without previous declaration" msgstr "" -#: cp/name-lookup.c:1115 cp/name-lookup.c:1123 +#: cp/decl.c:9433 #, gcc-internal-format -msgid "name lookup of %qD changed for new ISO % scoping" +msgid "redeclaration of %qT as a non-template" msgstr "" -#: cp/name-lookup.c:1117 +#: cp/decl.c:9540 #, gcc-internal-format -msgid " cannot use obsolete binding at %qD because it has a destructor" +msgid "derived union %qT invalid" msgstr "" -#: cp/name-lookup.c:1125 +#: cp/decl.c:9546 #, gcc-internal-format -msgid " using obsolete binding at %qD" +msgid "Java class %qT cannot have multiple bases" msgstr "" -#: cp/name-lookup.c:1178 +#: cp/decl.c:9554 #, gcc-internal-format -msgid "%s %s(%E) %p %d\n" +msgid "Java class %qT cannot have virtual bases" msgstr "" -#: cp/name-lookup.c:1181 +#: cp/decl.c:9573 #, gcc-internal-format -msgid "%s %s %p %d\n" +msgid "base type %qT fails to be a struct or class type" msgstr "" -#: cp/name-lookup.c:1307 +#: cp/decl.c:9606 #, gcc-internal-format -msgid "XXX is_class_level != (current_scope == class_scope)\n" +msgid "recursive type %qT undefined" msgstr "" -#: cp/name-lookup.c:1863 +#: cp/decl.c:9608 #, gcc-internal-format -msgid "%q#D hides constructor for %q#T" +msgid "duplicate base type %qT invalid" msgstr "" -#: cp/name-lookup.c:1879 +#: cp/decl.c:9678 #, gcc-internal-format -msgid "%q#D conflicts with previous using declaration %q#D" +msgid "multiple definition of %q#T" msgstr "" -#: cp/name-lookup.c:1898 +#: cp/decl.c:9679 #, gcc-internal-format -msgid "previous non-function declaration %q#D" +msgid "%Jprevious definition here" msgstr "" -#: cp/name-lookup.c:1899 +#. DR 377 +#. +#. IF no integral type can represent all the enumerator values, the +#. enumeration is ill-formed. +#: cp/decl.c:9816 #, gcc-internal-format -msgid "conflicts with function declaration %q#D" +msgid "no integral type can represent all of the enumerator values for %qT" 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/decl.c:9922 #, gcc-internal-format -msgid "%qT is not a namespace" +msgid "enumerator value for %qD not integer constant" msgstr "" -#. 7.3.3/5 -#. A using-declaration shall not name a template-id. -#: cp/name-lookup.c:1987 +#: cp/decl.c:9949 #, gcc-internal-format -msgid "a using-declaration cannot specify a template-id. Try %" +msgid "overflow in enumeration values at %qD" msgstr "" -#: cp/name-lookup.c:1994 +#: cp/decl.c:10020 #, gcc-internal-format -msgid "namespace %qD not allowed in using-declaration" +msgid "return type %q#T is incomplete" msgstr "" -#: cp/name-lookup.c:2030 +#: cp/decl.c:10137 cp/typeck.c:6274 #, gcc-internal-format -msgid "%qD not declared" +msgid "% should return a reference to %<*this%>" msgstr "" -#: cp/name-lookup.c:2050 cp/name-lookup.c:2086 cp/name-lookup.c:2120 +#: cp/decl.c:10472 #, gcc-internal-format -msgid "%qD is already declared in this scope" +msgid "parameter %qD declared void" msgstr "" -#: cp/name-lookup.c:2126 +#: cp/decl.c:10965 #, gcc-internal-format -msgid "using declaration %qD introduced ambiguous type %qT" +msgid "invalid member function declaration" msgstr "" -#: cp/name-lookup.c:2699 +#: cp/decl.c:10980 #, gcc-internal-format -msgid "using-declaration for non-member at class scope" +msgid "%qD is already defined in class %qT" msgstr "" -#: cp/name-lookup.c:2725 +#: cp/decl.c:11190 #, gcc-internal-format -msgid "%<%T::%D%> names destructor" +msgid "static member function %q#D declared with type qualifiers" msgstr "" -#: cp/name-lookup.c:2730 +#: cp/decl2.c:273 #, gcc-internal-format -msgid "%<%T::%D%> names constructor" +msgid "name missing for member function" msgstr "" -#: cp/name-lookup.c:2735 +#: cp/decl2.c:366 cp/decl2.c:380 #, gcc-internal-format -msgid "%<%T::%D%> names constructor in %qT" +msgid "ambiguous conversion for array subscript" msgstr "" -#: cp/name-lookup.c:2751 +#: cp/decl2.c:374 #, gcc-internal-format -msgid "no members matching %<%T::%D%> in %q#T" +msgid "invalid types %<%T[%T]%> for array subscript" msgstr "" -#: cp/name-lookup.c:2820 +#: cp/decl2.c:417 #, gcc-internal-format -msgid "declaration of %qD not in a namespace surrounding %qD" +msgid "deleting array %q#D" msgstr "" -#: cp/name-lookup.c:2828 +#: cp/decl2.c:423 #, gcc-internal-format -msgid "explicit qualification in declaration of `%D'" +msgid "type %q#T argument given to %, expected pointer" msgstr "" -#: cp/name-lookup.c:2864 +#: cp/decl2.c:435 #, gcc-internal-format -msgid "%qD should have been declared inside %qD" +msgid "" +"cannot delete a function. Only pointer-to-objects are valid arguments to %" +"" msgstr "" -#: cp/name-lookup.c:2926 +#: cp/decl2.c:443 #, gcc-internal-format -msgid "namespace alias %qD not allowed here, assuming %qD" +msgid "deleting %qT is undefined" msgstr "" -#. The parser did not find it, so it's not there. -#: cp/name-lookup.c:3041 +#. 14.5.2.2 [temp.mem] +#. +#. A local class shall not have member templates. +#: cp/decl2.c:479 #, gcc-internal-format -msgid "unknown namespace %qD" +msgid "invalid declaration of member template %q#D in local class" msgstr "" -#: cp/name-lookup.c:3202 +#: cp/decl2.c:488 #, gcc-internal-format -msgid "namespace %qT undeclared" +msgid "invalid use of % in template declaration of %q#D" msgstr "" -#: cp/name-lookup.c:3246 +#: cp/decl2.c:498 cp/pt.c:3007 #, gcc-internal-format -msgid "strong using only meaningful at namespace scope" +msgid "template declaration of %q#D" msgstr "" -#: cp/name-lookup.c:3253 +#: cp/decl2.c:547 #, gcc-internal-format -msgid "%qD attribute directive ignored" +msgid "Java method %qD has non-Java return type %qT" msgstr "" -#: cp/name-lookup.c:3388 +#: cp/decl2.c:563 #, gcc-internal-format -msgid "use of %qD is ambiguous" +msgid "Java method %qD has non-Java parameter type %qT" msgstr "" -#: cp/name-lookup.c:3389 +#: cp/decl2.c:668 #, gcc-internal-format -msgid " first declared as %q#D here" +msgid "prototype for %q#D does not match any in class %qT" msgstr "" -#: cp/name-lookup.c:3391 +#: cp/decl2.c:765 #, gcc-internal-format -msgid " also declared as %q#D here" +msgid "local class %q#T shall not have static data member %q#D" msgstr "" -#: cp/name-lookup.c:3406 +#: cp/decl2.c:773 #, gcc-internal-format -msgid "%qD denotes an ambiguous type" +msgid "initializer invalid for static member with constructor" msgstr "" -#: cp/name-lookup.c:3407 +#: cp/decl2.c:776 #, gcc-internal-format -msgid "%J first type here" +msgid "(an out of class initialization is required)" msgstr "" -#: cp/name-lookup.c:3408 +#: cp/decl2.c:857 #, gcc-internal-format -msgid "%J other type here" +msgid "member %qD conflicts with virtual function table field name" 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/decl2.c:876 #, gcc-internal-format -msgid "invalid use of %qD" +msgid "applying attributes to template parameters is not implemented" msgstr "" -#: cp/name-lookup.c:3526 +#: cp/decl2.c:886 #, gcc-internal-format -msgid "%<%D::%D%> is not a template" +msgid "%qD is already defined in %qT" msgstr "" -#: cp/name-lookup.c:3541 +#: cp/decl2.c:907 #, gcc-internal-format -msgid "%qD undeclared in namespace %qD" +msgid "initializer specified for static member function %qD" msgstr "" -#: cp/name-lookup.c:4168 +#: cp/decl2.c:930 #, gcc-internal-format -msgid "%qD is not a function," +msgid "field initializer is not constant" msgstr "" -#: cp/name-lookup.c:4169 +#: cp/decl2.c:957 #, gcc-internal-format -msgid " conflict with %qD" +msgid "% specifiers are not permitted on non-static data members" msgstr "" -#: cp/name-lookup.c:4954 +#: cp/decl2.c:1003 #, gcc-internal-format -msgid "XXX entering pop_everything ()\n" +msgid "cannot declare %qD to be a bit-field type" msgstr "" -#: cp/name-lookup.c:4963 +#: cp/decl2.c:1013 #, gcc-internal-format -msgid "XXX leaving pop_everything ()\n" +msgid "cannot declare bit-field %qD with function type" msgstr "" -#: cp/parser.c:1849 +#: cp/decl2.c:1020 #, gcc-internal-format -msgid "minimum/maximum operators are deprecated" +msgid "%qD is already defined in the class %qT" msgstr "" -#: cp/parser.c:1869 +#: cp/decl2.c:1027 #, gcc-internal-format -msgid "%<#pragma%> is not allowed here" +msgid "static member %qD cannot be a bit-field" msgstr "" -#: cp/parser.c:1898 +#: cp/decl2.c:1072 #, gcc-internal-format -msgid "%<%D::%D%> has not been declared" +msgid "anonymous struct not inside named type" msgstr "" -#: cp/parser.c:1901 cp/semantics.c:2416 +#: cp/decl2.c:1155 #, gcc-internal-format -msgid "%<::%D%> has not been declared" +msgid "namespace-scope anonymous aggregates must be static" msgstr "" -#: cp/parser.c:1904 +#: cp/decl2.c:1162 #, gcc-internal-format -msgid "request for member %qD in non-class type %qT" +msgid "anonymous union with no members" msgstr "" -#: cp/parser.c:1907 +#: cp/decl2.c:1198 #, gcc-internal-format -msgid "%<%T::%D%> has not been declared" +msgid "% must return type %qT" msgstr "" -#: cp/parser.c:1910 +#: cp/decl2.c:1207 #, gcc-internal-format -msgid "%qD has not been declared" +msgid "% takes type % (%qT) as first parameter" msgstr "" -#: cp/parser.c:1913 +#: cp/decl2.c:1236 #, gcc-internal-format -msgid "%<%D::%D%> %s" +msgid "% must return type %qT" msgstr "" -#: cp/parser.c:1915 +#: cp/decl2.c:1245 #, gcc-internal-format -msgid "%<::%D%> %s" +msgid "% takes type %qT as first parameter" msgstr "" -#: cp/parser.c:1917 +#: cp/decl2.c:3072 #, gcc-internal-format -msgid "%qD %s" +msgid "inline function %q+D used but never defined" msgstr "" -#: cp/parser.c:1969 +#: cp/decl2.c:3228 #, gcc-internal-format -msgid "new types may not be defined in a return type" +msgid "default argument missing for parameter %P of %q+#D" msgstr "" -#: cp/parser.c:1970 +#. Can't throw a reference. +#: cp/except.c:267 #, gcc-internal-format -msgid "(perhaps a semicolon is missing after the definition of %qT)" +msgid "type %qT is disallowed in Java % or %" msgstr "" -#: cp/parser.c:1989 cp/pt.c:4336 +#: cp/except.c:278 #, gcc-internal-format -msgid "%qT is not a template" +msgid "call to Java % or % with % undefined" msgstr "" -#: cp/parser.c:1991 +#. Thrown object must be a Throwable. +#: cp/except.c:285 #, gcc-internal-format -msgid "%qE is not a template" +msgid "type %qT is not derived from %" msgstr "" -#: cp/parser.c:1993 +#: cp/except.c:348 #, gcc-internal-format -msgid "invalid template-id" +msgid "mixing C++ and Java catches in a single translation unit" msgstr "" -#: cp/parser.c:2022 +#: cp/except.c:607 #, gcc-internal-format -msgid "%s cannot appear in a constant-expression" +msgid "throwing NULL, which has integral, not pointer type" msgstr "" -#: cp/parser.c:2047 +#: cp/except.c:630 cp/init.c:1903 #, gcc-internal-format -msgid "invalid use of template-name %qE without an argument list" +msgid "%qD should never be overloaded" msgstr "" -#. Issue an error message. -#: cp/parser.c:2052 +#: cp/except.c:697 #, gcc-internal-format -msgid "%qE does not name a type" +msgid " in thrown expression" msgstr "" -#: cp/parser.c:2084 +#: cp/except.c:844 #, gcc-internal-format -msgid "(perhaps % was intended)" +msgid "" +"expression %qE of abstract class type %qT cannot be used in throw-expression" msgstr "" -#: cp/parser.c:2099 +#: cp/except.c:929 #, gcc-internal-format -msgid "%qE in namespace %qE does not name a type" +msgid "%Hexception of type %qT will be caught" msgstr "" -#: cp/parser.c:2102 +#: cp/except.c:931 #, gcc-internal-format -msgid "%qE in class %qT does not name a type" +msgid "%H by earlier handler for %qT" msgstr "" -#: cp/parser.c:2828 +#: cp/except.c:961 #, gcc-internal-format -msgid "ISO C++ forbids braced-groups within expressions" +msgid "%H%<...%> handler must be the last handler for its try block" msgstr "" -#: cp/parser.c:2837 +#: cp/friend.c:152 #, gcc-internal-format -msgid "statement-expressions are allowed only inside functions" +msgid "%qD is already a friend of class %qT" msgstr "" -#: cp/parser.c:2888 +#: cp/friend.c:228 #, gcc-internal-format -msgid "% may not be used in this context" +msgid "invalid type %qT declared %" msgstr "" -#: cp/parser.c:3035 +#. [temp.friend] +#. Friend declarations shall not declare partial +#. specializations. +#. template friend class T::X; +#. [temp.friend] +#. Friend declarations shall not declare partial +#. specializations. +#: cp/friend.c:244 cp/friend.c:274 #, gcc-internal-format -msgid "local variable %qD may not appear in this context" +msgid "partial specialization %qT declared %" msgstr "" -#: cp/parser.c:3412 +#: cp/friend.c:252 #, gcc-internal-format -msgid "typedef-name %qD used as destructor declarator" +msgid "class %qT is implicitly friends with itself" msgstr "" -#: cp/parser.c:4066 +#: cp/friend.c:310 #, gcc-internal-format -msgid "ISO C++ forbids compound-literals" +msgid "%qT is not a member of %qT" msgstr "" -#: cp/parser.c:5010 +#: cp/friend.c:315 #, gcc-internal-format -msgid "array bound forbidden after parenthesized type-id" +msgid "%qT is not a member class template of %qT" msgstr "" -#: cp/parser.c:5011 +#: cp/friend.c:323 #, gcc-internal-format -msgid "try removing the parentheses around the type-id" +msgid "%qT is not a nested class of %qT" msgstr "" -#: cp/parser.c:5213 +#. template friend class T; +#: cp/friend.c:336 #, gcc-internal-format -msgid "expression in new-declarator must have integral or enumeration type" +msgid "template parameter type %qT declared %" msgstr "" -#: cp/parser.c:5402 +#. template friend class A; where A is not a template +#: cp/friend.c:342 #, gcc-internal-format -msgid "use of old-style cast" +msgid "%q#T is not a template" msgstr "" -#: cp/parser.c:6181 +#: cp/friend.c:364 #, gcc-internal-format -msgid "case label %qE not within a switch statement" +msgid "%qD is already a friend of %qT" msgstr "" -#: cp/parser.c:6725 +#: cp/friend.c:373 #, gcc-internal-format -msgid "ISO C++ forbids computed gotos" +msgid "%qT is already a friend of %qT" msgstr "" -#: cp/parser.c:6850 +#: cp/friend.c:497 #, gcc-internal-format -msgid "extra %<;%>" +msgid "member %qD declared as friend before type %qT defined" msgstr "" -#: cp/parser.c:7172 +#: cp/friend.c:553 #, gcc-internal-format -msgid "mixing declarations and function-definitions is forbidden" +msgid "friend declaration %q#D declares a non-template function" msgstr "" -#: cp/parser.c:7303 +#: cp/friend.c:557 #, gcc-internal-format -msgid "duplicate %" +msgid "" +"(if this is not what you intended, make sure the function template has " +"already been declared and add <> after the function name here) -Wno-non-" +"template-friend disables this warning" msgstr "" -#: cp/parser.c:7472 +#: cp/init.c:327 #, gcc-internal-format -msgid "class definition may not be declared a friend" +msgid "%J%qD should be initialized in the member initialization list" msgstr "" -#: cp/parser.c:7786 +#: cp/init.c:375 #, gcc-internal-format -msgid "only constructors take base initializers" +msgid "%Jdefault-initialization of %q#D, which has reference type" msgstr "" -#: cp/parser.c:7837 +#: cp/init.c:381 #, gcc-internal-format -msgid "anachronistic old-style base class initializer" +msgid "%Juninitialized reference member %qD" msgstr "" -#: cp/parser.c:7879 +#: cp/init.c:384 #, gcc-internal-format -msgid "" -"keyword % not allowed in this context (a qualified member " -"initializer is implicitly a type)" +msgid "%Juninitialized member %qD with % type %qT" msgstr "" -#. Warn that we do not support `export'. -#: cp/parser.c:8245 +#: cp/init.c:527 #, gcc-internal-format -msgid "keyword % not implemented, and will be ignored" +msgid "%q+D will be initialized after" msgstr "" -#. Otherwise, emit an error about the invalid digraph, but continue -#. parsing because we got our argument list. -#: cp/parser.c:8618 +#: cp/init.c:530 #, gcc-internal-format -msgid "%<<::%> cannot begin a template-argument list" +msgid "base %qT will be initialized after" msgstr "" -#: cp/parser.c:8619 +#: cp/init.c:533 #, gcc-internal-format -msgid "" -"%<<:%> is an alternate spelling for %<[%>. Insert whitespace between %<<%> " -"and %<::%>" +msgid " %q+#D" msgstr "" -#: cp/parser.c:8626 +#: cp/init.c:535 #, gcc-internal-format -msgid "(if you use -fpermissive G++ will accept your code)" +msgid " base %qT" msgstr "" -#: cp/parser.c:8690 +#: cp/init.c:536 #, gcc-internal-format -msgid "parse error in template argument list" +msgid "%J when initialized here" msgstr "" -#. Explain what went wrong. -#: cp/parser.c:8803 +#: cp/init.c:552 #, gcc-internal-format -msgid "non-template %qD used as template" +msgid "%Jmultiple initializations given for %qD" msgstr "" -#: cp/parser.c:8804 +#: cp/init.c:555 #, gcc-internal-format -msgid "use %<%T::template %D%> to indicate that it is a template" +msgid "%Jmultiple initializations given for base %qT" msgstr "" -#: cp/parser.c:9393 cp/parser.c:15241 +#: cp/init.c:622 #, gcc-internal-format -msgid "template declaration of %qs" +msgid "%Jinitializations for multiple members of %qT" msgstr "" -#: cp/parser.c:9866 +#: cp/init.c:684 #, gcc-internal-format -msgid "using % outside of template" +msgid "" +"%Jbase class %q#T should be explicitly initialized in the copy constructor" msgstr "" -#: cp/parser.c:10061 +#: cp/init.c:908 cp/init.c:927 #, gcc-internal-format -msgid "type attributes are honored only at type definition" +msgid "class %qT does not have any field named %qD" msgstr "" -#. [namespace.udecl] -#. -#. A using declaration shall not name a template-id. -#: cp/parser.c:10443 +#: cp/init.c:914 #, gcc-internal-format -msgid "a template-id may not appear in a using-declaration" +msgid "" +"%q#D is a static data member; it can only be initialized at its definition" msgstr "" -#: cp/parser.c:10773 +#: cp/init.c:921 #, gcc-internal-format -msgid "an asm-specification is not allowed on a function-definition" +msgid "%q#D is not a non-static data member of %qT" msgstr "" -#: cp/parser.c:10775 +#: cp/init.c:960 #, gcc-internal-format -msgid "attributes are not allowed on a function-definition" +msgid "unnamed initializer for %qT, which has no base classes" msgstr "" -#: cp/parser.c:10907 +#: cp/init.c:968 #, gcc-internal-format -msgid "attributes after parenthesized initializer ignored" +msgid "unnamed initializer for %qT, which uses multiple inheritance" msgstr "" -#: cp/parser.c:11292 +#: cp/init.c:1014 #, gcc-internal-format -msgid "array bound is not an integer constant" +msgid "%qD is both a direct base and an indirect virtual base" msgstr "" -#: cp/parser.c:11362 +#: cp/init.c:1022 #, gcc-internal-format -msgid "%<%T::%D%> is not a type" +msgid "type %qD is not a direct or virtual base of %qT" msgstr "" -#: cp/parser.c:11405 +#: cp/init.c:1025 #, gcc-internal-format -msgid "invalid use of constructor as a template" +msgid "type %qD is not a direct base of %qT" msgstr "" -#: cp/parser.c:11406 +#: cp/init.c:1105 #, gcc-internal-format -msgid "" -"use %<%T::%D%> instead of %<%T::%T%> to name the constructor in a qualified " -"name" +msgid "bad array initializer" msgstr "" -#: cp/parser.c:11594 +#: cp/init.c:1305 #, gcc-internal-format -msgid "duplicate cv-qualifier" +msgid "%qT is not an aggregate type" msgstr "" -#: cp/parser.c:12126 +#: cp/init.c:1397 #, gcc-internal-format -msgid "file ends in default argument" +msgid "qualified type %qT does not match destructor name %<~%T%>" msgstr "" -#: cp/parser.c:12188 +#: cp/init.c:1405 #, gcc-internal-format -msgid "deprecated use of default argument for parameter of non-function" +msgid "incomplete type %qT does not have member %qD" msgstr "" -#: cp/parser.c:12191 +#: cp/init.c:1424 #, gcc-internal-format -msgid "default arguments are only permitted for function parameters" +msgid "%qD is not a member of type %qT" msgstr "" -#: cp/parser.c:12933 +#: cp/init.c:1443 #, gcc-internal-format -msgid "invalid class name in declaration of %qD" +msgid "invalid pointer to bit-field %qD" msgstr "" -#: cp/parser.c:12944 +#: cp/init.c:1545 #, gcc-internal-format -msgid "declaration of %qD in %qD which does not enclose %qD" +msgid "invalid use of non-static member function %qD" msgstr "" -#: cp/parser.c:12957 +#: cp/init.c:1551 #, gcc-internal-format -msgid "extra qualification ignored" +msgid "invalid use of non-static data member %qD" msgstr "" -#: cp/parser.c:12968 +#: cp/init.c:1661 #, gcc-internal-format -msgid "an explicit specialization must be preceded by %