This is the mail archive of the fortran@gcc.gnu.org mailing list for the GNU Fortran project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[gfortran,patch] Internationalisation of the Fortran front-end


Hi all,

Attached is a patch (i18n.diff) that adds internationalization to the fortran front-end: it enables the compiler to issue localised error and warning messages. This is done in two complementary ways:

1. Messages issued by gfc_error, gfc_warning and other functions called on constant strings are translated using the msgid convention. That is, developpers will not have to worry about the localization of such messages.

2. Some of the messages are handled in a... rudimentary way. For those, I added manual translation macros: _(). For example, see changes in arith.c

Finally, I removed some nasty very english-specific constructions: exit gfc_article()!

I think while this is not a vital feature (although some will argue that localisation is an important composant of the GNU project), the earlier it can go in, the less work for the translators (and the better the translation).

Built and regtested on i686-linux.
OK for 4.1? (and do we want it for 4.0)


FX


PS: I don't know if a complete ChangeLog is needed, or if I can just list the files and functions and say "Added localisation support". I added the gcc.pot generated with maintainer mode, so that you can check it if you want.
Index: gcc/fortran/arith.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/fortran/arith.c,v
retrieving revision 1.30
diff -u -3 -p -r1.30 arith.c
--- gcc/fortran/arith.c	7 Jul 2005 07:54:41 -0000	1.30
+++ gcc/fortran/arith.c	30 Aug 2005 19:15:05 -0000
@@ -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");
Index: gcc/fortran/array.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/fortran/array.c,v
retrieving revision 1.18
diff -u -3 -p -r1.18 array.c
--- gcc/fortran/array.c	14 Jul 2005 01:37:41 -0000	1.18
+++ gcc/fortran/array.c	30 Aug 2005 19:15:05 -0000
@@ -169,8 +169,8 @@ gfc_match_array_ref (gfc_array_ref * ar,
 	}
     }
 
-  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 ** 
 
       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;
 	}
 
Index: gcc/fortran/check.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/fortran/check.c,v
retrieving revision 1.33
diff -u -3 -p -r1.33 check.c
--- gcc/fortran/check.c	9 Aug 2005 17:33:10 -0000	1.33
+++ gcc/fortran/check.c	30 Aug 2005 19:15:05 -0000
@@ -37,11 +37,11 @@ Software Foundation, 51 Franklin Street,
    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, gf
   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 ran
   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, i
   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
         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, gf
 
   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
 {
   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;
     }
 
Index: gcc/fortran/error.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/fortran/error.c,v
retrieving revision 1.15
diff -u -3 -p -r1.15 error.c
--- gcc/fortran/error.c	14 Jul 2005 10:12:15 -0000	1.15
+++ gcc/fortran/error.c	30 Aug 2005 19:15:05 -0000
@@ -449,12 +449,12 @@ error_print (const char *type, const cha
 /* Wrapper for error_print().  */
 
 static void
-error_printf (const char *format, ...)
+error_printf (const char *gmsgid, ...)
 {
   va_list argp;
 
-  va_start (argp, format);
-  error_print ("", format, argp);
+  va_start (argp, gmsgid);
+  error_print ("", _(gmsgid), 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 *gmsgid, ...)
 {
   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, gmsgid);
   if (buffer_flag == 0)
     warnings++;
-  error_print ("Warning:", format, argp);
+  error_print (_("Warning:"), _(gmsgid), 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 *gmsgid, ...)
 {
   va_list argp;
   bool warning;
@@ -514,11 +514,11 @@ gfc_notify_std (int std, const char *for
       else
 	errors++;
     }
-  va_start (argp, format);
+  va_start (argp, gmsgid);
   if (warning)
-    error_print ("Warning:", format, argp);
+    error_print (_("Warning:"), _(gmsgid), argp);
   else
-    error_print ("Error:", format, argp);
+    error_print (_("Error:"), _(gmsgid), argp);
   va_end (argp);
 
   error_char ('\0');
@@ -529,7 +529,7 @@ gfc_notify_std (int std, const char *for
 /* Immediate warning (i.e. do not buffer the warning).  */
 
 void
-gfc_warning_now (const char *format, ...)
+gfc_warning_now (const char *gmsgid, ...)
 {
   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, gmsgid);
+  error_print (_("Warning:"), _(gmsgid), 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 *gmsgid, ...)
 {
   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, gmsgid);
   if (buffer_flag == 0)
     errors++;
-  error_print ("Error:", format, argp);
+  error_print (_("Error:"), _(gmsgid), 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 *gmsgid, ...)
 {
   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, gmsgid);
+  error_print (_("Error:"), _(gmsgid), 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 *gmsgid, ...)
 {
   va_list argp;
 
   buffer_flag = 0;
 
-  va_start (argp, format);
-  error_print ("Fatal Error:", format, argp);
+  va_start (argp, gmsgid);
+  error_print (_("Fatal Error:"), _(gmsgid), 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);
 }
Index: gcc/fortran/expr.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/fortran/expr.c,v
retrieving revision 1.28
diff -u -3 -p -r1.28 expr.c
--- gcc/fortran/expr.c	3 Aug 2005 01:55:37 -0000	1.28
+++ gcc/fortran/expr.c	30 Aug 2005 19:15:05 -0000
@@ -255,15 +255,15 @@ gfc_extract_int (gfc_expr * expr, int *r
 {
 
   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 *optyp
 
   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 *optyp
       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 * lva
 
   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 * lva
   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);
     }
 
Index: gcc/fortran/gfortran.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/fortran/gfortran.h,v
retrieving revision 1.81
diff -u -3 -p -r1.81 gfortran.h
--- gcc/fortran/gfortran.h	19 Aug 2005 09:05:03 -0000	1.81
+++ gcc/fortran/gfortran.h	30 Aug 2005 19:15:06 -0000
@@ -30,6 +30,7 @@ Software Foundation, 51 Franklin Street,
    time I looked, so by comparison this is perfectly reasonable.  */
 
 #include "system.h"
+#include "intl.h"
 #include "coretypes.h"
 #include "input.h"
 
@@ -1519,7 +1520,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 *);
 
Index: gcc/fortran/gfortranspec.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/fortran/gfortranspec.c,v
retrieving revision 1.9
diff -u -3 -p -r1.9 gfortranspec.c
--- gcc/fortran/gfortranspec.c	25 Jun 2005 00:40:34 -0000	1.9
+++ gcc/fortran/gfortranspec.c	30 Aug 2005 19:15:06 -0000
@@ -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,7 +346,7 @@ lang_specific_driver (int *in_argc, cons
 	  break;
 
 	case OPTION_version:
-	  printf ("\
+	  printf (_("\
 GNU Fortran 95 (GCC %s)\n\
 Copyright (C) 2005 Free Software Foundation, Inc.\n\
 \n\
@@ -353,7 +354,7 @@ GNU Fortran comes with NO WARRANTY, to t
 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);
+"), version_string);
 	  exit (0);
 	  break;
 
@@ -528,7 +529,7 @@ For more information about these matters
 
   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");
Index: gcc/fortran/io.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/fortran/io.c,v
retrieving revision 1.30
diff -u -3 -p -r1.30 io.c
--- gcc/fortran/io.c	14 Aug 2005 16:15:39 -0000	1.30
+++ gcc/fortran/io.c	30 Aug 2005 19:15:07 -0000
@@ -400,11 +400,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;
@@ -421,7 +421,7 @@ check_format (void)
   t = format_lex ();
   if (t != FMT_LPAREN)
     {
-      error = "Missing leading left parenthesis";
+      error = _("Missing leading left parenthesis");
       goto syntax;
     }
 
@@ -459,7 +459,7 @@ format_item_1:
       t = format_lex ();
       if (t != FMT_P)
 	{
-	  error = "Expected P edit descriptor";
+	  error = _("Expected P edit descriptor");
 	  goto syntax;
 	}
 
@@ -467,7 +467,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:
@@ -497,7 +497,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;
 	}
 
@@ -542,7 +542,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;
 	    }
 
@@ -605,7 +605,7 @@ data_desc:
 	  u = format_lex ();
 	  if (u != FMT_POSINT)
 	    {
-	      error = "Positive exponent width required";
+	      error = _("Positive exponent width required");
 	      goto syntax;
 	    }
 	}
Index: gcc/fortran/matchexp.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/fortran/matchexp.c,v
retrieving revision 1.10
diff -u -3 -p -r1.10 matchexp.c
--- gcc/fortran/matchexp.c	22 Jul 2005 07:31:17 -0000	1.10
+++ gcc/fortran/matchexp.c	30 Aug 2005 19:15:07 -0000
@@ -26,7 +26,7 @@ Software Foundation, 51 Franklin Street,
 #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
Index: gcc/fortran/misc.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/fortran/misc.c,v
retrieving revision 1.10
diff -u -3 -p -r1.10 misc.c
--- gcc/fortran/misc.c	7 Jul 2005 07:54:42 -0000	1.10
+++ gcc/fortran/misc.c	30 Aug 2005 19:15:07 -0000
@@ -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 *
Index: gcc/fortran/module.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/fortran/module.c,v
retrieving revision 1.35
diff -u -3 -p -r1.35 module.c
--- gcc/fortran/module.c	19 Aug 2005 09:05:03 -0000	1.35
+++ gcc/fortran/module.c	30 Aug 2005 19:15:07 -0000
@@ -788,27 +788,25 @@ static char *atom_string, atom_name[MAX_
 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);
 }
 
 
@@ -1115,19 +1113,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");
Index: gcc/fortran/parse.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/fortran/parse.c,v
retrieving revision 1.30
diff -u -3 -p -r1.30 parse.c
--- gcc/fortran/parse.c	14 Aug 2005 21:45:03 -0000	1.30
+++ gcc/fortran/parse.c	30 Aug 2005 19:15:07 -0000
@@ -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:
Index: gcc/fortran/primary.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/fortran/primary.c,v
retrieving revision 1.34
diff -u -3 -p -r1.34 primary.c
--- gcc/fortran/primary.c	6 Aug 2005 19:18:45 -0000	1.34
+++ gcc/fortran/primary.c	30 Aug 2005 19:15:07 -0000
@@ -317,18 +317,18 @@ match_boz_constant (gfc_expr ** result)
     {
     case 'b':
       radix = 2;
-      rname = "binary";
+      rname = _("binary");
       break;
     case 'o':
       radix = 8;
-      rname = "octal";
+      rname = _("octal");
       break;
     case 'x':
       x_hex = 1;
       /* Fall through.  */
     case 'z':
       radix = 16;
-      rname = "hexadecimal";
+      rname = _("hexadecimal");
       break;
     default:
       goto backup;
@@ -351,7 +351,7 @@ 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);
+      gfc_error ("Empty set of digits in %s constant at %C", rname);
       return MATCH_ERROR;
     }
 
Index: gcc/fortran/resolve.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/fortran/resolve.c,v
retrieving revision 1.51
diff -u -3 -p -r1.51 resolve.c
--- gcc/fortran/resolve.c	10 Aug 2005 20:16:26 -0000	1.51
+++ gcc/fortran/resolve.c	30 Aug 2005 19:15:07 -0000
@@ -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;
 		}
 	    }
Index: gcc/fortran/symbol.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/fortran/symbol.c,v
retrieving revision 1.32
diff -u -3 -p -r1.32 symbol.c
--- gcc/fortran/symbol.c	3 Jul 2005 18:39:20 -0000	1.32
+++ gcc/fortran/symbol.c	30 Aug 2005 19:15:08 -0000
@@ -904,9 +904,8 @@ gfc_add_procedure (symbol_attribute * at
 
   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;
Index: gcc/fortran/trans-const.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/fortran/trans-const.c,v
retrieving revision 1.29
diff -u -3 -p -r1.29 trans-const.c
--- gcc/fortran/trans-const.c	7 Jul 2005 07:54:43 -0000	1.29
+++ gcc/fortran/trans-const.c	30 Aug 2005 19:15:09 -0000
@@ -86,12 +86,13 @@ gfc_build_string_const (int length, cons
   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
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://gcc.gnu.org/bugs.html\n";
"POT-Creation-Date: 2005-08-27 23:40+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"

#: c-decl.c:3709
msgid "<anonymous>"
msgstr ""

#: c-format.c:343 c-format.c:367
msgid "' ' flag"
msgstr ""

#: c-format.c:343 c-format.c:367
msgid "the ' ' printf flag"
msgstr ""

#: 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:344 c-format.c:368 c-format.c:402 c-format.c:414
msgid "the '+' printf flag"
msgstr ""

#: c-format.c:345 c-format.c:369 c-format.c:415 c-format.c:447
msgid "'#' flag"
msgstr ""

#: c-format.c:345 c-format.c:369 c-format.c:415
msgid "the '#' printf flag"
msgstr ""

#: c-format.c:346 c-format.c:370 c-format.c:445
msgid "'0' flag"
msgstr ""

#: c-format.c:346 c-format.c:370
msgid "the '0' printf flag"
msgstr ""

#: c-format.c:347 c-format.c:371 c-format.c:444 c-format.c:474
msgid "'-' flag"
msgstr ""

#: c-format.c:347 c-format.c:371
msgid "the '-' printf flag"
msgstr ""

#: c-format.c:348 c-format.c:428
msgid "''' flag"
msgstr ""

#: c-format.c:348
msgid "the ''' printf flag"
msgstr ""

#: c-format.c:349 c-format.c:429
msgid "'I' flag"
msgstr ""

#: c-format.c:349
msgid "the 'I' printf flag"
msgstr ""

#: 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:350 c-format.c:372 config/sol2-c.c:46
msgid "field width in printf format"
msgstr ""

#: c-format.c:351 c-format.c:373 c-format.c:404 c-format.c:417
msgid "precision"
msgstr ""

#: 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: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: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:403 c-format.c:416
msgid "'q' flag"
msgstr ""

#: c-format.c:403 c-format.c:416
msgid "the 'q' diagnostic flag"
msgstr ""

#: c-format.c:424
msgid "assignment suppression"
msgstr ""

#: c-format.c:424
msgid "the assignment suppression scanf feature"
msgstr ""

#: c-format.c:425
msgid "'a' flag"
msgstr ""

#: c-format.c:425
msgid "the 'a' scanf flag"
msgstr ""

#: c-format.c:426
msgid "field width in scanf format"
msgstr ""

#: c-format.c:427
msgid "length modifier in scanf format"
msgstr ""

#: c-format.c:428
msgid "the ''' scanf flag"
msgstr ""

#: c-format.c:429
msgid "the 'I' scanf flag"
msgstr ""

#: c-format.c:443
msgid "'_' flag"
msgstr ""

#: c-format.c:443
msgid "the '_' strftime flag"
msgstr ""

#: c-format.c:444
msgid "the '-' strftime flag"
msgstr ""

#: c-format.c:445
msgid "the '0' strftime flag"
msgstr ""

#: c-format.c:446 c-format.c:470
msgid "'^' flag"
msgstr ""

#: c-format.c:446
msgid "the '^' strftime flag"
msgstr ""

#: c-format.c:447
msgid "the '#' strftime flag"
msgstr ""

#: c-format.c:448
msgid "field width in strftime format"
msgstr ""

#: c-format.c:449
msgid "'E' modifier"
msgstr ""

#: c-format.c:449
msgid "the 'E' strftime modifier"
msgstr ""

#: c-format.c:450
msgid "'O' modifier"
msgstr ""

#: c-format.c:450
msgid "the 'O' strftime modifier"
msgstr ""

#: c-format.c:451
msgid "the 'O' modifier"
msgstr ""

#: c-format.c:469
msgid "fill character"
msgstr ""

#: c-format.c:469
msgid "fill character in strfmon format"
msgstr ""

#: c-format.c:470
msgid "the '^' strfmon flag"
msgstr ""

#: c-format.c:471
msgid "the '+' strfmon flag"
msgstr ""

#: c-format.c:472
msgid "'(' flag"
msgstr ""

#: c-format.c:472
msgid "the '(' strfmon flag"
msgstr ""

#: c-format.c:473
msgid "'!' flag"
msgstr ""

#: c-format.c:473
msgid "the '!' strfmon flag"
msgstr ""

#: c-format.c:474
msgid "the '-' strfmon flag"
msgstr ""

#: c-format.c:475
msgid "field width in strfmon format"
msgstr ""

#: c-format.c:476
msgid "left precision"
msgstr ""

#: c-format.c:476
msgid "left precision in strfmon format"
msgstr ""

#: c-format.c:477
msgid "right precision"
msgstr ""

#: c-format.c:477
msgid "right precision in strfmon format"
msgstr ""

#: c-format.c:478
msgid "length modifier in strfmon format"
msgstr ""

#: c-format.c:1703
msgid "field precision"
msgstr ""

#: c-incpath.c:70
#, c-format
msgid "ignoring duplicate directory \"%s\"\n"
msgstr ""

#: c-incpath.c:73
#, c-format
msgid "  as it is a non-system directory that duplicates a system directory\n"
msgstr ""

#: c-incpath.c:77
#, c-format
msgid "ignoring nonexistent directory \"%s\"\n"
msgstr ""

#: c-incpath.c:286
#, c-format
msgid "#include \"...\" search starts here:\n"
msgstr ""

#: c-incpath.c:290
#, c-format
msgid "#include <...> search starts here:\n"
msgstr ""

#: c-incpath.c:295
#, c-format
msgid "End of search list.\n"
msgstr ""

#: c-opts.c:1312
msgid "<built-in>"
msgstr ""

#: c-opts.c:1328
msgid "<command line>"
msgstr ""

#: 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:4302
msgid "array initialized from parenthesized string constant"
msgstr ""

#: c-typeck.c:4362 cp/typeck2.c:672
#, gcc-internal-format
msgid "char-array initialized from wide string"
msgstr ""

#: c-typeck.c:4367
msgid "wchar_t-array initialized from non-wide string"
msgstr ""

#: 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: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:4455 c-typeck.c:3954 cp/typeck.c:1392
#, gcc-internal-format
msgid "invalid use of non-lvalue array"
msgstr ""

#: c-typeck.c:4479
msgid "array initialized from non-constant array expression"
msgstr ""

#: c-typeck.c:4543 c-typeck.c:5919
#, gcc-internal-format
msgid "initializer element is not computable at load time"
msgstr ""

#. Although C99 is unclear about whether incomplete arrays
#. 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:4554 c-decl.c:3144 c-decl.c:3159
#, gcc-internal-format
msgid "variable-sized object may not be initialized"
msgstr ""

#: c-typeck.c:4558
msgid "invalid initializer"
msgstr ""

#: c-typeck.c:5032
msgid "extra brace group at end of initializer"
msgstr ""

#: c-typeck.c:5052
msgid "missing braces around initializer"
msgstr ""

#: c-typeck.c:5113
msgid "braces around scalar initializer"
msgstr ""

#: c-typeck.c:5170
msgid "initialization of flexible array member in a nested context"
msgstr ""

#: c-typeck.c:5172
msgid "initialization of a flexible array member"
msgstr ""

#: c-typeck.c:5199
msgid "missing initializer"
msgstr ""

#: c-typeck.c:5221
msgid "empty scalar initializer"
msgstr ""

#: c-typeck.c:5226
msgid "extra elements in scalar initializer"
msgstr ""

#: c-typeck.c:5330 c-typeck.c:5390
msgid "array index in non-array initializer"
msgstr ""

#: c-typeck.c:5335 c-typeck.c:5443
msgid "field name not in record or union initializer"
msgstr ""

#: c-typeck.c:5381
msgid "array index in initializer not of integer type"
msgstr ""

#: c-typeck.c:5386 c-typeck.c:5388
msgid "nonconstant array index in initializer"
msgstr ""

#: c-typeck.c:5392 c-typeck.c:5395
msgid "array index in initializer exceeds array bounds"
msgstr ""

#: c-typeck.c:5406
msgid "empty index range in initializer"
msgstr ""

#: c-typeck.c:5415
msgid "array index range in initializer exceeds array bounds"
msgstr ""

#: c-typeck.c:5490 c-typeck.c:5511 c-typeck.c:5983
msgid "initialized field with side-effects overwritten"
msgstr ""

#: c-typeck.c:6191
msgid "excess elements in char array initializer"
msgstr ""

#: c-typeck.c:6198 c-typeck.c:6244
msgid "excess elements in struct initializer"
msgstr ""

#: c-typeck.c:6259
msgid "non-static initialization of a flexible array member"
msgstr ""

#: c-typeck.c:6327
msgid "excess elements in union initializer"
msgstr ""

#: c-typeck.c:6414
msgid "excess elements in array initializer"
msgstr ""

#: c-typeck.c:6444
msgid "excess elements in vector initializer"
msgstr ""

#: c-typeck.c:6468
msgid "excess elements in scalar initializer"
msgstr ""

#: cfgrtl.c:2135
msgid "flow control insn inside a basic block"
msgstr ""

#: cfgrtl.c:2213
msgid "wrong insn in the fallthru edge"
msgstr ""

#: cfgrtl.c:2255
msgid "insn outside basic block"
msgstr ""

#: cfgrtl.c:2262
msgid "return not followed by barrier"
msgstr ""

#: cgraph.c:300 ipa-inline.c:292
msgid "function body not available"
msgstr ""

#: cgraph.c:302 cgraphunit.c:586
msgid "redefined extern inline functions are not considered for inlining"
msgstr ""

#: cgraph.c:305 cgraphunit.c:591
msgid "function not considered for inlining"
msgstr ""

#: cgraph.c:307 cgraphunit.c:589 ipa-inline.c:285
msgid "function not inlinable"
msgstr ""

#: collect2.c:373 gcc.c:6757
#, c-format
msgid "internal gcc abort in %s, at %s:%d"
msgstr ""

#: collect2.c:872
#, c-format
msgid "no arguments"
msgstr ""

#: collect2.c:1246 collect2.c:1394 collect2.c:1429
#, c-format
msgid "fopen %s"
msgstr ""

#: collect2.c:1249 collect2.c:1399 collect2.c:1432
#, c-format
msgid "fclose %s"
msgstr ""

#: collect2.c:1258
#, c-format
msgid "collect2 version %s"
msgstr ""

#: collect2.c:1348
#, c-format
msgid "%d constructor(s) found\n"
msgstr ""

#: collect2.c:1349
#, c-format
msgid "%d destructor(s)  found\n"
msgstr ""

#: collect2.c:1350
#, c-format
msgid "%d frame table(s) found\n"
msgstr ""

#: collect2.c:1487
#, c-format
msgid "can't get program status"
msgstr ""

#: collect2.c:1537
#, c-format
msgid "[cannot find %s]"
msgstr ""

#: collect2.c:1552
#, c-format
msgid "cannot find '%s'"
msgstr ""

#: collect2.c:1556 collect2.c:2045 collect2.c:2200 gcc.c:2804
#, c-format
msgid "pex_init failed"
msgstr ""

#: collect2.c:1591
#, c-format
msgid "[Leaving %s]\n"
msgstr ""

#: collect2.c:1811
#, c-format
msgid ""
"\n"
"write_c_file - output name is %s, prefix is %s\n"
msgstr ""

#: collect2.c:2019
#, c-format
msgid "cannot find 'nm'"
msgstr ""

#: collect2.c:2066
#, c-format
msgid "can't open nm output"
msgstr ""

#: collect2.c:2110
#, c-format
msgid "init function found in object %s"
msgstr ""

#: collect2.c:2118
#, c-format
msgid "fini function found in object %s"
msgstr ""

#: collect2.c:2221
#, c-format
msgid "can't open ldd output"
msgstr ""

#: collect2.c:2224
#, c-format
msgid ""
"\n"
"ldd output with constructors/destructors.\n"
msgstr ""

#: collect2.c:2239
#, c-format
msgid "dynamic dependency %s not found"
msgstr ""

#: collect2.c:2251
#, c-format
msgid "unable to open dynamic dependency '%s'"
msgstr ""

#: collect2.c:2407
#, c-format
msgid "%s: not a COFF file"
msgstr ""

#: collect2.c:2527
#, c-format
msgid "%s: cannot open as COFF file"
msgstr ""

#: collect2.c:2585
#, c-format
msgid "library lib%s not found"
msgstr ""

#: cppspec.c:106
#, c-format
msgid "\"%s\" is not a valid option to the preprocessor"
msgstr ""

#: cppspec.c:128
#, c-format
msgid "too many input files"
msgstr ""

#: diagnostic.c:174
#, c-format
msgid "%s:%d: confused by earlier errors, bailing out\n"
msgstr ""

#: diagnostic.c:234
#, c-format
msgid "compilation terminated due to -Wfatal-errors.\n"
msgstr ""

#: diagnostic.c:243
#, c-format
msgid ""
"Please submit a full bug report,\n"
"with preprocessed source if appropriate.\n"
"See %s for instructions.\n"
msgstr ""

#: diagnostic.c:252
#, c-format
msgid "compilation terminated.\n"
msgstr ""

#: diagnostic.c:571
#, c-format
msgid "Internal compiler error: Error reporting routines re-entered.\n"
msgstr ""

#: final.c:1088
msgid "negative insn length"
msgstr ""

#: final.c:2445
msgid "could not split insn"
msgstr ""

#: final.c:2791
msgid "invalid 'asm': "
msgstr ""

#: final.c:2974
#, c-format
msgid "nested assembly dialect alternatives"
msgstr ""

#: final.c:2991 final.c:3003
#, c-format
msgid "unterminated assembly dialect alternative"
msgstr ""

#: final.c:3050
#, c-format
msgid "operand number missing after %%-letter"
msgstr ""

#: final.c:3053 final.c:3094
#, c-format
msgid "operand number out of range"
msgstr ""

#: final.c:3113
#, c-format
msgid "invalid %%-code"
msgstr ""

#: final.c:3143
#, c-format
msgid "'%%l' operand isn't a label"
msgstr ""

#. We can't handle floating point constants;
#. PRINT_OPERAND must handle them.
#. We can't handle floating point constants; PRINT_OPERAND must
#. handle them.
#. We can't handle floating point constants;
#. PRINT_OPERAND must handle them.
#: final.c:3244 vmsdbgout.c:487 config/i386/i386.c:6424
#: config/pdp11/pdp11.c:1700
#, c-format
msgid "floating constant misused"
msgstr ""

#: final.c:3300 vmsdbgout.c:544 config/i386/i386.c:6500
#: config/pdp11/pdp11.c:1747
#, c-format
msgid "invalid expression as operand"
msgstr ""

#: flow.c:1701
msgid "Attempt to delete prologue/epilogue insn:"
msgstr ""

#: gcc.c:1642
#, c-format
msgid "Using built-in specs.\n"
msgstr ""

#: gcc.c:1825
#, c-format
msgid ""
"Setting spec %s to '%s'\n"
"\n"
msgstr ""

#: gcc.c:1934
#, c-format
msgid "Reading specs from %s\n"
msgstr ""

#: gcc.c:2030 gcc.c:2049
#, c-format
msgid "specs %%include syntax malformed after %ld characters"
msgstr ""

#: gcc.c:2057
#, c-format
msgid "could not find specs file %s\n"
msgstr ""

#: 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:2109
#, c-format
msgid "specs %s spec was not found to be renamed"
msgstr ""

#: gcc.c:2116
#, c-format
msgid "%s: attempt to rename spec '%s' to already defined spec '%s'"
msgstr ""

#: gcc.c:2121
#, c-format
msgid "rename spec %s to %s\n"
msgstr ""

#: gcc.c:2123
#, c-format
msgid ""
"spec is '%s'\n"
"\n"
msgstr ""

#: gcc.c:2136
#, c-format
msgid "specs unknown %% command after %ld characters"
msgstr ""

#: gcc.c:2147 gcc.c:2160
#, c-format
msgid "specs file malformed after %ld characters"
msgstr ""

#: gcc.c:2213
#, c-format
msgid "spec file has no spec for linking"
msgstr ""

#: gcc.c:2635
#, c-format
msgid "system path '%s' is not absolute"
msgstr ""

#: gcc.c:2698
#, c-format
msgid "-pipe not supported"
msgstr ""

#: gcc.c:2760
#, c-format
msgid ""
"\n"
"Go ahead? (y or n) "
msgstr ""

#: gcc.c:2843
msgid "failed to get exit status"
msgstr ""

#: gcc.c:2849
msgid "failed to get process times"
msgstr ""

#: gcc.c:2872
#, c-format
msgid ""
"Internal error: %s (program %s)\n"
"Please submit a full bug report.\n"
"See %s for instructions."
msgstr ""

#: gcc.c:2900
#, c-format
msgid "# %s %.2f %.2f\n"
msgstr ""

#: gcc.c:3036
#, c-format
msgid "Usage: %s [options] file...\n"
msgstr ""

#: gcc.c:3037
msgid "Options:\n"
msgstr ""

#: gcc.c:3039
msgid "  -pass-exit-codes         Exit with highest error code from a phase\n"
msgstr ""

#: gcc.c:3040
msgid "  --help                   Display this information\n"
msgstr ""

#: gcc.c:3041
msgid ""
"  --target-help            Display target specific command line options\n"
msgstr ""

#: gcc.c:3043
msgid "  (Use '-v --help' to display command line options of sub-processes)\n"
msgstr ""

#: gcc.c:3044
msgid "  -dumpspecs               Display all of the built in spec strings\n"
msgstr ""

#: gcc.c:3045
msgid "  -dumpversion             Display the version of the compiler\n"
msgstr ""

#: gcc.c:3046
msgid "  -dumpmachine             Display the compiler's target processor\n"
msgstr ""

#: gcc.c:3047
msgid ""
"  -print-search-dirs       Display the directories in the compiler's search "
"path\n"
msgstr ""

#: gcc.c:3048
msgid ""
"  -print-libgcc-file-name  Display the name of the compiler's companion "
"library\n"
msgstr ""

#: gcc.c:3049
msgid "  -print-file-name=<lib>   Display the full path to library <lib>\n"
msgstr ""

#: gcc.c:3050
msgid ""
"  -print-prog-name=<prog>  Display the full path to compiler component "
"<prog>\n"
msgstr ""

#: gcc.c:3051
msgid ""
"  -print-multi-directory   Display the root directory for versions of "
"libgcc\n"
msgstr ""

#: gcc.c:3052
msgid ""
"  -print-multi-lib         Display the mapping between command line options "
"and\n"
"                           multiple library search directories\n"
msgstr ""

#: gcc.c:3055
msgid "  -print-multi-os-directory Display the relative path to OS libraries\n"
msgstr ""

#: gcc.c:3056
msgid ""
"  -Wa,<options>            Pass comma-separated <options> on to the "
"assembler\n"
msgstr ""

#: gcc.c:3057
msgid ""
"  -Wp,<options>            Pass comma-separated <options> on to the "
"preprocessor\n"
msgstr ""

#: gcc.c:3058
msgid ""
"  -Wl,<options>            Pass comma-separated <options> on to the linker\n"
msgstr ""

#: gcc.c:3059
msgid "  -Xassembler <arg>        Pass <arg> on to the assembler\n"
msgstr ""

#: gcc.c:3060
msgid "  -Xpreprocessor <arg>     Pass <arg> on to the preprocessor\n"
msgstr ""

#: gcc.c:3061
msgid "  -Xlinker <arg>           Pass <arg> on to the linker\n"
msgstr ""

#: gcc.c:3062
msgid ""
"  -combine                 Pass multiple source files to compiler at once\n"
msgstr ""

#: gcc.c:3063
msgid "  -save-temps              Do not delete intermediate files\n"
msgstr ""

#: gcc.c:3064
msgid "  -pipe                    Use pipes rather than intermediate files\n"
msgstr ""

#: gcc.c:3065
msgid "  -time                    Time the execution of each subprocess\n"
msgstr ""

#: gcc.c:3066
msgid ""
"  -specs=<file>            Override built-in specs with the contents of "
"<file>\n"
msgstr ""

#: gcc.c:3067
msgid ""
"  -std=<standard>          Assume that the input sources are for <standard>\n"
msgstr ""

#: gcc.c:3068
msgid ""
"  --sysroot=<directory>    Use <directory> as the root directory for "
"headers\n"
"                           for headers and libraries\n"
msgstr ""

#: gcc.c:3071
msgid ""
"  -B <directory>           Add <directory> to the compiler's search paths\n"
msgstr ""

#: gcc.c:3072
msgid "  -b <machine>             Run gcc for target <machine>, if installed\n"
msgstr ""

#: gcc.c:3073
msgid ""
"  -V <version>             Run gcc version number <version>, if installed\n"
msgstr ""

#: gcc.c:3074
msgid ""
"  -v                       Display the programs invoked by the compiler\n"
msgstr ""

#: gcc.c:3075
msgid ""
"  -###                     Like -v but options quoted and commands not "
"executed\n"
msgstr ""

#: gcc.c:3076
msgid ""
"  -E                       Preprocess only; do not compile, assemble or "
"link\n"
msgstr ""

#: gcc.c:3077
msgid "  -S                       Compile only; do not assemble or link\n"
msgstr ""

#: gcc.c:3078
msgid "  -c                       Compile and assemble, but do not link\n"
msgstr ""

#: gcc.c:3079
msgid "  -o <file>                Place the output into <file>\n"
msgstr ""

#: gcc.c:3080
msgid ""
"  -x <language>            Specify the language of the following input "
"files\n"
"                           Permissible languages include: c c++ assembler "
"none\n"
"                           'none' means revert to the default behavior of\n"
"                           guessing the language based on the file's "
"extension\n"
msgstr ""

#: gcc.c:3087
#, c-format
msgid ""
"\n"
"Options starting with -g, -f, -m, -O, -W, or --param are automatically\n"
" passed on to the various sub-processes invoked by %s.  In order to pass\n"
" other options on to these processes the -W<letter> options must be used.\n"
msgstr ""

#: gcc.c:3211
#, c-format
msgid "'-%c' option must have argument"
msgstr ""

#: gcc.c:3233
#, c-format
msgid "couldn't run '%s': %s"
msgstr ""

#. translate_options () has turned --version into -fversion.
#: gcc.c:3418
#, c-format
msgid "%s (GCC) %s\n"
msgstr ""

#: gcc.c:3420 gcov.c:415 java/gjavah.c:2400 java/jcf-dump.c:931
#: java/jv-scan.c:129
msgid "(C)"
msgstr ""

#: 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"
"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
"\n"
msgstr ""

#: gcc.c:3522
#, c-format
msgid "argument to '-Xlinker' is missing"
msgstr ""

#: gcc.c:3530
#, c-format
msgid "argument to '-Xpreprocessor' is missing"
msgstr ""

#: gcc.c:3537
#, c-format
msgid "argument to '-Xassembler' is missing"
msgstr ""

#: gcc.c:3544
#, c-format
msgid "argument to '-l' is missing"
msgstr ""

#: gcc.c:3565
#, c-format
msgid "argument to '-specs' is missing"
msgstr ""

#: gcc.c:3579
#, c-format
msgid "argument to '-specs=' is missing"
msgstr ""

#: gcc.c:3617
#, c-format
msgid "'-%c' must come at the start of the command line"
msgstr ""

#: gcc.c:3626
#, c-format
msgid "argument to '-B' is missing"
msgstr ""

#: gcc.c:4011
#, c-format
msgid "argument to '-x' is missing"
msgstr ""

#: gcc.c:4039
#, c-format
msgid "argument to '-%s' is missing"
msgstr ""

#: gcc.c:4377
#, c-format
msgid "switch '%s' does not start with '-'"
msgstr ""

#: gcc.c:4607
#, c-format
msgid "spec '%s' invalid"
msgstr ""

#: gcc.c:4673
#, c-format
msgid "%s\n"
msgstr ""

#: gcc.c:4746
#, c-format
msgid "spec '%s' has invalid '%%0%c'"
msgstr ""

#: gcc.c:4943
#, c-format
msgid "spec '%s' has invalid '%%W%c"
msgstr ""

#: gcc.c:4974
#, c-format
msgid "spec '%s' has invalid '%%x%c'"
msgstr ""

#: gcc.c:5196
#, c-format
msgid "Processing spec %c%s%c, which is '%s'\n"
msgstr ""

#: gcc.c:5338
#, c-format
msgid "unknown spec function '%s'"
msgstr ""

#: gcc.c:5357
#, c-format
msgid "error in args to spec function '%s'"
msgstr ""

#: gcc.c:5405
#, c-format
msgid "malformed spec function name"
msgstr ""

#. )
#: gcc.c:5408
#, c-format
msgid "no arguments for spec function"
msgstr ""

#: gcc.c:5427
#, c-format
msgid "malformed spec function arguments"
msgstr ""

#: gcc.c:5666
#, c-format
msgid "braced spec '%s' is invalid at '%c'"
msgstr ""

#: gcc.c:5754
#, c-format
msgid "braced spec body '%s' is invalid"
msgstr ""

#: gcc.c:6301
#, c-format
msgid "install: %s%s\n"
msgstr ""

#: gcc.c:6302
#, c-format
msgid "programs: %s\n"
msgstr ""

#: gcc.c:6303
#, c-format
msgid "libraries: %s\n"
msgstr ""

#: gcc.c:6360
#, c-format
msgid ""
"\n"
"For bug reporting instructions, please see:\n"
msgstr ""

#: gcc.c:6376
#, c-format
msgid "Target: %s\n"
msgstr ""

#: gcc.c:6377
#, c-format
msgid "Configured with: %s\n"
msgstr ""

#: gcc.c:6391
#, c-format
msgid "Thread model: %s\n"
msgstr ""

#: gcc.c:6402
#, c-format
msgid "gcc version %s\n"
msgstr ""

#: gcc.c:6404
#, c-format
msgid "gcc driver version %s executing gcc version %s\n"
msgstr ""

#: gcc.c:6412
#, c-format
msgid "no input files"
msgstr ""

#: gcc.c:6492
#, c-format
msgid "spec '%s' is invalid"
msgstr ""

#: gcc.c:6957
#, c-format
msgid "multilib spec '%s' is invalid"
msgstr ""

#: gcc.c:7149
#, c-format
msgid "multilib exclusions '%s' is invalid"
msgstr ""

#: gcc.c:7207 gcc.c:7348
#, c-format
msgid "multilib select '%s' is invalid"
msgstr ""

#: 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 ""
"Usage: gcov [OPTION]... SOURCEFILE\n"
"\n"
msgstr ""

#: gcov.c:389
#, c-format
msgid ""
"Print code coverage information.\n"
"\n"
msgstr ""

#: gcov.c:390
#, c-format
msgid "  -h, --help                      Print this help, then exit\n"
msgstr ""

#: gcov.c:391
#, c-format
msgid "  -v, --version                   Print version number, then exit\n"
msgstr ""

#: gcov.c:392
#, c-format
msgid ""
"  -a, --all-blocks                Show information for every basic block\n"
msgstr ""

#: gcov.c:393
#, c-format
msgid ""
"  -b, --branch-probabilities      Include branch probabilities in output\n"
msgstr ""

#: gcov.c:394
#, c-format
msgid ""
"  -c, --branch-counts             Given counts of branches taken\n"
"                                    rather than percentages\n"
msgstr ""

#: gcov.c:396
#, c-format
msgid "  -n, --no-output                 Do not create an output file\n"
msgstr ""

#: gcov.c:397
#, c-format
msgid ""
"  -l, --long-file-names           Use long output file names for included\n"
"                                    source files\n"
msgstr ""

#: gcov.c:399
#, c-format
msgid "  -f, --function-summaries        Output summaries for each function\n"
msgstr ""

#: gcov.c:400
#, c-format
msgid ""
"  -o, --object-directory DIR|FILE Search for object files in DIR or called "
"FILE\n"
msgstr ""

#: gcov.c:401
#, c-format
msgid "  -p, --preserve-paths            Preserve all pathname components\n"
msgstr ""

#: gcov.c:402
#, c-format
msgid ""
"  -u, --unconditional-branches    Show unconditional branch counts too\n"
msgstr ""

#: gcov.c:403
#, c-format
msgid ""
"\n"
"For bug reporting instructions, please see:\n"
"%s.\n"
msgstr ""

#: gcov.c:413
#, c-format
msgid "gcov (GCC) %s\n"
msgstr ""

#: gcov.c:417
#, c-format
msgid ""
"This is free software; see the source for copying conditions.\n"
"There is NO warranty; not even for MERCHANTABILITY or \n"
"FITNESS FOR A PARTICULAR PURPOSE.\n"
"\n"
msgstr ""

#: gcov.c:507
#, c-format
msgid "%s:no functions found\n"
msgstr ""

#: gcov.c:528 gcov.c:556 fortran/dump-parse-tree.c:67
#, c-format
msgid "\n"
msgstr ""

#: gcov.c:543
#, c-format
msgid "%s:creating '%s'\n"
msgstr ""

#: gcov.c:547
#, c-format
msgid "%s:error writing output file '%s'\n"
msgstr ""

#: gcov.c:552
#, c-format
msgid "%s:could not open output file '%s'\n"
msgstr ""

#: gcov.c:703
#, c-format
msgid "%s:cannot open graph file\n"
msgstr ""

#: gcov.c:709
#, c-format
msgid "%s:not a gcov graph file\n"
msgstr ""

#: gcov.c:722
#, c-format
msgid "%s:version '%.4s', prefer '%.4s'\n"
msgstr ""

#: gcov.c:774
#, c-format
msgid "%s:already seen blocks for '%s'\n"
msgstr ""

#: gcov.c:892 gcov.c:1048
#, c-format
msgid "%s:corrupted\n"
msgstr ""

#: gcov.c:966
#, c-format
msgid "%s:cannot open data file\n"
msgstr ""

#: gcov.c:971
#, c-format
msgid "%s:not a gcov data file\n"
msgstr ""

#: gcov.c:984
#, c-format
msgid "%s:version '%.4s', prefer version '%.4s'\n"
msgstr ""

#: gcov.c:990
#, c-format
msgid "%s:stamp mismatch with graph file\n"
msgstr ""

#: gcov.c:1016
#, c-format
msgid "%s:unknown function '%u'\n"
msgstr ""

#: gcov.c:1029
#, c-format
msgid "%s:profile mismatch for '%s'\n"
msgstr ""

#: gcov.c:1048
#, c-format
msgid "%s:overflowed\n"
msgstr ""

#: gcov.c:1072
#, c-format
msgid "%s:'%s' lacks entry and/or exit blocks\n"
msgstr ""

#: gcov.c:1077
#, c-format
msgid "%s:'%s' has arcs to entry block\n"
msgstr ""

#: gcov.c:1085
#, c-format
msgid "%s:'%s' has arcs from exit block\n"
msgstr ""

#: gcov.c:1293
#, c-format
msgid "%s:graph is unsolvable for '%s'\n"
msgstr ""

#: gcov.c:1373
#, c-format
msgid "%s '%s'\n"
msgstr ""

#: gcov.c:1376
#, c-format
msgid "Lines executed:%s of %d\n"
msgstr ""

#: gcov.c:1380
#, c-format
msgid "No executable lines\n"
msgstr ""

#: gcov.c:1386
#, c-format
msgid "Branches executed:%s of %d\n"
msgstr ""

#: gcov.c:1390
#, c-format
msgid "Taken at least once:%s of %d\n"
msgstr ""

#: gcov.c:1396
#, c-format
msgid "No branches\n"
msgstr ""

#: gcov.c:1398
#, c-format
msgid "Calls executed:%s of %d\n"
msgstr ""

#: gcov.c:1402
#, c-format
msgid "No calls\n"
msgstr ""

#: gcov.c:1543
#, c-format
msgid "%s:no lines for '%s'\n"
msgstr ""

#: gcov.c:1738
#, c-format
msgid "call   %2d returned %s\n"
msgstr ""

#: gcov.c:1743
#, c-format
msgid "call   %2d never executed\n"
msgstr ""

#: gcov.c:1748
#, c-format
msgid "branch %2d taken %s%s\n"
msgstr ""

#: gcov.c:1752
#, c-format
msgid "branch %2d never executed\n"
msgstr ""

#: gcov.c:1757
#, c-format
msgid "unconditional %2d taken %s\n"
msgstr ""

#: gcov.c:1760
#, c-format
msgid "unconditional %2d never executed\n"
msgstr ""

#: gcov.c:1792
#, c-format
msgid "%s:cannot open source file\n"
msgstr ""

#: gcov.c:1802
#, c-format
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:690
msgid "GCSE disabled"
msgstr ""

#. Return if there's nothing to do, or it is too expensive.
#: gcse.c:6480
msgid "jump bypassing disabled"
msgstr ""

#. Opening quotation mark.
#: intl.c:58
msgid "`"
msgstr ""

#. Closing quotation mark.
#: intl.c:61
msgid "'"
msgstr ""

#: ipa-inline.c:271
msgid "--param large-function-growth limit reached"
msgstr ""

#: ipa-inline.c:301
msgid "--param max-inline-insns-single limit reached"
msgstr ""

#: ipa-inline.c:310
msgid "--param max-inline-insns-auto limit reached"
msgstr ""

#: ipa-inline.c:336 ipa-inline.c:760
msgid "recursive inlining"
msgstr ""

#: ipa-inline.c:773
msgid "call is unlikely"
msgstr ""

#: ipa-inline.c:844
msgid "--param inline-unit-growth limit reached"
msgstr ""

#: langhooks.c:507
msgid "At top level:"
msgstr ""

#: langhooks.c:512
#, c-format
msgid "In member function %qs:"
msgstr ""

#: langhooks.c:516
#, c-format
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:90
msgid "This switch lacks documentation"
msgstr ""

#: opts.c:1210
#, c-format
msgid ""
"\n"
"Target specific options:\n"
msgstr ""

#: opts.c:1231
msgid "The following options are language-independent:\n"
msgstr ""

#: opts.c:1238
#, c-format
msgid ""
"The %s front end recognizes the following options:\n"
"\n"
msgstr ""

#: opts.c:1251
msgid "The --param option recognizes the following as parameters:\n"
msgstr ""

#: protoize.c:583
#, c-format
msgid "%s: error writing file '%s': %s\n"
msgstr ""

#: protoize.c:627
#, c-format
msgid "%s: usage '%s [ -VqfnkN ] [ -i <istring> ] [ filename ... ]'\n"
msgstr ""

#: protoize.c:630
#, c-format
msgid "%s: usage '%s [ -VqfnkNlgC ] [ -B <dirname> ] [ filename ... ]'\n"
msgstr ""

#: protoize.c:731
#, c-format
msgid "%s: warning: no read access for file '%s'\n"
msgstr ""

#: protoize.c:739
#, c-format
msgid "%s: warning: no write access for file '%s'\n"
msgstr ""

#: protoize.c:747
#, c-format
msgid "%s: warning: no write access for dir containing '%s'\n"
msgstr ""

#. Catch cases like /.. where we try to backup to a
#. point above the absolute root of the logical file
#. system.
#: protoize.c:1134
#, c-format
msgid "%s: invalid file name: %s\n"
msgstr ""

#: protoize.c:1282
#, c-format
msgid "%s: %s: can't get status: %s\n"
msgstr ""

#: protoize.c:1303
#, c-format
msgid ""
"\n"
"%s: fatal error: aux info file corrupted at line %d\n"
msgstr ""

#: protoize.c:1632
#, c-format
msgid "%s:%d: declaration of function '%s' takes different forms\n"
msgstr ""

#: protoize.c:1887
#, c-format
msgid "%s: compiling '%s'\n"
msgstr ""

#: protoize.c:1910
#, c-format
msgid "%s: wait: %s\n"
msgstr ""

#: protoize.c:1915
#, c-format
msgid "%s: subprocess got fatal signal %d\n"
msgstr ""

#: protoize.c:1923
#, c-format
msgid "%s: %s exited with status %d\n"
msgstr ""

#: protoize.c:1972
#, c-format
msgid "%s: warning: missing SYSCALLS file '%s'\n"
msgstr ""

#: protoize.c:1981 protoize.c:2010
#, c-format
msgid "%s: can't read aux info file '%s': %s\n"
msgstr ""

#: protoize.c:2026 protoize.c:2054
#, c-format
msgid "%s: can't get status of aux info file '%s': %s\n"
msgstr ""

#: protoize.c:2082
#, c-format
msgid "%s: can't open aux info file '%s' for reading: %s\n"
msgstr ""

#: protoize.c:2100
#, c-format
msgid "%s: error reading aux info file '%s': %s\n"
msgstr ""

#: protoize.c:2113
#, c-format
msgid "%s: error closing aux info file '%s': %s\n"
msgstr ""

#: protoize.c:2129
#, c-format
msgid "%s: can't delete aux info file '%s': %s\n"
msgstr ""

#: protoize.c:2211 protoize.c:4180
#, c-format
msgid "%s: can't delete file '%s': %s\n"
msgstr ""

#: protoize.c:2289
#, c-format
msgid "%s: warning: can't rename file '%s' to '%s': %s\n"
msgstr ""

#: protoize.c:2411
#, c-format
msgid "%s: conflicting extern definitions of '%s'\n"
msgstr ""

#: protoize.c:2415
#, c-format
msgid "%s: declarations of '%s' will not be converted\n"
msgstr ""

#: protoize.c:2417
#, c-format
msgid "%s: conflict list for '%s' follows:\n"
msgstr ""

#: protoize.c:2450
#, c-format
msgid "%s: warning: using formals list from %s(%d) for function '%s'\n"
msgstr ""

#: protoize.c:2490
#, c-format
msgid "%s: %d: '%s' used but missing from SYSCALLS\n"
msgstr ""

#: protoize.c:2496
#, c-format
msgid "%s: %d: warning: no extern definition for '%s'\n"
msgstr ""

#: protoize.c:2526
#, c-format
msgid "%s: warning: no static definition for '%s' in file '%s'\n"
msgstr ""

#: protoize.c:2532
#, c-format
msgid "%s: multiple static defs of '%s' in file '%s'\n"
msgstr ""

#: protoize.c:2702 protoize.c:2705
#, c-format
msgid "%s: %d: warning: source too confusing\n"
msgstr ""

#: protoize.c:2900
#, c-format
msgid "%s: %d: warning: varargs function declaration not converted\n"
msgstr ""

#: protoize.c:2915
#, c-format
msgid "%s: declaration of function '%s' not converted\n"
msgstr ""

#: protoize.c:3038
#, c-format
msgid "%s: warning: too many parameter lists in declaration of '%s'\n"
msgstr ""

#: protoize.c:3059
#, c-format
msgid ""
"\n"
"%s: warning: too few parameter lists in declaration of '%s'\n"
msgstr ""

#: protoize.c:3155
#, c-format
msgid "%s: %d: warning: found '%s' but expected '%s'\n"
msgstr ""

#: protoize.c:3330
#, c-format
msgid "%s: local declaration for function '%s' not inserted\n"
msgstr ""

#: protoize.c:3357
#, c-format
msgid ""
"\n"
"%s: %d: warning: can't add declaration of '%s' into macro call\n"
msgstr ""

#: protoize.c:3429
#, c-format
msgid "%s: global declarations for file '%s' not inserted\n"
msgstr ""

#: protoize.c:3518 protoize.c:3548
#, c-format
msgid "%s: definition of function '%s' not converted\n"
msgstr ""

#: protoize.c:3537
#, c-format
msgid "%s: %d: warning: definition of %s not converted\n"
msgstr ""

#: protoize.c:3863
#, c-format
msgid "%s: found definition of '%s' at %s(%d)\n"
msgstr ""

#. If we make it here, then we did not know about this
#. function definition.
#: protoize.c:3879
#, c-format
msgid "%s: %d: warning: '%s' excluded by preprocessing\n"
msgstr ""

#: protoize.c:3882
#, c-format
msgid "%s: function definition not converted\n"
msgstr ""

#: protoize.c:3940
#, c-format
msgid "%s: '%s' not converted\n"
msgstr ""

#: protoize.c:3948
#, c-format
msgid "%s: would convert file '%s'\n"
msgstr ""

#: protoize.c:3951
#, c-format
msgid "%s: converting file '%s'\n"
msgstr ""

#: protoize.c:3961
#, c-format
msgid "%s: can't get status for file '%s': %s\n"
msgstr ""

#: protoize.c:4003
#, c-format
msgid "%s: can't open file '%s' for reading: %s\n"
msgstr ""

#: protoize.c:4018
#, c-format
msgid ""
"\n"
"%s: error reading input file '%s': %s\n"
msgstr ""

#: protoize.c:4052
#, c-format
msgid "%s: can't create/open clean file '%s': %s\n"
msgstr ""

#: protoize.c:4157
#, c-format
msgid "%s: warning: file '%s' already saved in '%s'\n"
msgstr ""

#: protoize.c:4165
#, c-format
msgid "%s: can't link file '%s' to '%s': %s\n"
msgstr ""

#: protoize.c:4195
#, c-format
msgid "%s: can't create/open output file '%s': %s\n"
msgstr ""

#: protoize.c:4228
#, c-format
msgid "%s: can't change mode of file '%s': %s\n"
msgstr ""

#: protoize.c:4404
#, c-format
msgid "%s: cannot get working directory: %s\n"
msgstr ""

#: protoize.c:4502
#, c-format
msgid "%s: input file names must have .c suffixes: %s\n"
msgstr ""

#: reload.c:3730
msgid "unable to generate reloads for:"
msgstr ""

#: reload1.c:1889
msgid "this is the insn:"
msgstr ""

#. It's the compiler's fault.
#: reload1.c:5009
msgid "could not find a spill register"
msgstr ""

#. It's the compiler's fault.
#: reload1.c:6640
msgid "VOIDmode on an output"
msgstr ""

#: rtl-error.c:128
msgid "unrecognizable insn:"
msgstr ""

#: rtl-error.c:130
msgid "insn does not satisfy its constraints:"
msgstr ""

#: timevar.c:412
msgid ""
"\n"
"Execution times (seconds)\n"
msgstr ""

#. Print total time.
#: timevar.c:470
msgid " TOTAL                 :"
msgstr ""

#: timevar.c:499
#, c-format
msgid "time in %s: %ld.%06ld (%ld%%)\n"
msgstr ""

#: tlink.c:384
#, c-format
msgid "collect: reading %s\n"
msgstr ""

#: tlink.c:478
#, c-format
msgid "removing .rpo file"
msgstr ""

#: tlink.c:480
#, c-format
msgid "renaming .rpo file"
msgstr ""

#: tlink.c:534
#, c-format
msgid "collect: recompiling %s\n"
msgstr ""

#: tlink.c:714
#, c-format
msgid "collect: tweaking %s in %s\n"
msgstr ""

#: tlink.c:764
#, c-format
msgid "collect: relinking\n"
msgstr ""

#: toplev.c:582
#, c-format
msgid "unrecoverable error"
msgstr ""

#: toplev.c:1095
#, c-format
msgid ""
"%s%s%s version %s (%s)\n"
"%s\tcompiled by GNU C version %s.\n"
msgstr ""

#: toplev.c:1097
#, c-format
msgid "%s%s%s version %s (%s) compiled by CC.\n"
msgstr ""

#: toplev.c:1101
#, c-format
msgid ""
"%s%sGGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d\n"
msgstr ""

#: toplev.c:1163
msgid "options passed: "
msgstr ""

#: toplev.c:1192
msgid "options enabled: "
msgstr ""

#: toplev.c:1311
#, c-format
msgid "created and used with differing settings of '%s'"
msgstr ""

#: toplev.c:1313
msgid "out of memory"
msgstr ""

#: toplev.c:1328
msgid "created and used with different settings of -fpic"
msgstr ""

#: toplev.c:1330
msgid "created and used with different settings of -fpie"
msgstr ""

#: tree-inline.c:1978
msgid "originally indirect function call not considered for inlining"
msgstr ""

#.
#. Local variables:
#. mode:c
#. End:
#.
#: diagnostic.def:1
msgid "fatal error: "
msgstr ""

#: diagnostic.def:2
msgid "internal compiler error: "
msgstr ""

#: diagnostic.def:3
msgid "error: "
msgstr ""

#: diagnostic.def:4
msgid "sorry, unimplemented: "
msgstr ""

#: diagnostic.def:5
msgid "warning: "
msgstr ""

#: diagnostic.def:6
msgid "anachronism: "
msgstr ""

#: diagnostic.def:7
msgid "note: "
msgstr ""

#: diagnostic.def:8
msgid "debug: "
msgstr ""

#: 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: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:78
msgid ""
"The threshold ratio between instantiated fields and the total structure size"
msgstr ""

#: params.def:95
msgid ""
"The maximum number of instructions in a single function eligible for inlining"
msgstr ""

#: params.def:107
msgid "The maximum number of instructions when automatically inlining"
msgstr ""

#: params.def:112
msgid ""
"The maximum number of instructions inline function can grow to via recursive "
"inlining"
msgstr ""

#: params.def:117
msgid ""
"The maximum number of instructions non-inline function can grow to via "
"recursive inlining"
msgstr ""

#: params.def:122
msgid "The maximum depth of recursive inlining for inline functions"
msgstr ""

#: params.def:127
msgid "The maximum depth of recursive inlining for non-inline functions"
msgstr ""

#: 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:152
msgid "The maximum number of instructions to consider to fill a delay slot"
msgstr ""

#: params.def:163
msgid ""
"The maximum number of instructions to consider to find accurate live "
"register information"
msgstr ""

#: params.def:173
msgid "The maximum length of scheduling's pending operations list"
msgstr ""

#: params.def:178
msgid "The size of function body to be considered large"
msgstr ""

#: params.def:182
msgid "Maximal growth due to inlining of large function (in percent)"
msgstr ""

#: params.def:186
msgid ""
"how much can given compilation unit grow because of the inlining (in percent)"
msgstr ""

#: params.def:190
msgid "expense of call operation relative to ordinary arithmetic operations"
msgstr ""

#: params.def:197
msgid "The maximum amount of memory to be allocated by GCSE"
msgstr ""

#: params.def:202
msgid "The maximum number of passes to make when doing GCSE"
msgstr ""

#: params.def:212
msgid ""
"The threshold ratio for performing partial redundancy elimination after "
"reload"
msgstr ""

#: params.def:219
msgid ""
"The threshold ratio of critical edges execution count that permit performing "
"redundancy elimination after reload"
msgstr ""

#: params.def:230
msgid "The maximum number of instructions to consider to unroll in a loop"
msgstr ""

#: params.def:236
msgid ""
"The maximum number of instructions to consider to unroll in a loop on average"
msgstr ""

#: params.def:241
msgid "The maximum number of unrollings of a single loop"
msgstr ""

#: params.def:246
msgid "The maximum number of insns of a peeled loop"
msgstr ""

#: params.def:251
msgid "The maximum number of peelings of a single loop"
msgstr ""

#: params.def:256
msgid "The maximum number of insns of a completely peeled loop"
msgstr ""

#: params.def:261
msgid ""
"The maximum number of peelings of a single loop that is peeled completely"
msgstr ""

#: params.def:266
msgid "The maximum number of insns of a peeled loop that rolls only once"
msgstr ""

#: params.def:272
msgid "The maximum number of insns of an unswitched loop"
msgstr ""

#: params.def:277
msgid "The maximum number of unswitchings in a single loop"
msgstr ""

#: params.def:284
msgid ""
"Bound on the number of iterations the brute force # of iterations analysis "
"algorithm evaluates"
msgstr ""

#: params.def:289
msgid ""
"Maximum number of loops to perform swing modulo scheduling on (mainly for "
"debugging)"
msgstr ""

#: params.def:295
msgid ""
"A factor for tuning the upper bound that swing modulo scheduler uses for "
"scheduling a loop"
msgstr ""

#: params.def:299
msgid ""
"The number of cycles the swing modulo scheduler considers when \t  checking "
"conflicts using DFA"
msgstr ""

#: params.def:304
msgid ""
"A threshold on the average loop count considered by the swing modulo "
"scheduler"
msgstr ""

#: 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: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: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: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:325
msgid "Maximal code growth caused by tail duplication (in percent)"
msgstr ""

#: params.def:329
msgid ""
"Stop reverse growth if the reverse probability of best edge is less than "
"this threshold (in percent)"
msgstr ""

#: 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: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:343
msgid "The maximum number of incoming edges to consider for crossjumping"
msgstr ""

#: params.def:349
msgid ""
"The minimum number of matching instructions to consider for crossjumping"
msgstr ""

#: params.def:355
msgid ""
"The maximum number of insns to duplicate when unfactoring computed gotos"
msgstr ""

#: params.def:361
msgid "The maximum length of path considered in cse"
msgstr ""

#: params.def:368
msgid ""
"The minimum cost of an expensive expression in the loop invariant motion"
msgstr ""

#: params.def:377
msgid ""
"Bound on number of candidates below that all candidates are considered in iv "
"optimizations"
msgstr ""

#: params.def:385
msgid "Bound on number of iv uses in loop optimized in iv optimizations"
msgstr ""

#: 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:398
msgid "Bound on size of expressions used in the scalar evolutions analyzer"
msgstr ""

#: params.def:405
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:410
msgid "The maximum memory locations recorded by cselib"
msgstr ""

#: params.def:423
msgid ""
"Minimum heap expansion to trigger garbage collection, as a percentage of the "
"total size of the heap"
msgstr ""

#: params.def:428
msgid "Minimum heap size before we start collecting garbage, in kilobytes"
msgstr ""

#: params.def:436
msgid ""
"The maximum number of instructions to search backward when looking for "
"equivalent reload"
msgstr ""

#: params.def:441
msgid ""
"The maximum number of virtual operands allowed to represent aliases before "
"triggering alias grouping"
msgstr ""

#: params.def:446
msgid ""
"The maximum number of blocks in a region to be considered for interblock "
"scheduling"
msgstr ""

#: params.def:451
msgid ""
"The maximum number of insns in a region to be considered for interblock "
"scheduling"
msgstr ""

#: params.def:456
msgid ""
"The maximum number of RTL nodes that can be recorded as combiner's last value"
msgstr ""

#: params.def:464
msgid "The upper bound for sharing integer constants"
msgstr ""

#: params.def:483
msgid ""
"Minimum number of virtual mappings to consider switching to full virtual "
"renames"
msgstr ""

#: params.def:488
msgid ""
"Ratio between virtual mappings and virtual symbols to do full virtual renames"
msgstr ""

#: params.def:493
msgid ""
"The lower bound for a buffer to be considered for stack smashing protection"
msgstr ""

#: config/alpha/alpha.c:5063
#, c-format
msgid "invalid %%H value"
msgstr ""

#: config/alpha/alpha.c:5084 config/bfin/bfin.c:1162
#, c-format
msgid "invalid %%J value"
msgstr ""

#: config/alpha/alpha.c:5114 config/ia64/ia64.c:4505
#, c-format
msgid "invalid %%r value"
msgstr ""

#: config/alpha/alpha.c:5124 config/rs6000/rs6000.c:10365
#: config/xtensa/xtensa.c:1691
#, c-format
msgid "invalid %%R value"
msgstr ""

#: config/alpha/alpha.c:5130 config/rs6000/rs6000.c:10284
#: config/xtensa/xtensa.c:1658
#, c-format
msgid "invalid %%N value"
msgstr ""

#: config/alpha/alpha.c:5138 config/rs6000/rs6000.c:10312
#, c-format
msgid "invalid %%P value"
msgstr ""

#: config/alpha/alpha.c:5146
#, c-format
msgid "invalid %%h value"
msgstr ""

#: config/alpha/alpha.c:5154 config/xtensa/xtensa.c:1684
#, c-format
msgid "invalid %%L value"
msgstr ""

#: config/alpha/alpha.c:5193 config/rs6000/rs6000.c:10266
#, c-format
msgid "invalid %%m value"
msgstr ""

#: config/alpha/alpha.c:5201 config/rs6000/rs6000.c:10274
#, c-format
msgid "invalid %%M value"
msgstr ""

#: config/alpha/alpha.c:5245
#, c-format
msgid "invalid %%U value"
msgstr ""

#: config/alpha/alpha.c:5257 config/alpha/alpha.c:5271
#: config/rs6000/rs6000.c:10373
#, c-format
msgid "invalid %%s value"
msgstr ""

#: config/alpha/alpha.c:5294
#, c-format
msgid "invalid %%C value"
msgstr ""

#: config/alpha/alpha.c:5331 config/rs6000/rs6000.c:10105
#: config/rs6000/rs6000.c:10123
#, c-format
msgid "invalid %%E value"
msgstr ""

#: config/alpha/alpha.c:5356 config/alpha/alpha.c:5404
#, c-format
msgid "unknown relocation unspec"
msgstr ""

#: config/alpha/alpha.c:5365 config/crx/crx.c:1073
#: config/rs6000/rs6000.c:10686
#, c-format
msgid "invalid %%xn code"
msgstr ""

#: config/arc/arc.c:1715 config/m32r/m32r.c:1805
#, c-format
msgid "invalid operand to %%R code"
msgstr ""

#: config/arc/arc.c:1747 config/m32r/m32r.c:1828
#, c-format
msgid "invalid operand to %%H/%%L code"
msgstr ""

#: config/arc/arc.c:1769 config/m32r/m32r.c:1899
#, c-format
msgid "invalid operand to %%U code"
msgstr ""

#: config/arc/arc.c:1780
#, c-format
msgid "invalid operand to %%V code"
msgstr ""

#. Unknown flag.
#. Undocumented flag.
#: config/arc/arc.c:1787 config/m32r/m32r.c:1926 config/sparc/sparc.c:6807
#, c-format
msgid "invalid operand output code"
msgstr ""

#: config/arm/arm.c:10566 config/arm/arm.c:10584
#, c-format
msgid "predicated Thumb instruction"
msgstr ""

#: config/arm/arm.c:10572
#, c-format
msgid "predicated instruction in conditional sequence"
msgstr ""

#: config/arm/arm.c:10680 config/arm/arm.c:10690 config/arm/arm.c:10700
#: config/arm/arm.c:10726 config/arm/arm.c:10744 config/arm/arm.c:10779
#: config/arm/arm.c:10798 config/arm/arm.c:10813 config/arm/arm.c:10839
#: config/arm/arm.c:10846 config/arm/arm.c:10853
#, c-format
msgid "invalid operand for code '%c'"
msgstr ""

#: config/arm/arm.c:10739
#, c-format
msgid "instruction never exectued"
msgstr ""

#: config/arm/arm.c:10864
#, c-format
msgid "missing operand"
msgstr ""

#: config/avr/avr.c:1116
msgid "bad address, not (reg+disp):"
msgstr ""

#: config/avr/avr.c:1123
msgid "bad address, not post_inc or pre_dec:"
msgstr ""

#: config/avr/avr.c:1134
msgid "internal compiler error.  Bad address:"
msgstr ""

#: config/avr/avr.c:1147
msgid "internal compiler error.  Unknown mode:"
msgstr ""

#: config/avr/avr.c:1770 config/avr/avr.c:2453
msgid "invalid insn:"
msgstr ""

#: 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: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:2895
msgid "bad shift insn:"
msgstr ""

#: 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:1124
#, c-format
msgid "invalid %%j value"
msgstr ""

#: config/bfin/bfin.c:1243
#, c-format
msgid "invalid const_double operand"
msgstr ""

#: config/c4x/c4x.c:1584
msgid "using CONST_DOUBLE for address"
msgstr ""

#: config/c4x/c4x.c:1722
msgid "c4x_address_cost: Invalid addressing mode"
msgstr ""

#: config/c4x/c4x.c:1857
#, c-format
msgid "c4x_print_operand: %%L inconsistency"
msgstr ""

#: config/c4x/c4x.c:1863
#, c-format
msgid "c4x_print_operand: %%N inconsistency"
msgstr ""

#: config/c4x/c4x.c:1904
#, c-format
msgid "c4x_print_operand: %%O inconsistency"
msgstr ""

#: config/c4x/c4x.c:1999
msgid "c4x_print_operand: Bad operand case"
msgstr ""

#: config/c4x/c4x.c:2040
msgid "c4x_print_operand_address: Bad post_modify"
msgstr ""

#: config/c4x/c4x.c:2062
msgid "c4x_print_operand_address: Bad pre_modify"
msgstr ""

#: config/c4x/c4x.c:2110 config/c4x/c4x.c:2122 config/c4x/c4x.c:2137
msgid "c4x_print_operand_address: Bad operand case"
msgstr ""

#: config/c4x/c4x.c:2388
msgid "c4x_rptb_insert: Cannot find start label"
msgstr ""

#: config/c4x/c4x.c:2990
msgid "invalid indirect memory address"
msgstr ""

#: config/c4x/c4x.c:3079
msgid "invalid indirect (S) memory address"
msgstr ""

#: config/c4x/c4x.c:3414
msgid "c4x_valid_operands: Internal error"
msgstr ""

#: config/c4x/c4x.c:3853
msgid "c4x_operand_subword: invalid mode"
msgstr ""

#: config/c4x/c4x.c:3856
msgid "c4x_operand_subword: invalid operand"
msgstr ""

#. We could handle these with some difficulty.
#. e.g., *p-- => *(p-=2); *(p+1).
#: config/c4x/c4x.c:3882
msgid "c4x_operand_subword: invalid autoincrement"
msgstr ""

#: config/c4x/c4x.c:3888
msgid "c4x_operand_subword: invalid address"
msgstr ""

#: config/c4x/c4x.c:3899
msgid "c4x_operand_subword: address not offsettable"
msgstr ""

#: config/c4x/c4x.c:4101
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: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:1946 cp/typeck.c:4203
#: java/expr.c:398
#, gcc-internal-format
msgid "%s"
msgstr ""

#: config/cris/cris.c:543
msgid "unexpected index-type in cris_print_index"
msgstr ""

#: config/cris/cris.c:557
msgid "unexpected base-type in cris_print_base"
msgstr ""

#: config/cris/cris.c:673
msgid "invalid operand for 'b' modifier"
msgstr ""

#: config/cris/cris.c:690
msgid "invalid operand for 'o' modifier"
msgstr ""

#: config/cris/cris.c:709
msgid "invalid operand for 'O' modifier"
msgstr ""

#: config/cris/cris.c:742
msgid "invalid operand for 'p' modifier"
msgstr ""

#: config/cris/cris.c:781
msgid "invalid operand for 'z' modifier"
msgstr ""

#: config/cris/cris.c:835 config/cris/cris.c:865
msgid "invalid operand for 'H' modifier"
msgstr ""

#: config/cris/cris.c:841
msgid "bad register"
msgstr ""

#: config/cris/cris.c:879
msgid "invalid operand for 'e' modifier"
msgstr ""

#: config/cris/cris.c:896
msgid "invalid operand for 'm' modifier"
msgstr ""

#: config/cris/cris.c:921
msgid "invalid operand for 'A' modifier"
msgstr ""

#: config/cris/cris.c:944
msgid "invalid operand for 'D' modifier"
msgstr ""

#: config/cris/cris.c:958
msgid "invalid operand for 'T' modifier"
msgstr ""

#: config/cris/cris.c:967
msgid "invalid operand modifier letter"
msgstr ""

#: config/cris/cris.c:1024
msgid "unexpected multiplicative operand"
msgstr ""

#: config/cris/cris.c:1044
msgid "unexpected operand"
msgstr ""

#: config/cris/cris.c:1077 config/cris/cris.c:1087
msgid "unrecognized address"
msgstr ""

#: config/cris/cris.c:1938
msgid "unrecognized supposed constant"
msgstr ""

#: config/cris/cris.c:2294 config/cris/cris.c:2339
msgid "unexpected side-effects in address"
msgstr ""

#. 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:3132
#, c-format
msgid "PIC register isn't set up"
msgstr ""

#: config/fr30/fr30.c:464
#, c-format
msgid "fr30_print_operand_address: unhandled address"
msgstr ""

#: config/fr30/fr30.c:488
#, c-format
msgid "fr30_print_operand: unrecognized %%p code"
msgstr ""

#: config/fr30/fr30.c:508
#, c-format
msgid "fr30_print_operand: unrecognized %%b code"
msgstr ""

#: config/fr30/fr30.c:529
#, c-format
msgid "fr30_print_operand: unrecognized %%B code"
msgstr ""

#: config/fr30/fr30.c:537
#, c-format
msgid "fr30_print_operand: invalid operand to %%A code"
msgstr ""

#: config/fr30/fr30.c:554
#, c-format
msgid "fr30_print_operand: invalid %%x code"
msgstr ""

#: config/fr30/fr30.c:561
#, c-format
msgid "fr30_print_operand: invalid %%F code"
msgstr ""

#: config/fr30/fr30.c:578
#, c-format
msgid "fr30_print_operand: unknown code"
msgstr ""

#: config/fr30/fr30.c:606 config/fr30/fr30.c:615 config/fr30/fr30.c:626
#: config/fr30/fr30.c:639
#, c-format
msgid "fr30_print_operand: unhandled MEM"
msgstr ""

#: config/frv/frv.c:2541
msgid "bad insn to frv_print_operand_address:"
msgstr ""

#: config/frv/frv.c:2552
msgid "bad register to frv_print_operand_memory_reference_reg:"
msgstr ""

#: 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:2722
#, c-format
msgid "bad condition code"
msgstr ""

#: config/frv/frv.c:2797
msgid "bad insn in frv_print_operand, bad const_double"
msgstr ""

#: config/frv/frv.c:2858
msgid "bad insn to frv_print_operand, 'e' modifier:"
msgstr ""

#: config/frv/frv.c:2866
msgid "bad insn to frv_print_operand, 'F' modifier:"
msgstr ""

#: config/frv/frv.c:2882
msgid "bad insn to frv_print_operand, 'f' modifier:"
msgstr ""

#: config/frv/frv.c:2896
msgid "bad insn to frv_print_operand, 'g' modifier:"
msgstr ""

#: config/frv/frv.c:2944
msgid "bad insn to frv_print_operand, 'L' modifier:"
msgstr ""

#: config/frv/frv.c:2957
msgid "bad insn to frv_print_operand, 'M/N' modifier:"
msgstr ""

#: config/frv/frv.c:2978
msgid "bad insn to frv_print_operand, 'O' modifier:"
msgstr ""

#: config/frv/frv.c:2996
msgid "bad insn to frv_print_operand, P modifier:"
msgstr ""

#: config/frv/frv.c:3016
msgid "bad insn in frv_print_operand, z case"
msgstr ""

#: config/frv/frv.c:3047
msgid "bad insn in frv_print_operand, 0 case"
msgstr ""

#: config/frv/frv.c:3052
msgid "frv_print_operand: unknown code"
msgstr ""

#: config/frv/frv.c:4421
msgid "bad output_move_single operand"
msgstr ""

#: config/frv/frv.c:4548
msgid "bad output_move_double operand"
msgstr ""

#: 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
#. particular machine description choice.  Every machine description should
#. define `TARGET_VERSION'.  For example:
#.
#. #ifdef MOTOROLA
#. #define TARGET_VERSION           fprintf (stderr, " (68k, Motorola syntax)");
#. #else
#. #define TARGET_VERSION           fprintf (stderr, " (68k, MIT syntax)");
#. #endif
#: config/frv/frv.h:329
#, c-format
msgid " (frv)"
msgstr ""

#: config/i386/i386.c:6494
#, c-format
msgid "invalid UNSPEC as operand"
msgstr ""

#: config/i386/i386.c:7076
#, c-format
msgid ""
"operand is neither a constant nor a condition code, invalid operand code 'c'"
msgstr ""

#: config/i386/i386.c:7129
#, c-format
msgid "invalid operand code '%c'"
msgstr ""

#: config/i386/i386.c:7172
#, c-format
msgid "invalid constraints for operand"
msgstr ""

#: config/i386/i386.c:12763
msgid "unknown insn mode"
msgstr ""

#. If the environment variable DJDIR is not defined, then DJGPP is not        installed correctly and GCC will quickly become confused with the        default prefix settings. Report the problem now so the user doesn't        receive deceptive "file not found" error messages later.
#. DJDIR is automatically defined by the DJGPP environment config            file pointed to by the environment variable DJGPP. Examine DJGPP            to try and figure out what's wrong.
#: config/i386/xm-djgpp.h:62
#, c-format
msgid "environment variable DJGPP not defined"
msgstr ""

#: config/i386/xm-djgpp.h:64
#, c-format
msgid "environment variable DJGPP points to missing file '%s'"
msgstr ""

#: config/i386/xm-djgpp.h:67
#, c-format
msgid "environment variable DJGPP points to corrupt file '%s'"
msgstr ""

#: config/ia64/ia64.c:4555
#, c-format
msgid "ia64_print_operand: unknown code"
msgstr ""

#: config/ia64/ia64.c:8794
msgid "invalid conversion from %<__fpreg%>"
msgstr ""

#: config/ia64/ia64.c:8797
msgid "invalid conversion to %<__fpreg%>"
msgstr ""

#: config/ia64/ia64.c:8810 config/ia64/ia64.c:8821
msgid "invalid operation on %<__fpreg%>"
msgstr ""

#: config/iq2000/iq2000.c:3125
#, c-format
msgid "invalid %%P operand"
msgstr ""

#: config/iq2000/iq2000.c:3133 config/rs6000/rs6000.c:10302
#, c-format
msgid "invalid %%p value"
msgstr ""

#: 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:1775
#, c-format
msgid "invalid operand to %%s code"
msgstr ""

#: config/m32r/m32r.c:1782
#, c-format
msgid "invalid operand to %%p code"
msgstr ""

#: config/m32r/m32r.c:1837
msgid "bad insn for 'A'"
msgstr ""

#: config/m32r/m32r.c:1884
#, c-format
msgid "invalid operand to %%T/%%B code"
msgstr ""

#: config/m32r/m32r.c:1907
#, c-format
msgid "invalid operand to %%N code"
msgstr ""

#: config/m32r/m32r.c:1940
msgid "pre-increment address is not a register"
msgstr ""

#: config/m32r/m32r.c:1947
msgid "pre-decrement address is not a register"
msgstr ""

#: config/m32r/m32r.c:1954
msgid "post-increment address is not a register"
msgstr ""

#: config/m32r/m32r.c:2030 config/m32r/m32r.c:2044
#: config/rs6000/rs6000.c:17526
msgid "bad address"
msgstr ""

#: config/m32r/m32r.c:2049
msgid "lo_sum not of register"
msgstr ""

#. !!!! SCz wrong here.
#: config/m68hc11/m68hc11.c:3189 config/m68hc11/m68hc11.c:3567
msgid "move insn not handled"
msgstr ""

#: config/m68hc11/m68hc11.c:3413 config/m68hc11/m68hc11.c:3497
#: config/m68hc11/m68hc11.c:3770
msgid "invalid register in the move instruction"
msgstr ""

#: config/m68hc11/m68hc11.c:3447
msgid "invalid operand in the instruction"
msgstr ""

#: config/m68hc11/m68hc11.c:3744
msgid "invalid register in the instruction"
msgstr ""

#: config/m68hc11/m68hc11.c:3777
msgid "operand 1 must be a hard register"
msgstr ""

#: config/m68hc11/m68hc11.c:3791
msgid "invalid rotate insn"
msgstr ""

#: config/m68hc11/m68hc11.c:4215
msgid "registers IX, IY and Z used in the same INSN"
msgstr ""

#: config/m68hc11/m68hc11.c:4552 config/m68hc11/m68hc11.c:4852
msgid "cannot do z-register replacement"
msgstr ""

#: config/m68hc11/m68hc11.c:4915
msgid "invalid Z register replacement for insn"
msgstr ""

#: config/mips/mips.c:5200
msgid "mips_debugger_offset called with non stack/frame/arg pointer"
msgstr ""

#: config/mips/mips.c:5410
#, c-format
msgid "PRINT_OPERAND, invalid insn for %%C"
msgstr ""

#: config/mips/mips.c:5427
#, c-format
msgid "PRINT_OPERAND, invalid insn for %%N"
msgstr ""

#: config/mips/mips.c:5436
#, c-format
msgid "PRINT_OPERAND, invalid insn for %%F"
msgstr ""

#: config/mips/mips.c:5445
#, c-format
msgid "PRINT_OPERAND, invalid insn for %%W"
msgstr ""

#: config/mips/mips.c:5466
#, c-format
msgid "invalid %%Y value"
msgstr ""

#: 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 ""

#: config/mmix/mmix.c:1468 config/mmix/mmix.c:1598
msgid "MMIX Internal: Expected a CONST_INT, not this"
msgstr ""

#: config/mmix/mmix.c:1547
msgid "MMIX Internal: Bad value for 'm', not a CONST_INT"
msgstr ""

#: config/mmix/mmix.c:1566
msgid "MMIX Internal: Expected a register, not this"
msgstr ""

#: config/mmix/mmix.c:1576
msgid "MMIX Internal: Expected a constant, not this"
msgstr ""

#. We need the original here.
#: config/mmix/mmix.c:1660
msgid "MMIX Internal: Cannot decode this operand"
msgstr ""

#: config/mmix/mmix.c:1717
msgid "MMIX Internal: This is not a recognized address"
msgstr ""

#: config/mmix/mmix.c:2650
msgid "MMIX Internal: Trying to output invalidly reversed condition:"
msgstr ""

#: config/mmix/mmix.c:2657
msgid "MMIX Internal: What's the CC of this?"
msgstr ""

#: config/mmix/mmix.c:2661
msgid "MMIX Internal: What is the CC of this?"
msgstr ""

#: config/mmix/mmix.c:2731
msgid "MMIX Internal: This is not a constant:"
msgstr ""

#: config/rs6000/host-darwin.c:83
#, c-format
msgid "Out of stack space.\n"
msgstr ""

#: config/rs6000/host-darwin.c:104
#, c-format
msgid "Try running '%s' in the shell to raise its limit.\n"
msgstr ""

#: config/rs6000/rs6000.c:10132
#, c-format
msgid "invalid %%f value"
msgstr ""

#: config/rs6000/rs6000.c:10141
#, c-format
msgid "invalid %%F value"
msgstr ""

#: config/rs6000/rs6000.c:10150
#, c-format
msgid "invalid %%G value"
msgstr ""

#: config/rs6000/rs6000.c:10185
#, c-format
msgid "invalid %%j code"
msgstr ""

#: config/rs6000/rs6000.c:10195
#, c-format
msgid "invalid %%J code"
msgstr ""

#: config/rs6000/rs6000.c:10205
#, c-format
msgid "invalid %%k value"
msgstr ""

#: config/rs6000/rs6000.c:10225 config/xtensa/xtensa.c:1677
#, c-format
msgid "invalid %%K value"
msgstr ""

#: config/rs6000/rs6000.c:10292
#, c-format
msgid "invalid %%O value"
msgstr ""

#: config/rs6000/rs6000.c:10339
#, c-format
msgid "invalid %%q value"
msgstr ""

#: config/rs6000/rs6000.c:10383
#, c-format
msgid "invalid %%S value"
msgstr ""

#: config/rs6000/rs6000.c:10423
#, c-format
msgid "invalid %%T value"
msgstr ""

#: config/rs6000/rs6000.c:10433
#, c-format
msgid "invalid %%u value"
msgstr ""

#: config/rs6000/rs6000.c:10442 config/xtensa/xtensa.c:1647
#, c-format
msgid "invalid %%v value"
msgstr ""

#: config/rs6000/rs6000.c:19033
msgid "AltiVec argument passed to unprototyped function"
msgstr ""

#: config/s390/s390.c:4002
#, c-format
msgid "cannot decompose address"
msgstr ""

#: config/s390/s390.c:4209
msgid "UNKNOWN in print_operand !?"
msgstr ""

#: config/sh/sh.c:7572
msgid "created and used with different architectures / ABIs"
msgstr ""

#: config/sh/sh.c:7574
msgid "created and used with different ABIs"
msgstr ""

#: config/sh/sh.c:7576
msgid "created and used with different endianness"
msgstr ""

#: config/sparc/sparc.c:6615 config/sparc/sparc.c:6621
#, c-format
msgid "invalid %%Y operand"
msgstr ""

#: config/sparc/sparc.c:6691
#, c-format
msgid "invalid %%A operand"
msgstr ""

#: config/sparc/sparc.c:6701
#, c-format
msgid "invalid %%B operand"
msgstr ""

#: config/sparc/sparc.c:6740
#, c-format
msgid "invalid %%c operand"
msgstr ""

#: config/sparc/sparc.c:6741
#, c-format
msgid "invalid %%C operand"
msgstr ""

#: config/sparc/sparc.c:6762
#, c-format
msgid "invalid %%d operand"
msgstr ""

#: config/sparc/sparc.c:6763
#, c-format
msgid "invalid %%D operand"
msgstr ""

#: config/sparc/sparc.c:6779
#, c-format
msgid "invalid %%f operand"
msgstr ""

#: config/sparc/sparc.c:6793
#, c-format
msgid "invalid %%s operand"
msgstr ""

#: config/sparc/sparc.c:6847
#, c-format
msgid "long long constant not a valid immediate operand"
msgstr ""

#: config/sparc/sparc.c:6850
#, c-format
msgid "floating point constant not a valid immediate operand"
msgstr ""

#: config/stormy16/stormy16.c:1764 config/stormy16/stormy16.c:1835
#, c-format
msgid "'B' operand is not constant"
msgstr ""

#: config/stormy16/stormy16.c:1791
#, c-format
msgid "'B' operand has multiple bits set"
msgstr ""

#: config/stormy16/stormy16.c:1817
#, c-format
msgid "'o' operand is not constant"
msgstr ""

#: config/stormy16/stormy16.c:1849
#, c-format
msgid "xstormy16_print_operand: unknown code"
msgstr ""

#: config/v850/v850.c:360
msgid "const_double_split got a bad insn:"
msgstr ""

#: config/v850/v850.c:924
msgid "output_move_single:"
msgstr ""

#: config/xtensa/xtensa.c:748 config/xtensa/xtensa.c:780
#: config/xtensa/xtensa.c:789
msgid "bad test"
msgstr ""

#: config/xtensa/xtensa.c:1635
#, c-format
msgid "invalid %%D value"
msgstr ""

#: config/xtensa/xtensa.c:1672
msgid "invalid mask"
msgstr ""

#: config/xtensa/xtensa.c:1698
#, c-format
msgid "invalid %%x value"
msgstr ""

#: config/xtensa/xtensa.c:1705
#, c-format
msgid "invalid %%d value"
msgstr ""

#: config/xtensa/xtensa.c:1726 config/xtensa/xtensa.c:1736
#, c-format
msgid "invalid %%t/%%b value"
msgstr ""

#: config/xtensa/xtensa.c:1778
msgid "invalid address"
msgstr ""

#: config/xtensa/xtensa.c:1803
msgid "no register in address"
msgstr ""

#: config/xtensa/xtensa.c:1811
msgid "address offset not a constant"
msgstr ""

#: cp/call.c:2444
msgid "candidates are:"
msgstr ""

#: cp/call.c:6216
msgid "candidate 1:"
msgstr ""

#: cp/call.c:6217
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/arith.c:141
msgid "Arithmetic OK"
msgstr ""

#: fortran/arith.c:144
msgid "Arithmetic overflow"
msgstr ""

#: fortran/arith.c:147
msgid "Arithmetic underflow"
msgstr ""

#: fortran/arith.c:150
msgid "Arithmetic NaN"
msgstr ""

#: fortran/arith.c:153
msgid "Division by zero"
msgstr ""

#: fortran/arith.c:156
msgid "Array operands are incommensurate"
msgstr ""

#: fortran/arith.c:159
msgid "Integer outside symmetric range implied by Standard Fortran"
msgstr ""

#: fortran/arith.c:1383
msgid "Elemental binary operation"
msgstr ""

#: fortran/check.c:70
msgid "a numeric type"
msgstr ""

#: fortran/check.c:83
msgid "INTEGER or REAL"
msgstr ""

#: fortran/check.c:98
msgid "REAL or COMPLEX"
msgstr ""

#: fortran/check.c:122
msgid "a constant"
msgstr ""

#: fortran/check.c:148
msgid "double precision"
msgstr ""

#: fortran/check.c:163
msgid "a logical array"
msgstr ""

#: fortran/check.c:179
msgid "an array"
msgstr ""

#: fortran/check.c:193
msgid "a scalar"
msgstr ""

#: fortran/check.c:209
#, c-format
msgid "the same type and kind as '%s'"
msgstr ""

#: fortran/check.c:228
#, c-format
msgid "of rank %d"
msgstr ""

#: fortran/check.c:265
#, c-format
msgid "of kind %d"
msgstr ""

#: fortran/check.c:292
msgid "a variable"
msgstr ""

#: fortran/check.c:439
msgid "ALLOCATABLE"
msgstr ""

#: fortran/check.c:476 fortran/check.c:1538
msgid "a POINTER"
msgstr ""

#: fortran/check.c:495
msgid "a POINTER or a TARGET"
msgstr ""

#: fortran/check.c:619 fortran/check.c:679
msgid "not be present if 'x' is COMPLEX"
msgstr ""

#: fortran/check.c:726 fortran/check.c:1348 fortran/check.c:1354
msgid "numeric or LOGICAL"
msgstr ""

#: fortran/check.c:1025
msgid "the same kind as 'string'"
msgstr ""

#: fortran/check.c:1137
msgid "a non-derived type"
msgstr ""

#: fortran/check.c:1373
msgid "of rank 1 or 2"
msgstr ""

#: fortran/check.c:1557
msgid "conformable with 'mask' argument"
msgstr ""

#: fortran/check.c:1581
msgid "of type REAL or COMPLEX"
msgstr ""

#: fortran/check.c:1600
msgid "a dummy variable"
msgstr ""

#: fortran/check.c:1606
msgid "an OPTIONAL dummy variable"
msgstr ""

#: fortran/check.c:1906
#, c-format
msgid "less than rank %d"
msgstr ""

#: fortran/dump-parse-tree.c:53
#, c-format
msgid "%-5d "
msgstr ""

#: fortran/dump-parse-tree.c:55
#, c-format
msgid "      "
msgstr ""

#: fortran/dump-parse-tree.c:77 fortran/dump-parse-tree.c:592
#, c-format
msgid "(%s "
msgstr ""

#: fortran/dump-parse-tree.c:90 fortran/dump-parse-tree.c:837
#: fortran/dump-parse-tree.c:874 fortran/dump-parse-tree.c:884
#, c-format
msgid "%d"
msgstr ""

#: fortran/dump-parse-tree.c:94 fortran/dump-parse-tree.c:121
#: fortran/dump-parse-tree.c:164 fortran/dump-parse-tree.c:401
#: fortran/dump-parse-tree.c:493 fortran/dump-parse-tree.c:579
#: fortran/dump-parse-tree.c:600
#, c-format
msgid ")"
msgstr ""

#: fortran/dump-parse-tree.c:104 fortran/dump-parse-tree.c:419
#, c-format
msgid "("
msgstr ""

#: fortran/dump-parse-tree.c:110
#, c-format
msgid "%s = "
msgstr ""

#: fortran/dump-parse-tree.c:114
#, c-format
msgid "(arg not-present)"
msgstr ""

#: fortran/dump-parse-tree.c:118 fortran/dump-parse-tree.c:395
#: fortran/dump-parse-tree.c:489
#, c-format
msgid " "
msgstr ""

#: fortran/dump-parse-tree.c:135 fortran/dump-parse-tree.c:310
#, c-format
msgid "()"
msgstr ""

#: fortran/dump-parse-tree.c:139
#, c-format
msgid "(%d"
msgstr ""

#: fortran/dump-parse-tree.c:153
#, c-format
msgid " %s "
msgstr ""

#: fortran/dump-parse-tree.c:180
#, c-format
msgid "FULL"
msgstr ""

#: fortran/dump-parse-tree.c:211 fortran/dump-parse-tree.c:220
#: fortran/dump-parse-tree.c:295
#, c-format
msgid " , "
msgstr ""

#: fortran/dump-parse-tree.c:225
#, c-format
msgid "UNKNOWN"
msgstr ""

#: fortran/dump-parse-tree.c:250
#, c-format
msgid " %% %s"
msgstr ""

#: fortran/dump-parse-tree.c:322 fortran/dump-parse-tree.c:379
#, c-format
msgid "''"
msgstr ""

#: fortran/dump-parse-tree.c:324
#, c-format
msgid "%c"
msgstr ""

#: fortran/dump-parse-tree.c:331
#, c-format
msgid "%s("
msgstr ""

#: fortran/dump-parse-tree.c:337
#, c-format
msgid "(/ "
msgstr ""

#: fortran/dump-parse-tree.c:339
#, c-format
msgid " /)"
msgstr ""

#: fortran/dump-parse-tree.c:345
#, c-format
msgid "NULL()"
msgstr ""

#: fortran/dump-parse-tree.c:355 fortran/dump-parse-tree.c:368
#: fortran/dump-parse-tree.c:393 fortran/dump-parse-tree.c:399
#, c-format
msgid "_%d"
msgstr ""

#: fortran/dump-parse-tree.c:360
#, c-format
msgid ".true."
msgstr ""

#: fortran/dump-parse-tree.c:362
#, c-format
msgid ".false."
msgstr ""

#: fortran/dump-parse-tree.c:389
#, c-format
msgid "(complex "
msgstr ""

#: fortran/dump-parse-tree.c:405
#, c-format
msgid "???"
msgstr ""

#: fortran/dump-parse-tree.c:413 fortran/dump-parse-tree.c:695
#, c-format
msgid "%s:"
msgstr ""

#: fortran/dump-parse-tree.c:423
#, c-format
msgid "U+ "
msgstr ""

#: fortran/dump-parse-tree.c:426
#, c-format
msgid "U- "
msgstr ""

#: fortran/dump-parse-tree.c:429
#, c-format
msgid "+ "
msgstr ""

#: fortran/dump-parse-tree.c:432
#, c-format
msgid "- "
msgstr ""

#: fortran/dump-parse-tree.c:435
#, c-format
msgid "* "
msgstr ""

#: fortran/dump-parse-tree.c:438
#, c-format
msgid "/ "
msgstr ""

#: fortran/dump-parse-tree.c:441
#, c-format
msgid "** "
msgstr ""

#: fortran/dump-parse-tree.c:444
#, c-format
msgid "// "
msgstr ""

#: fortran/dump-parse-tree.c:447
#, c-format
msgid "AND "
msgstr ""

#: fortran/dump-parse-tree.c:450
#, c-format
msgid "OR "
msgstr ""

#: fortran/dump-parse-tree.c:453
#, c-format
msgid "EQV "
msgstr ""

#: fortran/dump-parse-tree.c:456
#, c-format
msgid "NEQV "
msgstr ""

#: fortran/dump-parse-tree.c:459
#, c-format
msgid "= "
msgstr ""

#: fortran/dump-parse-tree.c:462
#, c-format
msgid "<> "
msgstr ""

#: fortran/dump-parse-tree.c:465
#, c-format
msgid "> "
msgstr ""

#: fortran/dump-parse-tree.c:468
#, c-format
msgid ">= "
msgstr ""

#: fortran/dump-parse-tree.c:471
#, c-format
msgid "< "
msgstr ""

#: fortran/dump-parse-tree.c:474
#, c-format
msgid "<= "
msgstr ""

#: fortran/dump-parse-tree.c:477
#, c-format
msgid "NOT "
msgstr ""

#: fortran/dump-parse-tree.c:499
#, c-format
msgid "%s["
msgstr ""

#: fortran/dump-parse-tree.c:505
#, c-format
msgid "%s[["
msgstr ""

#: fortran/dump-parse-tree.c:526
#, c-format
msgid "(%s %s %s %s"
msgstr ""

#: fortran/dump-parse-tree.c:532
#, c-format
msgid " ALLOCATABLE"
msgstr ""

#: fortran/dump-parse-tree.c:534 fortran/dump-parse-tree.c:597
#, c-format
msgid " DIMENSION"
msgstr ""

#: fortran/dump-parse-tree.c:536
#, c-format
msgid " EXTERNAL"
msgstr ""

#: fortran/dump-parse-tree.c:538
#, c-format
msgid " INTRINSIC"
msgstr ""

#: fortran/dump-parse-tree.c:540
#, c-format
msgid " OPTIONAL"
msgstr ""

#: fortran/dump-parse-tree.c:542 fortran/dump-parse-tree.c:595
#, c-format
msgid " POINTER"
msgstr ""

#: fortran/dump-parse-tree.c:544
#, c-format
msgid " SAVE"
msgstr ""

#: fortran/dump-parse-tree.c:546
#, c-format
msgid " TARGET"
msgstr ""

#: fortran/dump-parse-tree.c:548
#, c-format
msgid " DUMMY"
msgstr ""

#: fortran/dump-parse-tree.c:550
#, c-format
msgid " RESULT"
msgstr ""

#: fortran/dump-parse-tree.c:552
#, c-format
msgid " ENTRY"
msgstr ""

#: fortran/dump-parse-tree.c:555
#, c-format
msgid " DATA"
msgstr ""

#: fortran/dump-parse-tree.c:557
#, c-format
msgid " USE-ASSOC"
msgstr ""

#: fortran/dump-parse-tree.c:559
#, c-format
msgid " IN-NAMELIST"
msgstr ""

#: fortran/dump-parse-tree.c:561
#, c-format
msgid " IN-COMMON"
msgstr ""

#: fortran/dump-parse-tree.c:564
#, c-format
msgid " FUNCTION"
msgstr ""

#: fortran/dump-parse-tree.c:566
#, c-format
msgid " SUBROUTINE"
msgstr ""

#: fortran/dump-parse-tree.c:568
#, c-format
msgid " IMPLICIT-TYPE"
msgstr ""

#: fortran/dump-parse-tree.c:571
#, c-format
msgid " SEQUENCE"
msgstr ""

#: fortran/dump-parse-tree.c:573
#, c-format
msgid " ELEMENTAL"
msgstr ""

#: fortran/dump-parse-tree.c:575
#, c-format
msgid " PURE"
msgstr ""

#: fortran/dump-parse-tree.c:577
#, c-format
msgid " RECURSIVE"
msgstr ""

#: fortran/dump-parse-tree.c:623
#, c-format
msgid "symbol %s "
msgstr ""

#: fortran/dump-parse-tree.c:630
#, c-format
msgid "value: "
msgstr ""

#: fortran/dump-parse-tree.c:637
#, c-format
msgid "Array spec:"
msgstr ""

#: fortran/dump-parse-tree.c:644
#, c-format
msgid "Generic interfaces:"
msgstr ""

#: fortran/dump-parse-tree.c:646 fortran/dump-parse-tree.c:670
#: fortran/dump-parse-tree.c:698 fortran/dump-parse-tree.c:1037
#: fortran/dump-parse-tree.c:1043 fortran/dump-parse-tree.c:1487
#, c-format
msgid " %s"
msgstr ""

#: fortran/dump-parse-tree.c:652
#, c-format
msgid "result: %s"
msgstr ""

#: fortran/dump-parse-tree.c:658
#, c-format
msgid "components: "
msgstr ""

#: fortran/dump-parse-tree.c:665
#, c-format
msgid "Formal arglist:"
msgstr ""

#: fortran/dump-parse-tree.c:672
#, c-format
msgid " [Alt Return]"
msgstr ""

#: fortran/dump-parse-tree.c:679
#, c-format
msgid "Formal namespace"
msgstr ""

#: fortran/dump-parse-tree.c:736
#, c-format
msgid "common: /%s/ "
msgstr ""

#: fortran/dump-parse-tree.c:744 fortran/dump-parse-tree.c:1423
#, c-format
msgid ", "
msgstr ""

#: fortran/dump-parse-tree.c:756
#, c-format
msgid "symtree: %s  Ambig %d"
msgstr ""

#: fortran/dump-parse-tree.c:759
#, c-format
msgid " from namespace %s"
msgstr ""

#: fortran/dump-parse-tree.c:803
#, c-format
msgid "NOP"
msgstr ""

#: fortran/dump-parse-tree.c:807
#, c-format
msgid "CONTINUE"
msgstr ""

#: fortran/dump-parse-tree.c:811
#, c-format
msgid "ENTRY %s"
msgstr ""

#: fortran/dump-parse-tree.c:815
#, c-format
msgid "ASSIGN "
msgstr ""

#: fortran/dump-parse-tree.c:822
#, c-format
msgid "LABEL ASSIGN "
msgstr ""

#: fortran/dump-parse-tree.c:824
#, c-format
msgid " %d"
msgstr ""

#: fortran/dump-parse-tree.c:828
#, c-format
msgid "POINTER ASSIGN "
msgstr ""

#: fortran/dump-parse-tree.c:835
#, c-format
msgid "GOTO "
msgstr ""

#: fortran/dump-parse-tree.c:844
#, c-format
msgid ", ("
msgstr ""

#: fortran/dump-parse-tree.c:858
#, c-format
msgid "CALL %s "
msgstr ""

#: fortran/dump-parse-tree.c:863
#, c-format
msgid "RETURN "
msgstr ""

#: fortran/dump-parse-tree.c:869
#, c-format
msgid "PAUSE "
msgstr ""

#: fortran/dump-parse-tree.c:879
#, c-format
msgid "STOP "
msgstr ""

#: fortran/dump-parse-tree.c:889 fortran/dump-parse-tree.c:897
#, c-format
msgid "IF "
msgstr ""

#: fortran/dump-parse-tree.c:891
#, c-format
msgid " %d, %d, %d"
msgstr ""

#: fortran/dump-parse-tree.c:908
#, c-format
msgid "ELSE\n"
msgstr ""

#: fortran/dump-parse-tree.c:911
#, c-format
msgid "ELSE IF "
msgstr ""

#: fortran/dump-parse-tree.c:921
#, c-format
msgid "ENDIF"
msgstr ""

#: fortran/dump-parse-tree.c:926
#, c-format
msgid "SELECT CASE "
msgstr ""

#: fortran/dump-parse-tree.c:934
#, c-format
msgid "CASE "
msgstr ""

#: fortran/dump-parse-tree.c:950
#, c-format
msgid "END SELECT"
msgstr ""

#: fortran/dump-parse-tree.c:954
#, c-format
msgid "WHERE "
msgstr ""

#: fortran/dump-parse-tree.c:965
#, c-format
msgid "ELSE WHERE "
msgstr ""

#: fortran/dump-parse-tree.c:972
#, c-format
msgid "END WHERE"
msgstr ""

#: fortran/dump-parse-tree.c:977
#, c-format
msgid "FORALL "
msgstr ""

#: fortran/dump-parse-tree.c:1002
#, c-format
msgid "END FORALL"
msgstr ""

#: fortran/dump-parse-tree.c:1006
#, c-format
msgid "DO "
msgstr ""

#: fortran/dump-parse-tree.c:1020 fortran/dump-parse-tree.c:1031
#, c-format
msgid "END DO"
msgstr ""

#: fortran/dump-parse-tree.c:1024
#, c-format
msgid "DO WHILE "
msgstr ""

#: fortran/dump-parse-tree.c:1035
#, c-format
msgid "CYCLE"
msgstr ""

#: fortran/dump-parse-tree.c:1041
#, c-format
msgid "EXIT"
msgstr ""

#: fortran/dump-parse-tree.c:1047
#, c-format
msgid "ALLOCATE "
msgstr ""

#: fortran/dump-parse-tree.c:1050 fortran/dump-parse-tree.c:1066
#, c-format
msgid " STAT="
msgstr ""

#: fortran/dump-parse-tree.c:1063
#, c-format
msgid "DEALLOCATE "
msgstr ""

#: fortran/dump-parse-tree.c:1079
#, c-format
msgid "OPEN"
msgstr ""

#: fortran/dump-parse-tree.c:1084 fortran/dump-parse-tree.c:1153
#: fortran/dump-parse-tree.c:1190 fortran/dump-parse-tree.c:1208
#: fortran/dump-parse-tree.c:1349
#, c-format
msgid " UNIT="
msgstr ""

#: fortran/dump-parse-tree.c:1089 fortran/dump-parse-tree.c:1158
#: fortran/dump-parse-tree.c:1195 fortran/dump-parse-tree.c:1219
#: fortran/dump-parse-tree.c:1365
#, c-format
msgid " IOSTAT="
msgstr ""

#: fortran/dump-parse-tree.c:1094 fortran/dump-parse-tree.c:1213
#, c-format
msgid " FILE="
msgstr ""

#: fortran/dump-parse-tree.c:1099 fortran/dump-parse-tree.c:1163
#, c-format
msgid " STATUS="
msgstr ""

#: fortran/dump-parse-tree.c:1104 fortran/dump-parse-tree.c:1249
#, c-format
msgid " ACCESS="
msgstr ""

#: fortran/dump-parse-tree.c:1109 fortran/dump-parse-tree.c:1265
#, c-format
msgid " FORM="
msgstr ""

#: fortran/dump-parse-tree.c:1114 fortran/dump-parse-tree.c:1280
#, c-format
msgid " RECL="
msgstr ""

#: fortran/dump-parse-tree.c:1119 fortran/dump-parse-tree.c:1290
#, c-format
msgid " BLANK="
msgstr ""

#: fortran/dump-parse-tree.c:1124 fortran/dump-parse-tree.c:1295
#, c-format
msgid " POSITION="
msgstr ""

#: fortran/dump-parse-tree.c:1129 fortran/dump-parse-tree.c:1300
#, c-format
msgid " ACTION="
msgstr ""

#: fortran/dump-parse-tree.c:1134 fortran/dump-parse-tree.c:1320
#, c-format
msgid " DELIM="
msgstr ""

#: fortran/dump-parse-tree.c:1139 fortran/dump-parse-tree.c:1325
#, c-format
msgid " PAD="
msgstr ""

#: fortran/dump-parse-tree.c:1143 fortran/dump-parse-tree.c:1167
#: fortran/dump-parse-tree.c:1199 fortran/dump-parse-tree.c:1330
#: fortran/dump-parse-tree.c:1396
#, c-format
msgid " ERR=%d"
msgstr ""

#: fortran/dump-parse-tree.c:1148
#, c-format
msgid "CLOSE"
msgstr ""

#: fortran/dump-parse-tree.c:1171
#, c-format
msgid "BACKSPACE"
msgstr ""

#: fortran/dump-parse-tree.c:1175
#, c-format
msgid "ENDFILE"
msgstr ""

#: fortran/dump-parse-tree.c:1179
#, c-format
msgid "REWIND"
msgstr ""

#: fortran/dump-parse-tree.c:1183
#, c-format
msgid "FLUSH"
msgstr ""

#: fortran/dump-parse-tree.c:1203
#, c-format
msgid "INQUIRE"
msgstr ""

#: fortran/dump-parse-tree.c:1224
#, c-format
msgid " EXIST="
msgstr ""

#: fortran/dump-parse-tree.c:1229
#, c-format
msgid " OPENED="
msgstr ""

#: fortran/dump-parse-tree.c:1234
#, c-format
msgid " NUMBER="
msgstr ""

#: fortran/dump-parse-tree.c:1239
#, c-format
msgid " NAMED="
msgstr ""

#: fortran/dump-parse-tree.c:1244
#, c-format
msgid " NAME="
msgstr ""

#: fortran/dump-parse-tree.c:1254
#, c-format
msgid " SEQUENTIAL="
msgstr ""

#: fortran/dump-parse-tree.c:1260
#, c-format
msgid " DIRECT="
msgstr ""

#: fortran/dump-parse-tree.c:1270
#, c-format
msgid " FORMATTED"
msgstr ""

#: fortran/dump-parse-tree.c:1275
#, c-format
msgid " UNFORMATTED="
msgstr ""

#: fortran/dump-parse-tree.c:1285
#, c-format
msgid " NEXTREC="
msgstr ""

#: fortran/dump-parse-tree.c:1305
#, c-format
msgid " READ="
msgstr ""

#: fortran/dump-parse-tree.c:1310
#, c-format
msgid " WRITE="
msgstr ""

#: fortran/dump-parse-tree.c:1315
#, c-format
msgid " READWRITE="
msgstr ""

#: fortran/dump-parse-tree.c:1334
#, c-format
msgid "IOLENGTH "
msgstr ""

#: fortran/dump-parse-tree.c:1339
#, c-format
msgid "READ"
msgstr ""

#: fortran/dump-parse-tree.c:1343
#, c-format
msgid "WRITE"
msgstr ""

#: fortran/dump-parse-tree.c:1355
#, c-format
msgid " FMT="
msgstr ""

#: fortran/dump-parse-tree.c:1360
#, c-format
msgid " FMT=%d"
msgstr ""

#: fortran/dump-parse-tree.c:1362
#, c-format
msgid " NML=%s"
msgstr ""

#: fortran/dump-parse-tree.c:1370
#, c-format
msgid " SIZE="
msgstr ""

#: fortran/dump-parse-tree.c:1375
#, c-format
msgid " REC="
msgstr ""

#: fortran/dump-parse-tree.c:1380
#, c-format
msgid " ADVANCE="
msgstr ""

#: fortran/dump-parse-tree.c:1387
#, c-format
msgid "TRANSFER "
msgstr ""

#: fortran/dump-parse-tree.c:1392
#, c-format
msgid "DT_END"
msgstr ""

#: fortran/dump-parse-tree.c:1398
#, c-format
msgid " END=%d"
msgstr ""

#: fortran/dump-parse-tree.c:1400
#, c-format
msgid " EOR=%d"
msgstr ""

#: fortran/dump-parse-tree.c:1417
#, c-format
msgid "Equivalence: "
msgstr ""

#: fortran/dump-parse-tree.c:1443
#, c-format
msgid "Namespace:"
msgstr ""

#: fortran/dump-parse-tree.c:1457
#, c-format
msgid " %c-%c: "
msgstr ""

#: fortran/dump-parse-tree.c:1459
#, c-format
msgid " %c: "
msgstr ""

#: fortran/dump-parse-tree.c:1468
#, c-format
msgid "procedure name = %s"
msgstr ""

#: fortran/dump-parse-tree.c:1484
#, c-format
msgid "Operator interfaces for %s:"
msgstr ""

#: fortran/dump-parse-tree.c:1493
#, c-format
msgid "User operators:\n"
msgstr ""

#: fortran/dump-parse-tree.c:1509
#, c-format
msgid "CONTAINS\n"
msgstr ""

#: fortran/error.c:479 fortran/error.c:519 fortran/error.c:545
msgid "Warning:"
msgstr ""

#: fortran/error.c:521 fortran/error.c:595 fortran/error.c:619
msgid "Error:"
msgstr ""

#: fortran/error.c:637
msgid "Fatal Error:"
msgstr ""

#: fortran/expr.c:258
#, c-format
msgid "Constant expression required at %C"
msgstr ""

#: fortran/expr.c:261
#, c-format
msgid "Integer expression required at %C"
msgstr ""

#: fortran/expr.c:266
#, c-format
msgid "Integer value too large in expression at %C"
msgstr ""

#: fortran/expr.c:1850
msgid "Array assignment"
msgstr ""

#: fortran/gfortranspec.c:232
#, c-format
msgid "overflowed output arg list for '%s'"
msgstr ""

#: fortran/gfortranspec.c:349
#, c-format
msgid ""
"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"
"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"
msgstr ""

#: fortran/gfortranspec.c:376
#, c-format
msgid "argument to '%s' missing"
msgstr ""

#: fortran/gfortranspec.c:380
#, c-format
msgid "no input files; unwilling to write output files"
msgstr ""

#: fortran/gfortranspec.c:532
#, c-format
msgid "Driving:"
msgstr ""

#: fortran/io.c:403
msgid "Positive width required"
msgstr ""

#: fortran/io.c:404
msgid "Period required"
msgstr ""

#: fortran/io.c:405
msgid "Nonnegative width required"
msgstr ""

#: fortran/io.c:406
msgid "Unexpected element"
msgstr ""

#: fortran/io.c:407
msgid "Unexpected end of format string"
msgstr ""

#: fortran/io.c:424
msgid "Missing leading left parenthesis"
msgstr ""

#: fortran/io.c:462
msgid "Expected P edit descriptor"
msgstr ""

#. P requires a prior number.
#: fortran/io.c:470
msgid "P descriptor requires leading scale factor"
msgstr ""

#: fortran/io.c:500
msgid "$ must be the last specifier"
msgstr ""

#: fortran/io.c:545
msgid "Repeat count cannot follow P descriptor"
msgstr ""

#: fortran/io.c:608
msgid "Positive exponent width required"
msgstr ""

#: fortran/matchexp.c:29
#, c-format
msgid "Syntax error in expression at %C"
msgstr ""

#: fortran/module.c:848
msgid "Unexpected EOF"
msgstr ""

#: fortran/module.c:880
msgid "Unexpected end of module in string constant"
msgstr ""

#: fortran/module.c:934
msgid "Integer overflow"
msgstr ""

#: fortran/module.c:965
msgid "Name too long"
msgstr ""

#: fortran/module.c:1072
msgid "Bad name"
msgstr ""

#: fortran/module.c:1116
msgid "Expected name"
msgstr ""

#: fortran/module.c:1119
msgid "Expected left parenthesis"
msgstr ""

#: fortran/module.c:1122
msgid "Expected right parenthesis"
msgstr ""

#: fortran/module.c:1125
msgid "Expected integer"
msgstr ""

#: fortran/module.c:1128
msgid "Expected string"
msgstr ""

#: fortran/module.c:1152
msgid "find_enum(): Enum not found"
msgstr ""

#: fortran/module.c:1519
msgid "Expected attribute bit name"
msgstr ""

#: fortran/module.c:2248
msgid "Expected integer string"
msgstr ""

#: fortran/module.c:2252
msgid "Error converting integer"
msgstr ""

#: fortran/module.c:2275
msgid "Expected real string"
msgstr ""

#: fortran/module.c:2421
msgid "Expected expression type"
msgstr ""

#: fortran/module.c:2466
msgid "Bad operator"
msgstr ""

#: fortran/module.c:2552
msgid "Bad type in constant expression"
msgstr ""

#: fortran/module.c:3566
msgid "Unexpected end of module"
msgstr ""

#: fortran/options.c:164
#, c-format
msgid "gfortran: Only one -M option allowed\n"
msgstr ""

#: fortran/options.c:170
#, c-format
msgid "gfortran: Directory required after -M\n"
msgstr ""

#: fortran/parse.c:734
msgid "arithmetic IF"
msgstr ""

#: fortran/parse.c:740
msgid "attribute declaration"
msgstr ""

#: fortran/parse.c:770
msgid "data declaration"
msgstr ""

#: fortran/parse.c:779
msgid "derived type declaration"
msgstr ""

#: fortran/parse.c:858
msgid "block IF"
msgstr ""

#: fortran/parse.c:867
msgid "implied END DO"
msgstr ""

#: fortran/parse.c:934
msgid "assignment"
msgstr ""

#: fortran/parse.c:937
msgid "pointer assignment"
msgstr ""

#: fortran/parse.c:946
msgid "simple IF"
msgstr ""

#: fortran/parse.c:972
msgid "a PROGRAM"
msgstr ""

#: fortran/parse.c:975
msgid "a MODULE"
msgstr ""

#: fortran/parse.c:978
msgid "a SUBROUTINE"
msgstr ""

#: fortran/parse.c:981
msgid "a FUNCTION"
msgstr ""

#: fortran/parse.c:984
msgid "a BLOCK DATA"
msgstr ""

#: fortran/parse.c:987
msgid "an INTERFACE"
msgstr ""

#: fortran/parse.c:990
msgid "a DERIVED TYPE block"
msgstr ""

#: fortran/parse.c:993
msgid "an IF-THEN block"
msgstr ""

#: fortran/parse.c:996
msgid "a DO block"
msgstr ""

#: fortran/parse.c:999
msgid "a SELECT block"
msgstr ""

#: fortran/parse.c:1002
msgid "a FORALL block"
msgstr ""

#: fortran/parse.c:1005
msgid "a WHERE block"
msgstr ""

#: fortran/parse.c:1008
msgid "a contained subprogram"
msgstr ""

#: fortran/primary.c:320
msgid "binary"
msgstr ""

#: fortran/primary.c:324
msgid "octal"
msgstr ""

#: fortran/primary.c:331
msgid "hexadecimal"
msgstr ""

#: fortran/resolve.c:1442
#, c-format
msgid "Operand of unary numeric operator '%s' at %%L is %s"
msgstr ""

#: fortran/resolve.c:1458
#, c-format
msgid "Operands of binary numeric operator '%s' at %%L are %s/%s"
msgstr ""

#: fortran/resolve.c:1472
#, c-format
msgid "Operands of string concatenation operator at %%L are %s/%s"
msgstr ""

#: fortran/resolve.c:1491
#, c-format
msgid "Operands of logical operator '%s' at %%L are %s/%s"
msgstr ""

#: fortran/resolve.c:1505
#, c-format
msgid "Operand of .NOT. operator at %%L is %s"
msgstr ""

#: fortran/resolve.c:1515
msgid "COMPLEX quantities cannot be compared at %L"
msgstr ""

#: fortran/resolve.c:1541
#, c-format
msgid "Logicals at %%L must be compared with %s instead of %s"
msgstr ""

#: fortran/resolve.c:1546
#, c-format
msgid "Operands of comparison operator '%s' at %%L are %s/%s"
msgstr ""

#: fortran/resolve.c:1554
#, c-format
msgid "Operand of user operator '%s' at %%L is %s"
msgstr ""

#: fortran/resolve.c:1557
#, c-format
msgid "Operands of user operator '%s' at %%L are %s/%s"
msgstr ""

#: fortran/resolve.c:4297
msgid "Allocatable"
msgstr ""

#: fortran/resolve.c:4299
msgid "External"
msgstr ""

#: fortran/resolve.c:4301
msgid "Dummy"
msgstr ""

#: fortran/resolve.c:4303
msgid "Intrinsic"
msgstr ""

#: fortran/resolve.c:4305
msgid "Function Result"
msgstr ""

#: fortran/resolve.c:4316
msgid "Automatic array"
msgstr ""

#: fortran/scanner.c:1209
#, c-format
msgid "%s:%3d %s\n"
msgstr ""

#: fortran/trans-const.c:158
msgid "Array bound mismatch"
msgstr ""

#: fortran/trans-const.c:161
msgid "Array reference out of bounds"
msgstr ""

#: fortran/trans-const.c:164
msgid "Incorrect function return value"
msgstr ""

#: fortran/trans-io.c:460
msgid "Assigned label is not a format label"
msgstr ""

#: fortran/trans-stmt.c:160
msgid "Assigned label is not a target label"
msgstr ""

#. Check the label list.
#: fortran/trans-stmt.c:176
msgid "Assigned label is not in the list"
msgstr ""

#. FIXME: i18n bug here.  Order of prints should not be
#. fixed.
#: java/gjavah.c:910
#, c-format
msgid "ignored method '"
msgstr ""

#: java/gjavah.c:912
#, c-format
msgid "' marked virtual\n"
msgstr ""

#: java/gjavah.c:2350
#, c-format
msgid "Try '"
msgstr ""

#: java/gjavah.c:2350
#, c-format
msgid " --help' for more information.\n"
msgstr ""

#: java/gjavah.c:2357
#, c-format
msgid "Usage: "
msgstr ""

#: java/gjavah.c:2357
#, c-format
msgid ""
" [OPTION]... CLASS...\n"
"\n"
msgstr ""

#: java/gjavah.c:2358
#, c-format
msgid ""
"Generate C or C++ header files from .class files\n"
"\n"
msgstr ""

#: java/gjavah.c:2359
#, c-format
msgid "  -stubs                  Generate an implementation stub file\n"
msgstr ""

#: java/gjavah.c:2360
#, c-format
msgid "  -jni                    Generate a JNI header or stub\n"
msgstr ""

#: java/gjavah.c:2361
#, c-format
msgid "  -force                  Always overwrite output files\n"
msgstr ""

#: java/gjavah.c:2362
#, c-format
msgid "  -old                    Unused compatibility option\n"
msgstr ""

#: java/gjavah.c:2363
#, c-format
msgid "  -trace                  Unused compatibility option\n"
msgstr ""

#: java/gjavah.c:2364
#, c-format
msgid "  -J OPTION               Unused compatibility option\n"
msgstr ""

#: java/gjavah.c:2366
#, c-format
msgid "  -add TEXT               Insert TEXT into class body\n"
msgstr ""

#: java/gjavah.c:2367
#, c-format
msgid "  -append TEXT            Insert TEXT after class declaration\n"
msgstr ""

#: java/gjavah.c:2368
#, c-format
msgid "  -friend TEXT            Insert TEXT as 'friend' declaration\n"
msgstr ""

#: java/gjavah.c:2369
#, c-format
msgid "  -prepend TEXT           Insert TEXT before start of class\n"
msgstr ""

#: java/gjavah.c:2371 java/jcf-dump.c:912
#, c-format
msgid "  --classpath PATH        Set path to find .class files\n"
msgstr ""

#: java/gjavah.c:2372 java/jcf-dump.c:913
#, c-format
msgid "  -IDIR                   Append directory to class path\n"
msgstr ""

#: java/gjavah.c:2373 java/jcf-dump.c:914
#, c-format
msgid "  --bootclasspath PATH    Override built-in class path\n"
msgstr ""

#: java/gjavah.c:2374 java/jcf-dump.c:915
#, c-format
msgid "  --extdirs PATH          Set extensions directory path\n"
msgstr ""

#: java/gjavah.c:2375
#, c-format
msgid "  -d DIRECTORY            Set output directory name\n"
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"
msgstr ""

#: java/gjavah.c:2377
#, c-format
msgid "  -td DIRECTORY           Set temporary directory name\n"
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"
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"
msgstr ""

#: 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:749
#, 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/mips/mips.h:849 config/arc/arc.h:62
msgid "may not use both -EB and -EL"
msgstr ""

#: config/darwin.h:231
msgid "-current_version only allowed with -dynamiclib"
msgstr ""

#: config/darwin.h:233
msgid "-install_name only allowed with -dynamiclib"
msgstr ""

#: config/darwin.h:238
msgid "-bundle not allowed with -dynamiclib"
msgstr ""

#: config/darwin.h:239
msgid "-bundle_loader not allowed with -dynamiclib"
msgstr ""

#: config/darwin.h:240
msgid "-client_name not allowed with -dynamiclib"
msgstr ""

#: config/darwin.h:245
msgid "-force_flat_namespace not allowed with -dynamiclib"
msgstr ""

#: config/darwin.h:247
msgid "-keep_private_externs not allowed with -dynamiclib"
msgstr ""

#: config/darwin.h:248
msgid "-private_bundle not allowed with -dynamiclib"
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 ""

#: 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/mips/r3900.h:35
msgid "-mhard-float not supported"
msgstr ""

#: config/mips/r3900.h:37
msgid "-msingle-float and -msoft-float cannot both be specified"
msgstr ""

#: config/vax/netbsd-elf.h:42
msgid "the -shared option is not currently supported for VAX ELF"
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 ""

#: java/jvspec.c:80 ada/lang-specs.h:34 gcc.c:794
msgid "-pg and -fomit-frame-pointer are incompatible"
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/sparc/linux64.h:206 config/sparc/linux64.h:217
#: config/sparc/netbsd-elf.h:126 config/sparc/netbsd-elf.h:145
#: config/sparc/sol2-bi.h:195 config/sparc/sol2-bi.h:205
msgid "may not use both -m32 and -m64"
msgstr ""

#: config/i386/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: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:104
msgid " conflicting code gen style switches are used"
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/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 <answer> to <question>.  Putting '-' before <question> disables "
"the <answer> to <question>"
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 <macro> with <val> as its value.  If just <macro> is given, <val> "
"is taken to be 1"
msgstr ""

#: c.opt:61
msgid "Add <dir> 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:771
msgid "Add <dir> 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 <macro>"
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 <name> 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 <cset>"
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:562
msgid "Don't warn about uses of Microsoft extensions"
msgstr ""

#: c.opt:572
msgid "Generate code for NeXT (Apple Mac OS X) runtime environment"
msgstr ""

#: c.opt:576
msgid "Assume that receivers of Objective-C messages may be nil"
msgstr ""

#: c.opt:588
msgid ""
"Generate special Objective-C methods to initialize/destroy non-POD C++ "
"ivars, if needed"
msgstr ""

#: c.opt:592
msgid "Allow fast jumps to the message dispatcher"
msgstr ""

#: c.opt:598
msgid "Enable Objective-C exception and synchronization syntax"
msgstr ""

#: c.opt:602
msgid "Enable garbage collection (GC) in Objective-C/Objective-C++ programs"
msgstr ""

#: c.opt:607
msgid "Enable Objective-C setjmp exception handling runtime"
msgstr ""

#: c.opt:611
msgid "Recognize C++ kewords like \"compl\" and \"xor\""
msgstr ""

#: c.opt:615
msgid "Enable optional diagnostics"
msgstr ""

#: c.opt:622
msgid "Look for and use PCH files even when preprocessing"
msgstr ""

#: c.opt:626
msgid "Downgrade conformance errors to warnings"
msgstr ""

#: c.opt:630
msgid "Treat the input file as already preprocessed"
msgstr ""

#: c.opt:634
msgid ""
"Used in Fix-and-Continue mode to indicate that object files may be swapped "
"in at runtime"
msgstr ""

#: c.opt:638
msgid "Enable automatic template instantiation"
msgstr ""

#: c.opt:642
msgid "Generate run time type descriptor information"
msgstr ""

#: c.opt:646
msgid "Use the same size for double as for float"
msgstr ""

#: c.opt:650
msgid "Use the narrowest integer type possible for enumeration types"
msgstr ""

#: c.opt:654
msgid "Force the underlying type for \"wchar_t\" to be \"unsigned short\""
msgstr ""

#: c.opt:658
msgid "When \"signed\" or \"unsigned\" is not given make the bitfield signed"
msgstr ""

#: c.opt:662
msgid "Make \"char\" signed by default"
msgstr ""

#: c.opt:669
msgid "Display statistics accumulated during compilation"
msgstr ""

#: c.opt:676
msgid "Distance between tab stops for column reporting"
msgstr ""

#: c.opt:680
msgid "Specify maximum template instantiation depth"
msgstr ""

#: c.opt:687
msgid "Do not generate thread-safe code for initializing local statics"
msgstr ""

#: c.opt:691
msgid "When \"signed\" or \"unsigned\" is not given make the bitfield unsigned"
msgstr ""

#: c.opt:695
msgid "Make \"char\" unsigned by default"
msgstr ""

#: c.opt:699
msgid "Use __cxa_atexit to register destructors"
msgstr ""

#: c.opt:703
msgid "Marks all inlined methods as having hidden visibility"
msgstr ""

#: c.opt:707
msgid "Discard unused virtual functions"
msgstr ""

#: c.opt:711
msgid "Implement vtables using thunks"
msgstr ""

#: c.opt:715
msgid "Emit common-like symbols as weak symbols"
msgstr ""

#: c.opt:719
msgid ""
"Convert all wide strings and character constants to character set <cset>"
msgstr ""

#: c.opt:723
msgid "Generate a #line directive pointing at the current working directory"
msgstr ""

#: c.opt:727
msgid "Emit cross referencing information"
msgstr ""

#: c.opt:731
msgid ""
"Generate lazy class lookup (via objc_getClass()) for use in Zero-Link mode"
msgstr ""

#: c.opt:735
msgid "Dump declarations to a .decl file"
msgstr ""

#: c.opt:739 c.opt:767
msgid "Add <dir> to the end of the system include path"
msgstr ""

#: c.opt:743
msgid "Accept definition of macros in <file>"
msgstr ""

#: c.opt:747
msgid "Include the contents of <file> before other files"
msgstr ""

#: c.opt:751
msgid "Specify <path> as a prefix for next two options"
msgstr ""

#: c.opt:755
msgid "Set <dir> to be the system root directory"
msgstr ""

#: c.opt:759
msgid "Add <dir> to the start of the system include path"
msgstr ""

#: c.opt:763
msgid "Add <dir> to the end of the quote include path"
msgstr ""

#: c.opt:781
msgid ""
"Do not search standard system include directories (those specified with -"
"isystem will still be used)"
msgstr ""

#: c.opt:785
msgid "Do not search standard system include directories for C++"
msgstr ""

#: c.opt:801
msgid "Generate C header of platform-specific features"
msgstr ""

#: c.opt:805
msgid "Print a checksum of the executable for PCH validity checking, and stop"
msgstr ""

#: c.opt:809
msgid "Remap file names when including files"
msgstr ""

#: c.opt:813
msgid "Conform to the ISO 1998 C++ standard"
msgstr ""

#: c.opt:817 c.opt:845
msgid "Conform to the ISO 1990 C standard"
msgstr ""

#: c.opt:821 c.opt:853
msgid "Conform to the ISO 1999 C standard"
msgstr ""

#: c.opt:825
msgid "Deprecated in favor of -std=c99"
msgstr ""

#: c.opt:829
msgid "Conform to the ISO 1998 C++ standard with GNU extensions"
msgstr ""

#: c.opt:833
msgid "Conform to the ISO 1990 C standard with GNU extensions"
msgstr ""

#: c.opt:837
msgid "Conform to the ISO 1999 C standard with GNU extensions"
msgstr ""

#: c.opt:841
msgid "Deprecated in favor of -std=gnu99"
msgstr ""

#: c.opt:849
msgid "Conform to the ISO 1990 C standard as amended in 1994"
msgstr ""

#: c.opt:857
msgid "Deprecated in favor of -std=iso9899:1999"
msgstr ""

#: c.opt:861
msgid "Enable traditional preprocessing"
msgstr ""

#: c.opt:865
msgid "Support ISO C trigraphs"
msgstr ""

#: c.opt:869
msgid "Do not predefine system-specific and GCC-specific macros"
msgstr ""

#: c.opt:873
msgid "Enable verbose output"
msgstr ""

#: common.opt:28
msgid "Display this information"
msgstr ""

#: common.opt:32
msgid ""
"Set parameter <param> to value.  See below for a complete list of parameters"
msgstr ""

#: common.opt:42
msgid ""
"Put global and static data smaller than <number> bytes into a special "
"section (on some targets)"
msgstr ""

#: common.opt:46
msgid "Set optimization level to <number>"
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 <number> bytes"
msgstr ""

#: common.opt:98
msgid "Warn if the loop cannot be optimized due to nontrivial assumptions."
msgstr ""

#: common.opt:102
msgid ""
"Warn about functions which might be candidates for __attribute__((noreturn))"
msgstr ""

#: common.opt: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 <file>"
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 <register> as being preserved across functions"
msgstr ""

#: common.opt:295
msgid "Mark <register> 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 DWARF2 duplicate elimination"
msgstr ""

#: common.opt:368 common.opt:372
msgid "Perform unused type elimination in debug info"
msgstr ""

#: common.opt:376
msgid "Enable exception handling"
msgstr ""

#: common.opt:380
msgid "Perform a number of minor, expensive optimizations"
msgstr ""

#: common.opt:387
msgid "Assume no NaNs or infinities are generated"
msgstr ""

#: common.opt:391
msgid "Mark <register> as being unavailable to the compiler"
msgstr ""

#: common.opt:395
msgid "Don't allocate floats and doubles in extended-precision registers"
msgstr ""

#: common.opt:401
msgid "Copy memory address constants into registers before use"
msgstr ""

#: common.opt:407
msgid "Copy memory operands into registers before use"
msgstr ""

#: common.opt:414
msgid "Allow function addresses to be held in registers"
msgstr ""

#: common.opt:418
msgid "Place each function into its own section"
msgstr ""

#: common.opt:422
msgid "Perform global common subexpression elimination"
msgstr ""

#: common.opt:426
msgid ""
"Perform enhanced load motion during global common subexpression elimination"
msgstr ""

#: common.opt:430
msgid "Perform store motion after global common subexpression elimination"
msgstr ""

#: common.opt:434
msgid ""
"Perform redundant load after store elimination in global common subexpression"
msgstr ""

#: common.opt:439
msgid ""
"Perform global common subexpression elimination after register allocation"
msgstr ""

#: common.opt:444
msgid "Enable guessing of branch probabilities"
msgstr ""

#: common.opt:452
msgid "Process #ident directives"
msgstr ""

#: common.opt:456
msgid "Perform conversion of conditional jumps to branchless equivalents"
msgstr ""

#: common.opt:460
msgid "Perform conversion of conditional jumps to conditional execution"
msgstr ""

#: common.opt:468
msgid "Do not generate .size directives"
msgstr ""

#: common.opt:477
msgid "Pay attention to the \"inline\" keyword"
msgstr ""

#: common.opt:481
msgid "Integrate simple functions into their callers"
msgstr ""

#: common.opt:485
msgid "Perform early inlining"
msgstr ""

#: common.opt:492
msgid "Limit the size of inlined functions to <number>"
msgstr ""

#: common.opt:496
msgid "Instrument function entry and exit with profiling calls"
msgstr ""

#: common.opt:500
msgid "Perform Interprocedural constant propagation"
msgstr ""

#: common.opt:504
msgid "Discover pure and const functions"
msgstr ""

#: common.opt:508
msgid "Discover readonly and non addressable static variables"
msgstr ""

#: common.opt:512
msgid "Type based escape and alias analysis"
msgstr ""

#: common.opt:516
msgid "Optimize induction variables on trees"
msgstr ""

#: common.opt:520
msgid "Use jump tables for sufficiently large switch statements"
msgstr ""

#: common.opt:524
msgid "Generate code for functions even if they are fully inlined"
msgstr ""

#: common.opt:528
msgid "Emit static const variables even if they are not used"
msgstr ""

#: common.opt:532
msgid "Give external symbols a leading underscore"
msgstr ""

#: common.opt:536
msgid "Perform loop optimizations"
msgstr ""

#: common.opt:540
msgid "Perform loop optimizations using the new loop optimizer"
msgstr ""

#: common.opt:544
msgid "Set errno after built-in math functions"
msgstr ""

#: common.opt:548
msgid "Report on permanent memory allocation"
msgstr ""

#: common.opt:555
msgid "Attempt to merge identical constants and constant variables"
msgstr ""

#: common.opt:559
msgid "Attempt to merge identical constants across compilation units"
msgstr ""

#: common.opt:563
msgid ""
"Limit diagnostics to <number> characters per line.  0 suppresses line-"
"wrapping"
msgstr ""

#: common.opt:567
msgid "Perform SMS based modulo scheduling before the first scheduling pass"
msgstr ""

#: common.opt:571
msgid "Move loop invariant computations out of loops"
msgstr ""

#: common.opt:575
msgid "Add mudflap bounds-checking instrumentation for single-threaded program"
msgstr ""

#: common.opt:579
msgid "Add mudflap bounds-checking instrumentation for multi-threaded program"
msgstr ""

#: common.opt:583
msgid "Ignore read operations when inserting mudflap instrumentation"
msgstr ""

#: common.opt:587
msgid ""
"Enable/Disable the traditional scheduling in loops that already passed "
"modulo scheduling"
msgstr ""

#: common.opt:591
msgid "Support synchronous non-call exceptions"
msgstr ""

#: common.opt:595
msgid "When possible do not generate stack frames"
msgstr ""

#: common.opt:599
msgid "Do the full register move optimization pass"
msgstr ""

#: common.opt:603
msgid "Optimize sibling and tail recursive calls"
msgstr ""

#: common.opt:607
msgid "Pack structure members together without holes"
msgstr ""

#: common.opt:611
msgid "Set initial maximum structure member alignment"
msgstr ""

#: common.opt:615
msgid "Return small aggregates in memory, not registers"
msgstr ""

#: common.opt:619
msgid "Perform loop peeling"
msgstr ""

#: common.opt:623
msgid "Enable machine specific peephole optimizations"
msgstr ""

#: common.opt:627
msgid "Enable an RTL peephole pass before sched2"
msgstr ""

#: common.opt:631
msgid "Generate position-independent code if possible (large mode)"
msgstr ""

#: common.opt:635
msgid ""
"Generate position-independent code for executables if possible (large mode)"
msgstr ""

#: common.opt:639
msgid "Generate position-independent code if possible (small mode)"
msgstr ""

#: common.opt:643
msgid ""
"Generate position-independent code for executables if possible (small mode)"
msgstr ""

#: common.opt:647
msgid "Generate prefetch instructions, if available, for arrays in loops"
msgstr ""

#: common.opt:651
msgid "Enable basic program profiling code"
msgstr ""

#: common.opt:655
msgid "Insert arc-based program profiling code"
msgstr ""

#: common.opt:659
msgid ""
"Enable common options for generating profile info for profile feedback "
"directed optimizations"
msgstr ""

#: common.opt:663
msgid ""
"Enable common options for performing profile feedback directed optimizations"
msgstr ""

#: common.opt:667
msgid "Insert code to profile values of expressions"
msgstr ""

#: common.opt:674
msgid "Make compile reproducible using <string>"
msgstr ""

#: common.opt:678
msgid "Return small aggregates in registers"
msgstr ""

#: common.opt:682
msgid "Enables a register move optimization"
msgstr ""

#: common.opt:686
msgid "Perform a register renaming optimization pass"
msgstr ""

#: common.opt:690
msgid "Reorder basic blocks to improve code placement"
msgstr ""

#: common.opt:694
msgid "Reorder basic blocks and partition into hot and cold sections"
msgstr ""

#: common.opt:698
msgid "Reorder functions to improve code placement"
msgstr ""

#: common.opt:702
msgid "Add a common subexpression elimination pass after loop optimizations"
msgstr ""

#: common.opt:706
msgid "Run the loop optimizer twice"
msgstr ""

#: common.opt:710
msgid "Disable optimizations that assume default FP rounding behavior"
msgstr ""

#: common.opt:714
msgid "Enable scheduling across basic blocks"
msgstr ""

#: common.opt:718
msgid "Allow speculative motion of non-loads"
msgstr ""

#: common.opt:722
msgid "Allow speculative motion of some loads"
msgstr ""

#: common.opt:726
msgid "Allow speculative motion of more loads"
msgstr ""

#: common.opt:730
msgid "Set the verbosity level of the scheduler"
msgstr ""

#: common.opt:734
msgid "If scheduling post reload, do superblock scheduling"
msgstr ""

#: common.opt:738
msgid "If scheduling post reload, do trace scheduling"
msgstr ""

#: common.opt:742
msgid "Reschedule instructions before register allocation"
msgstr ""

#: common.opt:746
msgid "Reschedule instructions after register allocation"
msgstr ""

#: common.opt:752
msgid "Allow premature scheduling of queued insns"
msgstr ""

#: common.opt:756
msgid "Set number of queued insns that can be prematurely scheduled"
msgstr ""

#: common.opt:764 common.opt:768
msgid ""
"Set dependence distance checking in premature scheduling of queued insns"
msgstr ""

#: common.opt:772
msgid "Mark data as shared rather than private"
msgstr ""

#: common.opt:776
msgid "Show column numbers in diagnostics, when available.  Default on"
msgstr ""

#: common.opt:780
msgid "Disable optimizations observable by IEEE signaling NaNs"
msgstr ""

#: common.opt:784
msgid "Convert floating point constants to single precision constants"
msgstr ""

#: common.opt:788
msgid "Split lifetimes of induction variables when loops are unrolled"
msgstr ""

#: common.opt:792
msgid "Apply variable expansion when loops are unrolled"
msgstr ""

#: common.opt:798
msgid "Insert stack checking code into the program"
msgstr ""

#: common.opt:805
msgid "Trap if the stack goes past <register>"
msgstr ""

#: common.opt:809
msgid "Trap if the stack goes past symbol <name>"
msgstr ""

#: common.opt:813
msgid "Use propolice as a stack protection method"
msgstr ""

#: common.opt:817
msgid "Use a stack protection method for every function"
msgstr ""

#: common.opt:821
msgid "Perform strength reduction optimizations"
msgstr ""

#: common.opt:829
msgid "Assume strict aliasing rules apply"
msgstr ""

#: common.opt:833
msgid "Check for syntax errors, then stop"
msgstr ""

#: common.opt:837
msgid "Create data files needed by \"gcov\""
msgstr ""

#: common.opt:841
msgid "Perform jump threading optimizations"
msgstr ""

#: common.opt:845
msgid "Report the time taken by each compiler pass"
msgstr ""

#: common.opt:849
msgid "Set the default thread-local storage code generation model"
msgstr ""

#: common.opt:853
msgid "Perform superblock formation via tail duplication"
msgstr ""

#: common.opt:860
msgid "Assume floating-point operations can trap"
msgstr ""

#: common.opt:864
msgid "Trap for signed overflow in addition, subtraction and multiplication"
msgstr ""

#: common.opt:868
msgid "Enable SSA-CCP optimization on trees"
msgstr ""

#: common.opt:872
msgid "Enable SSA-CCP optimization for stores and loads"
msgstr ""

#: common.opt:876
msgid "Enable loop header copying on trees"
msgstr ""

#: common.opt:880
msgid "Coalesce memory temporaries in the SSA->normal pass"
msgstr ""

#: common.opt:884
msgid "Replace SSA temporaries with better names in copies"
msgstr ""

#: common.opt:888
msgid "Enable copy propagation on trees"
msgstr ""

#: common.opt:892
msgid "Enable copy propagation for stores and loads"
msgstr ""

#: common.opt:896
msgid "Enable SSA dead code elimination optimization on trees"
msgstr ""

#: common.opt:900
msgid "Enable dominator optimizations"
msgstr ""

#: common.opt:904
msgid "Enable dead store elimination"
msgstr ""

#: common.opt:908
msgid "Enable Full Redundancy Elimination (FRE) on trees"
msgstr ""

#: common.opt:912
msgid "Enable loop invariant motion on trees"
msgstr ""

#: common.opt:916
msgid "Enable linear loop transforms on trees"
msgstr ""

#: common.opt:920
msgid "Create canonical induction variables in loops"
msgstr ""

#: common.opt:924
msgid "Enable loop optimizations on tree level"
msgstr ""

#: common.opt:928
msgid "Enable SSA-PRE optimization on trees"
msgstr ""

#: common.opt:932
msgid "Perform structural alias analysis"
msgstr ""

#: common.opt:936
msgid "Enable SSA code sinking on trees"
msgstr ""

#: common.opt:940
msgid "Perform scalar replacement of aggregates"
msgstr ""

#: common.opt:944
msgid "Replace temporary expressions in the SSA->normal pass"
msgstr ""

#: common.opt:948
msgid "Perform live range splitting during the SSA->normal pass"
msgstr ""

#: common.opt:952
msgid "Perform Value Range Propagation on trees"
msgstr ""

#: common.opt:956
msgid "Compile whole compilation unit at a time"
msgstr ""

#: common.opt:960
msgid "Perform loop unrolling when iteration count is known"
msgstr ""

#: common.opt:964
msgid "Perform loop unrolling for all loops"
msgstr ""

#: common.opt:971
msgid "Allow loop optimizations to assume that the loops behave in normal way"
msgstr ""

#: common.opt:979
msgid "Allow math optimizations that may violate IEEE or ISO standards"
msgstr ""

#: common.opt:983
msgid "Perform loop unswitching"
msgstr ""

#: common.opt:987
msgid "Just generate unwind tables for exception handling"
msgstr ""

#: common.opt:991
msgid "Perform variable tracking"
msgstr ""

#: common.opt:995
msgid "Enable loop vectorization on trees"
msgstr ""

#: common.opt:999
msgid "Set the verbosity level of the vectorizer"
msgstr ""

#: common.opt:1009
msgid "Add extra commentary to assembler output"
msgstr ""

#: common.opt:1013
msgid "Set the default symbol visibility"
msgstr ""

#: common.opt:1018
msgid "Use expression value profiles in optimizations"
msgstr ""

#: common.opt:1022
msgid "Construct webs and split unrelated uses of single variable"
msgstr ""

#: common.opt:1026
msgid "Perform whole program optimizations"
msgstr ""

#: common.opt:1030
msgid "Assume signed arithmetic overflow wraps around"
msgstr ""

#: common.opt:1034
msgid "Put zero initialized data in the bss section"
msgstr ""

#: common.opt:1038
msgid "Generate debug information in default format"
msgstr ""

#: common.opt:1042
msgid "Generate debug information in COFF format"
msgstr ""

#: common.opt:1046
msgid "Generate debug information in DWARF v2 format"
msgstr ""

#: common.opt:1050
msgid "Generate debug information in default extended format"
msgstr ""

#: common.opt:1054
msgid "Generate debug information in STABS format"
msgstr ""

#: common.opt:1058
msgid "Generate debug information in extended STABS format"
msgstr ""

#: common.opt:1062
msgid "Generate debug information in VMS format"
msgstr ""

#: common.opt:1066
msgid "Generate debug information in XCOFF format"
msgstr ""

#: common.opt:1070
msgid "Generate debug information in extended XCOFF format"
msgstr ""

#: common.opt:1074
msgid "Place output into <file>"
msgstr ""

#: common.opt:1078
msgid "Enable function profiling"
msgstr ""

#: common.opt:1082
msgid "Issue warnings needed for strict compliance to the standard"
msgstr ""

#: common.opt:1086
msgid "Like -pedantic but issue them as errors"
msgstr ""

#: common.opt:1090
msgid "Do not display functions compiled or elapsed time"
msgstr ""

#: common.opt:1094
msgid "Display the compiler's version"
msgstr ""

#: common.opt:1098
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/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/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
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
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/m32r/m32r.opt:83
msgid "Small data area: none, sdata, use"
msgstr ""

#: config/m68hc11/m68hc11.opt:24 config/m68hc11/m68hc11.opt:32
msgid "Compile for a 68HC11"
msgstr ""

#: config/m68hc11/m68hc11.opt:28 config/m68hc11/m68hc11.opt:36
msgid "Compile for a 68HC12"
msgstr ""

#: config/m68hc11/m68hc11.opt:42 config/m68hc11/m68hc11.opt:46
msgid "Compile for a 68HCS12"
msgstr ""

#: config/m68hc11/m68hc11.opt:50
msgid "Auto pre/post decrement increment allowed"
msgstr ""

#: config/m68hc11/m68hc11.opt:54
msgid "Min/max instructions allowed"
msgstr ""

#: config/m68hc11/m68hc11.opt:58
msgid "Use call and rtc for function calls and returns"
msgstr ""

#: config/m68hc11/m68hc11.opt:62
msgid "Auto pre/post decrement increment not allowed"
msgstr ""

#: config/m68hc11/m68hc11.opt:66
msgid "Use jsr and rts for function calls and returns"
msgstr ""

#: config/m68hc11/m68hc11.opt:70
msgid "Min/max instructions not allowed"
msgstr ""

#: config/m68hc11/m68hc11.opt:74
msgid "Use direct addressing mode for soft registers"
msgstr ""

#: config/m68hc11/m68hc11.opt:78
msgid "Compile with 32-bit integer mode"
msgstr ""

#: config/m68hc11/m68hc11.opt:83
msgid "Specify the register allocation order"
msgstr ""

#: config/m68hc11/m68hc11.opt:87
msgid "Do not use direct addressing mode for soft registers"
msgstr ""

#: config/m68hc11/m68hc11.opt:91
msgid "Compile with 16-bit integer mode"
msgstr ""

#: config/m68hc11/m68hc11.opt:95
msgid "Indicate the number of soft registers available"
msgstr ""

#: config/m68k/m68k.opt:24
msgid "Generate code for a 520X"
msgstr ""

#: config/m68k/m68k.opt:28
msgid "Generate code for a 5206e"
msgstr ""

#: config/m68k/m68k.opt:32
msgid "Generate code for a 528x"
msgstr ""

#: config/m68k/m68k.opt:36
msgid "Generate code for a 5307"
msgstr ""

#: config/m68k/m68k.opt:40
msgid "Generate code for a 5407"
msgstr ""

#: config/m68k/m68k.opt:44 config/m68k/m68k.opt:97
msgid "Generate code for a 68000"
msgstr ""

#: config/m68k/m68k.opt:48 config/m68k/m68k.opt:101
msgid "Generate code for a 68020"
msgstr ""

#: config/m68k/m68k.opt:52
msgid "Generate code for a 68040, without any new instructions"
msgstr ""

#: config/m68k/m68k.opt:56
msgid "Generate code for a 68060, without any new instructions"
msgstr ""

#: config/m68k/m68k.opt:60
msgid "Generate code for a 68030"
msgstr ""

#: config/m68k/m68k.opt:64
msgid "Generate code for a 68040"
msgstr ""

#: config/m68k/m68k.opt:68
msgid "Generate code for a 68060"
msgstr ""

#: config/m68k/m68k.opt:72
msgid "Generate code for a 68302"
msgstr ""

#: config/m68k/m68k.opt:76
msgid "Generate code for a 68332"
msgstr ""

#: config/m68k/m68k.opt:81
msgid "Generate code for a 68851"
msgstr ""

#: config/m68k/m68k.opt:85
msgid "Generate code that uses 68881 floating-point instructions"
msgstr ""

#: config/m68k/m68k.opt:89
msgid "Align variables on a 32-bit boundary"
msgstr ""

#: config/m68k/m68k.opt:93
msgid "Use the bit-field instructions"
msgstr ""

#: config/m68k/m68k.opt:105
msgid "Generate code for a cpu32"
msgstr ""

#: config/m68k/m68k.opt:109
msgid "Enable ID based shared library"
msgstr ""

#: config/m68k/m68k.opt:113
msgid "Do not use the bit-field instructions"
msgstr ""

#: config/m68k/m68k.opt:117
msgid "Use normal calling convention"
msgstr ""

#: config/m68k/m68k.opt:121
msgid "Consider type 'int' to be 32 bits wide"
msgstr ""

#: config/m68k/m68k.opt:125
msgid "Generate pc-relative code"
msgstr ""

#: config/m68k/m68k.opt:129
msgid "Use different calling convention using 'rtd'"
msgstr ""

#: config/m68k/m68k.opt:133
msgid "Enable separate data segment"
msgstr ""

#: config/m68k/m68k.opt:141
msgid "Consider type 'int' to be 16 bits wide"
msgstr ""

#: config/m68k/m68k.opt:145
msgid "Generate code with library calls for floating point"
msgstr ""

#: config/m68k/m68k.opt:149
msgid "Do not use unaligned memory references"
msgstr ""

#: config/mcore/mcore.opt:24
msgid "Generate code for the M*Core M210"
msgstr ""

#: config/mcore/mcore.opt:28
msgid "Generate code for the M*Core M340"
msgstr ""

#: config/mcore/mcore.opt:32
msgid "Set maximum alignment to 4"
msgstr ""

#: config/mcore/mcore.opt:36
msgid "Force functions to be aligned to a 4 byte boundary"
msgstr ""

#: config/mcore/mcore.opt:40
msgid "Set maximum alignment to 8"
msgstr ""

#: config/mcore/mcore.opt:44
msgid "Generate big-endian code"
msgstr ""

#: 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/mips/mips.opt:40
msgid "Use Branch Likely instructions, overriding the architecture default"
msgstr ""

#: config/mips/mips.opt:44
msgid "Trap on integer divide by zero"
msgstr ""

#: config/mips/mips.opt:48
msgid "Use branch-and-break sequences to check for integer divide by zero"
msgstr ""

#: config/mips/mips.opt:52
msgid "Use trap instructions to check for integer divide by zero"
msgstr ""

#: config/mips/mips.opt:56
msgid ""
"Allow hardware floating-point instructions to cover both 32-bit and 64-bit "
"operations"
msgstr ""

#: config/mips/mips.opt:60
msgid "Use MIPS-DSP instructions"
msgstr ""

#: config/mips/mips.opt:70
msgid "Use big-endian byte order"
msgstr ""

#: config/mips/mips.opt:74
msgid "Use little-endian byte order"
msgstr ""

#: config/mips/mips.opt:82
msgid "Use NewABI-style %reloc() assembly operators"
msgstr ""

#: config/mips/mips.opt:86
msgid "Work around certain R4000 errata"
msgstr ""

#: config/mips/mips.opt:90
msgid "Work around certain R4400 errata"
msgstr ""

#: config/mips/mips.opt:94
msgid "Work around errata for early SB-1 revision 2 cores"
msgstr ""

#: config/mips/mips.opt:98
msgid "Work around certain VR4120 errata"
msgstr ""

#: config/mips/mips.opt:102
msgid "Work around VR4130 mflo/mfhi errata"
msgstr ""

#: config/mips/mips.opt:106
msgid "Work around an early 4300 hardware bug"
msgstr ""

#: config/mips/mips.opt:110
msgid "FP exceptions are enabled"
msgstr ""

#: config/mips/mips.opt:114
msgid "Use 32-bit floating-point registers"
msgstr ""

#: config/mips/mips.opt:118
msgid "Use 64-bit floating-point registers"
msgstr ""

#: config/mips/mips.opt:122
msgid "Use FUNC to flush the cache before calling stack trampolines"
msgstr ""

#: config/mips/mips.opt:126
msgid "Generate floating-point multiply-add instructions"
msgstr ""

#: config/mips/mips.opt:130
msgid "Use 32-bit general registers"
msgstr ""

#: config/mips/mips.opt:134
msgid "Use 64-bit general registers"
msgstr ""

#: config/mips/mips.opt:138
msgid "Allow the use of hardware floating-point instructions"
msgstr ""

#: config/mips/mips.opt:142
msgid "Generate code for ISA level N"
msgstr ""

#: config/mips/mips.opt:146
msgid "Generate mips16 code"
msgstr ""

#: config/mips/mips.opt:150
msgid "Use MIPS-3D instructions"
msgstr ""

#: config/mips/mips.opt:154
msgid "Use indirect calls"
msgstr ""

#: config/mips/mips.opt:158
msgid "Use a 32-bit long type"
msgstr ""

#: config/mips/mips.opt:162
msgid "Use a 64-bit long type"
msgstr ""

#: config/mips/mips.opt:166
msgid "Don't optimize block moves"
msgstr ""

#: config/mips/mips.opt:170
msgid "Use the mips-tfile postpass"
msgstr ""

#: config/mips/mips.opt:174
msgid "Do not use a cache-flushing function before calling stack trampolines"
msgstr ""

#: config/mips/mips.opt:178
msgid "Generate normal-mode code"
msgstr ""

#: config/mips/mips.opt:182
msgid "Do not use MIPS-3D instructions"
msgstr ""

#: config/mips/mips.opt:186
msgid "Use paired-single floating-point instructions"
msgstr ""

#: config/mips/mips.opt:190
msgid ""
"Restrict the use of hardware floating-point instructions to 32-bit operations"
msgstr ""

#: config/mips/mips.opt:194
msgid "Prevent the use of all hardware floating-point instructions"
msgstr ""

#: config/mips/mips.opt:198
msgid "Optimize lui/addiu address loads"
msgstr ""

#: config/mips/mips.opt:202
msgid "Assume all symbols have 32-bit values"
msgstr ""

#: config/mips/mips.opt:206
msgid "Optimize the output for PROCESSOR"
msgstr ""

#: config/mips/mips.opt:214
msgid "Perform VR4130-specific alignment optimizations"
msgstr ""

#: config/mips/mips.opt:218
msgid "Lift restrictions on GOT size"
msgstr ""

#: config/mmix/mmix.opt:25
msgid "For intrinsics library: pass all parameters in registers"
msgstr ""

#: config/mmix/mmix.opt:29
msgid "Use register stack for parameters and return value"
msgstr ""

#: config/mmix/mmix.opt:33
msgid "Use call-clobbered registers for parameters and return value"
msgstr ""

#: config/mmix/mmix.opt:38
msgid "Use epsilon-respecting floating point compare instructions"
msgstr ""

#: config/mmix/mmix.opt:42
msgid "Use zero-extending memory loads, not sign-extending ones"
msgstr ""

#: config/mmix/mmix.opt:46
msgid ""
"Generate divide results with reminder having the same sign as the divisor "
"(not the dividend)"
msgstr ""

#: config/mmix/mmix.opt:50
msgid "Prepend global symbols with \":\" (for use with PREFIX)"
msgstr ""

#: config/mmix/mmix.opt:54
msgid "Do not provide a default start-address 0x100 of the program"
msgstr ""

#: config/mmix/mmix.opt:58
msgid "Link to emit program in ELF format (rather than mmo)"
msgstr ""

#: config/mmix/mmix.opt:62
msgid "Use P-mnemonics for branches statically predicted as taken"
msgstr ""

#: config/mmix/mmix.opt:66
msgid "Don't use P-mnemonics for branches"
msgstr ""

#: config/mmix/mmix.opt:80
msgid "Use addresses that allocate global registers"
msgstr ""

#: config/mmix/mmix.opt:84
msgid "Do not use addresses that allocate global registers"
msgstr ""

#: config/mmix/mmix.opt:88
msgid "Generate a single exit point for each function"
msgstr ""

#: config/mmix/mmix.opt:92
msgid "Do not generate a single exit point for each function"
msgstr ""

#: config/mmix/mmix.opt:96
msgid "Set start-address of the program"
msgstr ""

#: config/mmix/mmix.opt:100
msgid "Set start-address of data"
msgstr ""

#: config/mn10300/mn10300.opt:24
msgid "Target the AM33 processor"
msgstr ""

#: config/mn10300/mn10300.opt:28
msgid "Target the AM33/2.0 processor"
msgstr ""

#: config/mn10300/mn10300.opt:32
msgid "Work around hardware multiply bug"
msgstr ""

#: config/mn10300/mn10300.opt:37
msgid "Enable linker relaxations"
msgstr ""

#: config/pa/pa-hpux.opt:24
msgid "Generate cpp defines for server IO"
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"
msgstr ""

#: config/pa/pa-hpux.opt:32
msgid "Generate cpp defines for workstation IO"
msgstr ""

#: config/pa/pa.opt:24 config/pa/pa.opt:77 config/pa/pa.opt:85
msgid "Generate PA1.0 code"
msgstr ""

#: config/pa/pa.opt:28 config/pa/pa.opt:89 config/pa/pa.opt:109
msgid "Generate PA1.1 code"
msgstr ""

#: config/pa/pa.opt:32 config/pa/pa.opt:93
msgid "Generate PA2.0 code (requires binutils 2.10 or later)"
msgstr ""

#: config/pa/pa.opt:36
msgid "Generate code for huge switch statements"
msgstr ""

#: config/pa/pa.opt:40
msgid "Disable FP regs"
msgstr ""

#: config/pa/pa.opt:44
msgid "Disable indexed addressing"
msgstr ""

#: config/pa/pa.opt:48
msgid "Generate fast indirect calls"
msgstr ""

#: config/pa/pa.opt:56
msgid "Assume code will be assembled by GAS"
msgstr ""

#: config/pa/pa.opt:60
msgid "Put jumps in call delay slots"
msgstr ""

#: config/pa/pa.opt:65
msgid "Enable linker optimizations"
msgstr ""

#: config/pa/pa.opt:69
msgid "Always generate long calls"
msgstr ""

#: config/pa/pa.opt:73
msgid "Emit long load/store sequences"
msgstr ""

#: config/pa/pa.opt:81
msgid "Disable space regs"
msgstr ""

#: config/pa/pa.opt:97
msgid "Use portable calling conventions"
msgstr ""

#: config/pa/pa.opt:101
msgid ""
"Specify CPU for scheduling purposes.  Valid arguments are 700, 7100, 7100LC, "
"7200, 7300, and 8000"
msgstr ""

#: config/pa/pa.opt:113
msgid "Do not disable space regs"
msgstr ""

#: config/pa/pa64-hpux.opt:24
msgid "Assume code will be linked by GNU ld"
msgstr ""

#: config/pa/pa64-hpux.opt:28
msgid "Assume code will be linked by HP ld"
msgstr ""

#: config/pdp11/pdp11.opt:24
msgid "Generate code for an 11/10"
msgstr ""

#: config/pdp11/pdp11.opt:28
msgid "Generate code for an 11/40"
msgstr ""

#: config/pdp11/pdp11.opt:32
msgid "Generate code for an 11/45"
msgstr ""

#: config/pdp11/pdp11.opt:36
msgid "Use 16-bit abs patterns"
msgstr ""

#: config/pdp11/pdp11.opt:40
msgid "Return floating-point results in ac0 (fr0 in Unix assembler syntax)"
msgstr ""

#: config/pdp11/pdp11.opt:44
msgid "Do not use inline patterns for copying memory"
msgstr ""

#: config/pdp11/pdp11.opt:48
msgid "Use inline patterns for copying memory"
msgstr ""

#: config/pdp11/pdp11.opt:52
msgid "Do not pretend that branches are expensive"
msgstr ""

#: config/pdp11/pdp11.opt:56
msgid "Pretend that branches are expensive"
msgstr ""

#: config/pdp11/pdp11.opt:60
msgid "Use the DEC assembler syntax"
msgstr ""

#: config/pdp11/pdp11.opt:64
msgid "Use 32 bit float"
msgstr ""

#: config/pdp11/pdp11.opt:68
msgid "Use 64 bit float"
msgstr ""

#: config/pdp11/pdp11.opt:76
msgid "Use 16 bit int"
msgstr ""

#: config/pdp11/pdp11.opt:80
msgid "Use 32 bit int"
msgstr ""

#: config/pdp11/pdp11.opt:84 config/rs6000/rs6000.opt:85
msgid "Do not use hardware floating point"
msgstr ""

#: config/pdp11/pdp11.opt:88
msgid "Target has split I&D"
msgstr ""

#: config/pdp11/pdp11.opt:92
msgid "Use UNIX assembler syntax"
msgstr ""

#: config/rs6000/aix41.opt:25 config/rs6000/aix64.opt:33
msgid "Support message passing with the Parallel Environment"
msgstr ""

#: config/rs6000/aix.opt:25 config/rs6000/rs6000.opt:124
msgid "Conform more closely to IBM XLC semantics"
msgstr ""

#: config/rs6000/aix64.opt:25
msgid "Compile for 64-bit pointers"
msgstr ""

#: config/rs6000/aix64.opt:29
msgid "Compile for 32-bit pointers"
msgstr ""

#: config/rs6000/darwin.opt:25 config/rs6000/sysv4.opt:133
msgid "Generate 64-bit code"
msgstr ""

#: config/rs6000/darwin.opt:29 config/rs6000/sysv4.opt:137
msgid "Generate 32-bit code"
msgstr ""

#: config/rs6000/darwin.opt:33
msgid "Generate code suitable for executables (NOT shared libs)"
msgstr ""

#: config/rs6000/linux64.opt:25
msgid "Call mcount for profiling before a function prologue"
msgstr ""

#: config/rs6000/rs6000.opt:25
msgid "Use POWER instruction set"
msgstr ""

#: config/rs6000/rs6000.opt:29
msgid "Do not use POWER instruction set"
msgstr ""

#: config/rs6000/rs6000.opt:33
msgid "Use POWER2 instruction set"
msgstr ""

#: config/rs6000/rs6000.opt:37
msgid "Use PowerPC instruction set"
msgstr ""

#: config/rs6000/rs6000.opt:41
msgid "Do not use PowerPC instruction set"
msgstr ""

#: config/rs6000/rs6000.opt:45
msgid "Use PowerPC-64 instruction set"
msgstr ""

#: config/rs6000/rs6000.opt:49
msgid "Use PowerPC General Purpose group optional instructions"
msgstr ""

#: config/rs6000/rs6000.opt:53
msgid "Use PowerPC Graphics group optional instructions"
msgstr ""

#: config/rs6000/rs6000.opt:57
msgid "Generate single field mfcr instruction"
msgstr ""

#: config/rs6000/rs6000.opt:61
msgid "Use PowerPC/AS popcntb instruction"
msgstr ""

#: config/rs6000/rs6000.opt:65
msgid "Use AltiVec instructions"
msgstr ""

#: config/rs6000/rs6000.opt:69
msgid "Generate load/store multiple instructions"
msgstr ""

#: config/rs6000/rs6000.opt:73
msgid "Generate string instructions for block moves"
msgstr ""

#: config/rs6000/rs6000.opt:77
msgid "Use new mnemonics for PowerPC architecture"
msgstr ""

#: 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/rs6000/rs6000.opt:97
msgid "Generate load/store with update instructions"
msgstr ""

#: config/rs6000/rs6000.opt:101
msgid "Do not generate fused multiply/add instructions"
msgstr ""

#: config/rs6000/rs6000.opt:105
msgid "Generate fused multiply/add instructions"
msgstr ""

#: config/rs6000/rs6000.opt:109
msgid "Schedule the start and end of the procedure"
msgstr ""

#: config/rs6000/rs6000.opt:116
msgid "Return all structures in memory (AIX default)"
msgstr ""

#: config/rs6000/rs6000.opt:120
msgid "Return small structures in registers (SVR4 default)"
msgstr ""

#: config/rs6000/rs6000.opt:128
msgid "Generate software floating point divide for better throughput"
msgstr ""

#: config/rs6000/rs6000.opt:132
msgid "Do not place floating point constants in TOC"
msgstr ""

#: config/rs6000/rs6000.opt:136
msgid "Place floating point constants in TOC"
msgstr ""

#: config/rs6000/rs6000.opt:140
msgid "Do not place symbol+offset constants in TOC"
msgstr ""

#: config/rs6000/rs6000.opt:144
msgid "Place symbol+offset constants in TOC"
msgstr ""

#: config/rs6000/rs6000.opt:155
msgid "Use only one TOC entry per procedure"
msgstr ""

#: config/rs6000/rs6000.opt:159
msgid "Put everything in the regular TOC"
msgstr ""

#: config/rs6000/rs6000.opt:163
msgid "Generate VRSAVE instructions when generating AltiVec code"
msgstr ""

#: config/rs6000/rs6000.opt:167
msgid "Deprecated option.  Use -mvrsave/-mno-vrsave instead"
msgstr ""

#: config/rs6000/rs6000.opt:171
msgid "Generate isel instructions"
msgstr ""

#: config/rs6000/rs6000.opt:175
msgid "Deprecated option.  Use -misel/-mno-isel instead"
msgstr ""

#: config/rs6000/rs6000.opt:179
msgid "Generate SPE SIMD instructions on E500"
msgstr ""

#: config/rs6000/rs6000.opt:183
msgid "Deprecated option.  Use -mspe/-mno-spe instead"
msgstr ""

#: config/rs6000/rs6000.opt:187
msgid "Enable debug output"
msgstr ""

#: config/rs6000/rs6000.opt:191
msgid "Specify ABI to use"
msgstr ""

#: config/rs6000/rs6000.opt:195 config/sparc/sparc.opt:92
msgid "Use features of and schedule code for given CPU"
msgstr ""

#: config/rs6000/rs6000.opt:203
msgid "Select full, part, or no traceback table"
msgstr ""

#: config/rs6000/rs6000.opt:207
msgid "Avoid all range limits on call instructions"
msgstr ""

#: config/rs6000/rs6000.opt:211
msgid "Warn about deprecated 'vector long ...' AltiVec type usage"
msgstr ""

#: config/rs6000/rs6000.opt:215
msgid "Select GPR floating point method"
msgstr ""

#: config/rs6000/rs6000.opt:219
msgid "Specify size of long double (64 or 128 bits)"
msgstr ""

#: config/rs6000/rs6000.opt:223
msgid "Determine which dependences between insns are considered costly"
msgstr ""

#: config/rs6000/rs6000.opt:227
msgid "Specify which post scheduling nop insertion scheme to apply"
msgstr ""

#: config/rs6000/rs6000.opt:231
msgid "Specify alignment of structure fields default/natural"
msgstr ""

#: config/rs6000/rs6000.opt:235
msgid "Specify scheduling priority for dispatch slot restricted insns"
msgstr ""

#: config/rs6000/sysv4.opt:25
msgid "Select ABI calling convention"
msgstr ""

#: config/rs6000/sysv4.opt:29
msgid "Select method for sdata handling"
msgstr ""

#: config/rs6000/sysv4.opt:37 config/rs6000/sysv4.opt:41
msgid "Align to the base type of the bit-field"
msgstr ""

#: config/rs6000/sysv4.opt:46 config/rs6000/sysv4.opt:50
msgid "Produce code relocatable at runtime"
msgstr ""

#: config/rs6000/sysv4.opt:54 config/rs6000/sysv4.opt:58
msgid "Produce little endian code"
msgstr ""

#: config/rs6000/sysv4.opt:62 config/rs6000/sysv4.opt:66
msgid "Produce big endian code"
msgstr ""

#: config/rs6000/sysv4.opt:71 config/rs6000/sysv4.opt:75
#: config/rs6000/sysv4.opt:79 config/rs6000/sysv4.opt:84
#: config/rs6000/sysv4.opt:101 config/rs6000/sysv4.opt:129
#: config/rs6000/sysv4.opt:141
msgid "no description yet"
msgstr ""

#: config/rs6000/sysv4.opt:88
msgid "Use EABI"
msgstr ""

#: config/rs6000/sysv4.opt:92
msgid "Allow bit-fields to cross word boundaries"
msgstr ""

#: config/rs6000/sysv4.opt:96
msgid "Use alternate register names"
msgstr ""

#: config/rs6000/sysv4.opt:105
msgid "Link with libsim.a, libc.a and sim-crt0.o"
msgstr ""

#: config/rs6000/sysv4.opt:109
msgid "Link with libads.a, libc.a and crt0.o"
msgstr ""

#: config/rs6000/sysv4.opt:113
msgid "Link with libyk.a, libc.a and crt0.o"
msgstr ""

#: config/rs6000/sysv4.opt:117
msgid "Link with libmvme.a, libc.a and crt0.o"
msgstr ""

#: config/rs6000/sysv4.opt:121
msgid "Set the PPC_EMB bit in the ELF flags header"
msgstr ""

#: config/rs6000/sysv4.opt:125
msgid "Use the WindISS simulator"
msgstr ""

#: config/rs6000/sysv4.opt:145
msgid "Generate code to use a non-exec PLT and GOT"
msgstr ""

#: config/rs6000/sysv4.opt:149
msgid "Generate code for old exec BSS PLT"
msgstr ""

#: config/s390/s390.opt:24
msgid "31 bit ABI"
msgstr ""

#: config/s390/s390.opt:28
msgid "64 bit ABI"
msgstr ""

#: config/s390/s390.opt:36
msgid "Maintain backchain pointer"
msgstr ""

#: config/s390/s390.opt:40
msgid "Additional debug prints"
msgstr ""

#: config/s390/s390.opt:44
msgid "ESA/390 architecture"
msgstr ""

#: config/s390/s390.opt:48
msgid "Enable fused multiply/add instructions"
msgstr ""

#: config/s390/s390.opt:56
msgid "Use packed stack layout"
msgstr ""

#: config/s390/s390.opt:60
msgid "Use bras for executable < 64k"
msgstr ""

#: config/s390/s390.opt:64
msgid "Don't use hardware fp"
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"
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"
msgstr ""

#: config/s390/s390.opt:80
msgid "mvcle use"
msgstr ""

#: config/s390/s390.opt:84
msgid "Warn if a function uses alloca or creates an array with dynamic size"
msgstr ""

#: config/s390/s390.opt:88
msgid "Warn if a single function's framesize exceeds the given framesize"
msgstr ""

#: config/s390/s390.opt:92
msgid "z/Architecture"
msgstr ""

#: config/s390/tpf.opt:24
msgid "Enable TPF-OS tracing code"
msgstr ""

#: config/s390/tpf.opt:28
msgid "Specify main object for TPF-OS"
msgstr ""

#: config/sh/sh.opt:45
msgid "Generate SH1 code"
msgstr ""

#: config/sh/sh.opt:49
msgid "Generate SH2 code"
msgstr ""

#: config/sh/sh.opt:53
msgid "Generate SH2a code"
msgstr ""

#: config/sh/sh.opt:57
msgid "Generate SH2a FPU-less code"
msgstr ""

#: config/sh/sh.opt:61
msgid "Generate default single-precision SH2a code"
msgstr ""

#: config/sh/sh.opt:65
msgid "Generate only single-precision SH2a code"
msgstr ""

#: config/sh/sh.opt:69
msgid "Generate SH2e code"
msgstr ""

#: config/sh/sh.opt:73
msgid "Generate SH3 code"
msgstr ""

#: config/sh/sh.opt:77
msgid "Generate SH3e code"
msgstr ""

#: config/sh/sh.opt:81
msgid "Generate SH4 code"
msgstr ""

#: config/sh/sh.opt:85
msgid "Generate SH4 FPU-less code"
msgstr ""

#: config/sh/sh.opt:89
msgid "Generate default single-precision SH4 code"
msgstr ""

#: config/sh/sh.opt:93
msgid "Generate only single-precision SH4 code"
msgstr ""

#: config/sh/sh.opt:97
msgid "Generate SH4a code"
msgstr ""

#: config/sh/sh.opt:101
msgid "Generate SH4a FPU-less code"
msgstr ""

#: config/sh/sh.opt:105
msgid "Generate default single-precision SH4a code"
msgstr ""

#: config/sh/sh.opt:109
msgid "Generate only single-precision SH4a code"
msgstr ""

#: config/sh/sh.opt:113
msgid "Generate SH4al-dsp code"
msgstr ""

#: config/sh/sh.opt:117
msgid "Generate 32-bit SHmedia code"
msgstr ""

#: config/sh/sh.opt:121
msgid "Generate 32-bit FPU-less SHmedia code"
msgstr ""

#: config/sh/sh.opt:125
msgid "Generate 64-bit SHmedia code"
msgstr ""

#: config/sh/sh.opt:129
msgid "Generate 64-bit FPU-less SHmedia code"
msgstr ""

#: config/sh/sh.opt:133
msgid "Generate SHcompact code"
msgstr ""

#: config/sh/sh.opt:137
msgid "Generate FPU-less SHcompact code"
msgstr ""

#: config/sh/sh.opt:141
msgid ""
"Throttle unrolling to avoid thrashing target registers unless the unroll "
"benefit outweighs this"
msgstr ""

#: config/sh/sh.opt:145
msgid "Generate code in big endian mode"
msgstr ""

#: config/sh/sh.opt:149
msgid "Generate 32-bit offsets in switch tables"
msgstr ""

#: config/sh/sh.opt:153
msgid "Enable SH5 cut2 workaround"
msgstr ""

#: config/sh/sh.opt:157
msgid "Align doubles at 64-bit boundaries"
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"
msgstr ""

#: config/sh/sh.opt:165
msgid "Specify name for 32 bit signed division function"
msgstr ""

#: config/sh/sh.opt:172
msgid "Cost to assume for gettr insn"
msgstr ""

#: config/sh/sh.opt:176 config/sh/sh.opt:222
msgid "Follow Renesas (formerly Hitachi) / SuperH calling conventions"
msgstr ""

#: config/sh/sh.opt:180
msgid "Increase the IEEE compliance for floating-point code"
msgstr ""

#: config/sh/sh.opt:184
msgid "Enable the use of the indexed addressing mode for SHmedia32/SHcompact"
msgstr ""

#: config/sh/sh.opt:188
msgid "Assume symbols might be invalid"
msgstr ""

#: config/sh/sh.opt:192
msgid "Annotate assembler instructions with estimated addresses"
msgstr ""

#: config/sh/sh.opt:196
msgid "Generate code in little endian mode"
msgstr ""

#: config/sh/sh.opt:200
msgid "Mark MAC register as call-clobbered"
msgstr ""

#: config/sh/sh.opt:206
msgid "Make structs a multiple of 4 bytes (warning: ABI altered)"
msgstr ""

#: config/sh/sh.opt:210
msgid "Emit function-calls using global offset table when generating PIC"
msgstr ""

#: config/sh/sh.opt:214
msgid "Assume pt* instructions won't trap"
msgstr ""

#: config/sh/sh.opt:218
msgid "Shorten address references during linking"
msgstr ""

#: config/sh/sh.opt:226
msgid "Deprecated. Use -Os instead"
msgstr ""

#: config/sh/sh.opt:230
msgid "Cost to assume for a multiply insn"
msgstr ""

#: config/sh/sh.opt:234
msgid ""
"Generate library function call to invalidate instruction cache entries after "
"fixing trampoline"
msgstr ""

#: config/sparc/little-endian.opt:24
msgid "Generate code for little-endian"
msgstr ""

#: config/sparc/little-endian.opt:28
msgid "Generate code for big-endian"
msgstr ""

#: config/sparc/sparc.opt:24 config/sparc/sparc.opt:28
msgid "Use hardware FP"
msgstr ""

#: config/sparc/sparc.opt:32
msgid "Do not use hardware FP"
msgstr ""

#: config/sparc/sparc.opt:36
msgid "Assume possible double misalignment"
msgstr ""

#: config/sparc/sparc.opt:40
msgid "Pass -assert pure-text to linker"
msgstr ""

#: config/sparc/sparc.opt:44
msgid "Use ABI reserved registers"
msgstr ""

#: config/sparc/sparc.opt:48
msgid "Use hardware quad FP instructions"
msgstr ""

#: config/sparc/sparc.opt:52
msgid "Do not use hardware quad fp instructions"
msgstr ""

#: config/sparc/sparc.opt:56
msgid "Compile for V8+ ABI"
msgstr ""

#: config/sparc/sparc.opt:60
msgid "Use UltraSPARC Visual Instruction Set extensions"
msgstr ""

#: config/sparc/sparc.opt:64
msgid "Pointers are 64-bit"
msgstr ""

#: config/sparc/sparc.opt:68
msgid "Pointers are 32-bit"
msgstr ""

#: config/sparc/sparc.opt:72
msgid "Use 64-bit ABI"
msgstr ""

#: config/sparc/sparc.opt:76
msgid "Use 32-bit ABI"
msgstr ""

#: config/sparc/sparc.opt:80
msgid "Use stack bias"
msgstr ""

#: config/sparc/sparc.opt:84
msgid "Use structs on stronger alignment for double-word copies"
msgstr ""

#: config/sparc/sparc.opt:88
msgid "Optimize tail call instructions in assembler and linker"
msgstr ""

#: config/sparc/sparc.opt:100
msgid "Use given SPARC-V9 code model"
msgstr ""

#: config/stormy16/stormy16.opt:25
msgid "Provide libraries for the simulator"
msgstr ""

#: config/v850/v850.opt:24
msgid "Use registers r2 and r5"
msgstr ""

#: config/v850/v850.opt:28
msgid "Use 4 byte entries in switch tables"
msgstr ""

#: config/v850/v850.opt:32
msgid "Enable backend debugging"
msgstr ""

#: config/v850/v850.opt:36
msgid "Do not use the callt instruction"
msgstr ""

#: config/v850/v850.opt:40
msgid "Reuse r30 on a per function basis"
msgstr ""

#: config/v850/v850.opt:44
msgid "Support Green Hills ABI"
msgstr ""

#: config/v850/v850.opt:48
msgid "Prohibit PC relative function calls"
msgstr ""

#: config/v850/v850.opt:52
msgid "Use stubs for function prologues"
msgstr ""

#: config/v850/v850.opt:56
msgid "Set the max size of data eligible for the SDA area"
msgstr ""

#: config/v850/v850.opt:60
msgid "Enable the use of the short load instructions"
msgstr ""

#: config/v850/v850.opt:64
msgid "Same as: -mep -mprolog-function"
msgstr ""

#: config/v850/v850.opt:68
msgid "Set the max size of data eligible for the TDA area"
msgstr ""

#: config/v850/v850.opt:72
msgid "Enforce strict alignment"
msgstr ""

#: config/v850/v850.opt:79
msgid "Compile for the v850 processor"
msgstr ""

#: config/v850/v850.opt:83
msgid "Compile for the v850e processor"
msgstr ""

#: config/v850/v850.opt:87
msgid "Compile for the v850e1 processor"
msgstr ""

#: config/v850/v850.opt:91
msgid "Set the max size of data eligible for the ZDA area"
msgstr ""

#: config/vax/vax.opt:24 config/vax/vax.opt:28
msgid "Target DFLOAT double precision code"
msgstr ""

#: config/vax/vax.opt:32 config/vax/vax.opt:36
msgid "Generate GFLOAT double precision code"
msgstr ""

#: config/vax/vax.opt:40
msgid "Generate code for GNU assembler (gas)"
msgstr ""

#: config/vax/vax.opt:44
msgid "Generate code for UNIX assembler"
msgstr ""

#: config/vax/vax.opt:48
msgid "Use VAXC structure conventions"
msgstr ""

#: config/xtensa/xtensa.opt:24
msgid "Use CONST16 instruction to load constants"
msgstr ""

#: config/xtensa/xtensa.opt:28
msgid "Enable fused multiply/add and multiply/subtract FP instructions"
msgstr ""

#: config/xtensa/xtensa.opt:32
msgid "Use indirect CALLXn instructions for large programs"
msgstr ""

#: config/xtensa/xtensa.opt:36
msgid "Automatically align branch targets to reduce branch penalties"
msgstr ""

#: config/xtensa/xtensa.opt:40
msgid "Intersperse literal pools with code in the text section"
msgstr ""

#: fortran/lang.opt:30
msgid "Add a directory for INCLUDE and MODULE searching"
msgstr ""

#: fortran/lang.opt:34
msgid "Put MODULE files in 'directory'"
msgstr ""

#: fortran/lang.opt:42
msgid "Warn about possible aliasing of dummy arguments"
msgstr ""

#: fortran/lang.opt:46
msgid "Warn about implicit conversion"
msgstr ""

#: fortran/lang.opt:50
msgid "Warn about calls with implicit interface"
msgstr ""

#: fortran/lang.opt:54
msgid "Warn about truncated source lines"
msgstr ""

#: fortran/lang.opt:58
msgid "Warn about usage of non-standard intrinsics"
msgstr ""

#: fortran/lang.opt:62
msgid "Warn about \"suspicious\" constructs"
msgstr ""

#: fortran/lang.opt:66
msgid "Warn about underflow of numerical constant expressions"
msgstr ""

#: fortran/lang.opt:74
msgid "Set the default double precision kind to an 8 byte wide type"
msgstr ""

#: fortran/lang.opt:78
msgid "Set the default integer kind to an 8 byte wide type"
msgstr ""

#: fortran/lang.opt:82
msgid "Set the default real kind to an 8 byte wide type"
msgstr ""

#: fortran/lang.opt:86
msgid "Allow dollar signs in entity names"
msgstr ""

#: fortran/lang.opt:90
msgid "Specify that backslash in string introduces an escape character"
msgstr ""

#: fortran/lang.opt:94
msgid "Display the code tree after parsing"
msgstr ""

#: fortran/lang.opt:98
msgid "Use f2c calling convention"
msgstr ""

#: fortran/lang.opt:102
msgid "Assume that the source file is fixed form"
msgstr ""

#: fortran/lang.opt:106
msgid "Assume that the source file is free form"
msgstr ""

#: fortran/lang.opt:110
msgid "Append underscores to externally visible names"
msgstr ""

#: fortran/lang.opt:114
msgid "Append a second underscore if the name already contains an underscore"
msgstr ""

#: fortran/lang.opt:118
msgid ""
"Specify that no implicit typing is allowed, unless overridden by explicit "
"IMPLICIT statements"
msgstr ""

#: fortran/lang.opt:122
msgid "Allow arbitrary character line width in fixed mode"
msgstr ""

#: fortran/lang.opt:126
msgid "Use n as character line width in fixed mode"
msgstr ""

#: fortran/lang.opt:130
msgid "Maximum identifier length"
msgstr ""

#: fortran/lang.opt:134
msgid "Size in bytes of the largest array that will be put on the stack"
msgstr ""

#: fortran/lang.opt:138
msgid "Set default accessibility of module entities to PRIVATE"
msgstr ""

#: fortran/lang.opt:142
msgid "Don't generate code, just do syntax and semantics checking"
msgstr ""

#: fortran/lang.opt:146
msgid "Try to layout derived types as compact as possible"
msgstr ""

#: fortran/lang.opt:150
msgid "Copy array sections into a contiguous block on procedure entry"
msgstr ""

#: fortran/lang.opt:154
msgid "Set the kind for a real with the 'q' exponent to 'n'"
msgstr ""

#: fortran/lang.opt:158
msgid "Conform to the ISO Fortran 95 standard"
msgstr ""

#: fortran/lang.opt:162
msgid "Conform to the ISO Fortran 2003 standard"
msgstr ""

#: fortran/lang.opt:166
msgid "Conform nothing in particular"
msgstr ""

#: fortran/lang.opt:170
msgid "Accept extensions to support legacy code"
msgstr ""

#: java/lang.opt:66
msgid "Warn if a deprecated compiler feature, class, method, or field is used"
msgstr ""

#: java/lang.opt:70
msgid "Warn if deprecated empty statements are found"
msgstr ""

#: java/lang.opt:74
msgid "Warn if .class files are out of date"
msgstr ""

#: java/lang.opt:78
msgid "Warn if modifiers are specified when not necessary"
msgstr ""

#: java/lang.opt:82
msgid "Deprecated; use --classpath instead"
msgstr ""

#: java/lang.opt:86
msgid "Permit the use of the assert keyword"
msgstr ""

#: java/lang.opt:108
msgid "Replace system path"
msgstr ""

#: java/lang.opt:112
msgid "Generate checks for references to NULL"
msgstr ""

#: java/lang.opt:116
msgid "Set class path"
msgstr ""

#: java/lang.opt:123
msgid "Output a class file"
msgstr ""

#: java/lang.opt:127
msgid "Alias for -femit-class-file"
msgstr ""

#: java/lang.opt:131
msgid "Choose input encoding (defaults from your locale)"
msgstr ""

#: java/lang.opt:135
msgid "Set the extension directory path"
msgstr ""

#: java/lang.opt:139
msgid "Input file is a file with a list of filenames to compile"
msgstr ""

#: java/lang.opt:143
msgid "Always check for non gcj generated classes archives"
msgstr ""

#: java/lang.opt:147
msgid ""
"Assume the runtime uses a hash table to map an object to its synchronization "
"structure"
msgstr ""

#: java/lang.opt:151
msgid "Use offset tables for virtual method calls"
msgstr ""

#: java/lang.opt:158
msgid "Assume native functions are implemented using JNI"
msgstr ""

#: java/lang.opt:162
msgid "Enable optimization of static class initialization code"
msgstr ""

#: java/lang.opt:169
msgid "Enable assignability checks for stores into object arrays"
msgstr ""

#: java/lang.opt:173
msgid "Generate code for the Boehm GC"
msgstr ""

#: java/lang.opt:177
msgid "Call a library routine to do integer divisions"
msgstr ""

#: java/lang.opt:181
msgid "Generated should be loaded by bootstrap loader"
msgstr ""

#: treelang/lang.opt:30
msgid "Trace lexical analysis"
msgstr ""

#: treelang/lang.opt:34
msgid "Trace the parsing process"
msgstr ""

#: attribs.c:175
#, gcc-internal-format
msgid "%qs attribute directive ignored"
msgstr ""

#: attribs.c:183
#, gcc-internal-format
msgid "wrong number of arguments specified for %qs attribute"
msgstr ""

#: attribs.c:200
#, gcc-internal-format
msgid "%qs attribute does not apply to types"
msgstr ""

#: attribs.c:247
#, gcc-internal-format
msgid "%qs attribute only applies to function types"
msgstr ""

#: bb-reorder.c:1871
#, gcc-internal-format
msgid "multiple hot/cold transitions found (bb %i)"
msgstr ""

#: bt-load.c:1504
#, gcc-internal-format
msgid ""
"branch target register load optimization is not intended to be run twice"
msgstr ""

#: builtins.c:366
#, gcc-internal-format
msgid "offset outside bounds of constant string"
msgstr ""

#: builtins.c:968
#, gcc-internal-format
msgid "second argument to %<__builtin_prefetch%> must be a constant"
msgstr ""

#: builtins.c:975
#, gcc-internal-format
msgid "invalid second argument to %<__builtin_prefetch%>; using zero"
msgstr ""

#: builtins.c:983
#, gcc-internal-format
msgid "third argument to %<__builtin_prefetch%> must be a constant"
msgstr ""

#: builtins.c:990
#, gcc-internal-format
msgid "invalid third argument to %<__builtin_prefetch%>; using zero"
msgstr ""

#: builtins.c:4005
#, gcc-internal-format
msgid "argument of %<__builtin_args_info%> must be constant"
msgstr ""

#: builtins.c:4011
#, gcc-internal-format
msgid "argument of %<__builtin_args_info%> out of range"
msgstr ""

#: builtins.c:4017
#, gcc-internal-format
msgid "missing argument in %<__builtin_args_info%>"
msgstr ""

#: builtins.c:4113 gimplify.c:1776
#, gcc-internal-format
msgid "too few arguments to function %<va_start%>"
msgstr ""

#: builtins.c:4276
#, gcc-internal-format
msgid "first argument to %<va_arg%> not of type %<va_list%>"
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:4290
#, gcc-internal-format
msgid "%qT is promoted to %qT when passed through %<...%>"
msgstr ""

#: builtins.c:4295
#, gcc-internal-format
msgid "(so you should pass %qT not %qT to %<va_arg%>)"
msgstr ""

#. We can, however, treat "undefined" any way we please.
#. Call abort to encourage the user to fix the program.
#: builtins.c:4301 c-typeck.c:2076
#, gcc-internal-format
msgid "if this code is reached, the program will abort"
msgstr ""

#: builtins.c:4420
#, gcc-internal-format
msgid "invalid argument to %<__builtin_frame_address%>"
msgstr ""

#: builtins.c:4422
#, gcc-internal-format
msgid "invalid argument to %<__builtin_return_address%>"
msgstr ""

#: builtins.c:4435
#, gcc-internal-format
msgid "unsupported argument to %<__builtin_frame_address%>"
msgstr ""

#: builtins.c:4437
#, gcc-internal-format
msgid "unsupported argument to %<__builtin_return_address%>"
msgstr ""

#: builtins.c:4540
#, gcc-internal-format
msgid "second argument to %<__builtin_expect%> must be a constant"
msgstr ""

#: builtins.c:5990
#, gcc-internal-format
msgid "%<__builtin_longjmp%> second argument must be 1"
msgstr ""

#: builtins.c:6537
#, gcc-internal-format
msgid "target format does not support infinity"
msgstr ""

#: builtins.c:8366 builtins.c:8460
#, gcc-internal-format
msgid "too few arguments to function %qs"
msgstr ""

#: builtins.c:8372 builtins.c:8466
#, gcc-internal-format
msgid "too many arguments to function %qs"
msgstr ""

#: builtins.c:8378 builtins.c:8491
#, gcc-internal-format
msgid "non-floating-point argument to function %qs"
msgstr ""

#: builtins.c:9583
#, gcc-internal-format
msgid "%<va_start%> used in function with fixed args"
msgstr ""

#. Evidently an out of date version of <stdarg.h>; can't validate
#. va_start's second argument, but can still work as intended.
#: builtins.c:9590
#, gcc-internal-format
msgid "%<__builtin_next_arg%> called without an argument"
msgstr ""

#: builtins.c:9605
#, gcc-internal-format
msgid "%<va_start%> used with too many arguments"
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:9625
#, gcc-internal-format
msgid "second parameter of %<va_start%> not last named argument"
msgstr ""

#: builtins.c:9734
#, gcc-internal-format
msgid "%Hfirst argument of %D must be a pointer, second integer constant"
msgstr ""

#: builtins.c:9747
#, gcc-internal-format
msgid "%Hlast argument of %D is not integer constant between 0 and 3"
msgstr ""

#: builtins.c:9793 builtins.c:9946 builtins.c:10011
#, gcc-internal-format
msgid "%Hcall to %D will always overflow destination buffer"
msgstr ""

#: c-common.c:828
#, gcc-internal-format
msgid "%qD is not defined outside of function scope"
msgstr ""

#: c-common.c:849
#, gcc-internal-format
msgid ""
"string length %qd is greater than the length %qd ISO C%d compilers are "
"required to support"
msgstr ""

#: c-common.c:890
#, gcc-internal-format
msgid "overflow in constant expression"
msgstr ""

#: c-common.c:910
#, gcc-internal-format
msgid "integer overflow in expression"
msgstr ""

#: c-common.c:919
#, gcc-internal-format
msgid "floating point overflow in expression"
msgstr ""

#: c-common.c:925
#, gcc-internal-format
msgid "vector overflow in expression"
msgstr ""

#. This detects cases like converting -129 or 256 to unsigned char.
#: c-common.c:947
#, gcc-internal-format
msgid "large integer implicitly truncated to unsigned type"
msgstr ""

#: c-common.c:950
#, gcc-internal-format
msgid "negative integer implicitly converted to unsigned type"
msgstr ""

#: c-common.c:1008
#, gcc-internal-format
msgid "overflow in implicit constant conversion"
msgstr ""

#: c-common.c:1144
#, gcc-internal-format
msgid "operation on %qE may be undefined"
msgstr ""

#: c-common.c:1430
#, gcc-internal-format
msgid "case label does not reduce to an integer constant"
msgstr ""

#: c-common.c:1470
#, gcc-internal-format
msgid "case label value is less than minimum value for type"
msgstr ""

#: c-common.c:1478
#, gcc-internal-format
msgid "case label value exceeds maximum value for type"
msgstr ""

#: c-common.c:1486
#, gcc-internal-format
msgid "lower value in case label range less than minimum value for type"
msgstr ""

#: c-common.c:1495
#, gcc-internal-format
msgid "upper value in case label range exceeds maximum value for type"
msgstr ""

#: c-common.c:1835
#, gcc-internal-format
msgid "invalid truth-value expression"
msgstr ""

#: c-common.c:1883
#, gcc-internal-format
msgid "invalid operands to binary %s"
msgstr ""

#: c-common.c:2118
#, gcc-internal-format
msgid "comparison is always false due to limited range of data type"
msgstr ""

#: c-common.c:2120
#, gcc-internal-format
msgid "comparison is always true due to limited range of data type"
msgstr ""

#: c-common.c:2190
#, gcc-internal-format
msgid "comparison of unsigned expression >= 0 is always true"
msgstr ""

#: c-common.c:2199
#, gcc-internal-format
msgid "comparison of unsigned expression < 0 is always false"
msgstr ""

#: c-common.c:2241
#, gcc-internal-format
msgid "pointer of type %<void *%> used in arithmetic"
msgstr ""

#: c-common.c:2247
#, gcc-internal-format
msgid "pointer to a function used in arithmetic"
msgstr ""

#: c-common.c:2253
#, gcc-internal-format
msgid "pointer to member function used in arithmetic"
msgstr ""

#. Common Ada/Pascal programmer's mistake.  We always warn
#. about this since it is so bad.
#: c-common.c:2379
#, gcc-internal-format
msgid "the address of %qD, will always evaluate as %<true%>"
msgstr ""

#: c-common.c:2476
#, gcc-internal-format
msgid "suggest parentheses around assignment used as truth value"
msgstr ""

#: c-common.c:2544 c-common.c:2584
#, gcc-internal-format
msgid "invalid use of %<restrict%>"
msgstr ""

#: c-common.c:2800
#, gcc-internal-format
msgid "invalid application of %<sizeof%> to a function type"
msgstr ""

#: c-common.c:2810
#, gcc-internal-format
msgid "invalid application of %qs to a void type"
msgstr ""

#: c-common.c:2816
#, gcc-internal-format
msgid "invalid application of %qs to incomplete type %qT "
msgstr ""

#: c-common.c:2857
#, gcc-internal-format
msgid "%<__alignof%> applied to a bit-field"
msgstr ""

#: c-common.c:3387
#, gcc-internal-format
msgid "cannot disable built-in function %qs"
msgstr ""

#: c-common.c:3575
#, gcc-internal-format
msgid "pointers are not permitted as case values"
msgstr ""

#: c-common.c:3581
#, gcc-internal-format
msgid "range expressions in switch statements are non-standard"
msgstr ""

#: c-common.c:3606
#, gcc-internal-format
msgid "empty range specified"
msgstr ""

#: c-common.c:3665
#, gcc-internal-format
msgid "duplicate (or overlapping) case value"
msgstr ""

#: c-common.c:3666
#, gcc-internal-format
msgid "%Jthis is the first entry overlapping that value"
msgstr ""

#: c-common.c:3670
#, gcc-internal-format
msgid "duplicate case value"
msgstr ""

#: c-common.c:3671
#, gcc-internal-format
msgid "%Jpreviously used here"
msgstr ""

#: c-common.c:3675
#, gcc-internal-format
msgid "multiple default labels in one switch"
msgstr ""

#: c-common.c:3676
#, gcc-internal-format
msgid "%Jthis is the first default label"
msgstr ""

#: c-common.c:3725
#, gcc-internal-format
msgid "%Jcase value %qs not in enumerated type"
msgstr ""

#: c-common.c:3728
#, gcc-internal-format
msgid "%Jcase value %qs not in enumerated type %qT"
msgstr ""

#: c-common.c:3785
#, gcc-internal-format
msgid "%Hswitch missing default case"
msgstr ""

#. Warn if there are enumerators that don't correspond to
#. case expressions.
#: c-common.c:3820
#, gcc-internal-format
msgid "%Henumeration value %qE not handled in switch"
msgstr ""

#: c-common.c:3847
#, gcc-internal-format
msgid "taking the address of a label is non-standard"
msgstr ""

#: c-common.c:4016 c-common.c:4035 c-common.c:4053 c-common.c:4080
#: c-common.c:4099 c-common.c:4122 c-common.c:4143 c-common.c:4168
#: c-common.c:4194 c-common.c:4242 c-common.c:4269 c-common.c:4313
#: c-common.c:4341 c-common.c:4369 c-common.c:4388 c-common.c:4714
#: c-common.c:4745 c-common.c:4841 c-common.c:4907 c-common.c:4925
#: c-common.c:4971 c-common.c:5041 c-common.c:5065 c-common.c:5352
#: c-common.c:5375 c-common.c:5414
#, gcc-internal-format
msgid "%qE attribute ignored"
msgstr ""

#: c-common.c:4223
#, gcc-internal-format
msgid "%qE attribute have effect only on public objects"
msgstr ""

#: c-common.c:4426
#, gcc-internal-format
msgid "unknown machine mode %qs"
msgstr ""

#: c-common.c:4446
#, gcc-internal-format
msgid "specifying vector types with __attribute__ ((mode)) is deprecated"
msgstr ""

#: c-common.c:4449
#, gcc-internal-format
msgid "use __attribute__ ((vector_size)) instead"
msgstr ""

#: c-common.c:4458
#, gcc-internal-format
msgid "unable to emulate %qs"
msgstr ""

#: c-common.c:4468
#, gcc-internal-format
msgid "invalid pointer mode %qs"
msgstr ""

#: c-common.c:4483
#, gcc-internal-format
msgid "no data type for mode %qs"
msgstr ""

#: c-common.c:4493
#, gcc-internal-format
msgid "cannot use mode %qs for enumeral types"
msgstr ""

#: c-common.c:4517
#, gcc-internal-format
msgid "mode %qs applied to inappropriate type"
msgstr ""

#: c-common.c:4548
#, gcc-internal-format
msgid "%Jsection attribute cannot be specified for local variables"
msgstr ""

#: c-common.c:4559
#, gcc-internal-format
msgid "section of %q+D conflicts with previous declaration"
msgstr ""

#: c-common.c:4568
#, gcc-internal-format
msgid "section attribute not allowed for %q+D"
msgstr ""

#: c-common.c:4574
#, gcc-internal-format
msgid "%Jsection attributes are not supported for this target"
msgstr ""

#: c-common.c:4606
#, gcc-internal-format
msgid "requested alignment is not a constant"
msgstr ""

#: c-common.c:4611
#, gcc-internal-format
msgid "requested alignment is not a power of 2"
msgstr ""

#: c-common.c:4616
#, gcc-internal-format
msgid "requested alignment is too large"
msgstr ""

#: c-common.c:4642
#, gcc-internal-format
msgid "alignment may not be specified for %q+D"
msgstr ""

#: c-common.c:4680
#, gcc-internal-format
msgid "%q+D defined both normally and as an alias"
msgstr ""

#: c-common.c:4696
#, gcc-internal-format
msgid "alias argument not a string"
msgstr ""

#: c-common.c:4738
#, gcc-internal-format
msgid "%qE attribute ignored on non-class types"
msgstr ""

#: c-common.c:4751
#, gcc-internal-format
msgid "visibility argument not a string"
msgstr ""

#: c-common.c:4763
#, gcc-internal-format
msgid "%qE attribute ignored on types"
msgstr ""

#: c-common.c:4778
#, gcc-internal-format
msgid ""
"visibility argument must be one of \"default\", \"hidden\", \"protected\" or "
"\"internal\""
msgstr ""

#: c-common.c:4849
#, gcc-internal-format
msgid "tls_model argument not a string"
msgstr ""

#: c-common.c:4862
#, gcc-internal-format
msgid ""
"tls_model argument must be one of \"local-exec\", \"initial-exec\", \"local-"
"dynamic\" or \"global-dynamic\""
msgstr ""

#: c-common.c:4881 c-common.c:4945
#, gcc-internal-format
msgid "%J%qE attribute applies only to functions"
msgstr ""

#: c-common.c:4886 c-common.c:4950
#, gcc-internal-format
msgid "%Jcan%'t set %qE attribute after definition"
msgstr ""

#: c-common.c:5039
#, gcc-internal-format
msgid "%qE attribute ignored for %qE"
msgstr ""

#: c-common.c:5094
#, gcc-internal-format
msgid "invalid vector type for attribute %qE"
msgstr ""

#: c-common.c:5102
#, gcc-internal-format
msgid "number of components of the vector not a power of two"
msgstr ""

#: c-common.c:5130
#, gcc-internal-format
msgid "nonnull attribute without arguments on a non-prototype"
msgstr ""

#: c-common.c:5145
#, gcc-internal-format
msgid "nonnull argument has invalid operand number (argument %lu)"
msgstr ""

#: c-common.c:5164
#, gcc-internal-format
msgid ""
"nonnull argument with out-of-range operand number (argument %lu, operand %lu)"
msgstr ""

#: c-common.c:5172
#, gcc-internal-format
msgid ""
"nonnull argument references non-pointer operand (argument %lu, operand %lu)"
msgstr ""

#: c-common.c:5235 c-common.c:5258
#, gcc-internal-format
msgid "not enough variable arguments to fit a sentinel"
msgstr ""

#: c-common.c:5279
#, gcc-internal-format
msgid "missing sentinel in function call"
msgstr ""

#: c-common.c:5321
#, gcc-internal-format
msgid "null argument where non-null required (argument %lu)"
msgstr ""

#: c-common.c:5386
#, gcc-internal-format
msgid "cleanup argument not an identifier"
msgstr ""

#: c-common.c:5393
#, gcc-internal-format
msgid "cleanup argument not a function"
msgstr ""

#: c-common.c:5432
#, gcc-internal-format
msgid "%qE attribute requires prototypes with named arguments"
msgstr ""

#: c-common.c:5443
#, gcc-internal-format
msgid "%qE attribute only applies to variadic functions"
msgstr ""

#: c-common.c:5454
#, gcc-internal-format
msgid "requested position is not an integer constant"
msgstr ""

#: c-common.c:5461
#, gcc-internal-format
msgid "requested position is less than zero"
msgstr ""

#: c-common.c:5763
#, gcc-internal-format
msgid ""
"%Hignoring return value of %qD, declared with attribute warn_unused_result"
msgstr ""

#: c-common.c:5767
#, gcc-internal-format
msgid ""
"%Hignoring return value of function declared with attribute "
"warn_unused_result"
msgstr ""

#: c-common.c:5827 cp/typeck.c:4168
#, gcc-internal-format
msgid "attempt to take address of bit-field structure member %qD"
msgstr ""

#: c-common.c:5874
#, gcc-internal-format
msgid "invalid lvalue in assignment"
msgstr ""

#: c-common.c:5877
#, gcc-internal-format
msgid "invalid lvalue in increment"
msgstr ""

#: c-common.c:5880
#, gcc-internal-format
msgid "invalid lvalue in decrement"
msgstr ""

#: c-common.c:5883
#, gcc-internal-format
msgid "invalid lvalue in unary %<&%>"
msgstr ""

#: c-common.c:5886
#, gcc-internal-format
msgid "invalid lvalue in asm statement"
msgstr ""

#: c-common.c:6014 c-common.c:6063 c-typeck.c:2334
#, gcc-internal-format
msgid "too few arguments to function %qE"
msgstr ""

#. ??? This should not be an error when inlining calls to
#. unprototyped functions.
#: c-common.c:6031 c-typeck.c:4000
#, gcc-internal-format
msgid "incompatible type for argument %d of %qE"
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:1487 c-typeck.c:3641 cp/typeck.c:1366
#: cp/typeck.c:5885 fortran/convert.c:89 treelang/tree-convert.c:79
#, gcc-internal-format
msgid "void value not ignored as it ought to be"
msgstr ""

#: c-convert.c:134 fortran/convert.c:122 java/typeck.c:154
#: treelang/tree-convert.c:105
#, gcc-internal-format
msgid "conversion to non-scalar type requested"
msgstr ""

#: c-decl.c:564
#, gcc-internal-format
msgid "array %q+D assumed to have one element"
msgstr ""

#: c-decl.c:669
#, gcc-internal-format
msgid "GCC supports only %u nested scopes"
msgstr ""

#: c-decl.c:755 cp/decl.c:355 java/decl.c:1685
#, gcc-internal-format
msgid "label %q+D used but not defined"
msgstr ""

#: c-decl.c:761 cp/decl.c:366 java/decl.c:1690
#, gcc-internal-format
msgid "label %q+D defined but not used"
msgstr ""

#: c-decl.c:763
#, gcc-internal-format
msgid "label %q+D declared but not defined"
msgstr ""

#: c-decl.c:798
#, gcc-internal-format
msgid "nested function %q+D declared but never defined"
msgstr ""

#: c-decl.c:811 cp/decl.c:560
#, gcc-internal-format
msgid "unused variable %q+D"
msgstr ""

#: c-decl.c:815
#, gcc-internal-format
msgid "type of array %q+D completed incompatibly with implicit initialization"
msgstr ""

#: c-decl.c:1049
#, gcc-internal-format
msgid ""
"a parameter list with an ellipsis can%'t match an empty parameter name list "
"declaration"
msgstr ""

#: c-decl.c:1056
#, gcc-internal-format
msgid ""
"an argument type that has a default promotion can%'t match an empty "
"parameter name list declaration"
msgstr ""

#: c-decl.c:1091
#, gcc-internal-format
msgid ""
"prototype for %q+D declares more arguments than previous old-style definition"
msgstr ""

#: c-decl.c:1097
#, gcc-internal-format
msgid ""
"prototype for %q+D declares fewer arguments than previous old-style "
"definition"
msgstr ""

#: c-decl.c:1106
#, gcc-internal-format
msgid "prototype for %q+D declares argument %d with incompatible type"
msgstr ""

#. If we get here, no errors were found, but do issue a warning
#. for this poor-style construct.
#: c-decl.c:1119
#, gcc-internal-format
msgid "prototype for %q+D follows non-prototype definition"
msgstr ""

#: c-decl.c:1134
#, gcc-internal-format
msgid "previous definition of %q+D was here"
msgstr ""

#: c-decl.c:1136
#, gcc-internal-format
msgid "previous implicit declaration of %q+D was here"
msgstr ""

#: c-decl.c:1138
#, gcc-internal-format
msgid "previous declaration of %q+D was here"
msgstr ""

#: c-decl.c:1178
#, gcc-internal-format
msgid "%q+D redeclared as different kind of symbol"
msgstr ""

#: c-decl.c:1182
#, gcc-internal-format
msgid "built-in function %q+D declared as non-function"
msgstr ""

#: c-decl.c:1185 c-decl.c:1301 c-decl.c:1918
#, gcc-internal-format
msgid "declaration of %q+D shadows a built-in function"
msgstr ""

#: c-decl.c:1194
#, gcc-internal-format
msgid "redeclaration of enumerator %q+D"
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
#, gcc-internal-format
msgid "conflicting types for built-in function %q+D"
msgstr ""

#: c-decl.c:1239 c-decl.c:1252 c-decl.c:1262
#, gcc-internal-format
msgid "conflicting types for %q+D"
msgstr ""

#: c-decl.c:1260
#, gcc-internal-format
msgid "conflicting type qualifiers for %q+D"
msgstr ""

#. Allow OLDDECL to continue in use.
#: c-decl.c:1277
#, gcc-internal-format
msgid "redefinition of typedef %q+D"
msgstr ""

#: c-decl.c:1325 c-decl.c:1403
#, gcc-internal-format
msgid "redefinition of %q+D"
msgstr ""

#: c-decl.c:1360 c-decl.c:1441
#, gcc-internal-format
msgid "static declaration of %q+D follows non-static declaration"
msgstr ""

#: c-decl.c:1370 c-decl.c:1377 c-decl.c:1430 c-decl.c:1438
#, gcc-internal-format
msgid "non-static declaration of %q+D follows static declaration"
msgstr ""

#: c-decl.c:1390
#, gcc-internal-format
msgid "thread-local declaration of %q+D follows non-thread-local declaration"
msgstr ""

#: c-decl.c:1393
#, gcc-internal-format
msgid "non-thread-local declaration of %q+D follows thread-local declaration"
msgstr ""

#: c-decl.c:1423
#, gcc-internal-format
msgid "extern declaration of %q+D follows declaration with no linkage"
msgstr ""

#: c-decl.c:1459
#, gcc-internal-format
msgid "declaration of %q+D with no linkage follows extern declaration"
msgstr ""

#: c-decl.c:1465
#, gcc-internal-format
msgid "redeclaration of %q+D with no linkage"
msgstr ""

#: c-decl.c:1479
#, gcc-internal-format
msgid ""
"redeclaration of %q+D with different visibility (old visibility preserved)"
msgstr ""

#: c-decl.c:1490
#, gcc-internal-format
msgid "inline declaration of %qD follows declaration with attribute noinline"
msgstr ""

#: c-decl.c:1497
#, gcc-internal-format
msgid "declaration of %q+D with attribute noinline follows inline declaration "
msgstr ""

#: c-decl.c:1512
#, gcc-internal-format
msgid "%q+D declared inline after being called"
msgstr ""

#: c-decl.c:1517
#, gcc-internal-format
msgid "%q+D declared inline after its definition"
msgstr ""

#: c-decl.c:1536
#, gcc-internal-format
msgid "redefinition of parameter %q+D"
msgstr ""

#: c-decl.c:1560
#, gcc-internal-format
msgid "redundant redeclaration of %q+D"
msgstr ""

#: c-decl.c:1905
#, gcc-internal-format
msgid "declaration of %q+D shadows previous non-variable"
msgstr ""

#: c-decl.c:1910
#, gcc-internal-format
msgid "declaration of %q+D shadows a parameter"
msgstr ""

#: c-decl.c:1913
#, gcc-internal-format
msgid "declaration of %q+D shadows a global declaration"
msgstr ""

#: c-decl.c:1923
#, gcc-internal-format
msgid "declaration of %q+D shadows a previous local"
msgstr ""

#: c-decl.c:1926 cp/name-lookup.c:941 cp/name-lookup.c:972
#: cp/name-lookup.c:980
#, gcc-internal-format
msgid "%Jshadowed declaration is here"
msgstr ""

#: c-decl.c:2126
#, gcc-internal-format
msgid "nested extern declaration of %qD"
msgstr ""

#: c-decl.c:2295
#, gcc-internal-format
msgid "implicit declaration of function %qE"
msgstr ""

#: c-decl.c:2356
#, gcc-internal-format
msgid "incompatible implicit declaration of built-in function %qD"
msgstr ""

#: c-decl.c:2365
#, gcc-internal-format
msgid "incompatible implicit declaration of function %qD"
msgstr ""

#: c-decl.c:2418
#, gcc-internal-format
msgid "%H%qE undeclared here (not in a function)"
msgstr ""

#: c-decl.c:2423
#, gcc-internal-format
msgid "%H%qE undeclared (first use in this function)"
msgstr ""

#: c-decl.c:2427
#, gcc-internal-format
msgid "%H(Each undeclared identifier is reported only once"
msgstr ""

#: c-decl.c:2428
#, gcc-internal-format
msgid "%Hfor each function it appears in.)"
msgstr ""

#: c-decl.c:2466 cp/decl.c:2079
#, gcc-internal-format
msgid "label %qE referenced outside of any function"
msgstr ""

#: c-decl.c:2508
#, gcc-internal-format
msgid "duplicate label declaration %qE"
msgstr ""

#: c-decl.c:2544
#, gcc-internal-format
msgid "%Hduplicate label %qD"
msgstr ""

#: c-decl.c:2554
#, gcc-internal-format
msgid "%Jjump into statement expression"
msgstr ""

#: c-decl.c:2556
#, gcc-internal-format
msgid "%Jjump into scope of identifier with variably modified type"
msgstr ""

#: c-decl.c:2571
#, gcc-internal-format
msgid ""
"%Htraditional C lacks a separate namespace for labels, identifier %qE "
"conflicts"
msgstr ""

#: c-decl.c:2646
#, gcc-internal-format
msgid "%H%qE defined as wrong kind of tag"
msgstr ""

#: c-decl.c:2861
#, gcc-internal-format
msgid "unnamed struct/union that defines no instances"
msgstr ""

#: c-decl.c:2869
#, gcc-internal-format
msgid "empty declaration with storage class specifier does not redeclare tag"
msgstr ""

#: c-decl.c:2880
#, gcc-internal-format
msgid "empty declaration with type qualifier does not redeclare tag"
msgstr ""

#: c-decl.c:2901 c-decl.c:2908
#, gcc-internal-format
msgid "useless type name in empty declaration"
msgstr ""

#: c-decl.c:2916
#, gcc-internal-format
msgid "%<inline%> in empty declaration"
msgstr ""

#: c-decl.c:2922
#, gcc-internal-format
msgid "%<auto%> in file-scope empty declaration"
msgstr ""

#: c-decl.c:2928
#, gcc-internal-format
msgid "%<register%> in file-scope empty declaration"
msgstr ""

#: c-decl.c:2934
#, gcc-internal-format
msgid "useless storage class specifier in empty declaration"
msgstr ""

#: c-decl.c:2940
#, gcc-internal-format
msgid "useless %<__thread%> in empty declaration"
msgstr ""

#: c-decl.c:2948
#, gcc-internal-format
msgid "useless type qualifier in empty declaration"
msgstr ""

#: c-decl.c:2955 c-parser.c:1157
#, gcc-internal-format
msgid "empty declaration"
msgstr ""

#: c-decl.c:3021
#, gcc-internal-format
msgid ""
"ISO C90 does not support %<static%> or type qualifiers in parameter array "
"declarators"
msgstr ""

#: c-decl.c:3024
#, gcc-internal-format
msgid "ISO C90 does not support %<[*]%> array declarators"
msgstr ""

#: c-decl.c:3027
#, gcc-internal-format
msgid "GCC does not yet properly implement %<[*]%> array declarators"
msgstr ""

#: c-decl.c:3046
#, gcc-internal-format
msgid "static or type qualifiers in abstract declarator"
msgstr ""

#: c-decl.c:3105
#, gcc-internal-format
msgid "%q+D is usually a function"
msgstr ""

#: c-decl.c:3114 cp/decl.c:3650 cp/decl2.c:840
#, gcc-internal-format
msgid "typedef %qD is initialized (use __typeof__ instead)"
msgstr ""

#: c-decl.c:3119
#, gcc-internal-format
msgid "function %qD is initialized like a variable"
msgstr ""

#. DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE.
#: c-decl.c:3125
#, gcc-internal-format
msgid "parameter %qD is initialized"
msgstr ""

#: c-decl.c:3150
#, gcc-internal-format
msgid "variable %qD has initializer but incomplete type"
msgstr ""

#: c-decl.c:3226 c-decl.c:5850 cp/decl.c:3689 cp/decl.c:10024
#, gcc-internal-format
msgid "inline function %q+D given attribute noinline"
msgstr ""

#: c-decl.c:3298
#, gcc-internal-format
msgid "initializer fails to determine size of %q+D"
msgstr ""

#: c-decl.c:3303
#, gcc-internal-format
msgid "array size missing in %q+D"
msgstr ""

#: c-decl.c:3315
#, gcc-internal-format
msgid "zero or negative size array %q+D"
msgstr ""

#: c-decl.c:3367 varasm.c:1641
#, gcc-internal-format
msgid "storage size of %q+D isn%'t known"
msgstr ""

#: c-decl.c:3377
#, gcc-internal-format
msgid "storage size of %q+D isn%'t constant"
msgstr ""

#: c-decl.c:3424
#, gcc-internal-format
msgid "ignoring asm-specifier for non-static local variable %q+D"
msgstr ""

#: c-decl.c:3454 fortran/f95-lang.c:636
#, gcc-internal-format
msgid "cannot put object with volatile field into register"
msgstr ""

#: c-decl.c:3589
#, gcc-internal-format
msgid "ISO C forbids forward parameter declarations"
msgstr ""

#: c-decl.c:3716
#, gcc-internal-format
msgid "bit-field %qs width not an integer constant"
msgstr ""

#: c-decl.c:3724
#, gcc-internal-format
msgid "negative width in bit-field %qs"
msgstr ""

#: c-decl.c:3729
#, gcc-internal-format
msgid "zero width for bit-field %qs"
msgstr ""

#: c-decl.c:3739
#, gcc-internal-format
msgid "bit-field %qs has invalid type"
msgstr ""

#: c-decl.c:3748
#, gcc-internal-format
msgid "type of bit-field %qs is a GCC extension"
msgstr ""

#: c-decl.c:3757
#, gcc-internal-format
msgid "width of %qs exceeds its type"
msgstr ""

#: c-decl.c:3770
#, gcc-internal-format
msgid "%qs is narrower than values of its type"
msgstr ""

#: c-decl.c:3919
#, gcc-internal-format
msgid "type defaults to %<int%> in declaration of %qs"
msgstr ""

#: c-decl.c:3947
#, gcc-internal-format
msgid "duplicate %<const%>"
msgstr ""

#: c-decl.c:3949
#, gcc-internal-format
msgid "duplicate %<restrict%>"
msgstr ""

#: c-decl.c:3951
#, gcc-internal-format
msgid "duplicate %<volatile%>"
msgstr ""

#: c-decl.c:3970
#, gcc-internal-format
msgid "function definition declared %<auto%>"
msgstr ""

#: c-decl.c:3972
#, gcc-internal-format
msgid "function definition declared %<register%>"
msgstr ""

#: c-decl.c:3974
#, gcc-internal-format
msgid "function definition declared %<typedef%>"
msgstr ""

#: c-decl.c:3976
#, gcc-internal-format
msgid "function definition declared %<__thread%>"
msgstr ""

#: c-decl.c:3992
#, gcc-internal-format
msgid "storage class specified for structure field %qs"
msgstr ""

#: c-decl.c:3996 cp/decl.c:7104
#, gcc-internal-format
msgid "storage class specified for parameter %qs"
msgstr ""

#: c-decl.c:3999 cp/decl.c:7106
#, gcc-internal-format
msgid "storage class specified for typename"
msgstr ""

#: c-decl.c:4012 cp/decl.c:7123
#, gcc-internal-format
msgid "%qs initialized and declared %<extern%>"
msgstr ""

#: c-decl.c:4014 cp/decl.c:7126
#, gcc-internal-format
msgid "%qs has both %<extern%> and initializer"
msgstr ""

#: c-decl.c:4019
#, gcc-internal-format
msgid "file-scope declaration of %qs specifies %<auto%>"
msgstr ""

#: c-decl.c:4021
#, gcc-internal-format
msgid "file-scope declaration of %qs specifies %<register%>"
msgstr ""

#: c-decl.c:4026 cp/decl.c:7130
#, gcc-internal-format
msgid "nested function %qs declared %<extern%>"
msgstr ""

#: c-decl.c:4029 cp/decl.c:7140
#, gcc-internal-format
msgid "function-scope %qs implicitly auto and declared %<__thread%>"
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:4076 c-decl.c:4267
#, gcc-internal-format
msgid "static or type qualifiers in non-parameter array declarator"
msgstr ""

#: c-decl.c:4122
#, gcc-internal-format
msgid "declaration of %qs as array of voids"
msgstr ""

#: c-decl.c:4128
#, gcc-internal-format
msgid "declaration of %qs as array of functions"
msgstr ""

#: c-decl.c:4133
#, gcc-internal-format
msgid "invalid use of structure with flexible array member"
msgstr ""

#: c-decl.c:4153
#, gcc-internal-format
msgid "size of array %qs has non-integer type"
msgstr ""

#: c-decl.c:4158
#, gcc-internal-format
msgid "ISO C forbids zero-size array %qs"
msgstr ""

#: c-decl.c:4165
#, gcc-internal-format
msgid "size of array %qs is negative"
msgstr ""

#: c-decl.c:4179
#, gcc-internal-format
msgid "ISO C90 forbids array %qs whose size can%'t be evaluated"
msgstr ""

#: c-decl.c:4183
#, gcc-internal-format
msgid "ISO C90 forbids variable-size array %qs"
msgstr ""

#: c-decl.c:4223 c-decl.c:4389 cp/decl.c:7562
#, gcc-internal-format
msgid "size of array %qs is too large"
msgstr ""

#: c-decl.c:4234
#, gcc-internal-format
msgid "ISO C90 does not support flexible array members"
msgstr ""

#: c-decl.c:4244
#, gcc-internal-format
msgid "array type has incomplete element type"
msgstr ""

#: c-decl.c:4299 cp/decl.c:7231
#, gcc-internal-format
msgid "%qs declared as function returning a function"
msgstr ""

#: c-decl.c:4304 cp/decl.c:7236
#, gcc-internal-format
msgid "%qs declared as function returning an array"
msgstr ""

#: c-decl.c:4324
#, gcc-internal-format
msgid "function definition has qualified void return type"
msgstr ""

#: c-decl.c:4327
#, gcc-internal-format
msgid "type qualifiers ignored on function return type"
msgstr ""

#: c-decl.c:4356 c-decl.c:4402 c-decl.c:4497 c-decl.c:4587
#, gcc-internal-format
msgid "ISO C forbids qualified function types"
msgstr ""

#: c-decl.c:4410
#, gcc-internal-format
msgid "typedef %q+D declared %<inline%>"
msgstr ""

#: c-decl.c:4440
#, gcc-internal-format
msgid "ISO C forbids const or volatile function types"
msgstr ""

#: c-decl.c:4460
#, gcc-internal-format
msgid "variable or field %qs declared void"
msgstr ""

#: c-decl.c:4490
#, gcc-internal-format
msgid "attributes in parameter array declarator ignored"
msgstr ""

#: c-decl.c:4524
#, gcc-internal-format
msgid "parameter %q+D declared %<inline%>"
msgstr ""

#: c-decl.c:4537
#, gcc-internal-format
msgid "field %qs declared as a function"
msgstr ""

#: c-decl.c:4543
#, gcc-internal-format
msgid "field %qs has incomplete type"
msgstr ""

#: c-decl.c:4557 c-decl.c:4569 c-decl.c:4573
#, gcc-internal-format
msgid "invalid storage class for function %qs"
msgstr ""

#: c-decl.c:4593
#, gcc-internal-format
msgid "%<noreturn%> function returns non-void value"
msgstr ""

#: c-decl.c:4621
#, gcc-internal-format
msgid "cannot inline function %<main%>"
msgstr ""

#: c-decl.c:4668
#, gcc-internal-format
msgid "variable previously declared %<static%> redeclared %<extern%>"
msgstr ""

#: c-decl.c:4678
#, gcc-internal-format
msgid "variable %q+D declared %<inline%>"
msgstr ""

#. A mere warning is sure to result in improper semantics
#. at runtime.  Don't bother to allow this to compile.
#: c-decl.c:4709 cp/decl.c:5991
#, gcc-internal-format
msgid "thread-local storage not supported for this target"
msgstr ""

#: c-decl.c:4774 c-decl.c:5929
#, gcc-internal-format
msgid "function declaration isn%'t a prototype"
msgstr ""

#: c-decl.c:4782
#, gcc-internal-format
msgid "parameter names (without types) in function declaration"
msgstr ""

#: c-decl.c:4815
#, gcc-internal-format
msgid "parameter %u (%q+D) has incomplete type"
msgstr ""

#: c-decl.c:4818
#, gcc-internal-format
msgid "%Jparameter %u has incomplete type"
msgstr ""

#: c-decl.c:4827
#, gcc-internal-format
msgid "parameter %u (%q+D) has void type"
msgstr ""

#: c-decl.c:4830
#, gcc-internal-format
msgid "%Jparameter %u has void type"
msgstr ""

#: c-decl.c:4890
#, gcc-internal-format
msgid "%<void%> as only parameter may not be qualified"
msgstr ""

#: c-decl.c:4894 c-decl.c:4928
#, gcc-internal-format
msgid "%<void%> must be the only parameter"
msgstr ""

#: c-decl.c:4922
#, gcc-internal-format
msgid "parameter %q+D has just a forward declaration"
msgstr ""

#. The %s will be one of 'struct', 'union', or 'enum'.
#: c-decl.c:4967
#, gcc-internal-format
msgid "%<%s %E%> declared inside parameter list"
msgstr ""

#. The %s will be one of 'struct', 'union', or 'enum'.
#: c-decl.c:4971
#, gcc-internal-format
msgid "anonymous %s declared inside parameter list"
msgstr ""

#: c-decl.c:4976
#, gcc-internal-format
msgid ""
"its scope is only this definition or declaration, which is probably not what "
"you want"
msgstr ""

#: c-decl.c:5109
#, gcc-internal-format
msgid "redefinition of %<union %E%>"
msgstr ""

#: c-decl.c:5111
#, gcc-internal-format
msgid "redefinition of %<struct %E%>"
msgstr ""

#: c-decl.c:5116
#, gcc-internal-format
msgid "nested redefinition of %<union %E%>"
msgstr ""

#: c-decl.c:5118
#, gcc-internal-format
msgid "nested redefinition of %<struct %E%>"
msgstr ""

#: c-decl.c:5189 cp/decl.c:3448
#, gcc-internal-format
msgid "declaration does not declare anything"
msgstr ""

#: c-decl.c:5193
#, gcc-internal-format
msgid "ISO C doesn%'t support unnamed structs/unions"
msgstr ""

#: c-decl.c:5236 c-decl.c:5252
#, gcc-internal-format
msgid "duplicate member %q+D"
msgstr ""

#: c-decl.c:5291
#, gcc-internal-format
msgid "union has no named members"
msgstr ""

#: c-decl.c:5293
#, gcc-internal-format
msgid "union has no members"
msgstr ""

#: c-decl.c:5298
#, gcc-internal-format
msgid "struct has no named members"
msgstr ""

#: c-decl.c:5300
#, gcc-internal-format
msgid "struct has no members"
msgstr ""

#: c-decl.c:5357
#, gcc-internal-format
msgid "%Jflexible array member in union"
msgstr ""

#: c-decl.c:5362
#, gcc-internal-format
msgid "%Jflexible array member not at end of struct"
msgstr ""

#: c-decl.c:5367
#, gcc-internal-format
msgid "%Jflexible array member in otherwise empty struct"
msgstr ""

#: c-decl.c:5374
#, gcc-internal-format
msgid "%Jinvalid use of structure with flexible array member"
msgstr ""

#: c-decl.c:5485
#, gcc-internal-format
msgid "union cannot be made transparent"
msgstr ""

#: c-decl.c:5556
#, gcc-internal-format
msgid "nested redefinition of %<enum %E%>"
msgstr ""

#. This enum is a named one that has been declared already.
#: c-decl.c:5563
#, gcc-internal-format
msgid "redeclaration of %<enum %E%>"
msgstr ""

#: c-decl.c:5626
#, gcc-internal-format
msgid "enumeration values exceed range of largest integer"
msgstr ""

#: c-decl.c:5643
#, gcc-internal-format
msgid "specified mode too small for enumeral values"
msgstr ""

#: c-decl.c:5739
#, gcc-internal-format
msgid "enumerator value for %qE is not an integer constant"
msgstr ""

#: c-decl.c:5756
#, gcc-internal-format
msgid "overflow in enumeration values"
msgstr ""

#: c-decl.c:5761
#, gcc-internal-format
msgid "ISO C restricts enumerator values to range of %<int%>"
msgstr ""

#: c-decl.c:5857
#, gcc-internal-format
msgid "return type is an incomplete type"
msgstr ""

#: c-decl.c:5865
#, gcc-internal-format
msgid "return type defaults to %<int%>"
msgstr ""

#: c-decl.c:5936
#, gcc-internal-format
msgid "no previous prototype for %q+D"
msgstr ""

#: c-decl.c:5945
#, gcc-internal-format
msgid "%q+D was used with no prototype before its definition"
msgstr ""

#: c-decl.c:5951
#, gcc-internal-format
msgid "no previous declaration for %q+D"
msgstr ""

#: c-decl.c:5961
#, gcc-internal-format
msgid "%q+D was used with no declaration before its definition"
msgstr ""

#: c-decl.c:5993 c-decl.c:6510
#, gcc-internal-format
msgid "return type of %q+D is not %<int%>"
msgstr ""

#: c-decl.c:6008
#, gcc-internal-format
msgid "first argument of %q+D should be %<int%>"
msgstr ""

#: c-decl.c:6016
#, gcc-internal-format
msgid "second argument of %q+D should be %<char **%>"
msgstr ""

#: c-decl.c:6025
#, gcc-internal-format
msgid "third argument of %q+D should probably be %<char **%>"
msgstr ""

#: c-decl.c:6035
#, gcc-internal-format
msgid "%q+D takes only zero or two arguments"
msgstr ""

#: c-decl.c:6038
#, gcc-internal-format
msgid "%q+D is normally a non-static function"
msgstr ""

#: c-decl.c:6084
#, gcc-internal-format
msgid "%Jold-style parameter declarations in prototyped function definition"
msgstr ""

#: c-decl.c:6098
#, gcc-internal-format
msgid "%Jtraditional C rejects ISO C style function definitions"
msgstr ""

#: c-decl.c:6114
#, gcc-internal-format
msgid "%Jparameter name omitted"
msgstr ""

#: c-decl.c:6148
#, gcc-internal-format
msgid "%Jold-style function definition"
msgstr ""

#: c-decl.c:6157
#, gcc-internal-format
msgid "%Jparameter name missing from parameter list"
msgstr ""

#: c-decl.c:6168
#, gcc-internal-format
msgid "%q+D declared as a non-parameter"
msgstr ""

#: c-decl.c:6173
#, gcc-internal-format
msgid "multiple parameters named %q+D"
msgstr ""

#: c-decl.c:6181
#, gcc-internal-format
msgid "parameter %q+D declared with void type"
msgstr ""

#: c-decl.c:6198 c-decl.c:6200
#, gcc-internal-format
msgid "type of %q+D defaults to %<int%>"
msgstr ""

#: c-decl.c:6219
#, gcc-internal-format
msgid "parameter %q+D has incomplete type"
msgstr ""

#: c-decl.c:6225
#, gcc-internal-format
msgid "declaration for parameter %q+D but no such parameter"
msgstr ""

#: c-decl.c:6275
#, gcc-internal-format
msgid "number of arguments doesn%'t match built-in prototype"
msgstr ""

#: c-decl.c:6279
#, gcc-internal-format
msgid "number of arguments doesn%'t match prototype"
msgstr ""

#: c-decl.c:6280 c-decl.c:6320 c-decl.c:6333
#, gcc-internal-format
msgid "%Hprototype declaration"
msgstr ""

#: c-decl.c:6314
#, gcc-internal-format
msgid "promoted argument %qD doesn%'t match built-in prototype"
msgstr ""

#: c-decl.c:6318
#, gcc-internal-format
msgid "promoted argument %qD doesn%'t match prototype"
msgstr ""

#: c-decl.c:6328
#, gcc-internal-format
msgid "argument %qD doesn%'t match built-in prototype"
msgstr ""

#: c-decl.c:6332
#, gcc-internal-format
msgid "argument %qD doesn%'t match prototype"
msgstr ""

#: c-decl.c:6555 cp/decl.c:10794
#, gcc-internal-format
msgid "no return statement in function returning non-void"
msgstr ""

#: c-decl.c:6564
#, gcc-internal-format
msgid "this function may return with or without a value"
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:6657
#, gcc-internal-format
msgid "%<for%> loop initial declaration used outside C99 mode"
msgstr ""

#: c-decl.c:6686
#, gcc-internal-format
msgid "declaration of static variable %q+D in %<for%> loop initial declaration"
msgstr ""

#: c-decl.c:6689
#, gcc-internal-format
msgid ""
"declaration of %<extern%> variable %q+D in %<for%> loop initial declaration"
msgstr ""

#: c-decl.c:6694
#, gcc-internal-format
msgid "%<struct %E%> declared in %<for%> loop initial declaration"
msgstr ""

#: c-decl.c:6698
#, gcc-internal-format
msgid "%<union %E%> declared in %<for%> loop initial declaration"
msgstr ""

#: c-decl.c:6702
#, gcc-internal-format
msgid "%<enum %E%> declared in %<for%> loop initial declaration"
msgstr ""

#: c-decl.c:6706
#, gcc-internal-format
msgid "declaration of non-variable %q+D in %<for%> loop initial declaration"
msgstr ""

#: c-decl.c:6990 c-decl.c:7141 c-decl.c:7351
#, gcc-internal-format
msgid "duplicate %qE"
msgstr ""

#: c-decl.c:7013 c-decl.c:7150 c-decl.c:7253
#, gcc-internal-format
msgid "two or more data types in declaration specifiers"
msgstr ""

#: c-decl.c:7025 cp/decl.c:6794
#, gcc-internal-format
msgid "%<long long long%> is too long for GCC"
msgstr ""

#: c-decl.c:7032 c-decl.c:7224
#, gcc-internal-format
msgid "both %<long long%> and %<double%> in declaration specifiers"
msgstr ""

#: c-decl.c:7038
#, gcc-internal-format
msgid "ISO C90 does not support %<long long%>"
msgstr ""

#: c-decl.c:7043 c-decl.c:7063
#, gcc-internal-format
msgid "both %<long%> and %<short%> in declaration specifiers"
msgstr ""

#: c-decl.c:7046 c-decl.c:7157
#, gcc-internal-format
msgid "both %<long%> and %<void%> in declaration specifiers"
msgstr ""

#: c-decl.c:7049 c-decl.c:7176
#, gcc-internal-format
msgid "both %<long%> and %<_Bool%> in declaration specifiers"
msgstr ""

#: c-decl.c:7052 c-decl.c:7195
#, gcc-internal-format
msgid "both %<long%> and %<char%> in declaration specifiers"
msgstr ""

#: c-decl.c:7055 c-decl.c:7208
#, gcc-internal-format
msgid "both %<long%> and %<float%> in declaration specifiers"
msgstr ""

#: c-decl.c:7066 c-decl.c:7160
#, gcc-internal-format
msgid "both %<short%> and %<void%> in declaration specifiers"
msgstr ""

#: c-decl.c:7069 c-decl.c:7179
#, gcc-internal-format
msgid "both %<short%> and %<_Bool%> in declaration specifiers"
msgstr ""

#: c-decl.c:7072 c-decl.c:7198
#, gcc-internal-format
msgid "both %<short%> and %<char%> in declaration specifiers"
msgstr ""

#: c-decl.c:7075 c-decl.c:7211
#, gcc-internal-format
msgid "both %<short%> and %<float%> in declaration specifiers"
msgstr ""

#: c-decl.c:7078 c-decl.c:7227
#, gcc-internal-format
msgid "both %<short%> and %<double%> in declaration specifiers"
msgstr ""

#: c-decl.c:7086 c-decl.c:7106
#, gcc-internal-format
msgid "both %<signed%> and %<unsigned%> in declaration specifiers"
msgstr ""

#: c-decl.c:7089 c-decl.c:7163
#, gcc-internal-format
msgid "both %<signed%> and %<void%> in declaration specifiers"
msgstr ""

#: c-decl.c:7092 c-decl.c:7182
#, gcc-internal-format
msgid "both %<signed%> and %<_Bool%> in declaration specifiers"
msgstr ""

#: c-decl.c:7095 c-decl.c:7214
#, gcc-internal-format
msgid "both %<signed%> and %<float%> in declaration specifiers"
msgstr ""

#: c-decl.c:7098 c-decl.c:7230
#, gcc-internal-format
msgid "both %<signed%> and %<double%> in declaration specifiers"
msgstr ""

#: c-decl.c:7109 c-decl.c:7166
#, gcc-internal-format
msgid "both %<unsigned%> and %<void%> in declaration specifiers"
msgstr ""

#: c-decl.c:7112 c-decl.c:7185
#, gcc-internal-format
msgid "both %<unsigned%> and %<_Bool%> in declaration specifiers"
msgstr ""

#: c-decl.c:7115 c-decl.c:7217
#, gcc-internal-format
msgid "both %<unsigned%> and %<float%> in declaration specifiers"
msgstr ""

#: c-decl.c:7118 c-decl.c:7233
#, gcc-internal-format
msgid "both %<unsigned%> and %<double%> in declaration specifiers"
msgstr ""

#: c-decl.c:7126
#, gcc-internal-format
msgid "ISO C90 does not support complex types"
msgstr ""

#: c-decl.c:7128 c-decl.c:7169
#, gcc-internal-format
msgid "both %<complex%> and %<void%> in declaration specifiers"
msgstr ""

#: c-decl.c:7131 c-decl.c:7188
#, gcc-internal-format
msgid "both %<complex%> and %<_Bool%> in declaration specifiers"
msgstr ""

#: c-decl.c:7270
#, gcc-internal-format
msgid "%qE fails to be a typedef or built in type"
msgstr ""

#: c-decl.c:7302
#, gcc-internal-format
msgid "%qE is not at beginning of declaration"
msgstr ""

#: c-decl.c:7316
#, gcc-internal-format
msgid "%<__thread%> used with %<auto%>"
msgstr ""

#: c-decl.c:7318
#, gcc-internal-format
msgid "%<__thread%> used with %<register%>"
msgstr ""

#: c-decl.c:7320
#, gcc-internal-format
msgid "%<__thread%> used with %<typedef%>"
msgstr ""

#: c-decl.c:7331 cp/parser.c:7367
#, gcc-internal-format
msgid "%<__thread%> before %<extern%>"
msgstr ""

#: c-decl.c:7340 cp/parser.c:7357
#, gcc-internal-format
msgid "%<__thread%> before %<static%>"
msgstr ""

#: c-decl.c:7356
#, gcc-internal-format
msgid "multiple storage classes in declaration specifiers"
msgstr ""

#: c-decl.c:7363
#, gcc-internal-format
msgid "%<__thread%> used with %qE"
msgstr ""

#: c-decl.c:7417
#, gcc-internal-format
msgid "ISO C does not support plain %<complex%> meaning %<double complex%>"
msgstr ""

#: c-decl.c:7462 c-decl.c:7488
#, gcc-internal-format
msgid "ISO C does not support complex integer types"
msgstr ""

#: c-decl.c:7563 toplev.c:820
#, gcc-internal-format
msgid "%q+F used but never defined"
msgstr ""

#: c-format.c:97 c-format.c:206
#, gcc-internal-format
msgid "format string has invalid operand number"
msgstr ""

#: c-format.c:114
#, gcc-internal-format
msgid "function does not return string type"
msgstr ""

#: c-format.c:143
#, gcc-internal-format
msgid "format string argument not a string type"
msgstr ""

#: c-format.c:186
#, gcc-internal-format
msgid "unrecognized format specifier"
msgstr ""

#: c-format.c:198
#, gcc-internal-format
msgid "%qE is an unrecognized format function type"
msgstr ""

#: c-format.c:212
#, gcc-internal-format
msgid "%<...%> has invalid operand number"
msgstr ""

#: c-format.c:219
#, gcc-internal-format
msgid "format string argument follows the args to be formatted"
msgstr ""

#: c-format.c:899
#, gcc-internal-format
msgid "function might be possible candidate for %qs format attribute"
msgstr ""

#: c-format.c:991 c-format.c:1012 c-format.c:2026
#, gcc-internal-format
msgid "missing $ operand number in format"
msgstr ""

#: c-format.c:1021
#, gcc-internal-format
msgid "%s does not support %%n$ operand number formats"
msgstr ""

#: c-format.c:1028
#, gcc-internal-format
msgid "operand number out of range in format"
msgstr ""

#: c-format.c:1051
#, gcc-internal-format
msgid "format argument %d used more than once in %s format"
msgstr ""

#: c-format.c:1083
#, gcc-internal-format
msgid "$ operand number used after format without operand number"
msgstr ""

#: c-format.c:1114
#, gcc-internal-format
msgid "format argument %d unused before used argument %d in $-style format"
msgstr ""

#: c-format.c:1209
#, gcc-internal-format
msgid "format not a string literal, format string not checked"
msgstr ""

#: c-format.c:1224 c-format.c:1227
#, gcc-internal-format
msgid "format not a string literal and no format arguments"
msgstr ""

#: c-format.c:1230
#, gcc-internal-format
msgid "format not a string literal, argument types not checked"
msgstr ""

#: c-format.c:1243
#, gcc-internal-format
msgid "too many arguments for format"
msgstr ""

#: c-format.c:1246
#, gcc-internal-format
msgid "unused arguments in $-style format"
msgstr ""

#: c-format.c:1249
#, gcc-internal-format
msgid "zero-length %s format string"
msgstr ""

#: c-format.c:1253
#, gcc-internal-format
msgid "format is a wide character string"
msgstr ""

#: c-format.c:1256
#, gcc-internal-format
msgid "unterminated format string"
msgstr ""

#: c-format.c:1470
#, gcc-internal-format
msgid "embedded %<\\0%> in format"
msgstr ""

#: c-format.c:1485
#, gcc-internal-format
msgid "spurious trailing %<%%%> in format"
msgstr ""

#: c-format.c:1529 c-format.c:1774
#, gcc-internal-format
msgid "repeated %s in format"
msgstr ""

#: c-format.c:1542
#, gcc-internal-format
msgid "missing fill character at end of strfmon format"
msgstr ""

#: c-format.c:1586 c-format.c:1688 c-format.c:1973 c-format.c:2038
#, gcc-internal-format
msgid "too few arguments for format"
msgstr ""

#: c-format.c:1627
#, gcc-internal-format
msgid "zero width in %s format"
msgstr ""

#: c-format.c:1645
#, gcc-internal-format
msgid "empty left precision in %s format"
msgstr ""

#: c-format.c:1718
#, gcc-internal-format
msgid "empty precision in %s format"
msgstr ""

#: c-format.c:1758
#, gcc-internal-format
msgid "%s does not support the %qs %s length modifier"
msgstr ""

#: c-format.c:1808
#, gcc-internal-format
msgid "conversion lacks type at end of format"
msgstr ""

#: c-format.c:1819
#, gcc-internal-format
msgid "unknown conversion type character %qc in format"
msgstr ""

#: c-format.c:1822
#, gcc-internal-format
msgid "unknown conversion type character 0x%x in format"
msgstr ""

#: c-format.c:1829
#, gcc-internal-format
msgid "%s does not support the %<%%%c%> %s format"
msgstr ""

#: c-format.c:1845
#, gcc-internal-format
msgid "%s used with %<%%%c%> %s format"
msgstr ""

#: c-format.c:1854
#, gcc-internal-format
msgid "%s does not support %s"
msgstr ""

#: c-format.c:1864
#, gcc-internal-format
msgid "%s does not support %s with the %<%%%c%> %s format"
msgstr ""

#: c-format.c:1898
#, gcc-internal-format
msgid "%s ignored with %s and %<%%%c%> %s format"
msgstr ""

#: c-format.c:1902
#, gcc-internal-format
msgid "%s ignored with %s in %s format"
msgstr ""

#: c-format.c:1909
#, gcc-internal-format
msgid "use of %s and %s together with %<%%%c%> %s format"
msgstr ""

#: c-format.c:1913
#, gcc-internal-format
msgid "use of %s and %s together in %s format"
msgstr ""

#: c-format.c:1932
#, gcc-internal-format
msgid "%<%%%c%> yields only last 2 digits of year in some locales"
msgstr ""

#: c-format.c:1935
#, gcc-internal-format
msgid "%<%%%c%> yields only last 2 digits of year"
msgstr ""

#. The end of the format string was reached.
#: c-format.c:1952
#, gcc-internal-format
msgid "no closing %<]%> for %<%%[%> format"
msgstr ""

#: c-format.c:1966
#, gcc-internal-format
msgid "use of %qs length modifier with %qc type character"
msgstr ""

#: c-format.c:1988
#, gcc-internal-format
msgid "%s does not support the %<%%%s%c%> %s format"
msgstr ""

#: c-format.c:2005
#, gcc-internal-format
msgid "operand number specified with suppressed assignment"
msgstr ""

#: c-format.c:2008
#, gcc-internal-format
msgid "operand number specified for format taking no argument"
msgstr ""

#: c-format.c:2151
#, gcc-internal-format
msgid "writing through null pointer (argument %d)"
msgstr ""

#: c-format.c:2159
#, gcc-internal-format
msgid "reading through null pointer (argument %d)"
msgstr ""

#: c-format.c:2179
#, gcc-internal-format
msgid "writing into constant object (argument %d)"
msgstr ""

#: c-format.c:2190
#, gcc-internal-format
msgid "extra type qualifiers in format argument (argument %d)"
msgstr ""

#: c-format.c:2301
#, gcc-internal-format
msgid "%s should have type %<%s%s%>, but argument %d has type %qT"
msgstr ""

#: c-format.c:2305
#, gcc-internal-format
msgid "format %q.*s expects type %<%s%s%>, but argument %d has type %qT"
msgstr ""

#: c-format.c:2313
#, gcc-internal-format
msgid "%s should have type %<%T%s%>, but argument %d has type %qT"
msgstr ""

#: c-format.c:2317
#, gcc-internal-format
msgid "format %q.*s expects type %<%T%s%>, but argument %d has type %qT"
msgstr ""

#: c-format.c:2376 c-format.c:2382 c-format.c:2532
#, gcc-internal-format
msgid "%<__gcc_host_wide_int__%> is not defined as a type"
msgstr ""

#: c-format.c:2389 c-format.c:2542
#, gcc-internal-format
msgid "%<__gcc_host_wide_int__%> is not defined as %<long%> or %<long long%>"
msgstr ""

#: c-format.c:2438
#, gcc-internal-format
msgid "%<locus%> is not defined as a type"
msgstr ""

#: c-format.c:2491
#, gcc-internal-format
msgid "%<location_t%> is not defined as a type"
msgstr ""

#: c-format.c:2508
#, gcc-internal-format
msgid "%<tree%> is not defined as a type"
msgstr ""

#: c-format.c:2513
#, gcc-internal-format
msgid "%<tree%> is not defined as a pointer type"
msgstr ""

#: c-format.c:2724
#, gcc-internal-format
msgid "args to be formatted is not %<...%>"
msgstr ""

#: c-format.c:2733
#, gcc-internal-format
msgid "strftime formats cannot format arguments"
msgstr ""

#: c-lex.c:254
#, gcc-internal-format
msgid "badly nested C headers from preprocessor"
msgstr ""

#: c-lex.c:302
#, gcc-internal-format
msgid "%Hignoring #pragma %s %s"
msgstr ""

#. ... or not.
#: c-lex.c:412
#, gcc-internal-format
msgid "%Hstray %<@%> in program"
msgstr ""

#: c-lex.c:426
#, gcc-internal-format
msgid "stray %qs in program"
msgstr ""

#: c-lex.c:436
#, gcc-internal-format
msgid "missing terminating %c character"
msgstr ""

#: c-lex.c:438
#, gcc-internal-format
msgid "stray %qc in program"
msgstr ""

#: c-lex.c:440
#, gcc-internal-format
msgid "stray %<\\%o%> in program"
msgstr ""

#: c-lex.c:601
#, gcc-internal-format
msgid "this decimal constant is unsigned only in ISO C90"
msgstr ""

#: c-lex.c:605
#, gcc-internal-format
msgid "this decimal constant would be unsigned in ISO C90"
msgstr ""

#: c-lex.c:621
#, gcc-internal-format
msgid "integer constant is too large for %qs type"
msgstr ""

#: c-lex.c:687
#, gcc-internal-format
msgid "floating constant exceeds range of %<%s%>"
msgstr ""

#: c-lex.c:770
#, gcc-internal-format
msgid "traditional C rejects string constant concatenation"
msgstr ""

#: c-objc-common.c:81
#, gcc-internal-format
msgid ""
"function %q+F can never be inlined because it is suppressed using -fno-inline"
msgstr ""

#: c-objc-common.c:91
#, gcc-internal-format
msgid ""
"function %q+F can never be inlined because it might not be bound within this "
"unit of translation"
msgstr ""

#: c-objc-common.c:99
#, gcc-internal-format
msgid ""
"function %q+F can never be inlined because it uses attributes conflicting "
"with inlining"
msgstr ""

#: c-opts.c:144
#, gcc-internal-format
msgid "no class name specified with %qs"
msgstr ""

#: c-opts.c:148
#, gcc-internal-format
msgid "assertion missing after %qs"
msgstr ""

#: c-opts.c:153
#, gcc-internal-format
msgid "macro name missing after %qs"
msgstr ""

#: c-opts.c:162
#, gcc-internal-format
msgid "missing path after %qs"
msgstr ""

#: c-opts.c:171
#, gcc-internal-format
msgid "missing filename after %qs"
msgstr ""

#: c-opts.c:176
#, gcc-internal-format
msgid "missing makefile target after %qs"
msgstr ""

#: c-opts.c:303
#, gcc-internal-format
msgid "-I- specified twice"
msgstr ""

#: c-opts.c:306
#, gcc-internal-format
msgid "obsolete option -I- used, please use -iquote instead"
msgstr ""

#: c-opts.c:473
#, gcc-internal-format
msgid "argument %qs to %<-Wnormalized%> not recognized"
msgstr ""

#: c-opts.c:557
#, gcc-internal-format
msgid "switch %qs is no longer supported"
msgstr ""

#: c-opts.c:670
#, gcc-internal-format
msgid ""
"-fhandle-exceptions has been renamed -fexceptions (and is now on by default)"
msgstr ""

#: c-opts.c:848
#, gcc-internal-format
msgid "output filename specified twice"
msgstr ""

#: c-opts.c:985
#, gcc-internal-format
msgid "-Wformat-y2k ignored without -Wformat"
msgstr ""

#: c-opts.c:987
#, gcc-internal-format
msgid "-Wformat-extra-args ignored without -Wformat"
msgstr ""

#: c-opts.c:989
#, gcc-internal-format
msgid "-Wformat-zero-length ignored without -Wformat"
msgstr ""

#: c-opts.c:991
#, gcc-internal-format
msgid "-Wformat-nonliteral ignored without -Wformat"
msgstr ""

#: c-opts.c:993
#, gcc-internal-format
msgid "-Wformat-security ignored without -Wformat"
msgstr ""

#: c-opts.c:1013
#, gcc-internal-format
msgid "opening output file %s: %m"
msgstr ""

#: c-opts.c:1018
#, gcc-internal-format
msgid "too many filenames given.  Type %s --help for usage"
msgstr ""

#: c-opts.c:1104
#, gcc-internal-format
msgid "YYDEBUG was not defined at build time, -dy ignored"
msgstr ""

#: c-opts.c:1150
#, gcc-internal-format
msgid "opening dependency file %s: %m"
msgstr ""

#: c-opts.c:1160
#, gcc-internal-format
msgid "closing dependency file %s: %m"
msgstr ""

#: c-opts.c:1163
#, gcc-internal-format
msgid "when writing output to %s: %m"
msgstr ""

#: c-opts.c:1243
#, gcc-internal-format
msgid "to generate dependencies you must specify either -M or -MM"
msgstr ""

#: c-opts.c:1411
#, gcc-internal-format
msgid "too late for # directive to set debug directory"
msgstr ""

#: c-parser.c:969
#, gcc-internal-format
msgid "ISO C forbids an empty source file"
msgstr ""

#: c-parser.c:1054 c-parser.c:5756
#, gcc-internal-format
msgid "ISO C does not allow extra %<;%> outside of a function"
msgstr ""

#: c-parser.c:1145
#, gcc-internal-format
msgid "expected declaration specifiers"
msgstr ""

#: c-parser.c:1193
#, gcc-internal-format
msgid "data definition has no type or storage class"
msgstr ""

#: c-parser.c:1247
#, gcc-internal-format
msgid "expected %<,%> or %<;%>"
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
#, gcc-internal-format
msgid "expected %<=%>, %<,%>, %<;%>, %<asm%> or %<__attribute__%>"
msgstr ""

#: c-parser.c:1263
#, gcc-internal-format
msgid "ISO C forbids nested functions"
msgstr ""

#: 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:5861
#: c-parser.c:5960
#, gcc-internal-format
msgid "expected identifier"
msgstr ""

#: c-parser.c:1635 cp/parser.c:10165
#, gcc-internal-format
msgid "comma at end of enumerator list"
msgstr ""

#: c-parser.c:1641
#, gcc-internal-format
msgid "expected %<,%> or %<}%>"
msgstr ""

#: c-parser.c:1655 c-parser.c:1825
#, gcc-internal-format
msgid "expected %<{%>"
msgstr ""

#: c-parser.c:1664
#, gcc-internal-format
msgid "ISO C forbids forward references to %<enum%> types"
msgstr ""

#: c-parser.c:1767
#, gcc-internal-format
msgid "expected class name"
msgstr ""

#: c-parser.c:1786 c-parser.c:5513
#, gcc-internal-format
msgid "extra semicolon in struct or union specified"
msgstr ""

#: c-parser.c:1808
#, gcc-internal-format
msgid "no semicolon at end of struct or union"
msgstr ""

#: c-parser.c:1811
#, gcc-internal-format
msgid "expected %<;%>"
msgstr ""

#: c-parser.c:1888 c-parser.c:2815
#, gcc-internal-format
msgid "expected specifier-qualifier-list"
msgstr ""

#: c-parser.c:1898
#, gcc-internal-format
msgid "ISO C forbids member declarations with no members"
msgstr ""

#: c-parser.c:1967
#, gcc-internal-format
msgid "expected %<,%>, %<;%> or %<}%>"
msgstr ""

#: c-parser.c:1974
#, gcc-internal-format
msgid "expected %<:%>, %<,%>, %<;%>, %<}%> or %<__attribute__%>"
msgstr ""

#: c-parser.c:2023
#, gcc-internal-format
msgid "%<typeof%> applied to a bit-field"
msgstr ""

#: c-parser.c:2242
#, gcc-internal-format
msgid "expected identifier or %<(%>"
msgstr ""

#: c-parser.c:2435
#, gcc-internal-format
msgid "ISO C requires a named argument before %<...%>"
msgstr ""

#: c-parser.c:2537
#, gcc-internal-format
msgid "expected declaration specifiers or %<...%>"
msgstr ""

#: c-parser.c:2587
#, gcc-internal-format
msgid "wide string literal in %<asm%>"
msgstr ""

#: c-parser.c:2593
#, gcc-internal-format
msgid "expected string literal"
msgstr ""

#: c-parser.c:2907
#, gcc-internal-format
msgid "ISO C forbids empty initializer braces"
msgstr ""

#: c-parser.c:2952
#, gcc-internal-format
msgid "obsolete use of designated initializer with %<:%>"
msgstr ""

#: c-parser.c:3075
#, gcc-internal-format
msgid "ISO C forbids specifying range of elements to initialize"
msgstr ""

#: c-parser.c:3088
#, gcc-internal-format
msgid "ISO C90 forbids specifying subobject to initialize"
msgstr ""

#: c-parser.c:3096
#, gcc-internal-format
msgid "obsolete use of designated initializer without %<=%>"
msgstr ""

#: c-parser.c:3104
#, gcc-internal-format
msgid "expected %<=%>"
msgstr ""

#: c-parser.c:3241
#, gcc-internal-format
msgid "ISO C forbids label declarations"
msgstr ""

#: c-parser.c:3246 c-parser.c:3255
#, gcc-internal-format
msgid "expected declaration or statement"
msgstr ""

#: c-parser.c:3275 c-parser.c:3303
#, gcc-internal-format
msgid "%HISO C90 forbids mixed declarations and code"
msgstr ""

#: c-parser.c:3319
#, gcc-internal-format
msgid "label at end of compound statement"
msgstr ""

#: c-parser.c:3362
#, gcc-internal-format
msgid "expected %<:%> or %<...%>"
msgstr ""

#: c-parser.c:3498
#, gcc-internal-format
msgid "expected identifier or %<*%>"
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:3560
#, gcc-internal-format
msgid "expected statement"
msgstr ""

#: c-parser.c:3893
#, gcc-internal-format
msgid "%E qualifier ignored on asm"
msgstr ""

#: c-parser.c:4173
#, gcc-internal-format
msgid "ISO C forbids omitting the middle term of a ?: expression"
msgstr ""

#: c-parser.c:4559
#, gcc-internal-format
msgid "traditional C rejects the unary plus operator"
msgstr ""

#: c-parser.c:4672
#, gcc-internal-format
msgid "%<sizeof%> applied to a bit-field"
msgstr ""

#: c-parser.c:4815 c-parser.c:5156 c-parser.c:5178
#, gcc-internal-format
msgid "expected expression"
msgstr ""

#: c-parser.c:4841
#, gcc-internal-format
msgid "braced-group within expression allowed only inside a function"
msgstr ""

#: c-parser.c:4855
#, gcc-internal-format
msgid "ISO C forbids braced-groups within expressions"
msgstr ""

#: c-parser.c:5038
#, gcc-internal-format
msgid "first argument to %<__builtin_choose_expr%> not a constant"
msgstr ""

#: c-parser.c:5205
#, gcc-internal-format
msgid "compound literal has variable size"
msgstr ""

#: c-parser.c:5213
#, gcc-internal-format
msgid "ISO C90 forbids compound literals"
msgstr ""

#: c-parser.c:5724
#, gcc-internal-format
msgid "extra semicolon in method definition specified"
msgstr ""

#: c-pch.c:132
#, gcc-internal-format
msgid "can%'t create precompiled header %s: %m"
msgstr ""

#: c-pch.c:153
#, gcc-internal-format
msgid "can%'t write to %s: %m"
msgstr ""

#: c-pch.c:159
#, gcc-internal-format
msgid "%qs is not a valid output file"
msgstr ""

#: c-pch.c:188 c-pch.c:203 c-pch.c:217
#, gcc-internal-format
msgid "can%'t write %s: %m"
msgstr ""

#: c-pch.c:193 c-pch.c:210
#, gcc-internal-format
msgid "can%'t seek in %s: %m"
msgstr ""

#: c-pch.c:201 c-pch.c:243 c-pch.c:283 c-pch.c:334
#, gcc-internal-format
msgid "can%'t read %s: %m"
msgstr ""

#: c-pch.c:452
#, gcc-internal-format
msgid "malformed #pragma GCC pch_preprocess, ignored"
msgstr ""

#: c-pch.c:458
#, gcc-internal-format
msgid "pch_preprocess pragma should only be used with -fpreprocessed"
msgstr ""

#: c-pch.c:459
#, gcc-internal-format
msgid "use #include instead"
msgstr ""

#: c-pch.c:467
#, gcc-internal-format
msgid "%s: couldn%'t open PCH file: %m"
msgstr ""

#: c-pch.c:472
#, gcc-internal-format
msgid "use -Winvalid-pch for more information"
msgstr ""

#: c-pch.c:473
#, gcc-internal-format
msgid "%s: PCH file was invalid"
msgstr ""

#: c-pragma.c:101
#, gcc-internal-format
msgid "#pragma pack (pop) encountered without matching #pragma pack (push)"
msgstr ""

#: c-pragma.c:114
#, gcc-internal-format
msgid ""
"#pragma pack(pop, %s) encountered without matching #pragma pack(push, %s)"
msgstr ""

#: c-pragma.c:128
#, gcc-internal-format
msgid "#pragma pack(push[, id], <n>) is not supported on this target"
msgstr ""

#: c-pragma.c:130
#, gcc-internal-format
msgid "#pragma pack(pop[, id], <n>) is not supported on this target"
msgstr ""

#: c-pragma.c:151
#, gcc-internal-format
msgid "missing %<(%> after %<#pragma pack%> - ignored"
msgstr ""

#: c-pragma.c:164 c-pragma.c:204
#, gcc-internal-format
msgid "malformed %<#pragma pack%> - ignored"
msgstr ""

#: c-pragma.c:169
#, gcc-internal-format
msgid "malformed %<#pragma pack(push[, id][, <n>])%> - ignored"
msgstr ""

#: c-pragma.c:171
#, gcc-internal-format
msgid "malformed %<#pragma pack(pop[, id])%> - ignored"
msgstr ""

#: c-pragma.c:180
#, gcc-internal-format
msgid "unknown action %qs for %<#pragma pack%> - ignored"
msgstr ""

#: c-pragma.c:207
#, gcc-internal-format
msgid "junk at end of %<#pragma pack%>"
msgstr ""

#: c-pragma.c:210
#, gcc-internal-format
msgid "#pragma pack has no effect with -fpack-struct - ignored"
msgstr ""

#: c-pragma.c:230
#, gcc-internal-format
msgid "alignment must be a small power of two, not %d"
msgstr ""

#: c-pragma.c:263
#, gcc-internal-format
msgid ""
"applying #pragma weak %q+D after first use results in unspecified behavior"
msgstr ""

#: c-pragma.c:337 c-pragma.c:342
#, gcc-internal-format
msgid "malformed #pragma weak, ignored"
msgstr ""

#: c-pragma.c:346
#, gcc-internal-format
msgid "junk at end of #pragma weak"
msgstr ""

#: c-pragma.c:414 c-pragma.c:416
#, gcc-internal-format
msgid "malformed #pragma redefine_extname, ignored"
msgstr ""

#: c-pragma.c:419
#, gcc-internal-format
msgid "junk at end of #pragma redefine_extname"
msgstr ""

#: c-pragma.c:425
#, gcc-internal-format
msgid "#pragma redefine_extname not supported on this target"
msgstr ""

#: c-pragma.c:442 c-pragma.c:529
#, gcc-internal-format
msgid "#pragma redefine_extname ignored due to conflict with previous rename"
msgstr ""

#: c-pragma.c:465
#, gcc-internal-format
msgid ""
"#pragma redefine_extname ignored due to conflict with previous #pragma "
"redefine_extname"
msgstr ""

#: c-pragma.c:484
#, gcc-internal-format
msgid "malformed #pragma extern_prefix, ignored"
msgstr ""

#: c-pragma.c:487
#, gcc-internal-format
msgid "junk at end of #pragma extern_prefix"
msgstr ""

#: c-pragma.c:494
#, gcc-internal-format
msgid "#pragma extern_prefix not supported on this target"
msgstr ""

#: c-pragma.c:520
#, gcc-internal-format
msgid "asm declaration ignored due to conflict with previous rename"
msgstr ""

#: c-pragma.c:551
#, gcc-internal-format
msgid ""
"#pragma redefine_extname ignored due to conflict with __asm__ declaration"
msgstr ""

#: c-pragma.c:616
#, gcc-internal-format
msgid "#pragma GCC visibility must be followed by push or pop"
msgstr ""

#: c-pragma.c:623
#, gcc-internal-format
msgid "no matching push for %<#pragma GCC visibility pop%>"
msgstr ""

#: c-pragma.c:635 c-pragma.c:661
#, gcc-internal-format
msgid "missing %<(%> after %<#pragma GCC visibility push%> - ignored"
msgstr ""

#: c-pragma.c:639
#, gcc-internal-format
msgid "malformed #pragma GCC visibility push"
msgstr ""

#: c-pragma.c:656
#, gcc-internal-format
msgid ""
"#pragma GCC visibility push() must specify default, internal, hidden or "
"protected"
msgstr ""

#: c-pragma.c:665
#, gcc-internal-format
msgid "junk at end of %<#pragma GCC visibility%>"
msgstr ""

#: c-typeck.c:143
#, gcc-internal-format
msgid "%qD has an incomplete type"
msgstr ""

#: c-typeck.c:164 cp/call.c:2696
#, gcc-internal-format
msgid "invalid use of void expression"
msgstr ""

#: c-typeck.c:172
#, gcc-internal-format
msgid "invalid use of flexible array member"
msgstr ""

#: c-typeck.c:178
#, gcc-internal-format
msgid "invalid use of array with unspecified bounds"
msgstr ""

#: c-typeck.c:186
#, gcc-internal-format
msgid "invalid use of undefined type %<%s %E%>"
msgstr ""

#. If this type has a typedef-name, the TYPE_NAME is a TYPE_DECL.
#: c-typeck.c:190
#, gcc-internal-format
msgid "invalid use of incomplete typedef %qD"
msgstr ""

#: c-typeck.c:417 c-typeck.c:442
#, gcc-internal-format
msgid "function types not truly compatible in ISO C"
msgstr ""

#: c-typeck.c:824
#, gcc-internal-format
msgid "types are not quite compatible"
msgstr ""

#: c-typeck.c:1066
#, gcc-internal-format
msgid "function return types not compatible due to %<volatile%>"
msgstr ""

#: c-typeck.c:1225 c-typeck.c:2519
#, gcc-internal-format
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:1651
#, gcc-internal-format
msgid "request for member %qE in something not a structure or union"
msgstr ""

#: c-typeck.c:1682
#, gcc-internal-format
msgid "dereferencing pointer to incomplete type"
msgstr ""

#: c-typeck.c:1686
#, gcc-internal-format
msgid "dereferencing %<void *%> pointer"
msgstr ""

#: c-typeck.c:1703 cp/typeck.c:2128
#, gcc-internal-format
msgid "invalid type argument of %qs"
msgstr ""

#: c-typeck.c:1731 cp/typeck.c:2279
#, gcc-internal-format
msgid "subscripted value is neither array nor pointer"
msgstr ""

#: c-typeck.c:1742 cp/typeck.c:2198 cp/typeck.c:2284
#, gcc-internal-format
msgid "array subscript is not an integer"
msgstr ""

#: c-typeck.c:1748
#, gcc-internal-format
msgid "subscripted value is pointer to function"
msgstr ""

#: c-typeck.c:1761 cp/typeck.c:2194
#, gcc-internal-format
msgid "array subscript has type %<char%>"
msgstr ""

#: c-typeck.c:1801
#, gcc-internal-format
msgid "ISO C forbids subscripting %<register%> array"
msgstr ""

#: c-typeck.c:1803
#, gcc-internal-format
msgid "ISO C90 forbids subscripting non-lvalue array"
msgstr ""

#: c-typeck.c:2045
#, gcc-internal-format
msgid "called object %qE is not a function"
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:2072
#, gcc-internal-format
msgid "function called through a non-compatible type"
msgstr ""

#: c-typeck.c:2179
#, gcc-internal-format
msgid "too many arguments to function %qE"
msgstr ""

#: c-typeck.c:2200
#, gcc-internal-format
msgid "type of formal parameter %d is incomplete"
msgstr ""

#: c-typeck.c:2213
#, gcc-internal-format
msgid ""
"passing argument %d of %qE as integer rather than floating due to prototype"
msgstr ""

#: c-typeck.c:2218
#, gcc-internal-format
msgid ""
"passing argument %d of %qE as integer rather than complex due to prototype"
msgstr ""

#: c-typeck.c:2223
#, gcc-internal-format
msgid ""
"passing argument %d of %qE as complex rather than floating due to prototype"
msgstr ""

#: c-typeck.c:2228
#, gcc-internal-format
msgid ""
"passing argument %d of %qE as floating rather than integer due to prototype"
msgstr ""

#: c-typeck.c:2233
#, gcc-internal-format
msgid ""
"passing argument %d of %qE as complex rather than integer due to prototype"
msgstr ""

#: c-typeck.c:2238
#, gcc-internal-format
msgid ""
"passing argument %d of %qE as floating rather than complex due to prototype"
msgstr ""

#: c-typeck.c:2250
#, gcc-internal-format
msgid ""
"passing argument %d of %qE as %<float%> rather than %<double%> due to "
"prototype"
msgstr ""

#: c-typeck.c:2270
#, gcc-internal-format
msgid "passing argument %d of %qE with different width due to prototype"
msgstr ""

#: c-typeck.c:2293
#, gcc-internal-format
msgid "passing argument %d of %qE as unsigned due to prototype"
msgstr ""

#: c-typeck.c:2297
#, gcc-internal-format
msgid "passing argument %d of %qE as signed due to prototype"
msgstr ""

#: c-typeck.c:2387
#, gcc-internal-format
msgid "suggest parentheses around + or - inside shift"
msgstr ""

#: c-typeck.c:2395
#, gcc-internal-format
msgid "suggest parentheses around && within ||"
msgstr ""

#: c-typeck.c:2405
#, gcc-internal-format
msgid "suggest parentheses around arithmetic in operand of |"
msgstr ""

#: c-typeck.c:2410
#, gcc-internal-format
msgid "suggest parentheses around comparison in operand of |"
msgstr ""

#: c-typeck.c:2420
#, gcc-internal-format
msgid "suggest parentheses around arithmetic in operand of ^"
msgstr ""

#: c-typeck.c:2425
#, gcc-internal-format
msgid "suggest parentheses around comparison in operand of ^"
msgstr ""

#: c-typeck.c:2433
#, gcc-internal-format
msgid "suggest parentheses around + or - in operand of &"
msgstr ""

#: c-typeck.c:2438
#, gcc-internal-format
msgid "suggest parentheses around comparison in operand of &"
msgstr ""

#: c-typeck.c:2444
#, gcc-internal-format
msgid "comparisons like X<=Y<=Z do not have their mathematical meaning"
msgstr ""

#: c-typeck.c:2471
#, gcc-internal-format
msgid "pointer of type %<void *%> used in subtraction"
msgstr ""

#: c-typeck.c:2473
#, gcc-internal-format
msgid "pointer to a function used in subtraction"
msgstr ""

#: c-typeck.c:2570
#, gcc-internal-format
msgid "wrong type argument to unary plus"
msgstr ""

#: c-typeck.c:2583
#, gcc-internal-format
msgid "wrong type argument to unary minus"
msgstr ""

#: c-typeck.c:2600
#, gcc-internal-format
msgid "ISO C does not support %<~%> for complex conjugation"
msgstr ""

#: c-typeck.c:2606
#, gcc-internal-format
msgid "wrong type argument to bit-complement"
msgstr ""

#: c-typeck.c:2614
#, gcc-internal-format
msgid "wrong type argument to abs"
msgstr ""

#: c-typeck.c:2626
#, gcc-internal-format
msgid "wrong type argument to conjugation"
msgstr ""

#: c-typeck.c:2638
#, gcc-internal-format
msgid "wrong type argument to unary exclamation mark"
msgstr ""

#: c-typeck.c:2675
#, gcc-internal-format
msgid "ISO C does not support %<++%> and %<--%> on complex types"
msgstr ""

#: c-typeck.c:2691 c-typeck.c:2723
#, gcc-internal-format
msgid "wrong type argument to increment"
msgstr ""

#: c-typeck.c:2693 c-typeck.c:2725
#, gcc-internal-format
msgid "wrong type argument to decrement"
msgstr ""

#: c-typeck.c:2714
#, gcc-internal-format
msgid "increment of pointer to unknown structure"
msgstr ""

#: c-typeck.c:2716
#, gcc-internal-format
msgid "decrement of pointer to unknown structure"
msgstr ""

#: c-typeck.c:2887
#, gcc-internal-format
msgid "assignment of read-only member %qD"
msgstr ""

#: c-typeck.c:2888
#, gcc-internal-format
msgid "increment of read-only member %qD"
msgstr ""

#: c-typeck.c:2889
#, gcc-internal-format
msgid "decrement of read-only member %qD"
msgstr ""

#: c-typeck.c:2893
#, gcc-internal-format
msgid "assignment of read-only variable %qD"
msgstr ""

#: c-typeck.c:2894
#, gcc-internal-format
msgid "increment of read-only variable %qD"
msgstr ""

#: c-typeck.c:2895
#, gcc-internal-format
msgid "decrement of read-only variable %qD"
msgstr ""

#: c-typeck.c:2898
#, gcc-internal-format
msgid "assignment of read-only location"
msgstr ""

#: c-typeck.c:2899
#, gcc-internal-format
msgid "increment of read-only location"
msgstr ""

#: c-typeck.c:2900
#, gcc-internal-format
msgid "decrement of read-only location"
msgstr ""

#: c-typeck.c:2935
#, gcc-internal-format
msgid "cannot take address of bit-field %qD"
msgstr ""

#: c-typeck.c:2963
#, gcc-internal-format
msgid "global register variable %qD used in nested function"
msgstr ""

#: c-typeck.c:2966
#, gcc-internal-format
msgid "register variable %qD used in nested function"
msgstr ""

#: c-typeck.c:2971
#, gcc-internal-format
msgid "address of global register variable %qD requested"
msgstr ""

#: c-typeck.c:2973
#, gcc-internal-format
msgid "address of register variable %qD requested"
msgstr ""

#: c-typeck.c:3019
#, gcc-internal-format
msgid "non-lvalue array in conditional expression"
msgstr ""

#: c-typeck.c:3063
#, gcc-internal-format
msgid "signed and unsigned type in conditional expression"
msgstr ""

#: c-typeck.c:3070
#, gcc-internal-format
msgid "ISO C forbids conditional expr with only one void side"
msgstr ""

#: c-typeck.c:3086 c-typeck.c:3094
#, gcc-internal-format
msgid "ISO C forbids conditional expr between %<void *%> and function pointer"
msgstr ""

#: c-typeck.c:3101
#, gcc-internal-format
msgid "pointer type mismatch in conditional expression"
msgstr ""

#: c-typeck.c:3108 c-typeck.c:3118
#, gcc-internal-format
msgid "pointer/integer type mismatch in conditional expression"
msgstr ""

#: c-typeck.c:3132
#, gcc-internal-format
msgid "type mismatch in conditional expression"
msgstr ""

#: c-typeck.c:3172
#, gcc-internal-format
msgid "left-hand operand of comma expression has no effect"
msgstr ""

#: c-typeck.c:3206
#, gcc-internal-format
msgid "cast specifies array type"
msgstr ""

#: c-typeck.c:3212
#, gcc-internal-format
msgid "cast specifies function type"
msgstr ""

#: c-typeck.c:3222
#, gcc-internal-format
msgid "ISO C forbids casting nonscalar to the same type"
msgstr ""

#: c-typeck.c:3239
#, gcc-internal-format
msgid "ISO C forbids casts to union type"
msgstr ""

#: c-typeck.c:3247
#, gcc-internal-format
msgid "cast to union type from type not present in union"
msgstr ""

#: c-typeck.c:3293
#, gcc-internal-format
msgid "cast adds new qualifiers to function type"
msgstr ""

#. There are qualifiers present in IN_OTYPE that are not
#. present in IN_TYPE.
#: c-typeck.c:3298
#, gcc-internal-format
msgid "cast discards qualifiers from pointer target type"
msgstr ""

#: c-typeck.c:3314
#, gcc-internal-format
msgid "cast increases required alignment of target type"
msgstr ""

#: c-typeck.c:3321
#, gcc-internal-format
msgid "cast from pointer to integer of different size"
msgstr ""

#: c-typeck.c:3325
#, gcc-internal-format
msgid "cast from function call of type %qT to non-matching type %qT"
msgstr ""

#: c-typeck.c:3333
#, gcc-internal-format
msgid "cast to pointer from integer of different size"
msgstr ""

#: c-typeck.c:3347
#, gcc-internal-format
msgid "type-punning to incomplete type might break strict-aliasing rules"
msgstr ""

#: c-typeck.c:3355
#, gcc-internal-format
msgid "dereferencing type-punned pointer will break strict-aliasing rules"
msgstr ""

#: c-typeck.c:3359
#, gcc-internal-format
msgid "dereferencing type-punned pointer might break strict-aliasing rules"
msgstr ""

#: c-typeck.c:3372
#, gcc-internal-format
msgid "ISO C forbids conversion of function pointer to object pointer type"
msgstr ""

#: c-typeck.c:3381
#, gcc-internal-format
msgid "ISO C forbids conversion of object pointer to function pointer type"
msgstr ""

#: c-typeck.c:3652
#, gcc-internal-format
msgid "cannot pass rvalue to reference parameter"
msgstr ""

#: c-typeck.c:3761 c-typeck.c:3927
#, gcc-internal-format
msgid ""
"passing argument %d of %qE makes qualified function pointer from unqualified"
msgstr ""

#: c-typeck.c:3764 c-typeck.c:3930
#, gcc-internal-format
msgid "assignment makes qualified function pointer from unqualified"
msgstr ""

#: c-typeck.c:3767 c-typeck.c:3932
#, gcc-internal-format
msgid "initialization makes qualified function pointer from unqualified"
msgstr ""

#: c-typeck.c:3770 c-typeck.c:3934
#, gcc-internal-format
msgid "return makes qualified function pointer from unqualified"
msgstr ""

#: c-typeck.c:3774 c-typeck.c:3894
#, gcc-internal-format
msgid "passing argument %d of %qE discards qualifiers from pointer target type"
msgstr ""

#: c-typeck.c:3776 c-typeck.c:3896
#, gcc-internal-format
msgid "assignment discards qualifiers from pointer target type"
msgstr ""

#: c-typeck.c:3778 c-typeck.c:3898
#, gcc-internal-format
msgid "initialization discards qualifiers from pointer target type"
msgstr ""

#: c-typeck.c:3780 c-typeck.c:3900
#, gcc-internal-format
msgid "return discards qualifiers from pointer target type"
msgstr ""

#: c-typeck.c:3785
#, gcc-internal-format
msgid "ISO C prohibits argument conversion to union type"
msgstr ""

#: c-typeck.c:3820
#, gcc-internal-format
msgid "request for implicit conversion from %qT to %qT not permitted in C++"
msgstr ""

#: c-typeck.c:3833
#, gcc-internal-format
msgid "argument %d of %qE might be a candidate for a format attribute"
msgstr ""

#: c-typeck.c:3839
#, gcc-internal-format
msgid "assignment left-hand side might be a candidate for a format attribute"
msgstr ""

#: c-typeck.c:3844
#, gcc-internal-format
msgid ""
"initialization left-hand side might be a candidate for a format attribute"
msgstr ""

#: c-typeck.c:3849
#, gcc-internal-format
msgid "return type might be a candidate for a format attribute"
msgstr ""

#: c-typeck.c:3874
#, gcc-internal-format
msgid ""
"ISO C forbids passing argument %d of %qE between function pointer and %<void "
"*%>"
msgstr ""

#: c-typeck.c:3877
#, gcc-internal-format
msgid "ISO C forbids assignment between function pointer and %<void *%>"
msgstr ""

#: c-typeck.c:3879
#, gcc-internal-format
msgid "ISO C forbids initialization between function pointer and %<void *%>"
msgstr ""

#: c-typeck.c:3881
#, gcc-internal-format
msgid "ISO C forbids return between function pointer and %<void *%>"
msgstr ""

#: c-typeck.c:3910
#, gcc-internal-format
msgid "pointer targets in passing argument %d of %qE differ in signedness"
msgstr ""

#: c-typeck.c:3912
#, gcc-internal-format
msgid "pointer targets in assignment differ in signedness"
msgstr ""

#: c-typeck.c:3914
#, gcc-internal-format
msgid "pointer targets in initialization differ in signedness"
msgstr ""

#: c-typeck.c:3916
#, gcc-internal-format
msgid "pointer targets in return differ in signedness"
msgstr ""

#: c-typeck.c:3941
#, gcc-internal-format
msgid "passing argument %d of %qE from incompatible pointer type"
msgstr ""

#: c-typeck.c:3943
#, gcc-internal-format
msgid "assignment from incompatible pointer type"
msgstr ""

#: c-typeck.c:3944
#, gcc-internal-format
msgid "initialization from incompatible pointer type"
msgstr ""

#: c-typeck.c:3946
#, gcc-internal-format
msgid "return from incompatible pointer type"
msgstr ""

#: c-typeck.c:3968
#, gcc-internal-format
msgid "passing argument %d of %qE makes pointer from integer without a cast"
msgstr ""

#: c-typeck.c:3970
#, gcc-internal-format
msgid "assignment makes pointer from integer without a cast"
msgstr ""

#: c-typeck.c:3972
#, gcc-internal-format
msgid "initialization makes pointer from integer without a cast"
msgstr ""

#: c-typeck.c:3974
#, gcc-internal-format
msgid "return makes pointer from integer without a cast"
msgstr ""

#: c-typeck.c:3981
#, gcc-internal-format
msgid "passing argument %d of %qE makes integer from pointer without a cast"
msgstr ""

#: c-typeck.c:3983
#, gcc-internal-format
msgid "assignment makes integer from pointer without a cast"
msgstr ""

#: c-typeck.c:3985
#, gcc-internal-format
msgid "initialization makes integer from pointer without a cast"
msgstr ""

#: c-typeck.c:3987
#, gcc-internal-format
msgid "return makes integer from pointer without a cast"
msgstr ""

#: c-typeck.c:4003
#, gcc-internal-format
msgid "incompatible types in assignment"
msgstr ""

#: c-typeck.c:4006
#, gcc-internal-format
msgid "incompatible types in initialization"
msgstr ""

#: c-typeck.c:4009
#, gcc-internal-format
msgid "incompatible types in return"
msgstr ""

#: c-typeck.c:4090
#, gcc-internal-format
msgid "traditional C rejects automatic aggregate initialization"
msgstr ""

#: c-typeck.c:4258 c-typeck.c:4273 c-typeck.c:4288
#, gcc-internal-format
msgid "(near initialization for %qs)"
msgstr ""

#: c-typeck.c:4825 cp/decl.c:4543
#, gcc-internal-format
msgid "opaque vector types cannot be initialized"
msgstr ""

#: c-typeck.c:5455
#, gcc-internal-format
msgid "unknown field %qE specified in initializer"
msgstr ""

#: c-typeck.c:6349
#, gcc-internal-format
msgid "traditional C rejects initialization of unions"
msgstr ""

#: c-typeck.c:6651
#, gcc-internal-format
msgid "jump into statement expression"
msgstr ""

#: c-typeck.c:6657
#, gcc-internal-format
msgid "jump into scope of identifier with variably modified type"
msgstr ""

#: c-typeck.c:6694
#, gcc-internal-format
msgid "ISO C forbids %<goto *expr;%>"
msgstr ""

#: c-typeck.c:6708 cp/typeck.c:6129
#, gcc-internal-format
msgid "function declared %<noreturn%> has a %<return%> statement"
msgstr ""

#: c-typeck.c:6715
#, gcc-internal-format
msgid "%<return%> with no value, in function returning non-void"
msgstr ""

#: c-typeck.c:6722
#, gcc-internal-format
msgid "%<return%> with a value, in function returning void"
msgstr ""

#: c-typeck.c:6779
#, gcc-internal-format
msgid "function returns address of local variable"
msgstr ""

#: c-typeck.c:6850 cp/semantics.c:906
#, gcc-internal-format
msgid "switch quantity not an integer"
msgstr ""

#: c-typeck.c:6861
#, gcc-internal-format
msgid "%<long%> switch expression not converted to %<int%> in ISO C"
msgstr ""

#: c-typeck.c:6902
#, gcc-internal-format
msgid ""
"case label in statement expression not containing enclosing switch statement"
msgstr ""

#: c-typeck.c:6905
#, gcc-internal-format
msgid ""
"%<default%> label in statement expression not containing enclosing switch "
"statement"
msgstr ""

#: c-typeck.c:6911
#, gcc-internal-format
msgid ""
"case label in scope of identifier with variably modified type not containing "
"enclosing switch statement"
msgstr ""

#: c-typeck.c:6914
#, gcc-internal-format
msgid ""
"%<default%> label in scope of identifier with variably modified type not "
"containing enclosing switch statement"
msgstr ""

#: c-typeck.c:6918 cp/parser.c:6191
#, gcc-internal-format
msgid "case label not within a switch statement"
msgstr ""

#: c-typeck.c:6920
#, gcc-internal-format
msgid "%<default%> label not within a switch statement"
msgstr ""

#: c-typeck.c:6997
#, gcc-internal-format
msgid "%Hsuggest explicit braces to avoid ambiguous %<else%>"
msgstr ""

#: c-typeck.c:7016
#, gcc-internal-format
msgid "%Hempty body in an if-statement"
msgstr ""

#: c-typeck.c:7025
#, gcc-internal-format
msgid "%Hempty body in an else-statement"
msgstr ""

#: c-typeck.c:7134 cp/cp-gimplify.c:118 cp/parser.c:6683
#, gcc-internal-format
msgid "break statement not within loop or switch"
msgstr ""

#: c-typeck.c:7136 cp/parser.c:6694
#, gcc-internal-format
msgid "continue statement not within a loop"
msgstr ""

#: c-typeck.c:7156
#, gcc-internal-format
msgid "%Hstatement with no effect"
msgstr ""

#: c-typeck.c:7178
#, gcc-internal-format
msgid "expression statement has incomplete type"
msgstr ""

#: c-typeck.c:7636 c-typeck.c:7677
#, gcc-internal-format
msgid "division by zero"
msgstr ""

#: c-typeck.c:7722 cp/typeck.c:2967
#, gcc-internal-format
msgid "right shift count is negative"
msgstr ""

#: c-typeck.c:7729 cp/typeck.c:2973
#, gcc-internal-format
msgid "right shift count >= width of type"
msgstr ""

#: c-typeck.c:7750 cp/typeck.c:2992
#, gcc-internal-format
msgid "left shift count is negative"
msgstr ""

#: c-typeck.c:7753 cp/typeck.c:2994
#, gcc-internal-format
msgid "left shift count >= width of type"
msgstr ""

#: c-typeck.c:7771 cp/typeck.c:3029
#, gcc-internal-format
msgid "comparing floating point with == or != is unsafe"
msgstr ""

#: c-typeck.c:7795 c-typeck.c:7802
#, gcc-internal-format
msgid "ISO C forbids comparison of %<void *%> with function pointer"
msgstr ""

#: c-typeck.c:7808 c-typeck.c:7854
#, gcc-internal-format
msgid "comparison of distinct pointer types lacks a cast"
msgstr ""

#: c-typeck.c:7822 c-typeck.c:7827 c-typeck.c:7874 c-typeck.c:7879
#, gcc-internal-format
msgid "comparison between pointer and integer"
msgstr ""

#: c-typeck.c:7846
#, gcc-internal-format
msgid "comparison of complete and incomplete pointers"
msgstr ""

#: c-typeck.c:7849
#, gcc-internal-format
msgid "ISO C forbids ordered comparisons of pointers to functions"
msgstr ""

#: c-typeck.c:7862 c-typeck.c:7869
#, gcc-internal-format
msgid "ordered comparison of pointer with integer zero"
msgstr ""

#: c-typeck.c:8099
#, gcc-internal-format
msgid "comparison between signed and unsigned"
msgstr ""

#: c-typeck.c:8145 cp/typeck.c:3452
#, gcc-internal-format
msgid "comparison of promoted ~unsigned with constant"
msgstr ""

#: c-typeck.c:8153 cp/typeck.c:3460
#, gcc-internal-format
msgid "comparison of promoted ~unsigned with unsigned"
msgstr ""

#: c-typeck.c:8211
#, gcc-internal-format
msgid "used array that cannot be converted to pointer where scalar is required"
msgstr ""

#: c-typeck.c:8215
#, gcc-internal-format
msgid "used struct type value where scalar is required"
msgstr ""

#: c-typeck.c:8219
#, gcc-internal-format
msgid "used union type value where scalar is required"
msgstr ""

#: calls.c:1906
#, gcc-internal-format
msgid "function call has aggregate value"
msgstr ""

#: cfgexpand.c:1494
#, gcc-internal-format
msgid "not protecting local variables: variable length buffer"
msgstr ""

#: cfgexpand.c:1496
#, gcc-internal-format
msgid "not protecting function: no buffer at least %d bytes long"
msgstr ""

#: cfghooks.c:90
#, gcc-internal-format
msgid "bb %d on wrong place"
msgstr ""

#: cfghooks.c:96
#, gcc-internal-format
msgid "prev_bb of %d should be %d, not %d"
msgstr ""

#: cfghooks.c:113
#, gcc-internal-format
msgid "verify_flow_info: Wrong count of block %i %i"
msgstr ""

#: cfghooks.c:119
#, gcc-internal-format
msgid "verify_flow_info: Wrong frequency of block %i %i"
msgstr ""

#: cfghooks.c:127
#, gcc-internal-format
msgid "verify_flow_info: Duplicate edge %i->%i"
msgstr ""

#: cfghooks.c:133
#, gcc-internal-format
msgid "verify_flow_info: Wrong probability of edge %i->%i %i"
msgstr ""

#: cfghooks.c:139
#, gcc-internal-format
msgid "verify_flow_info: Wrong count of edge %i->%i %i"
msgstr ""

#: cfghooks.c:151
#, gcc-internal-format
msgid "verify_flow_info: Basic block %d succ edge is corrupted"
msgstr ""

#: cfghooks.c:165 cfgrtl.c:2051
#, gcc-internal-format
msgid "wrong amount of branch edges after unconditional jump %i"
msgstr ""

#: cfghooks.c:173 cfghooks.c:184
#, gcc-internal-format
msgid "basic block %d pred edge is corrupted"
msgstr ""

#: cfghooks.c:185
#, gcc-internal-format
msgid "its dest_idx should be %d, not %d"
msgstr ""

#: cfghooks.c:214
#, gcc-internal-format
msgid "basic block %i edge lists are corrupted"
msgstr ""

#: cfghooks.c:227
#, gcc-internal-format
msgid "verify_flow_info failed"
msgstr ""

#: cfghooks.c:288
#, gcc-internal-format
msgid "%s does not support redirect_edge_and_branch"
msgstr ""

#: cfghooks.c:306
#, gcc-internal-format
msgid "%s does not support redirect_edge_and_branch_force"
msgstr ""

#: cfghooks.c:324
#, gcc-internal-format
msgid "%s does not support split_block"
msgstr ""

#: cfghooks.c:360
#, gcc-internal-format
msgid "%s does not support move_block_after"
msgstr ""

#: cfghooks.c:373
#, gcc-internal-format
msgid "%s does not support delete_basic_block"
msgstr ""

#: cfghooks.c:405
#, gcc-internal-format
msgid "%s does not support split_edge"
msgstr ""

#: cfghooks.c:466
#, gcc-internal-format
msgid "%s does not support create_basic_block"
msgstr ""

#: cfghooks.c:494
#, gcc-internal-format
msgid "%s does not support can_merge_blocks_p"
msgstr ""

#: cfghooks.c:505
#, gcc-internal-format
msgid "%s does not support predict_edge"
msgstr ""

#: cfghooks.c:514
#, gcc-internal-format
msgid "%s does not support predicted_by_p"
msgstr ""

#: cfghooks.c:528
#, gcc-internal-format
msgid "%s does not support merge_blocks"
msgstr ""

#: cfghooks.c:573
#, gcc-internal-format
msgid "%s does not support make_forwarder_block"
msgstr ""

#: cfghooks.c:678
#, gcc-internal-format
msgid "%s does not support can_duplicate_block_p"
msgstr ""

#: cfghooks.c:705
#, gcc-internal-format
msgid "%s does not support duplicate_block"
msgstr ""

#: cfghooks.c:771
#, gcc-internal-format
msgid "%s does not support block_ends_with_call_p"
msgstr ""

#: cfghooks.c:782
#, gcc-internal-format
msgid "%s does not support block_ends_with_condjump_p"
msgstr ""

#: cfghooks.c:800
#, gcc-internal-format
msgid "%s does not support flow_call_edges_add"
msgstr ""

#: cfgloop.c:1088
#, gcc-internal-format
msgid "size of loop %d should be %d, not %d"
msgstr ""

#: cfgloop.c:1105
#, gcc-internal-format
msgid "bb %d do not belong to loop %d"
msgstr ""

#: cfgloop.c:1122
#, gcc-internal-format
msgid "loop %d's header does not have exactly 2 entries"
msgstr ""

#: cfgloop.c:1129
#, gcc-internal-format
msgid "loop %d's latch does not have exactly 1 successor"
msgstr ""

#: cfgloop.c:1134
#, gcc-internal-format
msgid "loop %d's latch does not have header as successor"
msgstr ""

#: cfgloop.c:1139
#, gcc-internal-format
msgid "loop %d's latch does not belong directly to it"
msgstr ""

#: cfgloop.c:1145
#, gcc-internal-format
msgid "loop %d's header does not belong directly to it"
msgstr ""

#: cfgloop.c:1151
#, gcc-internal-format
msgid "loop %d's latch is marked as part of irreducible region"
msgstr ""

#: cfgloop.c:1184
#, gcc-internal-format
msgid "basic block %d should be marked irreducible"
msgstr ""

#: cfgloop.c:1190
#, gcc-internal-format
msgid "basic block %d should not be marked irreducible"
msgstr ""

#: cfgloop.c:1198
#, gcc-internal-format
msgid "edge from %d to %d should be marked irreducible"
msgstr ""

#: cfgloop.c:1205
#, gcc-internal-format
msgid "edge from %d to %d should not be marked irreducible"
msgstr ""

#: cfgloop.c:1240
#, gcc-internal-format
msgid "wrong single exit %d->%d recorded for loop %d"
msgstr ""

#: cfgloop.c:1244
#, gcc-internal-format
msgid "right exit is %d->%d"
msgstr ""

#: cfgloop.c:1261
#, gcc-internal-format
msgid "single exit not recorded for loop %d"
msgstr ""

#: cfgloop.c:1268
#, gcc-internal-format
msgid "loop %d should not have single exit (%d -> %d)"
msgstr ""

#: cfgrtl.c:1937
#, gcc-internal-format
msgid "BB_RTL flag not set for block %d"
msgstr ""

#: cfgrtl.c:1943
#, gcc-internal-format
msgid "end insn %d for block %d not found in the insn stream"
msgstr ""

#: cfgrtl.c:1957
#, gcc-internal-format
msgid "insn %d is in multiple basic blocks (%d and %d)"
msgstr ""

#: cfgrtl.c:1969
#, gcc-internal-format
msgid "head insn %d for block %d not found in the insn stream"
msgstr ""

#: cfgrtl.c:1993
#, gcc-internal-format
msgid "verify_flow_info: REG_BR_PROB does not match cfg %wi %i"
msgstr ""

#: cfgrtl.c:2008
#, gcc-internal-format
msgid "fallthru edge crosses section boundary (bb %i)"
msgstr ""

#: cfgrtl.c:2033
#, gcc-internal-format
msgid "missing REG_EH_REGION note in the end of bb %i"
msgstr ""

#: cfgrtl.c:2041
#, gcc-internal-format
msgid "too many outgoing branch edges from bb %i"
msgstr ""

#: cfgrtl.c:2046
#, gcc-internal-format
msgid "fallthru edge after unconditional jump %i"
msgstr ""

#: cfgrtl.c:2057
#, gcc-internal-format
msgid "wrong amount of branch edges after conditional jump %i"
msgstr ""

#: cfgrtl.c:2062
#, gcc-internal-format
msgid "call edges for non-call insn in bb %i"
msgstr ""

#: cfgrtl.c:2071
#, gcc-internal-format
msgid "abnormal edges for no purpose in bb %i"
msgstr ""

#: cfgrtl.c:2083
#, gcc-internal-format
msgid "insn %d inside basic block %d but block_for_insn is NULL"
msgstr ""

#: cfgrtl.c:2087
#, gcc-internal-format
msgid "insn %d inside basic block %d but block_for_insn is %i"
msgstr ""

#: cfgrtl.c:2101 cfgrtl.c:2111
#, gcc-internal-format
msgid "NOTE_INSN_BASIC_BLOCK is missing for block %d"
msgstr ""

#: cfgrtl.c:2124
#, gcc-internal-format
msgid "NOTE_INSN_BASIC_BLOCK %d in middle of basic block %d"
msgstr ""

#: cfgrtl.c:2134
#, gcc-internal-format
msgid "in basic block %d:"
msgstr ""

#: cfgrtl.c:2171
#, gcc-internal-format
msgid "bb prediction set for block %i, but it is not used in RTL land"
msgstr ""

#: cfgrtl.c:2189
#, gcc-internal-format
msgid "missing barrier after block %i"
msgstr ""

#: cfgrtl.c:2202
#, gcc-internal-format
msgid "verify_flow_info: Incorrect blocks for fallthru %i->%i"
msgstr ""

#: cfgrtl.c:2211
#, gcc-internal-format
msgid "verify_flow_info: Incorrect fallthru %i->%i"
msgstr ""

#: cfgrtl.c:2230
#, gcc-internal-format
msgid "basic blocks not laid down consecutively"
msgstr ""

#: cfgrtl.c:2269
#, gcc-internal-format
msgid "number of bb notes in insn chain (%d) != n_basic_blocks (%d)"
msgstr ""

#: cgraph.c:763
#, gcc-internal-format
msgid "%D renamed after being referenced in assembly"
msgstr ""

#: cgraphunit.c:656
#, gcc-internal-format
msgid "aux field set for edge %s->%s"
msgstr ""

#: cgraphunit.c:668
#, gcc-internal-format
msgid "inlined_to pointer is wrong"
msgstr ""

#: cgraphunit.c:673
#, gcc-internal-format
msgid "multiple inline callers"
msgstr ""

#: cgraphunit.c:680
#, gcc-internal-format
msgid "inlined_to pointer set for noninline callers"
msgstr ""

#: cgraphunit.c:686
#, gcc-internal-format
msgid "inlined_to pointer is set but no predecesors found"
msgstr ""

#: cgraphunit.c:691
#, gcc-internal-format
msgid "inlined_to pointer refers to itself"
msgstr ""

#: cgraphunit.c:701
#, gcc-internal-format
msgid "node not found in DECL_ASSEMBLER_NAME hash"
msgstr ""

#: cgraphunit.c:729
#, gcc-internal-format
msgid "shared call_stmt:"
msgstr ""

#: cgraphunit.c:735
#, gcc-internal-format
msgid "edge points to wrong declaration:"
msgstr ""

#: cgraphunit.c:744
#, gcc-internal-format
msgid "missing callgraph edge for call stmt:"
msgstr ""

#: cgraphunit.c:761
#, gcc-internal-format
msgid "edge %s->%s has no corresponding call_stmt"
msgstr ""

#: cgraphunit.c:773
#, gcc-internal-format
msgid "verify_cgraph_node failed"
msgstr ""

#: cgraphunit.c:1010
#, gcc-internal-format
msgid "failed to reclaim unneeded function"
msgstr ""

#: cgraphunit.c:1290
#, gcc-internal-format
msgid "nodes with no released memory found"
msgstr ""

#: collect2.c:1172
#, gcc-internal-format
msgid "unknown demangling style '%s'"
msgstr ""

#: collect2.c:1495
#, gcc-internal-format
msgid "%s terminated with signal %d [%s]%s"
msgstr ""

#: collect2.c:1513
#, gcc-internal-format
msgid "%s returned %d exit status"
msgstr ""

#: collect2.c:2175
#, gcc-internal-format
msgid "cannot find 'ldd'"
msgstr ""

#: convert.c:65
#, gcc-internal-format
msgid "cannot convert to a pointer type"
msgstr ""

#: convert.c:298
#, gcc-internal-format
msgid "pointer value used where a floating point value was expected"
msgstr ""

#: convert.c:302
#, gcc-internal-format
msgid "aggregate value used where a float was expected"
msgstr ""

#: convert.c:327
#, gcc-internal-format
msgid "conversion to incomplete type"
msgstr ""

#: convert.c:684 convert.c:760
#, gcc-internal-format
msgid "can't convert between vector values of different size"
msgstr ""

#: convert.c:690
#, gcc-internal-format
msgid "aggregate value used where an integer was expected"
msgstr ""

#: convert.c:740
#, gcc-internal-format
msgid "pointer value used where a complex was expected"
msgstr ""

#: convert.c:744
#, gcc-internal-format
msgid "aggregate value used where a complex was expected"
msgstr ""

#: convert.c:766
#, gcc-internal-format
msgid "can't convert value to a vector"
msgstr ""

#: coverage.c:183
#, gcc-internal-format
msgid "%qs is not a gcov data file"
msgstr ""

#: coverage.c:194
#, gcc-internal-format
msgid "%qs is version %q.*s, expected version %q.*s"
msgstr ""

#: coverage.c:274 coverage.c:282
#, gcc-internal-format
msgid "coverage mismatch for function %u while reading execution counters"
msgstr ""

#: coverage.c:276 coverage.c:359
#, gcc-internal-format
msgid "checksum is %x instead of %x"
msgstr ""

#: coverage.c:284 coverage.c:367
#, gcc-internal-format
msgid "number of counters is %d instead of %d"
msgstr ""

#: coverage.c:290
#, gcc-internal-format
msgid "cannot merge separate %s counters for function %u"
msgstr ""

#: coverage.c:311
#, gcc-internal-format
msgid "%qs has overflowed"
msgstr ""

#: coverage.c:311
#, gcc-internal-format
msgid "%qs is corrupted"
msgstr ""

#: coverage.c:348
#, gcc-internal-format
msgid "no coverage for function %qs found"
msgstr ""

#: coverage.c:356 coverage.c:364
#, gcc-internal-format
msgid "coverage mismatch for function %qs while reading counter %qs"
msgstr ""

#: coverage.c:523
#, gcc-internal-format
msgid "cannot open %s"
msgstr ""

#: coverage.c:558
#, gcc-internal-format
msgid "error writing %qs"
msgstr ""

#: diagnostic.c:590
#, gcc-internal-format
msgid "in %s, at %s:%d"
msgstr ""

#: dominance.c:855
#, gcc-internal-format
msgid "dominator of %d status unknown"
msgstr ""

#: dominance.c:857
#, gcc-internal-format
msgid "dominator of %d should be %d, not %d"
msgstr ""

#: dominance.c:869
#, gcc-internal-format
msgid "ENTRY does not dominate bb %d"
msgstr ""

#: dwarf2out.c:3451
#, gcc-internal-format
msgid "DW_LOC_OP %s not implemented"
msgstr ""

#: emit-rtl.c:2221
#, gcc-internal-format
msgid "invalid rtl sharing found in the insn"
msgstr ""

#: emit-rtl.c:2223
#, gcc-internal-format
msgid "shared rtx"
msgstr ""

#: emit-rtl.c:2225 flow.c:495 flow.c:520 flow.c:542
#, gcc-internal-format
msgid "internal consistency failure"
msgstr ""

#: emit-rtl.c:3289
#, gcc-internal-format
msgid "ICE: emit_insn used where emit_jump_insn needed:\n"
msgstr ""

#: errors.c:133 java/jv-scan.c:289
#, gcc-internal-format
msgid "abort in %s, at %s:%d"
msgstr ""

#: except.c:333
#, gcc-internal-format
msgid "exception handling disabled, use -fexceptions to enable"
msgstr ""

#: except.c:2759
#, gcc-internal-format
msgid "argument of %<__builtin_eh_return_regno%> must be constant"
msgstr ""

#: except.c:2890
#, gcc-internal-format
msgid "__builtin_eh_return not supported on this target"
msgstr ""

#: except.c:3740 except.c:3749
#, gcc-internal-format
msgid "region_array is corrupted for region %i"
msgstr ""

#: except.c:3754
#, gcc-internal-format
msgid "outer block of region %i is wrong"
msgstr ""

#: except.c:3759
#, gcc-internal-format
msgid "region %i may contain throw and is contained in region that may not"
msgstr ""

#: except.c:3765
#, gcc-internal-format
msgid "negative nesting depth of region %i"
msgstr ""

#: except.c:3785
#, gcc-internal-format
msgid "tree list ends on depth %i"
msgstr ""

#: except.c:3790
#, gcc-internal-format
msgid "array does not match the region tree"
msgstr ""

#: except.c:3796
#, gcc-internal-format
msgid "verify_eh_tree failed"
msgstr ""

#: explow.c:1212
#, gcc-internal-format
msgid "stack limits not supported on this target"
msgstr ""

#: fold-const.c:3309 fold-const.c:3320
#, gcc-internal-format
msgid "comparison is always %d due to width of bit-field"
msgstr ""

#: fold-const.c:4903 fold-const.c:4918
#, gcc-internal-format
msgid "comparison is always %d"
msgstr ""

#: fold-const.c:5047
#, gcc-internal-format
msgid "%<or%> of unmatched not-equal tests is always 1"
msgstr ""

#: fold-const.c:5052
#, gcc-internal-format
msgid "%<and%> of mutually exclusive equal-tests is always 0"
msgstr ""

#: fold-const.c:10272
#, gcc-internal-format
msgid "fold check: original tree changed by fold"
msgstr ""

#: function.c:823 varasm.c:1669
#, gcc-internal-format
msgid "size of variable %q+D is too large"
msgstr ""

#: function.c:1532
#, gcc-internal-format
msgid "impossible constraint in %<asm%>"
msgstr ""

#: function.c:3473
#, gcc-internal-format
msgid "variable %q+D might be clobbered by %<longjmp%> or %<vfork%>"
msgstr ""

#: function.c:3494
#, gcc-internal-format
msgid "argument %q+D might be clobbered by %<longjmp%> or %<vfork%>"
msgstr ""

#: function.c:3889
#, gcc-internal-format
msgid "function returns an aggregate"
msgstr ""

#: function.c:4317
#, gcc-internal-format
msgid "unused parameter %q+D"
msgstr ""

#: gcc.c:1244
#, gcc-internal-format
msgid "ambiguous abbreviation %s"
msgstr ""

#: gcc.c:1271
#, gcc-internal-format
msgid "incomplete '%s' option"
msgstr ""

#: gcc.c:1282
#, gcc-internal-format
msgid "missing argument to '%s' option"
msgstr ""

#: gcc.c:1295
#, gcc-internal-format
msgid "extraneous argument to '%s' option"
msgstr ""

#: gcc.c:3799
#, gcc-internal-format
msgid "warning: -pipe ignored because -save-temps specified"
msgstr ""

#: gcc.c:4100
#, gcc-internal-format
msgid "warning: '-x %s' after last input file has no effect"
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:5169
#, gcc-internal-format
msgid "spec failure: '%%*' has not been initialized by pattern match"
msgstr ""

#: gcc.c:5178
#, gcc-internal-format
msgid "warning: use of obsolete %%[ operator in specs"
msgstr ""

#: gcc.c:5259
#, gcc-internal-format
msgid "spec failure: unrecognized spec option '%c'"
msgstr ""

#: gcc.c:6183
#, gcc-internal-format
msgid "spec failure: more than one arg to SYSROOT_SUFFIX_SPEC"
msgstr ""

#: gcc.c:6206
#, gcc-internal-format
msgid "spec failure: more than one arg to SYSROOT_HEADERS_SUFFIX_SPEC"
msgstr ""

#: gcc.c:6295
#, gcc-internal-format
msgid "unrecognized option '-%s'"
msgstr ""

#: gcc.c:6483 gcc.c:6546
#, gcc-internal-format
msgid "%s: %s compiler not installed on this system"
msgstr ""

#: gcc.c:6638
#, gcc-internal-format
msgid "%s: linker input file unused because linking not done"
msgstr ""

#: gcc.c:6678
#, gcc-internal-format
msgid "language %s not recognized"
msgstr ""

#: gcc.c:6749
#, gcc-internal-format
msgid "%s: %s"
msgstr ""

#: gcse.c:6541
#, gcc-internal-format
msgid "%s: %d basic blocks and %d edges/basic block"
msgstr ""

#: gcse.c:6554
#, gcc-internal-format
msgid "%s: %d basic blocks and %d registers"
msgstr ""

#: ggc-common.c:404 ggc-common.c:412 ggc-common.c:480 ggc-common.c:499
#: ggc-page.c:2205 ggc-page.c:2236 ggc-page.c:2243 ggc-zone.c:2291
#: ggc-zone.c:2306
#, gcc-internal-format
msgid "can't write PCH file: %m"
msgstr ""

#: ggc-common.c:492 config/i386/host-cygwin.c:58
#, gcc-internal-format
msgid "can't get position in PCH file: %m"
msgstr ""

#: ggc-common.c:502
#, gcc-internal-format
msgid "can't write padding to PCH file: %m"
msgstr ""

#: ggc-common.c:557 ggc-common.c:565 ggc-common.c:572 ggc-common.c:575
#: ggc-common.c:585 ggc-common.c:588 ggc-page.c:2330 ggc-zone.c:2325
#, gcc-internal-format
msgid "can't read PCH file: %m"
msgstr ""

#: ggc-common.c:580
#, gcc-internal-format
msgid "had to relocate PCH"
msgstr ""

#: ggc-page.c:1448
#, gcc-internal-format
msgid "open /dev/zero: %m"
msgstr ""

#: ggc-page.c:2221 ggc-page.c:2227
#, gcc-internal-format
msgid "can't write PCH file"
msgstr ""

#: ggc-zone.c:2288 ggc-zone.c:2299
#, gcc-internal-format
msgid "can't seek PCH file: %m"
msgstr ""

#: ggc-zone.c:2302
#, gcc-internal-format
msgid "can't write PCH fle: %m"
msgstr ""

#: gimple-low.c:202
#, gcc-internal-format
msgid "unexpected node"
msgstr ""

#: gimplify.c:3538
#, gcc-internal-format
msgid "invalid lvalue in asm output %d"
msgstr ""

#: gimplify.c:3650
#, gcc-internal-format
msgid "memory input %d is not directly addressable"
msgstr ""

#: gimplify.c:4528
#, gcc-internal-format
msgid "gimplification failed"
msgstr ""

#: global.c:373 global.c:386 global.c:400
#, gcc-internal-format
msgid "%s cannot be used in asm here"
msgstr ""

#: graph.c:403 java/jcf-parse.c:1076 java/jcf-parse.c:1211 java/lex.c:1855
#: objc/objc-act.c:501
#, gcc-internal-format
msgid "can't open %s: %m"
msgstr ""

#: haifa-sched.c:182
#, gcc-internal-format
msgid "fix_sched_param: unknown param: %s"
msgstr ""

#. Eventually this should become a hard error IMO.
#: opts.c:261
#, gcc-internal-format
msgid "command line option \"%s\" is valid for %s but not for %s"
msgstr ""

#: opts.c:315
#, gcc-internal-format
msgid "command line option %qs is not supported by this configuration"
msgstr ""

#: opts.c:359
#, gcc-internal-format
msgid "missing argument to \"%s\""
msgstr ""

#: opts.c:369
#, gcc-internal-format
msgid "argument to \"%s\" should be a non-negative integer"
msgstr ""

#: opts.c:457
#, gcc-internal-format
msgid "unrecognized command line option \"%s\""
msgstr ""

#: opts.c:670
#, gcc-internal-format
msgid "-Wuninitialized is not supported without -O"
msgstr ""

#: opts.c:684
#, gcc-internal-format
msgid "-freorder-blocks-and-partition does not work with exceptions"
msgstr ""

#: opts.c:693
#, gcc-internal-format
msgid "-freorder-blocks-and-partition does not work on this architecture"
msgstr ""

#: opts.c:861
#, gcc-internal-format
msgid "structure alignment must be a small power of two, not %d"
msgstr ""

#: opts.c:919
#, gcc-internal-format
msgid "unrecognized visibility value \"%s\""
msgstr ""

#: opts.c:967
#, gcc-internal-format
msgid "unrecognized register name \"%s\""
msgstr ""

#: opts.c:991
#, gcc-internal-format
msgid "unknown tls-model \"%s\""
msgstr ""

#: opts.c:1041
#, gcc-internal-format
msgid "-f[no-]force-mem is nop and option will be removed in 4.2"
msgstr ""

#: opts.c:1064
#, gcc-internal-format
msgid "%s: --param arguments should be of the form NAME=VALUE"
msgstr ""

#: opts.c:1069
#, gcc-internal-format
msgid "invalid --param value %qs"
msgstr ""

#: opts.c:1166
#, gcc-internal-format
msgid "target system does not support debug output"
msgstr ""

#: opts.c:1173
#, gcc-internal-format
msgid "debug format \"%s\" conflicts with prior selection"
msgstr ""

#: opts.c:1189
#, gcc-internal-format
msgid "unrecognised debug output level \"%s\""
msgstr ""

#: opts.c:1191
#, gcc-internal-format
msgid "debug output level %s is too high"
msgstr ""

#: params.c:71
#, gcc-internal-format
msgid "minimum value of parameter %qs is %u"
msgstr ""

#: params.c:76
#, gcc-internal-format
msgid "maximum value of parameter %qs is %u"
msgstr ""

#. If we didn't find this parameter, issue an error message.
#: params.c:85
#, gcc-internal-format
msgid "invalid parameter %qs"
msgstr ""

#: profile.c:287
#, gcc-internal-format
msgid "corrupted profile info: run_max * runs < sum_max"
msgstr ""

#: profile.c:293
#, gcc-internal-format
msgid "corrupted profile info: sum_all is smaller than sum_max"
msgstr ""

#: profile.c:338
#, gcc-internal-format
msgid "corrupted profile info: edge from %i to %i exceeds maximal count"
msgstr ""

#: profile.c:503
#, gcc-internal-format
msgid ""
"corrupted profile info: number of iterations for basic block %d thought to "
"be %i"
msgstr ""

#: profile.c:524
#, gcc-internal-format
msgid ""
"corrupted profile info: number of executions for edge %d-%d thought to be %i"
msgstr ""

#: reg-stack.c:526
#, gcc-internal-format
msgid "output constraint %d must specify a single register"
msgstr ""

#: reg-stack.c:536
#, gcc-internal-format
msgid "output constraint %d cannot be specified together with \"%s\" clobber"
msgstr ""

#: reg-stack.c:559
#, gcc-internal-format
msgid "output regs must be grouped at top of stack"
msgstr ""

#: reg-stack.c:596
#, gcc-internal-format
msgid "implicitly popped regs must be grouped at top of stack"
msgstr ""

#: reg-stack.c:615
#, gcc-internal-format
msgid "output operand %d must use %<&%> constraint"
msgstr ""

#: regclass.c:766
#, gcc-internal-format
msgid "can't use '%s' as a %s register"
msgstr ""

#: regclass.c:781 config/ia64/ia64.c:4943 config/ia64/ia64.c:4950
#: config/pa/pa.c:339 config/pa/pa.c:346
#, gcc-internal-format
msgid "unknown register name: %s"
msgstr ""

#: regclass.c:791
#, gcc-internal-format
msgid "global register variable follows a function definition"
msgstr ""

#: regclass.c:795
#, gcc-internal-format
msgid "register used for two global register variables"
msgstr ""

#: regclass.c:800
#, gcc-internal-format
msgid "call-clobbered register used for global register variable"
msgstr ""

#: regrename.c:1880
#, gcc-internal-format
msgid "validate_value_data: [%u] Bad next_regno for empty chain (%u)"
msgstr ""

#: regrename.c:1892
#, gcc-internal-format
msgid "validate_value_data: Loop in regno chain (%u)"
msgstr ""

#: regrename.c:1895
#, gcc-internal-format
msgid "validate_value_data: [%u] Bad oldest_regno (%u)"
msgstr ""

#: regrename.c:1907
#, gcc-internal-format
msgid "validate_value_data: [%u] Non-empty reg in chain (%s %u %i)"
msgstr ""

#: reload.c:1270
#, gcc-internal-format
msgid "cannot reload integer constant operand in %<asm%>"
msgstr ""

#: reload.c:1293
#, gcc-internal-format
msgid "impossible register constraint in %<asm%>"
msgstr ""

#: reload.c:3560
#, gcc-internal-format
msgid "%<&%> constraint used with no register class"
msgstr ""

#: reload.c:3731 reload.c:3963
#, gcc-internal-format
msgid "inconsistent operand constraints in an %<asm%>"
msgstr ""

#: reload1.c:1228
#, gcc-internal-format
msgid "frame size too large for reliable stack checking"
msgstr ""

#: reload1.c:1231
#, gcc-internal-format
msgid "try reducing the number of local variables"
msgstr ""

#: reload1.c:1882
#, gcc-internal-format
msgid "can't find a register in class %qs while reloading %<asm%>"
msgstr ""

#: reload1.c:1887
#, gcc-internal-format
msgid "unable to find a register to spill in class %qs"
msgstr ""

#: reload1.c:3890
#, gcc-internal-format
msgid "%<asm%> operand requires impossible reload"
msgstr ""

#: reload1.c:5014
#, gcc-internal-format
msgid "%<asm%> operand constraint incompatible with operand size"
msgstr ""

#: reload1.c:6641
#, gcc-internal-format
msgid "output operand is constant in %<asm%>"
msgstr ""

#: rtl.c:474
#, gcc-internal-format
msgid "RTL check: access of elt %d of '%s' with last elt %d in %s, at %s:%d"
msgstr ""

#: rtl.c:484
#, gcc-internal-format
msgid ""
"RTL check: expected elt %d type '%c', have '%c' (rtx %s) in %s, at %s:%d"
msgstr ""

#: rtl.c:494
#, gcc-internal-format
msgid ""
"RTL check: expected elt %d type '%c' or '%c', have '%c' (rtx %s) in %s, at %"
"s:%d"
msgstr ""

#: rtl.c:503
#, gcc-internal-format
msgid "RTL check: expected code '%s', have '%s' in %s, at %s:%d"
msgstr ""

#: rtl.c:513
#, gcc-internal-format
msgid "RTL check: expected code '%s' or '%s', have '%s' in %s, at %s:%d"
msgstr ""

#: rtl.c:539
#, gcc-internal-format
msgid "RTL check: access of elt %d of vector with last elt %d in %s, at %s:%d"
msgstr ""

#: rtl.c:550
#, gcc-internal-format
msgid "RTL flag check: %s used with unexpected rtx code '%s' in %s, at %s:%d"
msgstr ""

#: stmt.c:317
#, gcc-internal-format
msgid "output operand constraint lacks %<=%>"
msgstr ""

#: stmt.c:332
#, gcc-internal-format
msgid "output constraint %qc for operand %d is not at the beginning"
msgstr ""

#: stmt.c:355
#, gcc-internal-format
msgid "operand constraint contains incorrectly positioned %<+%> or %<=%>"
msgstr ""

#: stmt.c:362 stmt.c:461
#, gcc-internal-format
msgid "%<%%%> constraint used with last operand"
msgstr ""

#: stmt.c:381
#, gcc-internal-format
msgid "matching constraint not valid in output operand"
msgstr ""

#: stmt.c:452
#, gcc-internal-format
msgid "input operand constraint contains %qc"
msgstr ""

#: stmt.c:494
#, gcc-internal-format
msgid "matching constraint references invalid operand number"
msgstr ""

#: stmt.c:532
#, gcc-internal-format
msgid "invalid punctuation %qc in constraint"
msgstr ""

#: stmt.c:556
#, gcc-internal-format
msgid "matching constraint does not allow a register"
msgstr ""

#: stmt.c:598
#, gcc-internal-format
msgid "asm-specifier for variable %qs conflicts with asm clobber list"
msgstr ""

#: stmt.c:686
#, gcc-internal-format
msgid "unknown register name %qs in %<asm%>"
msgstr ""

#: stmt.c:694
#, gcc-internal-format
msgid "PIC register %qs clobbered in %<asm%>"
msgstr ""

#: stmt.c:741
#, gcc-internal-format
msgid "more than %d operands in %<asm%>"
msgstr ""

#: stmt.c:804
#, gcc-internal-format
msgid "output number %d not directly addressable"
msgstr ""

#: stmt.c:883
#, gcc-internal-format
msgid "asm operand %d probably doesn%'t match constraints"
msgstr ""

#: stmt.c:893
#, gcc-internal-format
msgid "use of memory input without lvalue in asm operand %d is deprecated"
msgstr ""

#: stmt.c:1040
#, gcc-internal-format
msgid "asm clobber conflict with output operand"
msgstr ""

#: stmt.c:1045
#, gcc-internal-format
msgid "asm clobber conflict with input operand"
msgstr ""

#: stmt.c:1122
#, gcc-internal-format
msgid "too many alternatives in %<asm%>"
msgstr ""

#: stmt.c:1134
#, gcc-internal-format
msgid "operand constraints for %<asm%> differ in number of alternatives"
msgstr ""

#: stmt.c:1187
#, gcc-internal-format
msgid "duplicate asm operand name %qs"
msgstr ""

#: stmt.c:1285
#, gcc-internal-format
msgid "missing close brace for named operand"
msgstr ""

#: stmt.c:1313
#, gcc-internal-format
msgid "undefined named operand %qs"
msgstr ""

#: stmt.c:1457
#, gcc-internal-format
msgid "%Hvalue computed is not used"
msgstr ""

#: stor-layout.c:149
#, gcc-internal-format
msgid "type size can%'t be explicitly evaluated"
msgstr ""

#: stor-layout.c:151
#, gcc-internal-format
msgid "variable-size type declared outside of any function"
msgstr ""

#: stor-layout.c:455
#, gcc-internal-format
msgid "size of %q+D is %d bytes"
msgstr ""

#: stor-layout.c:457
#, gcc-internal-format
msgid "size of %q+D is larger than %wd bytes"
msgstr ""

#: stor-layout.c:855
#, gcc-internal-format
msgid "packed attribute causes inefficient alignment for %q+D"
msgstr ""

#: stor-layout.c:858
#, gcc-internal-format
msgid "packed attribute is unnecessary for %q+D"
msgstr ""

#. No, we need to skip space before this field.
#. Bump the cumulative size to multiple of field alignment.
#: stor-layout.c:873
#, gcc-internal-format
msgid "padding struct to align %q+D"
msgstr ""

#: stor-layout.c:1272
#, gcc-internal-format
msgid "padding struct size to alignment boundary"
msgstr ""

#: stor-layout.c:1302
#, gcc-internal-format
msgid "packed attribute causes inefficient alignment for %qs"
msgstr ""

#: stor-layout.c:1306
#, gcc-internal-format
msgid "packed attribute is unnecessary for %qs"
msgstr ""

#: stor-layout.c:1312
#, gcc-internal-format
msgid "packed attribute causes inefficient alignment"
msgstr ""

#: stor-layout.c:1314
#, gcc-internal-format
msgid "packed attribute is unnecessary"
msgstr ""

#: targhooks.c:97
#, gcc-internal-format
msgid "__builtin_saveregs not supported by this target"
msgstr ""

#: tlink.c:484
#, gcc-internal-format
msgid "repository file '%s' does not contain command-line arguments"
msgstr ""

#: tlink.c:705
#, gcc-internal-format
msgid ""
"'%s' was assigned to '%s', but was not defined during recompilation, or vice "
"versa"
msgstr ""

#: tlink.c:775
#, gcc-internal-format
msgid "ld returned %d exit status"
msgstr ""

#: toplev.c:512
#, gcc-internal-format
msgid "invalid option argument %qs"
msgstr ""

#: toplev.c:602
#, gcc-internal-format
msgid "getting core file size maximum limit: %m"
msgstr ""

#: toplev.c:605
#, gcc-internal-format
msgid "setting core file size limit to maximum: %m"
msgstr ""

#: toplev.c:822
#, gcc-internal-format
msgid "%q+F declared %<static%> but never defined"
msgstr ""

#: toplev.c:848
#, gcc-internal-format
msgid "%q+D defined but not used"
msgstr ""

#: toplev.c:872 toplev.c:896
#, gcc-internal-format
msgid "%qs is deprecated (declared at %s:%d)"
msgstr ""

#: toplev.c:900
#, gcc-internal-format
msgid "type is deprecated (declared at %s:%d)"
msgstr ""

#: toplev.c:906
#, gcc-internal-format
msgid "%qs is deprecated"
msgstr ""

#: toplev.c:908
#, gcc-internal-format
msgid "type is deprecated"
msgstr ""

#: toplev.c:1075
#, gcc-internal-format
msgid "unrecognized gcc debugging option: %c"
msgstr ""

#: toplev.c:1228
#, gcc-internal-format
msgid "can%'t open %s for writing: %m"
msgstr ""

#: toplev.c:1568
#, gcc-internal-format
msgid "instruction scheduling not supported on this target machine"
msgstr ""

#: toplev.c:1572
#, gcc-internal-format
msgid "this target machine does not have delayed branches"
msgstr ""

#: toplev.c:1586
#, gcc-internal-format
msgid "-f%sleading-underscore not supported on this target machine"
msgstr ""

#: toplev.c:1660
#, gcc-internal-format
msgid "target system does not support the \"%s\" debug format"
msgstr ""

#: toplev.c:1672
#, gcc-internal-format
msgid "variable tracking requested, but useless unless producing debug info"
msgstr ""

#: toplev.c:1675
#, gcc-internal-format
msgid "variable tracking requested, but not supported by this debug format"
msgstr ""

#: toplev.c:1695
#, gcc-internal-format
msgid "can%'t open %s: %m"
msgstr ""

#: toplev.c:1702
#, gcc-internal-format
msgid "-ffunction-sections not supported for this target"
msgstr ""

#: toplev.c:1707
#, gcc-internal-format
msgid "-fdata-sections not supported for this target"
msgstr ""

#: toplev.c:1714
#, gcc-internal-format
msgid "-ffunction-sections disabled; it makes profiling impossible"
msgstr ""

#: toplev.c:1721
#, gcc-internal-format
msgid "-fprefetch-loop-arrays not supported for this target"
msgstr ""

#: toplev.c:1727
#, gcc-internal-format
msgid ""
"-fprefetch-loop-arrays not supported for this target (try -march switches)"
msgstr ""

#: toplev.c:1736
#, gcc-internal-format
msgid "-fprefetch-loop-arrays is not supported with -Os"
msgstr ""

#: toplev.c:1742
#, gcc-internal-format
msgid "-ffunction-sections may affect debugging on some targets"
msgstr ""

#: toplev.c:1757
#, gcc-internal-format
msgid "-fstack-protector not supported for this target"
msgstr ""

#: toplev.c:1863
#, gcc-internal-format
msgid "error writing to %s: %m"
msgstr ""

#: toplev.c:1865 java/jcf-parse.c:1095 java/jcf-write.c:3539
#, gcc-internal-format
msgid "error closing %s: %m"
msgstr ""

#: tree-cfg.c:1410 tree-cfg.c:2042 tree-cfg.c:2045
#, gcc-internal-format
msgid "%Hwill never be executed"
msgstr ""

#: tree-cfg.c:3121
#, gcc-internal-format
msgid "SSA name in freelist but still referenced"
msgstr ""

#: tree-cfg.c:3130
#, gcc-internal-format
msgid "ASSERT_EXPR with an always-false condition"
msgstr ""

#: tree-cfg.c:3140
#, gcc-internal-format
msgid "GIMPLE register modified with BIT_FIELD_REF"
msgstr ""

#: tree-cfg.c:3175
#, gcc-internal-format
msgid "invariant not recomputed when ADDR_EXPR changed"
msgstr ""

#: tree-cfg.c:3181
#, gcc-internal-format
msgid "constant not recomputed when ADDR_EXPR changed"
msgstr ""

#: tree-cfg.c:3186
#, gcc-internal-format
msgid "side effects not recomputed when ADDR_EXPR changed"
msgstr ""

#: tree-cfg.c:3202
#, gcc-internal-format
msgid "address taken, but ADDRESSABLE bit not set"
msgstr ""

#: tree-cfg.c:3212
#, gcc-internal-format
msgid "non-boolean used in condition"
msgstr ""

#: tree-cfg.c:3217
#, gcc-internal-format
msgid "invalid conditional operand"
msgstr ""

#: tree-cfg.c:3272
#, gcc-internal-format
msgid "invalid reference prefix"
msgstr ""

#: tree-cfg.c:3337
#, gcc-internal-format
msgid "is not a valid GIMPLE statement"
msgstr ""

#: tree-cfg.c:3357
#, gcc-internal-format
msgid "statement marked for throw, but doesn%'t"
msgstr ""

#: tree-cfg.c:3362
#, gcc-internal-format
msgid "statement marked for throw in middle of block"
msgstr ""

#: tree-cfg.c:3457
#, gcc-internal-format
msgid "bb_for_stmt (phi) is set to a wrong basic block"
msgstr ""

#: tree-cfg.c:3472
#, gcc-internal-format
msgid "PHI def is not a GIMPLE value"
msgstr ""

#: tree-cfg.c:3488 tree-cfg.c:3511
#, gcc-internal-format
msgid "incorrect sharing of tree nodes"
msgstr ""

#: tree-cfg.c:3502
#, gcc-internal-format
msgid "bb_for_stmt (stmt) is set to a wrong basic block"
msgstr ""

#: tree-cfg.c:3520
#, gcc-internal-format
msgid "verify_stmts failed"
msgstr ""

#: tree-cfg.c:3541
#, gcc-internal-format
msgid "ENTRY_BLOCK has a statement list associated with it"
msgstr ""

#: tree-cfg.c:3547
#, gcc-internal-format
msgid "EXIT_BLOCK has a statement list associated with it"
msgstr ""

#: tree-cfg.c:3554
#, gcc-internal-format
msgid "fallthru to exit from bb %d"
msgstr ""

#: tree-cfg.c:3576
#, gcc-internal-format
msgid "nonlocal label %s is not first in a sequence of labels in bb %d"
msgstr ""

#: tree-cfg.c:3585
#, gcc-internal-format
msgid "label %s to block does not match in bb %d"
msgstr ""

#: tree-cfg.c:3594
#, gcc-internal-format
msgid "label %s has incorrect context in bb %d"
msgstr ""

#: tree-cfg.c:3608
#, gcc-internal-format
msgid "control flow in the middle of basic block %d"
msgstr ""

#: tree-cfg.c:3618
#, gcc-internal-format
msgid "label %s in the middle of basic block %d"
msgstr ""

#: tree-cfg.c:3637
#, gcc-internal-format
msgid "fallthru edge after a control statement in bb %d"
msgstr ""

#: tree-cfg.c:3652
#, gcc-internal-format
msgid "structured COND_EXPR at the end of bb %d"
msgstr ""

#: tree-cfg.c:3665 tree-cfg.c:3703 tree-cfg.c:3716 tree-cfg.c:3787
#, gcc-internal-format
msgid "wrong outgoing edge flags at end of bb %d"
msgstr ""

#: tree-cfg.c:3673
#, gcc-internal-format
msgid "%<then%> label does not match edge at end of bb %d"
msgstr ""

#: tree-cfg.c:3681
#, gcc-internal-format
msgid "%<else%> label does not match edge at end of bb %d"
msgstr ""

#: tree-cfg.c:3691
#, gcc-internal-format
msgid "explicit goto at end of bb %d"
msgstr ""

#: tree-cfg.c:3721
#, gcc-internal-format
msgid "return edge does not point to exit in bb %d"
msgstr ""

#: tree-cfg.c:3754
#, gcc-internal-format
msgid "found default case not at end of case vector"
msgstr ""

#: tree-cfg.c:3760
#, gcc-internal-format
msgid "case labels not sorted:"
msgstr ""

#: tree-cfg.c:3771
#, gcc-internal-format
msgid "no default case found at end of case vector"
msgstr ""

#: tree-cfg.c:3779
#, gcc-internal-format
msgid "extra outgoing edge %d->%d"
msgstr ""

#: tree-cfg.c:3801
#, gcc-internal-format
msgid "missing edge %i->%i"
msgstr ""

#: tree-cfg.c:5094 tree-cfg.c:5098
#, gcc-internal-format
msgid "%H%<noreturn%> function does return"
msgstr ""

#: tree-cfg.c:5119 tree-cfg.c:5124
#, gcc-internal-format
msgid "%Hcontrol reaches end of non-void function"
msgstr ""

#: tree-cfg.c:5184
#, gcc-internal-format
msgid "%Jfunction might be possible candidate for attribute %<noreturn%>"
msgstr ""

#: tree-dump.c:856
#, gcc-internal-format
msgid "could not open dump file %qs: %s"
msgstr ""

#: tree-dump.c:987
#, gcc-internal-format
msgid "ignoring unknown option %q.*s in %<-fdump-%s%>"
msgstr ""

#: tree-eh.c:1767
#, gcc-internal-format
msgid "EH edge %i->%i is missing"
msgstr ""

#: tree-eh.c:1772
#, gcc-internal-format
msgid "EH edge %i->%i miss EH flag"
msgstr ""

#. ??? might not be mistake.
#: tree-eh.c:1778
#, gcc-internal-format
msgid "EH edge %i->%i has duplicated regions"
msgstr ""

#: tree-eh.c:1812
#, gcc-internal-format
msgid "BB %i can not throw but has EH edges"
msgstr ""

#: tree-eh.c:1819
#, gcc-internal-format
msgid "BB %i last statement has incorrectly set region"
msgstr ""

#: tree-eh.c:1830
#, gcc-internal-format
msgid "unnecessary EH edge %i->%i"
msgstr ""

#: tree-inline.c:1338
#, gcc-internal-format
msgid ""
"function %q+F can never be inlined because it uses alloca (override using "
"the always_inline attribute)"
msgstr ""

#: tree-inline.c:1350
#, gcc-internal-format
msgid "function %q+F can never be inlined because it uses setjmp"
msgstr ""

#: tree-inline.c:1364
#, gcc-internal-format
msgid ""
"function %q+F can never be inlined because it uses variable argument lists"
msgstr ""

#: tree-inline.c:1375
#, gcc-internal-format
msgid ""
"function %q+F can never be inlined because it uses setjmp-longjmp exception "
"handling"
msgstr ""

#: tree-inline.c:1382
#, gcc-internal-format
msgid "function %q+F can never be inlined because it uses non-local goto"
msgstr ""

#: tree-inline.c:1393
#, gcc-internal-format
msgid ""
"function %q+F can never be inlined because it uses __builtin_return or "
"__builtin_apply_args"
msgstr ""

#: tree-inline.c:1412
#, gcc-internal-format
msgid "function %q+F can never be inlined because it contains a computed goto"
msgstr ""

#: tree-inline.c:1426
#, gcc-internal-format
msgid "function %q+F can never be inlined because it receives a non-local goto"
msgstr ""

#: tree-inline.c:1451
#, gcc-internal-format
msgid ""
"function %q+F can never be inlined because it uses variable sized variables"
msgstr ""

#: tree-inline.c:1990 tree-inline.c:2000
#, gcc-internal-format
msgid "inlining failed in call to %q+F: %s"
msgstr ""

#: tree-inline.c:1991 tree-inline.c:2002
#, gcc-internal-format
msgid "called from here"
msgstr ""

#: tree-mudflap.c:847
#, gcc-internal-format
msgid "mudflap checking not yet implemented for ARRAY_RANGE_REF"
msgstr ""

#: tree-mudflap.c:1038
#, gcc-internal-format
msgid "mudflap cannot track %qs in stub function"
msgstr ""

#: tree-mudflap.c:1265
#, gcc-internal-format
msgid "mudflap cannot track unknown size extern %qs"
msgstr ""

#: tree-nomudflap.c:51
#, gcc-internal-format
msgid "mudflap: this language is not supported"
msgstr ""

#: tree-optimize.c:478
#, gcc-internal-format
msgid "size of return value of %q+D is %u bytes"
msgstr ""

#: tree-optimize.c:481
#, gcc-internal-format
msgid "size of return value of %q+D is larger than %wd bytes"
msgstr ""

#: tree-outof-ssa.c:614 tree-outof-ssa.c:629 tree-outof-ssa.c:643
#: tree-outof-ssa.c:665 tree-outof-ssa.c:1120 tree-outof-ssa.c:1935
#: tree-ssa-live.c:429 tree-ssa-live.c:1835
#, gcc-internal-format
msgid "SSA corruption"
msgstr ""

#: tree-outof-ssa.c:2350
#, gcc-internal-format
msgid " Pending stmts not issued on PRED edge (%d, %d)\n"
msgstr ""

#: tree-outof-ssa.c:2356
#, gcc-internal-format
msgid " Pending stmts not issued on SUCC edge (%d, %d)\n"
msgstr ""

#: tree-outof-ssa.c:2363
#, gcc-internal-format
msgid " Pending stmts not issued on ENTRY edge (%d, %d)\n"
msgstr ""

#: tree-outof-ssa.c:2369
#, gcc-internal-format
msgid " Pending stmts not issued on EXIT edge (%d, %d)\n"
msgstr ""

#: tree-profile.c:216
#, gcc-internal-format
msgid "unimplemented functionality"
msgstr ""

#: tree-ssa-loop-niter.c:1031
#, gcc-internal-format
msgid "%H%s"
msgstr ""

#: tree-ssa-operands.c:1487
#, gcc-internal-format
msgid "internal error"
msgstr ""

#: tree-ssa.c:111
#, gcc-internal-format
msgid "expected an SSA_NAME object"
msgstr ""

#: tree-ssa.c:117
#, gcc-internal-format
msgid "type mismatch between an SSA_NAME and its symbol"
msgstr ""

#: tree-ssa.c:123
#, gcc-internal-format
msgid "found an SSA_NAME that had been released into the free pool"
msgstr ""

#: tree-ssa.c:129
#, gcc-internal-format
msgid "found a virtual definition for a GIMPLE register"
msgstr ""

#: tree-ssa.c:135
#, gcc-internal-format
msgid "found a real definition for a non-register"
msgstr ""

#: tree-ssa.c:142
#, gcc-internal-format
msgid "found real variable when subvariables should have appeared"
msgstr ""

#: tree-ssa.c:171
#, gcc-internal-format
msgid "SSA_NAME created in two different blocks %i and %i"
msgstr ""

#: tree-ssa.c:180
#, gcc-internal-format
msgid "SSA_NAME_DEF_STMT is wrong"
msgstr ""

#: tree-ssa.c:238
#, gcc-internal-format
msgid "missing definition"
msgstr ""

#: tree-ssa.c:244
#, gcc-internal-format
msgid "definition in block %i does not dominate use in block %i"
msgstr ""

#: tree-ssa.c:252
#, gcc-internal-format
msgid "definition in block %i follows the use"
msgstr ""

#: tree-ssa.c:259
#, gcc-internal-format
msgid "SSA_NAME_OCCURS_IN_ABNORMAL_PHI should be set"
msgstr ""

#: tree-ssa.c:267
#, gcc-internal-format
msgid "no immediate_use list"
msgstr ""

#: tree-ssa.c:279
#, gcc-internal-format
msgid "wrong immediate use list"
msgstr ""

#: tree-ssa.c:312
#, gcc-internal-format
msgid "incoming edge count does not match number of PHI arguments"
msgstr ""

#: tree-ssa.c:327
#, gcc-internal-format
msgid "PHI argument is missing for edge %d->%d"
msgstr ""

#: tree-ssa.c:336
#, gcc-internal-format
msgid "PHI argument is not SSA_NAME, or invariant"
msgstr ""

#: tree-ssa.c:348
#, gcc-internal-format
msgid "wrong edge %d->%d for PHI argument"
msgstr ""

#: tree-ssa.c:397
#, gcc-internal-format
msgid "non-addressable variable inside an alias set"
msgstr ""

#: tree-ssa.c:413
#, gcc-internal-format
msgid "addressable variable that is an alias tag but is not in any alias set"
msgstr ""

#: tree-ssa.c:423
#, gcc-internal-format
msgid "verify_flow_insensitive_alias_info failed"
msgstr ""

#: tree-ssa.c:465
#, gcc-internal-format
msgid "dereferenced pointers should have a name or a type tag"
msgstr ""

#: tree-ssa.c:472
#, gcc-internal-format
msgid "pointers with a memory tag, should have points-to sets"
msgstr ""

#: tree-ssa.c:480
#, gcc-internal-format
msgid "pointer escapes but its name tag is not call-clobbered"
msgstr ""

#: tree-ssa.c:489
#, gcc-internal-format
msgid "verify_flow_sensitive_alias_info failed"
msgstr ""

#: tree-ssa.c:566
#, gcc-internal-format
msgid ""
"alias set of a pointer's type tag should be a superset of the corresponding "
"name tag"
msgstr ""

#: tree-ssa.c:582
#, gcc-internal-format
msgid ""
"two different pointers with identical points-to sets but different name tags"
msgstr ""

#: tree-ssa.c:614
#, gcc-internal-format
msgid "verify_name_tags failed"
msgstr ""

#: tree-ssa.c:685
#, gcc-internal-format
msgid "AUX pointer initialized for edge %d->%d"
msgstr ""

#: tree-ssa.c:708
#, gcc-internal-format
msgid "stmt (%p) marked modified after optimization pass : "
msgstr ""

#: tree-ssa.c:726
#, gcc-internal-format
msgid "statement makes a memory store, but has no V_MAY_DEFS nor V_MUST_DEFS"
msgstr ""

#: tree-ssa.c:737
#, gcc-internal-format
msgid "statement makes aliased stores, but has no V_MAY_DEFS"
msgstr ""

#: tree-ssa.c:776
#, gcc-internal-format
msgid "verify_ssa failed"
msgstr ""

#: tree-ssa.c:1159
#, gcc-internal-format
msgid "%H%qD is used uninitialized in this function"
msgstr ""

#: tree-ssa.c:1184
#, gcc-internal-format
msgid "%H%qD may be used uninitialized in this function"
msgstr ""

#: tree-vect-transform.c:633
#, gcc-internal-format
msgid "no support for induction"
msgstr ""

#: tree.c:3515 config/darwin.c:1231 config/arm/arm.c:2832
#: config/arm/arm.c:2860 config/avr/avr.c:4656 config/h8300/h8300.c:5282
#: config/h8300/h8300.c:5306 config/i386/i386.c:2029 config/i386/i386.c:16506
#: config/ia64/ia64.c:537 config/m68hc11/m68hc11.c:1118
#: config/sh/symbian.c:409 config/sh/symbian.c:416
#, gcc-internal-format
msgid "%qs attribute ignored"
msgstr ""

#: tree.c:3534
#, gcc-internal-format
msgid "function %q+D definition is marked dllimport"
msgstr ""

#: tree.c:3542 config/sh/symbian.c:431
#, gcc-internal-format
msgid "variable %q+D definition is marked dllimport"
msgstr ""

#: tree.c:3562 config/sh/symbian.c:506
#, gcc-internal-format
msgid "external linkage required for symbol %q+D because of %qs attribute"
msgstr ""

#: tree.c:4911
#, gcc-internal-format
msgid "arrays of functions are not meaningful"
msgstr ""

#: tree.c:4963
#, gcc-internal-format
msgid "function return type cannot be function"
msgstr ""

#: tree.c:5859
#, gcc-internal-format
msgid "tree check: %s, have %s in %s, at %s:%d"
msgstr ""

#: tree.c:5896
#, gcc-internal-format
msgid "tree check: expected none of %s, have %s in %s, at %s:%d"
msgstr ""

#: tree.c:5909
#, gcc-internal-format
msgid "tree check: expected class %qs, have %qs (%s) in %s, at %s:%d"
msgstr ""

#: tree.c:5934
#, gcc-internal-format
msgid ""
"tree check: expected tree that contains %qs structure, have %qs  in %s, at %"
"s:%d"
msgstr ""

#: tree.c:5948
#, gcc-internal-format
msgid "tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d"
msgstr ""

#: tree.c:5960
#, gcc-internal-format
msgid "tree check: accessed elt %d of phi_node with %d elts in %s, at %s:%d"
msgstr ""

#: tree.c:5972
#, gcc-internal-format
msgid "tree check: accessed operand %d of %s with %d operands in %s, at %s:%d"
msgstr ""

#: value-prof.c:101
#, gcc-internal-format
msgid ""
"%HCorrupted value profile: %s profiler overall count (%d) does not match BB "
"count (%d)"
msgstr ""

#: varasm.c:470
#, gcc-internal-format
msgid "%+D causes a section type conflict"
msgstr ""

#: varasm.c:932
#, gcc-internal-format
msgid "register name not specified for %q+D"
msgstr ""

#: varasm.c:934
#, gcc-internal-format
msgid "invalid register name for %q+D"
msgstr ""

#: varasm.c:936
#, gcc-internal-format
msgid "data type of %q+D isn%'t suitable for a register"
msgstr ""

#: varasm.c:939
#, gcc-internal-format
msgid "register specified for %q+D isn%'t suitable for data type"
msgstr ""

#: varasm.c:949
#, gcc-internal-format
msgid "global register variable has initial value"
msgstr ""

#: varasm.c:952
#, gcc-internal-format
msgid "volatile register variables don%'t work as you might wish"
msgstr ""

#: varasm.c:990
#, gcc-internal-format
msgid "register name given for non-register variable %q+D"
msgstr ""

#: varasm.c:1067
#, gcc-internal-format
msgid "global destructors not supported on this target"
msgstr ""

#: varasm.c:1128
#, gcc-internal-format
msgid "global constructors not supported on this target"
msgstr ""

#: varasm.c:1692
#, gcc-internal-format
msgid ""
"alignment of %q+D is greater than maximum object file alignment.  Using %d"
msgstr ""

#: varasm.c:1731
#, gcc-internal-format
msgid "thread-local COMMON data not implemented"
msgstr ""

#: varasm.c:1756
#, gcc-internal-format
msgid ""
"requested alignment for %q+D is greater than implemented alignment of %wu"
msgstr ""

#: varasm.c:3895
#, gcc-internal-format
msgid "initializer for integer value is too complicated"
msgstr ""

#: varasm.c:3900
#, gcc-internal-format
msgid "initializer for floating value is not a floating constant"
msgstr ""

#: varasm.c:4169
#, gcc-internal-format
msgid "invalid initial value for member %qs"
msgstr ""

#: varasm.c:4369 varasm.c:4413
#, gcc-internal-format
msgid "weak declaration of %q+D must precede definition"
msgstr ""

#: varasm.c:4377
#, gcc-internal-format
msgid ""
"weak declaration of %q+D after first use results in unspecified behavior"
msgstr ""

#: varasm.c:4411
#, gcc-internal-format
msgid "weak declaration of %q+D must be public"
msgstr ""

#: varasm.c:4420
#, gcc-internal-format
msgid "weak declaration of %q+D not supported"
msgstr ""

#: varasm.c:4449
#, gcc-internal-format
msgid "only weak aliases are supported in this configuration"
msgstr ""

#: varasm.c:4617
#, gcc-internal-format
msgid "%q+D aliased to undefined symbol %qs"
msgstr ""

#: varasm.c:4620
#, gcc-internal-format
msgid "%q+D aliased to external symbol %qs"
msgstr ""

#: varasm.c:4651
#, gcc-internal-format
msgid "%Jalias definitions not supported in this configuration"
msgstr ""

#: varasm.c:4656
#, gcc-internal-format
msgid "%Jonly weak aliases are supported in this configuration"
msgstr ""

#: varasm.c:4711
#, gcc-internal-format
msgid "visibility attribute not supported in this configuration; ignored"
msgstr ""

#: varray.c:207
#, gcc-internal-format
msgid "virtual array %s[%lu]: element %lu out of bounds in %s, at %s:%d"
msgstr ""

#: varray.c:217
#, gcc-internal-format
msgid "underflowed virtual array %s in %s, at %s:%d"
msgstr ""

#: vec.c:153
#, gcc-internal-format
msgid "vector %s %s domain error, in %s at %s:%u"
msgstr ""

#. Print an error message for unrecognized stab codes.
#: xcoffout.c:187
#, gcc-internal-format
msgid "no sclass for %s stab (0x%x)"
msgstr ""

#: config/darwin-c.c:85
#, gcc-internal-format
msgid "too many #pragma options align=reset"
msgstr ""

#: config/darwin-c.c:105 config/darwin-c.c:108 config/darwin-c.c:110
#: config/darwin-c.c:112
#, gcc-internal-format
msgid "malformed '#pragma options', ignoring"
msgstr ""

#: config/darwin-c.c:115
#, gcc-internal-format
msgid "junk at end of '#pragma options'"
msgstr ""

#: config/darwin-c.c:125
#, gcc-internal-format
msgid "malformed '#pragma options align={mac68k|power|reset}', ignoring"
msgstr ""

#: config/darwin-c.c:137
#, gcc-internal-format
msgid "missing '(' after '#pragma unused', ignoring"
msgstr ""

#: config/darwin-c.c:155
#, gcc-internal-format
msgid "missing ')' after '#pragma unused', ignoring"
msgstr ""

#: config/darwin-c.c:158
#, gcc-internal-format
msgid "junk at end of '#pragma unused'"
msgstr ""

#: config/darwin-c.c:384
#, gcc-internal-format
msgid "subframework include %s conflicts with framework include"
msgstr ""

#: config/darwin-c.c:576
#, gcc-internal-format
msgid "Unknown value %qs of -mmacosx-version-min"
msgstr ""

#: config/darwin.c:1345
#, gcc-internal-format
msgid ""
"internal and protected visibility attributes not supported in this "
"configuration; ignored"
msgstr ""

#: config/host-darwin.c:63
#, gcc-internal-format
msgid "couldn't unmap pch_address_space: %m"
msgstr ""

#: config/sol2-c.c:94 config/sol2-c.c:110
#, gcc-internal-format
msgid "malformed %<#pragma align%>, ignoring"
msgstr ""

#: config/sol2-c.c:103
#, gcc-internal-format
msgid "invalid alignment for %<#pragma align%>, ignoring"
msgstr ""

#: config/sol2-c.c:118
#, gcc-internal-format
msgid "%<#pragma align%> must appear before the declaration of %D, ignoring"
msgstr ""

#: config/sol2-c.c:130 config/sol2-c.c:142
#, gcc-internal-format
msgid "malformed %<#pragma align%>"
msgstr ""

#: config/sol2-c.c:137
#, gcc-internal-format
msgid "junk at end of %<#pragma align%>"
msgstr ""

#: config/sol2-c.c:158 config/sol2-c.c:165
#, gcc-internal-format
msgid "malformed %<#pragma init%>, ignoring"
msgstr ""

#: config/sol2-c.c:188 config/sol2-c.c:200
#, gcc-internal-format
msgid "malformed %<#pragma init%>"
msgstr ""

#: config/sol2-c.c:195
#, gcc-internal-format
msgid "junk at end of %<#pragma init%>"
msgstr ""

#: config/sol2-c.c:216 config/sol2-c.c:223
#, gcc-internal-format
msgid "malformed %<#pragma fini%>, ignoring"
msgstr ""

#: config/sol2-c.c:246 config/sol2-c.c:258
#, gcc-internal-format
msgid "malformed %<#pragma fini%>"
msgstr ""

#: config/sol2-c.c:253
#, gcc-internal-format
msgid "junk at end of %<#pragma fini%>"
msgstr ""

#: config/sol2.c:54
#, gcc-internal-format
msgid "ignoring %<#pragma align%> for explicitly aligned %q+D"
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:373
#, gcc-internal-format
msgid "alias definitions not supported in Mach-O; ignored"
msgstr ""

#: config/windiss.h:37
#, gcc-internal-format
msgid "profiler support for WindISS"
msgstr ""

#: config/alpha/alpha.c:231 config/rs6000/rs6000.c:1567
#, gcc-internal-format
msgid "bad value %qs for -mtls-size switch"
msgstr ""

#: config/alpha/alpha.c:270
#, gcc-internal-format
msgid "-f%s ignored for Unicos/Mk (not supported)"
msgstr ""

#: config/alpha/alpha.c:294
#, gcc-internal-format
msgid "-mieee not supported on Unicos/Mk"
msgstr ""

#: config/alpha/alpha.c:305
#, gcc-internal-format
msgid "-mieee-with-inexact not supported on Unicos/Mk"
msgstr ""

#: config/alpha/alpha.c:322
#, gcc-internal-format
msgid "bad value %qs for -mtrap-precision switch"
msgstr ""

#: config/alpha/alpha.c:336
#, gcc-internal-format
msgid "bad value %qs for -mfp-rounding-mode switch"
msgstr ""

#: config/alpha/alpha.c:351
#, gcc-internal-format
msgid "bad value %qs for -mfp-trap-mode switch"
msgstr ""

#: config/alpha/alpha.c:365 config/alpha/alpha.c:377
#, gcc-internal-format
msgid "bad value %qs for -mcpu switch"
msgstr ""

#: config/alpha/alpha.c:384
#, gcc-internal-format
msgid "trap mode not supported on Unicos/Mk"
msgstr ""

#: config/alpha/alpha.c:391
#, gcc-internal-format
msgid "fp software completion requires -mtrap-precision=i"
msgstr ""

#: config/alpha/alpha.c:407
#, gcc-internal-format
msgid "rounding mode not supported for VAX floats"
msgstr ""

#: config/alpha/alpha.c:412
#, gcc-internal-format
msgid "trap mode not supported for VAX floats"
msgstr ""

#: config/alpha/alpha.c:416
#, gcc-internal-format
msgid "128-bit long double not supported for VAX floats"
msgstr ""

#: config/alpha/alpha.c:444
#, gcc-internal-format
msgid "L%d cache latency unknown for %s"
msgstr ""

#: config/alpha/alpha.c:459
#, gcc-internal-format
msgid "bad value %qs for -mmemory-latency"
msgstr ""

#: config/alpha/alpha.c:6540 config/alpha/alpha.c:6543 config/s390/s390.c:7530
#: config/s390/s390.c:7533
#, gcc-internal-format
msgid "bad builtin fcode"
msgstr ""

#: config/arc/arc.c:390
#, gcc-internal-format
msgid "argument of %qs attribute is not a string constant"
msgstr ""

#: config/arc/arc.c:398
#, gcc-internal-format
msgid "argument of %qs attribute is not \"ilink1\" or \"ilink2\""
msgstr ""

#: config/arm/arm.c:877
#, gcc-internal-format
msgid "switch -mcpu=%s conflicts with -march= switch"
msgstr ""

#: config/arm/arm.c:887 config/rs6000/rs6000.c:1223 config/sparc/sparc.c:698
#, gcc-internal-format
msgid "bad value (%s) for %s switch"
msgstr ""

#: config/arm/arm.c:997
#, gcc-internal-format
msgid "target CPU does not support interworking"
msgstr ""

#: config/arm/arm.c:1003
#, gcc-internal-format
msgid "target CPU does not support THUMB instructions"
msgstr ""

#: config/arm/arm.c:1021
#, gcc-internal-format
msgid ""
"enabling backtrace support is only meaningful when compiling for the Thumb"
msgstr ""

#: config/arm/arm.c:1024
#, gcc-internal-format
msgid ""
"enabling callee interworking support is only meaningful when compiling for "
"the Thumb"
msgstr ""

#: config/arm/arm.c:1027
#, gcc-internal-format
msgid ""
"enabling caller interworking support is only meaningful when compiling for "
"the Thumb"
msgstr ""

#: config/arm/arm.c:1031
#, gcc-internal-format
msgid "-mapcs-stack-check incompatible with -mno-apcs-frame"
msgstr ""

#: config/arm/arm.c:1039
#, gcc-internal-format
msgid "-fpic and -mapcs-reent are incompatible"
msgstr ""

#: config/arm/arm.c:1042
#, gcc-internal-format
msgid "APCS reentrant code not supported.  Ignored"
msgstr ""

#: config/arm/arm.c:1050
#, gcc-internal-format
msgid "-g with -mno-apcs-frame may not give sensible debugging"
msgstr ""

#: config/arm/arm.c:1058
#, gcc-internal-format
msgid "passing floating point arguments in fp regs not yet supported"
msgstr ""

#: config/arm/arm.c:1099
#, gcc-internal-format
msgid "invalid ABI option: -mabi=%s"
msgstr ""

#: config/arm/arm.c:1105
#, gcc-internal-format
msgid "iwmmxt requires an AAPCS compatible ABI for proper operation"
msgstr ""

#: config/arm/arm.c:1108
#, gcc-internal-format
msgid "iwmmxt abi requires an iwmmxt capable cpu"
msgstr ""

#: config/arm/arm.c:1118
#, gcc-internal-format
msgid "invalid floating point emulation option: -mfpe=%s"
msgstr ""

#: config/arm/arm.c:1135
#, gcc-internal-format
msgid "invalid floating point option: -mfpu=%s"
msgstr ""

#: config/arm/arm.c:1175
#, gcc-internal-format
msgid "invalid floating point abi: -mfloat-abi=%s"
msgstr ""

#: config/arm/arm.c:1182
#, gcc-internal-format
msgid "-mfloat-abi=hard and VFP"
msgstr ""

#: config/arm/arm.c:1208
#, gcc-internal-format
msgid "structure size boundary can only be set to %s"
msgstr ""

#: config/arm/arm.c:1217
#, gcc-internal-format
msgid "-mpic-register= is useless without -fpic"
msgstr ""

#: config/arm/arm.c:1224
#, gcc-internal-format
msgid "unable to use '%s' for PIC register"
msgstr ""

#: config/arm/arm.c:2800 config/arm/arm.c:2818 config/avr/avr.c:4676
#: config/bfin/bfin.c:2703 config/c4x/c4x.c:4076 config/h8300/h8300.c:5258
#: config/i386/i386.c:1993 config/m68hc11/m68hc11.c:1155
#: config/m68k/m68k.c:376 config/mcore/mcore.c:3032
#: config/rs6000/rs6000.c:17322 config/sh/sh.c:7442 config/sh/sh.c:7463
#: config/sh/sh.c:7498 config/stormy16/stormy16.c:2241 config/v850/v850.c:2104
#, gcc-internal-format
msgid "%qs attribute only applies to functions"
msgstr ""

#: config/arm/arm.c:11649
#, gcc-internal-format
msgid "unable to compute real location of stacked parameter"
msgstr ""

#. @@@ better error message
#: config/arm/arm.c:12279 config/arm/arm.c:12316
#, gcc-internal-format
msgid "selector must be an immediate"
msgstr ""

#. @@@ better error message
#: config/arm/arm.c:12359 config/i386/i386.c:15280 config/i386/i386.c:15314
#, gcc-internal-format
msgid "mask must be an immediate"
msgstr ""

#: config/arm/arm.c:13015
#, gcc-internal-format
msgid "no low registers available for popping high registers"
msgstr ""

#: config/arm/arm.c:13239
#, gcc-internal-format
msgid "interrupt Service Routines cannot be coded in Thumb mode"
msgstr ""

#: config/arm/pe.c:165 config/mcore/mcore.c:2898
#, gcc-internal-format
msgid "initialized variable %q+D is marked dllimport"
msgstr ""

#: config/arm/pe.c:174
#, gcc-internal-format
msgid "static variable %q+D is marked dllimport"
msgstr ""

#: config/avr/avr.c:531
#, gcc-internal-format
msgid "large frame pointer change (%d) with -mtiny-stack"
msgstr ""

#: config/avr/avr.c:4649
#, gcc-internal-format
msgid "only initialized variables can be placed into program memory area"
msgstr ""

#: config/avr/avr.c:4693
#, gcc-internal-format
msgid "%qs appears to be a misspelled interrupt handler"
msgstr ""

#: config/avr/avr.c:4701
#, gcc-internal-format
msgid "%qs appears to be a misspelled signal handler"
msgstr ""

#: config/avr/avr.c:4770
#, gcc-internal-format
msgid "only uninitialized variables can be placed in the .noinit section"
msgstr ""

#: config/avr/avr.c:4784
#, gcc-internal-format
msgid "MCU %qs supported for assembler only"
msgstr ""

#: config/avr/avr.h:713
#, gcc-internal-format
msgid "trampolines not supported"
msgstr ""

#: config/bfin/bfin.c:1785 config/m68k/m68k.c:294
#, gcc-internal-format
msgid "-mshared-library-id=%s is not between 0 and %d"
msgstr ""

#: config/bfin/bfin.c:1805
#, gcc-internal-format
msgid "-mshared-library-id= specified without -mid-shared-library"
msgstr ""

#: config/bfin/bfin.c:2708
#, gcc-internal-format
msgid "multiple function type attributes specified"
msgstr ""

#: config/bfin/bfin.c:2764
#, gcc-internal-format
msgid "`%s' attribute only applies to functions"
msgstr ""

#: config/bfin/bfin.c:2775
#, gcc-internal-format
msgid "can't apply both longcall and shortcall attributes to the same function"
msgstr ""

#: config/c4x/c4x-c.c:72
#, gcc-internal-format
msgid "missing '(' after '#pragma %s' - ignored"
msgstr ""

#: config/c4x/c4x-c.c:75
#, gcc-internal-format
msgid "missing function name in '#pragma %s' - ignored"
msgstr ""

#: config/c4x/c4x-c.c:80
#, gcc-internal-format
msgid "malformed '#pragma %s' - ignored"
msgstr ""

#: config/c4x/c4x-c.c:82
#, gcc-internal-format
msgid "missing section name in '#pragma %s' - ignored"
msgstr ""

#: config/c4x/c4x-c.c:87
#, gcc-internal-format
msgid "missing ')' for '#pragma %s' - ignored"
msgstr ""

#: config/c4x/c4x-c.c:90
#, gcc-internal-format
msgid "junk at end of '#pragma %s'"
msgstr ""

#: config/c4x/c4x.c:860
#, gcc-internal-format
msgid "ISR %s requires %d words of local vars, max is 32767"
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:434
#, gcc-internal-format
msgid "MULT case in cris_op_str"
msgstr ""

#: config/cris/cris.c:812
#, gcc-internal-format
msgid "invalid use of ':' modifier"
msgstr ""

#: config/cris/cris.c:978
#, gcc-internal-format
msgid "internal error: bad register: %d"
msgstr ""

#: config/cris/cris.c:1445
#, gcc-internal-format
msgid "internal error: sideeffect-insn affecting main effect"
msgstr ""

#: config/cris/cris.c:1469
#, gcc-internal-format
msgid "unknown cc_attr value"
msgstr ""

#. If we get here, the caller got its initial tests wrong.
#: config/cris/cris.c:1820
#, gcc-internal-format
msgid "internal error: cris_side_effect_mode_ok with bad operands"
msgstr ""

#: config/cris/cris.c:2023
#, gcc-internal-format
msgid "-max-stackframe=%d is not usable, not between 0 and %d"
msgstr ""

#: config/cris/cris.c:2051
#, gcc-internal-format
msgid "unknown CRIS version specification in -march= or -mcpu= : %s"
msgstr ""

#: config/cris/cris.c:2087
#, gcc-internal-format
msgid "unknown CRIS cpu version specification in -mtune= : %s"
msgstr ""

#: config/cris/cris.c:2105
#, gcc-internal-format
msgid "-fPIC and -fpic are not supported in this configuration"
msgstr ""

#: config/cris/cris.c:2120
#, gcc-internal-format
msgid "that particular -g option is invalid with -maout and -melinux"
msgstr ""

#: config/cris/cris.c:2314
#, gcc-internal-format
msgid "Unknown src"
msgstr ""

#: config/cris/cris.c:2356
#, gcc-internal-format
msgid "Unknown dest"
msgstr ""

#: config/cris/cris.c:2641
#, gcc-internal-format
msgid "stackframe too big: %d bytes"
msgstr ""

#: config/cris/cris.c:3057 config/cris/cris.c:3084
#, gcc-internal-format
msgid "expand_binop failed in movsi got"
msgstr ""

#: config/cris/cris.c:3149
#, gcc-internal-format
msgid "emitting PIC operand, but PIC register isn't set up"
msgstr ""

#. 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:
#. <subchapter>' 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 "CRIS-port assertion failed: "
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:867
#, gcc-internal-format
msgid "no FUNCTION_PROFILER for CRIS"
msgstr ""

#: config/crx/crx.h:355
#, gcc-internal-format
msgid "Profiler support for CRX"
msgstr ""

#: config/crx/crx.h:366
#, gcc-internal-format
msgid "Trampoline support for CRX"
msgstr ""

#: config/frv/frv.c:8623
#, gcc-internal-format
msgid "accumulator is not a constant integer"
msgstr ""

#: config/frv/frv.c:8628
#, gcc-internal-format
msgid "accumulator number is out of bounds"
msgstr ""

#: config/frv/frv.c:8639
#, gcc-internal-format
msgid "inappropriate accumulator for %qs"
msgstr ""

#: config/frv/frv.c:8717
#, gcc-internal-format
msgid "invalid IACC argument"
msgstr ""

#: config/frv/frv.c:8740
#, gcc-internal-format
msgid "%qs expects a constant argument"
msgstr ""

#: config/frv/frv.c:8745
#, gcc-internal-format
msgid "constant argument out of range for %qs"
msgstr ""

#: config/frv/frv.c:9227
#, gcc-internal-format
msgid "media functions are not available unless -mmedia is used"
msgstr ""

#: config/frv/frv.c:9239
#, gcc-internal-format
msgid "this media function is only available on the fr500"
msgstr ""

#: config/frv/frv.c:9267
#, gcc-internal-format
msgid "this media function is only available on the fr400 and fr550"
msgstr ""

#: config/frv/frv.c:9286
#, gcc-internal-format
msgid "this builtin function is only available on the fr405 and fr450"
msgstr ""

#: config/frv/frv.c:9295
#, gcc-internal-format
msgid "this builtin function is only available on the fr500 and fr550"
msgstr ""

#: config/frv/frv.c:9307
#, gcc-internal-format
msgid "this builtin function is only available on the fr450"
msgstr ""

#: config/h8300/h8300.c:331
#, gcc-internal-format
msgid "-ms2600 is used without -ms"
msgstr ""

#: config/h8300/h8300.c:337
#, gcc-internal-format
msgid "-mn is used without -mh or -ms"
msgstr ""

#: config/i386/host-cygwin.c:65
#, gcc-internal-format
msgid "can't extend PCH file: %m"
msgstr ""

#: config/i386/host-cygwin.c:76
#, gcc-internal-format
msgid "can't set position in PCH file: %m"
msgstr ""

#: config/i386/i386.c:1316
#, gcc-internal-format
msgid "code model %s not supported in PIC mode"
msgstr ""

#: config/i386/i386.c:1324 config/sparc/sparc.c:662
#, gcc-internal-format
msgid "bad value (%s) for -mcmodel= switch"
msgstr ""

#: config/i386/i386.c:1339
#, gcc-internal-format
msgid "bad value (%s) for -masm= switch"
msgstr ""

#: config/i386/i386.c:1342
#, gcc-internal-format
msgid "code model %qs not supported in the %s bit mode"
msgstr ""

#: config/i386/i386.c:1345
#, gcc-internal-format
msgid "code model %<large%> not supported yet"
msgstr ""

#: config/i386/i386.c:1347
#, gcc-internal-format
msgid "%i-bit mode not compiled in"
msgstr ""

#: config/i386/i386.c:1377 config/i386/i386.c:1401
#, gcc-internal-format
msgid "CPU you selected does not support x86-64 instruction set"
msgstr ""

#: config/i386/i386.c:1383
#, gcc-internal-format
msgid "bad value (%s) for -march= switch"
msgstr ""

#: config/i386/i386.c:1414
#, gcc-internal-format
msgid "bad value (%s) for -mtune= switch"
msgstr ""

#: config/i386/i386.c:1431
#, gcc-internal-format
msgid "-mregparm=%d is not between 0 and %d"
msgstr ""

#: config/i386/i386.c:1444
#, gcc-internal-format
msgid "-malign-loops is obsolete, use -falign-loops"
msgstr ""

#: config/i386/i386.c:1449 config/i386/i386.c:1462 config/i386/i386.c:1475
#, gcc-internal-format
msgid "-malign-loops=%d is not between 0 and %d"
msgstr ""

#: config/i386/i386.c:1457
#, gcc-internal-format
msgid "-malign-jumps is obsolete, use -falign-jumps"
msgstr ""

#: config/i386/i386.c:1470
#, gcc-internal-format
msgid "-malign-functions is obsolete, use -falign-functions"
msgstr ""

#: config/i386/i386.c:1508
#, gcc-internal-format
msgid "-mpreferred-stack-boundary=%d is not between %d and 12"
msgstr ""

#: config/i386/i386.c:1520
#, gcc-internal-format
msgid "-mbranch-cost=%d is not between 0 and 5"
msgstr ""

#: config/i386/i386.c:1528
#, gcc-internal-format
msgid "-mlarge-data-threshold=%d is negative"
msgstr ""

#: config/i386/i386.c:1540
#, gcc-internal-format
msgid "bad value (%s) for -mtls-dialect= switch"
msgstr ""

#: config/i386/i386.c:1587
#, gcc-internal-format
msgid "-malign-double makes no sense in the 64bit mode"
msgstr ""

#: config/i386/i386.c:1589
#, gcc-internal-format
msgid "-mrtd calling convention not supported in the 64bit mode"
msgstr ""

#: config/i386/i386.c:1609
#, gcc-internal-format
msgid "-msseregparm used without SSE enabled"
msgstr ""

#: config/i386/i386.c:1621 config/i386/i386.c:1632
#, gcc-internal-format
msgid "SSE instruction set disabled, using 387 arithmetics"
msgstr ""

#: config/i386/i386.c:1637
#, gcc-internal-format
msgid "387 instruction set disabled, using SSE arithmetics"
msgstr ""

#: config/i386/i386.c:1644
#, gcc-internal-format
msgid "bad value (%s) for -mfpmath= switch"
msgstr ""

#: config/i386/i386.c:2006 config/i386/i386.c:2048
#, gcc-internal-format
msgid "fastcall and regparm attributes are not compatible"
msgstr ""

#: config/i386/i386.c:2013
#, gcc-internal-format
msgid "%qs attribute requires an integer constant argument"
msgstr ""

#: config/i386/i386.c:2019
#, gcc-internal-format
msgid "argument to %qs attribute larger than %d"
msgstr ""

#: config/i386/i386.c:2040 config/i386/i386.c:2075
#, gcc-internal-format
msgid "fastcall and cdecl attributes are not compatible"
msgstr ""

#: config/i386/i386.c:2044
#, gcc-internal-format
msgid "fastcall and stdcall attributes are not compatible"
msgstr ""

#: config/i386/i386.c:2058 config/i386/i386.c:2071
#, gcc-internal-format
msgid "stdcall and cdecl attributes are not compatible"
msgstr ""

#: config/i386/i386.c:2062
#, gcc-internal-format
msgid "stdcall and fastcall attributes are not compatible"
msgstr ""

#: config/i386/i386.c:2179
#, gcc-internal-format
msgid "Calling %qD with attribute sseregparm without SSE/SSE2 enabled"
msgstr ""

#: config/i386/i386.c:2182
#, gcc-internal-format
msgid "Calling %qT with attribute sseregparm without SSE/SSE2 enabled"
msgstr ""

#: config/i386/i386.c:2907
#, gcc-internal-format
msgid "SSE register return with SSE disabled"
msgstr ""

#: config/i386/i386.c:2909
#, gcc-internal-format
msgid "SSE register argument with SSE disabled"
msgstr ""

#: config/i386/i386.c:3224
#, gcc-internal-format
msgid "SSE vector argument without SSE enabled changes the ABI"
msgstr ""

#: config/i386/i386.c:3241
#, gcc-internal-format
msgid "MMX vector argument without MMX enabled changes the ABI"
msgstr ""

#: config/i386/i386.c:3506
#, gcc-internal-format
msgid "SSE vector return without SSE enabled changes the ABI"
msgstr ""

#: config/i386/i386.c:3516
#, gcc-internal-format
msgid "MMX vector return without MMX enabled changes the ABI"
msgstr ""

#: config/i386/i386.c:6741
#, gcc-internal-format
msgid "extended registers have no high halves"
msgstr ""

#: config/i386/i386.c:6756
#, gcc-internal-format
msgid "unsupported operand size for extended register"
msgstr ""

#: config/i386/i386.c:15008 config/rs6000/rs6000.c:7108
#, gcc-internal-format
msgid "selector must be an integer constant in the range 0..%wi"
msgstr ""

#: config/i386/i386.c:15346
#, gcc-internal-format
msgid "shift must be an immediate"
msgstr ""

#: config/i386/i386.c:16516
#, gcc-internal-format
msgid "%qs incompatible attribute ignored"
msgstr ""

#: config/i386/winnt.c:74
#, gcc-internal-format
msgid "%qs attribute only applies to variables"
msgstr ""

#: config/i386/winnt.c:103
#, gcc-internal-format
msgid ""
"%qs attribute applies only to initialized variables with external linkage"
msgstr ""

#: config/i386/winnt.c:202 config/sh/symbian.c:147
#, gcc-internal-format
msgid ""
"function %q+D is defined after prior declaration as dllimport: attribute "
"ignored"
msgstr ""

#: config/i386/winnt.c:213 config/sh/symbian.c:159
#, gcc-internal-format
msgid "inline function %q+D is declared as dllimport: attribute ignored"
msgstr ""

#: config/i386/winnt.c:225 config/sh/symbian.c:173
#, gcc-internal-format
msgid "definition of static data member %q+D of dllimport'd class"
msgstr ""

#: config/i386/winnt.c:282
#, gcc-internal-format
msgid "inconsistent dll linkage for %q+D, dllexport assumed"
msgstr ""

#: config/i386/winnt.c:323 config/sh/symbian.c:273
#, gcc-internal-format
msgid "%qs declared as both exported to and imported from a DLL"
msgstr ""

#: config/i386/winnt.c:466
#, gcc-internal-format
msgid "%q+D defined locally after being referenced with dllimport linkage"
msgstr ""

#: config/i386/winnt.c:469
#, gcc-internal-format
msgid ""
"%q+D redeclared without dllimport attribute after being referenced with "
"dllimport linkage"
msgstr ""

#: config/i386/winnt.c:637
#, gcc-internal-format
msgid "%q+D causes a section type conflict"
msgstr ""

#: config/i386/cygming.h:166
#, gcc-internal-format
msgid "-f%s ignored for target (all code is position independent)"
msgstr ""

#: config/i386/djgpp.h:181
#, gcc-internal-format
msgid "-mbnu210 is ignored (option is obsolete)"
msgstr ""

#: config/i386/i386-interix.h:257
#, gcc-internal-format
msgid "ms-bitfields not supported for objc"
msgstr ""

#: config/ia64/ia64-c.c:52
#, gcc-internal-format
msgid "malformed #pragma builtin"
msgstr ""

#: config/ia64/ia64.c:505 config/m32r/m32r.c:373
#, gcc-internal-format
msgid "invalid argument of %qs attribute"
msgstr ""

#: config/ia64/ia64.c:517
#, gcc-internal-format
msgid "%Jan address area attribute cannot be specified for local variables"
msgstr ""

#: config/ia64/ia64.c:524
#, gcc-internal-format
msgid "address area of %q+D conflicts with previous declaration"
msgstr ""

#: config/ia64/ia64.c:531
#, gcc-internal-format
msgid "%Jaddress area attribute cannot be specified for functions"
msgstr ""

#: config/ia64/ia64.c:4931 config/pa/pa.c:327
#, gcc-internal-format
msgid "value of -mfixed-range must have form REG1-REG2"
msgstr ""

#: config/ia64/ia64.c:4958 config/pa/pa.c:354
#, gcc-internal-format
msgid "%s-%s is an empty range"
msgstr ""

#: config/ia64/ia64.c:4986
#, gcc-internal-format
msgid "bad value %<%s%> for -mtls-size= switch"
msgstr ""

#: config/ia64/ia64.c:5014
#, gcc-internal-format
msgid "bad value %<%s%> for -mtune= switch"
msgstr ""

#: config/ia64/ia64.c:5033
#, gcc-internal-format
msgid "not yet implemented: latency-optimized inline square root"
msgstr ""

#: config/iq2000/iq2000.c:1808
#, gcc-internal-format
msgid "gp_offset (%ld) or end_offset (%ld) is less than zero"
msgstr ""

#: config/iq2000/iq2000.c:2589
#, gcc-internal-format
msgid "argument %qd is not a constant"
msgstr ""

#: config/iq2000/iq2000.c:2892 config/xtensa/xtensa.c:1773
#, gcc-internal-format
msgid "PRINT_OPERAND_ADDRESS, null pointer"
msgstr ""

#: config/iq2000/iq2000.c:3047
#, gcc-internal-format
msgid "PRINT_OPERAND: Unknown punctuation '%c'"
msgstr ""

#: config/iq2000/iq2000.c:3056 config/mips/mips.c:5390
#: config/xtensa/xtensa.c:1627
#, gcc-internal-format
msgid "PRINT_OPERAND null pointer"
msgstr ""

#: config/m32c/m32c-pragma.c:64
#, gcc-internal-format
msgid "junk at end of #pragma GCC memregs [0..16]"
msgstr ""

#: config/m32c/m32c-pragma.c:71
#, gcc-internal-format
msgid "#pragma GCC memregs must precede any function decls"
msgstr ""

#: config/m32c/m32c-pragma.c:82 config/m32c/m32c-pragma.c:89
#, gcc-internal-format
msgid "#pragma GCC memregs takes a number [0..16]"
msgstr ""

#: config/m32c/m32c.c:412
#, gcc-internal-format
msgid "invalid target memregs value '%d'"
msgstr ""

#: config/m68hc11/m68hc11.c:279
#, gcc-internal-format
msgid "-f%s ignored for 68HC11/68HC12 (not supported)"
msgstr ""

#: config/m68hc11/m68hc11.c:1240
#, gcc-internal-format
msgid "%<trap%> and %<far%> attributes are not compatible, ignoring %<far%>"
msgstr ""

#: config/m68hc11/m68hc11.c:1247
#, gcc-internal-format
msgid "%<trap%> attribute is already used"
msgstr ""

#: config/m68k/m68k.c:321
#, gcc-internal-format
msgid "cannot specify both -msep-data and -mid-shared-library"
msgstr ""

#: config/m68k/m68k.c:333
#, gcc-internal-format
msgid "-fPIC is not currently supported on the 68000 or 68010"
msgstr ""

#: config/m68k/m68k.c:640 config/rs6000/rs6000.c:13591
#, gcc-internal-format
msgid "stack limit expression is not supported"
msgstr ""

#: config/mips/mips.c:4584
#, gcc-internal-format
msgid ""
"-%s conflicts with the other architecture options, which specify a %s "
"processor"
msgstr ""

#: config/mips/mips.c:4600
#, gcc-internal-format
msgid "-march=%s is not compatible with the selected ABI"
msgstr ""

#: config/mips/mips.c:4618
#, gcc-internal-format
msgid "-mgp64 used with a 32-bit processor"
msgstr ""

#: config/mips/mips.c:4620
#, gcc-internal-format
msgid "-mgp32 used with a 64-bit ABI"
msgstr ""

#: config/mips/mips.c:4622
#, gcc-internal-format
msgid "-mgp64 used with a 32-bit ABI"
msgstr ""

#: config/mips/mips.c:4640 config/mips/mips.c:4642 config/mips/mips.c:4644
#: config/mips/mips.c:4720
#, gcc-internal-format
msgid "unsupported combination: %s"
msgstr ""

#: config/mips/mips.c:4715
#, gcc-internal-format
msgid ""
"generation of Branch Likely instructions enabled, but not supported by "
"architecture"
msgstr ""

#: config/mips/mips.c:4732
#, gcc-internal-format
msgid "-G is incompatible with PIC code which is the default"
msgstr ""

#: config/mips/mips.c:4799
#, gcc-internal-format
msgid "-mips3d requires -mpaired-single"
msgstr ""

#: config/mips/mips.c:4808
#, gcc-internal-format
msgid "-mips3d/-mpaired-single must be used with -mfp64 -mhard-float"
msgstr ""

#: config/mips/mips.c:4813
#, gcc-internal-format
msgid "-mips3d/-mpaired-single must be used with -mips64"
msgstr ""

#: config/mips/mips.c:4816
#, gcc-internal-format
msgid "-mips16 and -mdsp cannot be used together"
msgstr ""

#: config/mips/mips.c:5327
#, gcc-internal-format
msgid "internal error: %%) found without a %%( in assembler pattern"
msgstr ""

#: config/mips/mips.c:5341
#, gcc-internal-format
msgid "internal error: %%] found without a %%[ in assembler pattern"
msgstr ""

#: config/mips/mips.c:5354
#, gcc-internal-format
msgid "internal error: %%> found without a %%< in assembler pattern"
msgstr ""

#: config/mips/mips.c:5367
#, gcc-internal-format
msgid "internal error: %%} found without a %%{ in assembler pattern"
msgstr ""

#: config/mips/mips.c:5381
#, gcc-internal-format
msgid "PRINT_OPERAND: unknown punctuation '%c'"
msgstr ""

#: config/mips/mips.c:8131
#, gcc-internal-format
msgid "cannot handle inconsistent calls to %qs"
msgstr ""

#: config/mips/mips.c:9530
#, gcc-internal-format
msgid "the cpu name must be lower case"
msgstr ""

#: config/mips/mips.c:10196
#, gcc-internal-format
msgid "invalid argument to builtin function"
msgstr ""

#. Output assembler code to FILE to increment profiler label # LABELNO
#. for profiling a function entry.
#: config/mips/mips.h:2106
#, gcc-internal-format
msgid "mips16 function profiling"
msgstr ""

#: config/mmix/mmix.c:227
#, gcc-internal-format
msgid "-f%s not supported: ignored"
msgstr ""

#: config/mmix/mmix.c:655
#, gcc-internal-format
msgid "support for mode %qs"
msgstr ""

#: config/mmix/mmix.c:669
#, gcc-internal-format
msgid ""
"too large function value type, needs %d registers, have only %d registers "
"for this"
msgstr ""

#: config/mmix/mmix.c:839
#, gcc-internal-format
msgid "function_profiler support for MMIX"
msgstr ""

#: config/mmix/mmix.c:861
#, gcc-internal-format
msgid "MMIX Internal: Last named vararg would not fit in a register"
msgstr ""

#: config/mmix/mmix.c:1476 config/mmix/mmix.c:1500 config/mmix/mmix.c:1616
#, gcc-internal-format
msgid "MMIX Internal: Bad register: %d"
msgstr ""

#. Presumably there's a missing case above if we get here.
#: config/mmix/mmix.c:1608
#, gcc-internal-format
msgid "MMIX Internal: Missing %qc case in mmix_print_operand"
msgstr ""

#: config/mmix/mmix.c:1894
#, gcc-internal-format
msgid "stack frame not a multiple of 8 bytes: %wd"
msgstr ""

#: config/mmix/mmix.c:2130
#, gcc-internal-format
msgid "stack frame not a multiple of octabyte: %wd"
msgstr ""

#: config/mmix/mmix.c:2470 config/mmix/mmix.c:2534
#, gcc-internal-format
msgid "MMIX Internal: %s is not a shiftable int"
msgstr ""

#: config/pa/pa.c:459
#, gcc-internal-format
msgid "PIC code generation is not supported in the portable runtime model"
msgstr ""

#: config/pa/pa.c:464
#, gcc-internal-format
msgid "PIC code generation is not compatible with fast indirect calls"
msgstr ""

#: config/pa/pa.c:469
#, gcc-internal-format
msgid "-g is only supported when using GAS on this processor,"
msgstr ""

#: config/pa/pa.c:470
#, gcc-internal-format
msgid "-g option disabled"
msgstr ""

#: config/pa/pa.c:7980
#, gcc-internal-format
msgid ""
"alignment (%u) for %s exceeds maximum alignment for global common data.  "
"Using %u"
msgstr ""

#: config/pa/pa-hpux11.h:85
#, gcc-internal-format
msgid "-munix=98 option required for C89 Amendment 1 features.\n"
msgstr ""

#: config/rs6000/host-darwin.c:52
#, gcc-internal-format
msgid "Segmentation Fault (code)"
msgstr ""

#: config/rs6000/host-darwin.c:117
#, gcc-internal-format
msgid "Segmentation Fault"
msgstr ""

#: config/rs6000/host-darwin.c:131
#, gcc-internal-format
msgid "While setting up signal stack: %m"
msgstr ""

#: config/rs6000/host-darwin.c:137
#, gcc-internal-format
msgid "While setting up signal handler: %m"
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:53
#, gcc-internal-format
msgid "ignoring malformed #pragma longcall"
msgstr ""

#: config/rs6000/rs6000-c.c:66
#, gcc-internal-format
msgid "missing open paren"
msgstr ""

#: config/rs6000/rs6000-c.c:68
#, gcc-internal-format
msgid "missing number"
msgstr ""

#: config/rs6000/rs6000-c.c:70
#, gcc-internal-format
msgid "missing close paren"
msgstr ""

#: config/rs6000/rs6000-c.c:73
#, gcc-internal-format
msgid "number must be 0 or 1"
msgstr ""

#: config/rs6000/rs6000-c.c:76
#, gcc-internal-format
msgid "junk at end of #pragma longcall"
msgstr ""

#: config/rs6000/rs6000-c.c:2520
#, gcc-internal-format
msgid "passing arg %d of %qE discards qualifiers frompointer target type"
msgstr ""

#: config/rs6000/rs6000-c.c:2563
#, gcc-internal-format
msgid "invalid parameter combination for AltiVec intrinsic"
msgstr ""

#: config/rs6000/rs6000.c:1247
#, gcc-internal-format
msgid "-mmultiple is not supported on little endian systems"
msgstr ""

#: config/rs6000/rs6000.c:1254
#, gcc-internal-format
msgid "-mstring is not supported on little endian systems"
msgstr ""

#: config/rs6000/rs6000.c:1268
#, gcc-internal-format
msgid "unknown -mdebug-%s switch"
msgstr ""

#: config/rs6000/rs6000.c:1280
#, gcc-internal-format
msgid ""
"unknown -mtraceback arg %qs; expecting %<full%>, %<partial%> or %<none%>"
msgstr ""

#: config/rs6000/rs6000.c:1321
#, gcc-internal-format
msgid "AltiVec and E500 instructions cannot coexist"
msgstr ""

#: config/rs6000/rs6000.c:1550
#, gcc-internal-format
msgid "unknown -m%s= option specified: '%s'"
msgstr ""

#: config/rs6000/rs6000.c:1752
#, gcc-internal-format
msgid "not configured for ABI: '%s'"
msgstr ""

#: config/rs6000/rs6000.c:1762
#, gcc-internal-format
msgid "Using darwin64 ABI"
msgstr ""

#: config/rs6000/rs6000.c:1767
#, gcc-internal-format
msgid "Using old darwin ABI"
msgstr ""

#: config/rs6000/rs6000.c:1772
#, gcc-internal-format
msgid "unknown ABI specified: '%s'"
msgstr ""

#: config/rs6000/rs6000.c:1799
#, gcc-internal-format
msgid "invalid option for -mfloat-gprs: '%s'"
msgstr ""

#: config/rs6000/rs6000.c:1809
#, gcc-internal-format
msgid "Unknown switch -mlong-double-%s"
msgstr ""

#: config/rs6000/rs6000.c:1830
#, gcc-internal-format
msgid ""
"-malign-power is not supported for 64-bit Darwin; it is incompatible with "
"the installed C and C++ libraries"
msgstr ""

#: config/rs6000/rs6000.c:1838
#, gcc-internal-format
msgid "unknown -malign-XXXXX option specified: '%s'"
msgstr ""

#: config/rs6000/rs6000.c:4182
#, gcc-internal-format
msgid ""
"GCC vector returned by reference: non-standard ABI extension with no "
"compatibility guarantee"
msgstr ""

#: config/rs6000/rs6000.c:4255
#, gcc-internal-format
msgid ""
"cannot return value in vector register because altivec instructions are "
"disabled, use -maltivec to enable them"
msgstr ""

#: config/rs6000/rs6000.c:4501
#, gcc-internal-format
msgid ""
"cannot pass argument in vector register because altivec instructions are "
"disabled, use -maltivec to enable them"
msgstr ""

#: config/rs6000/rs6000.c:5353
#, gcc-internal-format
msgid ""
"GCC vector passed by reference: non-standard ABI extension with no "
"compatibility guarantee"
msgstr ""

#: config/rs6000/rs6000.c:6522
#, gcc-internal-format
msgid "argument 1 must be a 5-bit signed literal"
msgstr ""

#: config/rs6000/rs6000.c:6625 config/rs6000/rs6000.c:7419
#, gcc-internal-format
msgid "argument 2 must be a 5-bit unsigned literal"
msgstr ""

#: config/rs6000/rs6000.c:6665
#, gcc-internal-format
msgid "argument 1 of __builtin_altivec_predicate must be a constant"
msgstr ""

#: config/rs6000/rs6000.c:6718
#, gcc-internal-format
msgid "argument 1 of __builtin_altivec_predicate is out of range"
msgstr ""

#: config/rs6000/rs6000.c:6880
#, gcc-internal-format
msgid "argument 3 must be a 4-bit unsigned literal"
msgstr ""

#: config/rs6000/rs6000.c:7052
#, gcc-internal-format
msgid "argument to %qs must be a 2-bit unsigned literal"
msgstr ""

#: config/rs6000/rs6000.c:7196
#, gcc-internal-format
msgid "unresolved overload for Altivec builtin %qF"
msgstr ""

#: config/rs6000/rs6000.c:7278
#, gcc-internal-format
msgid "argument to dss must be a 2-bit unsigned literal"
msgstr ""

#: config/rs6000/rs6000.c:7539
#, gcc-internal-format
msgid "argument 1 of __builtin_spe_predicate must be a constant"
msgstr ""

#: config/rs6000/rs6000.c:7611
#, gcc-internal-format
msgid "argument 1 of __builtin_spe_predicate is out of range"
msgstr ""

#: config/rs6000/rs6000.c:13554
#, gcc-internal-format
msgid "stack frame too large"
msgstr ""

#: config/rs6000/rs6000.c:16114
#, gcc-internal-format
msgid "no profiling of 64-bit code for this ABI"
msgstr ""

#: config/rs6000/rs6000.c:17225
#, gcc-internal-format
msgid "use of %<long%> in AltiVec types is invalid for 64-bit code"
msgstr ""

#: config/rs6000/rs6000.c:17227
#, gcc-internal-format
msgid "use of %<long%> in AltiVec types is deprecated; use %<int%>"
msgstr ""

#: config/rs6000/rs6000.c:17231
#, gcc-internal-format
msgid "use of %<long long%> in AltiVec types is invalid"
msgstr ""

#: config/rs6000/rs6000.c:17233
#, gcc-internal-format
msgid "use of %<double%> in AltiVec types is invalid"
msgstr ""

#: config/rs6000/rs6000.c:17235
#, gcc-internal-format
msgid "use of %<long double%> in AltiVec types is invalid"
msgstr ""

#: config/rs6000/rs6000.c:17237
#, gcc-internal-format
msgid "use of boolean types in AltiVec types is invalid"
msgstr ""

#: config/rs6000/rs6000.c:17239
#, gcc-internal-format
msgid "use of %<complex%> in AltiVec types is invalid"
msgstr ""

#: config/rs6000/aix43.h:39 config/rs6000/aix51.h:38 config/rs6000/aix52.h:38
#, gcc-internal-format
msgid "-maix64 and POWER architecture are incompatible"
msgstr ""

#: config/rs6000/aix43.h:44 config/rs6000/aix51.h:43 config/rs6000/aix52.h:43
#, gcc-internal-format
msgid "-maix64 requires PowerPC64 architecture remain enabled"
msgstr ""

#: config/rs6000/aix43.h:48 config/rs6000/aix51.h:47 config/rs6000/aix52.h:47
#, gcc-internal-format
msgid ""
"-maix64 required: 64-bit computation with 32-bit addressing not yet supported"
msgstr ""

#. The Darwin ABI always includes AltiVec, can't be (validly) turned
#. off.
#: config/rs6000/darwin.h:74
#, gcc-internal-format
msgid "-mdynamic-no-pic overrides -fpic or -fPIC"
msgstr ""

#. Darwin doesn't support -fpic.
#: config/rs6000/darwin.h:80
#, gcc-internal-format
msgid "-fpic is not supported; -fPIC assumed"
msgstr ""

#: config/rs6000/darwin.h:87
#, gcc-internal-format
msgid "-m64 requires PowerPC64 architecture, enabling"
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
#, gcc-internal-format
msgid "-m64 not supported in this configuration"
msgstr ""

#: config/rs6000/linux64.h:109
#, gcc-internal-format
msgid "-m64 requires a PowerPC64 cpu"
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:1579
#, gcc-internal-format
msgid "RETURN_ADDRESS_OFFSET not supported"
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
#, gcc-internal-format
msgid "bad value for -mcall-%s"
msgstr ""

#: config/rs6000/sysv4.h:146
#, gcc-internal-format
msgid "bad value for -msdata=%s"
msgstr ""

#: config/rs6000/sysv4.h:163
#, gcc-internal-format
msgid "-mrelocatable and -msdata=%s are incompatible"
msgstr ""

#: config/rs6000/sysv4.h:172
#, gcc-internal-format
msgid "-f%s and -msdata=%s are incompatible"
msgstr ""

#: config/rs6000/sysv4.h:181
#, gcc-internal-format
msgid "-msdata=%s and -mcall-%s are incompatible"
msgstr ""

#: config/rs6000/sysv4.h:190
#, gcc-internal-format
msgid "-mrelocatable and -mno-minimal-toc are incompatible"
msgstr ""

#: config/rs6000/sysv4.h:196
#, gcc-internal-format
msgid "-mrelocatable and -mcall-%s are incompatible"
msgstr ""

#: config/rs6000/sysv4.h:203
#, gcc-internal-format
msgid "-fPIC and -mcall-%s are incompatible"
msgstr ""

#: config/rs6000/sysv4.h:210
#, gcc-internal-format
msgid "-mcall-aixdesc must be big endian"
msgstr ""

#: config/rs6000/sysv4.h:215
#, gcc-internal-format
msgid "-msecure-plt not supported by your assembler"
msgstr ""

#: config/rs6000/sysv4.h:230
#, gcc-internal-format
msgid "-m%s not supported in this configuration"
msgstr ""

#: config/s390/s390.c:1275
#, gcc-internal-format
msgid "stack guard value must be an exact power of 2"
msgstr ""

#: config/s390/s390.c:1282
#, gcc-internal-format
msgid "stack size must be an exact power of 2"
msgstr ""

#: config/s390/s390.c:1330
#, gcc-internal-format
msgid "z/Architecture mode not supported on %s"
msgstr ""

#: config/s390/s390.c:1332
#, gcc-internal-format
msgid "64-bit ABI not supported in ESA/390 mode"
msgstr ""

#: config/s390/s390.c:1343
#, gcc-internal-format
msgid ""
"-mbackchain -mpacked-stack -mhard-float are not supported in combination"
msgstr ""

#: config/s390/s390.c:1349
#, gcc-internal-format
msgid "-mstack-size implies use of -mstack-guard"
msgstr ""

#: config/s390/s390.c:1351
#, gcc-internal-format
msgid "stack size must be greater than the stack guard value"
msgstr ""

#: config/s390/s390.c:1354
#, gcc-internal-format
msgid "-mstack-guard implies use of -mstack-size"
msgstr ""

#: config/s390/s390.c:6041
#, gcc-internal-format
msgid "total size of local variables exceeds architecture limit"
msgstr ""

#: config/s390/s390.c:6574
#, gcc-internal-format
msgid "frame size of %qs is "
msgstr ""

#: config/s390/s390.c:6574
#, gcc-internal-format
msgid " bytes"
msgstr ""

#: config/s390/s390.c:6578
#, gcc-internal-format
msgid "%qs uses dynamic stack allocation"
msgstr ""

#: config/sh/sh.c:6420
#, gcc-internal-format
msgid "__builtin_saveregs not supported by this subtarget"
msgstr ""

#: config/sh/sh.c:7448
#, gcc-internal-format
msgid "attribute interrupt_handler is not compatible with -m5-compact"
msgstr ""

#. The sp_switch attribute only has meaning for interrupt functions.
#. The trap_exit attribute only has meaning for interrupt functions.
#: config/sh/sh.c:7470 config/sh/sh.c:7505
#, gcc-internal-format
msgid "%qs attribute only applies to interrupt functions"
msgstr ""

#. The argument must be a constant string.
#: config/sh/sh.c:7477
#, gcc-internal-format
msgid "%qs attribute argument not a string constant"
msgstr ""

#. The argument must be a constant integer.
#: config/sh/sh.c:7512
#, gcc-internal-format
msgid "%qs attribute argument not an integer constant"
msgstr ""

#: config/sh/sh.c:9531
#, gcc-internal-format
msgid "r0 needs to be available as a call-clobbered register"
msgstr ""

#: config/sh/sh.c:9552
#, gcc-internal-format
msgid "Need a second call-clobbered general purpose register"
msgstr ""

#: config/sh/sh.c:9560
#, gcc-internal-format
msgid "Need a call-clobbered target register"
msgstr ""

#: config/sh/symbian.c:280
#, gcc-internal-format
msgid ""
"failure in redeclaration of %q+D: dllimport'd symbol lacks external linkage"
msgstr ""

#: config/sh/symbian.c:326
#, gcc-internal-format
msgid "%s %q+D %s after being referenced with dllimport linkage"
msgstr ""

#: config/sh/symbian.c:892 cp/tree.c:2293
#, gcc-internal-format
msgid "lang_* check: failed in %s, at %s:%d"
msgstr ""

#. FIXME
#: config/sh/netbsd-elf.h:95
#, gcc-internal-format
msgid "unimplemented-shmedia profiling"
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
#, gcc-internal-format
msgid "profiling is still experimental for this target"
msgstr ""

#: config/sparc/sparc.c:635
#, gcc-internal-format
msgid "%s is not supported by this configuration"
msgstr ""

#: config/sparc/sparc.c:642
#, gcc-internal-format
msgid "-mlong-double-64 not allowed with -m64"
msgstr ""

#: config/sparc/sparc.c:667
#, gcc-internal-format
msgid "-mcmodel= is not supported on 32 bit systems"
msgstr ""

#: config/stormy16/stormy16.c:497
#, gcc-internal-format
msgid "constant halfword load operand out of range"
msgstr ""

#: config/stormy16/stormy16.c:507
#, gcc-internal-format
msgid "constant arithmetic operand out of range"
msgstr ""

#: config/stormy16/stormy16.c:1108
#, gcc-internal-format
msgid "local variable memory requirements exceed capacity"
msgstr ""

#: config/stormy16/stormy16.c:1274
#, gcc-internal-format
msgid "function_profiler support"
msgstr ""

#: config/stormy16/stormy16.c:1363
#, gcc-internal-format
msgid "cannot use va_start in interrupt function"
msgstr ""

#: config/stormy16/stormy16.c:1895
#, gcc-internal-format
msgid "switch statement of size %lu entries too large"
msgstr ""

#: config/stormy16/stormy16.c:2263
#, gcc-internal-format
msgid "%<__BELOW100__%> attribute only applies to variables"
msgstr ""

#: config/stormy16/stormy16.c:2270
#, gcc-internal-format
msgid "__BELOW100__ attribute not allowed with auto storage class"
msgstr ""

#: config/v850/v850-c.c:67
#, gcc-internal-format
msgid "#pragma GHS endXXXX found without previous startXXX"
msgstr ""

#: config/v850/v850-c.c:70
#, gcc-internal-format
msgid "#pragma GHS endXXX does not match previous startXXX"
msgstr ""

#: config/v850/v850-c.c:96
#, gcc-internal-format
msgid "cannot set interrupt attribute: no current function"
msgstr ""

#: config/v850/v850-c.c:104
#, gcc-internal-format
msgid "cannot set interrupt attribute: no such identifier"
msgstr ""

#: config/v850/v850-c.c:149
#, gcc-internal-format
msgid "junk at end of #pragma ghs section"
msgstr ""

#: config/v850/v850-c.c:166
#, gcc-internal-format
msgid "unrecognized section name \"%s\""
msgstr ""

#: config/v850/v850-c.c:181
#, gcc-internal-format
msgid "malformed #pragma ghs section"
msgstr ""

#: config/v850/v850-c.c:200
#, gcc-internal-format
msgid "junk at end of #pragma ghs interrupt"
msgstr ""

#: config/v850/v850-c.c:211
#, gcc-internal-format
msgid "junk at end of #pragma ghs starttda"
msgstr ""

#: config/v850/v850-c.c:222
#, gcc-internal-format
msgid "junk at end of #pragma ghs startsda"
msgstr ""

#: config/v850/v850-c.c:233
#, gcc-internal-format
msgid "junk at end of #pragma ghs startzda"
msgstr ""

#: config/v850/v850-c.c:244
#, gcc-internal-format
msgid "junk at end of #pragma ghs endtda"
msgstr ""

#: config/v850/v850-c.c:255
#, gcc-internal-format
msgid "junk at end of #pragma ghs endsda"
msgstr ""

#: config/v850/v850-c.c:266
#, gcc-internal-format
msgid "junk at end of #pragma ghs endzda"
msgstr ""

#: config/v850/v850.c:172
#, gcc-internal-format
msgid "value passed to %<-m%s%> is too large"
msgstr ""

#: config/v850/v850.c:2140
#, gcc-internal-format
msgid "%Jdata area attributes cannot be specified for local variables"
msgstr ""

#: config/v850/v850.c:2151
#, gcc-internal-format
msgid "data area of %q+D conflicts with previous declaration"
msgstr ""

#: config/v850/v850.c:2281
#, gcc-internal-format
msgid "bogus JR construction: %d"
msgstr ""

#: config/v850/v850.c:2299 config/v850/v850.c:2408
#, gcc-internal-format
msgid "bad amount of stack space removal: %d"
msgstr ""

#: config/v850/v850.c:2388
#, gcc-internal-format
msgid "bogus JARL construction: %d\n"
msgstr ""

#: config/v850/v850.c:2687
#, gcc-internal-format
msgid "bogus DISPOSE construction: %d"
msgstr ""

#: config/v850/v850.c:2706
#, gcc-internal-format
msgid "too much stack space to dispose of: %d"
msgstr ""

#: config/v850/v850.c:2808
#, gcc-internal-format
msgid "bogus PREPEARE construction: %d"
msgstr ""

#: config/v850/v850.c:2827
#, gcc-internal-format
msgid "too much stack space to prepare: %d"
msgstr ""

#: config/xtensa/xtensa.c:1505
#, gcc-internal-format
msgid "boolean registers required for the floating-point option"
msgstr ""

#: config/xtensa/xtensa.c:1551
#, gcc-internal-format
msgid "-f%s is not supported with CONST16 instructions"
msgstr ""

#: config/xtensa/xtensa.c:1556
#, gcc-internal-format
msgid "PIC is required but not supported with CONST16 instructions"
msgstr ""

#: config/xtensa/xtensa.c:2414
#, gcc-internal-format
msgid "only uninitialized variables can be placed in a .bss section"
msgstr ""

#: ada/misc.c:262
#, gcc-internal-format
msgid "missing argument to \"-%s\""
msgstr ""

#: ada/misc.c:303
#, gcc-internal-format
msgid "%<-gnat%> misspelled as %<-gant%>"
msgstr ""

#: cp/call.c:289
#, gcc-internal-format
msgid "unable to call pointer to member function here"
msgstr ""

#: cp/call.c:2392
#, gcc-internal-format
msgid "%s %D(%T, %T, %T) <built-in>"
msgstr ""

#: cp/call.c:2397
#, gcc-internal-format
msgid "%s %D(%T, %T) <built-in>"
msgstr ""

#: cp/call.c:2401
#, gcc-internal-format
msgid "%s %D(%T) <built-in>"
msgstr ""

#: cp/call.c:2405
#, gcc-internal-format
msgid "%s %T <conversion>"
msgstr ""

#: cp/call.c:2407
#, gcc-internal-format
msgid "%s %+#D <near match>"
msgstr ""

#: cp/call.c:2409 cp/pt.c:1287
#, gcc-internal-format
msgid "%s %+#D"
msgstr ""

#: cp/call.c:2631
#, gcc-internal-format
msgid "conversion from %qT to %qT is ambiguous"
msgstr ""

#: cp/call.c:2784 cp/call.c:2842
#, gcc-internal-format
msgid "no matching function for call to %<%D(%A)%>"
msgstr ""

#: cp/call.c:2787 cp/call.c:2845
#, gcc-internal-format
msgid "call of overloaded %<%D(%A)%> is ambiguous"
msgstr ""

#. It's no good looking for an overloaded operator() on a
#. pointer-to-member-function.
#: cp/call.c:2913
#, gcc-internal-format
msgid ""
"pointer-to-member function %E cannot be called without an object; consider "
"using .* or ->*"
msgstr ""

#: cp/call.c:2982
#, gcc-internal-format
msgid "no match for call to %<(%T) (%A)%>"
msgstr ""

#: cp/call.c:2991
#, gcc-internal-format
msgid "call of %<(%T) (%A)%> is ambiguous"
msgstr ""

#: cp/call.c:3029
#, gcc-internal-format
msgid "%s for ternary %<operator?:%> in %<%E ? %E : %E%>"
msgstr ""

#: cp/call.c:3035
#, gcc-internal-format
msgid "%s for %<operator%s%> in %<%E%s%>"
msgstr ""

#: cp/call.c:3039
#, gcc-internal-format
msgid "%s for %<operator[]%> in %<%E[%E]%>"
msgstr ""

#: cp/call.c:3044
#, gcc-internal-format
msgid "%s for %qs in %<%s %E%>"
msgstr ""

#: cp/call.c:3049
#, gcc-internal-format
msgid "%s for %<operator%s%> in %<%E %s %E%>"
msgstr ""

#: cp/call.c:3052
#, gcc-internal-format
msgid "%s for %<operator%s%> in %<%s%E%>"
msgstr ""

#: cp/call.c:3144
#, gcc-internal-format
msgid "ISO C++ forbids omitting the middle term of a ?: expression"
msgstr ""

#: cp/call.c:3221
#, gcc-internal-format
msgid "%qE has type %<void%> and is not a throw-expression"
msgstr ""

#: cp/call.c:3260 cp/call.c:3470
#, gcc-internal-format
msgid "operands to ?: have different types"
msgstr ""

#: cp/call.c:3424
#, gcc-internal-format
msgid "enumeral mismatch in conditional expression: %qT vs %qT"
msgstr ""

#: cp/call.c:3431
#, gcc-internal-format
msgid "enumeral and non-enumeral type in conditional expression"
msgstr ""

#: cp/call.c:3725
#, gcc-internal-format
msgid "no %<%D(int)%> declared for postfix %qs, trying prefix operator instead"
msgstr ""

#: cp/call.c:3798
#, gcc-internal-format
msgid "comparison between %q#T and %q#T"
msgstr ""

#: cp/call.c:4057
#, gcc-internal-format
msgid "no suitable %<operator %s%> for %qT"
msgstr ""

#: cp/call.c:4074
#, gcc-internal-format
msgid "%q+#D is private"
msgstr ""

#: cp/call.c:4076
#, gcc-internal-format
msgid "%q+#D is protected"
msgstr ""

#: cp/call.c:4078
#, gcc-internal-format
msgid "%q+#D is inaccessible"
msgstr ""

#: cp/call.c:4079
#, gcc-internal-format
msgid "within this context"
msgstr ""

#: cp/call.c:4168 cp/cvt.c:264
#, gcc-internal-format
msgid "invalid conversion from %qT to %qT"
msgstr ""

#: cp/call.c:4170
#, gcc-internal-format
msgid "  initializing argument %P of %qD"
msgstr ""

#: cp/call.c:4182
#, gcc-internal-format
msgid "passing NULL to non-pointer argument %P of %qD"
msgstr ""

#: cp/call.c:4185
#, gcc-internal-format
msgid "converting to non-pointer type %qT from NULL"
msgstr ""

#: cp/call.c:4193
#, gcc-internal-format
msgid "passing %qT for argument %P to %qD"
msgstr ""

#: cp/call.c:4196
#, gcc-internal-format
msgid "converting to %qT from %qT"
msgstr ""

#: cp/call.c:4205
#, gcc-internal-format
msgid "passing negative value %qE for argument %P to %qD"
msgstr ""

#: cp/call.c:4208
#, gcc-internal-format
msgid "converting negative value %qE to %qT"
msgstr ""

#: cp/call.c:4350
#, gcc-internal-format
msgid "cannot bind bitfield %qE to %qT"
msgstr ""

#: cp/call.c:4353 cp/call.c:4369
#, gcc-internal-format
msgid "cannot bind packed field %qE to %qT"
msgstr ""

#: cp/call.c:4356
#, gcc-internal-format
msgid "cannot bind rvalue %qE to %qT"
msgstr ""

#: cp/call.c:4465
#, gcc-internal-format
msgid ""
"cannot pass objects of non-POD type %q#T through %<...%>; call will abort at "
"runtime"
msgstr ""

#. Undefined behavior [expr.call] 5.2.2/7.
#: cp/call.c:4491
#, gcc-internal-format
msgid ""
"cannot receive objects of non-POD type %q#T through %<...%>; call will abort "
"at runtime"
msgstr ""

#: cp/call.c:4534
#, gcc-internal-format
msgid "the default argument for parameter %d of %qD has not yet been parsed"
msgstr ""

#: cp/call.c:4613
#, gcc-internal-format
msgid "argument of function call might be a candidate for a format attribute"
msgstr ""

#: cp/call.c:4750
#, gcc-internal-format
msgid "passing %qT as %<this%> argument of %q#D discards qualifiers"
msgstr ""

#: cp/call.c:4769
#, gcc-internal-format
msgid "%qT is not an accessible base of %qT"
msgstr ""

#: cp/call.c:5019
#, gcc-internal-format
msgid "could not find class$ field in java interface type %qT"
msgstr ""

#: cp/call.c:5279
#, gcc-internal-format
msgid "call to non-function %qD"
msgstr ""

#: cp/call.c:5304
#, gcc-internal-format
msgid "request for member %qD in %qE, which is of non-aggregate type %qT"
msgstr ""

#: cp/call.c:5383
#, gcc-internal-format
msgid "no matching function for call to %<%T::%s(%A)%#V%>"
msgstr ""

#: cp/call.c:5401
#, gcc-internal-format
msgid "call of overloaded %<%s(%A)%> is ambiguous"
msgstr ""

#: cp/call.c:5425
#, gcc-internal-format
msgid "cannot call member function %qD without object"
msgstr ""

#: cp/call.c:6030
#, gcc-internal-format
msgid "passing %qT chooses %qT over %qT"
msgstr ""

#: cp/call.c:6032 cp/name-lookup.c:4172
#, gcc-internal-format
msgid "  in call to %qD"
msgstr ""

#: cp/call.c:6089
#, gcc-internal-format
msgid "choosing %qD over %qD"
msgstr ""

#: cp/call.c:6090
#, gcc-internal-format
msgid "  for conversion from %qT to %qT"
msgstr ""

#: cp/call.c:6092
#, gcc-internal-format
msgid "  because conversion sequence for the argument is better"
msgstr ""

#: cp/call.c:6212
#, gcc-internal-format
msgid ""
"ISO C++ says that these are ambiguous, even though the worst conversion for "
"the first is better than the worst conversion for the second:"
msgstr ""

#: cp/call.c:6356
#, gcc-internal-format
msgid "could not convert %qE to %qT"
msgstr ""

#: cp/call.c:6488
#, gcc-internal-format
msgid ""
"invalid initialization of non-const reference of type %qT from a temporary "
"of type %qT"
msgstr ""

#: cp/call.c:6492
#, gcc-internal-format
msgid ""
"invalid initialization of reference of type %qT from expression of type %qT"
msgstr ""

#: cp/class.c:274
#, gcc-internal-format
msgid "cannot convert from base %qT to derived type %qT via virtual base %qT"
msgstr ""

#: cp/class.c:931
#, gcc-internal-format
msgid "Java class %qT cannot have a destructor"
msgstr ""

#: cp/class.c:933
#, gcc-internal-format
msgid "Java class %qT cannot have an implicit non-trivial destructor"
msgstr ""

#: cp/class.c:1034
#, gcc-internal-format
msgid "repeated using declaration %q+D"
msgstr ""

#: cp/class.c:1036
#, gcc-internal-format
msgid "using declaration %q+D conflicts with a previous using declaration"
msgstr ""

#: cp/class.c:1041
#, gcc-internal-format
msgid "%q+#D cannot be overloaded"
msgstr ""

#: cp/class.c:1042
#, gcc-internal-format
msgid "with %q+#D"
msgstr ""

#: cp/class.c:1097
#, gcc-internal-format
msgid "conflicting access specifications for method %q+D, ignored"
msgstr ""

#: cp/class.c:1100
#, gcc-internal-format
msgid "conflicting access specifications for field %qE, ignored"
msgstr ""

#: cp/class.c:1161 cp/class.c:1169
#, gcc-internal-format
msgid "%q+D invalid in %q#T"
msgstr ""

#: cp/class.c:1162
#, gcc-internal-format
msgid "  because of local method %q+#D with same name"
msgstr ""

#: cp/class.c:1170
#, gcc-internal-format
msgid "  because of local member %q+#D with same name"
msgstr ""

#: cp/class.c:1212
#, gcc-internal-format
msgid "base class %q#T has a non-virtual destructor"
msgstr ""

#: cp/class.c:1526
#, gcc-internal-format
msgid "all member functions in class %qT are private"
msgstr ""

#: cp/class.c:1537
#, gcc-internal-format
msgid "%q#T only defines a private destructor and has no friends"
msgstr ""

#: cp/class.c:1577
#, gcc-internal-format
msgid "%q#T only defines private constructors and has no friends"
msgstr ""

#: cp/class.c:1910
#, gcc-internal-format
msgid "no unique final overrider for %qD in %qT"
msgstr ""

#. Here we know it is a hider, and no overrider exists.
#: cp/class.c:2388
#, gcc-internal-format
msgid "%q+D was hidden"
msgstr ""

#: cp/class.c:2389
#, gcc-internal-format
msgid "  by %q+D"
msgstr ""

#: cp/class.c:2430 cp/decl2.c:1085
#, gcc-internal-format
msgid "%q+#D invalid; an anonymous union can only have non-static data members"
msgstr ""

#: cp/class.c:2436 cp/decl2.c:1091
#, gcc-internal-format
msgid "private member %q+#D in anonymous union"
msgstr ""

#: cp/class.c:2438 cp/decl2.c:1093
#, gcc-internal-format
msgid "protected member %q+#D in anonymous union"
msgstr ""

#: cp/class.c:2604
#, gcc-internal-format
msgid "bit-field %q+#D with non-integral type"
msgstr ""

#: cp/class.c:2621
#, gcc-internal-format
msgid "bit-field %q+D width not an integer constant"
msgstr ""

#: cp/class.c:2626
#, gcc-internal-format
msgid "negative width in bit-field %q+D"
msgstr ""

#: cp/class.c:2631
#, gcc-internal-format
msgid "zero width for bit-field %q+D"
msgstr ""

#: cp/class.c:2637
#, gcc-internal-format
msgid "width of %q+D exceeds its type"
msgstr ""

#: cp/class.c:2646
#, gcc-internal-format
msgid "%q+D is too small to hold all values of %q#T"
msgstr ""

#: cp/class.c:2705
#, gcc-internal-format
msgid "member %q+#D with constructor not allowed in union"
msgstr ""

#: cp/class.c:2708
#, gcc-internal-format
msgid "member %q+#D with destructor not allowed in union"
msgstr ""

#: cp/class.c:2710
#, gcc-internal-format
msgid "member %q+#D with copy assignment operator not allowed in union"
msgstr ""

#: cp/class.c:2733
#, gcc-internal-format
msgid "multiple fields in union %qT initialized"
msgstr ""

#: cp/class.c:2795
#, gcc-internal-format
msgid "ignoring packed attribute on unpacked non-POD field %q+#D"
msgstr ""

#: cp/class.c:2855
#, gcc-internal-format
msgid "%q+D may not be static because it is a member of a union"
msgstr ""

#: cp/class.c:2860
#, gcc-internal-format
msgid "%q+D may not have reference type %qT because it is a member of a union"
msgstr ""

#: cp/class.c:2869
#, gcc-internal-format
msgid "field %q+D in local class cannot be static"
msgstr ""

#: cp/class.c:2875
#, gcc-internal-format
msgid "field %q+D invalidly declared function type"
msgstr ""

#: cp/class.c:2881
#, gcc-internal-format
msgid "field %q+D invalidly declared method type"
msgstr ""

#: cp/class.c:2913
#, gcc-internal-format
msgid "non-static reference %q+#D in class without a constructor"
msgstr ""

#: cp/class.c:2960
#, gcc-internal-format
msgid "non-static const member %q+#D in class without a constructor"
msgstr ""

#: cp/class.c:2975
#, gcc-internal-format
msgid "field %q+#D with same name as class"
msgstr ""

#: cp/class.c:3008
#, gcc-internal-format
msgid "%q#T has pointer data members"
msgstr ""

#: cp/class.c:3012
#, gcc-internal-format
msgid "  but does not override %<%T(const %T&)%>"
msgstr ""

#: cp/class.c:3014
#, gcc-internal-format
msgid "  or %<operator=(const %T&)%>"
msgstr ""

#: cp/class.c:3017
#, gcc-internal-format
msgid "  but does not override %<operator=(const %T&)%>"
msgstr ""

#: cp/class.c:3450
#, gcc-internal-format
msgid ""
"offset of empty base %qT may not be ABI-compliant and maychange in a future "
"version of GCC"
msgstr ""

#: cp/class.c:3562
#, gcc-internal-format
msgid "class %qT will be considered nearly empty in a future version of GCC"
msgstr ""

#: cp/class.c:3644
#, gcc-internal-format
msgid "initializer specified for non-virtual method %q+D"
msgstr ""

#: cp/class.c:4306
#, gcc-internal-format
msgid ""
"offset of virtual base %qT is not ABI-compliant and may change in a future "
"version of GCC"
msgstr ""

#: cp/class.c:4405
#, gcc-internal-format
msgid "direct base %qT inaccessible in %qT due to ambiguity"
msgstr ""

#: cp/class.c:4417
#, gcc-internal-format
msgid "virtual base %qT inaccessible in %qT due to ambiguity"
msgstr ""

#: cp/class.c:4594
#, gcc-internal-format
msgid ""
"size assigned to %qT may not be ABI-compliant and may change in a future "
"version of GCC"
msgstr ""

#. Versions of G++ before G++ 3.4 did not reset the
#. DECL_MODE.
#: cp/class.c:4633
#, gcc-internal-format
msgid ""
"the offset of %qD may not be ABI-compliant and may change in a future "
"version of GCC"
msgstr ""

#: cp/class.c:4661
#, gcc-internal-format
msgid ""
"offset of %q+D is not ABI-compliant and may change in a future version of GCC"
msgstr ""

#: cp/class.c:4670
#, gcc-internal-format
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/class.c:4729
#, gcc-internal-format
msgid ""
"layout of classes derived from empty class %qT may change in a future "
"version of GCC"
msgstr ""

#: cp/class.c:4870 cp/parser.c:13061
#, gcc-internal-format
msgid "redefinition of %q#T"
msgstr ""

#: cp/class.c:5020
#, gcc-internal-format
msgid "%q#T has virtual functions but non-virtual destructor"
msgstr ""

#: cp/class.c:5117
#, gcc-internal-format
msgid "trying to finish struct, but kicked out due to previous parse errors"
msgstr ""

#: cp/class.c:5533
#, gcc-internal-format
msgid "language string %<\"%E\"%> not recognized"
msgstr ""

#: cp/class.c:5619
#, gcc-internal-format
msgid "cannot resolve overloaded function %qD based on conversion to type %qT"
msgstr ""

#: cp/class.c:5745
#, gcc-internal-format
msgid "no matches converting function %qD to type %q#T"
msgstr ""

#: cp/class.c:5768
#, gcc-internal-format
msgid "converting overloaded function %qD to type %q#T is ambiguous"
msgstr ""

#: cp/class.c:5794
#, gcc-internal-format
msgid "assuming pointer to member %qD"
msgstr ""

#: cp/class.c:5797
#, gcc-internal-format
msgid "(a pointer to member can only be formed with %<&%E%>)"
msgstr ""

#: cp/class.c:5842 cp/class.c:5873 cp/class.c:6025 cp/class.c:6032
#, gcc-internal-format
msgid "not enough type information"
msgstr ""

#: cp/class.c:5859
#, gcc-internal-format
msgid "argument of type %qT does not match %qT"
msgstr ""

#: cp/class.c:6009
#, gcc-internal-format
msgid "invalid operation on uninstantiated type"
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:6246 cp/decl.c:1096 cp/name-lookup.c:507
#, gcc-internal-format
msgid "declaration of %q#D"
msgstr ""

#: cp/class.c:6247
#, gcc-internal-format
msgid "changes meaning of %qD from %q+#D"
msgstr ""

#: cp/cp-gimplify.c:120
#, gcc-internal-format
msgid "continue statement not within loop or switch"
msgstr ""

#: cp/cp-gimplify.c:365
#, gcc-internal-format
msgid "statement with no effect"
msgstr ""

#: cp/cvt.c:91
#, gcc-internal-format
msgid "can't convert from incomplete type %qT to %qT"
msgstr ""

#: cp/cvt.c:100
#, gcc-internal-format
msgid "conversion of %qE from %qT to %qT is ambiguous"
msgstr ""

#: cp/cvt.c:169 cp/cvt.c:238 cp/cvt.c:285
#, gcc-internal-format
msgid "cannot convert %qE from type %qT to type %qT"
msgstr ""

#: cp/cvt.c:198 cp/cvt.c:202
#, gcc-internal-format
msgid "pointer to member cast from %qT to %qT is via virtual base"
msgstr ""

#: cp/cvt.c:498
#, gcc-internal-format
msgid "conversion from %qT to %qT discards qualifiers"
msgstr ""

#: cp/cvt.c:516 cp/typeck.c:4869
#, gcc-internal-format
msgid "casting %qT to %qT does not dereference pointer"
msgstr ""

#: cp/cvt.c:543
#, gcc-internal-format
msgid "cannot convert type %qT to type %qT"
msgstr ""

#: cp/cvt.c:679
#, gcc-internal-format
msgid "conversion from %q#T to %q#T"
msgstr ""

#: cp/cvt.c:691 cp/cvt.c:711
#, gcc-internal-format
msgid "%q#T used where a %qT was expected"
msgstr ""

#: cp/cvt.c:726
#, gcc-internal-format
msgid "%q#T used where a floating point value was expected"
msgstr ""

#: cp/cvt.c:773
#, gcc-internal-format
msgid "conversion from %qT to non-scalar type %qT requested"
msgstr ""

#: cp/cvt.c:807
#, gcc-internal-format
msgid "pseudo-destructor is not called"
msgstr ""

#: cp/cvt.c:866
#, gcc-internal-format
msgid "object of incomplete type %qT will not be accessed in %s"
msgstr ""

#: cp/cvt.c:869
#, gcc-internal-format
msgid "object of type %qT will not be accessed in %s"
msgstr ""

#: cp/cvt.c:885
#, gcc-internal-format
msgid "object %qE of incomplete type %qT will not be accessed in %s"
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
#, gcc-internal-format
msgid "%s cannot resolve address of overloaded function"
msgstr ""

#. Only warn when there is no &.
#: cp/cvt.c:907
#, gcc-internal-format
msgid "%s is a reference, not call, to function %qE"
msgstr ""

#: cp/cvt.c:918
#, gcc-internal-format
msgid "%s has no effect"
msgstr ""

#: cp/cvt.c:950
#, gcc-internal-format
msgid "value computed is not used"
msgstr ""

#: cp/cvt.c:1058
#, gcc-internal-format
msgid "converting NULL to non-pointer type"
msgstr ""

#: cp/cvt.c:1131
#, gcc-internal-format
msgid "ambiguous default type conversion from %qT"
msgstr ""

#: cp/cvt.c:1133
#, gcc-internal-format
msgid "  candidate conversions include %qD and %qD"
msgstr ""

#: cp/decl.c:1002
#, gcc-internal-format
msgid "%qD was declared %<extern%> and later %<static%>"
msgstr ""

#: cp/decl.c:1003 cp/decl.c:1465 objc/objc-act.c:2947 objc/objc-act.c:7513
#, gcc-internal-format
msgid "previous declaration of %q+D"
msgstr ""

#: cp/decl.c:1051
#, gcc-internal-format
msgid "function %q+D redeclared as inline"
msgstr ""

#: cp/decl.c:1053
#, gcc-internal-format
msgid "previous declaration of %q+D with attribute noinline"
msgstr ""

#: cp/decl.c:1060
#, gcc-internal-format
msgid "function %q+D redeclared with attribute noinline"
msgstr ""

#: cp/decl.c:1062
#, gcc-internal-format
msgid "previous declaration of %q+D was inline"
msgstr ""

#: cp/decl.c:1083 cp/decl.c:1154
#, gcc-internal-format
msgid "shadowing %s function %q#D"
msgstr ""

#: cp/decl.c:1092
#, gcc-internal-format
msgid "library function %q#D redeclared as non-function %q#D"
msgstr ""

#: cp/decl.c:1097
#, gcc-internal-format
msgid "conflicts with built-in declaration %q#D"
msgstr ""

#: cp/decl.c:1149 cp/decl.c:1257 cp/decl.c:1273
#, gcc-internal-format
msgid "new declaration %q#D"
msgstr ""

#: cp/decl.c:1150
#, gcc-internal-format
msgid "ambiguates built-in declaration %q#D"
msgstr ""

#: cp/decl.c:1221
#, gcc-internal-format
msgid "%q#D redeclared as different kind of symbol"
msgstr ""

#: cp/decl.c:1224
#, gcc-internal-format
msgid "previous declaration of %q+#D"
msgstr ""

#: cp/decl.c:1243
#, gcc-internal-format
msgid "declaration of template %q#D"
msgstr ""

#: cp/decl.c:1244 cp/name-lookup.c:508
#, gcc-internal-format
msgid "conflicts with previous declaration %q+#D"
msgstr ""

#: cp/decl.c:1258 cp/decl.c:1274
#, gcc-internal-format
msgid "ambiguates old declaration %q+#D"
msgstr ""

#: cp/decl.c:1266
#, gcc-internal-format
msgid "declaration of C function %q#D conflicts with"
msgstr ""

#: cp/decl.c:1268
#, gcc-internal-format
msgid "previous declaration %q+#D here"
msgstr ""

#: cp/decl.c:1281
#, gcc-internal-format
msgid "conflicting declaration %q#D"
msgstr ""

#: cp/decl.c:1282
#, gcc-internal-format
msgid "%q+D has a previous declaration as %q#D"
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:1334
#, gcc-internal-format
msgid "declaration of namespace %qD conflicts with"
msgstr ""

#: cp/decl.c:1335
#, gcc-internal-format
msgid "previous declaration of namespace %q+D here"
msgstr ""

#: cp/decl.c:1346
#, gcc-internal-format
msgid "%q+#D previously defined here"
msgstr ""

#: cp/decl.c:1347
#, gcc-internal-format
msgid "%q+#D previously declared here"
msgstr ""

#. Prototype decl follows defn w/o prototype.
#: cp/decl.c:1356
#, gcc-internal-format
msgid "prototype for %q+#D"
msgstr ""

#: cp/decl.c:1357
#, gcc-internal-format
msgid "%Jfollows non-prototype definition here"
msgstr ""

#: cp/decl.c:1369
#, gcc-internal-format
msgid "previous declaration of %q+#D with %qL linkage"
msgstr ""

#: cp/decl.c:1371
#, gcc-internal-format
msgid "conflicts with new declaration with %qL linkage"
msgstr ""

#: cp/decl.c:1394 cp/decl.c:1400
#, gcc-internal-format
msgid "default argument given for parameter %d of %q#D"
msgstr ""

#: cp/decl.c:1396 cp/decl.c:1402
#, gcc-internal-format
msgid "after previous specification in %q+#D"
msgstr ""

#: cp/decl.c:1411
#, gcc-internal-format
msgid "%q#D was used before it was declared inline"
msgstr ""

#: cp/decl.c:1412
#, gcc-internal-format
msgid "%Jprevious non-inline declaration here"
msgstr ""

#: cp/decl.c:1464
#, gcc-internal-format
msgid "redundant redeclaration of %qD in same scope"
msgstr ""

#: cp/decl.c:1558
#, gcc-internal-format
msgid "declaration of %qF throws different exceptions"
msgstr ""

#: cp/decl.c:1560
#, gcc-internal-format
msgid "than previous declaration %q+F"
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:1721
#, gcc-internal-format
msgid "explicit specialization of %qD after first use"
msgstr ""

#: cp/decl.c:1800
#, gcc-internal-format
msgid "%q+D: visibility attribute ignored because it"
msgstr ""

#: cp/decl.c:1802
#, gcc-internal-format
msgid "%Jconflicts with previous declaration here"
msgstr ""

#: cp/decl.c:2175 cp/decl.c:2197
#, gcc-internal-format
msgid "jump to label %qD"
msgstr ""

#: cp/decl.c:2177 cp/decl.c:2199
#, gcc-internal-format
msgid "jump to case label"
msgstr ""

#: cp/decl.c:2180 cp/decl.c:2202
#, gcc-internal-format
msgid "%H  from here"
msgstr ""

#: cp/decl.c:2185
#, gcc-internal-format
msgid "  crosses initialization of %q+#D"
msgstr ""

#: cp/decl.c:2187 cp/decl.c:2301
#, gcc-internal-format
msgid "  enters scope of non-POD %q+#D"
msgstr ""

#: cp/decl.c:2206 cp/decl.c:2305
#, gcc-internal-format
msgid "  enters try block"
msgstr ""

#: cp/decl.c:2208 cp/decl.c:2307
#, gcc-internal-format
msgid "  enters catch block"
msgstr ""

#: cp/decl.c:2285
#, gcc-internal-format
msgid "jump to label %q+D"
msgstr ""

#: cp/decl.c:2286
#, gcc-internal-format
msgid "  from here"
msgstr ""

#. Can't skip init of __exception_info.
#: cp/decl.c:2297
#, gcc-internal-format
msgid "%J  enters catch block"
msgstr ""

#: cp/decl.c:2299
#, gcc-internal-format
msgid "  skips initialization of %q+#D"
msgstr ""

#: cp/decl.c:2333
#, gcc-internal-format
msgid "label named wchar_t"
msgstr ""

#: cp/decl.c:2336
#, gcc-internal-format
msgid "duplicate label %qD"
msgstr ""

#: cp/decl.c:2591 cp/parser.c:3610
#, gcc-internal-format
msgid "%qD used without template parameters"
msgstr ""

#: cp/decl.c:2608 cp/decl.c:2699
#, gcc-internal-format
msgid "no class template named %q#T in %q#T"
msgstr ""

#: cp/decl.c:2629 cp/decl.c:2639 cp/decl.c:2659
#, gcc-internal-format
msgid "no type named %q#T in %q#T"
msgstr ""

#: cp/decl.c:2708
#, gcc-internal-format
msgid "template parameters do not match template"
msgstr ""

#: cp/decl.c:2709 cp/friend.c:317 cp/friend.c:325
#, gcc-internal-format
msgid "%q+D declared here"
msgstr ""

#: cp/decl.c:3381
#, gcc-internal-format
msgid "%Jan anonymous union cannot have function members"
msgstr ""

#: cp/decl.c:3399
#, gcc-internal-format
msgid "member %q+#D with constructor not allowed in anonymous aggregate"
msgstr ""

#: cp/decl.c:3402
#, gcc-internal-format
msgid "member %q+#D with destructor not allowed in anonymous aggregate"
msgstr ""

#: cp/decl.c:3405
#, gcc-internal-format
msgid ""
"member %q+#D with copy assignment operator not allowed in anonymous aggregate"
msgstr ""

#: cp/decl.c:3430
#, gcc-internal-format
msgid "multiple types in one declaration"
msgstr ""

#: cp/decl.c:3434
#, gcc-internal-format
msgid "redeclaration of C++ built-in type %qT"
msgstr ""

#: cp/decl.c:3471
#, gcc-internal-format
msgid "missing type-name in typedef-declaration"
msgstr ""

#: cp/decl.c:3479
#, gcc-internal-format
msgid "ISO C++ prohibits anonymous structs"
msgstr ""

#: cp/decl.c:3486
#, gcc-internal-format
msgid "%qs can only be specified for functions"
msgstr ""

#: cp/decl.c:3492
#, gcc-internal-format
msgid "%<friend%> can only be specified inside a class"
msgstr ""

#: cp/decl.c:3494
#, gcc-internal-format
msgid "%<explicit%> can only be specified for constructors"
msgstr ""

#: cp/decl.c:3496
#, gcc-internal-format
msgid "a storage class can only be specified for objects and functions"
msgstr ""

#: cp/decl.c:3502
#, gcc-internal-format
msgid "qualifiers can only be specified for objects and functions"
msgstr ""

#: cp/decl.c:3532
#, gcc-internal-format
msgid "attribute ignored in declaration of %q+#T"
msgstr ""

#: cp/decl.c:3533
#, gcc-internal-format
msgid "attribute for %q+#T must follow the %qs keyword"
msgstr ""

#: cp/decl.c:3655
#, gcc-internal-format
msgid "function %q#D is initialized like a variable"
msgstr ""

#: cp/decl.c:3667
#, gcc-internal-format
msgid "declaration of %q#D has %<extern%> and is initialized"
msgstr ""

#: cp/decl.c:3697
#, gcc-internal-format
msgid "%q#D is not a static member of %q#T"
msgstr ""

#: cp/decl.c:3703
#, gcc-internal-format
msgid "ISO C++ does not permit %<%T::%D%> to be defined as %<%T::%D%>"
msgstr ""

#: cp/decl.c:3712
#, gcc-internal-format
msgid ""
"template header not allowed in member definition of explicitly specialized "
"class"
msgstr ""

#: cp/decl.c:3720
#, gcc-internal-format
msgid "duplicate initialization of %qD"
msgstr ""

#: cp/decl.c:3758
#, gcc-internal-format
msgid "declaration of %q#D outside of class is not definition"
msgstr ""

#: cp/decl.c:3807
#, gcc-internal-format
msgid "variable %q#D has initializer but incomplete type"
msgstr ""

#: cp/decl.c:3814 cp/decl.c:4510
#, gcc-internal-format
msgid "elements of array %q#D have incomplete type"
msgstr ""

#: cp/decl.c:3830
#, gcc-internal-format
msgid "aggregate %q#D has incomplete type and cannot be defined"
msgstr ""

#: cp/decl.c:3880
#, gcc-internal-format
msgid "%qD declared as reference but not initialized"
msgstr ""

#: cp/decl.c:3886
#, gcc-internal-format
msgid "ISO C++ forbids use of initializer list to initialize reference %qD"
msgstr ""

#: cp/decl.c:3912
#, gcc-internal-format
msgid "cannot initialize %qT from %qT"
msgstr ""

#: cp/decl.c:3945
#, gcc-internal-format
msgid "initializer fails to determine size of %qD"
msgstr ""

#: cp/decl.c:3950
#, gcc-internal-format
msgid "array size missing in %qD"
msgstr ""

#: cp/decl.c:3960
#, gcc-internal-format
msgid "zero-size array %qD"
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:3996
#, gcc-internal-format
msgid "storage size of %qD isn't known"
msgstr ""

#: cp/decl.c:4018
#, gcc-internal-format
msgid "storage size of %qD isn't constant"
msgstr ""

#: cp/decl.c:4073
#, gcc-internal-format
msgid ""
"sorry: semantics of inline function static data %q+#D are wrong (you'll wind "
"up with multiple copies)"
msgstr ""

#: cp/decl.c:4076
#, gcc-internal-format
msgid "%J  you can work around this by removing the initializer"
msgstr ""

#: cp/decl.c:4103
#, gcc-internal-format
msgid "uninitialized const %qD"
msgstr ""

#: cp/decl.c:4174
#, gcc-internal-format
msgid "name %qD used in a GNU-style designated initializer for an array"
msgstr ""

#: cp/decl.c:4221
#, gcc-internal-format
msgid "invalid type %qT as initializer for a vector of type %qT"
msgstr ""

#: cp/decl.c:4263
#, gcc-internal-format
msgid "initializer for %qT must be brace-enclosed"
msgstr ""

#: cp/decl.c:4278
#, gcc-internal-format
msgid "ISO C++ does not allow designated initializers"
msgstr ""

#: cp/decl.c:4283
#, gcc-internal-format
msgid "%qT has no non-static data member named %qD"
msgstr ""

#: cp/decl.c:4332
#, gcc-internal-format
msgid "braces around scalar initializer for type %qT"
msgstr ""

#: cp/decl.c:4410
#, gcc-internal-format
msgid "missing braces around initializer for %qT"
msgstr ""

#: cp/decl.c:4466
#, gcc-internal-format
msgid "too many initializers for %qT"
msgstr ""

#: cp/decl.c:4504
#, gcc-internal-format
msgid "variable-sized object %qD may not be initialized"
msgstr ""

#: cp/decl.c:4515
#, gcc-internal-format
msgid "%qD has incomplete type"
msgstr ""

#: cp/decl.c:4562
#, gcc-internal-format
msgid "%qD must be initialized by constructor, not by %<{...}%>"
msgstr ""

#: cp/decl.c:4598
#, gcc-internal-format
msgid "array %qD initialized by parenthesized string literal %qE"
msgstr ""

#: cp/decl.c:4613
#, gcc-internal-format
msgid "structure %qD with uninitialized const members"
msgstr ""

#: cp/decl.c:4615
#, gcc-internal-format
msgid "structure %qD with uninitialized reference members"
msgstr ""

#: cp/decl.c:4817
#, gcc-internal-format
msgid "assignment (not initialization) in declaration"
msgstr ""

#: cp/decl.c:4834
#, gcc-internal-format
msgid "cannot initialize %qD to namespace %qD"
msgstr ""

#: cp/decl.c:4875
#, gcc-internal-format
msgid "shadowing previous type declaration of %q#D"
msgstr ""

#: cp/decl.c:4905
#, gcc-internal-format
msgid "%qD cannot be thread-local because it has non-POD type %qT"
msgstr ""

#: cp/decl.c:4920
#, gcc-internal-format
msgid "%qD is thread-local and so cannot be dynamically initialized"
msgstr ""

#. The static data member cannot be initialized by a
#. non-constant when being declared.
#: cp/decl.c:4928
#, gcc-internal-format
msgid ""
"%qD cannot be initialized by a non-constant expression when being declared"
msgstr ""

#: cp/decl.c:5518
#, gcc-internal-format
msgid "destructor for alien class %qT cannot be a member"
msgstr ""

#: cp/decl.c:5520
#, gcc-internal-format
msgid "constructor for alien class %qT cannot be a member"
msgstr ""

#: cp/decl.c:5541
#, gcc-internal-format
msgid "%qD declared as a %<virtual%> %s"
msgstr ""

#: cp/decl.c:5543
#, gcc-internal-format
msgid "%qD declared as an %<inline%> %s"
msgstr ""

#: cp/decl.c:5545
#, gcc-internal-format
msgid ""
"%<const%> and %<volatile%> function specifiers on %qD invalid in %s "
"declaration"
msgstr ""

#: cp/decl.c:5549
#, gcc-internal-format
msgid "%q+D declared as a friend"
msgstr ""

#: cp/decl.c:5555
#, gcc-internal-format
msgid "%q+D declared with an exception specification"
msgstr ""

#: cp/decl.c:5641
#, gcc-internal-format
msgid "cannot declare %<::main%> to be a template"
msgstr ""

#: cp/decl.c:5643
#, gcc-internal-format
msgid "cannot declare %<::main%> to be inline"
msgstr ""

#: cp/decl.c:5645
#, gcc-internal-format
msgid "cannot declare %<::main%> to be static"
msgstr ""

#: cp/decl.c:5649
#, gcc-internal-format
msgid "%<::main%> must return %<int%>"
msgstr ""

#: cp/decl.c:5679
#, gcc-internal-format
msgid "non-local function %q#D uses anonymous type"
msgstr ""

#: cp/decl.c:5682 cp/decl.c:6018
#, gcc-internal-format
msgid ""
"%q+#D does not refer to the unqualified type, so it is not used for linkage"
msgstr ""

#: cp/decl.c:5688
#, gcc-internal-format
msgid "non-local function %q#D uses local type %qT"
msgstr ""

#: cp/decl.c:5711
#, gcc-internal-format
msgid "%smember function %qD cannot have cv-qualifier"
msgstr ""

#: cp/decl.c:5735
#, gcc-internal-format
msgid "defining explicit specialization %qD in friend declaration"
msgstr ""

#. Something like `template <class T> friend void f<T>()'.
#: cp/decl.c:5745
#, gcc-internal-format
msgid "invalid use of template-id %qD in declaration of primary template"
msgstr ""

#: cp/decl.c:5773
#, gcc-internal-format
msgid ""
"default arguments are not allowed in declaration of friend template "
"specialization %qD"
msgstr ""

#: cp/decl.c:5781
#, gcc-internal-format
msgid ""
"%<inline%> is not allowed in declaration of friend template specialization %"
"qD"
msgstr ""

#: cp/decl.c:5847
#, gcc-internal-format
msgid "definition of implicitly-declared %qD"
msgstr ""

#: cp/decl.c:5867 cp/decl2.c:706
#, gcc-internal-format
msgid "no %q#D member function declared in class %qT"
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:6015
#, gcc-internal-format
msgid "non-local variable %q#D uses anonymous type"
msgstr ""

#: cp/decl.c:6024
#, gcc-internal-format
msgid "non-local variable %q#D uses local type %qT"
msgstr ""

#: cp/decl.c:6141
#, gcc-internal-format
msgid ""
"invalid in-class initialization of static data member of non-integral type %"
"qT"
msgstr ""

#: cp/decl.c:6151
#, gcc-internal-format
msgid "ISO C++ forbids in-class initialization of non-const static member %qD"
msgstr ""

#: cp/decl.c:6155
#, gcc-internal-format
msgid ""
"ISO C++ forbids initialization of member constant %qD of non-integral type %"
"qT"
msgstr ""

#: cp/decl.c:6175
#, gcc-internal-format
msgid "size of array %qD has non-integral type %qT"
msgstr ""

#: cp/decl.c:6177
#, gcc-internal-format
msgid "size of array has non-integral type %qT"
msgstr ""

#: cp/decl.c:6213
#, gcc-internal-format
msgid "size of array %qD is negative"
msgstr ""

#: cp/decl.c:6215
#, gcc-internal-format
msgid "size of array is negative"
msgstr ""

#: cp/decl.c:6223
#, gcc-internal-format
msgid "ISO C++ forbids zero-size array %qD"
msgstr ""

#: cp/decl.c:6225
#, gcc-internal-format
msgid "ISO C++ forbids zero-size array"
msgstr ""

#: cp/decl.c:6232
#, gcc-internal-format
msgid "size of array %qD is not an integral constant-expression"
msgstr ""

#: cp/decl.c:6235
#, gcc-internal-format
msgid "size of array is not an integral constant-expression"
msgstr ""

#: cp/decl.c:6240
#, gcc-internal-format
msgid "ISO C++ forbids variable-size array %qD"
msgstr ""

#: cp/decl.c:6242
#, gcc-internal-format
msgid "ISO C++ forbids variable-size array"
msgstr ""

#: cp/decl.c:6272
#, gcc-internal-format
msgid "overflow in array dimension"
msgstr ""

#: cp/decl.c:6346
#, gcc-internal-format
msgid "declaration of %qD as %s"
msgstr ""

#: cp/decl.c:6348
#, gcc-internal-format
msgid "creating %s"
msgstr ""

#: cp/decl.c:6360
#, gcc-internal-format
msgid ""
"declaration of %qD as multidimensional array must have bounds for all "
"dimensions except the first"
msgstr ""

#: cp/decl.c:6364
#, gcc-internal-format
msgid ""
"multidimensional array must have bounds for all dimensions except the first"
msgstr ""

#: cp/decl.c:6399
#, gcc-internal-format
msgid "return type specification for constructor invalid"
msgstr ""

#: cp/decl.c:6409
#, gcc-internal-format
msgid "return type specification for destructor invalid"
msgstr ""

#: cp/decl.c:6422
#, gcc-internal-format
msgid "operator %qT declared to return %qT"
msgstr ""

#: cp/decl.c:6424
#, gcc-internal-format
msgid "return type specified for %<operator %T%>"
msgstr ""

#: cp/decl.c:6446
#, gcc-internal-format
msgid "unnamed variable or field declared void"
msgstr ""

#: cp/decl.c:6450
#, gcc-internal-format
msgid "variable or field %qE declared void"
msgstr ""

#: cp/decl.c:6453
#, gcc-internal-format
msgid "variable or field declared void"
msgstr ""

#: cp/decl.c:6608
#, gcc-internal-format
msgid "type %qT is not derived from type %qT"
msgstr ""

#: cp/decl.c:6628 cp/decl.c:6720 cp/decl.c:7845
#, gcc-internal-format
msgid "declaration of %qD as non-function"
msgstr ""

#: cp/decl.c:6634
#, gcc-internal-format
msgid "declaration of %qD as non-member"
msgstr ""

#: cp/decl.c:6664
#, gcc-internal-format
msgid "declarator-id missing; using reserved word %qD"
msgstr ""

#: cp/decl.c:6753
#, gcc-internal-format
msgid "two or more data types in declaration of %qs"
msgstr ""

#: cp/decl.c:6796
#, gcc-internal-format
msgid "ISO C++ does not support %<long long%>"
msgstr ""

#: cp/decl.c:6818
#, gcc-internal-format
msgid "duplicate %qs"
msgstr ""

#: cp/decl.c:6856 cp/decl.c:6858
#, gcc-internal-format
msgid "ISO C++ forbids declaration of %qs with no type"
msgstr ""

#: cp/decl.c:6883
#, gcc-internal-format
msgid "short, signed or unsigned invalid for %qs"
msgstr ""

#: cp/decl.c:6885
#, gcc-internal-format
msgid "long, short, signed or unsigned invalid for %qs"
msgstr ""

#: cp/decl.c:6887
#, gcc-internal-format
msgid "long and short specified together for %qs"
msgstr ""

#: cp/decl.c:6889
#, gcc-internal-format
msgid "long or short specified with char for %qs"
msgstr ""

#: cp/decl.c:6891
#, gcc-internal-format
msgid "long or short specified with floating type for %qs"
msgstr ""

#: cp/decl.c:6893
#, gcc-internal-format
msgid "signed and unsigned given together for %qs"
msgstr ""

#: cp/decl.c:6899
#, gcc-internal-format
msgid "long, short, signed or unsigned used invalidly for %qs"
msgstr ""

#: cp/decl.c:6964
#, gcc-internal-format
msgid "complex invalid for %qs"
msgstr ""

#: cp/decl.c:6993
#, gcc-internal-format
msgid "qualifiers are not allowed on declaration of %<operator %T%>"
msgstr ""

#: cp/decl.c:7005 cp/typeck.c:6491
#, gcc-internal-format
msgid "ignoring %qV qualifiers added to function type %qT"
msgstr ""

#: cp/decl.c:7028
#, gcc-internal-format
msgid "member %qD cannot be declared both virtual and static"
msgstr ""

#: cp/decl.c:7035
#, gcc-internal-format
msgid "%<%T::%D%> is not a valid declarator"
msgstr ""

#: cp/decl.c:7043
#, gcc-internal-format
msgid "typedef declaration invalid in parameter declaration"
msgstr ""

#: cp/decl.c:7047
#, gcc-internal-format
msgid "storage class specifiers invalid in parameter declarations"
msgstr ""

#: cp/decl.c:7054
#, gcc-internal-format
msgid "virtual outside class declaration"
msgstr ""

#: cp/decl.c:7068 cp/decl.c:7077
#, gcc-internal-format
msgid "multiple storage classes in declaration of %qs"
msgstr ""

#: cp/decl.c:7100
#, gcc-internal-format
msgid "storage class specified for %qs"
msgstr ""

#: cp/decl.c:7134
#, gcc-internal-format
msgid "top-level declaration of %qs specifies %<auto%>"
msgstr ""

#: cp/decl.c:7146
#, gcc-internal-format
msgid "storage class specifiers invalid in friend function declarations"
msgstr ""

#: cp/decl.c:7272
#, gcc-internal-format
msgid "destructor cannot be static member function"
msgstr ""

#: cp/decl.c:7275
#, gcc-internal-format
msgid "destructors may not be cv-qualified"
msgstr ""

#: cp/decl.c:7295
#, gcc-internal-format
msgid "constructor cannot be static member function"
msgstr ""

#: cp/decl.c:7298
#, gcc-internal-format
msgid "constructors cannot be declared virtual"
msgstr ""

#: cp/decl.c:7303
#, gcc-internal-format
msgid "constructors may not be cv-qualified"
msgstr ""

#: cp/decl.c:7323
#, gcc-internal-format
msgid "can't initialize friend function %qs"
msgstr ""

#. Cannot be both friend and virtual.
#: cp/decl.c:7327
#, gcc-internal-format
msgid "virtual functions cannot be friends"
msgstr ""

#: cp/decl.c:7331
#, gcc-internal-format
msgid "friend declaration not in class definition"
msgstr ""

#: cp/decl.c:7333
#, gcc-internal-format
msgid "can't define friend function %qs in a local class definition"
msgstr ""

#: cp/decl.c:7346
#, gcc-internal-format
msgid "destructors may not have parameters"
msgstr ""

#: cp/decl.c:7365 cp/decl.c:7372
#, gcc-internal-format
msgid "cannot declare reference to %q#T"
msgstr ""

#: cp/decl.c:7366
#, gcc-internal-format
msgid "cannot declare pointer to %q#T"
msgstr ""

#: cp/decl.c:7374
#, gcc-internal-format
msgid "cannot declare pointer to %q#T member"
msgstr ""

#: cp/decl.c:7413
#, gcc-internal-format
msgid "%qD is a namespace"
msgstr ""

#: cp/decl.c:7452
#, gcc-internal-format
msgid "template-id %qD used as a declarator"
msgstr ""

#: cp/decl.c:7499
#, gcc-internal-format
msgid "extra qualification %<%T::%> on member %qs ignored"
msgstr ""

#: cp/decl.c:7518
#, gcc-internal-format
msgid "cannot declare member function %<%T::%s%> within %<%T%>"
msgstr ""

#: cp/decl.c:7533
#, gcc-internal-format
msgid "cannot declare member %<%T::%s%> within %qT"
msgstr ""

#: cp/decl.c:7573
#, gcc-internal-format
msgid "data member may not have variably modified type %qT"
msgstr ""

#: cp/decl.c:7575
#, gcc-internal-format
msgid "parameter may not have variably modified type %qT"
msgstr ""

#. [dcl.fct.spec] The explicit specifier shall only be used in
#. declarations of constructors within a class definition.
#: cp/decl.c:7583
#, gcc-internal-format
msgid "only declarations of constructors can be %<explicit%>"
msgstr ""

#: cp/decl.c:7591
#, gcc-internal-format
msgid "non-member %qs cannot be declared %<mutable%>"
msgstr ""

#: cp/decl.c:7596
#, gcc-internal-format
msgid "non-object member %qs cannot be declared %<mutable%>"
msgstr ""

#: cp/decl.c:7602
#, gcc-internal-format
msgid "function %qs cannot be declared %<mutable%>"
msgstr ""

#: cp/decl.c:7607
#, gcc-internal-format
msgid "static %qs cannot be declared %<mutable%>"
msgstr ""

#: cp/decl.c:7612
#, gcc-internal-format
msgid "const %qs cannot be declared %<mutable%>"
msgstr ""

#: cp/decl.c:7632
#, gcc-internal-format
msgid "%Jtypedef name may not be a nested-name-specifier"
msgstr ""

#: cp/decl.c:7648
#, gcc-internal-format
msgid "ISO C++ forbids nested type %qD with same name as enclosing class"
msgstr ""

#: cp/decl.c:7747
#, gcc-internal-format
msgid "qualified function types cannot be used to declare %s functions"
msgstr ""

#: cp/decl.c:7773
#, gcc-internal-format
msgid "type qualifiers specified for friend class declaration"
msgstr ""

#: cp/decl.c:7778
#, gcc-internal-format
msgid "%<inline%> specified for friend class declaration"
msgstr ""

#: cp/decl.c:7786
#, gcc-internal-format
msgid "template parameters cannot be friends"
msgstr ""

#: cp/decl.c:7788
#, gcc-internal-format
msgid "friend declaration requires class-key, i.e. %<friend class %T::%D%>"
msgstr ""

#: cp/decl.c:7792
#, gcc-internal-format
msgid "friend declaration requires class-key, i.e. %<friend %#T%>"
msgstr ""

#: cp/decl.c:7805
#, gcc-internal-format
msgid "trying to make class %qT a friend of global scope"
msgstr ""

#: cp/decl.c:7816
#, gcc-internal-format
msgid "invalid qualifiers on non-member function type"
msgstr ""

#: cp/decl.c:7835
#, gcc-internal-format
msgid "abstract declarator %qT used as declaration"
msgstr ""

#: cp/decl.c:7860
#, gcc-internal-format
msgid "cannot use %<::%> in parameter declaration"
msgstr ""

#. Something like struct S { int N::j; };
#: cp/decl.c:7905
#, gcc-internal-format
msgid "invalid use of %<::%>"
msgstr ""

#: cp/decl.c:7920
#, gcc-internal-format
msgid "can't make %qD into a method -- not in a class"
msgstr ""

#: cp/decl.c:7929
#, gcc-internal-format
msgid "function %qD declared virtual inside a union"
msgstr ""

#: cp/decl.c:7938
#, gcc-internal-format
msgid "%qD cannot be declared virtual, since it is always static"
msgstr ""

#: cp/decl.c:7956
#, gcc-internal-format
msgid "declaration of %qD as member of %qT"
msgstr ""

#: cp/decl.c:8032
#, gcc-internal-format
msgid "field %qD has incomplete type"
msgstr ""

#: cp/decl.c:8034
#, gcc-internal-format
msgid "name %qT has incomplete type"
msgstr ""

#: cp/decl.c:8043
#, gcc-internal-format
msgid "  in instantiation of template %qT"
msgstr ""

#: cp/decl.c:8053
#, gcc-internal-format
msgid "%qE is neither function nor member function; cannot be declared friend"
msgstr ""

#: cp/decl.c:8064
#, gcc-internal-format
msgid "member functions are implicitly friends of their class"
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:8104
#, gcc-internal-format
msgid "ISO C++ forbids initialization of member %qD"
msgstr ""

#: cp/decl.c:8106
#, gcc-internal-format
msgid "making %qD static"
msgstr ""

#: cp/decl.c:8164
#, gcc-internal-format
msgid "storage class %<auto%> invalid for function %qs"
msgstr ""

#: cp/decl.c:8166
#, gcc-internal-format
msgid "storage class %<register%> invalid for function %qs"
msgstr ""

#: cp/decl.c:8168
#, gcc-internal-format
msgid "storage class %<__thread%> invalid for function %qs"
msgstr ""

#: cp/decl.c:8179
#, gcc-internal-format
msgid ""
"%<static%> specified invalid for function %qs declared out of global scope"
msgstr ""

#: cp/decl.c:8182
#, gcc-internal-format
msgid ""
"%<inline%> specifier invalid for function %qs declared out of global scope"
msgstr ""

#: cp/decl.c:8190
#, gcc-internal-format
msgid "virtual non-class function %qs"
msgstr ""

#: cp/decl.c:8221
#, gcc-internal-format
msgid "cannot declare member function %qD to have static linkage"
msgstr ""

#. FIXME need arm citation
#: cp/decl.c:8228
#, gcc-internal-format
msgid "cannot declare static function inside another function"
msgstr ""

#: cp/decl.c:8257
#, gcc-internal-format
msgid ""
"%<static%> may not be used when defining (as opposed to declaring) a static "
"data member"
msgstr ""

#: cp/decl.c:8264
#, gcc-internal-format
msgid "static member %qD declared %<register%>"
msgstr ""

#: cp/decl.c:8269
#, gcc-internal-format
msgid "cannot explicitly declare member %q#D to have extern linkage"
msgstr ""

#: cp/decl.c:8412
#, gcc-internal-format
msgid "default argument for %q#D has type %qT"
msgstr ""

#: cp/decl.c:8415
#, gcc-internal-format
msgid "default argument for parameter of type %qT has type %qT"
msgstr ""

#: cp/decl.c:8432
#, gcc-internal-format
msgid "default argument %qE uses local variable %qD"
msgstr ""

#: cp/decl.c:8500
#, gcc-internal-format
msgid "parameter %qD invalidly declared method type"
msgstr ""

#: cp/decl.c:8524
#, gcc-internal-format
msgid "parameter %qD includes %s to array of unknown bound %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:8683
#, gcc-internal-format
msgid "invalid constructor; you probably meant %<%T (const %T&)%>"
msgstr ""

#: cp/decl.c:8802
#, gcc-internal-format
msgid "%qD may not be declared within a namespace"
msgstr ""

#: cp/decl.c:8804
#, gcc-internal-format
msgid "%qD may not be declared as static"
msgstr ""

#: cp/decl.c:8825
#, gcc-internal-format
msgid "%qD must be a nonstatic member function"
msgstr ""

#: cp/decl.c:8834
#, gcc-internal-format
msgid ""
"%qD must be either a non-static member function or a non-member function"
msgstr ""

#: cp/decl.c:8854
#, gcc-internal-format
msgid "%qD must have an argument of class or enumerated type"
msgstr ""

#: cp/decl.c:8895
#, gcc-internal-format
msgid "conversion to %s%s will never use a type conversion operator"
msgstr ""

#. 13.4.0.3
#: cp/decl.c:8902
#, gcc-internal-format
msgid "ISO C++ prohibits overloading operator ?:"
msgstr ""

#: cp/decl.c:8952
#, gcc-internal-format
msgid "postfix %qD must take %<int%> as its argument"
msgstr ""

#: cp/decl.c:8956
#, gcc-internal-format
msgid "postfix %qD must take %<int%> as its second argument"
msgstr ""

#: cp/decl.c:8963
#, gcc-internal-format
msgid "%qD must take either zero or one argument"
msgstr ""

#: cp/decl.c:8965
#, gcc-internal-format
msgid "%qD must take either one or two arguments"
msgstr ""

#: cp/decl.c:8986
#, gcc-internal-format
msgid "prefix %qD should return %qT"
msgstr ""

#: cp/decl.c:8992
#, gcc-internal-format
msgid "postfix %qD should return %qT"
msgstr ""

#: cp/decl.c:9001
#, gcc-internal-format
msgid "%qD must take %<void%>"
msgstr ""

#: cp/decl.c:9003 cp/decl.c:9011
#, gcc-internal-format
msgid "%qD must take exactly one argument"
msgstr ""

#: cp/decl.c:9013
#, gcc-internal-format
msgid "%qD must take exactly two arguments"
msgstr ""

#: cp/decl.c:9021
#, gcc-internal-format
msgid "user-defined %qD always evaluates both arguments"
msgstr ""

#: cp/decl.c:9035
#, gcc-internal-format
msgid "%qD should return by value"
msgstr ""

#: cp/decl.c:9047 cp/decl.c:9050
#, gcc-internal-format
msgid "%qD cannot have default arguments"
msgstr ""

#: cp/decl.c:9107
#, gcc-internal-format
msgid "using template type parameter %qT after %qs"
msgstr ""

#: cp/decl.c:9122
#, gcc-internal-format
msgid "using typedef-name %qD after %qs"
msgstr ""

#: cp/decl.c:9123
#, gcc-internal-format
msgid "%q+D has a previous declaration here"
msgstr ""

#: cp/decl.c:9131
#, gcc-internal-format
msgid "%qT referred to as %qs"
msgstr ""

#: cp/decl.c:9132 cp/decl.c:9140
#, gcc-internal-format
msgid "%q+T has a previous declaration here"
msgstr ""

#: cp/decl.c:9139
#, gcc-internal-format
msgid "%qT referred to as enum"
msgstr ""

#. If a class template appears as elaborated type specifier
#. without a template header such as:
#.
#. template <class T> class C {};
#. void f(class C);		// No template header here
#.
#. then the required template argument is missing.
#: cp/decl.c:9154
#, gcc-internal-format
msgid "template argument required for %<%s %T%>"
msgstr ""

#: cp/decl.c:9202 cp/name-lookup.c:2603
#, gcc-internal-format
msgid "%qD has the same name as the class in which it is declared"
msgstr ""

#: cp/decl.c:9340
#, gcc-internal-format
msgid "use of enum %q#D without previous declaration"
msgstr ""

#: cp/decl.c:9358
#, gcc-internal-format
msgid "redeclaration of %qT as a non-template"
msgstr ""

#: cp/decl.c:9465
#, gcc-internal-format
msgid "derived union %qT invalid"
msgstr ""

#: cp/decl.c:9471
#, gcc-internal-format
msgid "Java class %qT cannot have multiple bases"
msgstr ""

#: cp/decl.c:9479
#, gcc-internal-format
msgid "Java class %qT cannot have virtual bases"
msgstr ""

#: cp/decl.c:9498
#, gcc-internal-format
msgid "base type %qT fails to be a struct or class type"
msgstr ""

#: cp/decl.c:9531
#, gcc-internal-format
msgid "recursive type %qT undefined"
msgstr ""

#: cp/decl.c:9533
#, gcc-internal-format
msgid "duplicate base type %qT invalid"
msgstr ""

#: cp/decl.c:9603
#, gcc-internal-format
msgid "multiple definition of %q#T"
msgstr ""

#: cp/decl.c:9604
#, gcc-internal-format
msgid "%Jprevious definition here"
msgstr ""

#. DR 377
#.
#. IF no integral type can represent all the enumerator values, the
#. enumeration is ill-formed.
#: cp/decl.c:9741
#, gcc-internal-format
msgid "no integral type can represent all of the enumerator values for %qT"
msgstr ""

#: cp/decl.c:9847
#, gcc-internal-format
msgid "enumerator value for %qD not integer constant"
msgstr ""

#: cp/decl.c:9874
#, gcc-internal-format
msgid "overflow in enumeration values at %qD"
msgstr ""

#: cp/decl.c:9945
#, gcc-internal-format
msgid "return type %q#T is incomplete"
msgstr ""

#: cp/decl.c:10061 cp/typeck.c:6243
#, gcc-internal-format
msgid "%<operator=%> should return a reference to %<*this%>"
msgstr ""

#: cp/decl.c:10389
#, gcc-internal-format
msgid "parameter %qD declared void"
msgstr ""

#: cp/decl.c:10882
#, gcc-internal-format
msgid "invalid member function declaration"
msgstr ""

#: cp/decl.c:10897
#, gcc-internal-format
msgid "%qD is already defined in class %qT"
msgstr ""

#: cp/decl.c:11107
#, gcc-internal-format
msgid "static member function %q#D declared with type qualifiers"
msgstr ""

#: cp/decl2.c:273
#, gcc-internal-format
msgid "name missing for member function"
msgstr ""

#: cp/decl2.c:366 cp/decl2.c:380
#, gcc-internal-format
msgid "ambiguous conversion for array subscript"
msgstr ""

#: cp/decl2.c:374
#, gcc-internal-format
msgid "invalid types %<%T[%T]%> for array subscript"
msgstr ""

#: cp/decl2.c:417
#, gcc-internal-format
msgid "deleting array %q#D"
msgstr ""

#: cp/decl2.c:423
#, gcc-internal-format
msgid "type %q#T argument given to %<delete%>, expected pointer"
msgstr ""

#: cp/decl2.c:435
#, gcc-internal-format
msgid ""
"cannot delete a function.  Only pointer-to-objects are valid arguments to %"
"<delete%>"
msgstr ""

#: cp/decl2.c:443
#, gcc-internal-format
msgid "deleting %qT is undefined"
msgstr ""

#. 14.5.2.2 [temp.mem]
#.
#. A local class shall not have member templates.
#: cp/decl2.c:479
#, gcc-internal-format
msgid "invalid declaration of member template %q#D in local class"
msgstr ""

#: cp/decl2.c:488
#, gcc-internal-format
msgid "invalid use of %<virtual%> in template declaration of %q#D"
msgstr ""

#: cp/decl2.c:498 cp/pt.c:2975
#, gcc-internal-format
msgid "template declaration of %q#D"
msgstr ""

#: cp/decl2.c:547
#, gcc-internal-format
msgid "Java method %qD has non-Java return type %qT"
msgstr ""

#: cp/decl2.c:563
#, gcc-internal-format
msgid "Java method %qD has non-Java parameter type %qT"
msgstr ""

#: cp/decl2.c:668
#, gcc-internal-format
msgid "prototype for %q#D does not match any in class %qT"
msgstr ""

#: cp/decl2.c:765
#, gcc-internal-format
msgid "local class %q#T shall not have static data member %q#D"
msgstr ""

#: cp/decl2.c:773
#, gcc-internal-format
msgid "initializer invalid for static member with constructor"
msgstr ""

#: cp/decl2.c:776
#, gcc-internal-format
msgid "(an out of class initialization is required)"
msgstr ""

#: cp/decl2.c:857
#, gcc-internal-format
msgid "member %qD conflicts with virtual function table field name"
msgstr ""

#: cp/decl2.c:876
#, gcc-internal-format
msgid "applying attributes to template parameters is not implemented"
msgstr ""

#: cp/decl2.c:886
#, gcc-internal-format
msgid "%qD is already defined in %qT"
msgstr ""

#: cp/decl2.c:907
#, gcc-internal-format
msgid "initializer specified for static member function %qD"
msgstr ""

#: cp/decl2.c:930
#, gcc-internal-format
msgid "field initializer is not constant"
msgstr ""

#: cp/decl2.c:957
#, gcc-internal-format
msgid "%<asm%> specifiers are not permitted on non-static data members"
msgstr ""

#: cp/decl2.c:1003
#, gcc-internal-format
msgid "cannot declare %qD to be a bit-field type"
msgstr ""

#: cp/decl2.c:1013
#, gcc-internal-format
msgid "cannot declare bit-field %qD with function type"
msgstr ""

#: cp/decl2.c:1020
#, gcc-internal-format
msgid "%qD is already defined in the class %qT"
msgstr ""

#: cp/decl2.c:1027
#, gcc-internal-format
msgid "static member %qD cannot be a bit-field"
msgstr ""

#: cp/decl2.c:1072
#, gcc-internal-format
msgid "anonymous struct not inside named type"
msgstr ""

#: cp/decl2.c:1148
#, gcc-internal-format
msgid "namespace-scope anonymous aggregates must be static"
msgstr ""

#: cp/decl2.c:1155
#, gcc-internal-format
msgid "anonymous union with no members"
msgstr ""

#: cp/decl2.c:1191
#, gcc-internal-format
msgid "%<operator new%> must return type %qT"
msgstr ""

#: cp/decl2.c:1200
#, gcc-internal-format
msgid "%<operator new%> takes type %<size_t%> (%qT) as first parameter"
msgstr ""

#: cp/decl2.c:1229
#, gcc-internal-format
msgid "%<operator delete%> must return type %qT"
msgstr ""

#: cp/decl2.c:1238
#, gcc-internal-format
msgid "%<operator delete%> takes type %qT as first parameter"
msgstr ""

#: cp/decl2.c:3062
#, gcc-internal-format
msgid "inline function %q+D used but never defined"
msgstr ""

#: cp/decl2.c:3213
#, gcc-internal-format
msgid "default argument missing for parameter %P of %q+#D"
msgstr ""

#. Can't throw a reference.
#: cp/except.c:267
#, gcc-internal-format
msgid "type %qT is disallowed in Java %<throw%> or %<catch%>"
msgstr ""

#: cp/except.c:278
#, gcc-internal-format
msgid "call to Java %<catch%> or %<throw%> with %<jthrowable%> undefined"
msgstr ""

#. Thrown object must be a Throwable.
#: cp/except.c:285
#, gcc-internal-format
msgid "type %qT is not derived from %<java::lang::Throwable%>"
msgstr ""

#: cp/except.c:348
#, gcc-internal-format
msgid "mixing C++ and Java catches in a single translation unit"
msgstr ""

#: cp/except.c:607
#, gcc-internal-format
msgid "throwing NULL, which has integral, not pointer type"
msgstr ""

#: cp/except.c:630 cp/init.c:1888
#, gcc-internal-format
msgid "%qD should never be overloaded"
msgstr ""

#: cp/except.c:697
#, gcc-internal-format
msgid "  in thrown expression"
msgstr ""

#: cp/except.c:844
#, gcc-internal-format
msgid ""
"expression %qE of abstract class type %qT cannot be used in throw-expression"
msgstr ""

#: cp/except.c:929
#, gcc-internal-format
msgid "%Hexception of type %qT will be caught"
msgstr ""

#: cp/except.c:931
#, gcc-internal-format
msgid "%H   by earlier handler for %qT"
msgstr ""

#: cp/except.c:961
#, gcc-internal-format
msgid "%H%<...%> handler must be the last handler for its try block"
msgstr ""

#: cp/friend.c:152
#, gcc-internal-format
msgid "%qD is already a friend of class %qT"
msgstr ""

#: cp/friend.c:228
#, gcc-internal-format
msgid "invalid type %qT declared %<friend%>"
msgstr ""

#. [temp.friend]
#. Friend declarations shall not declare partial
#. specializations.
#. template <class U> friend class T::X<U>;
#. [temp.friend]
#. Friend declarations shall not declare partial
#. specializations.
#: cp/friend.c:244 cp/friend.c:274
#, gcc-internal-format
msgid "partial specialization %qT declared %<friend%>"
msgstr ""

#: cp/friend.c:252
#, gcc-internal-format
msgid "class %qT is implicitly friends with itself"
msgstr ""

#: cp/friend.c:310
#, gcc-internal-format
msgid "%qT is not a member of %qT"
msgstr ""

#: cp/friend.c:315
#, gcc-internal-format
msgid "%qT is not a member class template of %qT"
msgstr ""

#: cp/friend.c:323
#, gcc-internal-format
msgid "%qT is not a nested class of %qT"
msgstr ""

#. template <class T> friend class T;
#: cp/friend.c:336
#, gcc-internal-format
msgid "template parameter type %qT declared %<friend%>"
msgstr ""

#. template <class T> friend class A; where A is not a template
#: cp/friend.c:342
#, gcc-internal-format
msgid "%q#T is not a template"
msgstr ""

#: cp/friend.c:364
#, gcc-internal-format
msgid "%qD is already a friend of %qT"
msgstr ""

#: cp/friend.c:373
#, gcc-internal-format
msgid "%qT is already a friend of %qT"
msgstr ""

#: cp/friend.c:497
#, gcc-internal-format
msgid "member %qD declared as friend before type %qT defined"
msgstr ""

#: cp/friend.c:553
#, gcc-internal-format
msgid "friend declaration %q#D declares a non-template function"
msgstr ""

#: cp/friend.c:557
#, 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"
msgstr ""

#: cp/init.c:327
#, gcc-internal-format
msgid "%J%qD should be initialized in the member initialization list"
msgstr ""

#: cp/init.c:374
#, gcc-internal-format
msgid "%Jdefault-initialization of %q#D, which has reference type"
msgstr ""

#: cp/init.c:380
#, gcc-internal-format
msgid "%Juninitialized reference member %qD"
msgstr ""

#: cp/init.c:383
#, gcc-internal-format
msgid "%Juninitialized member %qD with %<const%> type %qT"
msgstr ""

#: cp/init.c:526
#, gcc-internal-format
msgid "%q+D will be initialized after"
msgstr ""

#: cp/init.c:529
#, gcc-internal-format
msgid "base %qT will be initialized after"
msgstr ""

#: cp/init.c:532
#, gcc-internal-format
msgid "  %q+#D"
msgstr ""

#: cp/init.c:534
#, gcc-internal-format
msgid "  base %qT"
msgstr ""

#: cp/init.c:535
#, gcc-internal-format
msgid "%J  when initialized here"
msgstr ""

#: cp/init.c:551
#, gcc-internal-format
msgid "%Jmultiple initializations given for %qD"
msgstr ""

#: cp/init.c:554
#, gcc-internal-format
msgid "%Jmultiple initializations given for base %qT"
msgstr ""

#: cp/init.c:621
#, gcc-internal-format
msgid "%Jinitializations for multiple members of %qT"
msgstr ""

#: cp/init.c:683
#, gcc-internal-format
msgid ""
"%Jbase class %q#T should be explicitly initialized in the copy constructor"
msgstr ""

#: cp/init.c:907 cp/init.c:926
#, gcc-internal-format
msgid "class %qT does not have any field named %qD"
msgstr ""

#: cp/init.c:913
#, gcc-internal-format
msgid ""
"%q#D is a static data member; it can only be initialized at its definition"
msgstr ""

#: cp/init.c:920
#, gcc-internal-format
msgid "%q#D is not a non-static data member of %qT"
msgstr ""

#: cp/init.c:959
#, gcc-internal-format
msgid "unnamed initializer for %qT, which has no base classes"
msgstr ""

#: cp/init.c:967
#, gcc-internal-format
msgid "unnamed initializer for %qT, which uses multiple inheritance"
msgstr ""

#: cp/init.c:1013
#, gcc-internal-format
msgid "%qD is both a direct base and an indirect virtual base"
msgstr ""

#: cp/init.c:1021
#, gcc-internal-format
msgid "type %qD is not a direct or virtual base of %qT"
msgstr ""

#: cp/init.c:1024
#, gcc-internal-format
msgid "type %qD is not a direct base of %qT"
msgstr ""

#: cp/init.c:1104
#, gcc-internal-format
msgid "bad array initializer"
msgstr ""

#: cp/init.c:1303
#, gcc-internal-format
msgid "%qT is not an aggregate type"
msgstr ""

#: cp/init.c:1395
#, gcc-internal-format
msgid "qualified type %qT does not match destructor name %<~%T%>"
msgstr ""

#: cp/init.c:1403
#, gcc-internal-format
msgid "incomplete type %qT does not have member %qD"
msgstr ""

#: cp/init.c:1422
#, gcc-internal-format
msgid "%qD is not a member of type %qT"
msgstr ""

#: cp/init.c:1441
#, gcc-internal-format
msgid "invalid pointer to bit-field %qD"
msgstr ""

#: cp/init.c:1543
#, gcc-internal-format
msgid "invalid use of non-static member function %qD"
msgstr ""

#: cp/init.c:1549
#, gcc-internal-format
msgid "invalid use of non-static data member %qD"
msgstr ""

#: cp/init.c:1646
#, gcc-internal-format
msgid "size in array new must have integral type"
msgstr ""

#: cp/init.c:1649
#, gcc-internal-format
msgid "zero size array reserves no space"
msgstr ""

#: cp/init.c:1657
#, gcc-internal-format
msgid "new cannot be applied to a reference type"
msgstr ""

#: cp/init.c:1663
#, gcc-internal-format
msgid "new cannot be applied to a function type"
msgstr ""

#: cp/init.c:1695
#, gcc-internal-format
msgid "call to Java constructor, while %<jclass%> undefined"
msgstr ""

#: cp/init.c:1711
#, gcc-internal-format
msgid "can't find class$"
msgstr ""

#: cp/init.c:1839
#, gcc-internal-format
msgid "invalid type %<void%> for new"
msgstr ""

#: cp/init.c:1849
#, gcc-internal-format
msgid "uninitialized const in %<new%> of %q#T"
msgstr ""

#: cp/init.c:1883
#, gcc-internal-format
msgid "call to Java constructor with %qs undefined"
msgstr ""

#: cp/init.c:1923
#, gcc-internal-format
msgid "no suitable %qD found in class %qT"
msgstr ""

#: cp/init.c:1928
#, gcc-internal-format
msgid "request for member %qD is ambiguous"
msgstr ""

#: cp/init.c:2061
#, gcc-internal-format
msgid "ISO C++ forbids initialization in array new"
msgstr ""

#: cp/init.c:2535
#, gcc-internal-format
msgid "initializer ends prematurely"
msgstr ""

#: cp/init.c:2588
#, gcc-internal-format
msgid "cannot initialize multi-dimensional array with initializer"
msgstr ""

#: cp/init.c:2743
#, gcc-internal-format
msgid "possible problem detected in invocation of delete operator:"
msgstr ""

#: cp/init.c:2746
#, gcc-internal-format
msgid ""
"neither the destructor nor the class-specific operator delete will be "
"called, even if they are declared when the class is defined."
msgstr ""

#: cp/init.c:2767
#, gcc-internal-format
msgid "unknown array size in delete"
msgstr ""

#: cp/init.c:3000
#, gcc-internal-format
msgid "type to vector delete is neither pointer or array type"
msgstr ""

#: cp/lex.c:468
#, gcc-internal-format
msgid "junk at end of #pragma %s"
msgstr ""

#: cp/lex.c:475
#, gcc-internal-format
msgid "invalid #pragma %s"
msgstr ""

#: cp/lex.c:483
#, gcc-internal-format
msgid "#pragma vtable no longer supported"
msgstr ""

#: cp/lex.c:562
#, gcc-internal-format
msgid "#pragma implementation for %qs appears after file is included"
msgstr ""

#: cp/lex.c:587
#, gcc-internal-format
msgid "junk at end of #pragma GCC java_exceptions"
msgstr ""

#: cp/lex.c:601
#, gcc-internal-format
msgid "%qD not defined"
msgstr ""

#: cp/lex.c:605
#, gcc-internal-format
msgid "%qD was not declared in this scope"
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
#, gcc-internal-format
msgid ""
"there are no arguments to %qD that depend on a template parameter, so a "
"declaration of %qD must be available"
msgstr ""

#: cp/lex.c:651
#, gcc-internal-format
msgid ""
"(if you use %<-fpermissive%>, G++ will accept your code, but allowing the "
"use of an undeclared name is deprecated)"
msgstr ""

#: cp/mangle.c:2139
#, gcc-internal-format
msgid "call_expr cannot be mangled due to a defect in the C++ ABI"
msgstr ""

#: cp/mangle.c:2147
#, gcc-internal-format
msgid "zero-operand casts cannot be mangled due to a defect in the C++ ABI"
msgstr ""

#: cp/mangle.c:2197
#, gcc-internal-format
msgid "omitted middle operand to %<?:%> operand cannot be mangled"
msgstr ""

#: cp/mangle.c:2507
#, gcc-internal-format
msgid "the mangled name of %qD will change in a future version of GCC"
msgstr ""

#: cp/method.c:457
#, gcc-internal-format
msgid "generic thunk code fails for method %q#D which uses %<...%>"
msgstr ""

#: cp/method.c:692
#, gcc-internal-format
msgid "non-static const member %q#D, can't use default assignment operator"
msgstr ""

#: cp/method.c:698
#, gcc-internal-format
msgid "non-static reference member %q#D, can't use default assignment operator"
msgstr ""

#: cp/method.c:810
#, gcc-internal-format
msgid "%Hsynthesized method %qD first required here "
msgstr ""

#: cp/method.c:1137
#, gcc-internal-format
msgid ""
"vtable layout for class %qT may not be ABI-compliantand may change in a "
"future version of GCC due to implicit virtual destructor"
msgstr ""

#: cp/name-lookup.c:692
#, gcc-internal-format
msgid "redeclaration of %<wchar_t%> as %qT"
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
#, gcc-internal-format
msgid "invalid redeclaration of %q+D"
msgstr ""

#: cp/name-lookup.c:725
#, gcc-internal-format
msgid "as %qD"
msgstr ""

#: cp/name-lookup.c:813
#, gcc-internal-format
msgid "type mismatch with previous external decl of %q#D"
msgstr ""

#: cp/name-lookup.c:814
#, gcc-internal-format
msgid "previous external decl of %q+#D"
msgstr ""

#: cp/name-lookup.c:896
#, gcc-internal-format
msgid "extern declaration of %q#D doesn't match"
msgstr ""

#: cp/name-lookup.c:897
#, gcc-internal-format
msgid "global declaration %q+#D"
msgstr ""

#: cp/name-lookup.c:933 cp/name-lookup.c:940
#, gcc-internal-format
msgid "declaration of %q#D shadows a parameter"
msgstr ""

#. Location of previous decl is not useful in this case.
#: cp/name-lookup.c:965
#, gcc-internal-format
msgid "declaration of %qD shadows a member of 'this'"
msgstr ""

#: cp/name-lookup.c:971
#, gcc-internal-format
msgid "declaration of %qD shadows a previous local"
msgstr ""

#: cp/name-lookup.c:978
#, gcc-internal-format
msgid "declaration of %qD shadows a global declaration"
msgstr ""

#: cp/name-lookup.c:1096
#, gcc-internal-format
msgid "name lookup of %qD changed"
msgstr ""

#: cp/name-lookup.c:1097
#, gcc-internal-format
msgid "  matches this %q+D under ISO standard rules"
msgstr ""

#: cp/name-lookup.c:1099
#, gcc-internal-format
msgid "  matches this %q+D under old rules"
msgstr ""

#: cp/name-lookup.c:1117 cp/name-lookup.c:1125
#, gcc-internal-format
msgid "name lookup of %qD changed for new ISO %<for%> scoping"
msgstr ""

#: cp/name-lookup.c:1119
#, gcc-internal-format
msgid "  cannot use obsolete binding at %q+D because it has a destructor"
msgstr ""

#: cp/name-lookup.c:1127
#, gcc-internal-format
msgid "  using obsolete binding at %q+D"
msgstr ""

#: cp/name-lookup.c:1180
#, gcc-internal-format
msgid "%s %s(%E) %p %d\n"
msgstr ""

#: cp/name-lookup.c:1183
#, gcc-internal-format
msgid "%s %s %p %d\n"
msgstr ""

#: cp/name-lookup.c:1309
#, gcc-internal-format
msgid "XXX is_class_level != (current_scope == class_scope)\n"
msgstr ""

#: cp/name-lookup.c:1865
#, gcc-internal-format
msgid "%q#D hides constructor for %q#T"
msgstr ""

#: cp/name-lookup.c:1881
#, gcc-internal-format
msgid "%q#D conflicts with previous using declaration %q#D"
msgstr ""

#: cp/name-lookup.c:1900
#, gcc-internal-format
msgid "previous non-function declaration %q+#D"
msgstr ""

#: cp/name-lookup.c:1901
#, gcc-internal-format
msgid "conflicts with function declaration %q#D"
msgstr ""

#. It's a nested name with template parameter dependent scope.
#. This can only be using-declaration for class member.
#: cp/name-lookup.c:1979 cp/name-lookup.c:2004 cp/name-lookup.c:3210
#, gcc-internal-format
msgid "%qT is not a namespace"
msgstr ""

#. 7.3.3/5
#. A using-declaration shall not name a template-id.
#: cp/name-lookup.c:1989
#, gcc-internal-format
msgid "a using-declaration cannot specify a template-id.  Try %<using %D%>"
msgstr ""

#: cp/name-lookup.c:1996
#, gcc-internal-format
msgid "namespace %qD not allowed in using-declaration"
msgstr ""

#: cp/name-lookup.c:2032
#, gcc-internal-format
msgid "%qD not declared"
msgstr ""

#: cp/name-lookup.c:2052 cp/name-lookup.c:2088 cp/name-lookup.c:2122
#, gcc-internal-format
msgid "%qD is already declared in this scope"
msgstr ""

#: cp/name-lookup.c:2128
#, gcc-internal-format
msgid "using declaration %qD introduced ambiguous type %qT"
msgstr ""

#: cp/name-lookup.c:2701
#, gcc-internal-format
msgid "using-declaration for non-member at class scope"
msgstr ""

#: cp/name-lookup.c:2727
#, gcc-internal-format
msgid "%<%T::%D%> names destructor"
msgstr ""

#: cp/name-lookup.c:2732
#, gcc-internal-format
msgid "%<%T::%D%> names constructor"
msgstr ""

#: cp/name-lookup.c:2737
#, gcc-internal-format
msgid "%<%T::%D%> names constructor in %qT"
msgstr ""

#: cp/name-lookup.c:2753
#, gcc-internal-format
msgid "no members matching %<%T::%D%> in %q#T"
msgstr ""

#: cp/name-lookup.c:2822
#, gcc-internal-format
msgid "declaration of %qD not in a namespace surrounding %qD"
msgstr ""

#: cp/name-lookup.c:2830
#, gcc-internal-format
msgid "explicit qualification in declaration of %qD"
msgstr ""

#: cp/name-lookup.c:2866
#, gcc-internal-format
msgid "%qD should have been declared inside %qD"
msgstr ""

#: cp/name-lookup.c:2928
#, gcc-internal-format
msgid "namespace alias %qD not allowed here, assuming %qD"
msgstr ""

#. The parser did not find it, so it's not there.
#: cp/name-lookup.c:3043
#, gcc-internal-format
msgid "unknown namespace %qD"
msgstr ""

#: cp/name-lookup.c:3204
#, gcc-internal-format
msgid "namespace %qT undeclared"
msgstr ""

#: cp/name-lookup.c:3248
#, gcc-internal-format
msgid "strong using only meaningful at namespace scope"
msgstr ""

#: cp/name-lookup.c:3255
#, gcc-internal-format
msgid "%qD attribute directive ignored"
msgstr ""

#: cp/name-lookup.c:3390
#, gcc-internal-format
msgid "use of %qD is ambiguous"
msgstr ""

#: cp/name-lookup.c:3391
#, gcc-internal-format
msgid "  first declared as %q+#D here"
msgstr ""

#: cp/name-lookup.c:3393
#, gcc-internal-format
msgid "  also declared as %q+#D here"
msgstr ""

#: cp/name-lookup.c:3408
#, gcc-internal-format
msgid "%qD denotes an ambiguous type"
msgstr ""

#: cp/name-lookup.c:3409
#, gcc-internal-format
msgid "%J  first type here"
msgstr ""

#: cp/name-lookup.c:3410
#, gcc-internal-format
msgid "%J  other type here"
msgstr ""

#. This happens for A::B where B is a template, and there are no
#. template arguments.
#: cp/name-lookup.c:3488 cp/parser.c:4490 cp/typeck.c:1801
#, gcc-internal-format
msgid "invalid use of %qD"
msgstr ""

#: cp/name-lookup.c:3528
#, gcc-internal-format
msgid "%<%D::%D%> is not a template"
msgstr ""

#: cp/name-lookup.c:3543
#, gcc-internal-format
msgid "%qD undeclared in namespace %qD"
msgstr ""

#: cp/name-lookup.c:4170
#, gcc-internal-format
msgid "%q+D is not a function,"
msgstr ""

#: cp/name-lookup.c:4171
#, gcc-internal-format
msgid "  conflict with %q+D"
msgstr ""

#: cp/name-lookup.c:4923
#, gcc-internal-format
msgid "XXX entering pop_everything ()\n"
msgstr ""

#: cp/name-lookup.c:4932
#, gcc-internal-format
msgid "XXX leaving pop_everything ()\n"
msgstr ""

#: cp/parser.c:1849
#, gcc-internal-format
msgid "minimum/maximum operators are deprecated"
msgstr ""

#: cp/parser.c:1869
#, gcc-internal-format
msgid "%<#pragma%> is not allowed here"
msgstr ""

#: cp/parser.c:1898
#, gcc-internal-format
msgid "%<%D::%D%> has not been declared"
msgstr ""

#: cp/parser.c:1901 cp/semantics.c:2413
#, gcc-internal-format
msgid "%<::%D%> has not been declared"
msgstr ""

#: cp/parser.c:1904
#, gcc-internal-format
msgid "request for member %qD in non-class type %qT"
msgstr ""

#: cp/parser.c:1907
#, gcc-internal-format
msgid "%<%T::%D%> has not been declared"
msgstr ""

#: cp/parser.c:1910
#, gcc-internal-format
msgid "%qD has not been declared"
msgstr ""

#: cp/parser.c:1913
#, gcc-internal-format
msgid "%<%D::%D%> %s"
msgstr ""

#: cp/parser.c:1915
#, gcc-internal-format
msgid "%<::%D%> %s"
msgstr ""

#: cp/parser.c:1917
#, gcc-internal-format
msgid "%qD %s"
msgstr ""

#: cp/parser.c:1969
#, gcc-internal-format
msgid "new types may not be defined in a return type"
msgstr ""

#: cp/parser.c:1970
#, gcc-internal-format
msgid "(perhaps a semicolon is missing after the definition of %qT)"
msgstr ""

#: cp/parser.c:1989 cp/pt.c:4344
#, gcc-internal-format
msgid "%qT is not a template"
msgstr ""

#: cp/parser.c:1991
#, gcc-internal-format
msgid "%qE is not a template"
msgstr ""

#: cp/parser.c:1993
#, gcc-internal-format
msgid "invalid template-id"
msgstr ""

#: cp/parser.c:2022
#, gcc-internal-format
msgid "%s cannot appear in a constant-expression"
msgstr ""

#: cp/parser.c:2047
#, gcc-internal-format
msgid "invalid use of template-name %qE without an argument list"
msgstr ""

#. Issue an error message.
#: cp/parser.c:2052
#, gcc-internal-format
msgid "%qE does not name a type"
msgstr ""

#: cp/parser.c:2084
#, gcc-internal-format
msgid "(perhaps %<typename %T::%E%> was intended)"
msgstr ""

#: cp/parser.c:2099
#, gcc-internal-format
msgid "%qE in namespace %qE does not name a type"
msgstr ""

#: cp/parser.c:2102
#, gcc-internal-format
msgid "%qE in class %qT does not name a type"
msgstr ""

#: cp/parser.c:2828
#, gcc-internal-format
msgid "ISO C++ forbids braced-groups within expressions"
msgstr ""

#: cp/parser.c:2837
#, gcc-internal-format
msgid "statement-expressions are allowed only inside functions"
msgstr ""

#: cp/parser.c:2888
#, gcc-internal-format
msgid "%<this%> may not be used in this context"
msgstr ""

#: cp/parser.c:3035
#, gcc-internal-format
msgid "local variable %qD may not appear in this context"
msgstr ""

#: cp/parser.c:3412
#, gcc-internal-format
msgid "typedef-name %qD used as destructor declarator"
msgstr ""

#: cp/parser.c:4066
#, gcc-internal-format
msgid "ISO C++ forbids compound-literals"
msgstr ""

#: cp/parser.c:5010
#, gcc-internal-format
msgid "array bound forbidden after parenthesized type-id"
msgstr ""

#: cp/parser.c:5011
#, gcc-internal-format
msgid "try removing the parentheses around the type-id"
msgstr ""

#: cp/parser.c:5213
#, gcc-internal-format
msgid "expression in new-declarator must have integral or enumeration type"
msgstr ""

#: cp/parser.c:5402
#, gcc-internal-format
msgid "use of old-style cast"
msgstr ""

#: cp/parser.c:6181
#, gcc-internal-format
msgid "case label %qE not within a switch statement"
msgstr ""

#: cp/parser.c:6725
#, gcc-internal-format
msgid "ISO C++ forbids computed gotos"
msgstr ""

#: cp/parser.c:6850
#, gcc-internal-format
msgid "extra %<;%>"
msgstr ""

#: cp/parser.c:7174
#, gcc-internal-format
msgid "mixing declarations and function-definitions is forbidden"
msgstr ""

#: cp/parser.c:7305
#, gcc-internal-format
msgid "duplicate %<friend%>"
msgstr ""

#: cp/parser.c:7474
#, gcc-internal-format
msgid "class definition may not be declared a friend"
msgstr ""

#: cp/parser.c:7788
#, gcc-internal-format
msgid "only constructors take base initializers"
msgstr ""

#: cp/parser.c:7839
#, gcc-internal-format
msgid "anachronistic old-style base class initializer"
msgstr ""

#: cp/parser.c:7881
#, gcc-internal-format
msgid ""
"keyword %<typename%> not allowed in this context (a qualified member "
"initializer is implicitly a type)"
msgstr ""

#. Warn that we do not support `export'.
#: cp/parser.c:8247
#, gcc-internal-format
msgid "keyword %<export%> not implemented, and will be ignored"
msgstr ""

#. Otherwise, emit an error about the invalid digraph, but continue
#. parsing because we got our argument list.
#: cp/parser.c:8620
#, gcc-internal-format
msgid "%<<::%> cannot begin a template-argument list"
msgstr ""

#: cp/parser.c:8621
#, gcc-internal-format
msgid ""
"%<<:%> is an alternate spelling for %<[%>. Insert whitespace between %<<%> "
"and %<::%>"
msgstr ""

#: cp/parser.c:8628
#, gcc-internal-format
msgid "(if you use -fpermissive G++ will accept your code)"
msgstr ""

#: cp/parser.c:8692
#, gcc-internal-format
msgid "parse error in template argument list"
msgstr ""

#. Explain what went wrong.
#: cp/parser.c:8805
#, gcc-internal-format
msgid "non-template %qD used as template"
msgstr ""

#: cp/parser.c:8806
#, gcc-internal-format
msgid "use %<%T::template %D%> to indicate that it is a template"
msgstr ""

#: cp/parser.c:9395 cp/parser.c:15242
#, gcc-internal-format
msgid "template declaration of %qs"
msgstr ""

#: cp/parser.c:9868
#, gcc-internal-format
msgid "using %<typename%> outside of template"
msgstr ""

#: cp/parser.c:10063
#, gcc-internal-format
msgid "type attributes are honored only at type definition"
msgstr ""

#. [namespace.udecl]
#.
#. A using declaration shall not name a template-id.
#: cp/parser.c:10445
#, gcc-internal-format
msgid "a template-id may not appear in a using-declaration"
msgstr ""

#: cp/parser.c:10775
#, gcc-internal-format
msgid "an asm-specification is not allowed on a function-definition"
msgstr ""

#: cp/parser.c:10777
#, gcc-internal-format
msgid "attributes are not allowed on a function-definition"
msgstr ""

#: cp/parser.c:10909
#, gcc-internal-format
msgid "attributes after parenthesized initializer ignored"
msgstr ""

#: cp/parser.c:11294
#, gcc-internal-format
msgid "array bound is not an integer constant"
msgstr ""

#: cp/parser.c:11364
#, gcc-internal-format
msgid "%<%T::%D%> is not a type"
msgstr ""

#: cp/parser.c:11407
#, gcc-internal-format
msgid "invalid use of constructor as a template"
msgstr ""

#: cp/parser.c:11408
#, gcc-internal-format
msgid ""
"use %<%T::%D%> instead of %<%T::%T%> to name the constructor in a qualified "
"name"
msgstr ""

#: cp/parser.c:11596
#, gcc-internal-format
msgid "duplicate cv-qualifier"
msgstr ""

#: cp/parser.c:12128
#, gcc-internal-format
msgid "file ends in default argument"
msgstr ""

#: cp/parser.c:12190
#, gcc-internal-format
msgid "deprecated use of default argument for parameter of non-function"
msgstr ""

#: cp/parser.c:12193
#, gcc-internal-format
msgid "default arguments are only permitted for function parameters"
msgstr ""

#: cp/parser.c:12934
#, gcc-internal-format
msgid "invalid class name in declaration of %qD"
msgstr ""

#: cp/parser.c:12945
#, gcc-internal-format
msgid "declaration of %qD in %qD which does not enclose %qD"
msgstr ""

#: cp/parser.c:12958
#, gcc-internal-format
msgid "extra qualification ignored"
msgstr ""

#: cp/parser.c:12969
#, gcc-internal-format
msgid "an explicit specialization must be preceded by %<template <>%>"
msgstr ""

#: cp/parser.c:13062
#, gcc-internal-format
msgid "previous definition of %q+#T"
msgstr ""

#: cp/parser.c:13288
#, gcc-internal-format
msgid "%Hextra %<;%>"
msgstr ""

#: cp/parser.c:13306
#, gcc-internal-format
msgid "a class-key must be used when declaring a friend"
msgstr ""

#: cp/parser.c:13320
#, gcc-internal-format
msgid "friend declaration does not name a class or function"
msgstr ""

#: cp/parser.c:13496
#, gcc-internal-format
msgid "pure-specifier on function-definition"
msgstr ""

#: cp/parser.c:13774
#, gcc-internal-format
msgid "keyword %<typename%> not allowed outside of templates"
msgstr ""

#: cp/parser.c:13776
#, gcc-internal-format
msgid ""
"keyword %<typename%> not allowed in this context (the base class is "
"implicitly a type)"
msgstr ""

#: cp/parser.c:14051
#, gcc-internal-format
msgid "invalid catch parameter"
msgstr ""

#: cp/parser.c:14629
#, gcc-internal-format
msgid "reference to %qD is ambiguous"
msgstr ""

#: cp/parser.c:14798
#, gcc-internal-format
msgid "too few template-parameter-lists"
msgstr ""

#. Otherwise, there are too many template parameter lists.  We have
#. something like:
#.
#. template <class T> template <class U> void S::f();
#: cp/parser.c:14813
#, gcc-internal-format
msgid "too many template-parameter-lists"
msgstr ""

#. Skip the entire function.
#: cp/parser.c:15037
#, gcc-internal-format
msgid "invalid function declaration"
msgstr ""

#. Issue an error message.
#: cp/parser.c:15074
#, gcc-internal-format
msgid "named return values are no longer supported"
msgstr ""

#: cp/parser.c:15448
#, gcc-internal-format
msgid "%H%<>>%> should be %<> >%> within a nested template argument list"
msgstr ""

#: cp/parser.c:15463
#, gcc-internal-format
msgid "spurious %<>>%>, use %<>%> to terminate a template argument list"
msgstr ""

#: cp/parser.c:15468
#, gcc-internal-format
msgid "missing %<>%> to terminate the template argument list"
msgstr ""

#: cp/parser.c:16019
#, gcc-internal-format
msgid "%qs tag used in naming %q#T"
msgstr ""

#: cp/parser.c:16040
#, gcc-internal-format
msgid "%qD redeclared with different access"
msgstr ""

#: cp/parser.c:16057
#, gcc-internal-format
msgid "%<template%> (as a disambiguator) is only allowed within templates"
msgstr ""

#: cp/parser.c:16294 cp/parser.c:17197 cp/parser.c:17328
#, gcc-internal-format
msgid "misplaced %<@%D%> Objective-C++ construct"
msgstr ""

#: cp/parser.c:16435
#, gcc-internal-format
msgid "%<@encode%> must specify a type as an argument"
msgstr ""

#: cp/parser.c:16732
#, gcc-internal-format
msgid "invalid Objective-C++ selector name"
msgstr ""

#: cp/parser.c:17061
#, gcc-internal-format
msgid "identifier expected after %<@protocol%>"
msgstr ""

#: cp/parser.c:17351
#, gcc-internal-format
msgid "inter-module optimizations not implemented for C++"
msgstr ""

#: cp/pt.c:240
#, gcc-internal-format
msgid "data member %qD cannot be a member template"
msgstr ""

#: cp/pt.c:252
#, gcc-internal-format
msgid "invalid member template declaration %qD"
msgstr ""

#: cp/pt.c:574
#, gcc-internal-format
msgid "explicit specialization in non-namespace scope %qD"
msgstr ""

#: cp/pt.c:585
#, gcc-internal-format
msgid "enclosing class templates are not explicitly specialized"
msgstr ""

#: cp/pt.c:669
#, gcc-internal-format
msgid "specialization of %qD in different namespace"
msgstr ""

#: cp/pt.c:670 cp/pt.c:739
#, gcc-internal-format
msgid "  from definition of %q+#D"
msgstr ""

#: cp/pt.c:706
#, gcc-internal-format
msgid "specialization of %qT after instantiation"
msgstr ""

#: cp/pt.c:738
#, gcc-internal-format
msgid "specializing %q#T in different namespace"
msgstr ""

#: cp/pt.c:753
#, gcc-internal-format
msgid "specialization %qT after instantiation %qT"
msgstr ""

#: cp/pt.c:765
#, gcc-internal-format
msgid "explicit specialization of non-template %qT"
msgstr ""

#: cp/pt.c:1158
#, gcc-internal-format
msgid "specialization of %qD after instantiation"
msgstr ""

#: cp/pt.c:1343
#, gcc-internal-format
msgid "%qD is not a function template"
msgstr ""

#: cp/pt.c:1536
#, gcc-internal-format
msgid "template-id %qD for %q+D does not match any template declaration"
msgstr ""

#: cp/pt.c:1544
#, gcc-internal-format
msgid "ambiguous template specialization %qD for %q+D"
msgstr ""

#. This case handles bogus declarations like template <>
#. template <class T> void f<int>();
#: cp/pt.c:1775 cp/pt.c:1829
#, gcc-internal-format
msgid "template-id %qD in declaration of primary template"
msgstr ""

#: cp/pt.c:1788
#, gcc-internal-format
msgid "template parameter list used in explicit instantiation"
msgstr ""

#: cp/pt.c:1794
#, gcc-internal-format
msgid "definition provided for explicit instantiation"
msgstr ""

#: cp/pt.c:1802
#, gcc-internal-format
msgid "too many template parameter lists in declaration of %qD"
msgstr ""

#: cp/pt.c:1805
#, gcc-internal-format
msgid "too few template parameter lists in declaration of %qD"
msgstr ""

#: cp/pt.c:1807
#, gcc-internal-format
msgid "explicit specialization of %qD must be introduced by %<template <>%>"
msgstr ""

#: cp/pt.c:1826
#, gcc-internal-format
msgid "function template partial specialization %qD is not allowed"
msgstr ""

#: cp/pt.c:1858
#, gcc-internal-format
msgid "default argument specified in explicit specialization"
msgstr ""

#: cp/pt.c:1862
#, gcc-internal-format
msgid "template specialization with C linkage"
msgstr ""

#: cp/pt.c:1889
#, gcc-internal-format
msgid "%qD is not a template function"
msgstr ""

#. From [temp.expl.spec]:
#.
#. If such an explicit specialization for the member
#. of a class template names an implicitly-declared
#. special member function (clause _special_), the
#. program is ill-formed.
#.
#. Similar language is found in [temp.explicit].
#: cp/pt.c:1951
#, gcc-internal-format
msgid "specialization of implicitly-declared special member function"
msgstr ""

#: cp/pt.c:1995
#, gcc-internal-format
msgid "no member function %qD declared in %qT"
msgstr ""

#: cp/pt.c:2207
#, gcc-internal-format
msgid "declaration of %q+#D"
msgstr ""

#: cp/pt.c:2208
#, gcc-internal-format
msgid " shadows template parm %q+#D"
msgstr ""

#: cp/pt.c:2611
#, gcc-internal-format
msgid "template parameters not used in partial specialization:"
msgstr ""

#: cp/pt.c:2615
#, gcc-internal-format
msgid "        %qD"
msgstr ""

#: cp/pt.c:2626
#, gcc-internal-format
msgid "partial specialization %qT does not specialize any template arguments"
msgstr ""

#: cp/pt.c:2651
#, gcc-internal-format
msgid "template argument %qE involves template parameter(s)"
msgstr ""

#: cp/pt.c:2695
#, gcc-internal-format
msgid "type %qT of template argument %qE depends on template parameter(s)"
msgstr ""

#: cp/pt.c:2782
#, gcc-internal-format
msgid "no default argument for %qD"
msgstr ""

#: cp/pt.c:2939
#, gcc-internal-format
msgid "template with C linkage"
msgstr ""

#: cp/pt.c:2942
#, gcc-internal-format
msgid "template class without a name"
msgstr ""

#. [temp.mem]
#.
#. A destructor shall not be a member template.
#: cp/pt.c:2950
#, gcc-internal-format
msgid "destructor %qD declared as member template"
msgstr ""

#. [basic.stc.dynamic.allocation]
#.
#. An allocation function can be a function
#. template. ... Template allocation functions shall
#. have two or more parameters.
#: cp/pt.c:2965
#, gcc-internal-format
msgid "invalid template declaration of %qD"
msgstr ""

#: cp/pt.c:3046
#, gcc-internal-format
msgid "%qD does not declare a template type"
msgstr ""

#: cp/pt.c:3052
#, gcc-internal-format
msgid "template definition of non-template %q#D"
msgstr ""

#: cp/pt.c:3094
#, gcc-internal-format
msgid "expected %d levels of template parms for %q#D, got %d"
msgstr ""

#: cp/pt.c:3106
#, gcc-internal-format
msgid "got %d template parameters for %q#D"
msgstr ""

#: cp/pt.c:3109
#, gcc-internal-format
msgid "got %d template parameters for %q#T"
msgstr ""

#: cp/pt.c:3111
#, gcc-internal-format
msgid "  but %d required"
msgstr ""

#: cp/pt.c:3207
#, gcc-internal-format
msgid "%qT is not a template type"
msgstr ""

#: cp/pt.c:3220
#, gcc-internal-format
msgid "template specifiers not specified in declaration of %qD"
msgstr ""

#: cp/pt.c:3230
#, gcc-internal-format
msgid "previous declaration %q+D"
msgstr ""

#: cp/pt.c:3231
#, gcc-internal-format
msgid "used %d template parameter(s) instead of %d"
msgstr ""

#: cp/pt.c:3250
#, gcc-internal-format
msgid "template parameter %q+#D"
msgstr ""

#: cp/pt.c:3251
#, gcc-internal-format
msgid "redeclared here as %q#D"
msgstr ""

#. We have in [temp.param]:
#.
#. A template-parameter may not be given default arguments
#. by two different declarations in the same scope.
#: cp/pt.c:3261
#, gcc-internal-format
msgid "redefinition of default argument for %q#D"
msgstr ""

#: cp/pt.c:3262
#, gcc-internal-format
msgid "%J  original definition appeared here"
msgstr ""

#: cp/pt.c:3358
#, gcc-internal-format
msgid ""
"%qE is not a valid template argument for type %qT because function %qD has "
"not external linkage"
msgstr ""

#: cp/pt.c:3399
#, gcc-internal-format
msgid ""
"%qE is not a valid template argument for type %qT because string literals "
"can never be used in this context"
msgstr ""

#: cp/pt.c:3474
#, gcc-internal-format
msgid ""
"%qE is not a valid template argument for type %qT because it is a non-"
"constant expression"
msgstr ""

#: cp/pt.c:3524
#, gcc-internal-format
msgid ""
"%qE is not a valid template argument for type %qT because it is not a "
"constant pointer"
msgstr ""

#: cp/pt.c:3544
#, gcc-internal-format
msgid ""
"%qE is not a valid template argument for type %qT because of conflicts in cv-"
"qualification"
msgstr ""

#: cp/pt.c:3551
#, gcc-internal-format
msgid ""
"%qE is not a valid template argument for type %qT because it is not a lvalue"
msgstr ""

#: cp/pt.c:3564
#, gcc-internal-format
msgid ""
"%qE is not a valid template argument for type %qT because object %qD has not "
"external linkage"
msgstr ""

#: cp/pt.c:3606
#, gcc-internal-format
msgid ""
"%qE is not a valid template argument for type %qT because it is a pointer"
msgstr ""

#: cp/pt.c:3608
#, gcc-internal-format
msgid "try using %qE instead"
msgstr ""

#: cp/pt.c:3643
#, gcc-internal-format
msgid ""
"%qE is not a valid template argument for type %qT because it is of type %qT"
msgstr ""

#: cp/pt.c:3646
#, gcc-internal-format
msgid "standard conversions are not allowed in this context"
msgstr ""

#: cp/pt.c:3815
#, gcc-internal-format
msgid "to refer to a type member of a template parameter, use %<typename %E%>"
msgstr ""

#: cp/pt.c:3830 cp/pt.c:3849 cp/pt.c:3889
#, gcc-internal-format
msgid "type/value mismatch at argument %d in template parameter list for %qD"
msgstr ""

#: cp/pt.c:3834
#, gcc-internal-format
msgid "  expected a constant of type %qT, got %qT"
msgstr ""

#: cp/pt.c:3838
#, gcc-internal-format
msgid "  expected a class template, got %qE"
msgstr ""

#: cp/pt.c:3840
#, gcc-internal-format
msgid "  expected a type, got %qE"
msgstr ""

#: cp/pt.c:3853
#, gcc-internal-format
msgid "  expected a type, got %qT"
msgstr ""

#: cp/pt.c:3855
#, gcc-internal-format
msgid "  expected a class template, got %qT"
msgstr ""

#: cp/pt.c:3892
#, gcc-internal-format
msgid "  expected a template of type %qD, got %qD"
msgstr ""

#: cp/pt.c:3928
#, gcc-internal-format
msgid "could not convert template argument %qE to %qT"
msgstr ""

#: cp/pt.c:3967
#, gcc-internal-format
msgid "wrong number of template arguments (%d, should be %d)"
msgstr ""

#: cp/pt.c:3971
#, gcc-internal-format
msgid "provided for %q+D"
msgstr ""

#: cp/pt.c:4001
#, gcc-internal-format
msgid "template argument %d is invalid"
msgstr ""

#: cp/pt.c:4356
#, gcc-internal-format
msgid "non-template type %qT used as a template"
msgstr ""

#: cp/pt.c:4358
#, gcc-internal-format
msgid "for template declaration %q+D"
msgstr ""

#: cp/pt.c:5005
#, gcc-internal-format
msgid ""
"template instantiation depth exceeds maximum of %d (use -ftemplate-depth-NN "
"to increase the maximum) instantiating %qD"
msgstr ""

#: cp/pt.c:5451
#, gcc-internal-format
msgid "ambiguous class template instantiation for %q#T"
msgstr ""

#: cp/pt.c:5457
#, gcc-internal-format
msgid "%s %+#T"
msgstr ""

#: cp/pt.c:6573
#, gcc-internal-format
msgid "instantiation of %q+D as type %qT"
msgstr ""

#: cp/pt.c:6749
#, gcc-internal-format
msgid "invalid parameter type %qT"
msgstr ""

#: cp/pt.c:6751
#, gcc-internal-format
msgid "in declaration %q+D"
msgstr ""

#: cp/pt.c:6824
#, gcc-internal-format
msgid "function returning an array"
msgstr ""

#: cp/pt.c:6826
#, gcc-internal-format
msgid "function returning a function"
msgstr ""

#: cp/pt.c:6853
#, gcc-internal-format
msgid "creating pointer to member function of non-class type %qT"
msgstr ""

#: cp/pt.c:7021
#, gcc-internal-format
msgid "creating array with size zero"
msgstr ""

#: cp/pt.c:7035
#, gcc-internal-format
msgid "creating array with size zero (%qE)"
msgstr ""

#: cp/pt.c:7252
#, gcc-internal-format
msgid "forming reference to void"
msgstr ""

#: cp/pt.c:7254
#, gcc-internal-format
msgid "forming %s to reference type %qT"
msgstr ""

#: cp/pt.c:7291
#, gcc-internal-format
msgid "creating pointer to member of non-class type %qT"
msgstr ""

#: cp/pt.c:7297
#, gcc-internal-format
msgid "creating pointer to member reference type %qT"
msgstr ""

#: cp/pt.c:7303
#, gcc-internal-format
msgid "creating pointer to member of type void"
msgstr ""

#: cp/pt.c:7370
#, gcc-internal-format
msgid "creating array of %qT"
msgstr ""

#: cp/pt.c:7376
#, gcc-internal-format
msgid "creating array of %qT, which is an abstract class type"
msgstr ""

#: cp/pt.c:7420
#, gcc-internal-format
msgid "%qT is not a class, struct, or union type"
msgstr ""

#: cp/pt.c:7455
#, gcc-internal-format
msgid "%qT resolves to %qT, which is not an enumeration type"
msgstr ""

#: cp/pt.c:7458
#, gcc-internal-format
msgid "%qT resolves to %qT, which is is not a class type"
msgstr ""

#: cp/pt.c:7519
#, gcc-internal-format
msgid "use of %qs in template"
msgstr ""

#: cp/pt.c:7644
#, gcc-internal-format
msgid ""
"dependent-name %qE is parsed as a non-type, but instantiation yields a type"
msgstr ""

#: cp/pt.c:7646
#, gcc-internal-format
msgid "say %<typename %E%> if a type is meant"
msgstr ""

#: cp/pt.c:7765
#, gcc-internal-format
msgid "using invalid field %qD"
msgstr ""

#: cp/pt.c:8814
#, gcc-internal-format
msgid "%qT is not a class or namespace"
msgstr ""

#: cp/pt.c:8817
#, gcc-internal-format
msgid "%qD is not a class or namespace"
msgstr ""

#: cp/pt.c:8962
#, gcc-internal-format
msgid "%qT is/uses anonymous type"
msgstr ""

#: cp/pt.c:8964
#, gcc-internal-format
msgid "%qT uses local type %qT"
msgstr ""

#: cp/pt.c:8973
#, gcc-internal-format
msgid "%qT is a variably modified type"
msgstr ""

#: cp/pt.c:8984
#, gcc-internal-format
msgid "integral expression %qE is not constant"
msgstr ""

#: cp/pt.c:8989
#, gcc-internal-format
msgid "  trying to instantiate %qD"
msgstr ""

#: cp/pt.c:10929 cp/pt.c:11000
#, gcc-internal-format
msgid "explicit instantiation of non-template %q#D"
msgstr ""

#: cp/pt.c:10945 cp/pt.c:10995
#, gcc-internal-format
msgid "no matching template for %qD found"
msgstr ""

#: cp/pt.c:10951
#, gcc-internal-format
msgid "explicit instantiation of %q#D"
msgstr ""

#: cp/pt.c:10987
#, gcc-internal-format
msgid "duplicate explicit instantiation of %q#D"
msgstr ""

#: cp/pt.c:11009
#, gcc-internal-format
msgid "ISO C++ forbids the use of %<extern%> on explicit instantiations"
msgstr ""

#: cp/pt.c:11014 cp/pt.c:11106
#, gcc-internal-format
msgid "storage class %qD applied to template instantiation"
msgstr ""

#: cp/pt.c:11078
#, gcc-internal-format
msgid "explicit instantiation of non-template type %qT"
msgstr ""

#: cp/pt.c:11087
#, gcc-internal-format
msgid "explicit instantiation of %q#T before definition of template"
msgstr ""

#: cp/pt.c:11095
#, gcc-internal-format
msgid "ISO C++ forbids the use of %qE on explicit instantiations"
msgstr ""

#: cp/pt.c:11140
#, gcc-internal-format
msgid "duplicate explicit instantiation of %q#T"
msgstr ""

#: cp/pt.c:11516
#, gcc-internal-format
msgid "explicit instantiation of %qD but no definition available"
msgstr ""

#: cp/pt.c:11661
#, gcc-internal-format
msgid ""
"template instantiation depth exceeds maximum of %d instantiating %q+D, "
"possibly from virtual table generation (use -ftemplate-depth-NN to increase "
"the maximum)"
msgstr ""

#: cp/pt.c:11931
#, gcc-internal-format
msgid "%q#T is not a valid type for a template constant parameter"
msgstr ""

#: cp/repo.c:112
#, gcc-internal-format
msgid "-frepo must be used with -c"
msgstr ""

#: cp/repo.c:200
#, gcc-internal-format
msgid "mysterious repository information in %s"
msgstr ""

#: cp/repo.c:214
#, gcc-internal-format
msgid "can't create repository information file %qs"
msgstr ""

#: cp/rtti.c:270
#, gcc-internal-format
msgid "cannot use typeid with -fno-rtti"
msgstr ""

#: cp/rtti.c:276
#, gcc-internal-format
msgid "must #include <typeinfo> before using typeid"
msgstr ""

#: cp/rtti.c:348
#, gcc-internal-format
msgid ""
"cannot create type information for type %qT because its size is variable"
msgstr ""

#: cp/rtti.c:598 cp/rtti.c:612
#, gcc-internal-format
msgid "dynamic_cast of %q#D to %q#T can never succeed"
msgstr ""

#: cp/rtti.c:691
#, gcc-internal-format
msgid "cannot dynamic_cast %qE (of type %q#T) to type %q#T (%s)"
msgstr ""

#: cp/search.c:257
#, gcc-internal-format
msgid "%qT is an ambiguous base of %qT"
msgstr ""

#: cp/search.c:275
#, gcc-internal-format
msgid "%qT is an inaccessible base of %qT"
msgstr ""

#: cp/search.c:1842
#, gcc-internal-format
msgid "deprecated covariant return type for %q+#D"
msgstr ""

#: cp/search.c:1844 cp/search.c:1859 cp/search.c:1864
#, gcc-internal-format
msgid "  overriding %q+#D"
msgstr ""

#: cp/search.c:1858
#, gcc-internal-format
msgid "invalid covariant return type for %q+#D"
msgstr ""

#: cp/search.c:1863
#, gcc-internal-format
msgid "conflicting return type specified for %q+#D"
msgstr ""

#: cp/search.c:1873
#, gcc-internal-format
msgid "looser throw specifier for %q+#F"
msgstr ""

#: cp/search.c:1874
#, gcc-internal-format
msgid "  overriding %q+#F"
msgstr ""

#. A static member function cannot match an inherited
#. virtual member function.
#: cp/search.c:1967
#, gcc-internal-format
msgid "%q+#D cannot be declared"
msgstr ""

#: cp/search.c:1968
#, gcc-internal-format
msgid "  since %q+#D declared in base class"
msgstr ""

#: cp/semantics.c:1226
#, gcc-internal-format
msgid "type of asm operand %qE could not be determined"
msgstr ""

#: cp/semantics.c:1345
#, gcc-internal-format
msgid "invalid use of member %q+D in static member function"
msgstr ""

#: cp/semantics.c:1347
#, gcc-internal-format
msgid "invalid use of non-static data member %q+D"
msgstr ""

#: cp/semantics.c:1348 cp/semantics.c:1387
#, gcc-internal-format
msgid "from this location"
msgstr ""

#: cp/semantics.c:1386
#, gcc-internal-format
msgid "object missing in reference to %q+D"
msgstr ""

#: cp/semantics.c:1874
#, gcc-internal-format
msgid "arguments to destructor are not allowed"
msgstr ""

#: cp/semantics.c:1925
#, gcc-internal-format
msgid "%<this%> is unavailable for static member functions"
msgstr ""

#: cp/semantics.c:1931
#, gcc-internal-format
msgid "invalid use of %<this%> in non-member function"
msgstr ""

#: cp/semantics.c:1933
#, gcc-internal-format
msgid "invalid use of %<this%> at top level"
msgstr ""

#: cp/semantics.c:1957
#, gcc-internal-format
msgid "invalid qualifying scope in pseudo-destructor name"
msgstr ""

#: cp/semantics.c:1977
#, gcc-internal-format
msgid "%qE is not of type %qT"
msgstr ""

#: cp/semantics.c:2077
#, gcc-internal-format
msgid "template type parameters must use the keyword %<class%> or %<typename%>"
msgstr ""

#: cp/semantics.c:2121
#, gcc-internal-format
msgid ""
"invalid use of type %qT as a default value for a template template-parameter"
msgstr ""

#: cp/semantics.c:2124
#, gcc-internal-format
msgid "invalid use of %qD as a default value for a template template-parameter"
msgstr ""

#: cp/semantics.c:2128
#, gcc-internal-format
msgid "invalid default argument for a template template parameter"
msgstr ""

#: cp/semantics.c:2145
#, gcc-internal-format
msgid "definition of %q#T inside template parameter list"
msgstr ""

#: cp/semantics.c:2156
#, gcc-internal-format
msgid "invalid definition of qualified type %qT"
msgstr ""

#: cp/semantics.c:2372
#, gcc-internal-format
msgid "invalid base-class specification"
msgstr ""

#: cp/semantics.c:2381
#, gcc-internal-format
msgid "base class %qT has cv qualifiers"
msgstr ""

#: cp/semantics.c:2401
#, gcc-internal-format
msgid "incomplete type %qT used in nested name specifier"
msgstr ""

#: cp/semantics.c:2404
#, gcc-internal-format
msgid "reference to %<%T::%D%> is ambiguous"
msgstr ""

#: cp/semantics.c:2408 cp/typeck.c:1636
#, gcc-internal-format
msgid "%qD is not a member of %qT"
msgstr ""

#: cp/semantics.c:2411
#, gcc-internal-format
msgid "%qD is not a member of %qD"
msgstr ""

#: cp/semantics.c:2540
#, gcc-internal-format
msgid ""
"template parameter %qD of type %qT is not allowed in an integral constant "
"expression because it is not of integral or enumeration type"
msgstr ""

#: cp/semantics.c:2694
#, gcc-internal-format
msgid "%qD cannot appear in a constant-expression"
msgstr ""

#: cp/semantics.c:2702
#, gcc-internal-format
msgid "use of namespace %qD as expression"
msgstr ""

#: cp/semantics.c:2707
#, gcc-internal-format
msgid "use of class template %qT as expression"
msgstr ""

#. Ambiguous reference to base members.
#: cp/semantics.c:2713
#, gcc-internal-format
msgid "request for member %qD is ambiguous in multiple inheritance lattice"
msgstr ""

#: cp/semantics.c:2787
#, gcc-internal-format
msgid "use of %<auto%> variable from containing function"
msgstr ""

#: cp/semantics.c:2788
#, gcc-internal-format
msgid "use of parameter from containing function"
msgstr ""

#: cp/semantics.c:2789
#, gcc-internal-format
msgid "  %q+#D declared here"
msgstr ""

#: cp/semantics.c:2839
#, gcc-internal-format
msgid "type of %qE is unknown"
msgstr ""

#: cp/tree.c:539
#, gcc-internal-format
msgid "%qV qualifiers cannot be applied to %qT"
msgstr ""

#: cp/tree.c:1741
#, gcc-internal-format
msgid "%qE attribute can only be applied to Java class definitions"
msgstr ""

#: cp/tree.c:1770
#, gcc-internal-format
msgid "%qE attribute can only be applied to class definitions"
msgstr ""

#: cp/tree.c:1776
#, gcc-internal-format
msgid "%qE is obsolete; g++ vtables are now COM-compatible by default"
msgstr ""

#: cp/tree.c:1800
#, gcc-internal-format
msgid "requested init_priority is not an integer constant"
msgstr ""

#: cp/tree.c:1821
#, gcc-internal-format
msgid ""
"can only use %qE attribute on file-scope definitions of objects of class type"
msgstr ""

#: cp/tree.c:1829
#, gcc-internal-format
msgid "requested init_priority is out of range"
msgstr ""

#: cp/tree.c:1839
#, gcc-internal-format
msgid "requested init_priority is reserved for internal use"
msgstr ""

#: cp/tree.c:1850
#, gcc-internal-format
msgid "%qE attribute is not supported on this platform"
msgstr ""

#: cp/typeck.c:429 cp/typeck.c:443 cp/typeck.c:543
#, gcc-internal-format
msgid "%s between distinct pointer types %qT and %qT lacks a cast"
msgstr ""

#: cp/typeck.c:505
#, gcc-internal-format
msgid ""
"ISO C++ forbids %s between pointer of type %<void *%> and pointer-to-function"
msgstr ""

#: cp/typeck.c:563
#, gcc-internal-format
msgid "%s between distinct pointer-to-member types %qT and %qT lacks a cast"
msgstr ""

#: cp/typeck.c:1252
#, gcc-internal-format
msgid "invalid application of %qs to a member function"
msgstr ""

#: cp/typeck.c:1287
#, gcc-internal-format
msgid "invalid application of %qs to a bit-field"
msgstr ""

#: cp/typeck.c:1292
#, gcc-internal-format
msgid "ISO C++ forbids applying %qs to an expression of function type"
msgstr ""

#: cp/typeck.c:1329
#, gcc-internal-format
msgid "invalid use of non-static member function"
msgstr ""

#: cp/typeck.c:1496
#, gcc-internal-format
msgid "deprecated conversion from string constant to %qT'"
msgstr ""

#: cp/typeck.c:1607 cp/typeck.c:1901
#, gcc-internal-format
msgid "request for member %qD in %qE, which is of non-class type %qT"
msgstr ""

#: cp/typeck.c:1634
#, gcc-internal-format
msgid "invalid use of nonstatic data member %qE"
msgstr ""

#: cp/typeck.c:1686 cp/typeck.c:1714
#, gcc-internal-format
msgid "invalid access to non-static data member %qD of NULL object"
msgstr ""

#: cp/typeck.c:1689 cp/typeck.c:1716
#, gcc-internal-format
msgid "(perhaps the %<offsetof%> macro was used incorrectly)"
msgstr ""

#: cp/typeck.c:1827
#, gcc-internal-format
msgid "qualified type %qT does not match destructor name ~%qT"
msgstr ""

#: cp/typeck.c:1833
#, gcc-internal-format
msgid "the type being destroyed is %qT, but the destructor refers to %qT"
msgstr ""

#: cp/typeck.c:1947
#, gcc-internal-format
msgid "%<%D::%D%> is not a member of %qT"
msgstr ""

#: cp/typeck.c:1958
#, gcc-internal-format
msgid "%qT is not a base of %qT"
msgstr ""

#: cp/typeck.c:1977
#, gcc-internal-format
msgid "%qD has no member named %qE"
msgstr ""

#: cp/typeck.c:1992
#, gcc-internal-format
msgid "%qD is not a member template function"
msgstr ""

#. A pointer to incomplete type (other than cv void) can be
#. dereferenced [expr.unary.op]/1
#: cp/typeck.c:2099
#, gcc-internal-format
msgid "%qT is not a pointer-to-object type"
msgstr ""

#: cp/typeck.c:2124
#, gcc-internal-format
msgid "invalid use of %qs on pointer to member"
msgstr ""

#: cp/typeck.c:2130
#, gcc-internal-format
msgid "invalid type argument"
msgstr ""

#: cp/typeck.c:2153
#, gcc-internal-format
msgid "subscript missing in array reference"
msgstr ""

#: cp/typeck.c:2235
#, gcc-internal-format
msgid "ISO C++ forbids subscripting non-lvalue array"
msgstr ""

#: cp/typeck.c:2246
#, gcc-internal-format
msgid "subscripting array declared %<register%>"
msgstr ""

#: cp/typeck.c:2329
#, gcc-internal-format
msgid "object missing in use of %qE"
msgstr ""

#: cp/typeck.c:2443
#, gcc-internal-format
msgid "ISO C++ forbids calling %<::main%> from within program"
msgstr ""

#: cp/typeck.c:2468
#, gcc-internal-format
msgid ""
"must use %<.*%> or %<->*%> to call pointer-to-member function in %<%E (...)%>"
msgstr ""

#: cp/typeck.c:2482
#, gcc-internal-format
msgid "%qE cannot be used as a function"
msgstr ""

#: cp/typeck.c:2562
#, gcc-internal-format
msgid "too many arguments to %s %q+#D"
msgstr ""

#: cp/typeck.c:2563 cp/typeck.c:2665
#, gcc-internal-format
msgid "at this point in file"
msgstr ""

#: cp/typeck.c:2566
#, gcc-internal-format
msgid "too many arguments to function"
msgstr ""

#: cp/typeck.c:2600
#, gcc-internal-format
msgid "parameter %P of %qD has incomplete type %qT"
msgstr ""

#: cp/typeck.c:2603
#, gcc-internal-format
msgid "parameter %P has incomplete type %qT"
msgstr ""

#: cp/typeck.c:2664
#, gcc-internal-format
msgid "too few arguments to %s %q+#D"
msgstr ""

#: cp/typeck.c:2668
#, gcc-internal-format
msgid "too few arguments to function"
msgstr ""

#: cp/typeck.c:2816 cp/typeck.c:2826
#, gcc-internal-format
msgid "assuming cast to type %qT from overloaded function"
msgstr ""

#: cp/typeck.c:2894
#, gcc-internal-format
msgid "division by zero in %<%E / 0%>"
msgstr ""

#: cp/typeck.c:2896
#, gcc-internal-format
msgid "division by zero in %<%E / 0.%>"
msgstr ""

#: cp/typeck.c:2931
#, gcc-internal-format
msgid "division by zero in %<%E %% 0%>"
msgstr ""

#: cp/typeck.c:2933
#, gcc-internal-format
msgid "division by zero in %<%E %% 0.%>"
msgstr ""

#: cp/typeck.c:3013
#, gcc-internal-format
msgid "%s rotate count is negative"
msgstr ""

#: cp/typeck.c:3016
#, gcc-internal-format
msgid "%s rotate count >= width of type"
msgstr ""

#: cp/typeck.c:3050 cp/typeck.c:3055 cp/typeck.c:3151 cp/typeck.c:3156
#, gcc-internal-format
msgid "ISO C++ forbids comparison between pointer and integer"
msgstr ""

#: cp/typeck.c:3170
#, gcc-internal-format
msgid "unordered comparison on non-floating point argument"
msgstr ""

#: cp/typeck.c:3208
#, gcc-internal-format
msgid "invalid operands of types %qT and %qT to binary %qO"
msgstr ""

#: cp/typeck.c:3372
#, gcc-internal-format
msgid "comparison between types %q#T and %q#T"
msgstr ""

#: cp/typeck.c:3408
#, gcc-internal-format
msgid "comparison between signed and unsigned integer expressions"
msgstr ""

#. Some sort of arithmetic operation involving NULL was
#. performed.  Note that pointer-difference and pointer-addition
#. have already been handled above, and so we don't end up here in
#. that case.
#: cp/typeck.c:3487
#, gcc-internal-format
msgid "NULL used in arithmetic"
msgstr ""

#: cp/typeck.c:3545
#, gcc-internal-format
msgid "ISO C++ forbids using pointer of type %<void *%> in subtraction"
msgstr ""

#: cp/typeck.c:3547
#, gcc-internal-format
msgid "ISO C++ forbids using pointer to a function in subtraction"
msgstr ""

#: cp/typeck.c:3549
#, gcc-internal-format
msgid "ISO C++ forbids using pointer to a method in subtraction"
msgstr ""

#: cp/typeck.c:3561
#, gcc-internal-format
msgid "invalid use of a pointer to an incomplete type in pointer arithmetic"
msgstr ""

#: cp/typeck.c:3620
#, gcc-internal-format
msgid ""
"invalid use of %qE to form a pointer-to-member-function.  Use a qualified-id."
msgstr ""

#: cp/typeck.c:3627
#, gcc-internal-format
msgid ""
"parenthesis around %qE cannot be used to form a pointer-to-member-function"
msgstr ""

#: cp/typeck.c:3650
#, gcc-internal-format
msgid "taking address of temporary"
msgstr ""

#: cp/typeck.c:3895
#, gcc-internal-format
msgid "ISO C++ forbids %sing an enum"
msgstr ""

#: cp/typeck.c:3906
#, gcc-internal-format
msgid "cannot %s a pointer to incomplete type %qT"
msgstr ""

#: cp/typeck.c:3912
#, gcc-internal-format
msgid "ISO C++ forbids %sing a pointer of type %qT"
msgstr ""

#: cp/typeck.c:3937
#, gcc-internal-format
msgid "cast to non-reference type used as lvalue"
msgstr ""

#: cp/typeck.c:3972
#, gcc-internal-format
msgid "invalid use of %<--%> on bool variable %qD"
msgstr ""

#. ARM $3.4
#: cp/typeck.c:4001
#, gcc-internal-format
msgid "ISO C++ forbids taking address of function %<::main%>"
msgstr ""

#. An expression like &memfn.
#: cp/typeck.c:4055
#, gcc-internal-format
msgid ""
"ISO C++ forbids taking the address of an unqualified or parenthesized non-"
"static member function to form a pointer to member function.  Say %<&%T::%D%>"
msgstr ""

#: cp/typeck.c:4060
#, gcc-internal-format
msgid ""
"ISO C++ forbids taking the address of a bound member function to form a "
"pointer to member function.  Say %<&%T::%D%>"
msgstr ""

#: cp/typeck.c:4088
#, gcc-internal-format
msgid "ISO C++ forbids taking the address of a cast to a non-lvalue expression"
msgstr ""

#: cp/typeck.c:4108
#, gcc-internal-format
msgid "cannot create pointer to reference member %qD"
msgstr ""

#: cp/typeck.c:4322
#, gcc-internal-format
msgid "cannot take the address of %<this%>, which is an rvalue expression"
msgstr ""

#: cp/typeck.c:4345
#, gcc-internal-format
msgid "address of explicit register variable %qD requested"
msgstr ""

#: cp/typeck.c:4350
#, gcc-internal-format
msgid "address requested for %qD, which is declared %<register%>"
msgstr ""

#: cp/typeck.c:4416
#, gcc-internal-format
msgid "%s expression list treated as compound expression"
msgstr ""

#: cp/typeck.c:4491
#, gcc-internal-format
msgid "%s from type %qT to type %qT casts away constness"
msgstr ""

#: cp/typeck.c:4790
#, gcc-internal-format
msgid "invalid static_cast from type %qT to type %qT"
msgstr ""

#: cp/typeck.c:4812
#, gcc-internal-format
msgid "converting from %qT to %qT"
msgstr ""

#: cp/typeck.c:4857
#, gcc-internal-format
msgid "invalid cast of an rvalue expression of type %qT to type %qT"
msgstr ""

#: cp/typeck.c:4916
#, gcc-internal-format
msgid "cast from %qT to %qT loses precision"
msgstr ""

#: cp/typeck.c:4941
#, gcc-internal-format
msgid "cast from %qT to %qT increases required alignment of target type"
msgstr ""

#. Only issue a warning, as we have always supported this
#. where possible, and it is necessary in some cases.  DR 195
#. addresses this issue, but as of 2004/10/26 is still in
#. drafting.
#: cp/typeck.c:4955
#, gcc-internal-format
msgid ""
"ISO C++ forbids casting between pointer-to-function and pointer-to-object"
msgstr ""

#: cp/typeck.c:4966
#, gcc-internal-format
msgid "invalid cast from type %qT to type %qT"
msgstr ""

#: cp/typeck.c:5022
#, gcc-internal-format
msgid ""
"invalid use of const_cast with type %qT, which is not a pointer, reference, "
"nor a pointer-to-data-member type"
msgstr ""

#: cp/typeck.c:5031
#, gcc-internal-format
msgid ""
"invalid use of const_cast with type %qT, which is a pointer or reference to "
"a function type"
msgstr ""

#: cp/typeck.c:5053
#, gcc-internal-format
msgid "invalid const_cast of an rvalue of type %qT to type %qT"
msgstr ""

#: cp/typeck.c:5096
#, gcc-internal-format
msgid "invalid const_cast from type %qT to type %qT"
msgstr ""

#: cp/typeck.c:5164 cp/typeck.c:5169
#, gcc-internal-format
msgid "ISO C++ forbids casting to an array type %qT"
msgstr ""

#: cp/typeck.c:5177
#, gcc-internal-format
msgid "invalid cast to function type %qT"
msgstr ""

#: cp/typeck.c:5393
#, gcc-internal-format
msgid "  in evaluation of %<%Q(%#T, %#T)%>"
msgstr ""

#: cp/typeck.c:5462
#, gcc-internal-format
msgid "incompatible types in assignment of %qT to %qT"
msgstr ""

#: cp/typeck.c:5469
#, gcc-internal-format
msgid "ISO C++ forbids assignment of arrays"
msgstr ""

#: cp/typeck.c:5587
#, gcc-internal-format
msgid "   in pointer to member function conversion"
msgstr ""

#: cp/typeck.c:5598 cp/typeck.c:5624
#, gcc-internal-format
msgid "pointer to member cast via virtual base %qT"
msgstr ""

#: cp/typeck.c:5601
#, gcc-internal-format
msgid "pointer to member conversion via virtual base %qT"
msgstr ""

#: cp/typeck.c:5610
#, gcc-internal-format
msgid "   in pointer to member conversion"
msgstr ""

#: cp/typeck.c:5700
#, gcc-internal-format
msgid "invalid conversion to type %qT from type %qT"
msgstr ""

#: cp/typeck.c:5944
#, gcc-internal-format
msgid "cannot convert %qT to %qT for argument %qP to %qD"
msgstr ""

#: cp/typeck.c:5947
#, gcc-internal-format
msgid "cannot convert %qT to %qT in %s"
msgstr ""

#: cp/typeck.c:5958
#, gcc-internal-format
msgid "%s might be a candidate for a format attribute"
msgstr ""

#: cp/typeck.c:6031 cp/typeck.c:6033
#, gcc-internal-format
msgid "in passing argument %P of %q+D"
msgstr ""

#: cp/typeck.c:6083
#, gcc-internal-format
msgid "returning reference to temporary"
msgstr ""

#: cp/typeck.c:6090
#, gcc-internal-format
msgid "reference to non-lvalue returned"
msgstr ""

#: cp/typeck.c:6102
#, gcc-internal-format
msgid "reference to local variable %q+D returned"
msgstr ""

#: cp/typeck.c:6105
#, gcc-internal-format
msgid "address of local variable %q+D returned"
msgstr ""

#: cp/typeck.c:6135
#, gcc-internal-format
msgid "returning a value from a destructor"
msgstr ""

#. If a return statement appears in a handler of the
#. function-try-block of a constructor, the program is ill-formed.
#: cp/typeck.c:6143
#, gcc-internal-format
msgid "cannot return from a handler of a function-try-block of a constructor"
msgstr ""

#. You can't return a value from a constructor.
#: cp/typeck.c:6146
#, gcc-internal-format
msgid "returning a value from a constructor"
msgstr ""

#: cp/typeck.c:6169
#, gcc-internal-format
msgid "return-statement with no value, in function returning %qT"
msgstr ""

#: cp/typeck.c:6186
#, gcc-internal-format
msgid "return-statement with a value, in function returning 'void'"
msgstr ""

#: cp/typeck.c:6217
#, gcc-internal-format
msgid ""
"%<operator new%> must not return NULL unless it is declared %<throw()%> (or -"
"fcheck-new is in effect)"
msgstr ""

#: cp/typeck2.c:54
#, gcc-internal-format
msgid "type %qT is not a base type for type %qT"
msgstr ""

#: cp/typeck2.c:294
#, gcc-internal-format
msgid "cannot declare variable %q+D to be of abstract type %qT"
msgstr ""

#: cp/typeck2.c:297
#, gcc-internal-format
msgid "cannot declare parameter %q+D to be of abstract type %qT"
msgstr ""

#: cp/typeck2.c:300
#, gcc-internal-format
msgid "cannot declare field %q+D to be of abstract type %qT"
msgstr ""

#: cp/typeck2.c:304
#, gcc-internal-format
msgid "invalid abstract return type for member function %q+#D"
msgstr ""

#: cp/typeck2.c:306
#, gcc-internal-format
msgid "invalid abstract return type for function %q+#D"
msgstr ""

#. Here we do not have location information.
#: cp/typeck2.c:309
#, gcc-internal-format
msgid "invalid abstract type %qT for %qE"
msgstr ""

#: cp/typeck2.c:311
#, gcc-internal-format
msgid "invalid abstract type for %q+D"
msgstr ""

#: cp/typeck2.c:314
#, gcc-internal-format
msgid "cannot allocate an object of abstract type %qT"
msgstr ""

#: cp/typeck2.c:322
#, gcc-internal-format
msgid "%J  because the following virtual functions are pure within %qT:"
msgstr ""

#: cp/typeck2.c:326
#, gcc-internal-format
msgid "\t%+#D"
msgstr ""

#: cp/typeck2.c:333
#, gcc-internal-format
msgid "%J  since type %qT has pure virtual functions"
msgstr ""

#: cp/typeck2.c:588
#, gcc-internal-format
msgid "constructor syntax used, but no constructor declared for type %qT"
msgstr ""

#: cp/typeck2.c:602
#, gcc-internal-format
msgid "cannot initialize arrays using this syntax"
msgstr ""

#: cp/typeck2.c:678
#, gcc-internal-format
msgid "int-array initialized from non-wide string"
msgstr ""

#: cp/typeck2.c:720
#, gcc-internal-format
msgid "cannot initialize aggregate of type %qT with a compound literal"
msgstr ""

#: cp/typeck2.c:794 cp/typeck2.c:892
#, gcc-internal-format
msgid "non-trivial designated initializers not supported"
msgstr ""

#: cp/typeck2.c:914 cp/typeck2.c:928
#, gcc-internal-format
msgid "missing initializer for member %qD"
msgstr ""

#: cp/typeck2.c:919
#, gcc-internal-format
msgid "uninitialized const member %qD"
msgstr ""

#: cp/typeck2.c:921
#, gcc-internal-format
msgid "member %qD with uninitialized const fields"
msgstr ""

#: cp/typeck2.c:923
#, gcc-internal-format
msgid "member %qD is uninitialized reference"
msgstr ""

#: cp/typeck2.c:978
#, gcc-internal-format
msgid "no field %qD found in union being initialized"
msgstr ""

#: cp/typeck2.c:987
#, gcc-internal-format
msgid "index value instead of field name in union initializer"
msgstr ""

#: cp/typeck2.c:1000
#, gcc-internal-format
msgid "union %qT with no named members cannot be initialized"
msgstr ""

#: cp/typeck2.c:1147
#, gcc-internal-format
msgid "circular pointer delegation detected"
msgstr ""

#: cp/typeck2.c:1160
#, gcc-internal-format
msgid "base operand of %<->%> has non-pointer type %qT"
msgstr ""

#: cp/typeck2.c:1184
#, gcc-internal-format
msgid "result of %<operator->()%> yields non-pointer result"
msgstr ""

#: cp/typeck2.c:1186
#, gcc-internal-format
msgid "base operand of %<->%> is not a pointer"
msgstr ""

#: cp/typeck2.c:1210
#, gcc-internal-format
msgid "%qE cannot be used as a member pointer, since it is of type %qT"
msgstr ""

#: cp/typeck2.c:1219
#, gcc-internal-format
msgid ""
"cannot apply member pointer %qE to %qE, which is of non-aggregate type %qT"
msgstr ""

#: cp/typeck2.c:1241
#, gcc-internal-format
msgid "pointer to member type %qT incompatible with object type %qT"
msgstr ""

#: cp/typeck2.c:1464
#, gcc-internal-format
msgid "call to function %qD which throws incomplete type %q#T"
msgstr ""

#: cp/typeck2.c:1467
#, gcc-internal-format
msgid "call to function which throws incomplete type %q#T"
msgstr ""

#. Something went wrong
#: fortran/arith.c:601 fortran/arith.c:607 fortran/arith.c:1607
#: fortran/arith.c:1934 fortran/arith.c:2036 fortran/arith.c:2068
#: fortran/arith.c:2123 fortran/arith.c:2155 fortran/arith.c:2170
#, gcc-internal-format
msgid "%s at %L"
msgstr ""

#: fortran/arith.c:1910
#, gcc-internal-format
msgid "%s converting %s to %s at %L"
msgstr ""

#: fortran/arith.c:2238 fortran/arith.c:2273 fortran/arith.c:2310
#: fortran/arith.c:2360
#, gcc-internal-format
msgid "The Hollerith constant at %L is too long to convert to %s"
msgstr ""

#: fortran/array.c:97
#, gcc-internal-format
msgid "Expected array subscript at %C"
msgstr ""

#: fortran/array.c:124
#, gcc-internal-format
msgid "Expected array subscript stride at %C"
msgstr ""

#: fortran/array.c:167
#, gcc-internal-format
msgid "Invalid form of array reference at %C"
msgstr ""

#: fortran/array.c:172
#, gcc-internal-format
msgid "Array reference at %C cannot have more than %d dimensions"
msgstr ""

#: fortran/array.c:224
#, gcc-internal-format
msgid "Variable '%s' at %L in this context must be constant"
msgstr ""

#: fortran/array.c:300
#, gcc-internal-format
msgid "Expected expression in array specification at %C"
msgstr ""

#: fortran/array.c:379
#, gcc-internal-format
msgid "Bad array specification for an explicitly shaped array at %C"
msgstr ""

#: fortran/array.c:390
#, gcc-internal-format
msgid "Bad array specification for assumed shape array at %C"
msgstr ""

#: fortran/array.c:403
#, gcc-internal-format
msgid "Bad specification for deferred shape array at %C"
msgstr ""

#: fortran/array.c:407
#, gcc-internal-format
msgid "Bad specification for assumed size array at %C"
msgstr ""

#: fortran/array.c:416
#, gcc-internal-format
msgid "Expected another dimension in array declaration at %C"
msgstr ""

#: fortran/array.c:422
#, gcc-internal-format
msgid "Array specification at %C has more than %d dimensions"
msgstr ""

#: fortran/array.c:627
#, gcc-internal-format
msgid "duplicated initializer"
msgstr ""

#: fortran/array.c:720
#, gcc-internal-format
msgid "DO-iterator '%s' at %L is inside iterator of the same name"
msgstr ""

#: fortran/array.c:822 fortran/array.c:931
#, gcc-internal-format
msgid "Syntax error in array constructor at %C"
msgstr ""

#: fortran/array.c:877
#, gcc-internal-format
msgid "New in Fortran 2003: [...] style array constructors at %C"
msgstr ""

#: fortran/array.c:891
#, gcc-internal-format
msgid "Empty array constructor at %C is not allowed"
msgstr ""

#: fortran/array.c:976
#, gcc-internal-format
msgid "Element in %s array constructor at %L is %s"
msgstr ""

#: fortran/array.c:1305
#, gcc-internal-format
msgid "Iterator step at %L cannot be zero"
msgstr ""

#: fortran/check.c:42
#, gcc-internal-format
msgid "'%s' argument of '%s' intrinsic at %L must be %s"
msgstr ""

#: fortran/check.c:129
#, gcc-internal-format
msgid "Invalid kind for %s at %L"
msgstr ""

#: fortran/check.c:243
#, gcc-internal-format
msgid "'%s' argument of '%s' intrinsic at %L must not be OPTIONAL"
msgstr ""

#: fortran/check.c:286
#, gcc-internal-format
msgid "'%s' argument of '%s' intrinsic at %L cannot be INTENT(IN)"
msgstr ""

#: fortran/check.c:316
#, gcc-internal-format
msgid "Missing DIM parameter in intrinsic '%s' at %L"
msgstr ""

#: fortran/check.c:353
#, gcc-internal-format
msgid "'dim' argument of '%s' intrinsic at %L is not a valid dimension index"
msgstr ""

#: fortran/check.c:486
#, gcc-internal-format
msgid ""
"NULL pointer at %L is not permitted as actual argument of '%s' intrinsic "
"function"
msgstr ""

#: fortran/check.c:509
#, gcc-internal-format
msgid ""
"Array section with a vector subscript at %L shall not be the target of a "
"pointer"
msgstr ""

#: fortran/check.c:873 fortran/check.c:1003 fortran/check.c:1063
#: fortran/check.c:1280
#, gcc-internal-format
msgid "Extension: Different type kinds at %L"
msgstr ""

#: fortran/check.c:973
#, gcc-internal-format
msgid "Argument of %s at %L must be of length one"
msgstr ""

#: fortran/check.c:1252
#, gcc-internal-format
msgid "Intrinsic '%s' at %L must have at least two arguments"
msgstr ""

#: fortran/check.c:1286
#, gcc-internal-format
msgid "'a%d' argument of '%s' intrinsic at %L must be %s(%d)"
msgstr ""

#: fortran/check.c:1311
#, gcc-internal-format
msgid "'a1' argument of '%s' intrinsic at %L must be INTEGER or REAL"
msgstr ""

#: fortran/check.c:1720
#, gcc-internal-format
msgid ""
"'shape' argument of 'reshape' intrinsic at %L must be an array of constant "
"size"
msgstr ""

#: fortran/check.c:1730
#, gcc-internal-format
msgid "'shape' argument of 'reshape' intrinsic at %L has more than %d elements"
msgstr ""

#: fortran/check.c:1801
#, gcc-internal-format
msgid "Missing arguments to %s intrinsic at %L"
msgstr ""

#: fortran/check.c:1842
#, gcc-internal-format
msgid ""
"'source' argument of 'shape' intrinsic at %L must not be an assumed size "
"array"
msgstr ""

#: fortran/check.c:2259 fortran/check.c:2279
#, gcc-internal-format
msgid "Too many arguments to %s at %L"
msgstr ""

#: fortran/data.c:63
#, gcc-internal-format
msgid "non-constant array in DATA statement %L."
msgstr ""

#: fortran/decl.c:184
#, gcc-internal-format
msgid "Variable '%s' at %C already has an initialization"
msgstr ""

#: fortran/decl.c:195
#, gcc-internal-format
msgid "DATA statement at %C may not initialize variable '%s' from blank COMMON"
msgstr ""

#: fortran/decl.c:282
#, gcc-internal-format
msgid "Symbol '%s' must be a PARAMETER in DATA statement at %C"
msgstr ""

#: fortran/decl.c:389
#, gcc-internal-format
msgid "Initialization at %C is not allowed in a PURE procedure"
msgstr ""

#: fortran/decl.c:436
#, gcc-internal-format
msgid "DATA statement at %C is not allowed in a PURE procedure"
msgstr ""

#: fortran/decl.c:464
#, gcc-internal-format
msgid "Bad INTENT specification at %C"
msgstr ""

#: fortran/decl.c:528
#, gcc-internal-format
msgid "Syntax error in character length specification at %C"
msgstr ""

#: fortran/decl.c:697
#, gcc-internal-format
msgid "Initializer not allowed for PARAMETER '%s' at %C"
msgstr ""

#: fortran/decl.c:706
#, gcc-internal-format
msgid "Initializer not allowed for COMMON variable '%s' at %C"
msgstr ""

#: fortran/decl.c:716
#, gcc-internal-format
msgid "PARAMETER at %L is missing an initializer"
msgstr ""

#: fortran/decl.c:727
#, gcc-internal-format
msgid ""
"Variable '%s' at %C with an initializer already appears in a DATA statement"
msgstr ""

#: fortran/decl.c:794
#, gcc-internal-format
msgid "Component at %C must have the POINTER attribute"
msgstr ""

#: fortran/decl.c:803
#, gcc-internal-format
msgid "Array component of structure at %C must have explicit or deferred shape"
msgstr ""

#: fortran/decl.c:832
#, gcc-internal-format
msgid "Pointer array component of structure at %C must have a deferred shape"
msgstr ""

#: fortran/decl.c:842
#, gcc-internal-format
msgid "Array component of structure at %C must have an explicit shape"
msgstr ""

#: fortran/decl.c:868
#, gcc-internal-format
msgid "NULL() initialization at %C is ambiguous"
msgstr ""

#: fortran/decl.c:977
#, gcc-internal-format
msgid "Function name '%s' not allowed at %C"
msgstr ""

#: fortran/decl.c:993
#, gcc-internal-format
msgid "Extension: Old-style initialization at %C"
msgstr ""

#: fortran/decl.c:1009
#, gcc-internal-format
msgid "Initialization at %C isn't for a pointer variable"
msgstr ""

#: fortran/decl.c:1017
#, gcc-internal-format
msgid "Pointer initialization requires a NULL at %C"
msgstr ""

#: fortran/decl.c:1024
#, gcc-internal-format
msgid "Initialization of pointer at %C is not allowed in a PURE procedure"
msgstr ""

#: fortran/decl.c:1040
#, gcc-internal-format
msgid "Pointer initialization at %C requires '=>', not '='"
msgstr ""

#: fortran/decl.c:1048
#, gcc-internal-format
msgid "Expected an initialization expression at %C"
msgstr ""

#: fortran/decl.c:1055
#, gcc-internal-format
msgid "Initialization of variable at %C is not allowed in a PURE procedure"
msgstr ""

#: fortran/decl.c:1110
#, gcc-internal-format
msgid "Old-style kind %d not supported for type %s at %C"
msgstr ""

#: fortran/decl.c:1146
#, gcc-internal-format
msgid "Expected initialization expression at %C"
msgstr ""

#: fortran/decl.c:1152
#, gcc-internal-format
msgid "Expected scalar initialization expression at %C"
msgstr ""

#: fortran/decl.c:1170
#, gcc-internal-format
msgid "Kind %d not supported for type %s at %C"
msgstr ""

#: fortran/decl.c:1179
#, gcc-internal-format
msgid "Missing right paren at %C"
msgstr ""

#: fortran/decl.c:1268 fortran/decl.c:1311
#, gcc-internal-format
msgid "Kind %d is not a CHARACTER kind at %C"
msgstr ""

#: fortran/decl.c:1305
#, gcc-internal-format
msgid "Syntax error in CHARACTER declaration at %C"
msgstr ""

#: fortran/decl.c:1422
#, gcc-internal-format
msgid "Type name '%s' at %C is ambiguous"
msgstr ""

#: fortran/decl.c:1488
#, gcc-internal-format
msgid "Missing character range in IMPLICIT at %C"
msgstr ""

#: fortran/decl.c:1534
#, gcc-internal-format
msgid "Letters must be in alphabetic order in IMPLICIT statement at %C"
msgstr ""

#: fortran/decl.c:1588
#, gcc-internal-format
msgid "Empty IMPLICIT statement at %C"
msgstr ""

#: fortran/decl.c:1759
#, gcc-internal-format
msgid "Missing dimension specification at %C"
msgstr ""

#: fortran/decl.c:1829
#, gcc-internal-format
msgid "Duplicate %s attribute at %L"
msgstr ""

#: fortran/decl.c:1846
#, gcc-internal-format
msgid "Attribute at %L is not allowed in a TYPE definition"
msgstr ""

#: fortran/decl.c:1980
#, gcc-internal-format
msgid "Derived type at %C has not been previously defined"
msgstr ""

#: fortran/decl.c:2007
#, gcc-internal-format
msgid "Syntax error in data declaration at %C"
msgstr ""

#: fortran/decl.c:2153
#, gcc-internal-format
msgid "Name '%s' at %C is the name of the procedure"
msgstr ""

#: fortran/decl.c:2165
#, gcc-internal-format
msgid "Unexpected junk in formal argument list at %C"
msgstr ""

#: fortran/decl.c:2183
#, gcc-internal-format
msgid "Duplicate symbol '%s' in formal argument list at %C"
msgstr ""

#: fortran/decl.c:2226
#, gcc-internal-format
msgid "Unexpected junk following RESULT variable at %C"
msgstr ""

#: fortran/decl.c:2233
#, gcc-internal-format
msgid "RESULT variable at %C must be different than function name"
msgstr ""

#: fortran/decl.c:2288
#, gcc-internal-format
msgid "Expected formal argument list in function definition at %C"
msgstr ""

#: fortran/decl.c:2299
#, gcc-internal-format
msgid "Unexpected junk after function declaration at %C"
msgstr ""

#: fortran/decl.c:2320
#, gcc-internal-format
msgid "Function '%s' at %C already has a type of %s"
msgstr ""

#: fortran/decl.c:2365
#, gcc-internal-format
msgid "ENTRY statement at %C cannot appear within %s"
msgstr ""

#: fortran/decl.c:2374
#, gcc-internal-format
msgid "ENTRY statement at %C cannot appear in a contained procedure"
msgstr ""

#: fortran/decl.c:2431
#, gcc-internal-format
msgid "RESULT attribute required in ENTRY statement at %C"
msgstr ""

#: fortran/decl.c:2629
#, gcc-internal-format
msgid "Unexpected END statement at %C"
msgstr ""

#. We would have required END [something]
#: fortran/decl.c:2638
#, gcc-internal-format
msgid "%s statement expected at %L"
msgstr ""

#: fortran/decl.c:2649
#, gcc-internal-format
msgid "Expecting %s statement at %C"
msgstr ""

#: fortran/decl.c:2663
#, gcc-internal-format
msgid "Expected block name of '%s' in %s statement at %C"
msgstr ""

#: fortran/decl.c:2679
#, gcc-internal-format
msgid "Expected terminating name at %C"
msgstr ""

#: fortran/decl.c:2688
#, gcc-internal-format
msgid "Expected label '%s' for %s statement at %C"
msgstr ""

#: fortran/decl.c:2743
#, gcc-internal-format
msgid "Missing array specification at %L in DIMENSION statement"
msgstr ""

#: fortran/decl.c:2752
#, gcc-internal-format
msgid "Array specification must be deferred at %L"
msgstr ""

#: fortran/decl.c:2815
#, gcc-internal-format
msgid "Unexpected character in variable list at %C"
msgstr ""

#: fortran/decl.c:2968
#, gcc-internal-format
msgid ""
"Access specification of the %s operator at %C has already been specified"
msgstr ""

#: fortran/decl.c:2986
#, gcc-internal-format
msgid ""
"Access specification of the .%s. operator at %C has already been specified"
msgstr ""

#: fortran/decl.c:3073
#, gcc-internal-format
msgid "Expected variable name at %C in PARAMETER statement"
msgstr ""

#: fortran/decl.c:3080
#, gcc-internal-format
msgid "Expected = sign in PARAMETER statement at %C"
msgstr ""

#: fortran/decl.c:3086
#, gcc-internal-format
msgid "Expected expression at %C in PARAMETER statement"
msgstr ""

#: fortran/decl.c:3144
#, gcc-internal-format
msgid "Unexpected characters in PARAMETER statement at %C"
msgstr ""

#: fortran/decl.c:3168
#, gcc-internal-format
msgid "Blanket SAVE statement at %C follows previous SAVE statement"
msgstr ""

#: fortran/decl.c:3180
#, gcc-internal-format
msgid "SAVE statement at %C follows blanket SAVE statement"
msgstr ""

#: fortran/decl.c:3225
#, gcc-internal-format
msgid "Syntax error in SAVE statement at %C"
msgstr ""

#: fortran/decl.c:3246
#, gcc-internal-format
msgid "MODULE PROCEDURE at %C must be in a generic module interface"
msgstr ""

#: fortran/decl.c:3306
#, gcc-internal-format
msgid "Derived type at %C can only be PRIVATE within a MODULE"
msgstr ""

#: fortran/decl.c:3319
#, gcc-internal-format
msgid "Derived type at %C can only be PUBLIC within a MODULE"
msgstr ""

#: fortran/decl.c:3330
#, gcc-internal-format
msgid "Expected :: in TYPE definition at %C"
msgstr ""

#: fortran/decl.c:3347
#, gcc-internal-format
msgid "Type name '%s' at %C cannot be the same as an intrinsic type"
msgstr ""

#: fortran/decl.c:3357
#, gcc-internal-format
msgid "Derived type name '%s' at %C already has a basic type of %s"
msgstr ""

#: fortran/decl.c:3374
#, gcc-internal-format
msgid "Derived type definition of '%s' at %C has already been defined"
msgstr ""

#: fortran/error.c:137
#, gcc-internal-format
msgid "In file %s:%d\n"
msgstr ""

#: fortran/error.c:152
#, gcc-internal-format
msgid "    Included at %s:%d\n"
msgstr ""

#: fortran/error.c:204
#, gcc-internal-format
msgid "<During initialization>\n"
msgstr ""

#: fortran/error.c:656
#, gcc-internal-format
msgid "Internal Error at (1):"
msgstr ""

#: fortran/expr.c:1256
#, gcc-internal-format
msgid "Numeric or CHARACTER operands are required in expression at %L"
msgstr ""

#: fortran/expr.c:1276
#, gcc-internal-format
msgid "Exponent at %L must be INTEGER for an initialization expression"
msgstr ""

#: fortran/expr.c:1289
#, gcc-internal-format
msgid ""
"Concatenation operator in expression at %L must have two CHARACTER operands"
msgstr ""

#: fortran/expr.c:1296
#, gcc-internal-format
msgid "Concat operator at %L must concatenate strings of the same kind"
msgstr ""

#: fortran/expr.c:1306
#, gcc-internal-format
msgid ".NOT. operator in expression at %L must have a LOGICAL operand"
msgstr ""

#: fortran/expr.c:1322
#, gcc-internal-format
msgid "LOGICAL operands are required in expression at %L"
msgstr ""

#: fortran/expr.c:1330
#, gcc-internal-format
msgid "Only intrinsic operators can be used in expression at %L"
msgstr ""

#: fortran/expr.c:1338
#, gcc-internal-format
msgid "Numeric operands are required in expression at %L"
msgstr ""

#: fortran/expr.c:1443
#, gcc-internal-format
msgid ""
"Function '%s' in initialization expression at %L must be an intrinsic "
"function"
msgstr ""

#: fortran/expr.c:1465
#, gcc-internal-format
msgid "Variable '%s' at %L cannot appear in an initialization expression"
msgstr ""

#: fortran/expr.c:1587
#, gcc-internal-format
msgid "Specification function '%s' at %L cannot be a statement function"
msgstr ""

#: fortran/expr.c:1594
#, gcc-internal-format
msgid "Specification function '%s' at %L cannot be an internal function"
msgstr ""

#: fortran/expr.c:1601
#, gcc-internal-format
msgid "Specification function '%s' at %L must be PURE"
msgstr ""

#: fortran/expr.c:1608
#, gcc-internal-format
msgid "Specification function '%s' at %L cannot be RECURSIVE"
msgstr ""

#: fortran/expr.c:1665
#, gcc-internal-format
msgid "Dummy argument '%s' at %L cannot be OPTIONAL"
msgstr ""

#: fortran/expr.c:1672
#, gcc-internal-format
msgid "Dummy argument '%s' at %L cannot be INTENT(OUT)"
msgstr ""

#: fortran/expr.c:1688
#, gcc-internal-format
msgid "Variable '%s' cannot appear in the expression at %L"
msgstr ""

#: fortran/expr.c:1734
#, gcc-internal-format
msgid "Expression at %L must be of INTEGER type"
msgstr ""

#: fortran/expr.c:1740
#, gcc-internal-format
msgid "Expression at %L must be scalar"
msgstr ""

#: fortran/expr.c:1768
#, gcc-internal-format
msgid "Incompatible ranks in %s at %L"
msgstr ""

#: fortran/expr.c:1782
#, gcc-internal-format
msgid "%s at %L has different shape on dimension %d (%d/%d)"
msgstr ""

#: fortran/expr.c:1815
#, gcc-internal-format
msgid "Can't assign to INTENT(IN) variable '%s' at %L"
msgstr ""

#: fortran/expr.c:1822
#, gcc-internal-format
msgid "Incompatible ranks %d and %d in assignment at %L"
msgstr ""

#: fortran/expr.c:1829
#, gcc-internal-format
msgid "Variable type is UNKNOWN in assignment at %L"
msgstr ""

#: fortran/expr.c:1836
#, gcc-internal-format
msgid "NULL appears on right-hand side in assignment at %L"
msgstr ""

#: fortran/expr.c:1845
#, gcc-internal-format
msgid "POINTER valued function appears on right-hand side of assignment at %L"
msgstr ""

#: fortran/expr.c:1867
#, gcc-internal-format
msgid "Incompatible types in assignment at %L, %s to %s"
msgstr ""

#: fortran/expr.c:1890
#, gcc-internal-format
msgid "Pointer assignment target is not a POINTER at %L"
msgstr ""

#: fortran/expr.c:1898
#, gcc-internal-format
msgid "Pointer assignment to non-POINTER at %L"
msgstr ""

#: fortran/expr.c:1906
#, gcc-internal-format
msgid "Bad pointer object in PURE procedure at %L"
msgstr ""

#: fortran/expr.c:1919
#, gcc-internal-format
msgid "Different types in pointer assignment at %L"
msgstr ""

#: fortran/expr.c:1926
#, gcc-internal-format
msgid "Different kind type parameters in pointer assignment at %L"
msgstr ""

#: fortran/expr.c:1934
#, gcc-internal-format
msgid "Pointer assignment target is neither TARGET nor POINTER at %L"
msgstr ""

#: fortran/expr.c:1941
#, gcc-internal-format
msgid "Bad target in pointer assignment in PURE procedure at %L"
msgstr ""

#: fortran/expr.c:1947
#, gcc-internal-format
msgid "Unequal ranks %d and %d in pointer assignment at %L"
msgstr ""

#: fortran/f95-lang.c:233
#, gcc-internal-format
msgid "Unexpected type in truthvalue_conversion"
msgstr ""

#: fortran/f95-lang.c:286
#, gcc-internal-format
msgid "can't open input file: %s"
msgstr ""

#: fortran/f95-lang.c:612
#, gcc-internal-format
msgid "global register variable %qs used in nested function"
msgstr ""

#: fortran/f95-lang.c:616
#, gcc-internal-format
msgid "register variable %qs used in nested function"
msgstr ""

#: fortran/f95-lang.c:623
#, gcc-internal-format
msgid "address of global register variable %qs requested"
msgstr ""

#: fortran/f95-lang.c:641
#, gcc-internal-format
msgid "address of register variable %qs requested"
msgstr ""

#: fortran/interface.c:175
#, gcc-internal-format
msgid "Syntax error in generic specification at %C"
msgstr ""

#: fortran/interface.c:204
#, gcc-internal-format
msgid "Syntax error: Trailing garbage in INTERFACE statement at %C"
msgstr ""

#: fortran/interface.c:262
#, gcc-internal-format
msgid "Syntax error: Trailing garbage in END INTERFACE statement at %C"
msgstr ""

#: fortran/interface.c:273
#, gcc-internal-format
msgid "Expected a nameless interface at %C"
msgstr ""

#: fortran/interface.c:284
#, gcc-internal-format
msgid "Expected 'END INTERFACE ASSIGNMENT (=)' at %C"
msgstr ""

#: fortran/interface.c:286
#, gcc-internal-format
msgid "Expecting 'END INTERFACE OPERATOR (%s)' at %C"
msgstr ""

#: fortran/interface.c:300
#, gcc-internal-format
msgid "Expecting 'END INTERFACE OPERATOR (.%s.)' at %C"
msgstr ""

#: fortran/interface.c:311
#, gcc-internal-format
msgid "Expecting 'END INTERFACE %s' at %C"
msgstr ""

#: fortran/interface.c:509
#, gcc-internal-format
msgid "Assignment operator interface at %L must be a SUBROUTINE"
msgstr ""

#: fortran/interface.c:518
#, gcc-internal-format
msgid "Intrinsic operator interface at %L must be a FUNCTION"
msgstr ""

#: fortran/interface.c:605
#, gcc-internal-format
msgid ""
"First argument of defined assignment at %L must be INTENT(IN) or INTENT"
"(INOUT)"
msgstr ""

#: fortran/interface.c:609
#, gcc-internal-format
msgid "Second argument of defined assignment at %L must be INTENT(IN)"
msgstr ""

#: fortran/interface.c:615
#, gcc-internal-format
msgid "First argument of operator interface at %L must be INTENT(IN)"
msgstr ""

#: fortran/interface.c:619
#, gcc-internal-format
msgid "Second argument of operator interface at %L must be INTENT(IN)"
msgstr ""

#: fortran/interface.c:626
#, gcc-internal-format
msgid "Operator interface at %L conflicts with intrinsic interface"
msgstr ""

#: fortran/interface.c:631
#, gcc-internal-format
msgid "Operator interface at %L has the wrong number of arguments"
msgstr ""

#: fortran/interface.c:880
#, gcc-internal-format
msgid "Procedure '%s' in %s at %L is neither function nor subroutine"
msgstr ""

#: fortran/interface.c:935
#, gcc-internal-format
msgid "Ambiguous interfaces '%s' and '%s' in %s at %L"
msgstr ""

#: fortran/interface.c:1184
#, gcc-internal-format
msgid "Keyword argument '%s' at %L is not in the procedure"
msgstr ""

#: fortran/interface.c:1193
#, gcc-internal-format
msgid ""
"Keyword argument '%s' at %L is already associated with another actual "
"argument"
msgstr ""

#: fortran/interface.c:1203
#, gcc-internal-format
msgid "More actual than formal arguments in procedure call at %L"
msgstr ""

#: fortran/interface.c:1216
#, gcc-internal-format
msgid "Missing alternate return spec in subroutine call at %L"
msgstr ""

#: fortran/interface.c:1225
#, gcc-internal-format
msgid "Unexpected alternate return spec in subroutine call at %L"
msgstr ""

#: fortran/interface.c:1234
#, gcc-internal-format
msgid "Type/rank mismatch in argument '%s' at %L"
msgstr ""

#: fortran/interface.c:1243
#, gcc-internal-format
msgid "Actual argument for '%s' must be a pointer at %L"
msgstr ""

#: fortran/interface.c:1264
#, gcc-internal-format
msgid "Missing actual argument for argument '%s' at %L"
msgstr ""

#: fortran/interface.c:1449
#, gcc-internal-format
msgid ""
"Same actual argument associated with INTENT(%s) argument '%s' and INTENT(%s) "
"argument '%s' at %L"
msgstr ""

#: fortran/interface.c:1490
#, gcc-internal-format
msgid ""
"Procedure argument at %L is INTENT(IN) while interface specifies INTENT(%s)"
msgstr ""

#: fortran/interface.c:1501
#, gcc-internal-format
msgid ""
"Procedure argument at %L is local to a PURE procedure and is passed to an "
"INTENT(%s) argument"
msgstr ""

#: fortran/interface.c:1510
#, gcc-internal-format
msgid ""
"Procedure argument at %L is local to a PURE procedure and has the POINTER "
"attribute"
msgstr ""

#: fortran/interface.c:1531
#, gcc-internal-format
msgid "Procedure '%s' called with an implicit interface at %L"
msgstr ""

#: fortran/interface.c:1697
#, gcc-internal-format
msgid "Function '%s' called in lieu of an operator at %L must be PURE"
msgstr ""

#: fortran/interface.c:1762
#, gcc-internal-format
msgid "Subroutine '%s' called in lieu of assignment at %L must be PURE"
msgstr ""

#: fortran/interface.c:1784
#, gcc-internal-format
msgid "Entity '%s' at %C is already present in the interface"
msgstr ""

#: fortran/intrinsic.c:2552
#, gcc-internal-format
msgid "Too many arguments in call to '%s' at %L"
msgstr ""

#: fortran/intrinsic.c:2566
#, gcc-internal-format
msgid "Can't find keyword named '%s' in call to '%s' at %L"
msgstr ""

#: fortran/intrinsic.c:2573
#, gcc-internal-format
msgid "Argument '%s' is appears twice in call to '%s' at %L"
msgstr ""

#: fortran/intrinsic.c:2587
#, gcc-internal-format
msgid "Missing actual argument '%s' in call to '%s' at %L"
msgstr ""

#: fortran/intrinsic.c:2646
#, gcc-internal-format
msgid "Type of argument '%s' in call to '%s' at %L should be %s, not %s"
msgstr ""

#: fortran/intrinsic.c:2950
#, gcc-internal-format
msgid "Ranks of arguments to elemental intrinsic '%s' differ at %L"
msgstr ""

#: fortran/intrinsic.c:2996
#, gcc-internal-format
msgid "Intrinsic '%s' at %L is not included in the selected standard"
msgstr ""

#: fortran/intrinsic.c:3099
#, gcc-internal-format
msgid "Extension: Evaluation of nonstandard initialization expression at %L"
msgstr ""

#: fortran/intrinsic.c:3159
#, gcc-internal-format
msgid "Subroutine call to intrinsic '%s' at %L is not PURE"
msgstr ""

#: fortran/intrinsic.c:3233
#, gcc-internal-format
msgid "Extension: Conversion from %s to %s at %L"
msgstr ""

#: fortran/intrinsic.c:3236
#, gcc-internal-format
msgid "Conversion from %s to %s at %L"
msgstr ""

#: fortran/intrinsic.c:3273
#, gcc-internal-format
msgid "Can't convert %s to %s at %L"
msgstr ""

#. X requires a prior number if we're being pedantic.
#: fortran/io.c:475
#, gcc-internal-format
msgid "Extension: X descriptor requires leading space count at %C"
msgstr ""

#: fortran/io.c:495
#, gcc-internal-format
msgid "Extension: $ descriptor at %C"
msgstr ""

#: fortran/io.c:709 fortran/io.c:761
#, gcc-internal-format
msgid "Extension: Missing comma at %C"
msgstr ""

#: fortran/io.c:776 fortran/io.c:779
#, gcc-internal-format
msgid "%s in format string at %C"
msgstr ""

#: fortran/io.c:819
#, gcc-internal-format
msgid "Missing format label at %C"
msgstr ""

#: fortran/io.c:877 fortran/io.c:901
#, gcc-internal-format
msgid "Duplicate %s specification at %C"
msgstr ""

#: fortran/io.c:908
#, gcc-internal-format
msgid "Variable tag cannot be INTENT(IN) at %C"
msgstr ""

#: fortran/io.c:915
#, gcc-internal-format
msgid "Variable tag cannot be assigned in PURE procedure at %C"
msgstr ""

#: fortran/io.c:952
#, gcc-internal-format
msgid "Duplicate %s label specification at %C"
msgstr ""

#: fortran/io.c:974
#, gcc-internal-format
msgid "%s tag at %L must be of type %s"
msgstr ""

#: fortran/io.c:989
#, gcc-internal-format
msgid "%s tag at %L must be of type %s or %s"
msgstr ""

#: fortran/io.c:997
#, gcc-internal-format
msgid "Obsolete: ASSIGNED variable in FORMAT tag at %L"
msgstr ""

#: fortran/io.c:1002
#, gcc-internal-format
msgid "Variable '%s' at %L has not been assigned a format label"
msgstr ""

#: fortran/io.c:1017
#, gcc-internal-format
msgid "Extension: Character array in FORMAT tag at %L"
msgstr ""

#: fortran/io.c:1024
#, gcc-internal-format
msgid "Extension: Non-character in FORMAT tag at %L"
msgstr ""

#: fortran/io.c:1035
#, gcc-internal-format
msgid "%s tag at %L must be scalar"
msgstr ""

#: fortran/io.c:1193
#, gcc-internal-format
msgid "OPEN statement not allowed in PURE procedure at %C"
msgstr ""

#: fortran/io.c:1297
#, gcc-internal-format
msgid "CLOSE statement not allowed in PURE procedure at %C"
msgstr ""

#: fortran/io.c:1418 fortran/match.c:1441
#, gcc-internal-format
msgid "%s statement not allowed in PURE procedure at %C"
msgstr ""

#: fortran/io.c:1476
#, gcc-internal-format
msgid "Fortran 2003: FLUSH statement at %C"
msgstr ""

#: fortran/io.c:1536
#, gcc-internal-format
msgid "Duplicate UNIT specification at %C"
msgstr ""

#: fortran/io.c:1592
#, gcc-internal-format
msgid "Duplicate format specification at %C"
msgstr ""

#: fortran/io.c:1609
#, gcc-internal-format
msgid "Symbol '%s' in namelist '%s' is INTENT(IN) at %C"
msgstr ""

#: fortran/io.c:1645
#, gcc-internal-format
msgid "Duplicate NML specification at %C"
msgstr ""

#: fortran/io.c:1654
#, gcc-internal-format
msgid "Symbol '%s' at %C must be a NAMELIST group name"
msgstr ""

#: fortran/io.c:1687
#, gcc-internal-format
msgid "END tag at %C not allowed in output statement"
msgstr ""

#: fortran/io.c:1745
#, gcc-internal-format
msgid ""
"UNIT specification at %L must be an INTEGER expression or a CHARACTER "
"variable"
msgstr ""

#: fortran/io.c:1755
#, gcc-internal-format
msgid "REC tag at %L is incompatible with internal file"
msgstr ""

#: fortran/io.c:1762
#, gcc-internal-format
msgid "Internal file at %L is incompatible with namelist"
msgstr ""

#: fortran/io.c:1769
#, gcc-internal-format
msgid "ADVANCE tag at %L is incompatible with internal file"
msgstr ""

#: fortran/io.c:1779
#, gcc-internal-format
msgid "REC tag at %L is incompatible with END tag"
msgstr ""

#: fortran/io.c:1787
#, gcc-internal-format
msgid "END tag at %L is incompatible with list directed format (*)"
msgstr ""

#: fortran/io.c:1794
#, gcc-internal-format
msgid "REC tag at %L is incompatible with namelist"
msgstr ""

#: fortran/io.c:1802
#, gcc-internal-format
msgid "ADVANCE tag at %L is incompatible with list directed format (*)"
msgstr ""

#: fortran/io.c:1809
#, gcc-internal-format
msgid "EOR tag at %L requires an ADVANCE tag"
msgstr ""

#: fortran/io.c:1815
#, gcc-internal-format
msgid "SIZE tag at %L requires an ADVANCE tag"
msgstr ""

#: fortran/io.c:1835
#, gcc-internal-format
msgid "FORMAT label %d at %L not defined"
msgstr ""

#: fortran/io.c:1956
#, gcc-internal-format
msgid "Syntax error in I/O iterator at %C"
msgstr ""

#: fortran/io.c:1987
#, gcc-internal-format
msgid "Expected variable in READ statement at %C"
msgstr ""

#: fortran/io.c:1993
#, gcc-internal-format
msgid "Expected expression in %s statement at %C"
msgstr ""

#: fortran/io.c:2004
#, gcc-internal-format
msgid "Variable '%s' in input list at %C cannot be INTENT(IN)"
msgstr ""

#: fortran/io.c:2013
#, gcc-internal-format
msgid "Cannot read to variable '%s' in PURE procedure at %C"
msgstr ""

#: fortran/io.c:2030
#, gcc-internal-format
msgid "Cannot write to internal file unit '%s' at %C inside a PURE procedure"
msgstr ""

#. A general purpose syntax error.
#: fortran/io.c:2090 fortran/io.c:2310 fortran/gfortran.h:1575
#, gcc-internal-format
msgid "Syntax error in %s statement at %C"
msgstr ""

#: fortran/io.c:2141
#, gcc-internal-format
msgid "PRINT namelist at %C is an extension"
msgstr ""

#: fortran/io.c:2149
#, gcc-internal-format
msgid "Namelist followed by I/O list at %C"
msgstr ""

#: fortran/io.c:2252
#, gcc-internal-format
msgid "Extension: Comma before output item list at %C is an extension"
msgstr ""

#: fortran/io.c:2261
#, gcc-internal-format
msgid "Expected comma in I/O list at %C"
msgstr ""

#: fortran/io.c:2279
#, gcc-internal-format
msgid "Internal file '%s' at %L is INTENT(IN)"
msgstr ""

#: fortran/io.c:2295
#, gcc-internal-format
msgid ""
"io-unit in %s statement at %C must be an internal file in a PURE procedure"
msgstr ""

#: fortran/io.c:2342
#, gcc-internal-format
msgid "PRINT statement at %C not allowed within PURE procedure"
msgstr ""

#: fortran/io.c:2479 fortran/io.c:2527
#, gcc-internal-format
msgid "INQUIRE statement not allowed in PURE procedure at %C"
msgstr ""

#: fortran/io.c:2503
#, gcc-internal-format
msgid "IOLENGTH tag invalid in INQUIRE statement at %C"
msgstr ""

#: fortran/io.c:2513
#, gcc-internal-format
msgid "INQUIRE statement at %L cannot contain both FILE and UNIT specifiers"
msgstr ""

#: fortran/io.c:2520
#, gcc-internal-format
msgid "INQUIRE statement at %L requires either FILE or UNIT specifier"
msgstr ""

#: fortran/match.c:175
#, gcc-internal-format
msgid "Integer too large at %C"
msgstr ""

#: fortran/match.c:238
#, gcc-internal-format
msgid "Statement label at %C is out of range"
msgstr ""

#: fortran/match.c:263
#, gcc-internal-format
msgid "Label name '%s' at %C is ambiguous"
msgstr ""

#: fortran/match.c:269
#, gcc-internal-format
msgid "Duplicate construct label '%s' at %C"
msgstr ""

#: fortran/match.c:393
#, gcc-internal-format
msgid "Name at %C is too long"
msgstr ""

#: fortran/match.c:510
#, gcc-internal-format
msgid "Loop variable at %C cannot be a sub-component"
msgstr ""

#: fortran/match.c:516
#, gcc-internal-format
msgid "Loop variable '%s' at %C cannot be INTENT(IN)"
msgstr ""

#: fortran/match.c:523
#, gcc-internal-format
msgid "Loop variable at %C cannot have the POINTER attribute"
msgstr ""

#: fortran/match.c:553
#, gcc-internal-format
msgid "Expected a step value in iterator at %C"
msgstr ""

#: fortran/match.c:565
#, gcc-internal-format
msgid "Syntax error in iterator at %C"
msgstr ""

#: fortran/match.c:801
#, gcc-internal-format
msgid "Invalid form of PROGRAM statement at %C"
msgstr ""

#: fortran/match.c:835
#, gcc-internal-format
msgid "Cannot assign to a PARAMETER variable at %C"
msgstr ""

#: fortran/match.c:924 fortran/match.c:1000
#, gcc-internal-format
msgid "Obsolete: arithmetic IF statement at %C"
msgstr ""

#: fortran/match.c:971
#, gcc-internal-format
msgid "Syntax error in IF-expression at %C"
msgstr ""

#: fortran/match.c:983
#, gcc-internal-format
msgid "Block label not appropriate for arithmetic IF statement at %C"
msgstr ""

#: fortran/match.c:1025
#, gcc-internal-format
msgid "Block label is not appropriate IF statement at %C"
msgstr ""

#: fortran/match.c:1096
#, gcc-internal-format
msgid "Unclassifiable statement in IF-clause at %C"
msgstr ""

#: fortran/match.c:1103
#, gcc-internal-format
msgid "Syntax error in IF-clause at %C"
msgstr ""

#: fortran/match.c:1147
#, gcc-internal-format
msgid "Unexpected junk after ELSE statement at %C"
msgstr ""

#: fortran/match.c:1153 fortran/match.c:1188
#, gcc-internal-format
msgid "Label '%s' at %C doesn't match IF label '%s'"
msgstr ""

#: fortran/match.c:1182
#, gcc-internal-format
msgid "Unexpected junk after ELSE IF statement at %C"
msgstr ""

#: fortran/match.c:1345
#, gcc-internal-format
msgid "Name '%s' in %s statement at %C is not a loop name"
msgstr ""

#: fortran/match.c:1360
#, gcc-internal-format
msgid "%s statement at %C is not within a loop"
msgstr ""

#: fortran/match.c:1363
#, gcc-internal-format
msgid "%s statement at %C is not within loop '%s'"
msgstr ""

#: fortran/match.c:1419
#, gcc-internal-format
msgid "STOP code out of range at %C"
msgstr ""

#: fortran/match.c:1472
#, gcc-internal-format
msgid "Obsolete: PAUSE statement at %C"
msgstr ""

#: fortran/match.c:1521
#, gcc-internal-format
msgid "Obsolete: ASSIGN statement at %C"
msgstr ""

#: fortran/match.c:1567
#, gcc-internal-format
msgid "Obsolete: Assigned GOTO statement at %C"
msgstr ""

#: fortran/match.c:1614 fortran/match.c:1666
#, gcc-internal-format
msgid "Statement label list in GOTO at %C cannot be empty"
msgstr ""

#: fortran/match.c:1750
#, gcc-internal-format
msgid "Bad allocate-object in ALLOCATE statement at %C for a PURE procedure"
msgstr ""

#: fortran/match.c:1770
#, gcc-internal-format
msgid "STAT variable '%s' of ALLOCATE statement at %C cannot be INTENT(IN)"
msgstr ""

#: fortran/match.c:1778
#, gcc-internal-format
msgid "Illegal STAT variable in ALLOCATE statement at %C for a PURE procedure"
msgstr ""

#: fortran/match.c:1785 fortran/match.c:1951
#, gcc-internal-format
msgid "STAT expression at %C must be a variable"
msgstr ""

#: fortran/match.c:1840
#, gcc-internal-format
msgid "Illegal variable in NULLIFY at %C for a PURE procedure"
msgstr ""

#: fortran/match.c:1918
#, gcc-internal-format
msgid "Illegal deallocate-expression in DEALLOCATE at %C for a PURE procedure"
msgstr ""

#: fortran/match.c:1937
#, gcc-internal-format
msgid "STAT variable '%s' of DEALLOCATE statement at %C cannot be INTENT(IN)"
msgstr ""

#: fortran/match.c:1944
#, gcc-internal-format
msgid ""
"Illegal STAT variable in DEALLOCATE statement at %C for a PURE procedure"
msgstr ""

#: fortran/match.c:1993
#, gcc-internal-format
msgid "Alternate RETURN statement at %C is only allowed within a SUBROUTINE"
msgstr ""

#: fortran/match.c:2024
#, gcc-internal-format
msgid "Extension: RETURN statement in main program at %C"
msgstr ""

#: fortran/match.c:2219
#, gcc-internal-format
msgid "Syntax error in common block name at %C"
msgstr ""

#: fortran/match.c:2289
#, gcc-internal-format
msgid "Symbol '%s' at %C is already in a COMMON block"
msgstr ""

#: fortran/match.c:2301
#, gcc-internal-format
msgid "Previously initialized symbol '%s' in blank COMMON block at %C"
msgstr ""

#: fortran/match.c:2304
#, gcc-internal-format
msgid "Previously initialized symbol '%s' in COMMON block '%s' at %C"
msgstr ""

#: fortran/match.c:2316
#, gcc-internal-format
msgid ""
"Derived type variable in COMMON at %C does not have the SEQUENCE attribute"
msgstr ""

#: fortran/match.c:2339
#, gcc-internal-format
msgid "Array specification for symbol '%s' in COMMON at %C must be explicit"
msgstr ""

#: fortran/match.c:2350
#, gcc-internal-format
msgid "Symbol '%s' in COMMON at %C cannot be a POINTER array"
msgstr ""

#: fortran/match.c:2454
#, gcc-internal-format
msgid "Namelist group name '%s' at %C already has a basic type of %s"
msgstr ""

#: fortran/match.c:2592
#, gcc-internal-format
msgid "Array reference in EQUIVALENCE at %C cannot be an array section"
msgstr ""

#: fortran/match.c:2746
#, gcc-internal-format
msgid "Expected initialization expression in CASE at %C"
msgstr ""

#: fortran/match.c:2773
#, gcc-internal-format
msgid "Expected case name of '%s' at %C"
msgstr ""

#: fortran/match.c:2817
#, gcc-internal-format
msgid "Unexpected CASE statement at %C"
msgstr ""

#: fortran/match.c:2869
#, gcc-internal-format
msgid "Syntax error in CASE-specification at %C"
msgstr ""

#: fortran/match.c:2989
#, gcc-internal-format
msgid "ELSEWHERE statement at %C not enclosed in WHERE block"
msgstr ""

#: fortran/match.c:3020
#, gcc-internal-format
msgid "Label '%s' at %C doesn't match WHERE label '%s'"
msgstr ""

#: fortran/match.c:3115
#, gcc-internal-format
msgid "Syntax error in FORALL iterator at %C"
msgstr ""

#: fortran/matchexp.c:73
#, gcc-internal-format
msgid "Bad character '%c' in OPERATOR name at %C"
msgstr ""

#: fortran/matchexp.c:81
#, gcc-internal-format
msgid "The name '%s' cannot be used as a defined operator at %C"
msgstr ""

#: fortran/matchexp.c:156
#, gcc-internal-format
msgid "Expected a right parenthesis in expression at %C"
msgstr ""

#: fortran/matchexp.c:278
#, gcc-internal-format
msgid "Expected exponent in expression at %C"
msgstr ""

#: fortran/matchexp.c:314 fortran/matchexp.c:418
#, gcc-internal-format
msgid ""
"Extension: Unary operator following arithmetic operator (use parentheses) at "
"%C"
msgstr ""

#: fortran/misc.c:42
#, gcc-internal-format
msgid "Out of memory-- malloc() failed"
msgstr ""

#: fortran/module.c:526
#, gcc-internal-format
msgid "Missing generic specification in USE statement at %C"
msgstr ""

#: fortran/module.c:798
#, gcc-internal-format
msgid "Reading module %s at line %d column %d: %s"
msgstr ""

#: fortran/module.c:802
#, gcc-internal-format
msgid "Writing module %s at line %d column %d: %s"
msgstr ""

#: fortran/module.c:806
#, gcc-internal-format
msgid "Module %s at line %d column %d: %s"
msgstr ""

#: fortran/module.c:1167
#, gcc-internal-format
msgid "Error writing modules file: %s"
msgstr ""

#: fortran/module.c:2589
#, gcc-internal-format
msgid "Namelist %s cannot be renamed by USE association to %s."
msgstr ""

#: fortran/module.c:3188
#, gcc-internal-format
msgid "Symbol '%s' referenced at %L not found in module '%s'"
msgstr ""

#: fortran/module.c:3196
#, gcc-internal-format
msgid "User operator '%s' referenced at %L not found in module '%s'"
msgstr ""

#: fortran/module.c:3202
#, gcc-internal-format
msgid "Intrinsic operator '%s' referenced at %L not found in module '%s'"
msgstr ""

#: fortran/module.c:3506
#, gcc-internal-format
msgid "Can't open module file '%s' for writing at %C: %s"
msgstr ""

#: fortran/module.c:3531
#, gcc-internal-format
msgid "Error writing module file '%s' for writing: %s"
msgstr ""

#: fortran/module.c:3552
#, gcc-internal-format
msgid "Can't open module file '%s' for reading at %C: %s"
msgstr ""

#: fortran/module.c:3574
#, gcc-internal-format
msgid "Can't USE the same module we're building!"
msgstr ""

#: fortran/options.c:291
#, gcc-internal-format
msgid "Fixed line length must be at least seven."
msgstr ""

#: fortran/options.c:297
#, gcc-internal-format
msgid "Maximum supported idenitifier length is %d"
msgstr ""

#: fortran/options.c:304
#, gcc-internal-format
msgid "Argument to -fqkind isn't a valid real kind"
msgstr ""

#: fortran/parse.c:292
#, gcc-internal-format
msgid "Unclassifiable statement at %C"
msgstr ""

#. Skip the bad statement label.
#: fortran/parse.c:327
#, gcc-internal-format
msgid "Ignoring bad statement label at %C"
msgstr ""

#: fortran/parse.c:338
#, gcc-internal-format
msgid "Ignoring statement label of zero at %C"
msgstr ""

#: fortran/parse.c:348
#, gcc-internal-format
msgid "Ignoring statement label in empty statement at %C"
msgstr ""

#: fortran/parse.c:410
#, gcc-internal-format
msgid "Non-numeric character in statement label at %C"
msgstr ""

#: fortran/parse.c:418
#, gcc-internal-format
msgid "Zero is not a valid statement label at %C"
msgstr ""

#: fortran/parse.c:437
#, gcc-internal-format
msgid "Bad continuation line at %C"
msgstr ""

#: fortran/parse.c:464
#, gcc-internal-format
msgid "Statement label in blank line will be ignored at %C"
msgstr ""

#: fortran/parse.c:489
#, gcc-internal-format
msgid "Line truncated at %C"
msgstr ""

#: fortran/parse.c:662
#, gcc-internal-format
msgid "FORMAT statement at %L does not have a statement label"
msgstr ""

#: fortran/parse.c:1109
#, gcc-internal-format
msgid "Unexpected %s statement at %C"
msgstr ""

#: fortran/parse.c:1241
#, gcc-internal-format
msgid "%s statement at %C cannot follow %s statement at %L"
msgstr ""

#: fortran/parse.c:1258
#, gcc-internal-format
msgid "Unexpected end of file in '%s'"
msgstr ""

#: fortran/parse.c:1311
#, gcc-internal-format
msgid "Derived type definition at %C has no components"
msgstr ""

#: fortran/parse.c:1322
#, gcc-internal-format
msgid "PRIVATE statement in TYPE at %C must be inside a MODULE"
msgstr ""

#: fortran/parse.c:1329
#, gcc-internal-format
msgid "PRIVATE statement at %C must precede structure components"
msgstr ""

#: fortran/parse.c:1337
#, gcc-internal-format
msgid "Duplicate PRIVATE statement at %C"
msgstr ""

#: fortran/parse.c:1349
#, gcc-internal-format
msgid "SEQUENCE statement at %C must precede structure components"
msgstr ""

#: fortran/parse.c:1356
#, gcc-internal-format
msgid "SEQUENCE attribute at %C already specified in TYPE statement"
msgstr ""

#: fortran/parse.c:1361
#, gcc-internal-format
msgid "Duplicate SEQUENCE statement at %C"
msgstr ""

#: fortran/parse.c:1385
#, gcc-internal-format
msgid ""
"Component %s of SEQUENCE type declared at %C does not have the SEQUENCE "
"attribute"
msgstr ""

#: fortran/parse.c:1454
#, gcc-internal-format
msgid "Unexpected %s statement in INTERFACE block at %C"
msgstr ""

#: fortran/parse.c:1481
#, gcc-internal-format
msgid "SUBROUTINE at %C does not belong in a generic function interface"
msgstr ""

#: fortran/parse.c:1486
#, gcc-internal-format
msgid "FUNCTION at %C does not belong in a generic subroutine interface"
msgstr ""

#: fortran/parse.c:1503
#, gcc-internal-format
msgid "Unexpected %s statement at %C in INTERFACE body"
msgstr ""

#: fortran/parse.c:1575
#, gcc-internal-format
msgid "%s statement must appear in a MODULE"
msgstr ""

#: fortran/parse.c:1582
#, gcc-internal-format
msgid "%s statement at %C follows another accessibility specification"
msgstr ""

#: fortran/parse.c:1653
#, gcc-internal-format
msgid "ELSEWHERE statement at %C follows previous unmasked ELSEWHERE"
msgstr ""

#: fortran/parse.c:1674
#, gcc-internal-format
msgid "Unexpected %s statement in WHERE block at %C"
msgstr ""

#: fortran/parse.c:1734
#, gcc-internal-format
msgid "Unexpected %s statement in FORALL block at %C"
msgstr ""

#: fortran/parse.c:1786
#, gcc-internal-format
msgid "ELSE IF statement at %C cannot follow ELSE statement at %L"
msgstr ""

#: fortran/parse.c:1804
#, gcc-internal-format
msgid "Duplicate ELSE statements at %L and %C"
msgstr ""

#: fortran/parse.c:1866
#, gcc-internal-format
msgid "Expected a CASE or END SELECT statement following SELECT CASE at %C"
msgstr ""

#: fortran/parse.c:1924
#, gcc-internal-format
msgid "Variable '%s' at %C cannot be redefined inside loop beginning at %L"
msgstr ""

#: fortran/parse.c:1959
#, gcc-internal-format
msgid "End of nonblock DO statement at %C is within another block"
msgstr ""

#: fortran/parse.c:1968
#, gcc-internal-format
msgid "End of nonblock DO statement at %C is interwoven with another DO loop"
msgstr ""

#: fortran/parse.c:2018
#, gcc-internal-format
msgid "Statement label in ENDDO at %C doesn't match DO label"
msgstr ""

#: fortran/parse.c:2075
#, gcc-internal-format
msgid "%s statement at %C cannot terminate a non-block DO loop"
msgstr ""

#: fortran/parse.c:2214
#, gcc-internal-format
msgid "Contained procedure '%s' at %C is already ambiguous"
msgstr ""

#: fortran/parse.c:2265
#, gcc-internal-format
msgid "Unexpected %s statement in CONTAINS section at %C"
msgstr ""

#: fortran/parse.c:2350
#, gcc-internal-format
msgid "CONTAINS statement at %C is already in a contained program unit"
msgstr ""

#: fortran/parse.c:2399
#, gcc-internal-format
msgid "Global name '%s' at %L is already being used as a %s at %L"
msgstr ""

#: fortran/parse.c:2420
#, gcc-internal-format
msgid "Blank BLOCK DATA at %C conflicts with prior BLOCK DATA at %L"
msgstr ""

#: fortran/parse.c:2444
#, gcc-internal-format
msgid "Unexpected %s statement in BLOCK DATA at %C"
msgstr ""

#: fortran/parse.c:2486
#, gcc-internal-format
msgid "Unexpected %s statement in MODULE at %C"
msgstr ""

#. If we see a duplicate main program, shut down.  If the second
#. instance is an implied main program, ie data decls or executable
#. statements, we're in for lots of errors.
#: fortran/parse.c:2656
#, gcc-internal-format
msgid "Two main PROGRAMs at %L and %C"
msgstr ""

#: fortran/primary.c:89
#, gcc-internal-format
msgid "Missing kind-parameter at %C"
msgstr ""

#: fortran/primary.c:212
#, gcc-internal-format
msgid "Integer kind %d at %C not available"
msgstr ""

#: fortran/primary.c:220
#, gcc-internal-format
msgid "Integer too big for its kind at %C"
msgstr ""

#: fortran/primary.c:250
#, gcc-internal-format
msgid "Extension: Hollerith constant at %C"
msgstr ""

#: fortran/primary.c:262
#, gcc-internal-format
msgid "Invalid Hollerith constant: %L must contain at least one character"
msgstr ""

#: fortran/primary.c:268
#, gcc-internal-format
msgid "Invalid Hollerith constant: Interger kind at %L should be default"
msgstr ""

#: fortran/primary.c:344
#, gcc-internal-format
msgid "Extension: Hexadecimal constant at %C uses non-standard syntax."
msgstr ""

#: fortran/primary.c:354
#, gcc-internal-format
msgid "Empty set of digits in %s constant at %C"
msgstr ""

#: fortran/primary.c:360
#, gcc-internal-format
msgid "Illegal character in %s constant at %C."
msgstr ""

#: fortran/primary.c:385
#, gcc-internal-format
msgid "Integer too big for integer kind %i at %C"
msgstr ""

#: fortran/primary.c:486
#, gcc-internal-format
msgid "Missing exponent in real number at %C"
msgstr ""

#: fortran/primary.c:543
#, gcc-internal-format
msgid "Real number at %C has a 'd' exponent and an explicit kind"
msgstr ""

#: fortran/primary.c:553
#, gcc-internal-format
msgid "Real number at %C has a 'q' exponent and an explicit kind"
msgstr ""

#: fortran/primary.c:565
#, gcc-internal-format
msgid "Invalid real kind %d at %C"
msgstr ""

#: fortran/primary.c:579
#, gcc-internal-format
msgid "Real constant overflows its kind at %C"
msgstr ""

#: fortran/primary.c:584
#, gcc-internal-format
msgid "Real constant underflows its kind at %C"
msgstr ""

#: fortran/primary.c:676
#, gcc-internal-format
msgid "Syntax error in SUBSTRING specification at %C"
msgstr ""

#: fortran/primary.c:908
#, gcc-internal-format
msgid "Invalid kind %d for CHARACTER constant at %C"
msgstr ""

#: fortran/primary.c:929
#, gcc-internal-format
msgid "Unterminated character constant beginning at %C"
msgstr ""

#: fortran/primary.c:996
#, gcc-internal-format
msgid "Bad kind for logical constant at %C"
msgstr ""

#: fortran/primary.c:1031
#, gcc-internal-format
msgid "Expected PARAMETER symbol in complex constant at %C"
msgstr ""

#: fortran/primary.c:1037
#, gcc-internal-format
msgid "Numeric PARAMETER required in complex constant at %C"
msgstr ""

#: fortran/primary.c:1043
#, gcc-internal-format
msgid "Scalar PARAMETER required in complex constant at %C"
msgstr ""

#: fortran/primary.c:1073
#, gcc-internal-format
msgid "Error converting PARAMETER constant in complex constant at %C"
msgstr ""

#: fortran/primary.c:1200
#, gcc-internal-format
msgid "Syntax error in COMPLEX constant at %C"
msgstr ""

#: fortran/primary.c:1366
#, gcc-internal-format
msgid "Keyword '%s' at %C has already appeared in the current argument list"
msgstr ""

#: fortran/primary.c:1423
#, gcc-internal-format
msgid "Expected alternate return label at %C"
msgstr ""

#: fortran/primary.c:1442
#, gcc-internal-format
msgid "Missing keyword name in actual argument list at %C"
msgstr ""

#: fortran/primary.c:1478
#, gcc-internal-format
msgid "Syntax error in argument list at %C"
msgstr ""

#: fortran/primary.c:1565
#, gcc-internal-format
msgid "Expected structure component name at %C"
msgstr ""

#: fortran/primary.c:1794
#, gcc-internal-format
msgid "Too many components in structure constructor at %C"
msgstr ""

#: fortran/primary.c:1809
#, gcc-internal-format
msgid "Too few components in structure constructor at %C"
msgstr ""

#: fortran/primary.c:1827
#, gcc-internal-format
msgid "Syntax error in structure constructor at %C"
msgstr ""

#: fortran/primary.c:1940
#, gcc-internal-format
msgid "Unexpected use of subroutine name '%s' at %C"
msgstr ""

#: fortran/primary.c:1971
#, gcc-internal-format
msgid "Statement function '%s' requires argument list at %C"
msgstr ""

#: fortran/primary.c:1974
#, gcc-internal-format
msgid "Function '%s' requires an argument list at %C"
msgstr ""

#: fortran/primary.c:2128
#, gcc-internal-format
msgid "Missing argument list in function '%s' at %C"
msgstr ""

#: fortran/primary.c:2156
#, gcc-internal-format
msgid "Symbol at %C is not appropriate for an expression"
msgstr ""

#: fortran/primary.c:2221
#, gcc-internal-format
msgid "Expected VARIABLE at %C"
msgstr ""

#: fortran/resolve.c:82
#, gcc-internal-format
msgid ""
"Alternate return specifier in elemental subroutine '%s' at %L is not allowed"
msgstr ""

#: fortran/resolve.c:86
#, gcc-internal-format
msgid "Alternate return specifier in function '%s' at %L is not allowed"
msgstr ""

#: fortran/resolve.c:100
#, gcc-internal-format
msgid "Dummy procedure '%s' of PURE procedure at %L must also be PURE"
msgstr ""

#: fortran/resolve.c:108
#, gcc-internal-format
msgid "Dummy procedure at %L not allowed in ELEMENTAL procedure"
msgstr ""

#: fortran/resolve.c:162
#, gcc-internal-format
msgid "Argument '%s' of pure function '%s' at %L must be INTENT(IN)"
msgstr ""

#: fortran/resolve.c:170
#, gcc-internal-format
msgid ""
"Argument '%s' of pure subroutine '%s' at %L must have its INTENT specified"
msgstr ""

#: fortran/resolve.c:181
#, gcc-internal-format
msgid "Argument '%s' of elemental procedure at %L must be scalar"
msgstr ""

#: fortran/resolve.c:189
#, gcc-internal-format
msgid ""
"Argument '%s' of elemental procedure at %L cannot have the POINTER attribute"
msgstr ""

#: fortran/resolve.c:201
#, gcc-internal-format
msgid "Argument '%s' of statement function at %L must be scalar"
msgstr ""

#: fortran/resolve.c:212
#, gcc-internal-format
msgid ""
"Character-valued argument '%s' of statement function at %L must has constant "
"length"
msgstr ""

#: fortran/resolve.c:272
#, gcc-internal-format
msgid "Contained function '%s' at %L has no IMPLICIT type"
msgstr ""

#: fortran/resolve.c:417
#, gcc-internal-format
msgid "FUNCTION result %s can't be an array in FUNCTION %s at %L"
msgstr ""

#: fortran/resolve.c:421
#, gcc-internal-format
msgid "ENTRY result %s can't be an array in FUNCTION %s at %L"
msgstr ""

#: fortran/resolve.c:428
#, gcc-internal-format
msgid "FUNCTION result %s can't be a POINTER in FUNCTION %s at %L"
msgstr ""

#: fortran/resolve.c:432
#, gcc-internal-format
msgid "ENTRY result %s can't be a POINTER in FUNCTION %s at %L"
msgstr ""

#: fortran/resolve.c:470
#, gcc-internal-format
msgid "FUNCTION result %s can't be of type %s in FUNCTION %s at %L"
msgstr ""

#: fortran/resolve.c:475
#, gcc-internal-format
msgid "ENTRY result %s can't be of type %s in FUNCTION %s at %L"
msgstr ""

#: fortran/resolve.c:690 fortran/resolve.c:3260 fortran/resolve.c:3911
#, gcc-internal-format
msgid "Label %d referenced at %L is never defined"
msgstr ""

#: fortran/resolve.c:717
#, gcc-internal-format
msgid "Statement function '%s' at %L is not allowed as an actual argument"
msgstr ""

#: fortran/resolve.c:740
#, gcc-internal-format
msgid "Symbol '%s' at %L is ambiguous"
msgstr ""

#: fortran/resolve.c:839
#, gcc-internal-format
msgid "Generic function '%s' at %L is not an intrinsic function"
msgstr ""

#: fortran/resolve.c:849
#, gcc-internal-format
msgid ""
"Generic function '%s' at %L is not consistent with a specific intrinsic "
"interface"
msgstr ""

#: fortran/resolve.c:887
#, gcc-internal-format
msgid ""
"Function '%s' at %L is INTRINSIC but is not compatible with an intrinsic"
msgstr ""

#: fortran/resolve.c:933
#, gcc-internal-format
msgid "Unable to resolve the specific function '%s' at %L"
msgstr ""

#: fortran/resolve.c:989 fortran/resolve.c:5012
#, gcc-internal-format
msgid "Function '%s' at %L has no IMPLICIT type"
msgstr ""

#: fortran/resolve.c:1108
#, gcc-internal-format
msgid "Function reference to '%s' at %L is inside a FORALL block"
msgstr ""

#: fortran/resolve.c:1114
#, gcc-internal-format
msgid ""
"Function reference to '%s' at %L is to a non-PURE procedure within a PURE "
"procedure"
msgstr ""

#: fortran/resolve.c:1134
#, gcc-internal-format
msgid "Subroutine call to '%s' in FORALL block at %L is not PURE"
msgstr ""

#: fortran/resolve.c:1137
#, gcc-internal-format
msgid "Subroutine call to '%s' at %L is not PURE"
msgstr ""

#: fortran/resolve.c:1199
#, gcc-internal-format
msgid "Generic subroutine '%s' at %L is not an intrinsic subroutine"
msgstr ""

#: fortran/resolve.c:1208
#, gcc-internal-format
msgid ""
"Generic subroutine '%s' at %L is not consistent with an intrinsic subroutine "
"interface"
msgstr ""

#: fortran/resolve.c:1243
#, gcc-internal-format
msgid ""
"Subroutine '%s' at %L is INTRINSIC but is not compatible with an intrinsic"
msgstr ""

#: fortran/resolve.c:1286
#, gcc-internal-format
msgid "Unable to resolve the specific subroutine '%s' at %L"
msgstr ""

#: fortran/resolve.c:1386
#, gcc-internal-format
msgid "Shapes for operands at %L and %L are not conformable"
msgstr ""

#: fortran/resolve.c:1625
#, gcc-internal-format
msgid "Inconsistent ranks for operator at %L and %L"
msgstr ""

#: fortran/resolve.c:1747
#, gcc-internal-format
msgid "Illegal stride of zero at %L"
msgstr ""

#: fortran/resolve.c:1768
#, gcc-internal-format
msgid "Array reference at %L is out of bounds"
msgstr ""

#: fortran/resolve.c:1789
#, gcc-internal-format
msgid "Rightmost upper bound of assumed size array section not specified at %L"
msgstr ""

#: fortran/resolve.c:1799
#, gcc-internal-format
msgid "Rank mismatch in array reference at %L (%d/%d)"
msgstr ""

#: fortran/resolve.c:1827
#, gcc-internal-format
msgid "Array index at %L must be scalar"
msgstr ""

#: fortran/resolve.c:1833
#, gcc-internal-format
msgid "Array index at %L must be of INTEGER type"
msgstr ""

#: fortran/resolve.c:1839
#, gcc-internal-format
msgid "Extension: REAL array index at %L"
msgstr ""

#: fortran/resolve.c:1868
#, gcc-internal-format
msgid "Argument dim at %L must be scalar"
msgstr ""

#: fortran/resolve.c:1874
#, gcc-internal-format
msgid "Argument dim at %L must be of INTEGER type"
msgstr ""

#: fortran/resolve.c:1978
#, gcc-internal-format
msgid "Array index at %L is an array of rank %d"
msgstr ""

#: fortran/resolve.c:2016
#, gcc-internal-format
msgid "Substring start index at %L must be of type INTEGER"
msgstr ""

#: fortran/resolve.c:2023
#, gcc-internal-format
msgid "Substring start index at %L must be scalar"
msgstr ""

#: fortran/resolve.c:2030
#, gcc-internal-format
msgid "Substring start index at %L is less than one"
msgstr ""

#: fortran/resolve.c:2043
#, gcc-internal-format
msgid "Substring end index at %L must be of type INTEGER"
msgstr ""

#: fortran/resolve.c:2050
#, gcc-internal-format
msgid "Substring end index at %L must be scalar"
msgstr ""

#: fortran/resolve.c:2058
#, gcc-internal-format
msgid "Substring end index at %L is out of bounds"
msgstr ""

#: fortran/resolve.c:2132
#, gcc-internal-format
msgid ""
"Component to the right of a part reference with nonzero rank must not have "
"the POINTER attribute at %L"
msgstr ""

#: fortran/resolve.c:2151
#, gcc-internal-format
msgid ""
"Two or more part references with nonzero rank must not be specified at %L"
msgstr ""

#: fortran/resolve.c:2377
#, gcc-internal-format
msgid "%s at %L must be a scalar"
msgstr ""

#: fortran/resolve.c:2385
#, gcc-internal-format
msgid "%s at %L must be INTEGER or REAL"
msgstr ""

#: fortran/resolve.c:2388
#, gcc-internal-format
msgid "%s at %L must be INTEGER"
msgstr ""

#: fortran/resolve.c:2404
#, gcc-internal-format
msgid "Obsolete: REAL DO loop iterator at %L"
msgstr ""

#: fortran/resolve.c:2413
#, gcc-internal-format
msgid "Cannot assign to loop variable in PURE procedure at %L"
msgstr ""

#: fortran/resolve.c:2437
#, gcc-internal-format
msgid "Step expression in DO loop at %L cannot be zero"
msgstr ""

#: fortran/resolve.c:2470
#, gcc-internal-format
msgid "FORALL Iteration variable at %L must be INTEGER"
msgstr ""

#: fortran/resolve.c:2475
#, gcc-internal-format
msgid "FORALL start expression at %L must be INTEGER"
msgstr ""

#: fortran/resolve.c:2482
#, gcc-internal-format
msgid "FORALL end expression at %L must be INTEGER"
msgstr ""

#: fortran/resolve.c:2489
#, gcc-internal-format
msgid "FORALL Stride expression at %L must be INTEGER"
msgstr ""

#: fortran/resolve.c:2563
#, gcc-internal-format
msgid ""
"Expression in DEALLOCATE statement at %L must be ALLOCATABLE or a POINTER"
msgstr ""

#: fortran/resolve.c:2631
#, gcc-internal-format
msgid "Expression in ALLOCATE statement at %L must be ALLOCATABLE or a POINTER"
msgstr ""

#: fortran/resolve.c:2643
#, gcc-internal-format
msgid "Array specification required in ALLOCATE statement at %L"
msgstr ""

#: fortran/resolve.c:2672
#, gcc-internal-format
msgid "Bad array specification in ALLOCATE statement at %L"
msgstr ""

#. The cases overlap, or they are the same
#. element in the list.  Either way, we must
#. issue an error and get the next case from P.
#. FIXME: Sort P and Q by line number.
#: fortran/resolve.c:2828
#, gcc-internal-format
msgid "CASE label at %L overlaps with CASE label at %L"
msgstr ""

#: fortran/resolve.c:2879
#, gcc-internal-format
msgid "Expression in CASE statement at %L must be of type %s"
msgstr ""

#: fortran/resolve.c:2890
#, gcc-internal-format
msgid "Expression in CASE statement at %L must be kind %d"
msgstr ""

#: fortran/resolve.c:2902
#, gcc-internal-format
msgid "Expression in CASE statement at %L must be scalar"
msgstr ""

#: fortran/resolve.c:2948
#, gcc-internal-format
msgid ""
"Selection expression in computed GOTO statement at %L must be a scalar "
"integer expression"
msgstr ""

#: fortran/resolve.c:2966
#, gcc-internal-format
msgid "Argument of SELECT statement at %L cannot be %s"
msgstr ""

#: fortran/resolve.c:2975
#, gcc-internal-format
msgid "Argument of SELECT statement at %L must be a scalar expression"
msgstr ""

#: fortran/resolve.c:3039
#, gcc-internal-format
msgid ""
"The DEFAULT CASE at %L cannot be followed by a second DEFAULT CASE at %L"
msgstr ""

#: fortran/resolve.c:3066
#, gcc-internal-format
msgid "Logical range in CASE statement at %L is not allowed"
msgstr ""

#: fortran/resolve.c:3077
#, gcc-internal-format
msgid "Range specification at %L can never be matched"
msgstr ""

#: fortran/resolve.c:3180
#, gcc-internal-format
msgid "Logical SELECT CASE block at %L has more that two cases"
msgstr ""

#: fortran/resolve.c:3217
#, gcc-internal-format
msgid "Data transfer element at %L cannot have POINTER components"
msgstr ""

#: fortran/resolve.c:3224
#, gcc-internal-format
msgid "Data transfer element at %L cannot have PRIVATE components"
msgstr ""

#: fortran/resolve.c:3233
#, gcc-internal-format
msgid ""
"Data transfer element at %L cannot be a full reference to an assumed-size "
"array"
msgstr ""

#: fortran/resolve.c:3267
#, gcc-internal-format
msgid ""
"Statement at %L is not a valid branch target statement for the branch "
"statement at %L"
msgstr ""

#: fortran/resolve.c:3276
#, gcc-internal-format
msgid "Branch at %L causes an infinite loop"
msgstr ""

#. still nothing, so illegal.
#: fortran/resolve.c:3306
#, gcc-internal-format
msgid "Label at %L is not in the same block as the GOTO statement at %L"
msgstr ""

#: fortran/resolve.c:3322
#, gcc-internal-format
msgid "Obsolete: GOTO at %L jumps to END of construct at %L"
msgstr ""

#: fortran/resolve.c:3396
#, gcc-internal-format
msgid "WHERE mask at %L has inconsistent shape"
msgstr ""

#: fortran/resolve.c:3412
#, gcc-internal-format
msgid "WHERE assignment target at %L has inconsistent shape"
msgstr ""

#: fortran/resolve.c:3422 fortran/resolve.c:3621
#, gcc-internal-format
msgid "Unsupported statement inside WHERE at %L"
msgstr ""

#: fortran/resolve.c:3498
#, gcc-internal-format
msgid "expresion reference type error at %L"
msgstr ""

#: fortran/resolve.c:3530
#, gcc-internal-format
msgid "Unsupported statement while finding forall index in expression"
msgstr ""

#: fortran/resolve.c:3577
#, gcc-internal-format
msgid "Assignment to a FORALL index variable at %L"
msgstr ""

#: fortran/resolve.c:3585
#, gcc-internal-format
msgid ""
"The FORALL with index '%s' cause more than one assignment to this object at %"
"L"
msgstr ""

#: fortran/resolve.c:3712
#, gcc-internal-format
msgid "An outer FORALL construct already has an index with this name %L"
msgstr ""

#: fortran/resolve.c:3724 fortran/resolve.c:3727 fortran/resolve.c:3730
#, gcc-internal-format
msgid ""
"A FORALL index must not appear in a limit or stride expression in the same "
"FORALL at %L"
msgstr ""

#: fortran/resolve.c:3773
#, gcc-internal-format
msgid "ELSE IF clause at %L requires a scalar LOGICAL expression"
msgstr ""

#: fortran/resolve.c:3783
#, gcc-internal-format
msgid "WHERE/ELSEWHERE clause at %L requires a LOGICAL array"
msgstr ""

#: fortran/resolve.c:3861
#, gcc-internal-format
msgid "ASSIGNED GOTO statement at %L requires an INTEGER variable"
msgstr ""

#: fortran/resolve.c:3864
#, gcc-internal-format
msgid "Variable '%s' has not been assigned a target label at %L"
msgstr ""

#: fortran/resolve.c:3874
#, gcc-internal-format
msgid "Alternate RETURN statement at %L requires an INTEGER return specifier"
msgstr ""

#: fortran/resolve.c:3890
#, gcc-internal-format
msgid "Cannot assign to variable '%s' in PURE procedure at %L"
msgstr ""

#: fortran/resolve.c:3899
#, gcc-internal-format
msgid ""
"Right side of assignment at %L is a derived type containing a POINTER in a "
"PURE procedure"
msgstr ""

#: fortran/resolve.c:3919
#, gcc-internal-format
msgid "ASSIGN statement at %L requires a scalar default INTEGER variable"
msgstr ""

#: fortran/resolve.c:3934
#, gcc-internal-format
msgid "Arithmetic IF statement at %L requires a numeric expression"
msgstr ""

#: fortran/resolve.c:3946
#, gcc-internal-format
msgid "IF clause at %L requires a scalar LOGICAL expression"
msgstr ""

#: fortran/resolve.c:3972
#, gcc-internal-format
msgid ""
"Exit condition of DO WHILE loop at %L must be a scalar LOGICAL expression"
msgstr ""

#: fortran/resolve.c:3979
#, gcc-internal-format
msgid "STAT tag in ALLOCATE statement at %L must be of type INTEGER"
msgstr ""

#: fortran/resolve.c:3991
#, gcc-internal-format
msgid "STAT tag in DEALLOCATE statement at %L must be of type INTEGER"
msgstr ""

#: fortran/resolve.c:4057
#, gcc-internal-format
msgid "FORALL mask clause at %L requires a LOGICAL expression"
msgstr ""

#: fortran/resolve.c:4177
#, gcc-internal-format
msgid "Assumed size array at %L must be a dummy argument"
msgstr ""

#: fortran/resolve.c:4180
#, gcc-internal-format
msgid "Assumed shape array at %L must be a dummy argument"
msgstr ""

#: fortran/resolve.c:4190
#, gcc-internal-format
msgid "Parameter array '%s' at %L cannot be automatic or assumed shape"
msgstr ""

#: fortran/resolve.c:4202
#, gcc-internal-format
msgid ""
"Entity with assumed character length at %L must be a dummy argument or a "
"PARAMETER"
msgstr ""

#: fortran/resolve.c:4214
#, gcc-internal-format
msgid ""
"Implicitly typed PARAMETER '%s' at %L doesn't match a later IMPLICIT type"
msgstr ""

#: fortran/resolve.c:4224
#, gcc-internal-format
msgid "Incompatible derived type in PARAMETER at %L"
msgstr ""

#: fortran/resolve.c:4235
#, gcc-internal-format
msgid "Symbol at %L is not a DUMMY variable"
msgstr ""

#: fortran/resolve.c:4246
#, gcc-internal-format
msgid ""
"Character-valued statement function '%s' at %L must have constant length"
msgstr ""

#: fortran/resolve.c:4263
#, gcc-internal-format
msgid "Allocatable array at %L must have a deferred shape"
msgstr ""

#: fortran/resolve.c:4266
#, gcc-internal-format
msgid "Object at %L may not be ALLOCATABLE"
msgstr ""

#: fortran/resolve.c:4273
#, gcc-internal-format
msgid "Pointer to array at %L must have a deferred shape"
msgstr ""

#: fortran/resolve.c:4284
#, gcc-internal-format
msgid "Array at %L cannot have a deferred shape"
msgstr ""

#: fortran/resolve.c:4325
#, gcc-internal-format
msgid "%s '%s' at %L cannot have an initializer"
msgstr ""

#: fortran/resolve.c:4343
#, gcc-internal-format
msgid "PRIVATE symbol '%s' cannot be member of PUBLIC namelist at %L"
msgstr ""

#: fortran/resolve.c:4359
#, gcc-internal-format
msgid "Intrinsic at %L does not exist"
msgstr ""

#: fortran/resolve.c:4471
#, gcc-internal-format
msgid "Nonconstant array section at %L in DATA statement"
msgstr ""

#: fortran/resolve.c:4484
#, gcc-internal-format
msgid "DATA statement at %L has more variables than values"
msgstr ""

#: fortran/resolve.c:4682
#, gcc-internal-format
msgid "DATA statement at %L has more values than variables"
msgstr ""

#: fortran/resolve.c:4764
#, gcc-internal-format
msgid "Label %d at %L defined but not used"
msgstr ""

#: fortran/resolve.c:4769
#, gcc-internal-format
msgid "Label %d at %L defined but cannot be used"
msgstr ""

#: fortran/resolve.c:4794
#, gcc-internal-format
msgid ""
"Derived type variable '%s' at %L must have SEQUENCE attribute to be an "
"EQUIVALENCE object"
msgstr ""

#: fortran/resolve.c:4809
#, gcc-internal-format
msgid ""
"Derived type variable '%s' at %L has pointer componet(s) cannot be an "
"EQUIVALENCE object"
msgstr ""

#: fortran/resolve.c:4894
#, gcc-internal-format
msgid "Syntax error in EQUIVALENCE statement at %L"
msgstr ""

#: fortran/resolve.c:4908
#, gcc-internal-format
msgid "Dummy argument '%s' at %L cannot be an EQUIVALENCE object"
msgstr ""

#: fortran/resolve.c:4916
#, gcc-internal-format
msgid "Allocatable array '%s' at %L cannot be an EQUIVALENCE object"
msgstr ""

#: fortran/resolve.c:4924
#, gcc-internal-format
msgid "Pointer '%s' at %L cannot be an EQUIVALENCE object"
msgstr ""

#: fortran/resolve.c:4933
#, gcc-internal-format
msgid "Entity '%s' at %L cannot be an EQUIVALENCE object"
msgstr ""

#: fortran/resolve.c:4941
#, gcc-internal-format
msgid "Named constant '%s' at %L cannot be an EQUIVALENCE object"
msgstr ""

#: fortran/resolve.c:4957
#, gcc-internal-format
msgid ""
"Array '%s' at %L with non-constant bounds cannot be an EQUIVALENCE object"
msgstr ""

#: fortran/resolve.c:4968
#, gcc-internal-format
msgid "Structure component '%s' at %L cannot be an EQUIVALENCE object"
msgstr ""

#: fortran/resolve.c:4979
#, gcc-internal-format
msgid "Substring at %L has length zero"
msgstr ""

#: fortran/resolve.c:5025
#, gcc-internal-format
msgid "ENTRY '%s' at %L has no IMPLICIT type"
msgstr ""

#: fortran/resolve.c:5061
#, gcc-internal-format
msgid "Contained procedure '%s' at %L of a PURE procedure must also be PURE"
msgstr ""

#: fortran/scanner.c:912
#, gcc-internal-format
msgid "%s:%d: file %s left but not entered"
msgstr ""

#: fortran/scanner.c:935
#, gcc-internal-format
msgid "%s:%d: Illegal preprocessor directive"
msgstr ""

#: fortran/scanner.c:1010
#, gcc-internal-format
msgid "File '%s' is being included recursively"
msgstr ""

#: fortran/scanner.c:1019
#, gcc-internal-format
msgid "Can't open file '%s'"
msgstr ""

#: fortran/scanner.c:1028
#, gcc-internal-format
msgid "Can't open included file '%s'"
msgstr ""

#: fortran/scanner.c:1197
#, gcc-internal-format
msgid "Reading file '%s' as free form."
msgstr ""

#: fortran/simplify.c:101
#, gcc-internal-format
msgid "Result of %s overflows its kind at %L"
msgstr ""

#: fortran/simplify.c:120
#, gcc-internal-format
msgid "KIND parameter of %s at %L must be an initialization expression"
msgstr ""

#: fortran/simplify.c:130
#, gcc-internal-format
msgid "Invalid KIND parameter of %s at %L"
msgstr ""

#: fortran/simplify.c:227
#, gcc-internal-format
msgid ""
"Extended ASCII not implemented: argument of ACHAR at %L must be between 0 "
"and 127"
msgstr ""

#: fortran/simplify.c:254
#, gcc-internal-format
msgid "Argument of ACOS at %L must be between -1 and 1"
msgstr ""

#: fortran/simplify.c:276
#, gcc-internal-format
msgid "Argument of ACOSH at %L must not be less than 1"
msgstr ""

#: fortran/simplify.c:477
#, gcc-internal-format
msgid "Argument of ASIN at %L must be between -1 and 1"
msgstr ""

#: fortran/simplify.c:533
#, gcc-internal-format
msgid "Argument of ATANH at %L must be inside the range -1 to 1"
msgstr ""

#: fortran/simplify.c:559
#, gcc-internal-format
msgid ""
"If first argument of ATAN2 %L is zero, then the second argument must not be "
"zero"
msgstr ""

#: fortran/simplify.c:641
#, gcc-internal-format
msgid "Bad character in CHAR function at %L"
msgstr ""

#: fortran/simplify.c:1139
#, gcc-internal-format
msgid "Argument of IACHAR at %L must be of length one"
msgstr ""

#: fortran/simplify.c:1179
#, gcc-internal-format
msgid "Invalid second argument of IBCLR at %L"
msgstr ""

#: fortran/simplify.c:1187
#, gcc-internal-format
msgid "Second argument of IBCLR exceeds bit size at %L"
msgstr ""

#: fortran/simplify.c:1214
#, gcc-internal-format
msgid "Invalid second argument of IBITS at %L"
msgstr ""

#: fortran/simplify.c:1220
#, gcc-internal-format
msgid "Invalid third argument of IBITS at %L"
msgstr ""

#: fortran/simplify.c:1231
#, gcc-internal-format
msgid "Sum of second and third arguments of IBITS exceeds bit size at %L"
msgstr ""

#: fortran/simplify.c:1279
#, gcc-internal-format
msgid "Invalid second argument of IBSET at %L"
msgstr ""

#: fortran/simplify.c:1287
#, gcc-internal-format
msgid "Second argument of IBSET exceeds bit size at %L"
msgstr ""

#: fortran/simplify.c:1310
#, gcc-internal-format
msgid "Argument of ICHAR at %L must be of length one"
msgstr ""

#: fortran/simplify.c:1318
#, gcc-internal-format
msgid "Argument of ICHAR at %L out of range of this processor"
msgstr ""

#: fortran/simplify.c:1526
#, gcc-internal-format
msgid "Argument of INT at %L is not a valid type"
msgstr ""

#: fortran/simplify.c:1603
#, gcc-internal-format
msgid "Invalid second argument of ISHFT at %L"
msgstr ""

#: fortran/simplify.c:1619
#, gcc-internal-format
msgid "Magnitude of second argument of ISHFT exceeds bit size at %L"
msgstr ""

#: fortran/simplify.c:1683
#, gcc-internal-format
msgid "Invalid second argument of ISHFTC at %L"
msgstr ""

#: fortran/simplify.c:1693
#, gcc-internal-format
msgid "Invalid third argument of ISHFTC at %L"
msgstr ""

#: fortran/simplify.c:1708
#, gcc-internal-format
msgid "Magnitude of second argument of ISHFTC exceeds third argument at %L"
msgstr ""

#: fortran/simplify.c:1778
#, gcc-internal-format
msgid "Argument of KIND at %L is a DERIVED type"
msgstr ""

#: fortran/simplify.c:1849
#, gcc-internal-format
msgid "DIM argument at %L is out of bounds"
msgstr ""

#: fortran/simplify.c:1979
#, gcc-internal-format
msgid "Argument of LOG at %L cannot be less than or equal to zero"
msgstr ""

#: fortran/simplify.c:1992
#, gcc-internal-format
msgid "Complex argument of LOG at %L cannot be zero"
msgstr ""

#: fortran/simplify.c:2036
#, gcc-internal-format
msgid "Argument of LOG10 at %L cannot be less than or equal to zero"
msgstr ""

#. Result is processor-dependent.
#: fortran/simplify.c:2211
#, gcc-internal-format
msgid "Second argument MOD at %L is zero"
msgstr ""

#. Result is processor-dependent.
#: fortran/simplify.c:2222
#, gcc-internal-format
msgid "Second argument of MOD at %L is zero"
msgstr ""

#. Result is processor-dependent. This processor just opts
#. to not handle it at all.
#. Result is processor-dependent.
#: fortran/simplify.c:2268 fortran/simplify.c:2280
#, gcc-internal-format
msgid "Second argument of MODULO at %L is zero"
msgstr ""

#: fortran/simplify.c:2337
#, gcc-internal-format
msgid "Second argument of NEAREST at %L may not be zero"
msgstr ""

#: fortran/simplify.c:2605
#, gcc-internal-format
msgid "Invalid second argument of REPEAT at %L"
msgstr ""

#: fortran/simplify.c:2679
#, gcc-internal-format
msgid "Integer too large in shape specification at %L"
msgstr ""

#: fortran/simplify.c:2689
#, gcc-internal-format
msgid "Too many dimensions in shape specification for RESHAPE at %L"
msgstr ""

#: fortran/simplify.c:2697
#, gcc-internal-format
msgid "Shape specification at %L cannot be negative"
msgstr ""

#: fortran/simplify.c:2707
#, gcc-internal-format
msgid "Shape specification at %L cannot be the null array"
msgstr ""

#: fortran/simplify.c:2731
#, gcc-internal-format
msgid ""
"ORDER parameter of RESHAPE at %L is not the same size as SHAPE parameter"
msgstr ""

#: fortran/simplify.c:2738
#, gcc-internal-format
msgid "Error in ORDER parameter of RESHAPE at %L"
msgstr ""

#: fortran/simplify.c:2748
#, gcc-internal-format
msgid "ORDER parameter of RESHAPE at %L is out of range"
msgstr ""

#: fortran/simplify.c:2757
#, gcc-internal-format
msgid "Invalid permutation in ORDER parameter at %L"
msgstr ""

#: fortran/simplify.c:2814
#, gcc-internal-format
msgid "PAD parameter required for short SOURCE parameter at %L"
msgstr ""

#: fortran/simplify.c:2948
#, gcc-internal-format
msgid "Result of SCALE overflows its kind at %L"
msgstr ""

#: fortran/simplify.c:3529
#, gcc-internal-format
msgid "Argument of SQRT at %L has a negative value"
msgstr ""

#: fortran/symbol.c:111
#, gcc-internal-format
msgid "Duplicate IMPLICIT NONE statement at %C"
msgstr ""

#: fortran/symbol.c:151
#, gcc-internal-format
msgid "Letter '%c' already set in IMPLICIT statement at %C"
msgstr ""

#: fortran/symbol.c:173
#, gcc-internal-format
msgid "Cannot specify IMPLICIT at %C after IMPLICIT NONE"
msgstr ""

#: fortran/symbol.c:184
#, gcc-internal-format
msgid "Letter %c already has an IMPLICIT type at %C"
msgstr ""

#: fortran/symbol.c:232
#, gcc-internal-format
msgid "Symbol '%s' at %L has no IMPLICIT type"
msgstr ""

#: fortran/symbol.c:300
#, gcc-internal-format
msgid "%s attribute not allowed in BLOCK DATA program unit at %L"
msgstr ""

#: fortran/symbol.c:447 fortran/symbol.c:877
#, gcc-internal-format
msgid "%s attribute conflicts with %s attribute at %L"
msgstr ""

#: fortran/symbol.c:450
#, gcc-internal-format
msgid "%s attribute conflicts with %s attribute in '%s' at %L"
msgstr ""

#: fortran/symbol.c:492
#, gcc-internal-format
msgid "Cannot change attributes of USE-associated symbol at %L"
msgstr ""

#: fortran/symbol.c:495
#, gcc-internal-format
msgid "Cannot change attributes of USE-associated symbol %s at %L"
msgstr ""

#: fortran/symbol.c:517
#, gcc-internal-format
msgid "Cannot change attributes of symbol at %L after it has been used"
msgstr ""

#: fortran/symbol.c:533
#, gcc-internal-format
msgid "Duplicate %s attribute specified at %L"
msgstr ""

#: fortran/symbol.c:663
#, gcc-internal-format
msgid "SAVE attribute at %L cannot be specified in a PURE procedure"
msgstr ""

#: fortran/symbol.c:907
#, gcc-internal-format
msgid "%s procedure at %L is already %s %s procedure"
msgstr ""

#: fortran/symbol.c:943
#, gcc-internal-format
msgid "INTENT (%s) conflicts with INTENT(%s) at %L"
msgstr ""

#: fortran/symbol.c:966
#, gcc-internal-format
msgid "ACCESS specification at %L was already specified"
msgstr ""

#: fortran/symbol.c:986
#, gcc-internal-format
msgid "Symbol '%s' at %L already has an explicit interface"
msgstr ""

#: fortran/symbol.c:1014
#, gcc-internal-format
msgid "Symbol '%s' at %L already has basic type of %s"
msgstr ""

#: fortran/symbol.c:1026
#, gcc-internal-format
msgid "Symbol '%s' at %L cannot have a type"
msgstr ""

#: fortran/symbol.c:1159
#, gcc-internal-format
msgid "Component '%s' at %C already declared at %L"
msgstr ""

#: fortran/symbol.c:1237
#, gcc-internal-format
msgid "Symbol '%s' at %C is ambiguous"
msgstr ""

#: fortran/symbol.c:1277
#, gcc-internal-format
msgid "Derived type '%s' at %C is being used before it is defined"
msgstr ""

#: fortran/symbol.c:1305
#, gcc-internal-format
msgid "'%s' at %C is not a member of the '%s' structure"
msgstr ""

#: fortran/symbol.c:1311
#, gcc-internal-format
msgid "Component '%s' at %C is a PRIVATE component of '%s'"
msgstr ""

#: fortran/symbol.c:1451
#, gcc-internal-format
msgid "Duplicate statement label %d at %L and %L"
msgstr ""

#: fortran/symbol.c:1461
#, gcc-internal-format
msgid "Label %d at %C already referenced as branch target"
msgstr ""

#: fortran/symbol.c:1470
#, gcc-internal-format
msgid "Label %d at %C already referenced as a format label"
msgstr ""

#: fortran/symbol.c:1512
#, gcc-internal-format
msgid "Label %d at %C previously used as a FORMAT label"
msgstr ""

#: fortran/symbol.c:1520
#, gcc-internal-format
msgid "Label %d at %C previously used as branch target"
msgstr ""

#: fortran/symbol.c:1773
#, gcc-internal-format
msgid "Name '%s' at %C is an ambiguous reference to '%s' from module '%s'"
msgstr ""

#: fortran/symbol.c:1776
#, gcc-internal-format
msgid ""
"Name '%s' at %C is an ambiguous reference to '%s' from current program unit"
msgstr ""

#. Symbol is from another namespace.
#: fortran/symbol.c:1913
#, gcc-internal-format
msgid "Symbol '%s' at %C has already been host associated"
msgstr ""

#: fortran/trans-array.c:2883
#, gcc-internal-format
msgid "Possible frontend bug: array constructor not expanded"
msgstr ""

#: fortran/trans-array.c:4001
#, gcc-internal-format
msgid ""
"Possible frontend bug: Deferred array size without pointer or allocatable "
"attribute."
msgstr ""

#: fortran/trans-array.c:4160
#, gcc-internal-format
msgid "scalar vector subscript???"
msgstr ""

#: fortran/trans-array.c:4434
#, gcc-internal-format
msgid "bad expression type during walk (%d)"
msgstr ""

#: fortran/trans-common.c:332
#, gcc-internal-format
msgid "Named COMMON block '%s' at %L shall be of the same size"
msgstr ""

#: fortran/trans-common.c:595
#, gcc-internal-format
msgid "Bad array reference at %L"
msgstr ""

#: fortran/trans-common.c:603
#, gcc-internal-format
msgid "Illegal reference type at %L as EQUIVALENCE object"
msgstr ""

#: fortran/trans-common.c:643
#, gcc-internal-format
msgid "Inconsistent equivalence rules involving '%s' at %L and '%s' at %L"
msgstr ""

#. Aligning this field would misalign a previous field.
#: fortran/trans-common.c:766
#, gcc-internal-format
msgid ""
"The equivalence set for variable '%s' declared at %L violates alignment "
"requirents"
msgstr ""

#: fortran/trans-common.c:829
#, gcc-internal-format
msgid "Equivalence for '%s' does not match ordering of COMMON '%s' at %L"
msgstr ""

#: fortran/trans-common.c:844
#, gcc-internal-format
msgid ""
"The equivalence set for '%s' cause an invalid extension to COMMON '%s' at %L"
msgstr ""

#. The required offset conflicts with previous alignment
#. requirements.  Insert padding immediately before this
#. segment.
#: fortran/trans-common.c:855
#, gcc-internal-format
msgid "Padding of %d bytes required before '%s' in COMMON '%s' at %L"
msgstr ""

#: fortran/trans-common.c:881
#, gcc-internal-format
msgid "COMMON '%s' at %L requires %d bytes of padding at start"
msgstr ""

#: fortran/trans-const.c:334
#, gcc-internal-format
msgid "gfc_conv_constant_to_tree(): invalid type: %s"
msgstr ""

#: fortran/trans-decl.c:388
#, gcc-internal-format
msgid "storage size not known"
msgstr ""

#: fortran/trans-decl.c:395
#, gcc-internal-format
msgid "storage size not constant"
msgstr ""

#: fortran/trans-decl.c:784
#, gcc-internal-format
msgid "intrinsic variable which isn't a procedure"
msgstr ""

#: fortran/trans-decl.c:2048
#, gcc-internal-format
msgid "Function does not return a value"
msgstr ""

#. I don't think this should ever happen.
#: fortran/trans-decl.c:2146
#, gcc-internal-format
msgid "module symbol %s in wrong namespace"
msgstr ""

#: fortran/trans-decl.c:2160
#, gcc-internal-format
msgid "backend decl for module variable %s already exists"
msgstr ""

#: fortran/trans-decl.c:2242
#, gcc-internal-format
msgid "unused parameter %qs"
msgstr ""

#: fortran/trans-decl.c:2247
#, gcc-internal-format
msgid "unused variable %qs"
msgstr ""

#: fortran/trans-decl.c:2419
#, gcc-internal-format
msgid "Function return value not set"
msgstr ""

#: fortran/trans-expr.c:995
#, gcc-internal-format
msgid "Unknown intrinsic op"
msgstr ""

#: fortran/trans-intrinsic.c:589
#, gcc-internal-format
msgid "Intrinsic function %s(%d) not recognized"
msgstr ""

#: fortran/trans-io.c:791
#, gcc-internal-format
msgid "INQUIRE statement at %L cannot contain both FILE and UNIT specifiers."
msgstr ""

#: fortran/trans-io.c:1488
#, gcc-internal-format
msgid "Bad IO basetype (%d)"
msgstr ""

#: fortran/trans-stmt.c:262
#, gcc-internal-format
msgid "An alternate return at %L without a * dummy argument"
msgstr ""

#: fortran/trans-types.c:196
#, gcc-internal-format
msgid "integer kind=8 not available for -fdefault-integer-8 option"
msgstr ""

#: fortran/trans-types.c:208
#, gcc-internal-format
msgid "real kind=8 not available for -fdefault-real-8 option"
msgstr ""

#: fortran/trans-types.c:221
#, gcc-internal-format
msgid "Use of -fdefault-double-8 requires -fdefault-real-8"
msgstr ""

#: fortran/trans-types.c:933
#, gcc-internal-format
msgid "Array element size too big"
msgstr ""

#: fortran/trans.c:625
#, gcc-internal-format
msgid "gfc_trans_code(): Bad statement code"
msgstr ""

#. I changed this from sorry(...) because it should not return.
#. TODO: Remove gfc_todo_error before releasing version 1.0.
#: fortran/trans.h:565
#, gcc-internal-format
msgid "gfc_todo: Not Implemented: "
msgstr ""

#: java/check-init.c:248
#, gcc-internal-format
msgid "Can't reassign a value to the final variable %qs"
msgstr ""

#: java/check-init.c:518 java/check-init.c:531
#, gcc-internal-format
msgid "variable %qD may not have been initialized"
msgstr ""

#: java/check-init.c:948
#, gcc-internal-format
msgid "internal error in check-init: tree code not implemented: %s"
msgstr ""

#: java/check-init.c:1021
#, gcc-internal-format
msgid "%Jfinal field %qD may not have been initialized"
msgstr ""

#: java/class.c:751
#, gcc-internal-format
msgid "bad method signature"
msgstr ""

#: java/class.c:796
#, gcc-internal-format
msgid "misplaced ConstantValue attribute (not in any field)"
msgstr ""

#: java/class.c:799
#, gcc-internal-format
msgid "duplicate ConstantValue attribute for field '%s'"
msgstr ""

#: java/class.c:810
#, gcc-internal-format
msgid "ConstantValue attribute of field '%s' has wrong type"
msgstr ""

#: java/class.c:1438
#, gcc-internal-format
msgid "%Jabstract method in non-abstract class"
msgstr ""

#: java/class.c:2366
#, gcc-internal-format
msgid "non-static method %q+D overrides static method"
msgstr ""

#: java/decl.c:1313
#, gcc-internal-format
msgid "%q+D used prior to declaration"
msgstr ""

#: java/decl.c:1354
#, gcc-internal-format
msgid "declaration of %qs shadows a parameter"
msgstr ""

#: java/decl.c:1357
#, gcc-internal-format
msgid "declaration of %qs shadows a symbol from the parameter list"
msgstr ""

#: java/decl.c:1818
#, gcc-internal-format
msgid "In %+D: overlapped variable and exception ranges at %d"
msgstr ""

#: java/decl.c:1881
#, gcc-internal-format
msgid "bad type in parameter debug info"
msgstr ""

#: java/decl.c:1890
#, gcc-internal-format
msgid "bad PC range for debug info for local %q+D"
msgstr ""

#: java/expr.c:365
#, gcc-internal-format
msgid "need to insert runtime check for %s"
msgstr ""

#: java/expr.c:494 java/expr.c:541
#, gcc-internal-format
msgid "assert: %s is assign compatible with %s"
msgstr ""

#: java/expr.c:661
#, gcc-internal-format
msgid "stack underflow - dup* operation"
msgstr ""

#: java/expr.c:1647
#, gcc-internal-format
msgid "reference %qs is ambiguous: appears in interface %qs and interface %qs"
msgstr ""

#: java/expr.c:1675
#, gcc-internal-format
msgid "field %qs not found"
msgstr ""

#: java/expr.c:2054
#, gcc-internal-format
msgid "method '%s' not found in class"
msgstr ""

#: java/expr.c:2259
#, gcc-internal-format
msgid "failed to find class '%s'"
msgstr ""

#: java/expr.c:2288
#, gcc-internal-format
msgid "class '%s' has no method named '%s' matching signature '%s'"
msgstr ""

#: java/expr.c:2319
#, gcc-internal-format
msgid "invokestatic on non static method"
msgstr ""

#: java/expr.c:2324
#, gcc-internal-format
msgid "invokestatic on abstract method"
msgstr ""

#: java/expr.c:2332
#, gcc-internal-format
msgid "invoke[non-static] on static method"
msgstr ""

#: java/expr.c:2649
#, gcc-internal-format
msgid "missing field '%s' in '%s'"
msgstr ""

#: java/expr.c:2656
#, gcc-internal-format
msgid "mismatching signature for field '%s' in '%s'"
msgstr ""

#: java/expr.c:2679
#, gcc-internal-format
msgid "assignment to final field %q+D not in field's class"
msgstr ""

#: java/expr.c:2684
#, gcc-internal-format
msgid "assignment to final static field %q+D not in class initializer"
msgstr ""

#: java/expr.c:2693
#, gcc-internal-format
msgid "assignment to final field %q+D not in constructor"
msgstr ""

#: java/expr.c:2883
#, gcc-internal-format
msgid "invalid PC in line number table"
msgstr ""

#: java/expr.c:2931
#, gcc-internal-format
msgid "unreachable bytecode from %d to before %d"
msgstr ""

#: java/expr.c:2973
#, gcc-internal-format
msgid "unreachable bytecode from %d to the end of the method"
msgstr ""

#. duplicate code from LOAD macro
#: java/expr.c:3273
#, gcc-internal-format
msgid "unrecogized wide sub-instruction"
msgstr ""

#: java/gjavah.c:712
#, gcc-internal-format
msgid "static field has same name as method"
msgstr ""

#: java/gjavah.c:1260
#, gcc-internal-format
msgid "couldn't find class %s"
msgstr ""

#: java/gjavah.c:1267
#, gcc-internal-format
msgid "parse error while reading %s"
msgstr ""

#: java/gjavah.c:1493 java/gjavah.c:1595 java/gjavah.c:1670
#, gcc-internal-format
msgid "unparseable signature: '%s'"
msgstr ""

#: java/gjavah.c:2060
#, gcc-internal-format
msgid "Not a valid Java .class file."
msgstr ""

#: java/gjavah.c:2068 java/jcf-parse.c:746
#, gcc-internal-format
msgid "error while parsing constant pool"
msgstr ""

#: java/gjavah.c:2074
#, gcc-internal-format
msgid "error in constant pool entry #%d"
msgstr ""

#: java/gjavah.c:2217
#, gcc-internal-format
msgid "class is of array type\n"
msgstr ""

#: java/gjavah.c:2225
#, gcc-internal-format
msgid "base class is of array type"
msgstr ""

#: java/gjavah.c:2423 java/gjavah.c:2550
#, gcc-internal-format
msgid "no classes specified"
msgstr ""

#: java/gjavah.c:2516
#, gcc-internal-format
msgid "'-MG' option is unimplemented"
msgstr ""

#: java/gjavah.c:2558
#, gcc-internal-format
msgid "can't specify both -o and -MD"
msgstr ""

#: java/gjavah.c:2581
#, gcc-internal-format
msgid "%s: no such class"
msgstr ""

#: java/jcf-io.c:536
#, gcc-internal-format
msgid ""
"source file for class %qs is newer than its matching class file.  Source "
"file %qs used instead"
msgstr ""

#: java/jcf-parse.c:366
#, gcc-internal-format
msgid "bad string constant"
msgstr ""

#: java/jcf-parse.c:384
#, gcc-internal-format
msgid "bad value constant type %d, index %d"
msgstr ""

#: java/jcf-parse.c:572
#, gcc-internal-format
msgid "can't reopen %s: %m"
msgstr ""

#: java/jcf-parse.c:579
#, gcc-internal-format
msgid "can't close %s: %m"
msgstr ""

#: java/jcf-parse.c:714 java/jcf-parse.c:720
#, gcc-internal-format
msgid "cannot find file for class %s"
msgstr ""

#: java/jcf-parse.c:743
#, gcc-internal-format
msgid "not a valid Java .class file"
msgstr ""

#. FIXME - where was first time
#: java/jcf-parse.c:761
#, gcc-internal-format
msgid "reading class %s for the second time from %s"
msgstr ""

#: java/jcf-parse.c:779
#, gcc-internal-format
msgid "error while parsing fields"
msgstr ""

#: java/jcf-parse.c:782
#, gcc-internal-format
msgid "error while parsing methods"
msgstr ""

#: java/jcf-parse.c:785
#, gcc-internal-format
msgid "error while parsing final attributes"
msgstr ""

#: java/jcf-parse.c:802
#, gcc-internal-format
msgid ""
"the %<java.lang.Object%> that was found in %qs didn't have the special zero-"
"length %<gnu.gcj.gcj-compiled%> attribute.  This generally means that your "
"classpath is incorrectly set.  Use %<info gcj \"Input Options\"%> to see the "
"info page describing how to set the classpath"
msgstr ""

#: java/jcf-parse.c:836
#, gcc-internal-format
msgid "%Hduplicate class will only be compiled once"
msgstr ""

#: java/jcf-parse.c:890
#, gcc-internal-format
msgid "missing Code attribute"
msgstr ""

#: java/jcf-parse.c:1172
#, gcc-internal-format
msgid "no input file specified"
msgstr ""

#: java/jcf-parse.c:1207
#, gcc-internal-format
msgid "can't close input file %s: %m"
msgstr ""

#: java/jcf-parse.c:1254
#, gcc-internal-format
msgid "bad zip/jar file %s"
msgstr ""

#: java/jcf-parse.c:1475
#, gcc-internal-format
msgid "error while reading %s from zip file"
msgstr ""

#: java/jcf-write.c:2668
#, gcc-internal-format
msgid ""
"internal error in generate_bytecode_insn - tree code not implemented: %s"
msgstr ""

#: java/jcf-write.c:3042
#, gcc-internal-format
msgid "field initializer type mismatch"
msgstr ""

#: java/jcf-write.c:3499
#, gcc-internal-format
msgid "can't create directory %s: %m"
msgstr ""

#: java/jcf-write.c:3532
#, gcc-internal-format
msgid "can't open %s for writing: %m"
msgstr ""

#: java/jcf-write.c:3552
#, gcc-internal-format
msgid "can't create %s: %m"
msgstr ""

#: java/jv-scan.c:194
#, gcc-internal-format
msgid "only one of '--print-main', '--list-class', and '--complexity' allowed"
msgstr ""

#: java/jv-scan.c:197
#, gcc-internal-format
msgid "can't open output file '%s'"
msgstr ""

#: java/jv-scan.c:233
#, gcc-internal-format
msgid "file not found '%s'"
msgstr ""

#: java/jvspec.c:436
#, gcc-internal-format
msgid "warning: already-compiled .class files ignored with -C"
msgstr ""

#: java/lang.c:615
#, gcc-internal-format
msgid "can't do dependency tracking with input from stdin"
msgstr ""

#: java/lang.c:631
#, gcc-internal-format
msgid "couldn't determine target name for dependency tracking"
msgstr ""

#: java/lex.c:260
#, gcc-internal-format
msgid ""
"unknown encoding: %qs\n"
"This might mean that your locale's encoding is not supported\n"
"by your system's iconv(3) implementation.  If you aren't trying\n"
"to use a particular encoding for your input file, try the\n"
"%<--encoding=UTF-8%> option"
msgstr ""

#: java/lex.c:631
#, gcc-internal-format
msgid "internal error - bad unget"
msgstr ""

#: java/mangle_name.c:140 java/mangle_name.c:210
#, gcc-internal-format
msgid "internal error - invalid Utf8 name"
msgstr ""

#: java/typeck.c:531
#, gcc-internal-format
msgid "junk at end of signature string"
msgstr ""

#: java/verify-glue.c:387
#, gcc-internal-format
msgid "verification failed: %s"
msgstr ""

#: java/verify-glue.c:389
#, gcc-internal-format
msgid "verification failed at PC=%d: %s"
msgstr ""

#: java/verify-glue.c:473
#, gcc-internal-format
msgid "bad pc in exception_table"
msgstr ""

#: java/parse.h:129
#, gcc-internal-format
msgid "%s method can't be abstract"
msgstr ""

#: java/parse.h:133
#, gcc-internal-format
msgid "Constructor can't be %s"
msgstr ""

#. Standard error messages
#: java/parse.h:356
#, gcc-internal-format
msgid "Incompatible type for %qs. Can't convert %qs to boolean"
msgstr ""

#: java/parse.h:361
#, gcc-internal-format
msgid "Incompatible type for %qs. Can't convert %qs to numeric type"
msgstr ""

#: java/parse.h:369
#, gcc-internal-format
msgid ""
"Incompatible type for %qs. Explicit cast needed to convert %qs to integral"
msgstr ""

#: java/parse.h:374
#, gcc-internal-format
msgid "Incompatible type for %qs. Can't convert %qs to integral"
msgstr ""

#: java/parse.h:381
#, gcc-internal-format
msgid "Variable %qs may not have been initialized"
msgstr ""

#: objc/objc-act.c:710
#, gcc-internal-format
msgid "%<@end%> must appear in an @implementation context"
msgstr ""

#: objc/objc-act.c:739
#, gcc-internal-format
msgid "method declaration not in @interface context"
msgstr ""

#: objc/objc-act.c:750
#, gcc-internal-format
msgid "method definition not in @implementation context"
msgstr ""

#: objc/objc-act.c:1174
#, gcc-internal-format
msgid "comparison of distinct Objective-C types lacks a cast"
msgstr ""

#: objc/objc-act.c:1178
#, gcc-internal-format
msgid "initialization from distinct Objective-C type"
msgstr ""

#: objc/objc-act.c:1182
#, gcc-internal-format
msgid "assignment from distinct Objective-C type"
msgstr ""

#: objc/objc-act.c:1186
#, gcc-internal-format
msgid "distinct Objective-C type in return"
msgstr ""

#: objc/objc-act.c:1190
#, gcc-internal-format
msgid "passing argument %d of %qE from distinct Objective-C type"
msgstr ""

#: objc/objc-act.c:1345
#, gcc-internal-format
msgid "statically allocated instance of Objective-C class %qs"
msgstr ""

#: objc/objc-act.c:1416
#, gcc-internal-format
msgid "protocol %qs has circular dependency"
msgstr ""

#: objc/objc-act.c:1438 objc/objc-act.c:6597
#, gcc-internal-format
msgid "cannot find protocol declaration for %qs"
msgstr ""

#: objc/objc-act.c:1888 objc/objc-act.c:3366 objc/objc-act.c:7206
#: objc/objc-act.c:7542 objc/objc-act.c:7596 objc/objc-act.c:7621
#, gcc-internal-format
msgid "cannot find interface declaration for %qs"
msgstr ""

#: objc/objc-act.c:1892
#, gcc-internal-format
msgid "interface %qs does not have valid constant string layout"
msgstr ""

#: objc/objc-act.c:1897
#, gcc-internal-format
msgid "cannot find reference tag for class %qs"
msgstr ""

#: objc/objc-act.c:2576
#, gcc-internal-format
msgid "%Hcreating selector for nonexistent method %qE"
msgstr ""

#: objc/objc-act.c:2778
#, gcc-internal-format
msgid "%qs is not an Objective-C class name or alias"
msgstr ""

#: objc/objc-act.c:2894 objc/objc-act.c:2925 objc/objc-act.c:7470
#: objc/objc-act.c:7771 objc/objc-act.c:7801
#, gcc-internal-format
msgid "Objective-C declarations may only appear in global scope"
msgstr ""

#: objc/objc-act.c:2899
#, gcc-internal-format
msgid "cannot find class %qs"
msgstr ""

#: objc/objc-act.c:2901
#, gcc-internal-format
msgid "class %qs already exists"
msgstr ""

#: objc/objc-act.c:2945 objc/objc-act.c:7511
#, gcc-internal-format
msgid "%qs redeclared as different kind of symbol"
msgstr ""

#: objc/objc-act.c:3219
#, gcc-internal-format
msgid "strong-cast assignment has been intercepted"
msgstr ""

#: objc/objc-act.c:3261
#, gcc-internal-format
msgid "strong-cast may possibly be needed"
msgstr ""

#: objc/objc-act.c:3271
#, gcc-internal-format
msgid "instance variable assignment has been intercepted"
msgstr ""

#: objc/objc-act.c:3290
#, gcc-internal-format
msgid "pointer arithmetic for garbage-collected objects not allowed"
msgstr ""

#: objc/objc-act.c:3296
#, gcc-internal-format
msgid "global/static variable assignment has been intercepted"
msgstr ""

#: objc/objc-act.c:3479
#, gcc-internal-format
msgid "use %<-fobjc-exceptions%> to enable Objective-C exception syntax"
msgstr ""

#: objc/objc-act.c:3820
#, gcc-internal-format
msgid "@catch parameter is not a known Objective-C class type"
msgstr ""

#: objc/objc-act.c:3836
#, gcc-internal-format
msgid "exception of type %<%T%> will be caught"
msgstr ""

#: objc/objc-act.c:3838
#, gcc-internal-format
msgid "%H   by earlier handler for %<%T%>"
msgstr ""

#: objc/objc-act.c:3891
#, gcc-internal-format
msgid "%<@try%> without %<@catch%> or %<@finally%>"
msgstr ""

#: objc/objc-act.c:3939
#, gcc-internal-format
msgid "%<@throw%> (rethrow) used outside of a @catch block"
msgstr ""

#: objc/objc-act.c:4337
#, gcc-internal-format
msgid "type %q+D does not have a known size"
msgstr ""

#: objc/objc-act.c:4970
#, gcc-internal-format
msgid "%J%s %qs"
msgstr ""

#: objc/objc-act.c:4993 objc/objc-act.c:5012
#, gcc-internal-format
msgid "inconsistent instance variable specification"
msgstr ""

#: objc/objc-act.c:5869
#, gcc-internal-format
msgid "can not use an object as parameter to a method"
msgstr ""

#: objc/objc-act.c:6092
#, gcc-internal-format
msgid "multiple %s named %<%c%s%> found"
msgstr ""

#: objc/objc-act.c:6321
#, gcc-internal-format
msgid "no super class declared in @interface for %qs"
msgstr ""

#: objc/objc-act.c:6359
#, gcc-internal-format
msgid "found %<-%s%> instead of %<+%s%> in protocol(s)"
msgstr ""

#: objc/objc-act.c:6418
#, gcc-internal-format
msgid "invalid receiver type %qs"
msgstr ""

#: objc/objc-act.c:6433
#, gcc-internal-format
msgid "%<%c%s%> not found in protocol(s)"
msgstr ""

#: objc/objc-act.c:6447
#, gcc-internal-format
msgid "%qs may not respond to %<%c%s%>"
msgstr ""

#: objc/objc-act.c:6455
#, gcc-internal-format
msgid "no %<%c%s%> method found"
msgstr ""

#: objc/objc-act.c:6461
#, gcc-internal-format
msgid "(Messages without a matching method signature"
msgstr ""

#: objc/objc-act.c:6462
#, gcc-internal-format
msgid "will be assumed to return %<id%> and accept"
msgstr ""

#: objc/objc-act.c:6463
#, gcc-internal-format
msgid "%<...%> as arguments.)"
msgstr ""

#: objc/objc-act.c:6696
#, gcc-internal-format
msgid "undeclared selector %qs"
msgstr ""

#. Historically, a class method that produced objects (factory
#. method) would assign `self' to the instance that it
#. allocated.  This would effectively turn the class method into
#. an instance method.  Following this assignment, the instance
#. variables could be accessed.  That practice, while safe,
#. violates the simple rule that a class method should not refer
#. to an instance variable.  It's better to catch the cases
#. where this is done unknowingly than to support the above
#. paradigm.
#: objc/objc-act.c:6738
#, gcc-internal-format
msgid "instance variable %qs accessed in class method"
msgstr ""

#: objc/objc-act.c:6970
#, gcc-internal-format
msgid "duplicate declaration of method %<%c%s%>"
msgstr ""

#: objc/objc-act.c:7031
#, gcc-internal-format
msgid "duplicate interface declaration for category %<%s(%s)%>"
msgstr ""

#: objc/objc-act.c:7058
#, gcc-internal-format
msgid "illegal reference type specified for instance variable %qs"
msgstr ""

#: objc/objc-act.c:7069
#, gcc-internal-format
msgid "instance variable %qs has unknown size"
msgstr ""

#: objc/objc-act.c:7094
#, gcc-internal-format
msgid "type %qs has no default constructor to call"
msgstr ""

#: objc/objc-act.c:7100
#, gcc-internal-format
msgid "destructor for %qs shall not be run either"
msgstr ""

#. Vtable pointers are Real Bad(tm), since Obj-C cannot
#. initialize them.
#: objc/objc-act.c:7112
#, gcc-internal-format
msgid "type %qs has virtual member functions"
msgstr ""

#: objc/objc-act.c:7113
#, gcc-internal-format
msgid "illegal aggregate type %qs specified for instance variable %qs"
msgstr ""

#: objc/objc-act.c:7123
#, gcc-internal-format
msgid "type %qs has a user-defined constructor"
msgstr ""

#: objc/objc-act.c:7125
#, gcc-internal-format
msgid "type %qs has a user-defined destructor"
msgstr ""

#: objc/objc-act.c:7129
#, gcc-internal-format
msgid ""
"C++ constructors and destructors will not be invoked for Objective-C fields"
msgstr ""

#: objc/objc-act.c:7235
#, gcc-internal-format
msgid "instance variable %qs is declared private"
msgstr ""

#: objc/objc-act.c:7246
#, gcc-internal-format
msgid "instance variable %qs is %s; this will be a hard error in the future"
msgstr ""

#: objc/objc-act.c:7253
#, gcc-internal-format
msgid "instance variable %qs is declared %s"
msgstr ""

#: objc/objc-act.c:7279 objc/objc-act.c:7367
#, gcc-internal-format
msgid "incomplete implementation of class %qs"
msgstr ""

#: objc/objc-act.c:7283 objc/objc-act.c:7372
#, gcc-internal-format
msgid "incomplete implementation of category %qs"
msgstr ""

#: objc/objc-act.c:7288 objc/objc-act.c:7377
#, gcc-internal-format
msgid "method definition for %<%c%s%> not found"
msgstr ""

#: objc/objc-act.c:7418
#, gcc-internal-format
msgid "%s %qs does not fully implement the %qs protocol"
msgstr ""

#: objc/objc-act.c:7476 objc/objc-act.c:9144
#, gcc-internal-format
msgid "%<@end%> missing in implementation context"
msgstr ""

#: objc/objc-act.c:7495
#, gcc-internal-format
msgid "cannot find interface declaration for %qs, superclass of %qs"
msgstr ""

#: objc/objc-act.c:7525
#, gcc-internal-format
msgid "reimplementation of class %qs"
msgstr ""

#: objc/objc-act.c:7557
#, gcc-internal-format
msgid "conflicting super class name %qs"
msgstr ""

#: objc/objc-act.c:7559
#, gcc-internal-format
msgid "previous declaration of %qs"
msgstr ""

#: objc/objc-act.c:7573 objc/objc-act.c:7575
#, gcc-internal-format
msgid "duplicate interface declaration for class %qs"
msgstr ""

#: objc/objc-act.c:7829
#, gcc-internal-format
msgid "duplicate declaration for protocol %qs"
msgstr ""

#. Add a readable method name to the warning.
#: objc/objc-act.c:8387
#, gcc-internal-format
msgid "%J%s %<%c%s%>"
msgstr ""

#: objc/objc-act.c:8717
#, gcc-internal-format
msgid "no super class declared in interface for %qs"
msgstr ""

#: objc/objc-act.c:8766
#, gcc-internal-format
msgid "[super ...] must appear in a method context"
msgstr ""

#: objc/objc-act.c:8806
#, gcc-internal-format
msgid "method possibly missing a [super dealloc] call"
msgstr ""

#: objc/objc-act.c:9438
#, gcc-internal-format
msgid "local declaration of %qs hides instance variable"
msgstr ""

#: treelang/tree1.c:278
#, gcc-internal-format
msgid "%HDuplicate name %q.*s."
msgstr ""

#: treelang/treetree.c:810
#, gcc-internal-format
msgid "Global register variable %qD used in nested function."
msgstr ""

#: treelang/treetree.c:814
#, gcc-internal-format
msgid "Register variable %qD used in nested function."
msgstr ""

#: treelang/treetree.c:820
#, gcc-internal-format
msgid "Address of global register variable %qD requested."
msgstr ""

#: treelang/treetree.c:825
#, gcc-internal-format
msgid "Address of register variable %qD requested."
msgstr ""

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]