#! /bin/sh -e # DP: updates from the 4.3 branch upto 20080401. last_updated() { cat > ${dir}LAST_UPDATED <&2 "`basename $0`: script expects -patch|-unpatch as argument" exit 1 fi case "$1" in -patch) patch $pdir -f --no-backup-if-mismatch -p0 < $0 last_updated #cd ${dir}gcc && autoconf ;; -unpatch) patch $pdir -f --no-backup-if-mismatch -R -p0 < $0 #rm ${dir}gcc/configure ;; *) echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" exit 1 esac exit 0 # svn diff svn://gcc.gnu.org/svn/gcc/tags/gcc_4_3_0_release svn://gcc.gnu.org/svn/gcc/branches/gcc-4_3-branch \ # | awk '/^Index:.*\.class/ {skip=1; next} /^Index:/ { skip=0 } skip==0' Index: libgomp/iter.c =================================================================== --- libgomp/iter.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ libgomp/iter.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -242,17 +242,17 @@ if (ws->next == ws->end) return false; - n = (ws->end - ws->next) / ws->incr; + start = ws->next; + n = (ws->end - start) / ws->incr; q = (n + nthreads - 1) / nthreads; if (q < ws->chunk_size) q = ws->chunk_size; - if (q > n) - q = n; + if (q <= n) + end = start + q * ws->incr; + else + end = ws->end; - start = ws->next; - end = start + q * ws->incr; - ws->next = end; *pstart = start; *pend = end; @@ -286,16 +286,16 @@ if (start == end) return false; - n = (end - start) / ws->incr; + n = (end - start) / incr; q = (n + nthreads - 1) / nthreads; if (q < chunk_size) q = chunk_size; - if (q > n) - q = n; + if (__builtin_expect (q <= n, 1)) + nend = start + q * incr; + else + nend = end; - nend = start + q * incr; - tmp = __sync_val_compare_and_swap (&ws->next, start, nend); if (__builtin_expect (tmp == start, 1)) break; Index: libgomp/ChangeLog =================================================================== --- libgomp/ChangeLog (.../tags/gcc_4_3_0_release) (revision 133808) +++ libgomp/ChangeLog (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,3 +1,27 @@ +2008-03-18 Jakub Jelinek + + PR middle-end/35611 + * testsuite/libgomp.c/atomic-4.c: New test. + + PR libgomp/35625 + * iter.c (gomp_iter_guided_next_locked): If q > n, set end to ws->end. + (gomp_iter_guided_next): Likewise. + * testsuite/libgomp.c/pr35625.c: New test. + +2008-03-13 Jakub Jelinek + + PR middle-end/35185 + * testsuite/libgomp.c++/pr35185.C: New test. + +2008-03-12 Jakub Jelinek + + PR middle-end/35549 + * testsuite/libgomp.c/pr35549.c: New test. + +2008-03-06 Jakub Jelinek + + * testsuite/libgomp.c/atomic-3.c: New test. + 2008-03-05 Release Manager * GCC 4.3.0 released. Index: libgomp/testsuite/libgomp.c++/pr35185.C =================================================================== --- libgomp/testsuite/libgomp.c++/pr35185.C (.../tags/gcc_4_3_0_release) (revision 0) +++ libgomp/testsuite/libgomp.c++/pr35185.C (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,33 @@ +// PR middle-end/35185 +// { dg-do run } + +extern "C" void abort (); + +struct S +{ + S () : s (6) {} + ~S () {} + int s; +}; + +__attribute__((noinline)) +bool +bar (S s) +{ + return s.s != 6; +} + +int +main () +{ + S s; + int err = 0; +#pragma omp parallel shared (s) + { + if (bar (s)) + #pragma omp atomic + err++; + } + if (err) + abort (); +} Index: libgomp/testsuite/libgomp.c/pr35549.c =================================================================== --- libgomp/testsuite/libgomp.c/pr35549.c (.../tags/gcc_4_3_0_release) (revision 0) +++ libgomp/testsuite/libgomp.c/pr35549.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,30 @@ +/* PR middle-end/35549 */ +/* { dg-do run } */ + +#include +#include + +int +main (void) +{ + int i = 6, n = 0; + omp_set_dynamic (0); + omp_set_nested (1); + #pragma omp parallel shared (i) num_threads (3) + { + if (omp_get_num_threads () != 3) + #pragma omp atomic + n += 1; + #pragma omp parallel shared (i) num_threads (4) + { + if (omp_get_num_threads () != 4) + #pragma omp atomic + n += 1; + #pragma omp critical + i += 1; + } + } + if (n == 0 && i != 6 + 3 * 4) + abort (); + return 0; +} Index: libgomp/testsuite/libgomp.c/atomic-4.c =================================================================== --- libgomp/testsuite/libgomp.c/atomic-4.c (.../tags/gcc_4_3_0_release) (revision 0) +++ libgomp/testsuite/libgomp.c/atomic-4.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,18 @@ +/* PR middle-end/35611 */ +/* { dg-options "-O2" } */ + +extern void abort (void); + +int +main (void) +{ + long double d = .0L; + int i; + #pragma omp parallel for shared (d) + for (i = 0; i < 1000; i++) + #pragma omp atomic + d += 1.0L; + if (d != 1000.0L) + abort (); + return 0; +} Index: libgomp/testsuite/libgomp.c/pr35625.c =================================================================== --- libgomp/testsuite/libgomp.c/pr35625.c (.../tags/gcc_4_3_0_release) (revision 0) +++ libgomp/testsuite/libgomp.c/pr35625.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,18 @@ +/* PR libgomp/35625 */ +/* { dg-do run } */ +/* { dg-options "-std=c99" } */ + +int +main (void) +{ +#pragma omp parallel + { + #pragma omp for schedule (guided, 10) + for (int i = 0; i < 1826; i += 10) + ; + #pragma omp for schedule (guided, 10) + for (int i = 0; i > -1826; i -= 10) + ; + } + return 0; +} Index: libgomp/testsuite/libgomp.c/atomic-3.c =================================================================== --- libgomp/testsuite/libgomp.c/atomic-3.c (.../tags/gcc_4_3_0_release) (revision 0) +++ libgomp/testsuite/libgomp.c/atomic-3.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,50 @@ +/* { dg-do run } */ +/* { dg-options "-fopenmp -O0" } */ + +#include +#include + +short e[64]; +int g; +_Complex double d, f; +int num_threads; + +__attribute__((noinline)) void +foo (int x, long long y) +{ +#pragma omp parallel num_threads (4) + { + int i; + #pragma omp barrier + for (i = 0; i < 2400; i++) + { + if (i == 0) + num_threads = omp_get_num_threads (); + #pragma omp atomic + e[0] += x; + #pragma omp atomic + e[16] += x; + #pragma omp atomic + g += y; + #pragma omp atomic + __real__ d += x; + #pragma omp atomic + __imag__ f += x; + } + } +} + +int +main (void) +{ + int i; + foo (3, 3LL); + if (g != 3 * 2400 * num_threads + || __real__ d != g || __imag__ d != 0 + || __real__ f != 0 || __imag__ f != g) + abort (); + for (i = 0; i < 64; i++) + if (e[i] != ((i && i != 16) ? 0 : g)) + abort (); + return 0; +} Index: gcc/doc/include/texinfo.tex =================================================================== --- gcc/doc/include/texinfo.tex (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/doc/include/texinfo.tex (.../branches/gcc-4_3-branch) (revision 133808) @@ -3,7 +3,7 @@ % Load plain if necessary, i.e., if running under initex. \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi % -\def\texinfoversion{2008-02-04.16} +\def\texinfoversion{2008-03-07.10} % % Copyright (C) 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995, % 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, @@ -917,16 +917,21 @@ \temp } -% @include file insert text of that file as input. +% @include FILE -- \input text of FILE. % \def\include{\parseargusing\filenamecatcodes\includezzz} \def\includezzz#1{% \pushthisfilestack \def\thisfile{#1}% {% - \makevalueexpandable - \input #1 - }% + \makevalueexpandable % we want to expand any @value in FILE. + \turnoffactive % and allow special characters in the expansion + \edef\temp{\noexpand\input #1 }% + % + % This trickery is to read FILE outside of a group, in case it makes + % definitions, etc. + \expandafter + }\temp \popthisfilestack } \def\filenamecatcodes{% @@ -5725,7 +5730,7 @@ \let\/=\ptexslash \let\*=\ptexstar \let\t=\ptext - \expandafter \let\csname top \endcsname=\ptextop % outer + \expandafter \let\csname top\endcsname=\ptextop % outer \let\frenchspacing=\plainfrenchspacing % \def\endldots{\mathinner{\ldots\ldots\ldots\ldots}}% Index: gcc/java/jcf-parse.c =================================================================== --- gcc/java/jcf-parse.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/java/jcf-parse.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -1208,7 +1208,7 @@ #ifdef USE_MAPPED_LOCATION { tree source_name = identifier_subst (class_name, "", '.', '/', ".java"); - const char *sfname = IDENTIFIER_POINTER (source_name); + const char *sfname = find_sourcefile (IDENTIFIER_POINTER (source_name)); linemap_add (line_table, LC_ENTER, false, sfname, 0); input_location = linemap_line_start (line_table, 0, 1); file_start_location = input_location; Index: gcc/java/Make-lang.in =================================================================== --- gcc/java/Make-lang.in (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/java/Make-lang.in (.../branches/gcc-4_3-branch) (revision 133808) @@ -311,7 +311,7 @@ $(srcdir)/java/jcf-path.c $(OUTPUT_OPTION) TEXI_JAVA_FILES = java/gcj.texi $(gcc_docdir)/include/fdl.texi \ - $(gcc_docdir)/include/gpl.texi $(gcc_docdir)/include/gcc-common.texi \ + $(gcc_docdir)/include/gpl_v3.texi $(gcc_docdir)/include/gcc-common.texi \ gcc-vers.texi # Documentation Index: gcc/java/ChangeLog =================================================================== --- gcc/java/ChangeLog (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/java/ChangeLog (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,3 +1,14 @@ +2008-04-01 Joseph Myers + + * gcj.texi: Include gpl_v3.texi instead of gpl.texi + * Make-lang.in (TEXI_JAVA_FILES): Include gpl_v3.texi instead of + gpl.texi. + +2008-03-06 Andrew Haley + + * jcf-parse.c (give_name_to_class): Call find_sourcefile to find + full pathname of source file. + 2008-03-05 Release Manager * GCC 4.3.0 released. Index: gcc/DATESTAMP =================================================================== --- gcc/DATESTAMP (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/DATESTAMP (.../branches/gcc-4_3-branch) (revision 133808) @@ -1 +1 @@ -20080305 +20080401 Index: gcc/tree.c =================================================================== --- gcc/tree.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/tree.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -4067,6 +4067,16 @@ return NULL_TREE; } + if (TREE_CODE (node) == TYPE_DECL + && TREE_CODE (TREE_TYPE (node)) != RECORD_TYPE + && TREE_CODE (TREE_TYPE (node)) != UNION_TYPE) + { + *no_add_attrs = true; + warning (OPT_Wattributes, "%qs attribute ignored", + IDENTIFIER_POINTER (name)); + return NULL_TREE; + } + /* Report error on dllimport ambiguities seen now before they cause any damage. */ else if (is_attribute_p ("dllimport", name)) Index: gcc/fold-const.c =================================================================== --- gcc/fold-const.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/fold-const.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -5066,9 +5066,10 @@ Note that all these transformations are correct if A is NaN, since the two alternatives (A and -A) are also NaNs. */ - if ((FLOAT_TYPE_P (TREE_TYPE (arg01)) - ? real_zerop (arg01) - : integer_zerop (arg01)) + if (!HONOR_SIGNED_ZEROS (TYPE_MODE (type)) + && (FLOAT_TYPE_P (TREE_TYPE (arg01)) + ? real_zerop (arg01) + : integer_zerop (arg01)) && ((TREE_CODE (arg2) == NEGATE_EXPR && operand_equal_p (TREE_OPERAND (arg2, 0), arg1, 0)) /* In the case that A is of the form X-Y, '-A' (arg2) may @@ -5121,7 +5122,8 @@ both transformations are correct when A is NaN: A != 0 is then true, and A == 0 is false. */ - if (integer_zerop (arg01) && integer_zerop (arg2)) + if (!HONOR_SIGNED_ZEROS (TYPE_MODE (type)) + && integer_zerop (arg01) && integer_zerop (arg2)) { if (comp_code == NE_EXPR) return pedantic_non_lvalue (fold_convert (type, arg1)); @@ -5155,7 +5157,8 @@ a number and A is not. The conditions in the original expressions will be false, so all four give B. The min() and max() versions would give a NaN instead. */ - if (operand_equal_for_comparison_p (arg01, arg2, arg00) + if (!HONOR_SIGNED_ZEROS (TYPE_MODE (type)) + && operand_equal_for_comparison_p (arg01, arg2, arg00) /* Avoid these transformations if the COND_EXPR may be used as an lvalue in the C++ front-end. PR c++/19199. */ && (in_gimple_form @@ -9357,7 +9360,7 @@ } } - if (DECL_P (expr)) + if (DECL_P (expr) && TREE_CODE (expr) != FUNCTION_DECL) return DECL_ALIGN_UNIT (expr); } else if (code == POINTER_PLUS_EXPR) Index: gcc/omp-low.c =================================================================== --- gcc/omp-low.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/omp-low.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -456,7 +456,7 @@ } static inline tree -maybe_lookup_decl (tree var, omp_context *ctx) +maybe_lookup_decl (const_tree var, omp_context *ctx) { tree *n; n = (tree *) pointer_map_contains (ctx->cb.decl_map, var); @@ -479,18 +479,18 @@ return n ? (tree) n->value : NULL_TREE; } -/* Return true if DECL should be copied by pointer. SHARED_P is true - if DECL is to be shared. */ +/* Return true if DECL should be copied by pointer. SHARED_CTX is + the parallel context if DECL is to be shared. */ static bool -use_pointer_for_field (const_tree decl, bool shared_p) +use_pointer_for_field (const_tree decl, omp_context *shared_ctx) { if (AGGREGATE_TYPE_P (TREE_TYPE (decl))) return true; /* We can only use copy-in/copy-out semantics for shared variables when we know the value is not accessible from an outer scope. */ - if (shared_p) + if (shared_ctx) { /* ??? Trivially accessible from anywhere. But why would we even be passing an address in this case? Should we simply assert @@ -510,6 +510,34 @@ address taken. */ if (TREE_ADDRESSABLE (decl)) return true; + + /* Disallow copy-in/out in nested parallel if + decl is shared in outer parallel, otherwise + each thread could store the shared variable + in its own copy-in location, making the + variable no longer really shared. */ + if (!TREE_READONLY (decl) && shared_ctx->is_nested) + { + omp_context *up; + + for (up = shared_ctx->outer; up; up = up->outer) + if (maybe_lookup_decl (decl, up)) + break; + + if (up && is_parallel_ctx (up)) + { + tree c; + + for (c = OMP_PARALLEL_CLAUSES (up->stmt); + c; c = OMP_CLAUSE_CHAIN (c)) + if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_SHARED + && OMP_CLAUSE_DECL (c) == decl) + break; + + if (c) + return true; + } + } } return false; @@ -596,7 +624,7 @@ } else if (is_parallel_ctx (ctx)) { - bool by_ref = use_pointer_for_field (var, false); + bool by_ref = use_pointer_for_field (var, NULL); x = build_receiver_ref (var, by_ref, ctx); } else if (ctx->outer) @@ -966,7 +994,7 @@ gcc_assert (is_parallel_ctx (ctx)); decl = OMP_CLAUSE_DECL (c); gcc_assert (!is_variable_sized (decl)); - by_ref = use_pointer_for_field (decl, true); + by_ref = use_pointer_for_field (decl, ctx); /* Global variables don't need to be copied, the receiver side will use them directly. */ if (is_global_var (maybe_lookup_decl_in_outer_ctx (decl, ctx))) @@ -1001,7 +1029,7 @@ && ! is_global_var (maybe_lookup_decl_in_outer_ctx (decl, ctx))) { - by_ref = use_pointer_for_field (decl, false); + by_ref = use_pointer_for_field (decl, NULL); install_var_field (decl, by_ref, ctx); } install_var_local (decl, ctx); @@ -1014,7 +1042,7 @@ case OMP_CLAUSE_COPYIN: decl = OMP_CLAUSE_DECL (c); - by_ref = use_pointer_for_field (decl, false); + by_ref = use_pointer_for_field (decl, NULL); install_var_field (decl, by_ref, ctx); break; @@ -1751,7 +1779,7 @@ /* Set up the DECL_VALUE_EXPR for shared variables now. This needs to be delayed until after fixup_child_record_type so that we get the correct type during the dereference. */ - by_ref = use_pointer_for_field (var, true); + by_ref = use_pointer_for_field (var, ctx); x = build_receiver_ref (var, by_ref, ctx); SET_DECL_VALUE_EXPR (new_var, x); DECL_HAS_VALUE_EXPR_P (new_var) = 1; @@ -1794,7 +1822,7 @@ break; case OMP_CLAUSE_COPYIN: - by_ref = use_pointer_for_field (var, false); + by_ref = use_pointer_for_field (var, NULL); x = build_receiver_ref (var, by_ref, ctx); x = lang_hooks.decls.omp_clause_assign_op (c, new_var, x); append_to_statement_list (x, ©in_seq); @@ -2007,7 +2035,7 @@ continue; var = OMP_CLAUSE_DECL (c); - by_ref = use_pointer_for_field (var, false); + by_ref = use_pointer_for_field (var, NULL); ref = build_sender_ref (var, ctx); x = lookup_decl_in_outer_ctx (var, ctx); @@ -2059,7 +2087,7 @@ continue; if (is_variable_sized (val)) continue; - by_ref = use_pointer_for_field (val, false); + by_ref = use_pointer_for_field (val, NULL); switch (OMP_CLAUSE_CODE (c)) { @@ -2129,7 +2157,7 @@ mapping for OVAR. */ var = lookup_decl_in_outer_ctx (ovar, ctx); - if (use_pointer_for_field (ovar, true)) + if (use_pointer_for_field (ovar, ctx)) { x = build_sender_ref (ovar, ctx); var = build_fold_addr_expr (var); @@ -4852,184 +4880,177 @@ pop_gimplify_context (NULL_TREE); } +/* Callback for lower_omp_1. Return non-NULL if *tp needs to be + regimplified. */ -/* Pass *TP back through the gimplifier within the context determined by WI. - This handles replacement of DECL_VALUE_EXPR, as well as adjusting the - flags on ADDR_EXPR. */ - -static void -lower_regimplify (tree *tp, struct walk_stmt_info *wi) +static tree +lower_omp_2 (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED) { - enum gimplify_status gs; - tree pre = NULL; + tree t = *tp; - if (wi->is_lhs) - gs = gimplify_expr (tp, &pre, NULL, is_gimple_lvalue, fb_lvalue); - else if (wi->val_only) - gs = gimplify_expr (tp, &pre, NULL, is_gimple_val, fb_rvalue); - else - gs = gimplify_expr (tp, &pre, NULL, is_gimple_formal_tmp_var, fb_rvalue); - gcc_assert (gs == GS_ALL_DONE); + /* Any variable with DECL_VALUE_EXPR needs to be regimplified. */ + if (TREE_CODE (t) == VAR_DECL && DECL_HAS_VALUE_EXPR_P (t)) + return t; - if (pre) - tsi_link_before (&wi->tsi, pre, TSI_SAME_STMT); -} + /* If a global variable has been privatized, TREE_CONSTANT on + ADDR_EXPR might be wrong. */ + if (TREE_CODE (t) == ADDR_EXPR) + recompute_tree_invariant_for_addr_expr (t); -/* Copy EXP into a temporary. Insert the initialization statement before TSI. */ - -static tree -init_tmp_var (tree exp, tree_stmt_iterator *tsi) -{ - tree t, stmt; - - t = create_tmp_var (TREE_TYPE (exp), NULL); - DECL_GIMPLE_REG_P (t) = 1; - stmt = build_gimple_modify_stmt (t, exp); - SET_EXPR_LOCUS (stmt, EXPR_LOCUS (tsi_stmt (*tsi))); - tsi_link_before (tsi, stmt, TSI_SAME_STMT); - - return t; + *walk_subtrees = !TYPE_P (t) && !DECL_P (t); + return NULL_TREE; } -/* Similarly, but copy from the temporary and insert the statement - after the iterator. */ - -static tree -save_tmp_var (tree exp, tree_stmt_iterator *tsi) +static void +lower_omp_1 (tree *tp, omp_context *ctx, tree_stmt_iterator *tsi) { - tree t, stmt; + tree t = *tp; - t = create_tmp_var (TREE_TYPE (exp), NULL); - DECL_GIMPLE_REG_P (t) = 1; - stmt = build_gimple_modify_stmt (exp, t); - SET_EXPR_LOCUS (stmt, EXPR_LOCUS (tsi_stmt (*tsi))); - tsi_link_after (tsi, stmt, TSI_SAME_STMT); + if (!t) + return; - return t; -} + if (EXPR_HAS_LOCATION (t)) + input_location = EXPR_LOCATION (t); -/* Callback for walk_stmts. Lower the OpenMP directive pointed by TP. */ - -static tree -lower_omp_1 (tree *tp, int *walk_subtrees, void *data) -{ - struct walk_stmt_info *wi = data; - omp_context *ctx = wi->info; - tree t = *tp; - /* If we have issued syntax errors, avoid doing any heavy lifting. Just replace the OpenMP directives with a NOP to avoid confusing RTL expansion. */ - if (errorcount && OMP_DIRECTIVE_P (*tp)) + if (errorcount && OMP_DIRECTIVE_P (t)) { *tp = build_empty_stmt (); - return NULL_TREE; + return; } - *walk_subtrees = 0; - switch (TREE_CODE (*tp)) + switch (TREE_CODE (t)) { + case STATEMENT_LIST: + { + tree_stmt_iterator i; + for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i)) + lower_omp_1 (tsi_stmt_ptr (i), ctx, &i); + } + break; + + case COND_EXPR: + lower_omp_1 (&COND_EXPR_THEN (t), ctx, NULL); + lower_omp_1 (&COND_EXPR_ELSE (t), ctx, NULL); + if (ctx + && walk_tree (&COND_EXPR_COND (t), lower_omp_2, ctx, NULL)) + { + tree pre = NULL; + gimplify_expr (&COND_EXPR_COND (t), &pre, NULL, + is_gimple_condexpr, fb_rvalue); + if (pre) + { + if (tsi) + tsi_link_before (tsi, pre, TSI_SAME_STMT); + else + { + append_to_statement_list (t, &pre); + *tp = pre; + } + } + } + break; + case CATCH_EXPR: + lower_omp_1 (&CATCH_BODY (t), ctx, NULL); + break; + case EH_FILTER_EXPR: + lower_omp_1 (&EH_FILTER_FAILURE (t), ctx, NULL); + break; + case TRY_CATCH_EXPR: + case TRY_FINALLY_EXPR: + lower_omp_1 (&TREE_OPERAND (t, 0), ctx, NULL); + lower_omp_1 (&TREE_OPERAND (t, 1), ctx, NULL); + break; + case BIND_EXPR: + lower_omp_1 (&BIND_EXPR_BODY (t), ctx, NULL); + break; + case RETURN_EXPR: + lower_omp_1 (&TREE_OPERAND (t, 0), ctx, NULL); + break; + case OMP_PARALLEL: ctx = maybe_lookup_ctx (t); lower_omp_parallel (tp, ctx); break; - case OMP_FOR: ctx = maybe_lookup_ctx (t); gcc_assert (ctx); lower_omp_for (tp, ctx); break; - case OMP_SECTIONS: ctx = maybe_lookup_ctx (t); gcc_assert (ctx); lower_omp_sections (tp, ctx); break; - case OMP_SINGLE: ctx = maybe_lookup_ctx (t); gcc_assert (ctx); lower_omp_single (tp, ctx); break; - case OMP_MASTER: ctx = maybe_lookup_ctx (t); gcc_assert (ctx); lower_omp_master (tp, ctx); break; - case OMP_ORDERED: ctx = maybe_lookup_ctx (t); gcc_assert (ctx); lower_omp_ordered (tp, ctx); break; - case OMP_CRITICAL: ctx = maybe_lookup_ctx (t); gcc_assert (ctx); lower_omp_critical (tp, ctx); break; - case VAR_DECL: - if (ctx && DECL_HAS_VALUE_EXPR_P (t)) + default: + if (ctx && walk_tree (tp, lower_omp_2, ctx, NULL)) { - lower_regimplify (&t, wi); - if (wi->val_only) + /* The gimplifier doesn't gimplify CALL_EXPR_STATIC_CHAIN. + Handle that here. */ + tree call = get_call_expr_in (t); + if (call + && CALL_EXPR_STATIC_CHAIN (call) + && walk_tree (&CALL_EXPR_STATIC_CHAIN (call), lower_omp_2, + ctx, NULL)) { - if (wi->is_lhs) - t = save_tmp_var (t, &wi->tsi); - else - t = init_tmp_var (t, &wi->tsi); + tree pre = NULL; + gimplify_expr (&CALL_EXPR_STATIC_CHAIN (call), &pre, NULL, + is_gimple_val, fb_rvalue); + if (pre) + { + if (tsi) + tsi_link_before (tsi, pre, TSI_SAME_STMT); + else + { + append_to_statement_list (t, &pre); + lower_omp_1 (&pre, ctx, NULL); + *tp = pre; + return; + } + } } - *tp = t; - } - break; - case ADDR_EXPR: - if (ctx) - lower_regimplify (tp, wi); - break; - - case ARRAY_REF: - case ARRAY_RANGE_REF: - case REALPART_EXPR: - case IMAGPART_EXPR: - case COMPONENT_REF: - case VIEW_CONVERT_EXPR: - if (ctx) - lower_regimplify (tp, wi); - break; - - case INDIRECT_REF: - if (ctx) - { - wi->is_lhs = false; - wi->val_only = true; - lower_regimplify (&TREE_OPERAND (t, 0), wi); + if (tsi == NULL) + gimplify_stmt (tp); + else + { + tree pre = NULL; + gimplify_expr (tp, &pre, NULL, is_gimple_stmt, fb_none); + if (pre) + tsi_link_before (tsi, pre, TSI_SAME_STMT); + } } break; - - default: - if (!TYPE_P (t) && !DECL_P (t)) - *walk_subtrees = 1; - break; } - - return NULL_TREE; } static void lower_omp (tree *stmt_p, omp_context *ctx) { - struct walk_stmt_info wi; - - memset (&wi, 0, sizeof (wi)); - wi.callback = lower_omp_1; - wi.info = ctx; - wi.val_only = true; - wi.want_locations = true; - - walk_stmts (&wi, stmt_p); + lower_omp_1 (stmt_p, ctx, NULL); } /* Main entry point. */ Index: gcc/tree-ssa-dse.c =================================================================== --- gcc/tree-ssa-dse.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/tree-ssa-dse.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -470,24 +470,23 @@ vuse_vec_p vv; tree stmt_lhs; - if (LOADED_SYMS (use_stmt)) + /* If use_stmt is or might be a nop assignment, e.g. for + struct { ... } S a, b, *p; ... + b = a; b = b; + or + b = a; b = *p; where p might be &b, + or + *p = a; *p = b; where p might be &b, + or + *p = *u; *p = *v; where p might be v, then USE_STMT + acts as a use as well as definition, so store in STMT + is not dead. */ + if (LOADED_SYMS (use_stmt) + && bitmap_intersect_p (LOADED_SYMS (use_stmt), + STORED_SYMS (use_stmt))) { - tree use_base - = get_base_address (GIMPLE_STMT_OPERAND (use_stmt, 0)); - /* If use_stmt is or might be a nop assignment, e.g. for - struct { ... } S a, b, *p; ... - b = a; b = b; - or - b = a; b = *p; where p might be &b, then USE_STMT - acts as a use as well as definition, so store in STMT - is not dead. */ - if (TREE_CODE (use_base) == VAR_DECL - && bitmap_bit_p (LOADED_SYMS (use_stmt), - DECL_UID (use_base))) - { - record_voperand_set (dse_gd->stores, &bd->stores, ann->uid); - return; - } + record_voperand_set (dse_gd->stores, &bd->stores, ann->uid); + return; } if (dump_file && (dump_flags & TDF_DETAILS)) Index: gcc/DEV-PHASE =================================================================== --- gcc/DEV-PHASE (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/DEV-PHASE (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1 @@ +prerelease Index: gcc/ChangeLog =================================================================== --- gcc/ChangeLog (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/ChangeLog (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,3 +1,300 @@ +2008-04-01 John David Anglin + + PR middle-end/35705 + * fold-const.c (get_pointer_modulus_and_residue): Return modulus 1 if + the expression is a function address. + +2008-04-01 Joseph Myers + + * doc/include/gpl_v3.texi: Update for manpage generation. + * doc/gcc.texi, doc/gccint.texi: Include gpl_v3.texi instead of + gpl.texi. + * doc/sourcebuild.texi: Document gpl_v3.texi as well as gpl.texi. + * Makefile.in (TEXI_GCC_FILES, TEXI_GCCINT_FILES): Include + gpl_v3.texi instead of gpl.texi. + (gpl.pod): New. + +2008-03-28 Nick Clifton + + PR target/31232 + * config/stormy16/stormy16.c (xstormy16_legitimate_address_p): Do + not allow INT+INT as a legitimate addressing mode. + +2008-03-28 Nick Clifton + + PR target/31110 + * config/mn10300/mn10300.c (mn10300_secondary_reload_class): + Return GENERAL_REGS for stack adjustment reloads. + +2008-03-27 H.J. Lu + + Backport from mainline: + 2008-03-27 H.J. Lu + + PR target/35657 + * config/i386/i386.c (ix86_function_arg_boundary): Align + decimal floating point to its natural boundary. + +2008-03-25 Richard Guenther + + Backport from mainline: + 2008-03-19 Richard Guenther + + PR middle-end/35609 + * tree-ssa.c (walk_data): New structure. + (warn_uninitialized_var): If not always_executed warn with "maybe" + instead of "is". + (execute_early_warn_uninitialized): Compute post-dominators. + Initialize always_executed before processing each basic block. + +2008-03-20 Ira Rosen + + * doc/invoke.texi (-O3): Add -ftree-vectorize to the list of + optimizations turned on under -O3. + (ftree-vectorize): Add that the flag is turned on with -O3. + +2008-03-19 Michael Matz + + Backport from mainline: + 2008-03-19 Michael Matz + + PR middle-end/35616 + * calls.c (expand_call): Check overlap of arguments with call + address for sibcalls. + +2008-03-19 Michael Matz + + * gcov-io.h (__gcov_merge_ior, __gcov_fork): Mark hidden. + +2008-03-19 Andreas Krebbel + + * cse.c (cse_insn): Avoid creation of overlapping MEMs. + * alias.c (nonoverlapping_memrefs_p): Export for use in other modules. + * alias.h (nonoverlapping_memrefs_p): Likewise. + +2008-03-19 Andreas Krebbel + + * cse.c (cse_extended_basic_block): Invalidate artificial defs + at bb start. + +2008-03-18 Mikulas Patocka + + PR target/35504 + * config/i386/i386.c (x86_this_parameter): Calculate correct location + of "this" pointer when "regparm = N" or "fastcall" is in effect. + +2008-03-18 Richard Guenther + + Backport from mainline: + 2008-03-15 Richard Guenther + + PR middle-end/35593 + * tree-ssa-ccp.c (maybe_fold_offset_to_array_ref): Make sure + to not produce negative array indices if not allowed. Add + parameter to indicate that. + (maybe_fold_offset_to_component_ref): Allow negative array + indices only for the first member of a structure. + (maybe_fold_offset_to_reference): Allow negative array indices. + (maybe_fold_stmt_addition): Likewise. + +2008-03-18 Jakub Jelinek + + PR middle-end/35611 + * gimplify.c (gimplify_expr): Gimplify second operand of + OMP_ATOMIC_LOAD. + +2008-03-16 James E. Wilson + + PR debug/31510 + * dbxout.c (dbxout_expand_expr, case VAR_DECL): Return NULL for + emulated thread local variables. + +2008-03-16 Hans-Peter Nilsson + + * doc/extend.texi (Alignment): Say that the ABI controls + the __alignof__ for non-strict-alignment targets rather + than being a recommendation. + +2008-03-14 Richard Guenther + + Backport from mainline: + 2008-02-19 Richard Guenther + + PR tree-optimization/34989 + * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Re-structure. + Allow propagation to INDIRECT_REF if we can simplify only. + +2008-03-14 Uros Bizjak + + PR target/34000 + PR target/35553 + * config/i386/xmmintrin.h: Change all static inline functions to + extern inline and add __gnu_inline__ attribute. + * config/i386/bmintrin.h: Ditto. + * config/i386/smmintrin.h: Ditto. + * config/i386/tmmintrin.h: Ditto. + * config/i386/mmintrin-common.h: Ditto. + * config/i386/ammintrin.h: Ditto. + * config/i386/emmintrin.h: Ditto. + * config/i386/pmmintrin.h: Ditto. + * config/i386/mmintrin.h: Ditto. + * config/i386/mm3dnow.h: Ditto. + +2008-03-13 Jakub Jelinek + + PR middle-end/35185 + * omp-low.c (lower_regimplify, init_tmp_var, save_tmp_var): Removed. + (lower_omp_2): New function. + (lower_omp_1, lower_omp): Rewritten. + +2008-03-12 Jakub Jelinek + + PR middle-end/35549 + * omp-low.c (maybe_lookup_decl): Constify first argument. + (use_pointer_for_field): Change last argument from bool to + omp_context *. Disallow shared copy-in/out in nested + parallel if decl is shared in outer parallel too. + (build_outer_var_ref, scan_sharing_clauses, + lower_rec_input_clauses, lower_copyprivate_clauses, + lower_send_clauses, lower_send_shared_vars): Adjust callers. + +2008-03-12 Uros Bizjak + + PR target/35540 + * config/i386/i386.md (paritysi2, paritydi2): Use register_operand + constraint for operand 1. + (paritysi2_cmp): Use register_operand constraint for operand 2. + Use earlyclobber modifier for operand 1. Remove support for + memory operands. + (paritydi2_cmp): Use register_operand constraint for operand 3. + Use earlyclobber modifier for operand 1. Remove support for + memory operands. + +2008-03-11 Uros Bizjak + + PR middle-end/35526 + * expr.c (store_expr): Call emit_block_move if the mode + of "temp" RTX is BLKmode. + +2008-03-10 Vladimir Makarov + + * config/i386/sse.md (ssse3_pmaddubswv8hi3, ssse3_pmaddubswv4hi3): + Remove commutativity hint. + +2008-03-10 Jakub Jelinek + + PR c/35438 + PR c/35439 + * c-parser.c (c_parser_omp_threadprivate): Don't add vars with + errorneous type. Check that v is a VAR_DECL. + + PR middle-end/35099 + * tree-cfg.c (new_label_mapper): Update cfun->last_label_uid. + +2008-03-10 Uros Bizjak + + Backport from mainline: + 2008-03-09 Uros Bizjak + + PR target/35496 + * config/i386/i386.c (ix86_constant_alignment): Compute alignment using + ALIGN_MODE_128 for VECTOR_CST and INTEGER_CST in addition to REAL_CST. + + 2008-03-04 Uros Bizjak + + PR middle-end/35456 + * fold-const.c (fold_cond_expr_with_comparison): Prevent + transformations for modes that have signed zeros. + * ifcvt.c (noce_try_abs): Ditto. + +2008-03-09 Kaz Kojima + + Backport from mainline: + PR target/35225 + * config/sh/sh.c (find_barrier): Don't go past 'from' argument. + +2008-03-09 Kaz Kojima + + Backport from mainline: + PR target/35190 + * config/sh/sh.md (jump_compact): Disable for crossing jumps. + + * config/sh/sh.c (find_barrier): Don't go past + NOTE_INSN_SWITCH_TEXT_SECTIONS note. + +2008-03-08 Jakub Jelinek + + PR target/35498 + * config/rs6000/rs6000.c (rs6000_expand_compare_and_swapqhi): Shift + wdst back after sync_compare_and_swapqhi_internal. + +2008-03-07 Joseph Myers + + * doc/include/texinfo.tex: Update to version 2008-03-07.10. + +2008-03-07 Richard Guenther + + Backport from mainline: + 2008-03-05 Richard Guenther + + PR tree-optimization/35472 + * tree-ssa-dse.c (dse_optimize_stmt): Do not delete a store + whose single use_stmt has a overlapping set of loaded and + stored symbols as that use_stmt might be a noop assignment then. + +2008-03-06 H.J. Lu + + Backport from mainline: + 2008-02-18 H.J. Lu + + PR target/35189 + * config/i386/i386.c (OPTION_MASK_ISA_MMX_SET): New. + (OPTION_MASK_ISA_3DNOW_SET): Likewise. + (OPTION_MASK_ISA_SSE_SET): Likewise. + (OPTION_MASK_ISA_SSE2_SET): Likewise. + (OPTION_MASK_ISA_SSE3_SET): Likewise. + (OPTION_MASK_ISA_SSSE3_SET): Likewise. + (OPTION_MASK_ISA_SSE4_1_SET): Likewise. + (OPTION_MASK_ISA_SSE4_2_SET): Likewise. + (OPTION_MASK_ISA_SSE4_SET): Likewise. + (OPTION_MASK_ISA_SSE4A_SET): Likewise. + (OPTION_MASK_ISA_SSE5_SET): Likewise. + (OPTION_MASK_ISA_3DNOW_A_UNSET): Likewise. + (OPTION_MASK_ISA_MMX_UNSET): Updated. + (OPTION_MASK_ISA_3DNOW_UNSET): Updated. + (OPTION_MASK_ISA_SSE_UNSET): Likewise. + (OPTION_MASK_ISA_SSE3_UNSET): Likewise. + (OPTION_MASK_ISA_SSSE3_UNSET): Likewise. + (OPTION_MASK_ISA_SSE4_1_UNSET): Likewise. + (OPTION_MASK_ISA_SSE4_2_UNSET): Likewise. + (OPTION_MASK_ISA_SSE4A_UNSET): Likewise. + (OPTION_MASK_ISA_SSE5_UNSET): Likewise. + (OPTION_MASK_ISA_SSE4): Removed. + (ix86_handle_option): Turn on bits in ix86_isa_flags and + ix86_isa_flags_explicit with OPTION_MASK_ISA_XXX_SET for -mXXX. + (override_options): Don't turn on implied SSE/MMX bits in + ix86_isa_flags. + +2008-03-06 Jakub Jelinek + + * gimplify.c (goa_lhs_expr_p): Allow different ADDR_EXPR nodes + for the same VAR_DECL. + +2008-03-06 Daniel Jacobowitz + + * expmed.c (extract_bit_field): Always use adjust_address for MEM. + +2008-03-06 Joseph Myers + + PR target/33963 + * tree.c (handle_dll_attribute): Disallow TYPE_DECLs for types + other than structures and unions. + +2008-03-06 Jakub Jelinek + + * BASE-VER: Set to 4.3.1. + * DEV-PHASE: Set to prerelease. + 2008-03-05 Release Manager * GCC 4.3.0 released. @@ -56,12 +353,12 @@ Uros Bizjak PR target/25477 - * gcc/config/darwin-protos.h: Add darwin_patch_builtins prototype. - * gcc/config/darwin-ppc-ldouble-patch.def: New file. - * gcc/config/rs6000/darwin.h (SUBTARGET_INIT_BUILTINS): New macro. - * gcc/config/rs6000/rs6000.c (rs6000_init_builtins): Call + * config/darwin-protos.h: Add darwin_patch_builtins prototype. + * config/darwin-ppc-ldouble-patch.def: New file. + * config/rs6000/darwin.h (SUBTARGET_INIT_BUILTINS): New macro. + * config/rs6000/rs6000.c (rs6000_init_builtins): Call SUBTARGET_INIT_BUILTINS if defined. - * gcc/config/darwin.c (darwin_patch_builtin, + * config/darwin.c (darwin_patch_builtin, darwin_patch_builtins): New functions. 2008-02-27 Richard Guenther @@ -2122,7 +2419,7 @@ 2008-01-02 Arthur Norman PR target/34013 - * gcc/config/i386/i386.c (ix86_expand_prologue): Save red-zone + * config/i386/i386.c (ix86_expand_prologue): Save red-zone while stack probing. 2008-01-01 Douglas Gregor Index: gcc/testsuite/gcc.c-torture/execute/20080222-1.c =================================================================== --- gcc/testsuite/gcc.c-torture/execute/20080222-1.c (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gcc.c-torture/execute/20080222-1.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,22 @@ +extern void abort (void); + +struct container +{ + unsigned char data[1]; +}; + +unsigned char space[6] = {1, 2, 3, 4, 5, 6}; + +int +foo (struct container *p) +{ + return p->data[4]; +} + +int +main () +{ + if (foo ((struct container *) space) != 5) + abort (); + return 0; +} Index: gcc/testsuite/gcc.c-torture/execute/pr35472.c =================================================================== --- gcc/testsuite/gcc.c-torture/execute/pr35472.c (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gcc.c-torture/execute/pr35472.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,22 @@ +extern void abort (void); +extern void *memset (void *s, int c, __SIZE_TYPE__ n); +struct S { int i[16]; }; +struct S *p; +void __attribute__((noinline)) +foo(struct S *a, struct S *b) { a->i[0] = -1; p = b; } +void test (void) +{ + struct S a, b; + memset (&a.i[0], '\0', sizeof (a.i)); + memset (&b.i[0], '\0', sizeof (b.i)); + foo (&a, &b); + *p = a; + *p = b; + if (b.i[0] != -1) + abort (); +} +int main() +{ + test(); + return 0; +} Index: gcc/testsuite/gcc.c-torture/execute/pr35456.c =================================================================== --- gcc/testsuite/gcc.c-torture/execute/pr35456.c (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gcc.c-torture/execute/pr35456.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,21 @@ +extern void abort (void); + +double +__attribute__ ((noinline)) +not_fabs (double x) +{ + return x >= 0.0 ? x : -x; +} + +int main() +{ + double x = -0.0; + double y; + + y = not_fabs (x); + + if (!__builtin_signbit (y)) + abort(); + + return 0; +} Index: gcc/testsuite/gcc.target/i386/ssse3-phsubw.c =================================================================== --- gcc/testsuite/gcc.target/i386/ssse3-phsubw.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/gcc.target/i386/ssse3-phsubw.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,6 +1,6 @@ /* { dg-do run } */ /* { dg-require-effective-target ssse3 } */ -/* { dg-options "-O2 -mssse3" } */ +/* { dg-options "-O2 -fno-strict-aliasing -mssse3" } */ #include "ssse3-check.h" #include "ssse3-vals.h" Index: gcc/testsuite/gcc.target/i386/sse-14.c =================================================================== --- gcc/testsuite/gcc.target/i386/sse-14.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/gcc.target/i386/sse-14.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -3,10 +3,10 @@ /* Test that the intrinsics compile without optimization. All of them are defined as inline functions in {,x,e,p,t,s,a,b}mmintrin.h and mm3dnow.h - that reference the proper builtin functions. Defining away "static" and + that reference the proper builtin functions. Defining away "extern" and "__inline" results in all of them being compiled as proper functions. */ -#define static +#define extern #define __inline #include Index: gcc/testsuite/gcc.target/i386/ssse3-phaddd.c =================================================================== --- gcc/testsuite/gcc.target/i386/ssse3-phaddd.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/gcc.target/i386/ssse3-phaddd.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,6 +1,6 @@ /* { dg-do run } */ /* { dg-require-effective-target ssse3 } */ -/* { dg-options "-O2 -mssse3" } */ +/* { dg-options "-O2 -fno-strict-aliasing -mssse3" } */ #include "ssse3-check.h" #include "ssse3-vals.h" Index: gcc/testsuite/gcc.target/i386/ssse3-pabsb.c =================================================================== --- gcc/testsuite/gcc.target/i386/ssse3-pabsb.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/gcc.target/i386/ssse3-pabsb.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,6 +1,6 @@ /* { dg-do run } */ /* { dg-require-effective-target ssse3 } */ -/* { dg-options "-O2 -mssse3" } */ +/* { dg-options "-O2 -fno-strict-aliasing -mssse3" } */ #include "ssse3-check.h" #include "ssse3-vals.h" Index: gcc/testsuite/gcc.target/i386/isa-1.c =================================================================== --- gcc/testsuite/gcc.target/i386/isa-1.c (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gcc.target/i386/isa-1.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,34 @@ +/* { dg-do run } */ +/* { dg-options "-march=x86-64 -msse4" } */ + +extern void abort (void); + +int +main () +{ +#if !defined __SSE__ + abort (); +#endif +#if !defined __SSE2__ + abort (); +#endif +#if !defined __SSE3__ + abort (); +#endif +#if !defined __SSSE3__ + abort (); +#endif +#if !defined __SSE4_1__ + abort (); +#endif +#if !defined __SSE4_2__ + abort (); +#endif +#if defined __SSE4A__ + abort (); +#endif +#if defined __SSE5__ + abort (); +#endif + return 0; +} Index: gcc/testsuite/gcc.target/i386/ssse3-psignb.c =================================================================== --- gcc/testsuite/gcc.target/i386/ssse3-psignb.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/gcc.target/i386/ssse3-psignb.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,6 +1,6 @@ /* { dg-do run } */ /* { dg-require-effective-target ssse3 } */ -/* { dg-options "-O2 -mssse3" } */ +/* { dg-options "-O2 -fno-strict-aliasing -mssse3" } */ #include "ssse3-check.h" #include "ssse3-vals.h" Index: gcc/testsuite/gcc.target/i386/isa-9.c =================================================================== --- gcc/testsuite/gcc.target/i386/isa-9.c (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gcc.target/i386/isa-9.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,34 @@ +/* { dg-do run } */ +/* { dg-options "-march=amdfam10 -mno-sse5" } */ + +extern void abort (void); + +int +main () +{ +#if !defined __SSE__ + abort (); +#endif +#if !defined __SSE2__ + abort (); +#endif +#if !defined __SSE3__ + abort (); +#endif +#if defined __SSSE3__ + abort (); +#endif +#if defined __SSE4_1__ + abort (); +#endif +#if defined __SSE4_2__ + abort (); +#endif +#if !defined __SSE4A__ + abort (); +#endif +#if defined __SSE5__ + abort (); +#endif + return 0; +} Index: gcc/testsuite/gcc.target/i386/isa-12.c =================================================================== --- gcc/testsuite/gcc.target/i386/isa-12.c (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gcc.target/i386/isa-12.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,34 @@ +/* { dg-do run } */ +/* { dg-options "-march=x86-64 -msse5 -mno-sse3" } */ + +extern void abort (void); + +int +main () +{ +#if !defined __SSE__ + abort (); +#endif +#if !defined __SSE2__ + abort (); +#endif +#if defined __SSE3__ + abort (); +#endif +#if defined __SSSE3__ + abort (); +#endif +#if defined __SSE4_1__ + abort (); +#endif +#if defined __SSE4_2__ + abort (); +#endif +#if defined __SSE4A__ + abort (); +#endif +#if defined __SSE5__ + abort (); +#endif + return 0; +} Index: gcc/testsuite/gcc.target/i386/ssse3-phaddsw.c =================================================================== --- gcc/testsuite/gcc.target/i386/ssse3-phaddsw.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/gcc.target/i386/ssse3-phaddsw.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,6 +1,6 @@ /* { dg-do run } */ /* { dg-require-effective-target ssse3 } */ -/* { dg-options "-O2 -mssse3" } */ +/* { dg-options "-O2 -fno-strict-aliasing -mssse3" } */ #include "ssse3-check.h" #include "ssse3-vals.h" Index: gcc/testsuite/gcc.target/i386/isa-2.c =================================================================== --- gcc/testsuite/gcc.target/i386/isa-2.c (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gcc.target/i386/isa-2.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,34 @@ +/* { dg-do run } */ +/* { dg-options "-march=x86-64 -msse4 -msse5" } */ + +extern void abort (void); + +int +main () +{ +#if !defined __SSE__ + abort (); +#endif +#if !defined __SSE2__ + abort (); +#endif +#if !defined __SSE3__ + abort (); +#endif +#if !defined __SSSE3__ + abort (); +#endif +#if !defined __SSE4_1__ + abort (); +#endif +#if !defined __SSE4_2__ + abort (); +#endif +#if !defined __SSE4A__ + abort (); +#endif +#if !defined __SSE5__ + abort (); +#endif + return 0; +} Index: gcc/testsuite/gcc.target/i386/isa-13.c =================================================================== --- gcc/testsuite/gcc.target/i386/isa-13.c (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gcc.target/i386/isa-13.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,34 @@ +/* { dg-do run } */ +/* { dg-options "-march=x86-64 -msse5 -mno-sse2" } */ + +extern void abort (void); + +int +main () +{ +#if !defined __SSE__ + abort (); +#endif +#if defined __SSE2__ + abort (); +#endif +#if defined __SSE3__ + abort (); +#endif +#if defined __SSSE3__ + abort (); +#endif +#if defined __SSE4_1__ + abort (); +#endif +#if defined __SSE4_2__ + abort (); +#endif +#if defined __SSE4A__ + abort (); +#endif +#if defined __SSE5__ + abort (); +#endif + return 0; +} Index: gcc/testsuite/gcc.target/i386/ssse3-pabsd.c =================================================================== --- gcc/testsuite/gcc.target/i386/ssse3-pabsd.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/gcc.target/i386/ssse3-pabsd.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,6 +1,6 @@ /* { dg-do run } */ /* { dg-require-effective-target ssse3 } */ -/* { dg-options "-O2 -mssse3" } */ +/* { dg-options "-O2 -fno-strict-aliasing -mssse3" } */ #include "ssse3-check.h" #include "ssse3-vals.h" Index: gcc/testsuite/gcc.target/i386/isa-3.c =================================================================== --- gcc/testsuite/gcc.target/i386/isa-3.c (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gcc.target/i386/isa-3.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,34 @@ +/* { dg-do run } */ +/* { dg-options "-march=x86-64 -msse4 -msse5 -msse4a" } */ + +extern void abort (void); + +int +main () +{ +#if !defined __SSE__ + abort (); +#endif +#if !defined __SSE2__ + abort (); +#endif +#if !defined __SSE3__ + abort (); +#endif +#if !defined __SSSE3__ + abort (); +#endif +#if !defined __SSE4_1__ + abort (); +#endif +#if !defined __SSE4_2__ + abort (); +#endif +#if !defined __SSE4A__ + abort (); +#endif +#if !defined __SSE5__ + abort (); +#endif + return 0; +} Index: gcc/testsuite/gcc.target/i386/ssse3-psignd.c =================================================================== --- gcc/testsuite/gcc.target/i386/ssse3-psignd.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/gcc.target/i386/ssse3-psignd.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,6 +1,6 @@ /* { dg-do run } */ /* { dg-require-effective-target ssse3 } */ -/* { dg-options "-O2 -mssse3" } */ +/* { dg-options "-O2 -fno-strict-aliasing -mssse3" } */ #include "ssse3-check.h" #include "ssse3-vals.h" Index: gcc/testsuite/gcc.target/i386/ssse3-pmaddubsw.c =================================================================== --- gcc/testsuite/gcc.target/i386/ssse3-pmaddubsw.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/gcc.target/i386/ssse3-pmaddubsw.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,6 +1,6 @@ /* { dg-do run } */ /* { dg-require-effective-target ssse3 } */ -/* { dg-options "-O2 -mssse3" } */ +/* { dg-options "-O2 -fno-strict-aliasing -mssse3" } */ #include "ssse3-check.h" #include "ssse3-vals.h" Index: gcc/testsuite/gcc.target/i386/isa-14.c =================================================================== --- gcc/testsuite/gcc.target/i386/isa-14.c (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gcc.target/i386/isa-14.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,34 @@ +/* { dg-do run } */ +/* { dg-options "-march=x86-64 -msse5 -mno-sse" } */ + +extern void abort (void); + +int +main () +{ +#if defined __SSE__ + abort (); +#endif +#if defined __SSE2__ + abort (); +#endif +#if defined __SSE3__ + abort (); +#endif +#if defined __SSSE3__ + abort (); +#endif +#if defined __SSE4_1__ + abort (); +#endif +#if defined __SSE4_2__ + abort (); +#endif +#if defined __SSE4A__ + abort (); +#endif +#if defined __SSE5__ + abort (); +#endif + return 0; +} Index: gcc/testsuite/gcc.target/i386/ssse3-pmulhrsw.c =================================================================== --- gcc/testsuite/gcc.target/i386/ssse3-pmulhrsw.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/gcc.target/i386/ssse3-pmulhrsw.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,6 +1,6 @@ /* { dg-do run } */ /* { dg-require-effective-target ssse3 } */ -/* { dg-options "-O2 -mssse3" } */ +/* { dg-options "-O2 -fno-strict-aliasing -mssse3" } */ #include "ssse3-check.h" #include "ssse3-vals.h" Index: gcc/testsuite/gcc.target/i386/ssse3-phaddw.c =================================================================== --- gcc/testsuite/gcc.target/i386/ssse3-phaddw.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/gcc.target/i386/ssse3-phaddw.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,6 +1,6 @@ /* { dg-do run } */ /* { dg-require-effective-target ssse3 } */ -/* { dg-options "-O2 -mssse3" } */ +/* { dg-options "-O2 -fno-strict-aliasing -mssse3" } */ #include "ssse3-check.h" #include "ssse3-vals.h" Index: gcc/testsuite/gcc.target/i386/isa-4.c =================================================================== --- gcc/testsuite/gcc.target/i386/isa-4.c (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gcc.target/i386/isa-4.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,34 @@ +/* { dg-do run } */ +/* { dg-options "-march=core2 -msse5 -mno-sse4" } */ + +extern void abort (void); + +int +main () +{ +#if !defined __SSE__ + abort (); +#endif +#if !defined __SSE2__ + abort (); +#endif +#if !defined __SSE3__ + abort (); +#endif +#if !defined __SSSE3__ + abort (); +#endif +#if defined __SSE4_1__ + abort (); +#endif +#if defined __SSE4_2__ + abort (); +#endif +#if !defined __SSE4A__ + abort (); +#endif +#if !defined __SSE5__ + abort (); +#endif + return 0; +} Index: gcc/testsuite/gcc.target/i386/mmx-1.c =================================================================== --- gcc/testsuite/gcc.target/i386/mmx-1.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/gcc.target/i386/mmx-1.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -3,10 +3,10 @@ /* Test that the intrinsics compile with optimization. All of them are defined as inline functions in mmintrin.h that reference the proper - builtin functions. Defining away "static" and "__inline" results in + builtin functions. Defining away "extern" and "__inline" results in all of them being compiled as proper functions. */ -#define static +#define extern #define __inline #include Index: gcc/testsuite/gcc.target/i386/isa-5.c =================================================================== --- gcc/testsuite/gcc.target/i386/isa-5.c (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gcc.target/i386/isa-5.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,34 @@ +/* { dg-do run } */ +/* { dg-options "-march=core2 -msse4a -mno-sse4" } */ + +extern void abort (void); + +int +main () +{ +#if !defined __SSE__ + abort (); +#endif +#if !defined __SSE2__ + abort (); +#endif +#if !defined __SSE3__ + abort (); +#endif +#if !defined __SSSE3__ + abort (); +#endif +#if defined __SSE4_1__ + abort (); +#endif +#if defined __SSE4_2__ + abort (); +#endif +#if !defined __SSE4A__ + abort (); +#endif +#if defined __SSE5__ + abort (); +#endif + return 0; +} Index: gcc/testsuite/gcc.target/i386/ssse3-phsubd.c =================================================================== --- gcc/testsuite/gcc.target/i386/ssse3-phsubd.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/gcc.target/i386/ssse3-phsubd.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,6 +1,6 @@ /* { dg-do run } */ /* { dg-require-effective-target ssse3 } */ -/* { dg-options "-O2 -mssse3" } */ +/* { dg-options "-O2 -fno-strict-aliasing -mssse3" } */ #include "ssse3-check.h" #include "ssse3-vals.h" Index: gcc/testsuite/gcc.target/i386/mmx-2.c =================================================================== --- gcc/testsuite/gcc.target/i386/mmx-2.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/gcc.target/i386/mmx-2.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -3,10 +3,10 @@ /* Test that the intrinsics compile without optimization. All of them are defined as inline functions in mmintrin.h that reference the proper - builtin functions. Defining away "static" and "__inline" results in + builtin functions. Defining away "extern" and "__inline" results in all of them being compiled as proper functions. */ -#define static +#define extern #define __inline #include Index: gcc/testsuite/gcc.target/i386/pr35540.c =================================================================== --- gcc/testsuite/gcc.target/i386/pr35540.c (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gcc.target/i386/pr35540.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,45 @@ +/* { dg-do run } */ +/* { dg-options "-O2" } */ + +extern void abort (void); + +int __attribute__ ((noinline)) +test (unsigned int *a, int b) +{ + return b ? 1 : __builtin_parity (*a); +} + +int __attribute__ ((noinline)) +testl (unsigned long *a, int b) +{ + return b ? 1 : __builtin_parityl (*a); +} + +int __attribute__ ((noinline)) +testll (unsigned long long *a, int b) +{ + return b ? 1 : __builtin_parityll (*a); +} + +int +main () +{ + unsigned int a = 0; + unsigned long al; + unsigned long long all; + + a = 0x12345670; + if (test (&a, 0)) + abort (); + + al = 0x12345670ul; + if (testl (&al, 0)) + abort(); + +#if 1 + all = 0x12345678abcdef0ull; + if (testll (&all, 0)) + abort (); +#endif + return 0; +} Index: gcc/testsuite/gcc.target/i386/ssse3-pabsw.c =================================================================== --- gcc/testsuite/gcc.target/i386/ssse3-pabsw.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/gcc.target/i386/ssse3-pabsw.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,6 +1,6 @@ /* { dg-do run } */ /* { dg-require-effective-target ssse3 } */ -/* { dg-options "-O2 -mssse3" } */ +/* { dg-options "-O2 -fno-strict-aliasing -mssse3" } */ #include "ssse3-check.h" #include "ssse3-vals.h" Index: gcc/testsuite/gcc.target/i386/isa-6.c =================================================================== --- gcc/testsuite/gcc.target/i386/isa-6.c (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gcc.target/i386/isa-6.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,34 @@ +/* { dg-do run } */ +/* { dg-options "-march=amdfam10 -mno-sse4" } */ + +extern void abort (void); + +int +main () +{ +#if !defined __SSE__ + abort (); +#endif +#if !defined __SSE2__ + abort (); +#endif +#if !defined __SSE3__ + abort (); +#endif +#if defined __SSSE3__ + abort (); +#endif +#if defined __SSE4_1__ + abort (); +#endif +#if defined __SSE4_2__ + abort (); +#endif +#if !defined __SSE4A__ + abort (); +#endif +#if defined __SSE5__ + abort (); +#endif + return 0; +} Index: gcc/testsuite/gcc.target/i386/ssse3-psignw.c =================================================================== --- gcc/testsuite/gcc.target/i386/ssse3-psignw.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/gcc.target/i386/ssse3-psignw.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,6 +1,6 @@ /* { dg-do run } */ /* { dg-require-effective-target ssse3 } */ -/* { dg-options "-O2 -mssse3" } */ +/* { dg-options "-O2 -fno-strict-aliasing -mssse3" } */ #include "ssse3-check.h" #include "ssse3-vals.h" Index: gcc/testsuite/gcc.target/i386/ssse3-pshufb.c =================================================================== --- gcc/testsuite/gcc.target/i386/ssse3-pshufb.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/gcc.target/i386/ssse3-pshufb.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,6 +1,6 @@ /* { dg-do run } */ /* { dg-require-effective-target ssse3 } */ -/* { dg-options "-O2 -mssse3" } */ +/* { dg-options "-O2 -fno-strict-aliasing -mssse3" } */ #include "ssse3-check.h" #include "ssse3-vals.h" Index: gcc/testsuite/gcc.target/i386/3dnow-1.c =================================================================== --- gcc/testsuite/gcc.target/i386/3dnow-1.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/gcc.target/i386/3dnow-1.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -3,10 +3,10 @@ /* Test that the intrinsics compile with optimization. All of them are defined as inline functions in mmintrin.h that reference the proper - builtin functions. Defining away "static" and "__inline" results in + builtin functions. Defining away "extern" and "__inline" results in all of them being compiled as proper functions. */ -#define static +#define extern #define __inline #include Index: gcc/testsuite/gcc.target/i386/ssse3-phsubsw.c =================================================================== --- gcc/testsuite/gcc.target/i386/ssse3-phsubsw.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/gcc.target/i386/ssse3-phsubsw.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,6 +1,6 @@ /* { dg-do run } */ /* { dg-require-effective-target ssse3 } */ -/* { dg-options "-O2 -mssse3" } */ +/* { dg-options "-O2 -fno-strict-aliasing -mssse3" } */ #include "ssse3-check.h" #include "ssse3-vals.h" Index: gcc/testsuite/gcc.target/i386/isa-7.c =================================================================== --- gcc/testsuite/gcc.target/i386/isa-7.c (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gcc.target/i386/isa-7.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,34 @@ +/* { dg-do run } */ +/* { dg-options "-march=amdfam10 -msse5 -mno-sse4" } */ + +extern void abort (void); + +int +main () +{ +#if !defined __SSE__ + abort (); +#endif +#if !defined __SSE2__ + abort (); +#endif +#if !defined __SSE3__ + abort (); +#endif +#if defined __SSSE3__ + abort (); +#endif +#if defined __SSE4_1__ + abort (); +#endif +#if defined __SSE4_2__ + abort (); +#endif +#if !defined __SSE4A__ + abort (); +#endif +#if !defined __SSE5__ + abort (); +#endif + return 0; +} Index: gcc/testsuite/gcc.target/i386/3dnowA-1.c =================================================================== --- gcc/testsuite/gcc.target/i386/3dnowA-1.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/gcc.target/i386/3dnowA-1.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,13 +1,12 @@ /* { dg-do assemble } */ -/* { dg-require-effective-target ilp32 } */ -/* { dg-options "-O2 -Werror-implicit-function-declaration -m3dnow -march=athlon" } */ +/* { dg-options "-O2 -Werror-implicit-function-declaration -march=k8 -m3dnow" } */ /* Test that the intrinsics compile with optimization. All of them are defined as inline functions in mmintrin.h that reference the proper - builtin functions. Defining away "static" and "__inline" results in + builtin functions. Defining away "extern" and "__inline" results in all of them being compiled as proper functions. */ -#define static +#define extern #define __inline #include Index: gcc/testsuite/gcc.target/i386/isa-10.c =================================================================== --- gcc/testsuite/gcc.target/i386/isa-10.c (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gcc.target/i386/isa-10.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,34 @@ +/* { dg-do run } */ +/* { dg-options "-march=x86-64 -msse5 -mno-sse4" } */ + +extern void abort (void); + +int +main () +{ +#if !defined __SSE__ + abort (); +#endif +#if !defined __SSE2__ + abort (); +#endif +#if !defined __SSE3__ + abort (); +#endif +#if defined __SSSE3__ + abort (); +#endif +#if defined __SSE4_1__ + abort (); +#endif +#if defined __SSE4_2__ + abort (); +#endif +#if !defined __SSE4A__ + abort (); +#endif +#if !defined __SSE5__ + abort (); +#endif + return 0; +} Index: gcc/testsuite/gcc.target/i386/sse-13.c =================================================================== --- gcc/testsuite/gcc.target/i386/sse-13.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/gcc.target/i386/sse-13.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -3,10 +3,10 @@ /* Test that the intrinsics compile with optimization. All of them are defined as inline functions in {,x,e,p,t,s,a,b}mmintrin.h and mm3dnow.h - that reference the proper builtin functions. Defining away "static" and + that reference the proper builtin functions. Defining away "extern" and "__inline" results in all of them being compiled as proper functions. */ -#define static +#define extern #define __inline /* Following intrinsics require immediate arguments. */ Index: gcc/testsuite/gcc.target/i386/3dnow-2.c =================================================================== --- gcc/testsuite/gcc.target/i386/3dnow-2.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/gcc.target/i386/3dnow-2.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -3,10 +3,10 @@ /* Test that the intrinsics compile without optimization. All of them are defined as inline functions in mmintrin.h that reference the proper - builtin functions. Defining away "static" and "__inline" results in + builtin functions. Defining away "extern" and "__inline" results in all of them being compiled as proper functions. */ -#define static +#define extern #define __inline #include Index: gcc/testsuite/gcc.target/i386/isa-8.c =================================================================== --- gcc/testsuite/gcc.target/i386/isa-8.c (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gcc.target/i386/isa-8.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,34 @@ +/* { dg-do run } */ +/* { dg-options "-march=amdfam10 -msse5 -mno-sse4a" } */ + +extern void abort (void); + +int +main () +{ +#if !defined __SSE__ + abort (); +#endif +#if !defined __SSE2__ + abort (); +#endif +#if !defined __SSE3__ + abort (); +#endif +#if defined __SSSE3__ + abort (); +#endif +#if defined __SSE4_1__ + abort (); +#endif +#if defined __SSE4_2__ + abort (); +#endif +#if defined __SSE4A__ + abort (); +#endif +#if defined __SSE5__ + abort (); +#endif + return 0; +} Index: gcc/testsuite/gcc.target/i386/3dnowA-2.c =================================================================== --- gcc/testsuite/gcc.target/i386/3dnowA-2.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/gcc.target/i386/3dnowA-2.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,13 +1,12 @@ /* { dg-do assemble } */ -/* { dg-require-effective-target ilp32 } */ -/* { dg-options "-O0 -Werror-implicit-function-declaration -m3dnow -march=athlon" } */ +/* { dg-options "-O0 -Werror-implicit-function-declaration -march=k8 -m3dnow" } */ /* Test that the intrinsics compile without optimization. All of them are defined as inline functions in mmintrin.h that reference the proper - builtin functions. Defining away "static" and "__inline" results in + builtin functions. Defining away "extern" and "__inline" results in all of them being compiled as proper functions. */ -#define static +#define extern #define __inline #include Index: gcc/testsuite/gcc.target/i386/ssse3-palignr.c =================================================================== --- gcc/testsuite/gcc.target/i386/ssse3-palignr.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/gcc.target/i386/ssse3-palignr.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,6 +1,6 @@ /* { dg-do run } */ /* { dg-require-effective-target ssse3 } */ -/* { dg-options "-O2 -mssse3" } */ +/* { dg-options "-O2 -fno-strict-aliasing -mssse3" } */ #include "ssse3-check.h" #include "ssse3-vals.h" Index: gcc/testsuite/gcc.target/i386/isa-11.c =================================================================== --- gcc/testsuite/gcc.target/i386/isa-11.c (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gcc.target/i386/isa-11.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,34 @@ +/* { dg-do run } */ +/* { dg-options "-march=x86-64 -msse5 -mno-ssse3" } */ + +extern void abort (void); + +int +main () +{ +#if !defined __SSE__ + abort (); +#endif +#if !defined __SSE2__ + abort (); +#endif +#if !defined __SSE3__ + abort (); +#endif +#if defined __SSSE3__ + abort (); +#endif +#if defined __SSE4_1__ + abort (); +#endif +#if defined __SSE4_2__ + abort (); +#endif +#if !defined __SSE4A__ + abort (); +#endif +#if !defined __SSE5__ + abort (); +#endif + return 0; +} Index: gcc/testsuite/gnat.dg/frame_overflow.adb =================================================================== --- gcc/testsuite/gnat.dg/frame_overflow.adb (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/gnat.dg/frame_overflow.adb (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,15 +1,17 @@ -- { dg-do compile } +with System; + procedure frame_overflow is - type Bitpos_Range_T is new Positive; + type Bitpos_Range_T is range 1..2**(System.Word_Size-1)-1; type Bitmap_Array_T is array (Bitpos_Range_T) of Boolean; type Bitmap_T is record Bits : Bitmap_Array_T := (others => False); end record; - function -- { dg-error "too large" "" } + function -- { dg-error "too large" } Set_In (Bitmap : Bitmap_T; Bitpos : Bitpos_Range_T) return Bitmap_T is Result: Bitmap_T := Bitmap; @@ -18,7 +20,7 @@ return Result; end; - function -- { dg-error "too large" "" } + function -- { dg-error "too large" } Negate (Bitmap : Bitmap_T) return Bitmap_T is Result: Bitmap_T; begin Index: gcc/testsuite/gnat.dg/object_overflow.adb =================================================================== --- gcc/testsuite/gnat.dg/object_overflow.adb (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gnat.dg/object_overflow.adb (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,14 @@ +-- { dg-do compile } + +procedure Object_Overflow is + + type Rec is null record; + + procedure Proc (x : Rec) is begin null; end; + + type Arr is array(Long_Integer) of Rec; + Obj : Arr; -- { dg-warning "Storage_Error will be raised" } + +begin + Proc (Obj(1)); +end; Index: gcc/testsuite/gcc.dg/pr34989-1.c =================================================================== --- gcc/testsuite/gcc.dg/pr34989-1.c (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gcc.dg/pr34989-1.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,10 @@ +/* { dg-do compile } */ +/* { dg-options "--combine -O2" } */ +/* { dg-additional-sources "pr34989-2.c" } */ + +extern struct globals *const ptr_to_globals; +struct globals { }; +int syslogd_main(int argc, char **argv) +{ + (*(struct globals**)&ptr_to_globals) = 0; +} Index: gcc/testsuite/gcc.dg/gomp/pr34692.c =================================================================== --- gcc/testsuite/gcc.dg/gomp/pr34692.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/gcc.dg/gomp/pr34692.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -24,3 +24,5 @@ cde f g h); } } + +/* { dg-final { cleanup-tree-dump "gimple" } } */ Index: gcc/testsuite/gcc.dg/gomp/pr35439.c =================================================================== --- gcc/testsuite/gcc.dg/gomp/pr35439.c (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gcc.dg/gomp/pr35439.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,6 @@ +/* PR c/35439 */ +/* { dg-do compile } */ +/* { dg-options "-fopenmp" } */ + +void x[1]; /* { dg-error "array of voids" } */ +#pragma omp threadprivate(x) Index: gcc/testsuite/gcc.dg/gomp/pr35244.c =================================================================== --- gcc/testsuite/gcc.dg/gomp/pr35244.c (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gcc.dg/gomp/pr35244.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,20 @@ +/* PR c++/35244 */ +/* { dg-do compile } */ +/* { dg-require-effective-target tls_native } */ +/* { dg-options "-fopenmp" } */ + +int v1; +typedef struct A A; +typedef int i; +#pragma omp threadprivate (i) /* { dg-error "expected identifier before" } */ +#pragma omp threadprivate (A) /* { dg-error "expected identifier before" } */ +#pragma omp threadprivate (v1) + +void foo () +{ + static int v4; + { + static int v5; +#pragma omp threadprivate (v4, v5) + } +} Index: gcc/testsuite/gcc.dg/gomp/pr35438.c =================================================================== --- gcc/testsuite/gcc.dg/gomp/pr35438.c (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gcc.dg/gomp/pr35438.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,6 @@ +/* PR c/35438 */ +/* { dg-do compile } */ +/* { dg-options "-fopenmp" } */ + +void foo (); +#pragma omp threadprivate(foo) /* { dg-error "is not a variable" } */ Index: gcc/testsuite/gcc.dg/gomp/pr34964.c =================================================================== --- gcc/testsuite/gcc.dg/gomp/pr34964.c (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gcc.dg/gomp/pr34964.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,6 @@ +/* PR c++/34964 */ +/* { dg-do compile } */ +/* { dg-options "-fopenmp" } */ + +char x[] = 0; /* { dg-error "invalid initializer" } */ +#pragma omp threadprivate (x) Index: gcc/testsuite/gcc.dg/uninit-16.c =================================================================== --- gcc/testsuite/gcc.dg/uninit-16.c (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gcc.dg/uninit-16.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,23 @@ +/* { dg-do compile } */ +/* { dg-options "-O2 -Wuninitialized" } */ + +int foo, bar; + +static +void decode_reloc(int reloc, int *is_alt) +{ + if (reloc >= 20) + *is_alt = 1; + else if (reloc >= 10) + *is_alt = 0; +} + +void testfunc() +{ + int alt_reloc; + + decode_reloc(foo, &alt_reloc); + + if (alt_reloc) /* { dg-warning "may be used uninitialized" } */ + bar = 42; +} Index: gcc/testsuite/gcc.dg/pr34989-2.c =================================================================== --- gcc/testsuite/gcc.dg/pr34989-2.c (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gcc.dg/pr34989-2.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,3 @@ +/* { dg-do compile } */ + +extern struct globals *const ptr_to_globals; Index: gcc/testsuite/gcc.dg/uninit-15.c =================================================================== --- gcc/testsuite/gcc.dg/uninit-15.c (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gcc.dg/uninit-15.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,17 @@ +/* { dg-do compile } */ +/* { dg-options "-O -Wuninitialized" } */ + +inline int foo (int i) +{ + if (i) return 1; /* { dg-warning "is used uninitialized" } */ + return 0; +} + +void baz(); + +void bar() +{ + int j; /* { dg-message "was declared here" } */ + for (; foo(j); ++j) + baz(); +} Index: gcc/testsuite/gcc.dg/pr35616.c =================================================================== --- gcc/testsuite/gcc.dg/pr35616.c (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gcc.dg/pr35616.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,43 @@ +/* { dg-do run } */ +/* { dg-options "-O2" } */ +typedef void (*listener_fun)( + int a, + int b, + int c); + +struct data_t +{ + int a; + + listener_fun listener; + + int b; + int c; + int d; +}; + +extern void abort(void); +void function_calling_listener (struct data_t data); + +void function_calling_listener (struct data_t data) +{ + data.listener(data.a, data.c, data.d); +} + +void my_listener(int a, int b, int c) +{ + if (a != 42 || b != 44 || c != 45) + abort (); +} + +int main() +{ + struct data_t d; + d.a = 42; + d.b = 43; + d.c = 44; + d.d = 45; + d.listener = my_listener; + function_calling_listener (d); + return 0; +} Index: gcc/testsuite/gcc.dg/pr35258.c =================================================================== --- gcc/testsuite/gcc.dg/pr35258.c (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gcc.dg/pr35258.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,28 @@ +/* { dg-do run } */ +/* { dg-options "-O1" } */ + +extern void *memcpy (void *, const void *, __SIZE_TYPE__); +extern int memcmp (const void *, const void *, __SIZE_TYPE__); +extern void abort(void); + +char str[9] = "1234"; + +void +bar (void) +{ + unsigned int temp; + char *p = &str[2]; + + memcpy (&temp, &str[1], 4); + memcpy (p, &temp, 4); + str[1] = '.'; +} + +int main() +{ + bar(); + if (memcmp (str, "1.234", 5) != 0) + abort (); + + return 0; +} Index: gcc/testsuite/gcc.dg/vect/vect.exp =================================================================== --- gcc/testsuite/gcc.dg/vect/vect.exp (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/gcc.dg/vect/vect.exp (.../branches/gcc-4_3-branch) (revision 133808) @@ -63,7 +63,11 @@ set dg-do-what-default run } elseif { [istarget "i?86-*-*"] || [istarget "x86_64-*-*"] } { lappend DEFAULT_VECTCFLAGS "-msse2" - set dg-do-what-default run + if [check_sse2_hw_available] { + set dg-do-what-default run + } else { + set dg-do-what-default compile + } } elseif { [istarget "mips*-*-*"] && [check_effective_target_mpaired_single] && [check_effective_target_nomips16] } { Index: gcc/testsuite/ChangeLog =================================================================== --- gcc/testsuite/ChangeLog (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/ChangeLog (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,3 +1,293 @@ +2008-03-31 Eric Botcazou + + * gnat.dg/object_overflow.adb: New test. + +2008-03-30 John David Anglin + + PR c++/35245 + * g++.dg/other/anon5.C: Skip on hppa*-*-hpux*. + +2008-03-30 Paul Thomas + + PR fortran/35740 + * gfortran.dg/transpose_conjg_1.f90: New test. + +2008-03-29 Paul Thomas + + PR fortran/35698 + * gfortran.dg/allocate_zerosize_3.f: New test. + + PR fortran/35702 + * gfortran.dg/character_assign_1.f90: New test. + +2008-03-28 Jerry DeLisle + + PR fortran/35699 + * gfortran.dg/direct_io_10.f: New test. + +2008-03-27 Jerry DeLisle + + PR fortran/35724 + * gfortran.dg/cshift_shift_real_2.f90: New test. + +2008-03-26 Kaveh R. Ghazi + + * gcc.dg/uninit-16.c (decode_reloc): Mark static. + +2008-03-26 Jakub Jelinek + + PR c++/35546 + * g++.dg/ext/attrib33.C: New test. + + PR c++/35332 + * g++.dg/other/error27.C: New test. + +2008-03-25 Richard Guenther + + Backport from mainline: + 2008-03-19 Richard Guenther + + PR middle-end/35609 + * gcc.dg/testsuite/uninit-15.c: New testcase. + * gcc.dg/testsuite/uninit-16.c: Likewise. + +2008-03-24 Paul Thomas + + PR fortran/34813 + * gfortran.dg/null_3.f90 : New test + + PR fortran/33295 + * gfortran.dg/module_function_type_1.f90 : New test + +2008-03-21 Uros Bizjak + + Backport from mainline: + 2008-03-20 Victor Kaplansky + Uros Bizjak + + PR testsuite/34168 + * lib/target-supports.exp (check_sse2_hw_available): New procedure. + * gcc.dg/vect/vect.exp: Set dg-do-what-default to "compile" + if SSE2 hardware is not available. + * g++.dg/vect/vect.exp: Update target-dependent overrides to match + gcc.dg/vect/vect.exp. + * gfortran.dg/vect/vect.exp: Ditto. + (check_effective_target_lp64_or_vect_no_align): Remove procedure. + + 2008-03-20 Uros Bizjak + + * gcc.dg/gomp/pr34692.c: Cleanup gimple dump file. + +2008-03-20 Jerry DeLisle + + Backport from trunk: + PR libfortran/35627 + * gfortran.dg/namelist_46.f90: New test. + + PR libfortran/35617 + * gfortran.dg/namelist_45.f90: New test. + +2008-03-20 H.J. Lu + + Backport from mainline: + 2008-03-20 H.J. Lu + + PR testsuite/35621 + * gcc.target/i386/ssse3-pabsb.c: Add -fno-strict-aliasing. + * gcc.target/i386/ssse3-pabsd.c: Likewise. + * gcc.target/i386/ssse3-pabsw.c: Likewise. + * gcc.target/i386/ssse3-palignr.c: Likewise. + * gcc.target/i386/ssse3-phaddd.c: Likewise. + * gcc.target/i386/ssse3-phaddsw.c: Likewise. + * gcc.target/i386/ssse3-phaddw.c: Likewise. + * gcc.target/i386/ssse3-phsubd.c: Likewise. + * gcc.target/i386/ssse3-phsubsw.c: Likewise. + * gcc.target/i386/ssse3-phsubw.c: Likewise. + * gcc.target/i386/ssse3-pmaddubsw.c: Likewise. + * gcc.target/i386/ssse3-pmulhrsw.c: Likewise. + * gcc.target/i386/ssse3-pshufb.c: Likewise. + * gcc.target/i386/ssse3-psignb.c: Likewise. + * gcc.target/i386/ssse3-psignd.c: Likewise. + * gcc.target/i386/ssse3-psignw.c: Likewise. + +2008-03-19 Michael Matz + + Backport from mainline: + 2008-03-19 Michael Matz + + PR middle-end/35616 + * gcc.dg/pr35616.c: New test. + +2008-03-19 Andreas Krebbel + + * gcc.dg/pr35258.c: New testcase. + +2008-03-18 Mikulas Patocka + + PR target/35504 + * g++.dg/other/pr35504.C: New test. + +2008-03-18 Richard Guenther + + Backport from mainline: + 2008-03-15 Richard Guenther + + PR middle-end/35593 + * g++.dg/warn/Warray-bounds-3.C: New testcase. + +2008-03-17 Jason Merrill + + PR c++/35548 + * g++.dg/init/ref16.C: New testcase. + +2008-03-14 Richard Guenther + + Backport from mainline: + 2008-02-19 Richard Guenther + + PR tree-optimization/34989 + * gcc.dg/pr34989-1.c: New testcase. + * gcc.dg/pr34989-2.c: Likewise. + +2008-03-14 Uros Bizjak + + PR target/34000 + PR target/35553 + * g++.dg/other/i386-3.C: New test. + * gcc.target/i386/sse-13.c: Redefine extern instead of static. + * gcc.target/i386/sse-14.c: Ditto. + * gcc.target/i386/mmx-1.c: Ditto. + * gcc.target/i386/mmx-2.c: Ditto. + * gcc.target/i386/3dnow-1.c: Ditto. + * gcc.target/i386/3dnow-2.c: Ditto. + * gcc.target/i386/3dnowA-1.c: Ditto. + * gcc.target/i386/3dnowA-2.c: Ditto. + +2008-03-14 Paul Thomas + + PR fortran/35474 + * gfortran.dg/module_commons_2.f90 : New test. + +2008-03-12 Uros Bizjak + + PR target/35540 + * gcc.target/i386/pr35540.c: New test. + +2008-03-11 Uros Bizjak + + * g++.dg/inherit/override-attribs.C: Require ilp32 x86 target. + +2008-03-11 Uros Bizjak + + PR middle-end/35526 + * g++.dg/torture/pr35526.C: New test. + +2008-03-10 Jakub Jelinek + + PR c++/35328 + * g++.dg/gomp/pr35328.C: New test. + + PR c++/35337 + * g++.dg/gomp/pr35337.C: New test. + + PR c/35438 + PR c/35439 + * gcc.dg/gomp/pr35438.c: New test. + * gcc.dg/gomp/pr35439.c: New test. + + PR middle-end/35099 + * g++.dg/gomp/pr35099.C: New test. + +2008-03-10 Uros Bizjak + + Backport from mainline: + 2008-03-04 Uros Bizjak + + PR middle-end/35456 + * gcc.c-torture/execute/pr35456.c: New test. + +2008-03-09 Eric Botcazou + + * gnat.dg/frame_overflow.adb: Improve portability. + +2008-03-08 H.J. Lu + + Backport from mainline: + 2008-03-08 H.J. Lu + + PR target/35350 + * gcc.target/i386/isa-1.c: Add -march=x86-64. + * gcc.target/i386/isa-2.c: Likewise. + * gcc.target/i386/isa-3.c: Likewise. + * gcc.target/i386/isa-10.c: Likewise. + * gcc.target/i386/isa-11.c: Likewise. + * gcc.target/i386/isa-12.c: Likewise. + * gcc.target/i386/isa-13.c: Likewise. + * gcc.target/i386/isa-14.c: Likewise. + +2008-03-07 Richard Guenther + + Backport from mainline: + 2008-03-05 Richard Guenther + + PR tree-optimization/35472 + * gcc.c-torture/execute/pr35472.c: New testcase. + +2008-03-06 H.J. Lu + + Backport from mainline: + 2008-02-18 H.J. Lu + + PR target/35189 + * gcc.target/i386/isa-1.c: New. + * gcc.target/i386/isa-2.c: Likewise. + * gcc.target/i386/isa-3.c: Likewise. + * gcc.target/i386/isa-4.c: Likewise. + * gcc.target/i386/isa-5.c: Likewise. + * gcc.target/i386/isa-6.c: Likewise. + * gcc.target/i386/isa-7.c: Likewise. + * gcc.target/i386/isa-8.c: Likewise. + * gcc.target/i386/isa-9.c: Likewise. + * gcc.target/i386/isa-10.c: Likewise. + * gcc.target/i386/isa-11.c: Likewise. + * gcc.target/i386/isa-12.c: Likewise. + * gcc.target/i386/isa-13.c: Likewise. + * gcc.target/i386/isa-14.c: Likewise. + +2008-03-06 Jakub Jelinek + + PR c++/35028 + * g++.dg/gomp/pr35028.C: New test. + + PR c++/34964 + PR c++/35244 + * gcc.dg/gomp/pr34964.c: New test. + * g++.dg/gomp/pr34964.C: New test. + * gcc.dg/gomp/pr35244.c: New test. + * g++.dg/gomp/pr35244.C: New test. + + PR c++/35078 + * g++.dg/gomp/pr35078.C: New test. + +2008-03-06 Daniel Jacobowitz + + * gcc.c-torture/execute/20080222-1.c: New test. + +2008-03-06 Paolo Carlini + + PR c++/35323 + * g++.dg/lookup/crash7.C: New. + +2008-03-06 Paolo Carlini + + PR c++/35333 + * g++.dg/other/error26.C: New. + +2008-03-06 Paolo Carlini + + PR c++/35338 + * g++.dg/other/error25.C: New. + 2008-03-05 Release Manager * GCC 4.3.0 released. Index: gcc/testsuite/g++.dg/other/i386-3.C =================================================================== --- gcc/testsuite/g++.dg/other/i386-3.C (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/g++.dg/other/i386-3.C (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,8 @@ +/* Test that {,x,e,p,t,s,a,b}mmintrin.h, mm3dnow.h and mm_malloc.h are + usable with -O -fkeep-inline-functions. */ +/* { dg-do compile { target i?86-*-* x86_64-*-* } } */ +/* { dg-options "-O -fkeep-inline-functions -march=k8 -m3dnow -msse4 -msse5" } */ + +#include +#include +#include Index: gcc/testsuite/g++.dg/other/error25.C =================================================================== --- gcc/testsuite/g++.dg/other/error25.C (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/g++.dg/other/error25.C (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,5 @@ +// PR c++/35338 +// { dg-options "" } + +int i = 0r; // { dg-error "unnamed-fixed" } +bool b = !0r; // { dg-error "0.0|argument" } Index: gcc/testsuite/g++.dg/other/anon5.C =================================================================== --- gcc/testsuite/g++.dg/other/anon5.C (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/g++.dg/other/anon5.C (.../branches/gcc-4_3-branch) (revision 133808) @@ -4,7 +4,7 @@ // problem is that mips*-elf tests run from KSEG0 (which is in the upper // half of the address range), and the linker compares sign-extended // addresses from .debug_aranges with unextended addresses. -// { dg-do link { target { ! mips*-*-elf* } } } +// { dg-do link { target { ! { hppa*-*-hpux* mips*-*-elf* } } } } // { dg-options "-g" } namespace { Index: gcc/testsuite/g++.dg/other/error26.C =================================================================== --- gcc/testsuite/g++.dg/other/error26.C (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/g++.dg/other/error26.C (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,6 @@ +// PR c++/35333 + +void foo(__complex__ double x) +{ + __builtin_conj(x)(); // { dg-error "~x" } +} Index: gcc/testsuite/g++.dg/other/pr35504.C =================================================================== --- gcc/testsuite/g++.dg/other/pr35504.C (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/g++.dg/other/pr35504.C (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,147 @@ +// { dg-do run { target { { i?86-*-* x86_64-*-* } && ilp32 } } } + +#define ATTR0 __attribute__((__regparm__(0))) +#define ATTR1 __attribute__((__regparm__(1))) +#define ATTR2 __attribute__((__regparm__(2))) +#define ATTR3 __attribute__((__regparm__(3))) +#define ATTR4 __attribute__((__fastcall__)) +#define ATTR5 __attribute__((__stdcall__)) +#define ATTR6 __attribute__((__cdecl__)) +#define ATTR7 + +extern "C" void abort (void); + +struct long_struct +{ + int a[3]; +}; + +struct long_struct ret; + +class c3 *this3; + +class c1 +{ + int val1; +public: + virtual void foo () { } +}; + +class c2 +{ +public: + virtual ATTR0 struct long_struct method0 () + { + return ret; + } + + virtual ATTR1 struct long_struct method1 () + { + return ret; + } + + virtual ATTR2 struct long_struct method2 () + { + return ret; + } + + virtual ATTR3 struct long_struct method3 () + { + return ret; + } + + virtual ATTR4 struct long_struct method4 () + { + return ret; + } + + virtual ATTR5 struct long_struct method5 () + { + return ret; + } + + virtual ATTR6 struct long_struct method6 () + { + return ret; + } + + virtual ATTR7 struct long_struct method7 () + { + return ret; + } +}; + +class c3:c1, public c2 +{ +public: + c3 () + { + this3 = this; + } + + struct long_struct check_this (int a) + { + if (this3 != this) + abort (); + + return ret; + } + + virtual ATTR0 struct long_struct method0 () + { + return check_this (0); + } + + virtual ATTR1 struct long_struct method1 () + { + return check_this (1); + } + + virtual ATTR2 struct long_struct method2 () + { + return check_this (2); + } + + virtual ATTR3 struct long_struct method3 () + { + return check_this (3); + } + + virtual ATTR4 struct long_struct method4 () + { + return check_this (4); + } + + virtual ATTR5 struct long_struct method5 () + { + return check_this (5); + } + + virtual ATTR6 struct long_struct method6 () + { + return check_this (6); + } + + virtual ATTR7 struct long_struct method7 () + { + return check_this (7); + } +}; + +class c3 c3_instance; +class c2 *c2_ptr = &c3_instance; + +int +main () +{ + c2_ptr->method0 (); + c2_ptr->method1 (); + c2_ptr->method2 (); + c2_ptr->method3 (); + c2_ptr->method4 (); + c2_ptr->method5 (); + c2_ptr->method6 (); + c2_ptr->method7 (); + + return 0; +} Index: gcc/testsuite/g++.dg/other/error27.C =================================================================== --- gcc/testsuite/g++.dg/other/error27.C (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/g++.dg/other/error27.C (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,12 @@ +// PR c++/35332 +// { dg-do compile } + +void foo (double x, double y) +{ + __builtin_isgreater(x, y)(); // { dg-error "__builtin_\[^\n\]*cannot be used as a function" } + __builtin_isless(x, y)(); // { dg-error "__builtin_\[^\n\]*cannot be used as a function" } + __builtin_isgreaterequal(x, y)(); // { dg-error "__builtin_\[^\n\]*cannot be used as a function" } + __builtin_islessequal(x, y)(); // { dg-error "__builtin_\[^\n\]*cannot be used as a function" } + __builtin_isunordered(x, y)(); // { dg-error "__builtin_\[^\n\]*cannot be used as a function" } + __builtin_islessgreater(x, y)(); // { dg-error "__builtin_\[^\n\]*cannot be used as a function" } +} Index: gcc/testsuite/g++.dg/ext/attrib33.C =================================================================== --- gcc/testsuite/g++.dg/ext/attrib33.C (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/g++.dg/ext/attrib33.C (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,18 @@ +// PR c++/35546 +// { dg-do compile } + +template +struct T +{ + void foo (char const * ...) __attribute__ ((format (printf,2,3))); +}; + +template struct T<3>; + +template +struct U +{ + typedef T __attribute__((mode (SI))) V; +}; + +U::V v; Index: gcc/testsuite/g++.dg/vect/vect.exp =================================================================== --- gcc/testsuite/g++.dg/vect/vect.exp (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/g++.dg/vect/vect.exp (.../branches/gcc-4_3-branch) (revision 133808) @@ -45,7 +45,14 @@ # Skip these tests for targets that do not support generating vector # code. Set additional target-dependent vector flags, which can be # overridden by using dg-options in individual tests. -if [istarget "powerpc*-*-*"] { +if [istarget "powerpc-*paired*"] { + lappend DEFAULT_VECTCFLAGS "-mpaired" + if [check_750cl_hw_available] { + set dg-do-what-default run + } else { + set dg-do-what-default compile + } +} elseif [istarget "powerpc*-*-*"] { # Skip targets not supporting -maltivec. if ![is-effective-target powerpc_altivec_ok] { return @@ -53,19 +60,23 @@ lappend DEFAULT_VECTCFLAGS "-maltivec" if [check_vmx_hw_available] { - set dg-do-what-default run + set dg-do-what-default run } else { - if [is-effective-target ilp32] { - # Specify a cpu that supports VMX for compile-only tests. - lappend DEFAULT_VECTCFLAGS "-mcpu=7400" - } - set dg-do-what-default compile + if [is-effective-target ilp32] { + # Specify a cpu that supports VMX for compile-only tests. + lappend DEFAULT_VECTCFLAGS "-mcpu=970" + } + set dg-do-what-default compile } } elseif { [istarget "spu-*-*"] } { set dg-do-what-default run } elseif { [istarget "i?86-*-*"] || [istarget "x86_64-*-*"] } { lappend DEFAULT_VECTCFLAGS "-msse2" - set dg-do-what-default run + if [check_sse2_hw_available] { + set dg-do-what-default run + } else { + set dg-do-what-default compile + } } elseif { [istarget "mips*-*-*"] && [check_effective_target_mpaired_single] && [check_effective_target_nomips16] } { @@ -73,21 +84,37 @@ set dg-do-what-default run } elseif [istarget "sparc*-*-*"] { lappend DEFAULT_VECTCFLAGS "-mcpu=ultrasparc" "-mvis" - set dg-do-what-default run + if [check_effective_target_ultrasparc_hw] { + set dg-do-what-default run + } else { + set dg-do-what-default compile + } } elseif [istarget "alpha*-*-*"] { + # Alpha's vectorization capabilities are extremely limited. + # It's more effort than its worth disabling all of the tests + # that it cannot pass. But if you actually want to see what + # does work, command out the return. + return + lappend DEFAULT_VECTCFLAGS "-mmax" if [check_alpha_max_hw_available] { - set dg-do-what-default run + set dg-do-what-default run } else { - set dg-do-what-default compile + set dg-do-what-default compile } } elseif [istarget "ia64-*-*"] { set dg-do-what-default run +} elseif [is-effective-target arm_neon_ok] { + lappend DEFAULT_VECTCFLAGS "-mfpu=neon" "-mfloat-abi=softfp" + if [is-effective-target arm_neon_hw] { + set dg-do-what-default run + } else { + set dg-do-what-default compile + } } else { return } - # Initialize `dg'. dg-init Index: gcc/testsuite/g++.dg/warn/Warray-bounds-3.C =================================================================== --- gcc/testsuite/g++.dg/warn/Warray-bounds-3.C (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/g++.dg/warn/Warray-bounds-3.C (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,15 @@ +/* { dg-do compile } */ +/* { dg-options "-O2 -Wall" } */ + +extern void function(void * x); + +struct A { + long x; + char d[0]; +}; + + +void test(A * a) { + function((char *)a - 4); /* { dg-bogus "below array bounds" } */ +} + Index: gcc/testsuite/g++.dg/lookup/crash7.C =================================================================== --- gcc/testsuite/g++.dg/lookup/crash7.C (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/g++.dg/lookup/crash7.C (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,9 @@ +// PR c++/35323 +// { dg-options "" } + +void foo(int); + +void bar() +{ + foo(1r); // { dg-error "unnamed-fixed" } +} Index: gcc/testsuite/g++.dg/gomp/pr34964.C =================================================================== --- gcc/testsuite/g++.dg/gomp/pr34964.C (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/g++.dg/gomp/pr34964.C (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,6 @@ +// PR c++/34964 +// { dg-do compile } +// { dg-options "-fopenmp" } + +char x[] = 0; // { dg-error "initializer fails to determine size" } +#pragma omp threadprivate (x) Index: gcc/testsuite/g++.dg/gomp/pr35328.C =================================================================== --- gcc/testsuite/g++.dg/gomp/pr35328.C (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/g++.dg/gomp/pr35328.C (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,31 @@ +// PR c++/35328 +// { dg-do compile } +// { dg-options "-fopenmp" } + +struct A +{ + ~A ()(); // { dg-error "declared as function returning a function" } +}; +struct B +{ + B ()(); // { dg-error "declared as function returning a function" } +}; +struct C +{ + C (); + C (const C &)(); // { dg-error "declared as function returning a function" } +}; + +void +foo () +{ + A a; + B b; + C c; + #pragma omp parallel firstprivate (a) + ; + #pragma omp parallel private (b) + ; + #pragma omp parallel firstprivate (c) + ; +} Index: gcc/testsuite/g++.dg/gomp/pr35337.C =================================================================== --- gcc/testsuite/g++.dg/gomp/pr35337.C (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/g++.dg/gomp/pr35337.C (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,20 @@ +// PR c++/35337 +// { dg-do compile } +// { dg-options "-fopenmp" } + +struct A { }; + +void +foo () +{ +#pragma omp parallel firstprivate(A) // { dg-error "struct A\[^\n\]*is not a variable" } + ; +} + +void +bar () +{ +#pragma omp for lastprivate(A) // { dg-error "struct A\[^\n\]*is not a variable" } + for (int i = 0; i < 10; i++) + ; +} Index: gcc/testsuite/g++.dg/gomp/pr35244.C =================================================================== --- gcc/testsuite/g++.dg/gomp/pr35244.C (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/g++.dg/gomp/pr35244.C (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,30 @@ +// PR c++/35244 +// { dg-do compile } +// { dg-require-effective-target tls_native } +// { dg-options "-fopenmp" } + +int v1; +namespace N1 +{ + int v2; +} +namespace N2 +{ + int v3; +} +using N1::v2; +using namespace N2; +struct A; +typedef int i; +#pragma omp threadprivate (i) // { dg-error "is not file, namespace or block scope variable" } +#pragma omp threadprivate (A) // { dg-error "is not file, namespace or block scope variable" } +#pragma omp threadprivate (v1, v2, v3) + +void foo () +{ + static int v4; + { + static int v5; +#pragma omp threadprivate (v4, v5) + } +} Index: gcc/testsuite/g++.dg/gomp/pr35078.C =================================================================== --- gcc/testsuite/g++.dg/gomp/pr35078.C (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/g++.dg/gomp/pr35078.C (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,20 @@ +// PR c++/35078 +// { dg-do compile } +// { dg-options "-fopenmp" } + +template void +foo () +{ +#pragma omp parallel for + for (int& i = 0; i < 10; ++i) // { dg-error "invalid type for iteration variable" } + ; +} + +void +bar () +{ + int j = 0; +#pragma omp parallel for + for (int& i = j; i < 10; ++i) // { dg-error "invalid type for iteration variable" } + ; +} Index: gcc/testsuite/g++.dg/gomp/pr35099.C =================================================================== --- gcc/testsuite/g++.dg/gomp/pr35099.C (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/g++.dg/gomp/pr35099.C (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,39 @@ +// PR middle-end/35099 +// { dg-do compile } +// { dg-options "-O2 -fopenmp" } + +struct A +{ + ~A () throw (); + void foo (); +}; + +struct B +{ + B () { A ().foo (); } +}; + +void +bar () +{ +#pragma omp parallel + { + #pragma omp single + B (); + #pragma omp for + for (int i = 0; i < 2; ++i) + B (); + } +} + +void +baz () +{ +#pragma omp parallel + { + #pragma omp single + B (); + #pragma omp single + B (); + } +} Index: gcc/testsuite/g++.dg/gomp/pr35028.C =================================================================== --- gcc/testsuite/g++.dg/gomp/pr35028.C (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/g++.dg/gomp/pr35028.C (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,19 @@ +// PR c++/35028 +// { dg-do compile } +// { dg-options "-fopenmp" } + +struct A +{ + A (); + A (const A &, ...); + ~A (); + A operator++ (int); +}; + +void +foo () +{ + A a; + #pragma omp parallel firstprivate (a) + a++; +} Index: gcc/testsuite/g++.dg/inherit/override-attribs.C =================================================================== --- gcc/testsuite/g++.dg/inherit/override-attribs.C (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/g++.dg/inherit/override-attribs.C (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,5 +1,7 @@ // PR c++/14688 -// { dg-do compile { target i?86-*-* } } +// { dg-do compile { target i?86-*-* x86_64-*-* } } +// { dg-require-effective-target ilp32 } + class one { public: Index: gcc/testsuite/g++.dg/init/ref16.C =================================================================== --- gcc/testsuite/g++.dg/init/ref16.C (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/g++.dg/init/ref16.C (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,23 @@ +// PR c++/35548 +// { dg-do run } + +int c; +struct A +{ + A() { ++c; } + A(const A&) { ++c; } + ~A() { --c; } +}; + +A f() +{ + return A(); +} + +int i; +const A* ap; +int main() +{ + const A& ar = i ? *ap : f(); + return (c == 0); +} Index: gcc/testsuite/g++.dg/torture/pr35526.C =================================================================== --- gcc/testsuite/g++.dg/torture/pr35526.C (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/g++.dg/torture/pr35526.C (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,18 @@ +/* { dg-do compile } */ + +extern void *memcpy (void *__dest, __const void *__src, __SIZE_TYPE__ __n); + +char internal_crash_read_ip[] = { 0xb8 }; + +struct u_internal_crash_read_t +{ + char ip[sizeof (internal_crash_read_ip)]; +} +u_internal_crash_read; + +void +gSignalHandler (int psignalNr, int pinfo, int pctx) +{ + memcpy (u_internal_crash_read.ip, internal_crash_read_ip, + sizeof (internal_crash_read_ip)); +} Index: gcc/testsuite/lib/target-supports.exp =================================================================== --- gcc/testsuite/lib/target-supports.exp (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/lib/target-supports.exp (.../branches/gcc-4_3-branch) (revision 133808) @@ -764,6 +764,29 @@ }] } +# Return 1 if the target supports executing SSE2 instructions, 0 +# otherwise. Cache the result. + +proc check_sse2_hw_available { } { + return [check_cached_effective_target sse2_hw_available { + # If this is not the right target then we can skip the test. + if { !([istarget x86_64-*-*] || [istarget i?86-*-*]) } { + expr 0 + } else { + check_runtime_nocache sse2_hw_available { + #include "cpuid.h" + int main () + { + unsigned int eax, ebx, ecx, edx = 0; + if (__get_cpuid (1, &eax, &ebx, &ecx, &edx)) + return !(edx & bit_SSE2); + return 1; + } + } "" + } + }] +} + # Return 1 if the target supports executing AltiVec instructions, 0 # otherwise. Cache the result. Index: gcc/testsuite/gfortran.dg/allocate_zerosize_3.f =================================================================== --- gcc/testsuite/gfortran.dg/allocate_zerosize_3.f (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gfortran.dg/allocate_zerosize_3.f (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,40 @@ +C { dg-do run } +C Test the fix for PR35698, in which the negative size dimension would +C throw out the subsequent bounds. +C +C Contributed by Dick Hendrickson +C + program try_lf0030 + call LF0030(10) + end + + SUBROUTINE LF0030(nf10) + INTEGER ILA1(7) + INTEGER ILA2(7) + LOGICAL LLA(:,:,:,:,:,:,:) + INTEGER ICA(7) + ALLOCATABLE LLA + + + ALLOCATE (LLA(2:3, 4, 0:5, + $ NF10:1, -2:7, -3:8, + $ -4:9)) + + ILA1 = LBOUND(LLA) + ILA2 = UBOUND(LLA) +C CORRECT FOR THE ZERO DIMENSIONED TERM TO ALLOW AN EASIER VERIFY + ILA1(4) = ILA1(4) - 2 ! 1 - 2 = -1 + ILA2(4) = ILA2(4) + 6 ! 0 + 6 = 6 + + DO J1 = 1,7 + IVAL = 3-J1 + IF (ILA1(J1) .NE. IVAL) call abort () + 100 ENDDO + + DO J1 = 1,7 + IVAL = 2+J1 + IF (ILA2(J1) .NE. IVAL) call abort () + 101 ENDDO + + END SUBROUTINE + \ No newline at end of file Index: gcc/testsuite/gfortran.dg/null_3.f90 =================================================================== --- gcc/testsuite/gfortran.dg/null_3.f90 (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gfortran.dg/null_3.f90 (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,18 @@ +! { dg-do compile } +! This checks the fix for PR34813 in which the error at line 17 +! was not detected. +! +! Contributed by Daniel Franke +! +SUBROUTINE kd_tree_init_default() + TYPE :: kd_tree_node + INTEGER :: dummy + END TYPE + + TYPE :: kd_tree + TYPE(kd_tree_node) :: root + END TYPE + + TYPE(kd_tree) :: tree + tree = kd_tree(null()) ! { dg-error "neither a POINTER nor ALLOCATABLE" } +END SUBROUTINE Index: gcc/testsuite/gfortran.dg/character_assign_1.f90 =================================================================== --- gcc/testsuite/gfortran.dg/character_assign_1.f90 (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gfortran.dg/character_assign_1.f90 (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,17 @@ +! { dg-do compile } +! Tests the fix for PR35702, which caused an ICE because the types in the assignment +! were not translated to be the same. +! +! Contributed by Dick Hendrickson +! +MODULE TESTS + TYPE UNSEQ + CHARACTER(1) :: C + END TYPE UNSEQ +CONTAINS + SUBROUTINE CG0028 (TDA1L, TDA1R, nf0, nf1, nf2, nf3) + TYPE(UNSEQ) TDA1L(NF3) + TDA1L(NF1:NF2:NF1)%C = TDA1L(NF0+2:NF3:NF2/2)%C + END SUBROUTINE +END MODULE TESTS +! { dg-final { cleanup-modules "tests" } } Index: gcc/testsuite/gfortran.dg/cshift_shift_real_2.f90 =================================================================== --- gcc/testsuite/gfortran.dg/cshift_shift_real_2.f90 (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gfortran.dg/cshift_shift_real_2.f90 (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,8 @@ +! { dg-do compile } +! PR35724 Compile time segmentation fault for CSHIFT with negative third arg + SUBROUTINE RA0072(DDA,LDA,nf10,nf1,mf1,nf2) + REAL DDA(10,10) + LOGICAL LDA(10,10) + WHERE (LDA) DDA = CSHIFT(DDA,1,-MF1) ! MF1 works, -1 works + END SUBROUTINE + Index: gcc/testsuite/gfortran.dg/namelist_45.f90 =================================================================== --- gcc/testsuite/gfortran.dg/namelist_45.f90 (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gfortran.dg/namelist_45.f90 (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,18 @@ +! { dg-do run } +! PR35617 read namelist error with '!' +program test + character(len=128) :: mhdpath + namelist /nbdrive_naml/ mhdpath + open(10, file='test.nml') + + write(10,'(a)') "&nbdrive_naml" + write(10,'(a)') + write(10,'(a)') "!nstep_stop = 2 ! uncomment to bar" + write(10,'(a)') "!nstep_start = 2 ! uncomment to foo" + write(10,'(a)') " mhdpath = 'mypath.dat'" + write(10,'(a)') "/" + + rewind(10) + read(10, nbdrive_naml) + close(10,status="delete") +end program test Index: gcc/testsuite/gfortran.dg/namelist_46.f90 =================================================================== --- gcc/testsuite/gfortran.dg/namelist_46.f90 (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gfortran.dg/namelist_46.f90 (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,23 @@ +! { dg-do run } +! PR35627 Namelist read problem with short logical followed by read real +program test + implicit none + LOGICAL :: nlco(200) ! (1:nbeam) + REAL(kind=8):: xlbtna(200) ! (1:nbeam) + NAMELIST/nbdrive_naml/ nlco, xlbtna + INTEGER :: nbshapa(200) ! (1:nbeam) + NAMELIST/nbdrive_naml/ nbshapa + nlco = .false. + xlbtna = 0.0_8 + nbshapa = 0 + open(10, file='t.nml') + write(10,'(a)') "&nbdrive_naml" + write(10,'(a)') "nlco = 4*T," + write(10,'(a)') "xlbtna = 802.8, 802.8, 802.8, 802.8" + write(10,'(a)') "nbshapa = 4*1" + write(10,'(a)') "/" + rewind(10) + read(10, nbdrive_naml) + !write(*,nbdrive_naml) + close(10, status="delete") +end program test Index: gcc/testsuite/gfortran.dg/module_commons_2.f90 =================================================================== --- gcc/testsuite/gfortran.dg/module_commons_2.f90 (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gfortran.dg/module_commons_2.f90 (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,21 @@ +! { dg-do compile } +! Tests the fix for PR35474, in which the PRIVATE statement would +! cause the error Internal Error at (1): free_pi_tree(): Unresolved fixup +! This arose because the symbol for 'i' emanating from the COMMON was +! not being fixed-up as the EQUIVALENCE was built. +! +! Contributed by FX Coudert +! +module h5global + integer i + integer j + common /c/ i + equivalence (i, j) + private +end module h5global + +program bug + use h5global +end + +! { dg-final { cleanup-modules "h5global" } } Index: gcc/testsuite/gfortran.dg/transpose_conjg_1.f90 =================================================================== --- gcc/testsuite/gfortran.dg/transpose_conjg_1.f90 (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gfortran.dg/transpose_conjg_1.f90 (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,37 @@ +! { dg-do run } +! Tests the fix for PR35740, where the trick of interchanging the descriptor +! dimensions to implement TRANSPOSE did not work if it is an argument of +! an elemental function - eg. CONJG. The fix forces a library call for such +! cases. During the diagnosis of the PR, it was found that the scalarizer was +! completely thrown if the argument of TRANSPOSE was a non-variable +! expression; eg a + c below. This is also fixed by the library call. +! +! Contributed by Dominik Muth +! +program main + implicit none + complex, dimension(2,2) :: a,b,c,d + a(1,1) = (1.,1.) + a(2,1) = (2.,2.) + a(1,2) = (3.,3.) + a(2,2) = (4.,4.) +! + b = a + b = conjg(transpose(b)) + d = a + d = transpose(conjg(d)) + if (any (b /= d)) call abort () +! + d = matmul (b, a ) + if (any (d /= matmul (transpose(conjg(a)), a))) call abort () + if (any (d /= matmul (conjg(transpose(a)), a))) call abort () +! + c = (0.0,1.0) + b = conjg(transpose(a + c)) + d = transpose(conjg(a + c)) + if (any (b /= d)) call abort () +! + d = matmul (b, a + c) + if (any (d /= matmul (transpose(conjg(a + c)), a + c))) call abort () + if (any (d /= matmul (conjg(transpose(a + c)), a + c))) call abort () + END program main Index: gcc/testsuite/gfortran.dg/direct_io_10.f =================================================================== --- gcc/testsuite/gfortran.dg/direct_io_10.f (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gfortran.dg/direct_io_10.f (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,46 @@ +! { dg-do run } +! pr35699 run-time abort writing zero sized section to direct access file + program directio + call qi0010 ( 10, 1, 2, 3, 4, 9, 2) + end + + subroutine qi0010 (nf10, nf1, nf2, nf3, nf4,nf9, np2) + character(10) bda(nf10) + character(10) bda1(nf10), bval + + integer j_len + bda1(1) = 'x' + do i = 2,10 + bda1(i) = 'x'//bda1(i-1) + enddo + bda = 'unread' + + inquire(iolength = j_len) bda1(nf1:nf10:nf2), bda1(nf4:nf3), + $ bda1(nf2:nf10:nf2) + + open (unit=48, + $ access='direct', + $ status='scratch', + $ recl = j_len, + $ iostat = istat, + $ form='unformatted', + $ action='readwrite') + + write (48,iostat = istat, rec = 3) bda1(nf1:nf10:nf2), + $ bda1(nf4:nf3), bda1(nf2:nf10:nf2) + if ( istat .ne. 0) then + call abort + endif + istat = -314 + + read (48,iostat = istat, rec = np2+1) bda(nf1:nf9:nf2), + $ bda(nf4:nf3), bda(nf2:nf10:nf2) + if ( istat .ne. 0) then + call abort + endif + + do j1 = 1,10 + bval = bda1(j1) + if (bda(j1) .ne. bval) call abort + enddo + end subroutine Index: gcc/testsuite/gfortran.dg/module_function_type_1.f90 =================================================================== --- gcc/testsuite/gfortran.dg/module_function_type_1.f90 (.../tags/gcc_4_3_0_release) (revision 0) +++ gcc/testsuite/gfortran.dg/module_function_type_1.f90 (.../branches/gcc-4_3-branch) (revision 133808) @@ -0,0 +1,33 @@ +! { dg-do compile } +! This checks the fix for PR33295 in which the A_type in initA was +! not promoted to module level and so not recognised as being the +! same as that emanating directly from module a. +! +! Contributed by Janus Weil +! +module A + type A_type + real comp + end type +end module A + +module B +contains + function initA() + use A + implicit none + type(A_type):: initA + initA%comp=1.0 + end function +end module B + +program C + use B + use A + implicit none + type(A_type):: A_var + A_var = initA() +end program C + +! { dg-final { cleanup-modules "A B" } } + Index: gcc/testsuite/gfortran.dg/vect/vect.exp =================================================================== --- gcc/testsuite/gfortran.dg/vect/vect.exp (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/testsuite/gfortran.dg/vect/vect.exp (.../branches/gcc-4_3-branch) (revision 133808) @@ -38,8 +38,18 @@ # Skip these tests for targets that do not support generating vector # code. Set additional target-dependent vector flags, which can be # overridden by using dg-options in individual tests. -if [istarget "powerpc*-*-*"] { - # If there are powerpc targets to skip, do it here. +if [istarget "powerpc-*paired*"] { + lappend DEFAULT_VECTCFLAGS "-mpaired" + if [check_750cl_hw_available] { + set dg-do-what-default run + } else { + set dg-do-what-default compile + } +} elseif [istarget "powerpc*-*-*"] { + # Skip targets not supporting -maltivec. + if ![is-effective-target powerpc_altivec_ok] { + return + } lappend DEFAULT_VECTCFLAGS "-maltivec" if [check_vmx_hw_available] { @@ -47,20 +57,38 @@ } else { if [is-effective-target ilp32] { # Specify a cpu that supports VMX for compile-only tests. - lappend DEFAULT_VECTCFLAGS "-mcpu=7400" + lappend DEFAULT_VECTCFLAGS "-mcpu=970" } set dg-do-what-default compile } +} elseif { [istarget "spu-*-*"] } { + set dg-do-what-default run } elseif { [istarget "i?86-*-*"] || [istarget "x86_64-*-*"] } { lappend DEFAULT_VECTCFLAGS "-msse2" - set dg-do-what-default run -} elseif [istarget "mipsisa64*-*-*"] { + if [check_sse2_hw_available] { + set dg-do-what-default run + } else { + set dg-do-what-default compile + } +} elseif { [istarget "mips*-*-*"] + && [check_effective_target_mpaired_single] + && [check_effective_target_nomips16] } { lappend DEFAULT_VECTCFLAGS "-mpaired-single" set dg-do-what-default run } elseif [istarget "sparc*-*-*"] { lappend DEFAULT_VECTCFLAGS "-mcpu=ultrasparc" "-mvis" - set dg-do-what-default run + if [check_effective_target_ultrasparc_hw] { + set dg-do-what-default run + } else { + set dg-do-what-default compile + } } elseif [istarget "alpha*-*-*"] { + # Alpha's vectorization capabilities are extremely limited. + # It's more effort than its worth disabling all of the tests + # that it cannot pass. But if you actually want to see what + # does work, command out the return. + return + lappend DEFAULT_VECTCFLAGS "-mmax" if [check_alpha_max_hw_available] { set dg-do-what-default run @@ -69,23 +97,17 @@ } } elseif [istarget "ia64-*-*"] { set dg-do-what-default run +} elseif [is-effective-target arm_neon_ok] { + lappend DEFAULT_VECTCFLAGS "-mfpu=neon" "-mfloat-abi=softfp" + if [is-effective-target arm_neon_hw] { + set dg-do-what-default run + } else { + set dg-do-what-default compile + } } else { return } -# Return 1 if the effective target is LP64 or if the effective target -# does not support a vector alignment mechanism. - -proc check_effective_target_lp64_or_vect_no_align { } { - if { [is-effective-target lp64] - || [is-effective-target vect_no_align] } { - set answer 1 - } else { - set answer 0 - } - return $answer -} - # Initialize `dg'. dg-init Index: gcc/cp/typeck.c =================================================================== --- gcc/cp/typeck.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/cp/typeck.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -962,6 +962,8 @@ if (TREE_CODE (t1) != ARRAY_TYPE && TYPE_QUALS (t1) != TYPE_QUALS (t2)) return false; + if (TYPE_FOR_JAVA (t1) != TYPE_FOR_JAVA (t2)) + return false; /* Allow for two different type nodes which have essentially the same definition. Note that we already checked for equality of the type @@ -971,9 +973,6 @@ && TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2)) return true; - if (TYPE_FOR_JAVA (t1) != TYPE_FOR_JAVA (t2)) - return false; - /* Compare the types. Break out if they could be the same. */ switch (TREE_CODE (t1)) { Index: gcc/cp/decl.c =================================================================== --- gcc/cp/decl.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/cp/decl.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -3164,19 +3164,10 @@ tree type, decl; if (size > 0) type = make_signed_type (size); - else if (size == -1) - { /* "__java_boolean". */ - if ((TYPE_MODE (boolean_type_node) - == smallest_mode_for_size (1, MODE_INT))) - type = build_variant_type_copy (boolean_type_node); - else - /* ppc-darwin has SImode bool, make jboolean a 1-bit - integer type without boolean semantics there. */ - type = make_unsigned_type (1); - } else if (size > -32) - { /* "__java_char". */ + { /* "__java_char" or ""__java_boolean". */ type = make_unsigned_type (-size); + /*if (size == -1) TREE_SET_CODE (type, BOOLEAN_TYPE);*/ } else { /* "__java_float" or ""__java_double". */ Index: gcc/cp/call.c =================================================================== --- gcc/cp/call.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/cp/call.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -1145,7 +1145,8 @@ const and rvalue references to rvalues of compatible class type. */ if (compatible_p && (lvalue_p - || ((CP_TYPE_CONST_NON_VOLATILE_P(to) || TYPE_REF_IS_RVALUE (rto)) + || (!(flags & LOOKUP_NO_TEMP_BIND) + && (CP_TYPE_CONST_NON_VOLATILE_P(to) || TYPE_REF_IS_RVALUE (rto)) && CLASS_TYPE_P (from)))) { /* [dcl.init.ref] Index: gcc/cp/error.c =================================================================== --- gcc/cp/error.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/cp/error.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -326,6 +326,7 @@ case BOOLEAN_TYPE: case COMPLEX_TYPE: case VECTOR_TYPE: + case FIXED_POINT_TYPE: pp_type_specifier_seq (cxx_pp, t); break; @@ -2079,7 +2080,17 @@ case VEC_DELETE_EXPR: case MODOP_EXPR: case ABS_EXPR: + case CONJ_EXPR: case VECTOR_CST: + case FIXED_CST: + case UNORDERED_EXPR: + case ORDERED_EXPR: + case UNLT_EXPR: + case UNLE_EXPR: + case UNGT_EXPR: + case UNGE_EXPR: + case UNEQ_EXPR: + case LTGT_EXPR: pp_expression (cxx_pp, t); break; Index: gcc/cp/ChangeLog =================================================================== --- gcc/cp/ChangeLog (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/cp/ChangeLog (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,3 +1,79 @@ +2008-03-26 Jakub Jelinek + + PR c++/35546 + * pt.c (apply_late_template_attributes): Don't call tsubst on + first attribute argument if it is IDENTIFIER_NODE. + + PR c++/35332 + * error.c (dump_expr): Pass {,UN}ORDERED_EXPR, UN{LT,LE,GT,GE,EQ}_EXPR + and LTGT_EXPR to pp_expression. + +2008-03-17 Jason Merrill + + PR c++/35548 + * call.c (reference_binding): Check LOOKUP_NO_TEMP_BIND when binding + a temp directly to a reference as per DR391. + +2008-03-12 Richard Guenther + + PR c++/35469 + Revert: + 2008-02-04 Richard Guenther + + PR java/35035 + * decl.c (record_builtin_java_type): Make jboolean a + integer type again where its mode doesn't match that of bool. + + 2008-01-25 Richard Guenther + + PR c++/33887 + * decl.c (record_builtin_java_type): Make __java_boolean + a variant of bool. + * typeck.c (structural_comptypes): Move TYPE_FOR_JAVA check + after TYPE_MAIN_VARIANT check. + +2008-03-10 Jakub Jelinek + + PR c++/35328 + * semantics.c (finish_omp_clauses): Look through NOP_EXPR even + if errorcount. + + PR c++/35337 + * semantics.c (finish_omp_clauses): Use %qD instead of %qE for + DECL_P in not a variable and appears more than once error messages. + +2008-03-06 Jakub Jelinek + + PR c++/35028 + * cp-gimplify.c (cxx_omp_clause_apply_fn): Handle vararg copy ctors. + + PR c++/34964 + PR c++/35244 + * semantics.c (finish_omp_threadprivate): Do nothing for error_operand_p + vars. Afterwards ensure v is VAR_DECL. + + PR c++/35078 + * parser.c (cp_parser_omp_for_loop): If DECL has REFERENCE_TYPE, don't + call cp_finish_decl. + * semantics.c (finish_omp_for): Fail if DECL doesn't have integral type + early. + +2008-03-06 Paolo Carlini + + PR c++/35323 + * name-lookup.c (arg_assoc_type): Handle FIXED_POINT_TYPE. + +2008-03-06 Paolo Carlini + + PR c++/35333 + * error.c (dump_expr): Handle CONJ_EXPR. + +2008-03-06 Paolo Carlini + + PR c++/35338 + * error.c (dump_type): Handle FIXED_POINT_TYPE. + (dump_expr): Handle FIXED_CST. + 2008-03-05 Release Manager * GCC 4.3.0 released. Index: gcc/cp/cp-gimplify.c =================================================================== --- gcc/cp/cp-gimplify.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/cp/cp-gimplify.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -844,7 +844,8 @@ if (arg2) argarray[i++] = p2; /* Handle default arguments. */ - for (parm = defparm; parm != void_list_node; parm = TREE_CHAIN (parm), i++) + for (parm = defparm; parm && parm != void_list_node; + parm = TREE_CHAIN (parm), i++) argarray[i] = convert_default_arg (TREE_VALUE (parm), TREE_PURPOSE (parm), fn, i); t = build_call_a (fn, i, argarray); @@ -875,7 +876,7 @@ if (arg2) argarray[i++] = build_fold_addr_expr (arg2); /* Handle default arguments. */ - for (parm = defparm; parm != void_list_node; + for (parm = defparm; parm && parm != void_list_node; parm = TREE_CHAIN (parm), i++) argarray[i] = convert_default_arg (TREE_VALUE (parm), TREE_PURPOSE (parm), Index: gcc/cp/pt.c =================================================================== --- gcc/cp/pt.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/cp/pt.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -6717,9 +6717,29 @@ { *p = TREE_CHAIN (t); TREE_CHAIN (t) = NULL_TREE; - TREE_VALUE (t) - = tsubst_expr (TREE_VALUE (t), args, complain, in_decl, - /*integral_constant_expression_p=*/false); + /* If the first attribute argument is an identifier, don't + pass it through tsubst. Attributes like mode, format, + cleanup and several target specific attributes expect it + unmodified. */ + if (TREE_VALUE (t) + && TREE_CODE (TREE_VALUE (t)) == TREE_LIST + && TREE_VALUE (TREE_VALUE (t)) + && (TREE_CODE (TREE_VALUE (TREE_VALUE (t))) + == IDENTIFIER_NODE)) + { + tree chain + = tsubst_expr (TREE_CHAIN (TREE_VALUE (t)), args, complain, + in_decl, + /*integral_constant_expression_p=*/false); + if (chain != TREE_CHAIN (TREE_VALUE (t))) + TREE_VALUE (t) + = tree_cons (NULL_TREE, TREE_VALUE (TREE_VALUE (t)), + chain); + } + else + TREE_VALUE (t) + = tsubst_expr (TREE_VALUE (t), args, complain, in_decl, + /*integral_constant_expression_p=*/false); *q = t; q = &TREE_CHAIN (t); } Index: gcc/cp/semantics.c =================================================================== --- gcc/cp/semantics.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/cp/semantics.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -3400,13 +3400,16 @@ { if (processing_template_decl) break; - error ("%qE is not a variable in clause %", t); + if (DECL_P (t)) + error ("%qD is not a variable in clause %", t); + else + error ("%qE is not a variable in clause %", t); remove = true; } else if (bitmap_bit_p (&generic_head, DECL_UID (t)) || bitmap_bit_p (&firstprivate_head, DECL_UID (t))) { - error ("%qE appears more than once in data clauses", t); + error ("%qD appears more than once in data clauses", t); remove = true; } else @@ -3419,13 +3422,16 @@ { if (processing_template_decl) break; - error ("%qE is not a variable in clause %", t); + if (DECL_P (t)) + error ("%qD is not a variable in clause %", t); + else + error ("%qE is not a variable in clause %", t); remove = true; } else if (bitmap_bit_p (&generic_head, DECL_UID (t)) || bitmap_bit_p (&lastprivate_head, DECL_UID (t))) { - error ("%qE appears more than once in data clauses", t); + error ("%qD appears more than once in data clauses", t); remove = true; } else @@ -3661,7 +3667,7 @@ complete_ctor_identifier, t, inner_type, LOOKUP_NORMAL); - if (targetm.cxx.cdtor_returns_this ()) + if (targetm.cxx.cdtor_returns_this () || errorcount) /* Because constructors and destructors return this, the call will have been cast to "void". Remove the cast here. We would like to use STRIP_NOPS, but it @@ -3683,7 +3689,7 @@ t = build_special_member_call (t, complete_dtor_identifier, NULL, inner_type, LOOKUP_NORMAL); - if (targetm.cxx.cdtor_returns_this ()) + if (targetm.cxx.cdtor_returns_this () || errorcount) /* Because constructors and destructors return this, the call will have been cast to "void". Remove the cast here. We would like to use STRIP_NOPS, but it @@ -3742,9 +3748,14 @@ { tree v = TREE_PURPOSE (t); + if (error_operand_p (v)) + ; + else if (TREE_CODE (v) != VAR_DECL) + error ("% %qD is not file, namespace " + "or block scope variable", v); /* If V had already been marked threadprivate, it doesn't matter whether it had been used prior to this point. */ - if (TREE_USED (v) + else if (TREE_USED (v) && (DECL_LANG_SPECIFIC (v) == NULL || !CP_DECL_THREADPRIVATE_P (v))) error ("%qE declared % after first use", v); @@ -3903,6 +3914,16 @@ return NULL; } + if (!INTEGRAL_TYPE_P (TREE_TYPE (decl))) + { + location_t elocus = locus; + + if (EXPR_HAS_LOCATION (init)) + elocus = EXPR_LOCATION (init); + error ("%Hinvalid type for iteration variable %qE", &elocus, decl); + return NULL; + } + if (pre_body == NULL || IS_EMPTY_STMT (pre_body)) pre_body = NULL; else if (! processing_template_decl) Index: gcc/cp/name-lookup.c =================================================================== --- gcc/cp/name-lookup.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/cp/name-lookup.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,5 +1,5 @@ /* Definitions for C++ name lookup routines. - Copyright (C) 2003, 2004, 2005, 2006, 2007 + Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. Contributed by Gabriel Dos Reis @@ -4594,6 +4594,7 @@ case COMPLEX_TYPE: case VECTOR_TYPE: case BOOLEAN_TYPE: + case FIXED_POINT_TYPE: return false; case RECORD_TYPE: if (TYPE_PTRMEMFUNC_P (type)) Index: gcc/cp/parser.c =================================================================== --- gcc/cp/parser.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/cp/parser.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -20074,8 +20074,11 @@ init = cp_parser_assignment_expression (parser, false); - cp_finish_decl (decl, NULL_TREE, /*init_const_expr_p=*/false, - asm_specification, LOOKUP_ONLYCONVERTING); + if (TREE_CODE (TREE_TYPE (decl)) == REFERENCE_TYPE) + init = error_mark_node; + else + cp_finish_decl (decl, NULL_TREE, /*init_const_expr_p=*/false, + asm_specification, LOOKUP_ONLYCONVERTING); if (pushed_scope) pop_scope (pushed_scope); Index: gcc/tree-ssa-ccp.c =================================================================== --- gcc/tree-ssa-ccp.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/tree-ssa-ccp.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -1584,7 +1584,8 @@ is the desired result type. */ static tree -maybe_fold_offset_to_array_ref (tree base, tree offset, tree orig_type) +maybe_fold_offset_to_array_ref (tree base, tree offset, tree orig_type, + bool allow_negative_idx) { tree min_idx, idx, idx_type, elt_offset = integer_zero_node; tree array_type, elt_type, elt_size; @@ -1684,11 +1685,15 @@ idx = fold_convert (idx_type, idx); /* We don't want to construct access past array bounds. For example - char *(c[4]); - - c[3][2]; should not be simplified into (*c)[14] or tree-vrp will give false - warning. */ - if (domain_type && TYPE_MAX_VALUE (domain_type) + char *(c[4]); + c[3][2]; + should not be simplified into (*c)[14] or tree-vrp will + give false warnings. The same is true for + struct A { long x; char d[0]; } *a; + (char *)a - 4; + which should be not folded to &a->d[-8]. */ + if (domain_type + && TYPE_MAX_VALUE (domain_type) && TREE_CODE (TYPE_MAX_VALUE (domain_type)) == INTEGER_CST) { tree up_bound = TYPE_MAX_VALUE (domain_type); @@ -1700,6 +1705,17 @@ && compare_tree_int (up_bound, 1) > 0) return NULL_TREE; } + if (domain_type + && TYPE_MIN_VALUE (domain_type)) + { + if (!allow_negative_idx + && TREE_CODE (TYPE_MIN_VALUE (domain_type)) == INTEGER_CST + && tree_int_cst_lt (idx, TYPE_MIN_VALUE (domain_type))) + return NULL_TREE; + } + else if (!allow_negative_idx + && compare_tree_int (idx, 0) < 0) + return NULL_TREE; return build4 (ARRAY_REF, elt_type, base, idx, NULL_TREE, NULL_TREE); } @@ -1796,7 +1812,8 @@ new_base = build3 (COMPONENT_REF, field_type, new_base, f, NULL_TREE); /* Recurse to possibly find the match. */ - ret = maybe_fold_offset_to_array_ref (new_base, t, orig_type); + ret = maybe_fold_offset_to_array_ref (new_base, t, orig_type, + f == TYPE_FIELDS (record_type)); if (ret) return ret; ret = maybe_fold_offset_to_component_ref (field_type, new_base, t, @@ -1818,7 +1835,8 @@ base = build1 (INDIRECT_REF, record_type, base); base = build3 (COMPONENT_REF, field_type, base, f, NULL_TREE); - t = maybe_fold_offset_to_array_ref (base, offset, orig_type); + t = maybe_fold_offset_to_array_ref (base, offset, orig_type, + f == TYPE_FIELDS (record_type)); if (t) return t; return maybe_fold_offset_to_component_ref (field_type, base, offset, @@ -1884,7 +1902,7 @@ { if (base_is_ptr) base = build1 (INDIRECT_REF, type, base); - ret = maybe_fold_offset_to_array_ref (base, offset, orig_type); + ret = maybe_fold_offset_to_array_ref (base, offset, orig_type, true); } return ret; } @@ -2061,7 +2079,7 @@ ptd_type = TREE_TYPE (ptr_type); /* At which point we can try some of the same things as for indirects. */ - t = maybe_fold_offset_to_array_ref (op0, op1, ptd_type); + t = maybe_fold_offset_to_array_ref (op0, op1, ptd_type, true); if (!t) t = maybe_fold_offset_to_component_ref (TREE_TYPE (op0), op0, op1, ptd_type, false); Index: gcc/dbxout.c =================================================================== --- gcc/dbxout.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/dbxout.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -2332,6 +2332,15 @@ switch (TREE_CODE (expr)) { case VAR_DECL: + /* We can't handle emulated tls variables, because the address is an + offset to the return value of __emutls_get_address, and there is no + way to express that in stabs. Also, there are name mangling issues + here. We end up with references to undefined symbols if we don't + disable debug info for these variables. */ + if (!targetm.have_tls && DECL_THREAD_LOCAL_P (expr)) + return NULL; + /* FALLTHRU */ + case PARM_DECL: if (DECL_HAS_VALUE_EXPR_P (expr)) return dbxout_expand_expr (DECL_VALUE_EXPR (expr)); Index: gcc/gcov-io.h =================================================================== --- gcc/gcov-io.h (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/gcov-io.h (.../branches/gcc-4_3-branch) (revision 133808) @@ -467,6 +467,9 @@ consecutive values. */ extern void __gcov_merge_delta (gcov_type *, unsigned) ATTRIBUTE_HIDDEN; +/* The merge function that just ors the counters together. */ +extern void __gcov_merge_ior (gcov_type *, unsigned) ATTRIBUTE_HIDDEN; + /* The profiler functions. */ extern void __gcov_interval_profiler (gcov_type *, gcov_type, int, unsigned); extern void __gcov_pow2_profiler (gcov_type *, gcov_type); @@ -474,11 +477,10 @@ extern void __gcov_indirect_call_profiler (gcov_type *, gcov_type, void *, void *); extern void __gcov_average_profiler (gcov_type *, gcov_type); extern void __gcov_ior_profiler (gcov_type *, gcov_type); -extern void __gcov_merge_ior (gcov_type *, unsigned); #ifndef inhibit_libc /* The wrappers around some library functions.. */ -extern pid_t __gcov_fork (void); +extern pid_t __gcov_fork (void) ATTRIBUTE_HIDDEN; extern int __gcov_execl (const char *, const char *, ...) ATTRIBUTE_HIDDEN; extern int __gcov_execlp (const char *, const char *, ...) ATTRIBUTE_HIDDEN; extern int __gcov_execle (const char *, const char *, ...) ATTRIBUTE_HIDDEN; Index: gcc/cse.c =================================================================== --- gcc/cse.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/cse.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -4753,6 +4753,23 @@ src_elt_cost = MAX_COST; } + /* Avoid creation of overlapping memory moves. */ + if (MEM_P (trial) && MEM_P (SET_DEST (sets[i].rtl))) + { + rtx src, dest; + + /* BLKmode moves are not handled by cse anyway. */ + if (GET_MODE (trial) == BLKmode) + break; + + src = canon_rtx (trial); + dest = canon_rtx (SET_DEST (sets[i].rtl)); + + if (!MEM_P (src) || !MEM_P (dest) + || !nonoverlapping_memrefs_p (src, dest)) + break; + } + /* We don't normally have an insn matching (set (pc) (pc)), so check for this separately here. We will delete such an insn below. @@ -5975,6 +5992,21 @@ int no_conflict = 0; bb = ebb_data->path[path_entry].bb; + + /* Invalidate recorded information for eh regs if there is an EH + edge pointing to that bb. */ + if (bb_has_eh_pred (bb)) + { + struct df_ref **def_rec; + + for (def_rec = df_get_artificial_defs (bb->index); *def_rec; def_rec++) + { + struct df_ref *def = *def_rec; + if (DF_REF_FLAGS (def) & DF_REF_AT_TOP) + invalidate (DF_REF_REG (def), GET_MODE (DF_REF_REG (def))); + } + } + FOR_BB_INSNS (bb, insn) { /* If we have processed 1,000 insns, flush the hash table to Index: gcc/ifcvt.c =================================================================== --- gcc/ifcvt.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/ifcvt.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -1737,6 +1737,10 @@ rtx cond, earliest, target, seq, a, b, c; int negate; + /* Reject modes with signed zeros. */ + if (HONOR_SIGNED_ZEROS (GET_MODE (if_info->x))) + return FALSE; + /* Recognize A and B as constituting an ABS or NABS. The canonical form is a branch around the negation, taken when the object is the first operand of a comparison against 0 that evaluates to true. */ Index: gcc/expr.c =================================================================== --- gcc/expr.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/expr.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -4654,7 +4654,8 @@ temp = convert_to_mode (GET_MODE (target), temp, unsignedp); emit_move_insn (target, temp); } - else if (GET_MODE (target) == BLKmode) + else if (GET_MODE (target) == BLKmode + || GET_MODE (temp) == BLKmode) emit_block_move (target, temp, expr_size (exp), (call_param_p ? BLOCK_OP_CALL_PARM Index: gcc/ada/env.c =================================================================== --- gcc/ada/env.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/ada/env.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -41,10 +41,6 @@ #include #endif -#if defined (__APPLE__) -#include -#endif - #if defined (__MINGW32__) #include #endif @@ -61,6 +57,10 @@ #include "system.h" #endif /* IN_RTS */ +#if defined (__APPLE__) +#include +#endif + #include "env.h" void @@ -166,7 +166,7 @@ LIB$SIGNAL (status); } -#elif defined (__vxworks) && defined (__RTP__) +#elif (defined (__vxworks) && defined (__RTP__)) || defined (__APPLE__) setenv (name, value, 1); #else @@ -178,7 +178,7 @@ sprintf (expression, "%s=%s", name, value); putenv (expression); #if (defined (__FreeBSD__) && (__FreeBSD__ < 7)) \ - || defined (__APPLE__) || defined (__MINGW32__) \ + || defined (__MINGW32__) \ ||(defined (__vxworks) && ! defined (__RTP__)) /* On some systems like FreeBSD 6.x and earlier, MacOS X and Windows, putenv is making a copy of the expression string so we can free Index: gcc/ada/ChangeLog =================================================================== --- gcc/ada/ChangeLog (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/ada/ChangeLog (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,3 +1,14 @@ +2008-04-01 John David Anglin + + PR ada/33857 + * env.c: Always include crt_externs.h if __APPLE__ is defined. + (__gnat_setenv): Use setenv instead of putenv if __APPLE__ is defined. + +2008-03-31 Eric Botcazou + + * decl.c (gnat_to_gnu_entity) : Do not force a non-null + size if it has overflowed. + 2008-03-05 Release Manager * GCC 4.3.0 released. Index: gcc/ada/decl.c =================================================================== --- gcc/ada/decl.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/ada/decl.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -636,8 +636,12 @@ clause, as we would lose useful information on the view size (e.g. for null array slices) and we are not allocating the object here anyway. */ - if (((gnu_size && integer_zerop (gnu_size)) - || (TYPE_SIZE (gnu_type) && integer_zerop (TYPE_SIZE (gnu_type)))) + if (((gnu_size + && integer_zerop (gnu_size) + && !TREE_OVERFLOW (gnu_size)) + || (TYPE_SIZE (gnu_type) + && integer_zerop (TYPE_SIZE (gnu_type)) + && !TREE_OVERFLOW (TYPE_SIZE (gnu_type)))) && (!Is_Constr_Subt_For_UN_Aliased (Etype (gnat_entity)) || !Is_Array_Type (Etype (gnat_entity))) && !Present (Renamed_Object (gnat_entity)) Index: gcc/fortran/trans-array.c =================================================================== --- gcc/fortran/trans-array.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/fortran/trans-array.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -3490,7 +3490,7 @@ size = 1 - lbound; a.ubound[n] = specified_upper_bound; a.stride[n] = stride; - size = ubound + size; //size = ubound + 1 - lbound + size = siz >= 0 ? ubound + size : 0; //size = ubound + 1 - lbound stride = stride * size; } return (stride); @@ -3590,6 +3590,9 @@ else or_expr = fold_build2 (TRUTH_OR_EXPR, boolean_type_node, or_expr, cond); + size = fold_build3 (COND_EXPR, gfc_array_index_type, cond, + gfc_index_zero_node, size); + /* Multiply the stride by the number of elements in this dimension. */ stride = fold_build2 (MULT_EXPR, gfc_array_index_type, stride, size); stride = gfc_evaluate_now (stride, pblock); Index: gcc/fortran/trans-expr.c =================================================================== --- gcc/fortran/trans-expr.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/fortran/trans-expr.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -2844,7 +2844,9 @@ dsc = gfc_to_single_character (dlen, dest); - if (dsc != NULL_TREE && ssc != NULL_TREE) + /* Assign directly if the types are compatible. */ + if (dsc != NULL_TREE && ssc != NULL_TREE + && TREE_TYPE (dsc) == TREE_TYPE (ssc)) { gfc_add_modify_expr (block, dsc, ssc); return; Index: gcc/fortran/Make-lang.in =================================================================== --- gcc/fortran/Make-lang.in (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/fortran/Make-lang.in (.../branches/gcc-4_3-branch) (revision 133808) @@ -149,7 +149,7 @@ $(srcdir)/fortran/intrinsic.texi \ $(srcdir)/fortran/invoke.texi \ $(srcdir)/doc/include/fdl.texi \ - $(srcdir)/doc/include/gpl.texi \ + $(srcdir)/doc/include/gpl_v3.texi \ $(srcdir)/doc/include/funding.texi \ $(srcdir)/doc/include/gcc-common.texi \ gcc-vers.texi Index: gcc/fortran/ChangeLog =================================================================== --- gcc/fortran/ChangeLog (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/fortran/ChangeLog (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,3 +1,49 @@ +2008-04-01 Joseph Myers + + * gfortran.texi: Include gpl_v3.texi instead of gpl.texi + * Make-lang.in (GFORTRAN_TEXI): Include gpl_v3.texi instead of + gpl.texi. + +2008-03-30 Paul Thomas + + PR fortran/35740 + * resolve.c (resolve_function, resolve_call): If the procedure + is elemental do not look for noncopying intrinsics. + +2008-03-29 Paul Thomas + + PR fortran/35698 + * trans-array.c (gfc_array_init_size): Set 'size' zero if + negative in one dimension. + + PR fortran/35702 + * trans-expr.c (gfc_trans_string_copy): Only assign a char + directly if the lhs and rhs types are the same. + +2008-03-27 Jerry DeLisle + + PR fortran/35724 + * iresolve.c (gfc_resolve_cshift): Check for NULL symtree in + test for optional argument attribute. + +2008-03-24 Paul Thomas + + PR fortran/34813 + * resolve.c (resolve_structure_cons): It is an error to assign + NULL to anything other than a pointer or allocatable component. + + PR fortran/33295 + * resolve.c (resolve_symbol): If the symbol is a derived type, + resolve the derived type. If the symbol is a derived type + function, ensure that the derived type is visible in the same + namespace as the function. + +2008-03-14 Paul Thomas + + PR fortran/35474 + * module.c (mio_symtree_ref): After providing a symbol for a + missing equivalence member, resolve and NULL the fixups. + 2008-03-05 Release Manager * GCC 4.3.0 released. Index: gcc/fortran/module.c =================================================================== --- gcc/fortran/module.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/fortran/module.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -2310,6 +2310,12 @@ p->u.rsym.symtree->n.sym = p->u.rsym.sym; p->u.rsym.symtree->n.sym->refs++; p->u.rsym.referenced = 1; + + /* If the symbol is PRIVATE and in COMMON, load_commons will + generate a fixup symbol, which must be associated. */ + if (p->fixup) + resolve_fixups (p->fixup, p->u.rsym.sym); + p->fixup = NULL; } if (p->type == P_UNKNOWN) Index: gcc/fortran/resolve.c =================================================================== --- gcc/fortran/resolve.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/fortran/resolve.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -827,6 +827,16 @@ t = gfc_convert_type (cons->expr, &comp->ts, 1); } + if (cons->expr->expr_type == EXPR_NULL + && !(comp->pointer || comp->allocatable)) + { + t = FAILURE; + gfc_error ("The NULL in the derived type constructor at %L is " + "being applied to component '%s', which is neither " + "a POINTER nor ALLOCATABLE", &cons->expr->where, + comp->name); + } + if (!comp->pointer || cons->expr->expr_type == EXPR_NULL) continue; @@ -2365,7 +2375,12 @@ gfc_expr_set_symbols_referenced (expr->ts.cl->length); } - if (t == SUCCESS) + if (t == SUCCESS + && !((expr->value.function.esym + && expr->value.function.esym->attr.elemental) + || + (expr->value.function.isym + && expr->value.function.isym->elemental))) find_noncopying_intrinsics (expr->value.function.esym, expr->value.function.actual); @@ -2836,7 +2851,7 @@ if (resolve_elemental_actual (NULL, c) == FAILURE) return FAILURE; - if (t == SUCCESS) + if (t == SUCCESS && !(c->resolved_sym && c->resolved_sym->attr.elemental)) find_noncopying_intrinsics (c->resolved_sym, c->ext.actual); return t; } @@ -7974,6 +7989,29 @@ return; } + /* Make sure that the derived type has been resolved and that the + derived type is visible in the symbol's namespace, if it is a + module function and is not PRIVATE. */ + if (sym->ts.type == BT_DERIVED + && sym->ts.derived->attr.use_assoc + && sym->ns->proc_name->attr.flavor == FL_MODULE) + { + gfc_symbol *ds; + + if (resolve_fl_derived (sym->ts.derived) == FAILURE) + return; + + gfc_find_symbol (sym->ts.derived->name, sym->ns, 1, &ds); + if (!ds && sym->attr.function + && gfc_check_access (sym->attr.access, sym->ns->default_access)) + { + symtree = gfc_new_symtree (&sym->ns->sym_root, + sym->ts.derived->name); + symtree->n.sym = sym->ts.derived; + sym->ts.derived->refs++; + } + } + /* Unless the derived-type declaration is use associated, Fortran 95 does not allow public entries of private derived types. See 4.4.1 (F95) and 4.5.1.1 (F2003); and related interpretation Index: gcc/fortran/iresolve.c =================================================================== --- gcc/fortran/iresolve.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/fortran/iresolve.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -592,7 +592,8 @@ if (dim != NULL) { - if (dim->expr_type != EXPR_CONSTANT && dim->symtree->n.sym->attr.optional) + if (dim->expr_type != EXPR_CONSTANT && dim->symtree != NULL + && dim->symtree->n.sym->attr.optional) { /* Mark this for later setting the type in gfc_conv_missing_dummy. */ dim->representation.length = shift->ts.kind; Index: gcc/BASE-VER =================================================================== --- gcc/BASE-VER (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/BASE-VER (.../branches/gcc-4_3-branch) (revision 133808) @@ -1 +1 @@ -4.3.0 +4.3.1 Index: gcc/alias.c =================================================================== --- gcc/alias.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/alias.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -164,7 +164,6 @@ static bool nonoverlapping_component_refs_p (const_tree, const_tree); static tree decl_for_component_ref (tree); static rtx adjust_offset_for_component_ref (tree, rtx); -static int nonoverlapping_memrefs_p (const_rtx, const_rtx); static int write_dependence_p (const_rtx, const_rtx, int); static void memory_modified_1 (rtx, const_rtx, void *); @@ -1976,7 +1975,7 @@ /* Return nonzero if we can determine the exprs corresponding to memrefs X and Y and they do not overlap. */ -static int +int nonoverlapping_memrefs_p (const_rtx x, const_rtx y) { tree exprx = MEM_EXPR (x), expry = MEM_EXPR (y); Index: gcc/alias.h =================================================================== --- gcc/alias.h (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/alias.h (.../branches/gcc-4_3-branch) (revision 133808) @@ -28,6 +28,7 @@ extern alias_set_type get_frame_alias_set (void); extern bool component_uses_parent_alias_set (const_tree); extern bool alias_set_subset_of (alias_set_type, alias_set_type); +extern int nonoverlapping_memrefs_p (const_rtx, const_rtx); /* This alias set can be used to force a memory to conflict with all other memories, creating a barrier across which no memory reference Index: gcc/gimplify.c =================================================================== --- gcc/gimplify.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/gimplify.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -5464,7 +5464,11 @@ expr = TREE_OPERAND (expr, 0); addr = TREE_OPERAND (addr, 0); } - return expr == addr; + if (expr == addr) + return true; + return (TREE_CODE (addr) == ADDR_EXPR + && TREE_CODE (expr) == ADDR_EXPR + && TREE_OPERAND (addr, 0) == TREE_OPERAND (expr, 0)); } if (TREE_CODE (addr) == ADDR_EXPR && expr == TREE_OPERAND (addr, 0)) return true; @@ -6018,12 +6022,18 @@ case OMP_RETURN: case OMP_CONTINUE: - case OMP_ATOMIC_LOAD: - case OMP_ATOMIC_STORE: - + case OMP_ATOMIC_STORE: ret = GS_ALL_DONE; break; + case OMP_ATOMIC_LOAD: + if (gimplify_expr (&TREE_OPERAND (*expr_p, 1), pre_p, NULL, + is_gimple_val, fb_rvalue) != GS_ALL_DONE) + ret = GS_ERROR; + else + ret = GS_ALL_DONE; + break; + case POINTER_PLUS_EXPR: /* Convert ((type *)A)+offset into &A->field_of_type_and_offset. The second is gimple immediate saving a need for extra statement. Index: gcc/calls.c =================================================================== --- gcc/calls.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/calls.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -2326,7 +2326,7 @@ int save_pending_stack_adjust = 0; int save_stack_pointer_delta = 0; rtx insns; - rtx before_call, next_arg_reg; + rtx before_call, next_arg_reg, after_args; if (pass == 0) { @@ -2756,6 +2756,7 @@ use_reg (&call_fusage, struct_value); } + after_args = get_last_insn (); funexp = prepare_call_address (funexp, static_chain_value, &call_fusage, reg_parm_seen, pass == 0); @@ -2790,6 +2791,13 @@ next_arg_reg, valreg, old_inhibit_defer_pop, call_fusage, flags, & args_so_far); + /* If the call setup or the call itself overlaps with anything + of the argument setup we probably clobbered our call address. + In that case we can't do sibcalls. */ + if (pass == 0 + && check_sibcall_argument_overlap (after_args, 0, 0)) + sibcall_failure = 1; + /* If a non-BLKmode value is returned at the most significant end of a register, shift the register right by the appropriate amount and update VALREG accordingly. BLKmode values are handled by the Index: gcc/expmed.c =================================================================== --- gcc/expmed.c (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/expmed.c (.../branches/gcc-4_3-branch) (revision 133808) @@ -1339,18 +1339,15 @@ || (offset * BITS_PER_UNIT % bitsize == 0 && MEM_ALIGN (op0) % bitsize == 0))))) { - if (mode1 != GET_MODE (op0)) + if (MEM_P (op0)) + op0 = adjust_address (op0, mode1, offset); + else if (mode1 != GET_MODE (op0)) { - if (MEM_P (op0)) - op0 = adjust_address (op0, mode1, offset); - else - { - rtx sub = simplify_gen_subreg (mode1, op0, GET_MODE (op0), - byte_offset); - if (sub == NULL) - goto no_subreg_mode_swap; - op0 = sub; - } + rtx sub = simplify_gen_subreg (mode1, op0, GET_MODE (op0), + byte_offset); + if (sub == NULL) + goto no_subreg_mode_swap; + op0 = sub; } if (mode1 != mode) return convert_to_mode (tmode, op0, unsignedp); Index: gcc/po/ca.po =================================================================== --- gcc/po/ca.po (.../tags/gcc_4_3_0_release) (revision 133808) +++ gcc/po/ca.po (.../branches/gcc-4_3-branch) (revision 133808) @@ -1,37932 +0,0 @@ -# translation of gcc-3.4.3-ca.po to Catalan -# Catalan translation of gcc. -# Copyright (C) 2004 Free Software Foundation, Inc. -# This file is distributed under the same license as the gcc package. -# Gilles MATEU , 2002. -# Gilles MATEU , 2003. -# Gilles MATEU , 2004. -# Jordi Mas i Hernandez , 2004 -# Antoni Bella Prez , 2004 -# Gilles MATEU , 2004 -# David Poblador , 2004 -# -# -# Aquest fitxer t errades ortogrfiques, sinttiques, i de traducci greus. -# A 31/10/2004 vaig aplicar correccions importants, per s'hauria de revisar -# el fitxer completament. -# -# - Proposo a ms no traduir les ordres de llenguatge C. Per exemple, no traduir -# 'case' per 'cas' ni cap altre ordre del llenguatge C. -# -# - Proposo escriure els mots que sigui ordre del llenguatge entre de la segent manera: -# case (per indicar que es textual) -# -# Cal molta feina en aquest fitxer. Jordi 05/11/2004 -# -# -msgid "" -msgstr "" -"Project-Id-Version: gcc 3.4.3\n" -"Report-Msgid-Bugs-To: http://gcc.gnu.org/bugs.html\n" -"POT-Creation-Date: 2007-11-08 21:09+0000\n" -"PO-Revision-Date: 2004-11-10 00:42+0000\n" -"Last-Translator: Mateu Gilles \n" -"Language-Team: Catalan \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=iso-8859-1\n" -"Content-Transfer-Encoding: 8bit\n" - -#: c-decl.c:3814 -msgid "" -msgstr "" - -#: c-format.c:357 c-format.c:381 -#, fuzzy -msgid "' ' flag" -msgstr "opci \" \"" - -#: c-format.c:357 c-format.c:381 -#, fuzzy -msgid "the ' ' printf flag" -msgstr "l'opci \" \" de printf" - -#: c-format.c:358 c-format.c:382 c-format.c:416 c-format.c:428 c-format.c:487 -#, fuzzy -msgid "'+' flag" -msgstr "opci \"+\"" - -#: c-format.c:358 c-format.c:382 c-format.c:416 c-format.c:428 -#, fuzzy -msgid "the '+' printf flag" -msgstr "l'opci \"+\" de printf" - -#: c-format.c:359 c-format.c:383 c-format.c:429 c-format.c:463 -#, fuzzy -msgid "'#' flag" -msgstr "opci \"#\"" - -#: c-format.c:359 c-format.c:383 c-format.c:429 -#, fuzzy -msgid "the '#' printf flag" -msgstr "l'opci \"#\" de printf" - -#: c-format.c:360 c-format.c:384 c-format.c:461 -#, fuzzy -msgid "'0' flag" -msgstr "opci \"0\"" - -#: c-format.c:360 c-format.c:384 -#, fuzzy -msgid "the '0' printf flag" -msgstr "l'opci \"0\" de printf" - -#: c-format.c:361 c-format.c:385 c-format.c:460 c-format.c:490 -#, fuzzy -msgid "'-' flag" -msgstr "opci \"-\"" - -#: c-format.c:361 c-format.c:385 -#, fuzzy -msgid "the '-' printf flag" -msgstr "l'opci \"-\" de printf" - -#: c-format.c:362 c-format.c:443 -#, fuzzy -msgid "''' flag" -msgstr "opci \"'\"" - -#: c-format.c:362 -#, fuzzy -msgid "the ''' printf flag" -msgstr "l'opci \"'\" de printf" - -#: c-format.c:363 c-format.c:444 -#, fuzzy -msgid "'I' flag" -msgstr "opci \"'\"" - -#: c-format.c:363 -#, fuzzy -msgid "the 'I' printf flag" -msgstr "l'opci \"'\" de printf" - -#: c-format.c:364 c-format.c:386 c-format.c:441 c-format.c:464 c-format.c:491 -#: c-format.c:1623 config/sol2-c.c:45 -msgid "field width" -msgstr "amplria de camp" - -#: c-format.c:364 c-format.c:386 config/sol2-c.c:45 -msgid "field width in printf format" -msgstr "amplria de camp en format printf" - -#: c-format.c:365 c-format.c:387 c-format.c:418 c-format.c:431 -msgid "precision" -msgstr "precisi" - -#: c-format.c:365 c-format.c:387 c-format.c:418 c-format.c:431 -msgid "precision in printf format" -msgstr "precisi en format printf" - -#: c-format.c:366 c-format.c:388 c-format.c:419 c-format.c:432 c-format.c:442 -#: c-format.c:494 config/sol2-c.c:46 -msgid "length modifier" -msgstr "modificador de longitud" - -#: c-format.c:366 c-format.c:388 c-format.c:419 c-format.c:432 -#: config/sol2-c.c:46 -msgid "length modifier in printf format" -msgstr "modificador de longitud en format printf" - -#: c-format.c:417 c-format.c:430 -#, fuzzy -msgid "'q' flag" -msgstr "opci \"'\"" - -#: c-format.c:417 c-format.c:430 -#, fuzzy -msgid "the 'q' diagnostic flag" -msgstr "l'opci \"'\" de printf" - -#: c-format.c:438 -msgid "assignment suppression" -msgstr "supressi de l'assignaci" - -#: c-format.c:438 -msgid "the assignment suppression scanf feature" -msgstr "la supressi de l'assignaci s una caracterstica de scanf" - -#: c-format.c:439 -#, fuzzy -msgid "'a' flag" -msgstr "opci \"'\"" - -#: c-format.c:439 -#, fuzzy -msgid "the 'a' scanf flag" -msgstr "l'opci \"a\" de scanf" - -#: c-format.c:440 -#, fuzzy -msgid "'m' flag" -msgstr "opci \"'\"" - -#: c-format.c:440 -#, fuzzy -msgid "the 'm' scanf flag" -msgstr "l'opci \"'\" de scanf" - -#: c-format.c:441 -msgid "field width in scanf format" -msgstr "amplria de camp en format scanf" - -#: c-format.c:442 -msgid "length modifier in scanf format" -msgstr "modificador de longitud en format scanf" - -#: c-format.c:443 -#, fuzzy -msgid "the ''' scanf flag" -msgstr "l'opci \"'\" de scanf" - -#: c-format.c:444 -#, fuzzy -msgid "the 'I' scanf flag" -msgstr "l'opci \"'\" de scanf" - -#: c-format.c:459 -#, fuzzy -msgid "'_' flag" -msgstr "opci \"'\"" - -#: c-format.c:459 -#, fuzzy -msgid "the '_' strftime flag" -msgstr "l'opci \"_\" de strftime" - -#: c-format.c:460 -#, fuzzy -msgid "the '-' strftime flag" -msgstr "l'opci \"-\" de strftime" - -#: c-format.c:461 -#, fuzzy -msgid "the '0' strftime flag" -msgstr "l'opci \"0\" de strftime" - -#: c-format.c:462 c-format.c:486 -#, fuzzy -msgid "'^' flag" -msgstr "opci \"'\"" - -#: c-format.c:462 -#, fuzzy -msgid "the '^' strftime flag" -msgstr "l'opci \"^\" de strftime" - -#: c-format.c:463 -#, fuzzy -msgid "the '#' strftime flag" -msgstr "l'opci \"#\" de strftime" - -#: c-format.c:464 -msgid "field width in strftime format" -msgstr "amplria de camp en format strftime" - -#: c-format.c:465 -#, fuzzy -msgid "'E' modifier" -msgstr "modificador \"E\"" - -#: c-format.c:465 -#, fuzzy -msgid "the 'E' strftime modifier" -msgstr "el modificador \"E\" de strftime" - -#: c-format.c:466 -#, fuzzy -msgid "'O' modifier" -msgstr "modificador \"O\"" - -#: c-format.c:466 -#, fuzzy -msgid "the 'O' strftime modifier" -msgstr "el modificador \"O\" de strftime" - -#: c-format.c:467 -#, fuzzy -msgid "the 'O' modifier" -msgstr "el modificador \"O\"" - -#: c-format.c:485 -msgid "fill character" -msgstr "carcter de farciment" - -#: c-format.c:485 -msgid "fill character in strfmon format" -msgstr "carcter de farciment en format strfmon" - -#: c-format.c:486 -#, fuzzy -msgid "the '^' strfmon flag" -msgstr "l'opci \"^\" de strfmon" - -#: c-format.c:487 -#, fuzzy -msgid "the '+' strfmon flag" -msgstr "l'opci \"+\" de strfmon" - -#: c-format.c:488 -#, fuzzy -msgid "'(' flag" -msgstr "opci \"'\"" - -#: c-format.c:488 -#, fuzzy -msgid "the '(' strfmon flag" -msgstr "l'opci \"(\" de strfmon" - -#: c-format.c:489 -#, fuzzy -msgid "'!' flag" -msgstr "opci \"'\"" - -#: c-format.c:489 -#, fuzzy -msgid "the '!' strfmon flag" -msgstr "l'opci \"!\" de strfmon" - -#: c-format.c:490 -#, fuzzy -msgid "the '-' strfmon flag" -msgstr "l'opci \"-\" de strfmon" - -#: c-format.c:491 -msgid "field width in strfmon format" -msgstr "amplria de camp en format strfmon" - -#: c-format.c:492 -msgid "left precision" -msgstr "precisi esquerra" - -#: c-format.c:492 -msgid "left precision in strfmon format" -msgstr "precisi esquerra en format strfmon" - -#: c-format.c:493 -msgid "right precision" -msgstr "precisi de dreta" - -#: c-format.c:493 -msgid "right precision in strfmon format" -msgstr "precisi de dreta en format strfmon" - -#: c-format.c:494 -msgid "length modifier in strfmon format" -msgstr "modificador de longitud en format strfmon" - -#: c-format.c:1725 -msgid "field precision" -msgstr "precisi del camp" - -#: c-incpath.c:74 -#, c-format -msgid "ignoring duplicate directory \"%s\"\n" -msgstr "ignorant el directori duplicat \"%s\"\n" - -#: c-incpath.c:77 -#, c-format -msgid " as it is a non-system directory that duplicates a system directory\n" -msgstr " com s un directori que no s del sistema que duplica un directori del sistema\n" - -#: c-incpath.c:81 -#, c-format -msgid "ignoring nonexistent directory \"%s\"\n" -msgstr "ignorant el directori inexistent \"%s\"\n" - -#: c-incpath.c:344 -#, c-format -msgid "#include \"...\" search starts here:\n" -msgstr "la recerca de #include \"...\" s'inicia aqu:\n" - -#: c-incpath.c:348 -#, c-format -msgid "#include <...> search starts here:\n" -msgstr "la recerca de #include <...> s'inicia aqu:\n" - -#: c-incpath.c:353 -#, c-format -msgid "End of search list.\n" -msgstr "Fi de la llista de recerca.\n" - -#: c-opts.c:1484 -msgid "" -msgstr "" - -#: c-opts.c:1502 -#, fuzzy -msgid "" -msgstr "" - -#: c-typeck.c:2448 c-typeck.c:4851 c-typeck.c:4853 c-typeck.c:4861 -#: c-typeck.c:4891 c-typeck.c:6267 -msgid "initializer element is not constant" -msgstr "l'element de valor inicial no s constant" - -#: c-typeck.c:4654 -#, fuzzy -msgid "array initialized from parenthesized string constant" -msgstr "matriu de carcters amb valors inicials assignats d'una cadena ampla" - -#: c-typeck.c:4715 cp/typeck2.c:677 -#, gcc-internal-format -msgid "char-array initialized from wide string" -msgstr "matriu de carcters amb valors inicials assignats d'una cadena ampla" - -#: c-typeck.c:4720 -#, fuzzy -msgid "wchar_t-array initialized from non-wide string" -msgstr "matriu de carcters amb valors inicials assignats d'una cadena ampla" - -#: c-typeck.c:4738 cp/typeck2.c:697 -#, gcc-internal-format -msgid "initializer-string for array of chars is too long" -msgstr "la cadena de valors inicials per a la matriu de carcters s massa llarga" - -#: c-typeck.c:4744 -#, fuzzy -msgid "array of inappropriate type initialized from string constant" -msgstr "matriu de carcters amb valors inicials assignats d'una cadena ampla" - -#. ??? This should not be an error when inlining calls to -#. unprototyped functions. -#: c-typeck.c:4808 c-typeck.c:4333 cp/typeck.c:1528 -#, gcc-internal-format -msgid "invalid use of non-lvalue array" -msgstr "s no vlid de matriu no evaluada" - -#: c-typeck.c:4834 -msgid "array initialized from non-constant array expression" -msgstr "matriu amb valors inicials assignats d'una expressi matricial que no s constant" - -#: c-typeck.c:4898 c-typeck.c:6271 -#, gcc-internal-format -msgid "initializer element is not computable at load time" -msgstr "l'element de valor inicial no s calculable al moment de la crrega" - -#. 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:4909 c-decl.c:3222 c-decl.c:3237 -#, gcc-internal-format -msgid "variable-sized object may not be initialized" -msgstr "un objecte de grandria variable no pot tenir valor inicial" - -#: c-typeck.c:4913 -msgid "invalid initializer" -msgstr "valor inicial no vlid" - -#: c-typeck.c:5387 -msgid "extra brace group at end of initializer" -msgstr "grup extra de claus al final dels valors inicials" - -#: c-typeck.c:5407 -msgid "missing braces around initializer" -msgstr "falten claus al voltant dels valors inicials" - -#: c-typeck.c:5468 -msgid "braces around scalar initializer" -msgstr "claus al voltant del valor inicial escalar" - -#: c-typeck.c:5525 -msgid "initialization of flexible array member in a nested context" -msgstr "iniciaci d'un membre de matriu flexible en un context niat" - -#: c-typeck.c:5527 -msgid "initialization of a flexible array member" -msgstr "iniciaci d'un membre de matriu flexible" - -#: c-typeck.c:5554 -msgid "missing initializer" -msgstr "falta valor inicial" - -#: c-typeck.c:5576 -msgid "empty scalar initializer" -msgstr "valor inicial escalar buidor" - -#: c-typeck.c:5581 -msgid "extra elements in scalar initializer" -msgstr "elements extres en valor inicial escalar" - -#: c-typeck.c:5678 c-typeck.c:5738 -msgid "array index in non-array initializer" -msgstr "ndex de matriu en valor inicial que no s de matriu" - -#: c-typeck.c:5683 c-typeck.c:5791 -msgid "field name not in record or union initializer" -msgstr "el nom del camp no est en e l'inicialitzador de record o union" - -#: c-typeck.c:5729 -#, fuzzy -msgid "array index in initializer not of integer type" -msgstr "l'ndex de matriu en el valor inicial excedeix els lmits de la matriu" - -#: c-typeck.c:5734 c-typeck.c:5736 -msgid "nonconstant array index in initializer" -msgstr "ndex de matriu no constant en valor inicial" - -#: c-typeck.c:5740 c-typeck.c:5743 -msgid "array index in initializer exceeds array bounds" -msgstr "l'ndex de matriu en el valor inicial excedeix els lmits de la matriu" - -#: c-typeck.c:5754 -msgid "empty index range in initializer" -msgstr "lmits d'ndexs buits en valor inicial" - -#: c-typeck.c:5763 -msgid "array index range in initializer exceeds array bounds" -msgstr "els lmits d'ndexs de la matriu en el valor inicial excedeixen els lmits de la matriu" - -#: c-typeck.c:5838 c-typeck.c:5861 c-typeck.c:6335 -msgid "initialized field with side-effects overwritten" -msgstr "camp iniciat amb efectes laterals sobreescrits" - -#: c-typeck.c:5840 c-typeck.c:5863 c-typeck.c:6337 -#, fuzzy -msgid "initialized field overwritten" -msgstr "camp iniciat amb efectes laterals sobreescrits" - -#: c-typeck.c:6545 -msgid "excess elements in char array initializer" -msgstr "excs d'elements en valors inicials de matriu de carcters" - -#: c-typeck.c:6552 c-typeck.c:6598 -msgid "excess elements in struct initializer" -msgstr "excs d'elements en valors inicials de struct" - -#: c-typeck.c:6613 -msgid "non-static initialization of a flexible array member" -msgstr "iniciaci no esttica d'un membre de matriu flexible" - -#: c-typeck.c:6681 -msgid "excess elements in union initializer" -msgstr "excs d'elements en valors inicials d'union" - -#: c-typeck.c:6768 -msgid "excess elements in array initializer" -msgstr "excs d'elements en valors inicials de matriu" - -#: c-typeck.c:6798 -msgid "excess elements in vector initializer" -msgstr "excs d'elements en valor inicial vectorial" - -#: c-typeck.c:6822 -msgid "excess elements in scalar initializer" -msgstr "excs d'elements en valor inicial escalar" - -#: cfgrtl.c:1925 -msgid "flow control insn inside a basic block" -msgstr "control de fluix insn dintre el bloc bsic" - -#: cfgrtl.c:2054 -msgid "wrong insn in the fallthru edge" -msgstr "insn erroni en la vora del respatller" - -#: cfgrtl.c:2110 -msgid "insn outside basic block" -msgstr "insn fora del bloc bsic" - -#: cfgrtl.c:2117 -msgid "return not followed by barrier" -msgstr "return no s seguit per una barrera" - -#: cgraph.c:339 ipa-inline.c:417 -msgid "function body not available" -msgstr "la funci cso no s disponible" - -#: cgraph.c:341 cgraphbuild.c:96 -msgid "redefined extern inline functions are not considered for inlining" -msgstr "" - -#: cgraph.c:344 cgraphbuild.c:103 -msgid "function not considered for inlining" -msgstr "" - -#: cgraph.c:346 cgraphbuild.c:99 -msgid "function not inlinable" -msgstr "la funci no pot ser inline" - -#: cgraphbuild.c:101 -#, fuzzy -msgid "mismatched arguments" -msgstr "claus sense coincidncia en especificacions" - -#: collect2.c:378 gcc.c:6897 -#, fuzzy, c-format -msgid "internal gcc abort in %s, at %s:%d" -msgstr "aband en %s, en %s:%d" - -#: collect2.c:889 -#, c-format -msgid "no arguments" -msgstr "sense arguments" - -#: collect2.c:1263 collect2.c:1411 collect2.c:1446 -#, c-format -msgid "fopen %s" -msgstr "fopen %s" - -#: collect2.c:1266 collect2.c:1416 collect2.c:1449 -#, c-format -msgid "fclose %s" -msgstr "fclose %s" - -#: collect2.c:1275 -#, c-format -msgid "collect2 version %s" -msgstr "collect2 versi %s" - -#: collect2.c:1365 -#, c-format -msgid "%d constructor(s) found\n" -msgstr "es troba(en) %d constructor(s)\n" - -#: collect2.c:1366 -#, c-format -msgid "%d destructor(s) found\n" -msgstr "es troba(en) %d destructor(s)\n" - -#: collect2.c:1367 -#, c-format -msgid "%d frame table(s) found\n" -msgstr "es troba(en) %d marcs de matriu(es)\n" - -#: collect2.c:1504 -#, fuzzy, c-format -msgid "can't get program status" -msgstr "%s: %s: no es pot obtenir l'estat: %s\n" - -#: collect2.c:1573 -#, fuzzy, c-format -msgid "could not open response file %s" -msgstr "No es pot obrir el fitxer de codi font %s.\n" - -#: collect2.c:1578 -#, fuzzy, c-format -msgid "could not write to response file %s" -msgstr "No es pot trobar el fitxer d'especificacions %s\n" - -#: collect2.c:1583 -#, fuzzy, c-format -msgid "could not close response file %s" -msgstr "No es pot obrir el fitxer de codi font %s.\n" - -#: collect2.c:1601 -#, c-format -msgid "[cannot find %s]" -msgstr "[no es pot trobar %s]" - -#: collect2.c:1616 -#, fuzzy, c-format -msgid "cannot find '%s'" -msgstr "no es pot trobar \"%s\"" - -#: collect2.c:1620 collect2.c:2112 collect2.c:2267 gcc.c:2978 -#, c-format -msgid "pex_init failed" -msgstr "" - -#: collect2.c:1658 -#, c-format -msgid "[Leaving %s]\n" -msgstr "[Deixant %s]\n" - -#: collect2.c:1878 -#, c-format -msgid "" -"\n" -"write_c_file - output name is %s, prefix is %s\n" -msgstr "" -"\n" -"write_c_file - el nom de sortida s %s, el prefix s %s\n" - -#: collect2.c:2086 -#, fuzzy, c-format -msgid "cannot find 'nm'" -msgstr "no es pot trobar \"nm\"" - -#: collect2.c:2133 -#, fuzzy, c-format -msgid "can't open nm output" -msgstr "no es pot obrir %s" - -#: collect2.c:2177 -#, c-format -msgid "init function found in object %s" -msgstr "es va trobar la funci init en l'objecte %s" - -#: collect2.c:2185 -#, c-format -msgid "fini function found in object %s" -msgstr "es va trobar la funci fini en l'objecte %s" - -#: collect2.c:2288 -#, fuzzy, c-format -msgid "can't open ldd output" -msgstr "no es pot obrir %s" - -#: collect2.c:2291 -#, c-format -msgid "" -"\n" -"ldd output with constructors/destructors.\n" -msgstr "" -"\n" -"sortida de ldd amb constructors/destructors.\n" - -#: collect2.c:2306 -#, c-format -msgid "dynamic dependency %s not found" -msgstr "no es troba la dependncia dinmica %s" - -#: collect2.c:2318 -#, c-format -msgid "unable to open dynamic dependency '%s'" -msgstr "no es pot obrir la dependncia dinmica \"%s\"" - -#: collect2.c:2474 -#, c-format -msgid "%s: not a COFF file" -msgstr "%s: no s un fitxer COFF" - -#: collect2.c:2594 -#, c-format -msgid "%s: cannot open as COFF file" -msgstr "%s: no es pot obrir com un fitxer COFF" - -#: collect2.c:2652 -#, c-format -msgid "library lib%s not found" -msgstr "no es troba la biblioteca lib%s" - -#: cppspec.c:106 -#, c-format -msgid "\"%s\" is not a valid option to the preprocessor" -msgstr "\"%s\" no es una opci vlida per el preprocessador" - -#: cppspec.c:128 -#, c-format -msgid "too many input files" -msgstr "massa fitxers d'entrada" - -#: diagnostic.c:188 -#, c-format -msgid "%s:%d: confused by earlier errors, bailing out\n" -msgstr "%s:%d: confusi per errors precedentes, aband\n" - -#: diagnostic.c:235 -#, fuzzy, c-format -msgid "compilation terminated due to -Wfatal-errors.\n" -msgstr "compilaci acabada.\n" - -#: diagnostic.c:244 -#, c-format -msgid "" -"Please submit a full bug report,\n" -"with preprocessed source if appropriate.\n" -"See %s for instructions.\n" -msgstr "" -"Si us plau, envieu un informe d'error complet,\n" -"amb la font preprocessada si s oport.\n" -"Consulta %s per a les instruccions.\n" - -#: diagnostic.c:253 -#, c-format -msgid "compilation terminated.\n" -msgstr "compilaci acabada.\n" - -#: diagnostic.c:641 -#, c-format -msgid "Internal compiler error: Error reporting routines re-entered.\n" -msgstr "Error intern del compilador: Error al reportar rutines reentrades.\n" - -#: final.c:1136 -msgid "negative insn length" -msgstr "longitud insn negativa" - -#: final.c:2609 -msgid "could not split insn" -msgstr "no es pot separar insn" - -#: final.c:2979 -#, fuzzy -msgid "invalid 'asm': " -msgstr "\"asm\" no vlid: " - -#: final.c:3162 -#, c-format -msgid "nested assembly dialect alternatives" -msgstr "alternatives de dialecte d'ensamblador imbricades" - -#: final.c:3179 final.c:3191 -#, c-format -msgid "unterminated assembly dialect alternative" -msgstr "alternativa de dialecte d'ensamblador no terminada" - -#: final.c:3238 -#, c-format -msgid "operand number missing after %%-letter" -msgstr "falta nombre operand desprs de %%-letter" - -#: final.c:3241 final.c:3282 -#, c-format -msgid "operand number out of range" -msgstr "nombre operador fora de lmits" - -#: final.c:3301 -#, c-format -msgid "invalid %%-code" -msgstr "%%-codi no vlid" - -#: final.c:3331 -#, fuzzy, c-format -msgid "'%%l' operand isn't a label" -msgstr "l'operand \"%%l\" no s una etiqueta" - -#. 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:3433 vmsdbgout.c:487 config/i386/i386.c:8143 -#: config/pdp11/pdp11.c:1704 -#, c-format -msgid "floating constant misused" -msgstr "constant de coma flotant mal usada" - -#: final.c:3493 vmsdbgout.c:544 config/i386/i386.c:8224 -#: config/pdp11/pdp11.c:1751 -#, c-format -msgid "invalid expression as operand" -msgstr "expressi no vlida com a operand" - -#: gcc.c:1704 -#, c-format -msgid "Using built-in specs.\n" -msgstr "Usant especificacions internes.\n" - -#: gcc.c:1887 -#, c-format -msgid "" -"Setting spec %s to '%s'\n" -"\n" -msgstr "" -"Canviant l'especificaci de %s a \"%s\"\n" -"\n" - -#: gcc.c:2002 -#, c-format -msgid "Reading specs from %s\n" -msgstr "Llegint especificacions de %s\n" - -#: gcc.c:2098 gcc.c:2117 -#, c-format -msgid "specs %%include syntax malformed after %ld characters" -msgstr "specs sintaxi mal formada de %%include desprs de %ld carcters" - -#: gcc.c:2125 -#, c-format -msgid "could not find specs file %s\n" -msgstr "No es pot trobar el fitxer d'especificacions %s\n" - -#: gcc.c:2142 gcc.c:2150 gcc.c:2159 gcc.c:2168 -#, c-format -msgid "specs %%rename syntax malformed after %ld characters" -msgstr "specs sintaxi mal formada de %%rename desprs de %ld carcters" - -#: gcc.c:2177 -#, c-format -msgid "specs %s spec was not found to be renamed" -msgstr "specs l'especificaci %s no es va trobar per a ser re-nomenada" - -#: gcc.c:2184 -#, c-format -msgid "%s: attempt to rename spec '%s' to already defined spec '%s'" -msgstr "" - -#: gcc.c:2189 -#, c-format -msgid "rename spec %s to %s\n" -msgstr "re-nomenada especificaci %s a %s\n" - -#: gcc.c:2191 -#, c-format -msgid "" -"spec is '%s'\n" -"\n" -msgstr "" -"la especificaci s \"%s\"\n" -"\n" - -#: gcc.c:2204 -#, c-format -msgid "specs unknown %% command after %ld characters" -msgstr "specs ordre %% desconegut desprs de %ld carcters" - -#: gcc.c:2215 gcc.c:2228 -#, c-format -msgid "specs file malformed after %ld characters" -msgstr "specs fitxer mal format desprs de %ld carcters" - -#: gcc.c:2281 -#, c-format -msgid "spec file has no spec for linking" -msgstr "el fitxer d'especificacions no t especificacions per a enllaar" - -#: gcc.c:2609 gcc.c:4751 -#, c-format -msgid "%s\n" -msgstr "%s\n" - -#: gcc.c:2809 -#, fuzzy, c-format -msgid "system path '%s' is not absolute" -msgstr "la reservaci \"%s\" no s'utilitza" - -#: gcc.c:2872 -#, c-format -msgid "-pipe not supported" -msgstr "-pipe no t suport" - -#: gcc.c:2934 -#, c-format -msgid "" -"\n" -"Go ahead? (y or n) " -msgstr "" -"\n" -"Continuar? (s o n) " - -#: gcc.c:3017 -#, fuzzy -msgid "failed to get exit status" -msgstr "ld va retornar l'estat de sortida %d" - -#: gcc.c:3023 -msgid "failed to get process times" -msgstr "" - -#: gcc.c:3049 -#, c-format -msgid "" -"Internal error: %s (program %s)\n" -"Please submit a full bug report.\n" -"See %s for instructions." -msgstr "" -"Error intern: %s (programa %s)\n" -"Per favor envieu un informe complet d'error.\n" -"Consulta %s per a ms instruccions." - -#: gcc.c:3075 -#, c-format -msgid "# %s %.2f %.2f\n" -msgstr "# %s %.2f %.2f\n" - -#: gcc.c:3211 -#, c-format -msgid "Usage: %s [options] file...\n" -msgstr "Utilitzaci: %s [opcions] fitxer...\n" - -#: gcc.c:3212 -msgid "Options:\n" -msgstr "Opcions:\n" - -#: gcc.c:3214 -msgid " -pass-exit-codes Exit with highest error code from a phase\n" -msgstr " -pass-exit-codes Sortir amb el codi d'error ms alt d'una fase\n" - -#: gcc.c:3215 -msgid " --help Display this information\n" -msgstr " --help Mostra aquesta informaci\n" - -#: gcc.c:3216 -msgid " --target-help Display target specific command line options\n" -msgstr "" -" --target-help Mostra opcions de lnia d'ordres especfiques de\n" -" l'objectiu\n" - -#: gcc.c:3217 -msgid " --help={target|optimizers|warnings|undocumented|params}[,{[^]joined|[^]separate}]\n" -msgstr "" - -#: gcc.c:3218 -#, fuzzy -msgid " Display specific types of command line options\n" -msgstr "" -" --target-help Mostra opcions de lnia d'ordres especfiques de\n" -" l'objectiu\n" - -#: gcc.c:3220 -msgid " (Use '-v --help' to display command line options of sub-processes)\n" -msgstr " (Usi \"-v --help\" per a mostrar les opcions de lnia d'ordres dels subprocs)\n" - -#: gcc.c:3221 -msgid " -dumpspecs Display all of the built in spec strings\n" -msgstr " -dumpspecs Mostra totes les cadenes internes d'especificaci\n" - -#: gcc.c:3222 -msgid " -dumpversion Display the version of the compiler\n" -msgstr " -dumpversion Mostra la versi del compilador\n" - -#: gcc.c:3223 -msgid " -dumpmachine Display the compiler's target processor\n" -msgstr " -dumpmachine Mostra el processador objectiu del compilador\n" - -#: gcc.c:3224 -msgid " -print-search-dirs Display the directories in the compiler's search path\n" -msgstr "" -" -print-search-dirs Mostra els directoris en la ruta de recerca del\n" -" compilador\n" - -#: gcc.c:3225 -msgid " -print-libgcc-file-name Display the name of the compiler's companion library\n" -msgstr "" -" -print-libgcc-file-name Mostra el nom de la biblioteca que acompanya el\n" -" compilador\n" - -#: gcc.c:3226 -msgid " -print-file-name= Display the full path to library \n" -msgstr " -print-file-name= Mostra la ruta completa a la biblioteca \n" - -#: gcc.c:3227 -msgid " -print-prog-name= Display the full path to compiler component \n" -msgstr "" -" -print-prog-name= Mostra la ruta completa del programa component del\n" -" compilador \n" - -#: gcc.c:3228 -msgid " -print-multi-directory Display the root directory for versions of libgcc\n" -msgstr " -print-multi-directory Mostra el directori arrel per a versoins de libgcc\n" - -#: gcc.c:3229 -msgid "" -" -print-multi-lib Display the mapping between command line options and\n" -" multiple library search directories\n" -msgstr "" -" -print-multi-lib Mostra el mapatge entre les opcions de lnia\n" -" d'ordres i els mltiples directoris de la recerca\n" -" de biblioteques\n" - -#: gcc.c:3232 -msgid " -print-multi-os-directory Display the relative path to OS libraries\n" -msgstr " -print-multi-os-directory Mostra la ruta relativa per a les biblioteques del SO\n" - -#: gcc.c:3233 -msgid " -print-sysroot-headers-suffix Display the sysroot suffix used to find headers\n" -msgstr "" - -#: gcc.c:3234 -msgid " -Wa, Pass comma-separated on to the assembler\n" -msgstr " -Wa, Passa separades per coma al ensamblador\n" - -#: gcc.c:3235 -msgid " -Wp, Pass comma-separated on to the preprocessor\n" -msgstr " -Wp, Passa separades per coma al preprocesador\n" - -#: gcc.c:3236 -msgid " -Wl, Pass comma-separated on to the linker\n" -msgstr " -Wl, Passa separades per coma al enllaador\n" - -#: gcc.c:3237 -msgid " -Xassembler Pass on to the assembler\n" -msgstr " -Xassembler Passa al ensamblador\n" - -#: gcc.c:3238 -msgid " -Xpreprocessor Pass on to the preprocessor\n" -msgstr " -Xpreprocessor Passa el al preprocesador\n" - -#: gcc.c:3239 -msgid " -Xlinker Pass on to the linker\n" -msgstr " -Xlinker Passa el al enllaador\n" - -#: gcc.c:3240 -#, fuzzy -msgid " -combine Pass multiple source files to compiler at once\n" -msgstr " -o Colloca la sortida en el \n" - -#: gcc.c:3241 -msgid " -save-temps Do not delete intermediate files\n" -msgstr " -save-temps No esborra els fitxers intermedis\n" - -#: gcc.c:3242 -msgid " -pipe Use pipes rather than intermediate files\n" -msgstr " -pipe Usa canonades en lloc de fitxers intermedis\n" - -#: gcc.c:3243 -msgid " -time Time the execution of each subprocess\n" -msgstr " -time Obt el temps d'execuci de cada subprocs\n" - -#: gcc.c:3244 -msgid " -specs= Override built-in specs with the contents of \n" -msgstr "" -" -specs= Sobreposa les especificacions internes amb el\n" -" contingut de \n" - -#: gcc.c:3245 -msgid " -std= Assume that the input sources are for \n" -msgstr "" -" -std= Assumeix qu'els fitxers d'entrada sn per a el\n" -" \n" - -#: gcc.c:3246 -msgid "" -" --sysroot= Use as the root directory for headers\n" -" and libraries\n" -msgstr "" - -#: gcc.c:3249 -msgid " -B Add to the compiler's search paths\n" -msgstr "" -" -B Agrega el a les rutes de recerca del\n" -" compilador\n" - -#: gcc.c:3250 -msgid " -b Run gcc for target , if installed\n" -msgstr "" -" -b Executa gcc per a l'objectiu ,\n" -" si va ser installat\n" - -#: gcc.c:3251 -msgid " -V Run gcc version number , if installed\n" -msgstr "" -" -V Executa el gcc amb nombre de versi ,\n" -" si va ser installat\n" - -#: gcc.c:3252 -msgid " -v Display the programs invoked by the compiler\n" -msgstr " -v Mostra els programes invocats pel compilador\n" - -#: gcc.c:3253 -msgid " -### Like -v but options quoted and commands not executed\n" -msgstr "" -" -### Com -v per les opcions i ordres entr \"\" no estan\n" -" executades\n" - -#: gcc.c:3254 -msgid " -E Preprocess only; do not compile, assemble or link\n" -msgstr " -E Solament preprocessa; no compila, ensambla o enllaa\n" - -#: gcc.c:3255 -msgid " -S Compile only; do not assemble or link\n" -msgstr " -S Solament compila; no ensambla o enllaa\n" - -#: gcc.c:3256 -msgid " -c Compile and assemble, but do not link\n" -msgstr " -c Compila i ensambla, per no enllaa\n" - -#: gcc.c:3257 -msgid " -o Place the output into \n" -msgstr " -o Colloca la sortida en el \n" - -#: gcc.c:3258 -msgid "" -" -x 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 "" -" -x Especifica el llenguatge dels segents fitxers d''\n" -" entrada. Els llenguatges permesos inclouen: c c++\n" -" assembler none. \"none\" significa revertir a la\n" -" conducta habitual de endevinar el llenguatge basat\n" -" en l'extensi del fitxer\n" - -#: gcc.c:3265 -#, 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 options must be used.\n" -msgstr "" -"\n" -"Les opcions que comencen amb -g, -f, -m, -O, -W, o --param es passen\n" -" automticament als varis subprocesos invocats per %s. Per passar altres\n" -" opcions a aquests processos es deuen usar les opcions -W\n" - -#: gcc.c:3389 -#, fuzzy, c-format -msgid "'-%c' option must have argument" -msgstr "l'opci \"-%c\" ha de tenir arguments" - -#: gcc.c:3411 -#, fuzzy, c-format -msgid "couldn't run '%s': %s" -msgstr "no s pot obrir %s" - -#. translate_options () has turned --version into -fversion. -#: gcc.c:3612 -#, fuzzy, c-format -msgid "%s %s%s\n" -msgstr "%s \"%s\"\n" - -#: gcc.c:3615 gcov.c:426 fortran/gfortranspec.c:380 java/jcf-dump.c:1168 -msgid "(C)" -msgstr "" - -#: gcc.c:3616 java/jcf-dump.c:1169 -#, 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 "" -"Aix s programari lliure; vegi el codi font per a les condicions de cpia.\n" -"No hi ha CAP garantia; ni tan sols de COMERCIABILITAT o\n" -"ADEQUACI A UN PROPSIT PARTICULAR.\n" - -#: gcc.c:3728 -#, fuzzy, c-format -msgid "argument to '-Xlinker' is missing" -msgstr "falta l'argument per a \"-Xlinker\"" - -#: gcc.c:3736 -#, fuzzy, c-format -msgid "argument to '-Xpreprocessor' is missing" -msgstr "falta l'argument per a \"-Xpreprocessor\"" - -#: gcc.c:3743 -#, fuzzy, c-format -msgid "argument to '-Xassembler' is missing" -msgstr "falta l'argument per a \"-Xassembler\"" - -#: gcc.c:3750 -#, fuzzy, c-format -msgid "argument to '-l' is missing" -msgstr "falta l'argument per a \"-I\"" - -#: gcc.c:3771 -#, fuzzy, c-format -msgid "argument to '-specs' is missing" -msgstr "falta l'argument per a \"-specs\"" - -#: gcc.c:3785 -#, fuzzy, c-format -msgid "argument to '-specs=' is missing" -msgstr "falta l'argument per a \"-specs=\"" - -#: gcc.c:3826 -#, c-format -msgid "'-%c' must come at the start of the command line" -msgstr "" - -#: gcc.c:3835 -#, fuzzy, c-format -msgid "argument to '-B' is missing" -msgstr "falta l'argument per a \"-B\"" - -#: gcc.c:4185 -#, fuzzy, c-format -msgid "argument to '-x' is missing" -msgstr "falta l'argument per a \"-x\"" - -#: gcc.c:4213 -#, fuzzy, c-format -msgid "argument to '-%s' is missing" -msgstr "falta l'argument per a \"-%s\"" - -#: gcc.c:4541 -#, c-format -msgid "switch '%s' does not start with '-'" -msgstr "" - -#: gcc.c:4685 -#, c-format -msgid "spec '%s' invalid" -msgstr "" - -#: gcc.c:4824 -#, fuzzy, c-format -msgid "spec '%s' has invalid '%%0%c'" -msgstr "el camp de bits \"%s\" t un tipus no vlid" - -#: gcc.c:5053 -#, fuzzy, c-format -msgid "could not open temporary response file %s" -msgstr "no es pot obrir el fitxer de dump \"%s\"" - -#: gcc.c:5059 -#, fuzzy, c-format -msgid "could not write to temporary response file %s" -msgstr "No es pot trobar el fitxer d'especificacions %s\n" - -#: gcc.c:5065 -#, fuzzy, c-format -msgid "could not close temporary response file %s" -msgstr "no es pot obrir el fitxer de dump \"%s\"" - -#: gcc.c:5099 -#, fuzzy, c-format -msgid "spec '%s' has invalid '%%W%c" -msgstr "el camp de bits \"%s\" t un tipus no vlid" - -#: gcc.c:5119 -#, fuzzy, c-format -msgid "spec '%s' has invalid '%%x%c'" -msgstr "el camp de bits \"%s\" t un tipus no vlid" - -#: gcc.c:5341 -#, c-format -msgid "Processing spec %c%s%c, which is '%s'\n" -msgstr "Processant l'especificaci %c%s%c, el qual s \"%s\"\n" - -#: gcc.c:5465 -#, fuzzy, c-format -msgid "unknown spec function '%s'" -msgstr "funci d'especificaci \"%s\" desconeguda" - -#: gcc.c:5484 -#, fuzzy, c-format -msgid "error in args to spec function '%s'" -msgstr "error en els arguments per a la funci d'especificaci \"%s\"" - -#: gcc.c:5532 -#, c-format -msgid "malformed spec function name" -msgstr "nom de la funci d'especificaci malformat" - -#. ) -#: gcc.c:5535 -#, c-format -msgid "no arguments for spec function" -msgstr "molt pocs arguments per a la funci spec" - -#: gcc.c:5554 -#, c-format -msgid "malformed spec function arguments" -msgstr "" - -#: gcc.c:5800 -#, c-format -msgid "braced spec '%s' is invalid at '%c'" -msgstr "" - -#: gcc.c:5888 -#, c-format -msgid "braced spec body '%s' is invalid" -msgstr "" - -#: gcc.c:6421 -#, c-format -msgid "install: %s%s\n" -msgstr "installar: %s%s\n" - -#: gcc.c:6424 -#, c-format -msgid "programs: %s\n" -msgstr "programes: %s\n" - -#: gcc.c:6426 -#, c-format -msgid "libraries: %s\n" -msgstr "biblioteques: %s\n" - -#. The error status indicates that only one set of fixed -#. headers should be built. -#: gcc.c:6480 -#, c-format -msgid "not configured with sysroot headers suffix" -msgstr "" - -#: gcc.c:6489 -#, c-format -msgid "" -"\n" -"For bug reporting instructions, please see:\n" -msgstr "" -"\n" -"Per a instruccions de report de bug, si us plau per favor vegi:\n" - -#: gcc.c:6505 -#, fuzzy, c-format -msgid "Target: %s\n" -msgstr "biblioteques: %s\n" - -#: gcc.c:6506 -#, c-format -msgid "Configured with: %s\n" -msgstr "Configurat amb: %s\n" - -#: gcc.c:6520 -#, c-format -msgid "Thread model: %s\n" -msgstr "Model de fils: %s\n" - -#: gcc.c:6531 -#, fuzzy, c-format -msgid "gcc version %s %s\n" -msgstr "gcc versi %s\n" - -#: gcc.c:6533 -#, fuzzy, c-format -msgid "gcc driver version %s %sexecuting gcc version %s\n" -msgstr "controlador gcc versi %s executant gcc versi %s\n" - -#: gcc.c:6541 -#, c-format -msgid "no input files" -msgstr "no hi ha fitxers d'entrada" - -#: gcc.c:6590 -#, fuzzy, c-format -msgid "cannot specify -o with -c or -S with multiple files" -msgstr "no es pot especificar -o amb -c o -S i mltiples llenguatges" - -#: gcc.c:6624 -#, fuzzy, c-format -msgid "spec '%s' is invalid" -msgstr "el parmetre \"%s\" t valor inicial" - -#: gcc.c:6760 -#, c-format -msgid "" -"\n" -"Linker options\n" -"==============\n" -"\n" -msgstr "" - -#: gcc.c:6761 -#, c-format -msgid "" -"Use \"-Wl,OPTION\" to pass \"OPTION\" to the linker.\n" -"\n" -msgstr "" - -#: gcc.c:7112 -#, fuzzy, c-format -msgid "multilib spec '%s' is invalid" -msgstr "l'argument de patr %d no s vlid" - -#: gcc.c:7303 -#, fuzzy, c-format -msgid "multilib exclusions '%s' is invalid" -msgstr "mltiples camps inicialitzats en la uni \"%#T\"" - -#: gcc.c:7361 gcc.c:7502 -#, fuzzy, c-format -msgid "multilib select '%s' is invalid" -msgstr "l'argument de patr %d no s vlid" - -#: gcc.c:7540 -#, fuzzy, c-format -msgid "multilib exclusion '%s' is invalid" -msgstr "mltiples camps inicialitzats en la uni \"%#T\"" - -#: gcc.c:7746 -#, fuzzy, c-format -msgid "environment variable \"%s\" not defined" -msgstr "no es va definir la variable d'ambient DJGPP" - -#: gcc.c:7837 gcc.c:7842 -#, fuzzy, c-format -msgid "invalid version number `%s'" -msgstr "opci \"%s\" no vlida" - -#: gcc.c:7885 -#, fuzzy, c-format -msgid "too few arguments to %%:version-compare" -msgstr "molt pocs arguments per a la funci" - -#: gcc.c:7891 -#, fuzzy, c-format -msgid "too many arguments to %%:version-compare" -msgstr "massa arguments per a la funci" - -#: gcc.c:7932 -#, c-format -msgid "unknown operator '%s' in %%:version-compare" -msgstr "" - -#: gcc.c:7966 -#, c-format -msgid "" -"Assembler options\n" -"=================\n" -"\n" -msgstr "" - -#: gcc.c:7967 -#, c-format -msgid "" -"Use \"-Wa,OPTION\" to pass \"OPTION\" to the assembler.\n" -"\n" -msgstr "" - -#: gcov.c:399 -#, fuzzy, c-format -msgid "" -"Usage: gcov [OPTION]... SOURCEFILE...\n" -"\n" -msgstr "" -"Us: gcov [OPCIO]... FITXERFONT\n" -"\n" - -#: gcov.c:400 -#, c-format -msgid "" -"Print code coverage information.\n" -"\n" -msgstr "" -"Escriure les informacions de la covertura del codi.\n" -"\n" - -#: gcov.c:401 -#, c-format -msgid " -h, --help Print this help, then exit\n" -msgstr " -h, --help Mostra aquesta informaci, i surt\n" - -#: gcov.c:402 -#, c-format -msgid " -v, --version Print version number, then exit\n" -msgstr " -v, --version Mostra el numero de versi, i surt\n" - -#: gcov.c:403 -#, c-format -msgid " -a, --all-blocks Show information for every basic block\n" -msgstr "" - -#: gcov.c:404 -#, c-format -msgid " -b, --branch-probabilities Include branch probabilities in output\n" -msgstr " -b, --branch-probabilities Incloure les probabilitats de brancament en la sortida\n" - -#: gcov.c:405 -#, c-format -msgid "" -" -c, --branch-counts Given counts of branches taken\n" -" rather than percentages\n" -msgstr "" -" -c, --branch-counts Dna el compte de branques preses\n" -" enlloc de percentatges\n" - -#: gcov.c:407 -#, c-format -msgid " -n, --no-output Do not create an output file\n" -msgstr " -n, --no-output No crea un fitxer de sortida\n" - -#: gcov.c:408 -#, c-format -msgid "" -" -l, --long-file-names Use long output file names for included\n" -" source files\n" -msgstr "" -" -l, --long-file-names Usar nom de fitxers de sortida llargs pels\n" -" fitxers font incls\n" - -#: gcov.c:410 -#, c-format -msgid " -f, --function-summaries Output summaries for each function\n" -msgstr " -f, --function-summaries Fer un resum per a cada funci\n" - -#: gcov.c:411 -#, c-format -msgid " -o, --object-directory DIR|FILE Search for object files in DIR or called FILE\n" -msgstr " -o, --object-directory DIR|FIT Cerca els fitxers objectes en DIR o el FITxer\n" - -#: gcov.c:412 -#, c-format -msgid " -p, --preserve-paths Preserve all pathname components\n" -msgstr "" - -#: gcov.c:413 -#, c-format -msgid " -u, --unconditional-branches Show unconditional branch counts too\n" -msgstr "" - -#: gcov.c:414 -#, c-format -msgid "" -"\n" -"For bug reporting instructions, please see:\n" -"%s.\n" -msgstr "" -"\n" -"Per a instrucions d'informe de bug, si us plau consulta:\n" -"%s.\n" - -#: gcov.c:424 -#, fuzzy, c-format -msgid "gcov %s%s\n" -msgstr "gcov (GCC) %s\n" - -#: gcov.c:428 -#, 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 "" -"Aix s programari lliure; vegi el codi font per a les condicions de cpia.\n" -"No hi ha CAP garantia; ni tan sols de COMERCIABILITAT o\n" -"ADEQUACI A UN PROPSIT PARTICULAR.\n" - -#: gcov.c:524 -#, c-format -msgid "%s:no functions found\n" -msgstr "%s:no es troben funcions\n" - -#: gcov.c:556 gcov.c:584 fortran/dump-parse-tree.c:63 -#, c-format -msgid "\n" -msgstr "\n" - -#: gcov.c:571 -#, fuzzy, c-format -msgid "%s:creating '%s'\n" -msgstr "%s:creant \"%s\"\n" - -#: gcov.c:575 -#, fuzzy, c-format -msgid "%s:error writing output file '%s'\n" -msgstr "%s:error escrivint al fitxer de sortida \"%s\"\n" - -#: gcov.c:580 -#, fuzzy, c-format -msgid "%s:could not open output file '%s'\n" -msgstr "%s:no es pot obrir el fitxer de sortida \"%s\"\n" - -#: gcov.c:729 -#, fuzzy, c-format -msgid "%s:source file is newer than graph file '%s'\n" -msgstr "%s:el fitxer font s ms nou qu'el fitxer graf \"%s\"\n" - -#: gcov.c:734 -#, c-format -msgid "(the message is only displayed one per source file)\n" -msgstr "" - -#: gcov.c:758 -#, c-format -msgid "%s:cannot open graph file\n" -msgstr "%s:no es pot obrir el fitxer de graf\n" - -#: gcov.c:764 -#, c-format -msgid "%s:not a gcov graph file\n" -msgstr "%s:no s un fitxer de graf gcov\n" - -#: gcov.c:777 -#, fuzzy, c-format -msgid "%s:version '%.4s', prefer '%.4s'\n" -msgstr "%s:versi \"%.4s\", prefereix \"%.4s\"\n" - -#: gcov.c:829 -#, fuzzy, c-format -msgid "%s:already seen blocks for '%s'\n" -msgstr "%s:no lnies per a \"%s\"\n" - -#: gcov.c:947 -#, c-format -msgid "%s:corrupted\n" -msgstr "%s:corromput\n" - -#: gcov.c:1023 -#, fuzzy, c-format -msgid "%s:cannot open data file, assuming not executed\n" -msgstr "%s:no es pot obrir el fitxer de dades\n" - -#: gcov.c:1030 -#, c-format -msgid "%s:not a gcov data file\n" -msgstr "%s:no s un fitxer de dades gcov\n" - -#: gcov.c:1043 -#, fuzzy, c-format -msgid "%s:version '%.4s', prefer version '%.4s'\n" -msgstr "%s:versi \"%.4s\", prefereix \"%.4s\"\n" - -#: gcov.c:1049 -#, c-format -msgid "%s:stamp mismatch with graph file\n" -msgstr "" - -#: gcov.c:1078 -#, fuzzy, c-format -msgid "%s:unknown function '%u'\n" -msgstr "%s:funci \"%u\" desconeguda\n" - -#: gcov.c:1091 -#, fuzzy, c-format -msgid "%s:profile mismatch for '%s'\n" -msgstr "%s:no lnies per a \"%s\"\n" - -#: gcov.c:1110 -#, c-format -msgid "%s:overflowed\n" -msgstr "%s:sobreeixit\n" - -#: gcov.c:1134 -#, c-format -msgid "%s:'%s' lacks entry and/or exit blocks\n" -msgstr "" - -#: gcov.c:1139 -#, c-format -msgid "%s:'%s' has arcs to entry block\n" -msgstr "" - -#: gcov.c:1147 -#, c-format -msgid "%s:'%s' has arcs from exit block\n" -msgstr "" - -#: gcov.c:1355 -#, fuzzy, c-format -msgid "%s:graph is unsolvable for '%s'\n" -msgstr "%s:no lnies per a \"%s\"\n" - -#: gcov.c:1435 -#, fuzzy, c-format -msgid "%s '%s'\n" -msgstr "%s \"%s\"\n" - -#: gcov.c:1438 -#, c-format -msgid "Lines executed:%s of %d\n" -msgstr "Es van executar %s de %d lnies\n" - -#: gcov.c:1442 -#, fuzzy, c-format -msgid "No executable lines\n" -msgstr "No hi ha lnies de codi font executable" - -#: gcov.c:1448 -#, c-format -msgid "Branches executed:%s of %d\n" -msgstr "%s de %d ramificacions executades\n" - -#: gcov.c:1452 -#, c-format -msgid "Taken at least once:%s of %d\n" -msgstr "%s de %d ramificacions visitades almenys una vegada\n" - -#: gcov.c:1458 -#, c-format -msgid "No branches\n" -msgstr "No hi ha ramificacions\n" - -#: gcov.c:1460 -#, c-format -msgid "Calls executed:%s of %d\n" -msgstr "%s de %d crides executades\n" - -#: gcov.c:1464 -#, c-format -msgid "No calls\n" -msgstr "No hi ha crides\n" - -#: gcov.c:1611 -#, fuzzy, c-format -msgid "%s:no lines for '%s'\n" -msgstr "%s:no lnies per a \"%s\"\n" - -#: gcov.c:1806 -#, c-format -msgid "call %2d returned %s\n" -msgstr "la crida %2d retorna %s\n" - -#: gcov.c:1811 -#, c-format -msgid "call %2d never executed\n" -msgstr "la crida %2d mai s'executa\n" - -#: gcov.c:1816 -#, c-format -msgid "branch %2d taken %s%s\n" -msgstr "ramificaci %2d presa %s%s\n" - -#: gcov.c:1820 -#, c-format -msgid "branch %2d never executed\n" -msgstr "la ramificaci %2d mai s'executa\n" - -#: gcov.c:1825 -#, c-format -msgid "unconditional %2d taken %s\n" -msgstr "incondicional %2d va prendre %s\n" - -#: gcov.c:1828 -#, c-format -msgid "unconditional %2d never executed\n" -msgstr "l'incondicional %2d mai s'executa\n" - -#: gcov.c:1864 -#, c-format -msgid "%s:cannot open source file\n" -msgstr "%s:no es pot obrir el fitxer font\n" - -#: gcse.c:685 -msgid "GCSE disabled" -msgstr "GCSE desactivat" - -#: gcse.c:6600 -msgid "jump bypassing disabled" -msgstr "evitaci de salts desactivada" - -#. Opening quotation mark. -#: intl.c:57 -msgid "`" -msgstr "" - -#. Closing quotation mark. -#: intl.c:60 -msgid "'" -msgstr "" - -#: ipa-inline.c:377 -msgid "--param large-function-growth limit reached" -msgstr "" - -#: ipa-inline.c:392 -msgid "--param large-stack-frame-growth limit reached" -msgstr "" - -#: ipa-inline.c:410 -#, fuzzy -msgid "function not inline candidate" -msgstr "la funci no pot ser inline" - -#: ipa-inline.c:426 -msgid "--param max-inline-insns-single limit reached" -msgstr "" - -#: ipa-inline.c:435 -msgid "--param max-inline-insns-auto limit reached" -msgstr "" - -#: ipa-inline.c:461 ipa-inline.c:914 ipa-inline.c:1105 ipa-inline.c:1225 -msgid "recursive inlining" -msgstr "" - -#: ipa-inline.c:922 -msgid "call is unlikely and code size would grow" -msgstr "" - -#: ipa-inline.c:925 -msgid "function not declared inline and code size would grow" -msgstr "" - -#: ipa-inline.c:927 -msgid "optimizing for size and code size would grow" -msgstr "" - -#: ipa-inline.c:1013 -msgid "--param inline-unit-growth limit reached" -msgstr "" - -#: langhooks.c:389 -msgid "At top level:" -msgstr "En el nivell principal:" - -#: langhooks.c:407 -#, fuzzy, c-format -msgid "In member function %qs" -msgstr "en la funci membre \"%s\":" - -#: langhooks.c:411 -#, fuzzy, c-format -msgid "In function %qs" -msgstr "En la funci \"%s\":" - -#: langhooks.c:461 -#, fuzzy, c-format -msgid " inlined from %qs at %s:%d:%d" -msgstr "En el fitxer incls de %s:%d" - -#: langhooks.c:467 -#, fuzzy, c-format -msgid " inlined from %qs at %s:%d" -msgstr "En el fitxer incls de %s:%d" - -#: langhooks.c:473 -#, fuzzy, c-format -msgid " inlined from %qs" -msgstr "En el fitxer incls des de %s:%u" - -#: loop-iv.c:2805 tree-ssa-loop-niter.c:1818 -msgid "assuming that the loop is not infinite" -msgstr "" - -#: loop-iv.c:2806 tree-ssa-loop-niter.c:1819 -msgid "cannot optimize possibly infinite loops" -msgstr "" - -#: loop-iv.c:2814 tree-ssa-loop-niter.c:1823 -msgid "assuming that the loop counter does not overflow" -msgstr "" - -#: loop-iv.c:2815 tree-ssa-loop-niter.c:1824 -msgid "cannot optimize loop, the loop counter may overflow" -msgstr "" - -#. What to print when a switch has no documentation. -#: opts.c:348 -msgid "This switch lacks documentation" -msgstr "" - -#: opts.c:1159 -msgid "[enabled]" -msgstr "" - -#: opts.c:1159 -#, fuzzy -msgid "[disabled]" -msgstr "GCSE desactivat" - -#: opts.c:1170 -#, c-format -msgid " No options with the desired characteristics were found\n" -msgstr "" - -#: opts.c:1172 -#, c-format -msgid " All options with the desired characteristics have already been displayed\n" -msgstr "" - -#: opts.c:1226 -msgid "The following options are target specific" -msgstr "" - -#: opts.c:1229 -msgid "The following options control compiler warning messages" -msgstr "" - -#: opts.c:1232 -#, fuzzy -msgid "The following options control optimizations" -msgstr "Realitzar les optimitzacions de cicle" - -#: opts.c:1235 opts.c:1273 -msgid "The following options are language-independent" -msgstr "" - -#: opts.c:1238 -msgid "The --param option recognizes the following as parameters" -msgstr "" - -#: opts.c:1245 -msgid "The following options are specific to the language " -msgstr "" - -#: opts.c:1249 -msgid "The following options are supported by the language " -msgstr "" - -#: opts.c:1260 -#, fuzzy -msgid "The following options are not documented" -msgstr " Existeixen, per no estan documentades.\n" - -#: opts.c:1271 -msgid "The following options are language-related" -msgstr "" - -#: opts.c:1403 -#, c-format -msgid "warning: unrecognized argument to --help= switch: %.*s\n" -msgstr "" - -#: protoize.c:582 -#, fuzzy, c-format -msgid "%s: error writing file '%s': %s\n" -msgstr "%s: error escrivint el fitxer \"%s\": %s\n" - -#: protoize.c:626 -#, c-format -msgid "%s: usage '%s [ -VqfnkN ] [ -i ] [ filename ... ]'\n" -msgstr "%s: s \"%s [ -VqfnkN ] [ -i ] [ nom_fitxer ... ]\"\n" - -#: protoize.c:629 -#, c-format -msgid "%s: usage '%s [ -VqfnkNlgC ] [ -B ] [ filename ... ]'\n" -msgstr "%s: s \"%s [ -VqfnkNlgC ] [ -B ] [ nom_fitxer ... ]\"\n" - -#: protoize.c:730 -#, fuzzy, c-format -msgid "%s: warning: no read access for file '%s'\n" -msgstr "%s: avs: no hi ha accs de lectura pel fitxer \"%s\"\n" - -#: protoize.c:738 -#, fuzzy, c-format -msgid "%s: warning: no write access for file '%s'\n" -msgstr "%s: avs: no hi ha accs d'escriptura pel fitxer \"%s\"\n" - -#: protoize.c:746 -#, fuzzy, c-format -msgid "%s: warning: no write access for dir containing '%s'\n" -msgstr "%s: avs: no hi ha accs d'escriptura pel directori que cont \"%s\"\n" - -#. Catch cases like /.. where we try to backup to a -#. point above the absolute root of the logical file -#. system. -#: protoize.c:1133 -#, c-format -msgid "%s: invalid file name: %s\n" -msgstr "%s: nom de fitxer no vlid: %s\n" - -#: protoize.c:1281 -#, c-format -msgid "%s: %s: can't get status: %s\n" -msgstr "%s: %s: no es pot obtenir l'estat: %s\n" - -#: protoize.c:1302 -#, c-format -msgid "" -"\n" -"%s: fatal error: aux info file corrupted at line %d\n" -msgstr "" -"\n" -"%s: error fatal: fitxer d'informaci auxiliar corrupte a la lnia %d\n" - -#: protoize.c:1631 -#, fuzzy, c-format -msgid "%s:%d: declaration of function '%s' takes different forms\n" -msgstr "%s:%d: la declaraci de la funci `%s' pren formes diferents\n" - -#: protoize.c:1886 -#, fuzzy, c-format -msgid "%s: compiling '%s'\n" -msgstr "%s: compilant `%s'\n" - -#: protoize.c:1909 -#, c-format -msgid "%s: wait: %s\n" -msgstr "%s: esperar: %s\n" - -#: protoize.c:1914 -#, c-format -msgid "%s: subprocess got fatal signal %d\n" -msgstr "%s: el subproces va rebre el senyal fatal %d\n" - -#: protoize.c:1922 -#, c-format -msgid "%s: %s exited with status %d\n" -msgstr "%s: %s va acabar amb estat %d\n" - -#: protoize.c:1971 -#, fuzzy, c-format -msgid "%s: warning: missing SYSCALLS file '%s'\n" -msgstr "%s: avs: falta el fitxer SYSCALLS \"%s\"\n" - -#: protoize.c:1980 protoize.c:2009 -#, fuzzy, c-format -msgid "%s: can't read aux info file '%s': %s\n" -msgstr "%s: no es pot llegir el fitxer d'informaci auxiliar \"%s\": %s\n" - -#: protoize.c:2025 protoize.c:2053 -#, fuzzy, c-format -msgid "%s: can't get status of aux info file '%s': %s\n" -msgstr "%s: no es pot obtenir l'estat del fitxer d'informaci auxiliar \"%s\": %s\n" - -#: protoize.c:2081 -#, fuzzy, c-format -msgid "%s: can't open aux info file '%s' for reading: %s\n" -msgstr "%s: no es pot obrir el fitxer d'informaci auxiliar \"%s\" per a lectura: %s\n" - -#: protoize.c:2099 -#, fuzzy, c-format -msgid "%s: error reading aux info file '%s': %s\n" -msgstr "%s: error llegint el fitxer d'informaci auxiliar \"%s\": %s\n" - -#: protoize.c:2112 -#, fuzzy, c-format -msgid "%s: error closing aux info file '%s': %s\n" -msgstr "%s: error tancant el fitxer d'informaci auxiliar \"%s\": %s\n" - -#: protoize.c:2128 -#, fuzzy, c-format -msgid "%s: can't delete aux info file '%s': %s\n" -msgstr "%s: no es pot esborrar el fitxer d'informaci auxiliar \"%s\": %s\n" - -#: protoize.c:2210 protoize.c:4180 -#, fuzzy, c-format -msgid "%s: can't delete file '%s': %s\n" -msgstr "%s: no es pot esborrar el fitxer \"%s\": %s\n" - -#: protoize.c:2288 -#, fuzzy, c-format -msgid "%s: warning: can't rename file '%s' to '%s': %s\n" -msgstr "%s: avs: no es pot renomenar el fitxer \"%s\" a \"%s\": %s\n" - -#: protoize.c:2410 -#, c-format -msgid "%s: conflicting extern definitions of '%s'\n" -msgstr "%s: definicions externes de \"%s\" en conflicte\n" - -#: protoize.c:2414 -#, c-format -msgid "%s: declarations of '%s' will not be converted\n" -msgstr "%s: les declaracions de \"%s\" no es convertiran\n" - -#: protoize.c:2416 -#, c-format -msgid "%s: conflict list for '%s' follows:\n" -msgstr "%s: llistes de conflictes per a \"%s\" a continuaci:\n" - -#: protoize.c:2449 -#, fuzzy, c-format -msgid "%s: warning: using formals list from %s(%d) for function '%s'\n" -msgstr "%s: avs: usant llistes formals de %s(%d) per a la funci \"%s\"\n" - -#: protoize.c:2489 -#, fuzzy, c-format -msgid "%s: %d: '%s' used but missing from SYSCALLS\n" -msgstr "%s: %d: s'usa \"%s\" per falta en SYSCALLS\n" - -#: protoize.c:2495 -#, fuzzy, c-format -msgid "%s: %d: warning: no extern definition for '%s'\n" -msgstr "%s: %d: avs: no hi ha definici extern per a \"%s\"\n" - -#: protoize.c:2525 -#, fuzzy, c-format -msgid "%s: warning: no static definition for '%s' in file '%s'\n" -msgstr "%s: avs: no hi ha definici static per a \"%s\" en el fitxer \"%s\"\n" - -#: protoize.c:2531 -#, fuzzy, c-format -msgid "%s: multiple static defs of '%s' in file '%s'\n" -msgstr "%s: definicions static mltiples de \"%s\" en el fitxer \"%s\"\n" - -#: protoize.c:2701 protoize.c:2704 -#, c-format -msgid "%s: %d: warning: source too confusing\n" -msgstr "%s: %d: avs: codi font massa confs\n" - -#: protoize.c:2899 -#, c-format -msgid "%s: %d: warning: varargs function declaration not converted\n" -msgstr "%s: %d: avs: no es va convertir la declaraci de la funci varargs\n" - -#: protoize.c:2914 -#, fuzzy, c-format -msgid "%s: declaration of function '%s' not converted\n" -msgstr "%s: no es va convertir la declaraci de la funci \"%s\"\n" - -#: protoize.c:3037 -#, fuzzy, c-format -msgid "%s: warning: too many parameter lists in declaration of '%s'\n" -msgstr "%s: avs: massa llistes de parmetres en la declaraci de \"%s\"\n" - -#: protoize.c:3058 -#, fuzzy, c-format -msgid "" -"\n" -"%s: warning: too few parameter lists in declaration of '%s'\n" -msgstr "" -"\n" -"%s: avs: molt poques llistes de parmetres en la declaraci de \"%s\"\n" - -#: protoize.c:3154 -#, fuzzy, c-format -msgid "%s: %d: warning: found '%s' but expected '%s'\n" -msgstr "%s: %d: avs: es va trobar \"%s\" per s'esperava \"%s\"\n" - -#: protoize.c:3329 -#, fuzzy, c-format -msgid "%s: local declaration for function '%s' not inserted\n" -msgstr "%s: no es va inserir la declaraci local per a la funci \"%s\"\n" - -#: protoize.c:3356 -#, fuzzy, c-format -msgid "" -"\n" -"%s: %d: warning: can't add declaration of '%s' into macro call\n" -msgstr "" -"\n" -"%s: %d: avs: no es pot afegir la declaraci per a\"%s\" en la crida de macro\n" - -#: protoize.c:3428 -#, fuzzy, c-format -msgid "%s: global declarations for file '%s' not inserted\n" -msgstr "%s: no es van inserir les declaracions globals pel fitxer \"%s\"\n" - -#: protoize.c:3518 protoize.c:3548 -#, fuzzy, c-format -msgid "%s: definition of function '%s' not converted\n" -msgstr "%s: no es va convertir la definici de la funci \"%s\"\n" - -#: protoize.c:3537 -#, c-format -msgid "%s: %d: warning: definition of %s not converted\n" -msgstr "%s: %d: avs: no es va convertir la definici de %s\n" - -#: protoize.c:3863 -#, fuzzy, c-format -msgid "%s: found definition of '%s' at %s(%d)\n" -msgstr "%s: es va trobar la definici de \"%s\" en %s(%d)\n" - -#. If we make it here, then we did not know about this -#. function definition. -#: protoize.c:3879 -#, fuzzy, c-format -msgid "%s: %d: warning: '%s' excluded by preprocessing\n" -msgstr "%s: %d: avs: \"%s\" va ser excls pel preprocessament\n" - -#: protoize.c:3882 -#, c-format -msgid "%s: function definition not converted\n" -msgstr "%s: no es va convertir la definici de la funci\n" - -#: protoize.c:3940 -#, fuzzy, c-format -msgid "%s: '%s' not converted\n" -msgstr "%s: no es va convertir \"%s\"\n" - -#: protoize.c:3948 -#, fuzzy, c-format -msgid "%s: would convert file '%s'\n" -msgstr "%s: es podria convertir el fitxer \"%s\"\n" - -#: protoize.c:3951 -#, fuzzy, c-format -msgid "%s: converting file '%s'\n" -msgstr "%s: convertint el fitxer \"%s\"\n" - -#: protoize.c:3961 -#, fuzzy, c-format -msgid "%s: can't get status for file '%s': %s\n" -msgstr "%s: no es pot obtenir l'estat del fitxer \"%s\": %s\n" - -#: protoize.c:4003 -#, fuzzy, c-format -msgid "%s: can't open file '%s' for reading: %s\n" -msgstr "%s: no es pot obrir el fitxer \"%s\" per a lectura: %s\n" - -#: protoize.c:4018 -#, fuzzy, c-format -msgid "" -"\n" -"%s: error reading input file '%s': %s\n" -msgstr "" -"\n" -"%s: error al llegint el fitxer d'entrada \"%s\": %s\n" - -#: protoize.c:4052 -#, fuzzy, c-format -msgid "%s: can't create/open clean file '%s': %s\n" -msgstr "%s: no es pot crear/obrir el fitxer net \"%s\": %s\n" - -#: protoize.c:4157 -#, fuzzy, c-format -msgid "%s: warning: file '%s' already saved in '%s'\n" -msgstr "%s: avs: el fitxer \"%s\" ja havia estat guardat en \"%s\"\n" - -#: protoize.c:4165 -#, fuzzy, c-format -msgid "%s: can't link file '%s' to '%s': %s\n" -msgstr "%s: no es pot enllaar el fitxer \"%s\" a \"%s\": %s\n" - -#: protoize.c:4195 -#, fuzzy, c-format -msgid "%s: can't create/open output file '%s': %s\n" -msgstr "%s: no es pot crear/obrir el fitxer de sortida \"%s\": %s\n" - -#: protoize.c:4228 -#, fuzzy, c-format -msgid "%s: can't change mode of file '%s': %s\n" -msgstr "%s: no es pot canviar el mode del fitxer \"%s\": %s\n" - -#: protoize.c:4404 -#, c-format -msgid "%s: cannot get working directory: %s\n" -msgstr "%s: no es pot obtenir el directori de treball: %s\n" - -#: protoize.c:4502 -#, c-format -msgid "%s: input file names must have .c suffixes: %s\n" -msgstr "%s: els noms de fitxer d'entrada deuen tenir sufixos .c: %s\n" - -#: reload.c:3734 -msgid "unable to generate reloads for:" -msgstr "no es poden generar recarregues per a:" - -#: reload1.c:2000 -msgid "this is the insn:" -msgstr "aix s el insn:" - -#. It's the compiler's fault. -#: reload1.c:5363 -msgid "could not find a spill register" -msgstr "no es pot trobar un registre de buidat " - -#. It's the compiler's fault. -#: reload1.c:7038 -msgid "VOIDmode on an output" -msgstr "VOIDmode en una sortida" - -#: reload1.c:8043 -msgid "Failure trying to reload:" -msgstr "" - -#: rtl-error.c:127 -msgid "unrecognizable insn:" -msgstr "insn no recognoscible:" - -#: rtl-error.c:129 -msgid "insn does not satisfy its constraints:" -msgstr "insn no satisf les seves restriccions:" - -#: timevar.c:411 -msgid "" -"\n" -"Execution times (seconds)\n" -msgstr "" -"\n" -"Temps d'execuci (segons)\n" - -#. Print total time. -#: timevar.c:469 -msgid " TOTAL :" -msgstr " TOTAL :" - -#: timevar.c:502 -#, c-format -msgid "time in %s: %ld.%06ld (%ld%%)\n" -msgstr "temps en %s: %ld.%06ld (%ld%%)\n" - -#: tlink.c:383 -#, c-format -msgid "collect: reading %s\n" -msgstr "collect: llegint %s\n" - -#: tlink.c:477 -#, c-format -msgid "removing .rpo file" -msgstr "" - -#: tlink.c:479 -#, c-format -msgid "renaming .rpo file" -msgstr "" - -#: tlink.c:533 -#, c-format -msgid "collect: recompiling %s\n" -msgstr "collect: recompilant %s\n" - -#: tlink.c:737 -#, c-format -msgid "collect: tweaking %s in %s\n" -msgstr "collect: alterant %s en %s\n" - -#: tlink.c:787 -#, c-format -msgid "collect: relinking\n" -msgstr "collect: reenllaant\n" - -#: toplev.c:606 -#, fuzzy, c-format -msgid "unrecoverable error" -msgstr "error intern" - -#: toplev.c:1180 -#, fuzzy, c-format -msgid "" -"%s%s%s %sversion %s (%s)\n" -"%s\tcompiled by GNU C version %s, " -msgstr "" -"%s%s%s versi %s (%s)\n" -"%s\tcompilat amb GNU C versi %s.\n" -"%s%s%s versi %s (%s) compilada per a CC.\n" - -#: toplev.c:1182 -#, c-format -msgid "%s%s%s %sversion %s (%s) compiled by CC, " -msgstr "" - -#: toplev.c:1186 -#, fuzzy, c-format -msgid "GMP version %s, MPFR version %s.\n" -msgstr "\"%s\" en versi \"%.4s\", s'espera la versi \"%.4s\"" - -#: toplev.c:1188 -#, c-format -msgid "warning: %s header version %s differs from library version %s.\n" -msgstr "" - -#: toplev.c:1190 -#, c-format -msgid "%s%sGGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d\n" -msgstr "" - -#: toplev.c:1340 -msgid "options passed: " -msgstr "opcions passades: " - -#: toplev.c:1374 -msgid "options enabled: " -msgstr "opcions activades: " - -#: toplev.c:1509 -#, c-format -msgid "created and used with differing settings of '%s'" -msgstr "" - -#: toplev.c:1511 -msgid "out of memory" -msgstr "" - -#: toplev.c:1526 -msgid "created and used with different settings of -fpic" -msgstr "" - -#: toplev.c:1528 -msgid "created and used with different settings of -fpie" -msgstr "" - -#: tree-inline.c:2571 -msgid "originally indirect function call not considered for inlining" -msgstr "" - -#. The remainder are real diagnostic types. -#: diagnostic.def:15 -#, fuzzy -msgid "fatal error: " -msgstr "error intern: " - -#: diagnostic.def:16 -#, fuzzy -msgid "internal compiler error: " -msgstr "error intern: " - -#: diagnostic.def:17 -#, fuzzy -msgid "error: " -msgstr "error intern: " - -#: diagnostic.def:18 -#, fuzzy -msgid "sorry, unimplemented: " -msgstr "disculpi, no s'ha implementat: #pragma noalign NAME" - -#: diagnostic.def:19 -msgid "warning: " -msgstr "avs: " - -#: diagnostic.def:20 -msgid "anachronism: " -msgstr "" - -#: diagnostic.def:21 -#, fuzzy -msgid "note: " -msgstr "nota:" - -#: diagnostic.def:22 -msgid "debug: " -msgstr "" - -#: params.def:46 -msgid "The maximum number of fields in a structure variable without direct structure accesses that GCC will attempt to track separately" -msgstr "" - -#: params.def:53 -#, fuzzy -msgid "The maximum number of elements in an array for wich we track its elements separately" -msgstr "El nombre mxim d'instruccions en una sola funci elegible per a inlining" - -#: params.def:62 -msgid "The maximum structure size (in bytes) for which GCC will use by-element copies" -msgstr "" - -#: params.def:71 -#, fuzzy -msgid "The maximum number of structure fields for which GCC will use by-element copies" -msgstr "El nombre mxim d'instruccions pel inliner RTL" - -#: params.def:83 -msgid "The threshold ratio between instantiated fields and the total structure size" -msgstr "" - -#: params.def:93 -msgid "The threshold ratio between current and hotest structure counts" -msgstr "" - -#: params.def:110 -msgid "The maximum number of instructions in a single function eligible for inlining" -msgstr "El nombre mxim d'instruccions en una sola funci elegible per a inlining" - -#: params.def:122 -msgid "The maximum number of instructions when automatically inlining" -msgstr "El nombre mxim d'instruccions quan es fa inlining automticament" - -#: params.def:127 -#, fuzzy -msgid "The maximum number of instructions inline function can grow to via recursive inlining" -msgstr "El nombre mxim d'instruccions en una sola funci elegible per a inlining" - -#: params.def:132 -#, fuzzy -msgid "The maximum number of instructions non-inline function can grow to via recursive inlining" -msgstr "El nombre mxim d'instruccions en una sola funci elegible per a inlining" - -#: params.def:137 -msgid "The maximum depth of recursive inlining for inline functions" -msgstr "" - -#: params.def:142 -msgid "The maximum depth of recursive inlining for non-inline functions" -msgstr "" - -#: params.def:147 -msgid "Inline recursively only when the probability of call being executed exceeds the parameter" -msgstr "" - -#: params.def:154 -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:160 -msgid "If -ftree-vectorize is used, the minimal loop bound of a loop to be considered for vectorization" -msgstr "" - -#: params.def:171 -msgid "The maximum number of instructions to consider to fill a delay slot" -msgstr "El nombre mxim d'instruccions per a considerar l'omplert d'una ranura de retard" - -#: params.def:182 -msgid "The maximum number of instructions to consider to find accurate live register information" -msgstr "El nombre mxim d'instruccions per a considerar la recerca d'informaci de registres en viu exacta" - -#: params.def:192 -msgid "The maximum length of scheduling's pending operations list" -msgstr "La longitud mxima de la llista d'operacions pendents del planificador de tasques" - -#: params.def:197 -msgid "The size of function body to be considered large" -msgstr "" - -#: params.def:201 -msgid "Maximal growth due to inlining of large function (in percent)" -msgstr "" - -#: params.def:205 -msgid "The size of translation unit to be considered large" -msgstr "" - -#: params.def:209 -msgid "how much can given compilation unit grow because of the inlining (in percent)" -msgstr "" - -#: params.def:213 -msgid "expense of call operation relative to ordinary arithmetic operations" -msgstr "" - -#: params.def:217 -msgid "The size of stack frame to be considered large" -msgstr "" - -#: params.def:221 -msgid "Maximal stack frame growth due to inlining (in percent)" -msgstr "" - -#: params.def:228 -msgid "The maximum amount of memory to be allocated by GCSE" -msgstr "La quantitat mxima de memria a ser assignada per GCSE" - -#: params.def:233 -msgid "The maximum number of passes to make when doing GCSE" -msgstr "El nombre mxim de passos a realitzar quan es fa GCSE" - -#: params.def:243 -msgid "The threshold ratio for performing partial redundancy elimination after reload" -msgstr "" - -#: params.def:250 -msgid "The threshold ratio of critical edges execution count that permit performing redundancy elimination after reload" -msgstr "" - -#: params.def:261 -msgid "The maximum number of instructions to consider to unroll in a loop" -msgstr "El nombre mxim d'instruccions per a considerar el desenrotllo en un cicle" - -#: params.def:267 -#, fuzzy -msgid "The maximum number of instructions to consider to unroll in a loop on average" -msgstr "El nombre mxim d'instruccions per a considerar el desenrotllo en un cicle" - -#: params.def:272 -msgid "The maximum number of unrollings of a single loop" -msgstr "" - -#: params.def:277 -#, fuzzy -msgid "The maximum number of insns of a peeled loop" -msgstr "El nombre mxim d'instruccions per a considerar l'omplert d'una ranura de retard" - -#: params.def:282 -#, fuzzy -msgid "The maximum number of peelings of a single loop" -msgstr "El nombre mxim de passos a realitzar quan es fa GCSE" - -#: params.def:287 -#, fuzzy -msgid "The maximum number of insns of a completely peeled loop" -msgstr "El nombre mxim d'instruccions per a considerar el desenrotllo en un cicle" - -#: params.def:292 -#, fuzzy -msgid "The maximum number of peelings of a single loop that is peeled completely" -msgstr "El nombre mxim d'instruccions en una sola funci elegible per a inlining" - -#: params.def:297 -#, fuzzy -msgid "The maximum number of insns of a peeled loop that rolls only once" -msgstr "El nombre mxim d'instruccions per al inliner de RTL" - -#: params.def:303 -#, fuzzy -msgid "The maximum number of insns of an unswitched loop" -msgstr "El nombre mxim d'instruccions per a considerar el desenrotllo en un cicle" - -#: params.def:308 -#, fuzzy -msgid "The maximum number of unswitchings in a single loop" -msgstr "El nombre mxim d'instruccions en una sola funci elegible per a un sol cicle" - -#: params.def:315 -msgid "Bound on the number of iterations the brute force # of iterations analysis algorithm evaluates" -msgstr "" - -#: params.def:321 -msgid "Bound on the cost of an expression to compute the number of iterations" -msgstr "" - -#: params.def:327 -msgid "A factor for tuning the upper bound that swing modulo scheduler uses for scheduling a loop" -msgstr "" - -#: params.def:331 -msgid "The number of cycles the swing modulo scheduler considers when checking conflicts using DFA" -msgstr "" - -#: params.def:335 -msgid "A threshold on the average loop count considered by the swing modulo scheduler" -msgstr "" - -#: params.def:340 -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:344 -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:349 -msgid "Select fraction of the maximal frequency of executions of basic block in function given basic block get alignment" -msgstr "" - -#: params.def:354 -msgid "Loops iterating at least selected number of iterations will get loop alignement." -msgstr "" - -#: params.def:370 -#, fuzzy -msgid "The maximum number of loop iterations we predict statically" -msgstr "El nombre mxim d'instruccions quan es fa inlining automticament" - -#: params.def:374 -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:378 -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:382 -msgid "Maximal code growth caused by tail duplication (in percent)" -msgstr "" - -#: params.def:386 -msgid "Stop reverse growth if the reverse probability of best edge is less than this threshold (in percent)" -msgstr "" - -#: params.def:390 -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:394 -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:400 -msgid "The maximum number of incoming edges to consider for crossjumping" -msgstr "El nombre mxim de vores d'entrada per a considerar el salt creuat" - -#: params.def:406 -#, fuzzy -msgid "The minimum number of matching instructions to consider for crossjumping" -msgstr "El nombre mxim de vores d'entrada per a considerar el salt creuat" - -#: params.def:412 -msgid "The maximum expansion factor when copying basic blocks" -msgstr "" - -#: params.def:418 -#, fuzzy -msgid "The maximum number of insns to duplicate when unfactoring computed gotos" -msgstr "El nombre mxim d'instruccions per a considerar el desenrotllo en un cicle" - -#: params.def:424 -#, fuzzy -msgid "The maximum length of path considered in cse" -msgstr "La longitud mxima de la llista d'operacions pendents del planificador de tasques" - -#: params.def:428 -#, fuzzy -msgid "The maximum instructions CSE process before flushing" -msgstr "El nombre mxim d'instruccions pel inliner RTL" - -#: params.def:435 -msgid "The minimum cost of an expensive expression in the loop invariant motion" -msgstr "" - -#: params.def:444 -msgid "Bound on number of candidates below that all candidates are considered in iv optimizations" -msgstr "" - -#: params.def:452 -#, fuzzy -msgid "Bound on number of iv uses in loop optimized in iv optimizations" -msgstr "Realitzar un nombre menor d'optimitzacions costoses" - -#: params.def:460 -msgid "If number of candidates in the set is smaller, we always try to remove unused ivs during its optimization" -msgstr "" - -#: params.def:465 -msgid "Bound on size of expressions used in the scalar evolutions analyzer" -msgstr "" - -#: params.def:470 -msgid "Bound on the number of variables in Omega constraint systems" -msgstr "" - -#: params.def:475 -msgid "Bound on the number of inequalities in Omega constraint systems" -msgstr "" - -#: params.def:480 -msgid "Bound on the number of equalities in Omega constraint systems" -msgstr "" - -#: params.def:485 -msgid "Bound on the number of wild cards in Omega constraint systems" -msgstr "" - -#: params.def:490 -msgid "Bound on the size of the hash table in Omega constraint systems" -msgstr "" - -#: params.def:495 -msgid "Bound on the number of keys in Omega constraint systems" -msgstr "" - -#: params.def:500 -msgid "When set to 1, use expensive methods to eliminate all redundant constraints" -msgstr "" - -#: params.def:505 -msgid "Bound on number of runtime checks inserted by the vectorizer's loop versioning for alignment check" -msgstr "" - -#: params.def:510 -msgid "Bound on number of runtime checks inserted by the vectorizer's loop versioning for alias check" -msgstr "" - -#: params.def:515 -#, fuzzy -msgid "The maximum memory locations recorded by cselib" -msgstr "El nombre mxim d'instruccions per al inliner de RTL" - -#: params.def:519 -#, fuzzy -msgid "The maximum memory locations recorded by flow" -msgstr "El nombre mxim d'instruccions per al inliner de RTL" - -#: params.def:532 -msgid "Minimum heap expansion to trigger garbage collection, as a percentage of the total size of the heap" -msgstr "" - -#: params.def:537 -msgid "Minimum heap size before we start collecting garbage, in kilobytes" -msgstr "" - -#: params.def:545 -#, fuzzy -msgid "The maximum number of instructions to search backward when looking for equivalent reload" -msgstr "El nombre mxim d'instruccions per a considerar el desenrotllo en un cicle" - -#: params.def:550 -msgid "The maximum number of virtual operators that a function is allowed to have before triggering memory partitioning heuristics" -msgstr "" - -#: params.def:555 -msgid "The average number of virtual operators that memory statements are allowed to have before triggering memory partitioning heuristics" -msgstr "" - -#: params.def:560 -#, fuzzy -msgid "The maximum number of blocks in a region to be considered for interblock scheduling" -msgstr "El nombre mxim de vores d'entrada per a considerar el salt creuat" - -#: params.def:565 -#, fuzzy -msgid "The maximum number of insns in a region to be considered for interblock scheduling" -msgstr "El nombre mxim de vores d'entrada per a considerar el salt creuat" - -#: params.def:570 -msgid "The minimum probability of reaching a source block for interblock speculative scheduling" -msgstr "" - -#: params.def:575 -#, fuzzy -msgid "The maximum number of iterations through CFG to extend regions" -msgstr "El nombre mxim d'instruccions per a considerar el desenrotllo en un cicle" - -#: params.def:580 -#, fuzzy -msgid "The maximum conflict delay for an insn to be considered for speculative motion" -msgstr "El nombre mxim de vores d'entrada per a considerar el salt creuat" - -#: params.def:585 -msgid "The minimal probability of speculation success (in percents), so that speculative insn will be scheduled." -msgstr "" - -#: params.def:590 -msgid "The maximum number of RTL nodes that can be recorded as combiner's last value" -msgstr "" - -#: params.def:598 -#, fuzzy -msgid "The upper bound for sharing integer constants" -msgstr "el valor de enumerator per a \"%s\" no s una constant entera" - -#: params.def:617 -#, fuzzy -msgid "Minimum number of virtual mappings to consider switching to full virtual renames" -msgstr "El nombre mxim d'instruccions per a considerar l'omplert d'una ranura de retard" - -#: params.def:622 -msgid "Ratio between virtual mappings and virtual symbols to do full virtual renames" -msgstr "" - -#: params.def:627 -msgid "The lower bound for a buffer to be considered for stack smashing protection" -msgstr "" - -#: params.def:645 -msgid "Maximum number of statements allowed in a block that needs to be duplicated when threading jumps" -msgstr "" - -#: params.def:654 -msgid "Maximum number of fields in a structure before pointer analysis treats the structure as a single variable" -msgstr "" - -#: params.def:659 -#, fuzzy -msgid "The maximum number of instructions ready to be issued to be considered by the scheduler during the first scheduling pass" -msgstr "El nombre mxim d'instruccions per a considerar el desenrotllo en un cicle" - -#: params.def:669 -msgid "The number of insns executed before prefetch is completed" -msgstr "" - -#: params.def:676 -msgid "The number of prefetches that can run at the same time" -msgstr "" - -#: params.def:683 -msgid "The size of L1 cache" -msgstr "" - -#: params.def:690 -msgid "The size of L1 cache line" -msgstr "" - -#: params.def:697 -msgid "The size of L2 cache" -msgstr "" - -#: params.def:708 -msgid "Whether to use canonical types" -msgstr "" - -#: params.def:713 -msgid "Maximum length of partial antic set when performing tree pre optimization" -msgstr "" - -#: config/alpha/alpha.c:5015 -#, c-format -msgid "invalid %%H value" -msgstr "valor %%H no vlid" - -#: config/alpha/alpha.c:5036 config/bfin/bfin.c:1423 -#, c-format -msgid "invalid %%J value" -msgstr "valor %%J no vlid" - -#: config/alpha/alpha.c:5066 config/ia64/ia64.c:4718 -#, c-format -msgid "invalid %%r value" -msgstr "valor %%r no vlid" - -#: config/alpha/alpha.c:5076 config/ia64/ia64.c:4672 -#: config/rs6000/rs6000.c:11670 config/xtensa/xtensa.c:2036 -#, c-format -msgid "invalid %%R value" -msgstr "valor %%R no vlid" - -#: config/alpha/alpha.c:5082 config/rs6000/rs6000.c:11589 -#: config/xtensa/xtensa.c:2003 -#, c-format -msgid "invalid %%N value" -msgstr "valor %%N no vlid" - -#: config/alpha/alpha.c:5090 config/rs6000/rs6000.c:11617 -#, c-format -msgid "invalid %%P value" -msgstr "valor %%P no vlid" - -#: config/alpha/alpha.c:5098 -#, c-format -msgid "invalid %%h value" -msgstr "valor %%h no vlid" - -#: config/alpha/alpha.c:5106 config/xtensa/xtensa.c:2029 -#, c-format -msgid "invalid %%L value" -msgstr "valor %%L no vlid" - -#: config/alpha/alpha.c:5145 config/rs6000/rs6000.c:11571 -#, c-format -msgid "invalid %%m value" -msgstr "valor %%m no vlid" - -#: config/alpha/alpha.c:5153 config/rs6000/rs6000.c:11579 -#, c-format -msgid "invalid %%M value" -msgstr "valor %%M no vlid" - -#: config/alpha/alpha.c:5197 -#, c-format -msgid "invalid %%U value" -msgstr "valor %%U no vlid" - -#: config/alpha/alpha.c:5209 config/alpha/alpha.c:5223 -#: config/rs6000/rs6000.c:11678 -#, c-format -msgid "invalid %%s value" -msgstr "valor %%s no vlid" - -#: config/alpha/alpha.c:5246 -#, c-format -msgid "invalid %%C value" -msgstr "valor %%C no vlid" - -#: config/alpha/alpha.c:5283 config/rs6000/rs6000.c:11406 -#: config/rs6000/rs6000.c:11425 -#, c-format -msgid "invalid %%E value" -msgstr "valor %%E no vlid" - -#: config/alpha/alpha.c:5308 config/alpha/alpha.c:5356 -#, c-format -msgid "unknown relocation unspec" -msgstr "reubicaci unspec desconeguda" - -#: config/alpha/alpha.c:5317 config/crx/crx.c:1081 -#: config/rs6000/rs6000.c:12005 config/spu/spu.c:1492 -#, c-format -msgid "invalid %%xn code" -msgstr "codi %%xn no vlid" - -#: config/arc/arc.c:1724 config/m32r/m32r.c:1805 -#, c-format -msgid "invalid operand to %%R code" -msgstr "operand no vlid per al codi %%R" - -#: config/arc/arc.c:1756 config/m32r/m32r.c:1828 -#, c-format -msgid "invalid operand to %%H/%%L code" -msgstr "operand no vlid per al codi %%H/%%L" - -#: config/arc/arc.c:1778 config/m32r/m32r.c:1899 -#, c-format -msgid "invalid operand to %%U code" -msgstr "operand no vlid per al codi %%U" - -#: config/arc/arc.c:1789 -#, c-format -msgid "invalid operand to %%V code" -msgstr "operand no vlid per al codi %%V" - -#. Unknown flag. -#. Undocumented flag. -#: config/arc/arc.c:1796 config/m32r/m32r.c:1926 config/sparc/sparc.c:6995 -#, c-format -msgid "invalid operand output code" -msgstr "operand no vlid per al codi de sortida" - -#: config/arm/arm.c:12521 config/arm/arm.c:12539 -#, fuzzy, c-format -msgid "predicated Thumb instruction" -msgstr "Generar instruccions char" - -#: config/arm/arm.c:12527 -#, fuzzy, c-format -msgid "predicated instruction in conditional sequence" -msgstr "els tipus de dades no coincideixen en l'expressi condicional" - -#: config/arm/arm.c:12686 -#, fuzzy, c-format -msgid "invalid shift operand" -msgstr "operand %%f no vlid" - -#: config/arm/arm.c:12733 config/arm/arm.c:12743 config/arm/arm.c:12753 -#: config/arm/arm.c:12763 config/arm/arm.c:12773 config/arm/arm.c:12812 -#: config/arm/arm.c:12830 config/arm/arm.c:12865 config/arm/arm.c:12884 -#: config/arm/arm.c:12899 config/arm/arm.c:12927 config/arm/arm.c:12934 -#: config/arm/arm.c:12942 config/arm/arm.c:12963 config/arm/arm.c:12970 -#: config/bfin/bfin.c:1436 config/bfin/bfin.c:1443 config/bfin/bfin.c:1450 -#: config/bfin/bfin.c:1457 config/bfin/bfin.c:1466 config/bfin/bfin.c:1473 -#: config/bfin/bfin.c:1480 config/bfin/bfin.c:1487 -#, fuzzy, c-format -msgid "invalid operand for code '%c'" -msgstr "codi d'operand \"%c\" no vlid" - -#: config/arm/arm.c:12825 -#, fuzzy, c-format -msgid "instruction never executed" -msgstr "l'incondicional %2d mai s'executa\n" - -#: config/arm/arm.c:13037 -#, fuzzy, c-format -msgid "missing operand" -msgstr "\"(\" faltant" - -#: config/avr/avr.c:1022 -#, c-format -msgid "address operand requires constraint for X, Y, or Z register" -msgstr "" - -#: config/avr/avr.c:1129 -msgid "bad address, not (reg+disp):" -msgstr "adrea errnia, no (reg+disp)" - -#: config/avr/avr.c:1136 -#, fuzzy -msgid "bad address, not post_inc or pre_dec:" -msgstr "adrea errnia, no (reg+disp)" - -#: config/avr/avr.c:1147 -msgid "internal compiler error. Bad address:" -msgstr "error intern del compilador. Direcci errnia:" - -#: config/avr/avr.c:1160 -msgid "internal compiler error. Unknown mode:" -msgstr "error intern del compilador. Mode desconegut:" - -#: config/avr/avr.c:1775 config/avr/avr.c:2463 -msgid "invalid insn:" -msgstr "insn no vlid:" - -#: config/avr/avr.c:1814 config/avr/avr.c:1900 config/avr/avr.c:1949 -#: config/avr/avr.c:1977 config/avr/avr.c:2072 config/avr/avr.c:2241 -#: config/avr/avr.c:2502 config/avr/avr.c:2614 -msgid "incorrect insn:" -msgstr "insn incorrecte:" - -#: config/avr/avr.c:1996 config/avr/avr.c:2157 config/avr/avr.c:2312 -#: config/avr/avr.c:2680 -msgid "unknown move insn:" -msgstr "desplaament insn desconegut:" - -#: config/avr/avr.c:2910 -msgid "bad shift insn:" -msgstr "desplaament insn errni:" - -#: config/avr/avr.c:3026 config/avr/avr.c:3446 config/avr/avr.c:3804 -msgid "internal compiler error. Incorrect shift:" -msgstr "error intern del compilador. Direcci errnia:" - -#: config/bfin/bfin.c:1385 -#, c-format -msgid "invalid %%j value" -msgstr "valor %%j no vlid" - -#: config/bfin/bfin.c:1578 -#, fuzzy, c-format -msgid "invalid const_double operand" -msgstr "restriccions no vlides per a l'operand" - -#: config/c4x/c4x.c:1583 -msgid "using CONST_DOUBLE for address" -msgstr "s de CONST_DOUBLE per a l'adrea" - -#: config/c4x/c4x.c:1721 -msgid "c4x_address_cost: Invalid addressing mode" -msgstr "c4x_address_cost: Moda d'adreament no vlid" - -#: config/c4x/c4x.c:1856 -#, c-format -msgid "c4x_print_operand: %%L inconsistency" -msgstr "c4x_print_operand: inconsistncia %%L" - -#: config/c4x/c4x.c:1862 -#, c-format -msgid "c4x_print_operand: %%N inconsistency" -msgstr "c4x_print_operand: inconsistncia %%N" - -#: config/c4x/c4x.c:1903 -#, c-format -msgid "c4x_print_operand: %%O inconsistency" -msgstr "c4x_print_operand: inconsistncia %%O" - -#: config/c4x/c4x.c:1998 -msgid "c4x_print_operand: Bad operand case" -msgstr "c4x_print_operand: Operand case erroni" - -#: config/c4x/c4x.c:2039 -msgid "c4x_print_operand_address: Bad post_modify" -msgstr "c4x_print_operand_address: post_modify erroni" - -#: config/c4x/c4x.c:2061 -msgid "c4x_print_operand_address: Bad pre_modify" -msgstr "c4x_print_operand_address: pre_modify erroni" - -#: config/c4x/c4x.c:2109 config/c4x/c4x.c:2121 config/c4x/c4x.c:2136 -msgid "c4x_print_operand_address: Bad operand case" -msgstr "c4x_print_operand_address: Operand case erroni" - -#: config/c4x/c4x.c:2387 -msgid "c4x_rptb_insert: Cannot find start label" -msgstr "c4x_rptb_insert: No es pot trobar l'etiqueta d'inici" - -#: config/c4x/c4x.c:2985 -msgid "invalid indirect memory address" -msgstr "adrea indirecta de memria no vlida" - -#: config/c4x/c4x.c:3074 -msgid "invalid indirect (S) memory address" -msgstr "adrea indirecta de memria (S) no vlida" - -#: config/c4x/c4x.c:3409 -msgid "c4x_valid_operands: Internal error" -msgstr "c4x_valid_operands: error intern" - -#: config/c4x/c4x.c:3848 -msgid "c4x_operand_subword: invalid mode" -msgstr "c4x_operand_subword: mode no vlid" - -#: config/c4x/c4x.c:3851 -msgid "c4x_operand_subword: invalid operand" -msgstr "c4x_operand_subword: operand no vlid" - -#. We could handle these with some difficulty. -#. e.g., *p-- => *(p-=2); *(p+1). -#: config/c4x/c4x.c:3877 -msgid "c4x_operand_subword: invalid autoincrement" -msgstr "c4x_operand_subword: autoincrement no vlid" - -#: config/c4x/c4x.c:3883 -msgid "c4x_operand_subword: invalid address" -msgstr "c4x_operand_subword: adrea no vlid" - -#: config/c4x/c4x.c:3894 -msgid "c4x_operand_subword: address not offsettable" -msgstr "c4x_operand_subword: adrea no desplaada" - -#: config/c4x/c4x.c:4096 -#, fuzzy -msgid "c4x_rptb_rpts_p: Repeat block top label moved" -msgstr "c4x_rptb_rpts_p: etiqueta superior de bloc de repetici desplaada\n" - -#. 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:78 -#: fortran/dump-parse-tree.c:430 fortran/dump-parse-tree.c:776 -#: fortran/dump-parse-tree.c:821 c-typeck.c:4607 c-typeck.c:4622 -#: c-typeck.c:4637 final.c:2984 final.c:2986 gcc.c:4737 loop-iv.c:2807 -#: loop-iv.c:2816 rtl-error.c:112 toplev.c:610 tree-ssa-loop-niter.c:1829 -#: cp/parser.c:2188 cp/typeck.c:4559 java/expr.c:409 -#, gcc-internal-format -msgid "%s" -msgstr "%s" - -#: config/cris/cris.c:542 -msgid "unexpected index-type in cris_print_index" -msgstr "index-type inesperat en cris_print_index" - -#: config/cris/cris.c:556 -msgid "unexpected base-type in cris_print_base" -msgstr "base-type inesperat en cris_print_base" - -#: config/cris/cris.c:672 -msgid "invalid operand for 'b' modifier" -msgstr "operand no vlid per al modificador \"b\"" - -#: config/cris/cris.c:689 -#, fuzzy -msgid "invalid operand for 'o' modifier" -msgstr "operand no vlid per al modificador \"b\"" - -#: config/cris/cris.c:708 -#, fuzzy -msgid "invalid operand for 'O' modifier" -msgstr "operand no vlid per al modificador \"b\"" - -#: config/cris/cris.c:741 -msgid "invalid operand for 'p' modifier" -msgstr "operand no vlid per al modificador \"p\"" - -#: config/cris/cris.c:780 -msgid "invalid operand for 'z' modifier" -msgstr "operand no vlid per al modificador \"z\"" - -#: config/cris/cris.c:834 config/cris/cris.c:864 -msgid "invalid operand for 'H' modifier" -msgstr "operand no vlid per al modificador \"H\"" - -#: config/cris/cris.c:840 -msgid "bad register" -msgstr "registre erroni" - -#: config/cris/cris.c:884 -msgid "invalid operand for 'e' modifier" -msgstr "operand no vlid per al modificador \"e\"" - -#: config/cris/cris.c:901 -msgid "invalid operand for 'm' modifier" -msgstr "operand no vlid per al modificador \"m\"" - -#: config/cris/cris.c:926 -msgid "invalid operand for 'A' modifier" -msgstr "operand no vlid per al modificador \"A\"" - -#: config/cris/cris.c:949 -msgid "invalid operand for 'D' modifier" -msgstr "operand no vlid per al modificador \"D\"" - -#: config/cris/cris.c:963 -msgid "invalid operand for 'T' modifier" -msgstr "operand no vlid per al modificador \"T\"" - -#: config/cris/cris.c:972 -msgid "invalid operand modifier letter" -msgstr "lletra de modificador d'operand no vlid" - -#: config/cris/cris.c:1029 -msgid "unexpected multiplicative operand" -msgstr "operand multiplicatiu inesperat" - -#: config/cris/cris.c:1049 -msgid "unexpected operand" -msgstr "operand inesperat" - -#: config/cris/cris.c:1082 config/cris/cris.c:1092 -msgid "unrecognized address" -msgstr "adrea no reconeguda" - -#: config/cris/cris.c:2019 -msgid "unrecognized supposed constant" -msgstr "suposada constant no reconeguda" - -#: config/cris/cris.c:2394 config/cris/cris.c:2458 -msgid "unexpected side-effects in address" -msgstr "effecte de vora inesperat en l'adrea" - -#. Can't possibly get a GOT-needing-fixup for a function-call, -#. right? -#: config/cris/cris.c:3253 -msgid "Unidentifiable call op" -msgstr "" - -#: config/cris/cris.c:3304 -#, c-format -msgid "PIC register isn't set up" -msgstr "el registre PIC no est preparat" - -#: config/fr30/fr30.c:464 -#, c-format -msgid "fr30_print_operand_address: unhandled address" -msgstr "fr30_print_operand_address: adrea sense manejar" - -#: config/fr30/fr30.c:488 -#, c-format -msgid "fr30_print_operand: unrecognized %%p code" -msgstr "fr30_print_operand_address: no es reconeix el codi %%p" - -#: config/fr30/fr30.c:508 -#, c-format -msgid "fr30_print_operand: unrecognized %%b code" -msgstr "fr30_print_operand_address: no es reconeix el codi %%b" - -#: config/fr30/fr30.c:529 -#, c-format -msgid "fr30_print_operand: unrecognized %%B code" -msgstr "fr30_print_operand_address: no es reconeix el codi %%B" - -#: config/fr30/fr30.c:537 -#, c-format -msgid "fr30_print_operand: invalid operand to %%A code" -msgstr "fr30_print_operand: operand no vlid per al codi %%A" - -#: config/fr30/fr30.c:554 -#, c-format -msgid "fr30_print_operand: invalid %%x code" -msgstr "fr30_print_operand: codi %%x no vlid" - -#: config/fr30/fr30.c:561 -#, c-format -msgid "fr30_print_operand: invalid %%F code" -msgstr "fr30_print_operand: codi %%F no vlid" - -#: config/fr30/fr30.c:578 -#, c-format -msgid "fr30_print_operand: unknown code" -msgstr "fr30_print_operand: codi desconegut" - -#: 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 "fr30_print_operand: MEM sense manejar" - -#: config/frv/frv.c:2542 -#, fuzzy -msgid "bad insn to frv_print_operand_address:" -msgstr "insn erroni per a frv_print_operand_address:" - -#: config/frv/frv.c:2553 -#, fuzzy -msgid "bad register to frv_print_operand_memory_reference_reg:" -msgstr "insn erroni per a frv_print_operand_memory_reference_reg:" - -#: config/frv/frv.c:2592 config/frv/frv.c:2602 config/frv/frv.c:2611 -#: config/frv/frv.c:2632 config/frv/frv.c:2637 -#, fuzzy -msgid "bad insn to frv_print_operand_memory_reference:" -msgstr "insn erroni per a frv_print_operand_memory_reference:" - -#: config/frv/frv.c:2723 -#, fuzzy, c-format -msgid "bad condition code" -msgstr "codi d'extensi de registre erroni" - -#: config/frv/frv.c:2798 -#, fuzzy -msgid "bad insn in frv_print_operand, bad const_double" -msgstr "insn erroni per a frv_print_operand,badconst_double" - -#: config/frv/frv.c:2859 -#, fuzzy -msgid "bad insn to frv_print_operand, 'e' modifier:" -msgstr "insn erroni per a frv_print_operand, modificador \"e\":" - -#: config/frv/frv.c:2867 -#, fuzzy -msgid "bad insn to frv_print_operand, 'F' modifier:" -msgstr "insn erroni per a frv_print_operand, modificador \"F\":" - -#: config/frv/frv.c:2883 -#, fuzzy -msgid "bad insn to frv_print_operand, 'f' modifier:" -msgstr "insn erroni per a frv_print_operand, modificador \"f\":" - -#: config/frv/frv.c:2897 -#, fuzzy -msgid "bad insn to frv_print_operand, 'g' modifier:" -msgstr "insn erroni per a frv_print_operand, modificador \"C\":" - -#: config/frv/frv.c:2945 -#, fuzzy -msgid "bad insn to frv_print_operand, 'L' modifier:" -msgstr "insn erroni per a frv_print_operand, modificador \"L\":" - -#: config/frv/frv.c:2958 -#, fuzzy -msgid "bad insn to frv_print_operand, 'M/N' modifier:" -msgstr "insn erroni per a frv_print_operand, modificador \"M/N\":" - -#: config/frv/frv.c:2979 -#, fuzzy -msgid "bad insn to frv_print_operand, 'O' modifier:" -msgstr "insn erroni per a frv_print_operand, modificador \"O\":" - -#: config/frv/frv.c:2997 -#, fuzzy -msgid "bad insn to frv_print_operand, P modifier:" -msgstr "insn erroni per a frv_print_operand, modificador \"P\":" - -#: config/frv/frv.c:3017 -#, fuzzy -msgid "bad insn in frv_print_operand, z case" -msgstr "insn erroni per a frv_print_operand, case z" - -#: config/frv/frv.c:3048 -#, fuzzy -msgid "bad insn in frv_print_operand, 0 case" -msgstr "insn erroni per a frv_print_operand, case 0" - -#: config/frv/frv.c:3053 -msgid "frv_print_operand: unknown code" -msgstr "frv_print_operand: codi desconegut" - -#: config/frv/frv.c:4422 -#, fuzzy -msgid "bad output_move_single operand" -msgstr "Operand output_move_single erroni" - -#: config/frv/frv.c:4549 -#, fuzzy -msgid "bad output_move_double operand" -msgstr "Operand output_move_single erroni" - -#: config/frv/frv.c:4691 -#, fuzzy -msgid "bad output_condmove_single operand" -msgstr "Operand output_condmove_single erroni" - -#. 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:328 -#, c-format -msgid " (frv)" -msgstr "" - -#: config/i386/i386.c:8218 -#, c-format -msgid "invalid UNSPEC as operand" -msgstr "UNSPEC no vlid com a operand" - -#: config/i386/i386.c:8924 -#, c-format -msgid "operand is neither a constant nor a condition code, invalid operand code 'c'" -msgstr "l'operand no s una constant ni un codi de condici, codi d'operand \"c\" no vlid" - -#: config/i386/i386.c:9040 -#, fuzzy, c-format -msgid "invalid operand code '%c'" -msgstr "codi d'operand \"%c\" no vlid" - -#: config/i386/i386.c:9089 -#, c-format -msgid "invalid constraints for operand" -msgstr "restriccions no vlides per a l'operand" - -#: config/i386/i386.c:16348 -msgid "unknown insn mode" -msgstr "mode insn desconegut" - -#. 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:61 -#, c-format -msgid "environment variable DJGPP not defined" -msgstr "no es va definir la variable d'ambient DJGPP" - -#: config/i386/xm-djgpp.h:63 -#, c-format -msgid "environment variable DJGPP points to missing file '%s'" -msgstr "la variable d'ambient DJGPP punta al fitxer faltant\"%s\"" - -#: config/i386/xm-djgpp.h:66 -#, c-format -msgid "environment variable DJGPP points to corrupt file '%s'" -msgstr "la variable d'ambient DJGPP punta al fitxer corrupte \"%s\"" - -#: config/ia64/ia64.c:4770 -#, c-format -msgid "ia64_print_operand: unknown code" -msgstr "ia64_print_operand: codi desconegut" - -#: config/ia64/ia64.c:9889 -#, fuzzy -msgid "invalid conversion from %<__fpreg%>" -msgstr "conversi no vlida de \"%T\" a \"%T\"" - -#: config/ia64/ia64.c:9892 -#, fuzzy -msgid "invalid conversion to %<__fpreg%>" -msgstr "conversi no vlida del tipus \"%T\" a partir del tipus \"%T\"" - -#: config/ia64/ia64.c:9905 config/ia64/ia64.c:9916 -#, fuzzy -msgid "invalid operation on %<__fpreg%>" -msgstr "no vlid operand per al codi %%p" - -#: config/iq2000/iq2000.c:3118 -#, c-format -msgid "invalid %%P operand" -msgstr "operand no vlid per a %%P" - -#: config/iq2000/iq2000.c:3126 config/rs6000/rs6000.c:11607 -#, c-format -msgid "invalid %%p value" -msgstr "valor no vlid per a %%p" - -#: config/iq2000/iq2000.c:3182 -#, c-format -msgid "invalid use of %%d, %%x, or %%X" -msgstr "s no vlid de %%d, %%x, o %%X" - -#: config/m32r/m32r.c:1775 -#, c-format -msgid "invalid operand to %%s code" -msgstr "no vlid operand per al codi %%s" - -#: config/m32r/m32r.c:1782 -#, c-format -msgid "invalid operand to %%p code" -msgstr "no vlid operand per al codi %%p" - -#: config/m32r/m32r.c:1837 -msgid "bad insn for 'A'" -msgstr "insn erroni per a \"A\"" - -#: config/m32r/m32r.c:1884 -#, c-format -msgid "invalid operand to %%T/%%B code" -msgstr "no vlid operand per al codi %%T/%%B" - -#: config/m32r/m32r.c:1907 -#, c-format -msgid "invalid operand to %%N code" -msgstr "no vlid operand per al codi %%N" - -#: config/m32r/m32r.c:1940 -msgid "pre-increment address is not a register" -msgstr "l'adrea de pre-increment no s un registre" - -#: config/m32r/m32r.c:1947 -msgid "pre-decrement address is not a register" -msgstr "l'adrea de pre-decrement no s un registre" - -#: config/m32r/m32r.c:1954 -msgid "post-increment address is not a register" -msgstr "l'adrea de post-increment no s un registre" - -#: config/m32r/m32r.c:2030 config/m32r/m32r.c:2044 -#: config/rs6000/rs6000.c:19870 -msgid "bad address" -msgstr "adrea erroni" - -#: config/m32r/m32r.c:2049 -msgid "lo_sum not of register" -msgstr "lo_sum no s un registre" - -#. !!!! SCz wrong here. -#: config/m68hc11/m68hc11.c:3189 config/m68hc11/m68hc11.c:3567 -msgid "move insn not handled" -msgstr "no es maneja move insn" - -#: config/m68hc11/m68hc11.c:3413 config/m68hc11/m68hc11.c:3497 -#: config/m68hc11/m68hc11.c:3770 -msgid "invalid register in the move instruction" -msgstr "registre no vlid en la instrucci move" - -#: config/m68hc11/m68hc11.c:3447 -msgid "invalid operand in the instruction" -msgstr "operand no vlid en la instrucci" - -#: config/m68hc11/m68hc11.c:3744 -msgid "invalid register in the instruction" -msgstr "registre no vlid en la instrucci" - -#: config/m68hc11/m68hc11.c:3777 -msgid "operand 1 must be a hard register" -msgstr "l'operand 1 ha de ser un registre fix" - -#: config/m68hc11/m68hc11.c:3791 -msgid "invalid rotate insn" -msgstr "rotaci de insn no vlida" - -#: config/m68hc11/m68hc11.c:4215 -msgid "registers IX, IY and Z used in the same INSN" -msgstr "es van usar els registres IX, IY i Z en el mateix INSN" - -#: config/m68hc11/m68hc11.c:4548 config/m68hc11/m68hc11.c:4848 -msgid "cannot do z-register replacement" -msgstr "no es pot reemplaar el registre-z" - -#: config/m68hc11/m68hc11.c:4911 -msgid "invalid Z register replacement for insn" -msgstr "reemplaament de registre Z no vlid per al insn" - -#: config/mips/mips.c:6313 config/mips/mips.c:6334 config/mips/mips.c:6438 -#, fuzzy, c-format -msgid "'%%%c' is not a valid operand prefix" -msgstr "\"%T\" no s una expressi vlida" - -#: config/mips/mips.c:6382 config/mips/mips.c:6389 config/mips/mips.c:6396 -#: config/mips/mips.c:6456 -#, fuzzy, c-format -msgid "invalid use of '%%%c'" -msgstr "s no vlid de \"%D\"" - -#: config/mips/mips.c:6701 -msgid "mips_debugger_offset called with non stack/frame/arg pointer" -msgstr "" - -#: config/mmix/mmix.c:1487 config/mmix/mmix.c:1617 -msgid "MMIX Internal: Expected a CONST_INT, not this" -msgstr "MMIX intern: Esperant un CONS_INT, no aix" - -#: config/mmix/mmix.c:1566 -msgid "MMIX Internal: Bad value for 'm', not a CONST_INT" -msgstr "MMIX intern: valor erroni per a \"m\", no s un CONST_INT" - -#: config/mmix/mmix.c:1585 -msgid "MMIX Internal: Expected a register, not this" -msgstr "MMIX intern: Esperant un registre, no aix" - -#: config/mmix/mmix.c:1595 -msgid "MMIX Internal: Expected a constant, not this" -msgstr "MMIX intern: Esperant una constant, no aix" - -#. We need the original here. -#: config/mmix/mmix.c:1679 -msgid "MMIX Internal: Cannot decode this operand" -msgstr "MMIX intern: aquest operand no es pot dexifrar" - -#: config/mmix/mmix.c:1736 -msgid "MMIX Internal: This is not a recognized address" -msgstr "MMIX intern: adrea no reconeguda" - -#: config/mmix/mmix.c:2669 -msgid "MMIX Internal: Trying to output invalidly reversed condition:" -msgstr "MMIX intern: Intentant de mostrar una condici invertida de forma no vlida:" - -#: config/mmix/mmix.c:2676 -msgid "MMIX Internal: What's the CC of this?" -msgstr "MMIX Internal: Quin s el CC per aix" - -#: config/mmix/mmix.c:2680 -msgid "MMIX Internal: What is the CC of this?" -msgstr "MMIX Internal: Quin s el CC per aix" - -#: config/mmix/mmix.c:2744 -msgid "MMIX Internal: This is not a constant:" -msgstr "MMIX Internal: Aix no s una constant:" - -#: config/mt/mt.c:299 -msgid "mt_final_prescan_insn, invalid insn #1" -msgstr "" - -#: config/mt/mt.c:370 -#, fuzzy -msgid "PRINT_OPERAND_ADDRESS, 2 regs" -msgstr "PRINT_OPERAND_ADDRESS, punter nul" - -#: config/mt/mt.c:394 -#, fuzzy -msgid "PRINT_OPERAND_ADDRESS, invalid insn #1" -msgstr "PRINT_OPERAND_ADDRESS, punter nul" - -#: config/rs6000/host-darwin.c:96 -#, c-format -msgid "Out of stack space.\n" -msgstr "" - -#: config/rs6000/host-darwin.c:117 -#, c-format -msgid "Try running '%s' in the shell to raise its limit.\n" -msgstr "" - -#: config/rs6000/rs6000.c:11434 -#, c-format -msgid "invalid %%f value" -msgstr "valor %%f no vlid" - -#: config/rs6000/rs6000.c:11443 -#, c-format -msgid "invalid %%F value" -msgstr "valor %%F no vlid" - -#: config/rs6000/rs6000.c:11452 -#, c-format -msgid "invalid %%G value" -msgstr "valor %%G no vlid" - -#: config/rs6000/rs6000.c:11487 -#, c-format -msgid "invalid %%j code" -msgstr "valor %%j no vlid" - -#: config/rs6000/rs6000.c:11497 -#, c-format -msgid "invalid %%J code" -msgstr "valor %%J no vlid" - -#: config/rs6000/rs6000.c:11507 -#, c-format -msgid "invalid %%k value" -msgstr "valor %%k no vlid" - -#: config/rs6000/rs6000.c:11527 config/xtensa/xtensa.c:2022 -#, c-format -msgid "invalid %%K value" -msgstr "valor %%K no vlid" - -#: config/rs6000/rs6000.c:11597 -#, c-format -msgid "invalid %%O value" -msgstr "valor %%O no vlid" - -#: config/rs6000/rs6000.c:11644 -#, c-format -msgid "invalid %%q value" -msgstr "valor no vlid per a %%q" - -#: config/rs6000/rs6000.c:11688 -#, c-format -msgid "invalid %%S value" -msgstr "valor %%S no vlid" - -#: config/rs6000/rs6000.c:11728 -#, c-format -msgid "invalid %%T value" -msgstr "valor %%T no vlid" - -#: config/rs6000/rs6000.c:11738 -#, c-format -msgid "invalid %%u value" -msgstr "valor %%u no vlid" - -#: config/rs6000/rs6000.c:11747 config/xtensa/xtensa.c:1992 -#, c-format -msgid "invalid %%v value" -msgstr "valor %%v no vlid" - -#: config/rs6000/rs6000.c:21768 -#, fuzzy -msgid "AltiVec argument passed to unprototyped function" -msgstr "molt pocs arguments per a la funci" - -#: config/s390/s390.c:4561 -#, fuzzy, c-format -msgid "cannot decompose address" -msgstr "No es pot descompondre l'adrea." - -#: config/s390/s390.c:4771 -msgid "UNKNOWN in print_operand !?" -msgstr "UNKNOWN en print_operand !?" - -#: config/score/score3.c:1262 config/score/score3.c:1282 -#: config/score/score7.c:1253 -#, fuzzy, c-format -msgid "invalid operand for code: '%c'" -msgstr "codi d'operand \"%c\" no vlid" - -#: config/sh/sh.c:746 -#, fuzzy, c-format -msgid "invalid operand to %%R" -msgstr "operand no vlid per al codi %%R" - -#: config/sh/sh.c:773 -#, fuzzy, c-format -msgid "invalid operand to %%S" -msgstr "operand no vlid per al codi %%R" - -#: config/sh/sh.c:8095 -#, fuzzy -msgid "created and used with different architectures / ABIs" -msgstr "\"%#D\" redeclarat com un tipus diferent de smbol" - -#: config/sh/sh.c:8097 -#, fuzzy -msgid "created and used with different ABIs" -msgstr "\"%#D\" redeclarat com un tipus diferent de smbol" - -#: config/sh/sh.c:8099 -#, fuzzy -msgid "created and used with different endianness" -msgstr "inicialitzador de dades en l'ordinador amb \"endianness\" diferent" - -#: config/sparc/sparc.c:6803 config/sparc/sparc.c:6809 -#, c-format -msgid "invalid %%Y operand" -msgstr "operand %%Y no vlid" - -#: config/sparc/sparc.c:6879 -#, c-format -msgid "invalid %%A operand" -msgstr "operand %%A no vlid" - -#: config/sparc/sparc.c:6889 -#, c-format -msgid "invalid %%B operand" -msgstr "operand %%B no vlid" - -#: config/sparc/sparc.c:6928 -#, c-format -msgid "invalid %%c operand" -msgstr "operand %%c no vlid" - -#: config/sparc/sparc.c:6950 -#, c-format -msgid "invalid %%d operand" -msgstr "operand %%d no vlid" - -#: config/sparc/sparc.c:6967 -#, c-format -msgid "invalid %%f operand" -msgstr "operand %%f no vlid" - -#: config/sparc/sparc.c:6981 -#, c-format -msgid "invalid %%s operand" -msgstr "operand %%s no vlid" - -#: config/sparc/sparc.c:7035 -#, c-format -msgid "long long constant not a valid immediate operand" -msgstr "la constant long long no s un operand immediat vlid" - -#: config/sparc/sparc.c:7038 -#, c-format -msgid "floating point constant not a valid immediate operand" -msgstr "la constant de coma flotant no s un operand immediat vlid" - -#: config/stormy16/stormy16.c:1775 config/stormy16/stormy16.c:1846 -#, fuzzy, c-format -msgid "'B' operand is not constant" -msgstr "l'operand \"B\" no s una constant" - -#: config/stormy16/stormy16.c:1802 -#, fuzzy, c-format -msgid "'B' operand has multiple bits set" -msgstr "l'operand \"B\" t establerts mltiples bits" - -#: config/stormy16/stormy16.c:1828 -#, fuzzy, c-format -msgid "'o' operand is not constant" -msgstr "l'operand \"o\" no s una constant" - -#: config/stormy16/stormy16.c:1860 -#, c-format -msgid "xstormy16_print_operand: unknown code" -msgstr "xstormy16_print_operand: codi desconegut" - -#: config/v850/v850.c:372 -msgid "const_double_split got a bad insn:" -msgstr "const_double_split va rebre un insn erroni:" - -#: config/v850/v850.c:936 -msgid "output_move_single:" -msgstr "output_move_single:" - -#: config/xtensa/xtensa.c:652 config/xtensa/xtensa.c:684 -#: config/xtensa/xtensa.c:693 -msgid "bad test" -msgstr "prova errnia" - -#: config/xtensa/xtensa.c:1980 -#, c-format -msgid "invalid %%D value" -msgstr "valor no vlid per a %%D" - -#: config/xtensa/xtensa.c:2017 -msgid "invalid mask" -msgstr "mscara no vlida" - -#: config/xtensa/xtensa.c:2043 -#, fuzzy, c-format -msgid "invalid %%x value" -msgstr "valor no vlid per a %%x/X" - -#: config/xtensa/xtensa.c:2050 -#, fuzzy, c-format -msgid "invalid %%d value" -msgstr "valor %%v no vlid" - -#: config/xtensa/xtensa.c:2071 config/xtensa/xtensa.c:2081 -#, fuzzy, c-format -msgid "invalid %%t/%%b value" -msgstr "valor %%b no vlid" - -#: config/xtensa/xtensa.c:2123 -msgid "invalid address" -msgstr "adrea no vlida" - -#: config/xtensa/xtensa.c:2148 -msgid "no register in address" -msgstr "no hi ha registre en l'adrea" - -#: config/xtensa/xtensa.c:2156 -msgid "address offset not a constant" -msgstr "el desplaament d'adrea no s una constant" - -#: cp/call.c:2514 -msgid "candidates are:" -msgstr "" - -#: cp/call.c:6463 -msgid "candidate 1:" -msgstr "" - -#: cp/call.c:6464 -msgid "candidate 2:" -msgstr "" - -#: cp/decl2.c:668 -msgid "candidates are: %+#D" -msgstr "" - -#: cp/decl2.c:670 -#, fuzzy -msgid "candidate is: %+#D" -msgstr "no es pot escriure %s: %m" - -#: cp/g++spec.c:251 java/jvspec.c:406 -#, fuzzy, c-format -msgid "argument to '%s' missing\n" -msgstr "falta l'argument per a `%s'\n" - -#: fortran/arith.c:90 -msgid "Arithmetic OK at %L" -msgstr "" - -#: fortran/arith.c:93 -msgid "Arithmetic overflow at %L" -msgstr "" - -#: fortran/arith.c:96 -msgid "Arithmetic underflow at %L" -msgstr "" - -#: fortran/arith.c:99 -msgid "Arithmetic NaN at %L" -msgstr "" - -#: fortran/arith.c:102 -#, fuzzy -msgid "Division by zero at %L" -msgstr "divisi per zero" - -#: fortran/arith.c:105 -msgid "Array operands are incommensurate at %L" -msgstr "" - -#: fortran/arith.c:109 -msgid "Integer outside symmetric range implied by Standard Fortran at %L" -msgstr "" - -#: fortran/arith.c:1425 -msgid "elemental binary operation" -msgstr "" - -#: fortran/arith.c:1997 -#, fuzzy, no-c-format -msgid "Arithmetic OK converting %s to %s at %L" -msgstr "la conversion de %s a %s ha fallat" - -#: fortran/arith.c:2001 -#, no-c-format -msgid "Arithmetic overflow converting %s to %s at %L. This check can be disabled with the option -fno-range-check" -msgstr "" - -#: fortran/arith.c:2006 -#, no-c-format -msgid "Arithmetic underflow converting %s to %s at %L" -msgstr "" - -#: fortran/arith.c:2010 -#, no-c-format -msgid "Arithmetic NaN converting %s to %s at %L" -msgstr "" - -#: fortran/arith.c:2014 -#, fuzzy, no-c-format -msgid "Division by zero converting %s to %s at %L" -msgstr "divisi per zero en \"%E %% 0\"" - -#: fortran/arith.c:2018 -#, no-c-format -msgid "Array operands are incommensurate converting %s to %s at %L" -msgstr "" - -#: fortran/arith.c:2022 -#, no-c-format -msgid "Integer outside symmetric range implied by Standard Fortran converting %s to %s at %L" -msgstr "" - -#: fortran/arith.c:2355 -#, fuzzy, no-c-format -msgid "The Hollerith constant at %L is too long to convert to %s" -msgstr "La constant de carcter en %0 no t l'apstrofe que tanca en %1" - -#: fortran/arith.c:2513 -#, no-c-format -msgid "Enumerator exceeds the C integer type at %C" -msgstr "" - -#: fortran/array.c:97 -#, fuzzy, no-c-format -msgid "Expected array subscript at %C" -msgstr "el subindici de matriu t un tipus \"char\"" - -#: fortran/array.c:124 -#, fuzzy, no-c-format -msgid "Expected array subscript stride at %C" -msgstr "el subindici de matriu t un tipus \"char\"" - -#: fortran/array.c:167 -#, fuzzy, no-c-format -msgid "Invalid form of array reference at %C" -msgstr "Element null en %0 per a la referncia de matriu en %1" - -#: fortran/array.c:172 -#, no-c-format -msgid "Array reference at %C cannot have more than %d dimensions" -msgstr "" - -#: fortran/array.c:223 -#, no-c-format -msgid "Variable '%s' at %L in this context must be constant" -msgstr "" - -#: fortran/array.c:299 -#, no-c-format -msgid "Expected expression in array specification at %C" -msgstr "" - -#: fortran/array.c:386 -#, no-c-format -msgid "Bad array specification for an explicitly shaped array at %C" -msgstr "" - -#: fortran/array.c:396 -#, no-c-format -msgid "Bad array specification for assumed shape array at %C" -msgstr "" - -#: fortran/array.c:410 -#, fuzzy, no-c-format -msgid "Bad specification for deferred shape array at %C" -msgstr "No hi ha especificaci per al iterador del DO implcit `%A' en %0" - -#: fortran/array.c:414 -#, fuzzy, no-c-format -msgid "Bad specification for assumed size array at %C" -msgstr "No hi ha especificaci per al iterador del DO implcit `%A' en %0" - -#: fortran/array.c:423 -#, no-c-format -msgid "Expected another dimension in array declaration at %C" -msgstr "" - -#: fortran/array.c:429 -#, no-c-format -msgid "Array specification at %C has more than %d dimensions" -msgstr "" - -#: fortran/array.c:635 -#, fuzzy, no-c-format -msgid "duplicated initializer" -msgstr "valor inicial no vlid" - -#: fortran/array.c:727 -#, no-c-format -msgid "DO-iterator '%s' at %L is inside iterator of the same name" -msgstr "" - -#: fortran/array.c:829 fortran/array.c:938 -#, fuzzy, no-c-format -msgid "Syntax error in array constructor at %C" -msgstr "errore sintctic en la llista de parmetre de macro" - -#: fortran/array.c:884 -#, no-c-format -msgid "Fortran 2003: [...] style array constructors at %C" -msgstr "" - -#: fortran/array.c:898 -#, fuzzy, no-c-format -msgid "Empty array constructor at %C is not allowed" -msgstr "l'argument per a l'atribut \"%s\" s ms gran que %d" - -#: fortran/array.c:982 -#, no-c-format -msgid "Element in %s array constructor at %L is %s" -msgstr "" - -#: fortran/array.c:1309 -#, no-c-format -msgid "Iterator step at %L cannot be zero" -msgstr "" - -#: fortran/check.c:44 -#, fuzzy, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be a scalar" -msgstr "l'argument 1 de __builtin__spe_predicate ha de ser una constant" - -#: fortran/check.c:59 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be %s" -msgstr "" - -#: fortran/check.c:87 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be a numeric type" -msgstr "" - -#: fortran/check.c:101 fortran/check.c:817 fortran/check.c:827 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be INTEGER or REAL" -msgstr "" - -#: fortran/check.c:118 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be REAL or COMPLEX" -msgstr "" - -#: fortran/check.c:147 -#, fuzzy, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be a constant" -msgstr "l'argument 1 de __builtin__spe_predicate ha de ser una constant" - -#: fortran/check.c:156 -#, fuzzy, no-c-format -msgid "Invalid kind for %s at %L" -msgstr "constant de cadena no vlida \"%E\"" - -#: fortran/check.c:175 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be double precision" -msgstr "" - -#: fortran/check.c:192 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be a logical array" -msgstr "" - -#: fortran/check.c:210 -#, fuzzy, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be an array" -msgstr "l'argument 1 de __builtin__spe_predicate ha de ser una constant" - -#: fortran/check.c:225 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be the same type and kind as '%s'" -msgstr "" - -#: fortran/check.c:241 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be of rank %d" -msgstr "" - -#: fortran/check.c:256 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must not be OPTIONAL" -msgstr "" - -#: fortran/check.c:275 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be of kind %d" -msgstr "" - -#: fortran/check.c:297 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L cannot be INTENT(IN)" -msgstr "" - -#: fortran/check.c:303 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be a variable" -msgstr "" - -#: fortran/check.c:320 -#, no-c-format -msgid "Missing DIM parameter in intrinsic '%s' at %L" -msgstr "" - -#: fortran/check.c:363 -#, no-c-format -msgid "'dim' argument of '%s' intrinsic at %L is not a valid dimension index" -msgstr "" - -#: fortran/check.c:433 -#, no-c-format -msgid "Unequal character lengths (%ld and %ld) in %s intrinsic at %L" -msgstr "" - -#: fortran/check.c:535 fortran/check.c:1938 fortran/check.c:1953 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be ALLOCATABLE" -msgstr "" - -#: fortran/check.c:559 fortran/check.c:3703 -#, no-c-format -msgid "'%s' and '%s' arguments of '%s' intrinsic at %L must have the same type" -msgstr "" - -#: fortran/check.c:568 fortran/check.c:1143 fortran/check.c:1286 -#: fortran/check.c:1360 fortran/check.c:1616 -#, no-c-format -msgid "Extension: Different type kinds at %L" -msgstr "" - -#: fortran/check.c:608 fortran/check.c:2022 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be a POINTER" -msgstr "" - -#: fortran/check.c:628 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be a pointer or target VARIABLE or FUNCTION" -msgstr "" - -#: fortran/check.c:636 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be a POINTER or a TARGET" -msgstr "" - -#: fortran/check.c:652 -#, no-c-format -msgid "Array section with a vector subscript at %L shall not be the target of a pointer" -msgstr "" - -#: fortran/check.c:663 -#, no-c-format -msgid "NULL pointer at %L is not permitted as actual argument of '%s' intrinsic function" -msgstr "" - -#: fortran/check.c:798 fortran/check.c:915 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must not be present if 'x' is COMPLEX" -msgstr "" - -#: fortran/check.c:848 fortran/check.c:1205 fortran/check.c:1308 -#: fortran/check.c:1467 fortran/check.c:1484 fortran/check.c:2318 -#: fortran/check.c:2444 fortran/check.c:2779 fortran/check.c:2821 -#, no-c-format -msgid "Fortran 2003: '%s' intrinsic with KIND argument at %L" -msgstr "" - -#: fortran/check.c:964 fortran/check.c:1712 fortran/check.c:1720 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be numeric or LOGICAL" -msgstr "" - -#: fortran/check.c:978 -#, no-c-format -msgid "Different shape for arguments '%s' and '%s' at %L for intrinsic 'dot_product'" -msgstr "" - -#: fortran/check.c:997 fortran/check.c:1005 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be default real" -msgstr "" - -#: fortran/check.c:1256 -#, no-c-format -msgid "Argument of %s at %L must be of length one" -msgstr "" - -#: fortran/check.c:1315 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be the same kind as '%s'" -msgstr "" - -#: fortran/check.c:1440 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be a non-derived type" -msgstr "" - -#: fortran/check.c:1589 -#, fuzzy, no-c-format -msgid "Intrinsic '%s' at %L must have at least two arguments" -msgstr "\"%D\" ha de prendre dos arguments exactament" - -#: fortran/check.c:1622 -#, no-c-format -msgid "'a%d' argument of '%s' intrinsic at %L must be %s(%d)" -msgstr "" - -#: fortran/check.c:1655 -#, no-c-format -msgid "Fortran 2003: '%s' intrinsic with CHARACTER argument at %L" -msgstr "" - -#: fortran/check.c:1662 -#, no-c-format -msgid "'a1' argument of '%s' intrinsic at %L must be INTEGER, REAL or CHARACTER" -msgstr "" - -#: fortran/check.c:1734 -#, no-c-format -msgid "Different shape on dimension 1 for arguments '%s' and '%s' at %L for intrinsic matmul" -msgstr "" - -#: fortran/check.c:1753 -#, no-c-format -msgid "Different shape on dimension 2 for argument '%s' and dimension 1 for argument '%s' at %L for intrinsic matmul" -msgstr "" - -#: fortran/check.c:1762 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be of rank 1 or 2" -msgstr "" - -#: fortran/check.c:1964 -#, no-c-format -msgid "the '%s' and '%s' arguments of '%s' intrinsic at %L must have the same rank %d/%d" -msgstr "" - -#: fortran/check.c:1973 -#, no-c-format -msgid "the '%s' and '%s' arguments of '%s' intrinsic at %L must be of the same kind %d/%d" -msgstr "" - -#: fortran/check.c:2069 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be of type REAL or COMPLEX" -msgstr "" - -#: fortran/check.c:2090 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be of a dummy variable" -msgstr "" - -#: fortran/check.c:2098 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be of an OPTIONAL dummy variable" -msgstr "" - -#: fortran/check.c:2114 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must not be a subobject of '%s'" -msgstr "" - -#: fortran/check.c:2231 -#, no-c-format -msgid "'shape' argument of 'reshape' intrinsic at %L must be an array of constant size" -msgstr "" - -#: fortran/check.c:2241 -#, no-c-format -msgid "'shape' argument of 'reshape' intrinsic at %L has more than %d elements" -msgstr "" - -#: fortran/check.c:2279 -#, no-c-format -msgid "Without padding, there are not enough elements in the intrinsic RESHAPE source at %L to match the shape" -msgstr "" - -#: fortran/check.c:2364 -#, fuzzy, no-c-format -msgid "Missing arguments to %s intrinsic at %L" -msgstr "Falten arguments per a l'opci \"%s\"" - -#: fortran/check.c:2405 -#, no-c-format -msgid "'source' argument of 'shape' intrinsic at %L must not be an assumed size array" -msgstr "" - -#: fortran/check.c:2479 -#, fuzzy, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be less than rank %d" -msgstr "l'argument per a l'atribut \"%s\" s ms gran que %d" - -#: fortran/check.c:2731 -#, no-c-format -msgid "'MOLD' argument of 'TRANSFER' intrinsic at %L must not be %s" -msgstr "" - -#: fortran/check.c:3050 -#, fuzzy, no-c-format -msgid "Too many arguments to %s at %L" -msgstr "massa arguments per a %s \"%+#D\"" - -#: fortran/check.c:3162 fortran/check.c:3616 fortran/check.c:3640 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be INTEGER or PROCEDURE" -msgstr "" - -#: fortran/check.c:3338 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be of a kind not wider than the default kind (%d)" -msgstr "" - -#: fortran/check.c:3687 fortran/check.c:3695 -#, no-c-format -msgid "'%s' argument of '%s' intrinsic at %L must be INTEGER or LOGICAL" -msgstr "" - -#: fortran/data.c:64 -#, fuzzy, no-c-format -msgid "non-constant array in DATA statement %L" -msgstr "ndex de matriu no constant en valor inicial" - -#: fortran/data.c:193 -#, no-c-format -msgid "failure to simplify substring reference in DATA statement at %L" -msgstr "" - -#: fortran/data.c:224 -#, fuzzy, no-c-format -msgid "initialization string truncated to match variable at %L" -msgstr "no es poden niuar els designadors d'iniciaci" - -#: fortran/data.c:293 -#, no-c-format -msgid "'%s' at %L already is initialized at %L" -msgstr "" - -#: fortran/data.c:412 -#, fuzzy, no-c-format -msgid "Extension: re-initialization of '%s' at %L" -msgstr " salta la inicializacin de \"%#D\"" - -#: fortran/decl.c:254 -#, no-c-format -msgid "Host associated variable '%s' may not be in the DATA statement at %C" -msgstr "" - -#: fortran/decl.c:261 -#, no-c-format -msgid "Extension: initialization of common block variable '%s' in DATA statement at %C" -msgstr "" - -#: fortran/decl.c:366 -#, no-c-format -msgid "Symbol '%s' must be a PARAMETER in DATA statement at %C" -msgstr "" - -#: fortran/decl.c:470 -#, no-c-format -msgid "Initialization at %C is not allowed in a PURE procedure" -msgstr "" - -#: fortran/decl.c:529 -#, no-c-format -msgid "DATA statement at %C is not allowed in a PURE procedure" -msgstr "" - -#: fortran/decl.c:558 -#, no-c-format -msgid "Bad INTENT specification at %C" -msgstr "" - -#: fortran/decl.c:600 -#, no-c-format -msgid "Conflict in attributes of function argument at %C" -msgstr "" - -#: fortran/decl.c:647 -#, fuzzy, no-c-format -msgid "Syntax error in character length specification at %C" -msgstr "error de decodificaci en l'especificaci del mtode" - -#: fortran/decl.c:757 -#, fuzzy, no-c-format -msgid "Procedure '%s' at %C is already defined at %L" -msgstr "\"%D\" ja est definit en \"%T\"" - -#: fortran/decl.c:765 -#, fuzzy, no-c-format -msgid "Name '%s' at %C is already defined as a generic interface at %L" -msgstr "L'etiqueta %A ja es va definir en %1 quan es va redefinir en %0" - -#: fortran/decl.c:778 -#, no-c-format -msgid "Procedure '%s' at %C has an explicit interface and must not have attributes declared at %L" -msgstr "" - -#: fortran/decl.c:850 -#, no-c-format -msgid "Procedure '%s' at %L must have the BIND(C) attribute to be C interoperable" -msgstr "" - -#: fortran/decl.c:880 -#, no-c-format -msgid "Type '%s' at %L is a parameter to the BIND(C) procedure '%s' but is not C interoperable because derived type '%s' is not C interoperable" -msgstr "" - -#: fortran/decl.c:887 -#, no-c-format -msgid "Variable '%s' at %L is a parameter to the BIND(C) procedure '%s' but may not be C interoperable" -msgstr "" - -#: fortran/decl.c:902 -#, no-c-format -msgid "Character argument '%s' at %L must be length 1 because procedure '%s' is BIND(C)" -msgstr "" - -#: fortran/decl.c:916 -#, no-c-format -msgid "Variable '%s' at %L cannot have the ALLOCATABLE attribute because procedure '%s' is BIND(C)" -msgstr "" - -#: fortran/decl.c:925 -#, no-c-format -msgid "Variable '%s' at %L cannot have the POINTER attribute because procedure '%s' is BIND(C)" -msgstr "" - -#: fortran/decl.c:934 -#, no-c-format -msgid "Variable '%s' at %L cannot have the OPTIONAL attribute because procedure '%s' is BIND(C)" -msgstr "" - -#: fortran/decl.c:947 -#, no-c-format -msgid "Assumed-shape array '%s' at %L cannot be an argument to the procedure '%s' at %L because the procedure is BIND(C)" -msgstr "" - -#: fortran/decl.c:957 -#, no-c-format -msgid "Deferred-shape array '%s' at %L cannot be an argument to the procedure '%s' at %L because the procedure is BIND(C)" -msgstr "" - -#: fortran/decl.c:1033 -#, no-c-format -msgid "Variable '%s' in common block '%s' at %C must be declared with a C interoperable kind since common block '%s' is BIND(C)" -msgstr "" - -#: fortran/decl.c:1069 -#, no-c-format -msgid "CHARACTER expression at %L is being truncated (%d/%d)" -msgstr "" - -#: fortran/decl.c:1075 -#, no-c-format -msgid "The CHARACTER elements of the array constructor at %L must have the same length (%d/%d)" -msgstr "" - -#: fortran/decl.c:1165 -#, no-c-format -msgid "Initializer not allowed for PARAMETER '%s' at %C" -msgstr "" - -#: fortran/decl.c:1174 -#, no-c-format -msgid "Initializer not allowed for COMMON variable '%s' at %C" -msgstr "" - -#: fortran/decl.c:1184 -#, fuzzy, no-c-format -msgid "PARAMETER at %L is missing an initializer" -msgstr "falta valor inicial" - -#: fortran/decl.c:1194 -#, no-c-format -msgid "Variable '%s' at %C with an initializer already appears in a DATA statement" -msgstr "" - -#: fortran/decl.c:1344 -#, no-c-format -msgid "Component at %C must have the POINTER attribute" -msgstr "" - -#: fortran/decl.c:1352 -#, no-c-format -msgid "Array component of structure at %C must have explicit or deferred shape" -msgstr "" - -#: fortran/decl.c:1378 -#, no-c-format -msgid "Allocatable component at %C must be an array" -msgstr "" - -#: fortran/decl.c:1389 -#, no-c-format -msgid "Pointer array component of structure at %C must have a deferred shape" -msgstr "" - -#: fortran/decl.c:1398 -#, no-c-format -msgid "Allocatable component of structure at %C must have a deferred shape" -msgstr "" - -#: fortran/decl.c:1407 -#, no-c-format -msgid "Array component of structure at %C must have an explicit shape" -msgstr "" - -#: fortran/decl.c:1433 -#, no-c-format -msgid "NULL() initialization at %C is ambiguous" -msgstr "" - -#: fortran/decl.c:1556 fortran/decl.c:5197 -#, no-c-format -msgid "Duplicate array spec for Cray pointee at %C" -msgstr "" - -#: fortran/decl.c:1616 -#, no-c-format -msgid "the type of '%s' at %C has not been declared within the interface" -msgstr "" - -#: fortran/decl.c:1632 -#, fuzzy, no-c-format -msgid "Function name '%s' not allowed at %C" -msgstr "%Jno es permet un atribut de secci per a \"%D\"" - -#: fortran/decl.c:1648 -#, no-c-format -msgid "Extension: Old-style initialization at %C" -msgstr "" - -#: fortran/decl.c:1663 -#, no-c-format -msgid "Initialization at %C isn't for a pointer variable" -msgstr "" - -#: fortran/decl.c:1671 -#, no-c-format -msgid "Pointer initialization requires a NULL() at %C" -msgstr "" - -#: fortran/decl.c:1677 -#, no-c-format -msgid "Initialization of pointer at %C is not allowed in a PURE procedure" -msgstr "" - -#: fortran/decl.c:1690 -#, no-c-format -msgid "Pointer initialization at %C requires '=>', not '='" -msgstr "" - -#: fortran/decl.c:1699 fortran/decl.c:6129 -#, fuzzy, no-c-format -msgid "Expected an initialization expression at %C" -msgstr "inicialitzaci de l'expressi new amb \"=\"" - -#: fortran/decl.c:1705 -#, no-c-format -msgid "Initialization of variable at %C is not allowed in a PURE procedure" -msgstr "" - -#: fortran/decl.c:1718 -#, no-c-format -msgid "Initialization of allocatable component at %C is not allowed" -msgstr "" - -#: fortran/decl.c:1772 fortran/decl.c:1781 -#, fuzzy, no-c-format -msgid "Old-style type declaration %s*%d not supported at %C" -msgstr "no es dna suport a la declaraci feble de \"%s\"" - -#: fortran/decl.c:1786 -#, fuzzy, no-c-format -msgid "Nonstandard type declaration %s*%d at %C" -msgstr "declaraci extern niada de \"%s\"" - -#: fortran/decl.c:1838 fortran/decl.c:1897 -#, no-c-format -msgid "Missing right parenthesis at %C" -msgstr "" - -#: fortran/decl.c:1853 fortran/decl.c:1931 -#, fuzzy, no-c-format -msgid "Expected initialization expression at %C" -msgstr "inicialitzaci de l'expressi new amb \"=\"" - -#: fortran/decl.c:1861 fortran/decl.c:1937 -#, fuzzy, no-c-format -msgid "Expected scalar initialization expression at %C" -msgstr "inicialitzaci de l'expressi new amb \"=\"" - -#: fortran/decl.c:1891 -#, fuzzy, no-c-format -msgid "Kind %d not supported for type %s at %C" -msgstr "el mode d'arrodoniment no t suport per a floats de VAX" - -#: fortran/decl.c:1957 -#, fuzzy, no-c-format -msgid "Kind %d is not supported for CHARACTER at %C" -msgstr "el mode d'arrodoniment no t suport per a floats de VAX" - -#: fortran/decl.c:2086 -#, no-c-format -msgid "Syntax error in CHARACTER declaration at %C" -msgstr "" - -#: fortran/decl.c:2156 -#, no-c-format -msgid "Extension: BYTE type at %C" -msgstr "" - -#: fortran/decl.c:2162 -#, no-c-format -msgid "BYTE type used at %C is not available on the target machine" -msgstr "" - -#: fortran/decl.c:2211 -#, no-c-format -msgid "DOUBLE COMPLEX at %C does not conform to the Fortran 95 standard" -msgstr "" - -#: fortran/decl.c:2245 fortran/decl.c:2252 fortran/decl.c:2558 -#: fortran/decl.c:2566 -#, fuzzy, no-c-format -msgid "Type name '%s' at %C is ambiguous" -msgstr "l's de \"%D\" s ambigu" - -#: fortran/decl.c:2321 -#, no-c-format -msgid "Missing character range in IMPLICIT at %C" -msgstr "" - -#: fortran/decl.c:2367 -#, no-c-format -msgid "Letters must be in alphabetic order in IMPLICIT statement at %C" -msgstr "" - -#: fortran/decl.c:2421 -#, no-c-format -msgid "Empty IMPLICIT statement at %C" -msgstr "" - -#: fortran/decl.c:2524 -#, no-c-format -msgid "IMPORT statement at %C only permitted in an INTERFACE body" -msgstr "" - -#: fortran/decl.c:2529 -#, fuzzy, no-c-format -msgid "Fortran 2003: IMPORT statement at %C" -msgstr "Coma sobrant en la declaraci FORMAT en %0" - -#: fortran/decl.c:2544 -#, no-c-format -msgid "Expecting list of named entities at %C" -msgstr "" - -#: fortran/decl.c:2572 -#, no-c-format -msgid "Cannot IMPORT '%s' from host scoping unit at %C - does not exist." -msgstr "" - -#: fortran/decl.c:2579 -#, no-c-format -msgid "'%s' is already IMPORTed from host scoping unit at %C." -msgstr "" - -#: fortran/decl.c:2608 -#, fuzzy, no-c-format -msgid "Syntax error in IMPORT statement at %C" -msgstr "Nombre espuri en la declaraci FORMAT en %0" - -#: fortran/decl.c:2850 -#, fuzzy, no-c-format -msgid "Missing dimension specification at %C" -msgstr "Falta l'especificador %A en la declaraci en %0" - -#: fortran/decl.c:2924 -#, no-c-format -msgid "Duplicate %s attribute at %L" -msgstr "" - -#: fortran/decl.c:2943 -#, no-c-format -msgid "Fortran 2003: ALLOCATABLE attribute at %C in a TYPE definition" -msgstr "" - -#: fortran/decl.c:2953 -#, fuzzy, no-c-format -msgid "Attribute at %L is not allowed in a TYPE definition" -msgstr "la variable de registre global segueix a una definici de funci" - -#: fortran/decl.c:2971 -#, no-c-format -msgid "Fortran 2003: Attribute %s at %L in a TYPE definition" -msgstr "" - -#: fortran/decl.c:2982 -#, no-c-format -msgid "%s attribute at %L is not allowed outside of the specification part of a module" -msgstr "" - -#: fortran/decl.c:3034 fortran/decl.c:5437 -#, no-c-format -msgid "PROTECTED at %C only allowed in specification part of a module" -msgstr "" - -#: fortran/decl.c:3040 -#, no-c-format -msgid "Fortran 2003: PROTECTED attribute at %C" -msgstr "" - -#: fortran/decl.c:3071 -#, no-c-format -msgid "Fortran 2003: VALUE attribute at %C" -msgstr "" - -#: fortran/decl.c:3081 -#, no-c-format -msgid "Fortran 2003: VOLATILE attribute at %C" -msgstr "" - -#: fortran/decl.c:3121 -#, no-c-format -msgid "Multiple identifiers provided with single NAME= specifier at %C" -msgstr "" - -#. Print an error, but continue parsing line. -#: fortran/decl.c:3171 -#, no-c-format -msgid "C kind parameter is for type %s but symbol '%s' at %L is of type %s" -msgstr "" - -#: fortran/decl.c:3235 -#, no-c-format -msgid "Implicitly declared BIND(C) function '%s' at %L may not be C interoperable" -msgstr "" - -#: fortran/decl.c:3257 -#, no-c-format -msgid "Variable '%s' in common block '%s' at %L may not be a C interoperable kind though common block '%s' is BIND(C)" -msgstr "" - -#: fortran/decl.c:3266 -#, no-c-format -msgid "Type declaration '%s' at %L is not C interoperable but it is BIND(C)" -msgstr "" - -#: fortran/decl.c:3270 -#, no-c-format -msgid "Variable '%s' at %L may not be a C interoperable kind but it is bind(c)" -msgstr "" - -#: fortran/decl.c:3282 -#, no-c-format -msgid "Variable '%s' in common block '%s' at %L cannot be declared with BIND(C) since it is not a global" -msgstr "" - -#: fortran/decl.c:3296 -#, no-c-format -msgid "Variable '%s' at %L cannot have both the POINTER and BIND(C) attributes" -msgstr "" - -#: fortran/decl.c:3304 -#, no-c-format -msgid "Variable '%s' at %L cannot have both the ALLOCATABLE and BIND(C) attributes" -msgstr "" - -#: fortran/decl.c:3314 -#, no-c-format -msgid "Return type of BIND(C) function '%s' at %L cannot be an array" -msgstr "" - -#: fortran/decl.c:3322 -#, no-c-format -msgid "Return type of BIND(C) function '%s' at %L cannot be a character string" -msgstr "" - -#. Use gfc_warning_now because we won't say that the symbol fails -#. just because of this. -#: fortran/decl.c:3334 -#, no-c-format -msgid "Symbol '%s' at %L is marked PRIVATE but has been given the binding label '%s'" -msgstr "" - -#: fortran/decl.c:3409 -#, no-c-format -msgid "Need either entity or common block name for attribute specification statement at %C" -msgstr "" - -#: fortran/decl.c:3456 -#, no-c-format -msgid "Missing entity or common block name for attribute specification statement at %C" -msgstr "" - -#. Now we have an error, which we signal, and then fix up -#. because the knock-on is plain and simple confusing. -#: fortran/decl.c:3563 -#, no-c-format -msgid "Derived type at %C has not been previously defined and so cannot appear in a derived type definition" -msgstr "" - -#: fortran/decl.c:3595 -#, fuzzy, no-c-format -msgid "Syntax error in data declaration at %C" -msgstr "errore sintctic en la llista de parmetre de macro" - -#: fortran/decl.c:3742 -#, no-c-format -msgid "Name '%s' at %C is the name of the procedure" -msgstr "" - -#: fortran/decl.c:3754 -#, no-c-format -msgid "Unexpected junk in formal argument list at %C" -msgstr "" - -#: fortran/decl.c:3771 -#, no-c-format -msgid "Duplicate symbol '%s' in formal argument list at %C" -msgstr "" - -#: fortran/decl.c:3822 -#, no-c-format -msgid "RESULT variable at %C must be different than function name" -msgstr "" - -#: fortran/decl.c:3892 -#, fuzzy, no-c-format -msgid "Unexpected junk after function declaration at %C" -msgstr "causa conflicte amb la declaraci de la funci \"%#D\"" - -#: fortran/decl.c:3951 -#, no-c-format -msgid "Interface '%s' at %C may not be generic" -msgstr "" - -#: fortran/decl.c:3956 -#, fuzzy, no-c-format -msgid "Interface '%s' at %C may not be a statement function" -msgstr "el constructor no pot ser una funci membre de tipus static" - -#: fortran/decl.c:3967 -#, no-c-format -msgid "Intrinsic procedure '%s' not allowed in PROCEDURE statement at %C" -msgstr "" - -#: fortran/decl.c:3975 -#, no-c-format -msgid "Fortran 2003: Support for intrinsic procedure '%s' in PROCEDURE statement at %C not yet implemented in gfortran" -msgstr "" - -#: fortran/decl.c:4014 -#, no-c-format -msgid "BIND(C) attribute at %C requires an interface with BIND(C)" -msgstr "" - -#: fortran/decl.c:4021 -#, no-c-format -msgid "BIND(C) procedure with NAME may not have POINTER attribute at %C" -msgstr "" - -#: fortran/decl.c:4027 -#, no-c-format -msgid "Dummy procedure at %C may not have BIND(C) attribute with NAME" -msgstr "" - -#: fortran/decl.c:4060 fortran/decl.c:4103 -#, fuzzy, no-c-format -msgid "Syntax error in PROCEDURE statement at %C" -msgstr "Nombre espuri en la declaraci FORMAT en %0" - -#: fortran/decl.c:4077 -#, no-c-format -msgid "PROCEDURE at %C must be in a generic interface" -msgstr "" - -#: fortran/decl.c:4128 -#, no-c-format -msgid "Fortran 2003: Procedure components at %C are not yet implemented in gfortran" -msgstr "" - -#: fortran/decl.c:4138 -#, no-c-format -msgid "Fortran 2003: PROCEDURE statement at %C" -msgstr "" - -#: fortran/decl.c:4186 -#, no-c-format -msgid "Expected formal argument list in function definition at %C" -msgstr "" - -#: fortran/decl.c:4210 fortran/decl.c:4214 fortran/decl.c:4536 -#: fortran/decl.c:4540 fortran/symbol.c:1402 -#, no-c-format -msgid "BIND(C) attribute at %L can only be used for variables or common blocks" -msgstr "" - -#: fortran/decl.c:4246 -#, fuzzy, no-c-format -msgid "Function '%s' at %C already has a type of %s" -msgstr "Els inicis de les funcions sn alineats a aquesta potncia de 2" - -#: fortran/decl.c:4322 -#, no-c-format -msgid "ENTRY statement at %C cannot appear within a PROGRAM" -msgstr "" - -#: fortran/decl.c:4325 -#, no-c-format -msgid "ENTRY statement at %C cannot appear within a MODULE" -msgstr "" - -#: fortran/decl.c:4328 -#, no-c-format -msgid "ENTRY statement at %C cannot appear within a BLOCK DATA" -msgstr "" - -#: fortran/decl.c:4332 -#, no-c-format -msgid "ENTRY statement at %C cannot appear within an INTERFACE" -msgstr "" - -#: fortran/decl.c:4336 -#, no-c-format -msgid "ENTRY statement at %C cannot appear within a DERIVED TYPE block" -msgstr "" - -#: fortran/decl.c:4340 -#, no-c-format -msgid "ENTRY statement at %C cannot appear within an IF-THEN block" -msgstr "" - -#: fortran/decl.c:4344 -#, fuzzy, no-c-format -msgid "ENTRY statement at %C cannot appear within a DO block" -msgstr "La declaraci RETURN en %0 no s vlida dintre d'una unitat de programa principal" - -#: fortran/decl.c:4348 -#, no-c-format -msgid "ENTRY statement at %C cannot appear within a SELECT block" -msgstr "" - -#: fortran/decl.c:4352 -#, no-c-format -msgid "ENTRY statement at %C cannot appear within a FORALL block" -msgstr "" - -#: fortran/decl.c:4356 -#, no-c-format -msgid "ENTRY statement at %C cannot appear within a WHERE block" -msgstr "" - -#: fortran/decl.c:4360 -#, fuzzy, no-c-format -msgid "ENTRY statement at %C cannot appear within a contained subprogram" -msgstr "La declaraci RETURN en %0 no s vlida dintre d'una unitat de programa principal" - -#: fortran/decl.c:4378 -#, fuzzy, no-c-format -msgid "ENTRY statement at %C cannot appear in a contained procedure" -msgstr "desbordament en la constant implcita" - -#: fortran/decl.c:4560 -#, no-c-format -msgid "Missing required parentheses before BIND(C) at %C" -msgstr "" - -#: fortran/decl.c:4618 fortran/decl.c:4634 -#, no-c-format -msgid "Syntax error in NAME= specifier for binding label at %C" -msgstr "" - -#: fortran/decl.c:4649 -#, no-c-format -msgid "Missing closing quote '\"' for binding label at %C" -msgstr "" - -#: fortran/decl.c:4658 -#, no-c-format -msgid "Missing closing quote ''' for binding label at %C" -msgstr "" - -#: fortran/decl.c:4668 -#, fuzzy, no-c-format -msgid "Missing closing paren for binding label at %C" -msgstr "Falta el primer operand binari per a l'operador binari en %0" - -#: fortran/decl.c:4703 -#, no-c-format -msgid "NAME not allowed on BIND(C) for ABSTRACT INTERFACE at %C" -msgstr "" - -#: fortran/decl.c:4876 -#, fuzzy, no-c-format -msgid "Unexpected END statement at %C" -msgstr "Falta l'especificador %A en la declaraci en %0" - -#. We would have required END [something]. -#: fortran/decl.c:4885 -#, no-c-format -msgid "%s statement expected at %L" -msgstr "" - -#: fortran/decl.c:4896 -#, fuzzy, no-c-format -msgid "Expecting %s statement at %C" -msgstr "Coma sobrant en la declaraci FORMAT en %0" - -#: fortran/decl.c:4911 -#, no-c-format -msgid "Expected block name of '%s' in %s statement at %C" -msgstr "" - -#: fortran/decl.c:4928 -#, no-c-format -msgid "Expected terminating name at %C" -msgstr "" - -#: fortran/decl.c:4937 -#, fuzzy, no-c-format -msgid "Expected label '%s' for %s statement at %C" -msgstr "No hi ha definici d'etiqueta per a la declaraci FORMAT en %0" - -#: fortran/decl.c:4991 -#, fuzzy, no-c-format -msgid "Missing array specification at %L in DIMENSION statement" -msgstr "Falta l'especificador %A en la declaraci en %0" - -#: fortran/decl.c:5000 -#, no-c-format -msgid "Array specification must be deferred at %L" -msgstr "" - -#: fortran/decl.c:5077 -#, no-c-format -msgid "Unexpected character in variable list at %C" -msgstr "" - -#: fortran/decl.c:5114 -#, no-c-format -msgid "Expected '(' at %C" -msgstr "" - -#: fortran/decl.c:5128 fortran/decl.c:5168 -#, no-c-format -msgid "Expected variable name at %C" -msgstr "" - -#: fortran/decl.c:5144 -#, fuzzy, no-c-format -msgid "Cray pointer at %C must be an integer" -msgstr "el predicat ha de ser un identificador" - -#: fortran/decl.c:5148 -#, no-c-format -msgid "Cray pointer at %C has %d bytes of precision; memory addresses require %d bytes" -msgstr "" - -#: fortran/decl.c:5154 -#, no-c-format -msgid "Expected \",\" at %C" -msgstr "" - -#: fortran/decl.c:5217 -#, no-c-format -msgid "Expected \")\" at %C" -msgstr "" - -#: fortran/decl.c:5229 -#, fuzzy, no-c-format -msgid "Expected \",\" or end of statement at %C" -msgstr "Coma sobrant en la declaraci FORMAT en %0" - -#: fortran/decl.c:5293 -#, no-c-format -msgid "Cray pointer declaration at %C requires -fcray-pointer flag" -msgstr "" - -#: fortran/decl.c:5388 -#, no-c-format -msgid "Access specification of the %s operator at %C has already been specified" -msgstr "" - -#: fortran/decl.c:5405 -#, no-c-format -msgid "Access specification of the .%s. operator at %C has already been specified" -msgstr "" - -#: fortran/decl.c:5443 -#, no-c-format -msgid "Fortran 2003: PROTECTED statement at %C" -msgstr "" - -#: fortran/decl.c:5483 -#, fuzzy, no-c-format -msgid "Syntax error in PROTECTED statement at %C" -msgstr "Nombre espuri en la declaraci FORMAT en %0" - -#: fortran/decl.c:5504 -#, fuzzy, no-c-format -msgid "PRIVATE statement at %C is only allowed in the specification part of a module" -msgstr "L'especificador d'accs o la declaraci PRIVATE en %0 no s vlid per a la definici de tipus derivat dintre d'un altre que la part d'especificaci d'un mdul" - -#: fortran/decl.c:5541 -#, fuzzy, no-c-format -msgid "PUBLIC statement at %C is only allowed in the specification part of a module" -msgstr "L'especificador d'accs o la declaraci PRIVATE en %0 no s vlid per a la definici de tipus derivat dintre d'un altre que la part d'especificaci d'un mdul" - -#: fortran/decl.c:5568 -#, no-c-format -msgid "Expected variable name at %C in PARAMETER statement" -msgstr "" - -#: fortran/decl.c:5575 -#, fuzzy, no-c-format -msgid "Expected = sign in PARAMETER statement at %C" -msgstr "Signe espuri en la declaraci FORMAT en %0" - -#: fortran/decl.c:5581 -#, no-c-format -msgid "Expected expression at %C in PARAMETER statement" -msgstr "" - -#: fortran/decl.c:5639 -#, fuzzy, no-c-format -msgid "Unexpected characters in PARAMETER statement at %C" -msgstr "Coma sobrant en la declaraci FORMAT en %0" - -#: fortran/decl.c:5663 -#, no-c-format -msgid "Blanket SAVE statement at %C follows previous SAVE statement" -msgstr "" - -#: fortran/decl.c:5675 -#, no-c-format -msgid "SAVE statement at %C follows blanket SAVE statement" -msgstr "" - -#: fortran/decl.c:5722 -#, fuzzy, no-c-format -msgid "Syntax error in SAVE statement at %C" -msgstr "Nombre espuri en la declaraci FORMAT en %0" - -#: fortran/decl.c:5733 -#, no-c-format -msgid "Fortran 2003: VALUE statement at %C" -msgstr "" - -#: fortran/decl.c:5773 -#, fuzzy, no-c-format -msgid "Syntax error in VALUE statement at %C" -msgstr "Nombre espuri en la declaraci FORMAT en %0" - -#: fortran/decl.c:5784 -#, fuzzy, no-c-format -msgid "Fortran 2003: VOLATILE statement at %C" -msgstr "Coma sobrant en la declaraci FORMAT en %0" - -#: fortran/decl.c:5826 -#, fuzzy, no-c-format -msgid "Syntax error in VOLATILE statement at %C" -msgstr "Nombre espuri en la declaraci FORMAT en %0" - -#: fortran/decl.c:5848 -#, no-c-format -msgid "MODULE PROCEDURE at %C must be in a generic module interface" -msgstr "" - -#: fortran/decl.c:5910 -#, no-c-format -msgid "Derived type at %C can only be PRIVATE in the specification part of a module" -msgstr "" - -#: fortran/decl.c:5922 -#, no-c-format -msgid "Derived type at %C can only be PUBLIC in the specification part of a module" -msgstr "" - -#: fortran/decl.c:5979 -#, no-c-format -msgid "Expected :: in TYPE definition at %C" -msgstr "" - -#: fortran/decl.c:5990 -#, fuzzy, no-c-format -msgid "Type name '%s' at %C cannot be the same as an intrinsic type" -msgstr "El nom de tipus en %0 no s el mateix que el nom en %1" - -#: fortran/decl.c:6000 -#, no-c-format -msgid "Derived type name '%s' at %C already has a basic type of %s" -msgstr "" - -#: fortran/decl.c:6016 -#, no-c-format -msgid "Derived type definition of '%s' at %C has already been defined" -msgstr "" - -#: fortran/decl.c:6054 -#, no-c-format -msgid "Cray Pointee at %C cannot be assumed shape array" -msgstr "" - -#: fortran/decl.c:6074 -#, no-c-format -msgid "Fortran 2003: ENUM and ENUMERATOR at %C" -msgstr "" - -#: fortran/decl.c:6146 -#, no-c-format -msgid "ENUMERATOR %L not initialized with integer expression" -msgstr "" - -#: fortran/decl.c:6195 -#, fuzzy, no-c-format -msgid "ENUM definition statement expected before %C" -msgstr "s'esperava nom de tipus abans de \"*\"" - -#: fortran/decl.c:6228 -#, no-c-format -msgid "Syntax error in ENUMERATOR definition at %C" -msgstr "" - -#: fortran/dump-parse-tree.c:48 -#, c-format -msgid "%-5d " -msgstr "" - -#: fortran/dump-parse-tree.c:50 -#, fuzzy, c-format -msgid " " -msgstr " \"%D\"" - -#: fortran/dump-parse-tree.c:73 fortran/dump-parse-tree.c:626 -#, fuzzy, c-format -msgid "(%s " -msgstr "%s " - -#: fortran/dump-parse-tree.c:86 fortran/dump-parse-tree.c:1069 -#: fortran/dump-parse-tree.c:1113 fortran/dump-parse-tree.c:1123 -#, c-format -msgid "%d" -msgstr "" - -#: fortran/dump-parse-tree.c:90 fortran/dump-parse-tree.c:116 -#: fortran/dump-parse-tree.c:159 fortran/dump-parse-tree.c:395 -#: fortran/dump-parse-tree.c:518 fortran/dump-parse-tree.c:613 -#: fortran/dump-parse-tree.c:636 -#, c-format -msgid ")" -msgstr "" - -#: fortran/dump-parse-tree.c:99 fortran/dump-parse-tree.c:435 -#, c-format -msgid "(" -msgstr "" - -#: fortran/dump-parse-tree.c:105 -#, fuzzy, c-format -msgid "%s = " -msgstr "%s " - -#: fortran/dump-parse-tree.c:109 -#, c-format -msgid "(arg not-present)" -msgstr "" - -#: fortran/dump-parse-tree.c:113 fortran/dump-parse-tree.c:389 -#: fortran/dump-parse-tree.c:514 -#, c-format -msgid " " -msgstr "" - -#: fortran/dump-parse-tree.c:130 fortran/dump-parse-tree.c:325 -#, c-format -msgid "()" -msgstr "" - -#: fortran/dump-parse-tree.c:134 -#, c-format -msgid "(%d" -msgstr "" - -#: fortran/dump-parse-tree.c:148 -#, fuzzy, c-format -msgid " %s " -msgstr "%s " - -#: fortran/dump-parse-tree.c:175 -#, c-format -msgid "FULL" -msgstr "" - -#: fortran/dump-parse-tree.c:206 fortran/dump-parse-tree.c:215 -#: fortran/dump-parse-tree.c:288 -#, c-format -msgid " , " -msgstr "" - -#: fortran/dump-parse-tree.c:220 -#, c-format -msgid "UNKNOWN" -msgstr "" - -#: fortran/dump-parse-tree.c:244 -#, fuzzy, c-format -msgid " %% %s" -msgstr "%s: %s" - -#: fortran/dump-parse-tree.c:302 -#, c-format -msgid "''" -msgstr "" - -#: fortran/dump-parse-tree.c:307 -#, c-format -msgid "' // ACHAR(" -msgstr "" - -#: fortran/dump-parse-tree.c:309 -#, c-format -msgid ") // '" -msgstr "" - -#: fortran/dump-parse-tree.c:337 -#, fuzzy, c-format -msgid "%s(" -msgstr "%s" - -#: fortran/dump-parse-tree.c:343 -#, c-format -msgid "(/ " -msgstr "" - -#: fortran/dump-parse-tree.c:345 -#, c-format -msgid " /)" -msgstr "" - -#: fortran/dump-parse-tree.c:351 -#, c-format -msgid "NULL()" -msgstr "" - -#: fortran/dump-parse-tree.c:361 fortran/dump-parse-tree.c:374 -#: fortran/dump-parse-tree.c:387 fortran/dump-parse-tree.c:393 -#, c-format -msgid "_%d" -msgstr "" - -#: fortran/dump-parse-tree.c:366 -#, c-format -msgid ".true." -msgstr "" - -#: fortran/dump-parse-tree.c:368 -#, fuzzy, c-format -msgid ".false." -msgstr "fclose" - -#: fortran/dump-parse-tree.c:383 -#, c-format -msgid "(complex " -msgstr "" - -#: fortran/dump-parse-tree.c:399 -#, c-format -msgid "%dH" -msgstr "" - -#: fortran/dump-parse-tree.c:408 -#, c-format -msgid "???" -msgstr "" - -#: fortran/dump-parse-tree.c:414 -#, c-format -msgid " {" -msgstr "" - -#: fortran/dump-parse-tree.c:418 -#, c-format -msgid "%.2x" -msgstr "" - -#: fortran/dump-parse-tree.c:429 fortran/dump-parse-tree.c:732 -#, fuzzy, c-format -msgid "%s:" -msgstr "%s" - -#: fortran/dump-parse-tree.c:439 -#, c-format -msgid "U+ " -msgstr "" - -#: fortran/dump-parse-tree.c:442 -#, c-format -msgid "U- " -msgstr "" - -#: fortran/dump-parse-tree.c:445 -#, c-format -msgid "+ " -msgstr "" - -#: fortran/dump-parse-tree.c:448 -#, c-format -msgid "- " -msgstr "" - -#: fortran/dump-parse-tree.c:451 -#, c-format -msgid "* " -msgstr "" - -#: fortran/dump-parse-tree.c:454 -#, c-format -msgid "/ " -msgstr "" - -#: fortran/dump-parse-tree.c:457 -#, c-format -msgid "** " -msgstr "" - -#: fortran/dump-parse-tree.c:460 -#, c-format -msgid "// " -msgstr "" - -#: fortran/dump-parse-tree.c:463 -#, c-format -msgid "AND " -msgstr "" - -#: fortran/dump-parse-tree.c:466 -#, c-format -msgid "OR " -msgstr "" - -#: fortran/dump-parse-tree.c:469 -#, c-format -msgid "EQV " -msgstr "" - -#: fortran/dump-parse-tree.c:472 -#, c-format -msgid "NEQV " -msgstr "" - -#: fortran/dump-parse-tree.c:476 -#, c-format -msgid "= " -msgstr "" - -#: fortran/dump-parse-tree.c:480 -#, c-format -msgid "/= " -msgstr "" - -#: fortran/dump-parse-tree.c:484 -#, c-format -msgid "> " -msgstr "" - -#: fortran/dump-parse-tree.c:488 -#, c-format -msgid ">= " -msgstr "" - -#: fortran/dump-parse-tree.c:492 -#, c-format -msgid "< " -msgstr "" - -#: fortran/dump-parse-tree.c:496 -#, c-format -msgid "<= " -msgstr "" - -#: fortran/dump-parse-tree.c:499 -#, c-format -msgid "NOT " -msgstr "" - -#: fortran/dump-parse-tree.c:502 -#, fuzzy, c-format -msgid "parens" -msgstr "obrir %s" - -#: fortran/dump-parse-tree.c:524 -#, fuzzy, c-format -msgid "%s[" -msgstr "%s" - -#: fortran/dump-parse-tree.c:530 -#, fuzzy, c-format -msgid "%s[[" -msgstr "%s" - -#: fortran/dump-parse-tree.c:551 -#, fuzzy, c-format -msgid "(%s %s %s %s %s" -msgstr "%s: %s: " - -#: fortran/dump-parse-tree.c:558 -#, c-format -msgid " ALLOCATABLE" -msgstr "" - -#: fortran/dump-parse-tree.c:560 fortran/dump-parse-tree.c:631 -#, c-format -msgid " DIMENSION" -msgstr "" - -#: fortran/dump-parse-tree.c:562 -#, c-format -msgid " EXTERNAL" -msgstr "" - -#: fortran/dump-parse-tree.c:564 -#, c-format -msgid " INTRINSIC" -msgstr "" - -#: fortran/dump-parse-tree.c:566 -#, c-format -msgid " OPTIONAL" -msgstr "" - -#: fortran/dump-parse-tree.c:568 fortran/dump-parse-tree.c:629 -#, c-format -msgid " POINTER" -msgstr "" - -#: fortran/dump-parse-tree.c:570 -#, c-format -msgid " PROTECTED" -msgstr "" - -#: fortran/dump-parse-tree.c:572 -#, c-format -msgid " VALUE" -msgstr "" - -#: fortran/dump-parse-tree.c:574 -#, c-format -msgid " VOLATILE" -msgstr "" - -#: fortran/dump-parse-tree.c:576 -#, c-format -msgid " THREADPRIVATE" -msgstr "" - -#: fortran/dump-parse-tree.c:578 -#, c-format -msgid " TARGET" -msgstr "" - -#: fortran/dump-parse-tree.c:580 -#, c-format -msgid " DUMMY" -msgstr "" - -#: fortran/dump-parse-tree.c:582 -#, c-format -msgid " RESULT" -msgstr "" - -#: fortran/dump-parse-tree.c:584 -#, c-format -msgid " ENTRY" -msgstr "" - -#: fortran/dump-parse-tree.c:587 -#, c-format -msgid " DATA" -msgstr "" - -#: fortran/dump-parse-tree.c:589 -#, c-format -msgid " USE-ASSOC" -msgstr "" - -#: fortran/dump-parse-tree.c:591 -#, c-format -msgid " IN-NAMELIST" -msgstr "" - -#: fortran/dump-parse-tree.c:593 -#, c-format -msgid " IN-COMMON" -msgstr "" - -#: fortran/dump-parse-tree.c:596 -#, c-format -msgid " ABSTRACT INTERFACE" -msgstr "" - -#: fortran/dump-parse-tree.c:598 -#, c-format -msgid " FUNCTION" -msgstr "" - -#: fortran/dump-parse-tree.c:600 -#, c-format -msgid " SUBROUTINE" -msgstr "" - -#: fortran/dump-parse-tree.c:602 -#, c-format -msgid " IMPLICIT-TYPE" -msgstr "" - -#: fortran/dump-parse-tree.c:605 -#, c-format -msgid " SEQUENCE" -msgstr "" - -#: fortran/dump-parse-tree.c:607 -#, c-format -msgid " ELEMENTAL" -msgstr "" - -#: fortran/dump-parse-tree.c:609 -#, c-format -msgid " PURE" -msgstr "" - -#: fortran/dump-parse-tree.c:611 -#, c-format -msgid " RECURSIVE" -msgstr "" - -#: fortran/dump-parse-tree.c:635 fortran/dump-parse-tree.c:682 -#: fortran/dump-parse-tree.c:706 fortran/dump-parse-tree.c:735 -#: fortran/dump-parse-tree.c:1276 fortran/dump-parse-tree.c:1282 -#: fortran/dump-parse-tree.c:1784 -#, c-format -msgid " %s" -msgstr " %s" - -#: fortran/dump-parse-tree.c:659 -#, c-format -msgid "symbol %s " -msgstr "" - -#: fortran/dump-parse-tree.c:666 -#, c-format -msgid "value: " -msgstr "" - -#: fortran/dump-parse-tree.c:673 -#, c-format -msgid "Array spec:" -msgstr "" - -#: fortran/dump-parse-tree.c:680 -#, fuzzy, c-format -msgid "Generic interfaces:" -msgstr "Usar la interfcie Cygwin" - -#: fortran/dump-parse-tree.c:688 -#, fuzzy, c-format -msgid "result: %s" -msgstr "%s: %s" - -#: fortran/dump-parse-tree.c:694 -#, c-format -msgid "components: " -msgstr "" - -#: fortran/dump-parse-tree.c:701 -#, c-format -msgid "Formal arglist:" -msgstr "" - -#: fortran/dump-parse-tree.c:708 -#, c-format -msgid " [Alt Return]" -msgstr "" - -#: fortran/dump-parse-tree.c:715 -#, fuzzy, c-format -msgid "Formal namespace" -msgstr "\"%D\" s un nom d'espai" - -#: fortran/dump-parse-tree.c:771 -#, c-format -msgid "common: /%s/ " -msgstr "" - -#: fortran/dump-parse-tree.c:779 fortran/dump-parse-tree.c:1720 -#, c-format -msgid ", " -msgstr "" - -#: fortran/dump-parse-tree.c:791 -#, c-format -msgid "symtree: %s Ambig %d" -msgstr "" - -#: fortran/dump-parse-tree.c:794 -#, fuzzy, c-format -msgid " from namespace %s" -msgstr "espai de noms \"%D\" desconegut" - -#: fortran/dump-parse-tree.c:820 -#, fuzzy, c-format -msgid "%s," -msgstr "%s" - -#: fortran/dump-parse-tree.c:852 -#, c-format -msgid "!$OMP %s" -msgstr "" - -#: fortran/dump-parse-tree.c:867 fortran/dump-parse-tree.c:1010 -#, fuzzy, c-format -msgid " (%s)" -msgstr " %s" - -#: fortran/dump-parse-tree.c:872 -#, c-format -msgid " (" -msgstr "" - -#: fortran/dump-parse-tree.c:888 -#, c-format -msgid " IF(" -msgstr "" - -#: fortran/dump-parse-tree.c:894 -#, c-format -msgid " NUM_THREADS(" -msgstr "" - -#: fortran/dump-parse-tree.c:910 -#, c-format -msgid " SCHEDULE (%s" -msgstr "" - -#: fortran/dump-parse-tree.c:930 -#, c-format -msgid " DEFAULT(%s)" -msgstr "" - -#: fortran/dump-parse-tree.c:933 -#, c-format -msgid " ORDERED" -msgstr "" - -#: fortran/dump-parse-tree.c:958 -#, c-format -msgid " REDUCTION(%s:" -msgstr "" - -#: fortran/dump-parse-tree.c:972 -#, fuzzy, c-format -msgid " %s(" -msgstr " %s" - -#: fortran/dump-parse-tree.c:988 -#, c-format -msgid "!$OMP SECTION\n" -msgstr "" - -#: fortran/dump-parse-tree.c:997 -#, c-format -msgid "!$OMP END %s" -msgstr "" - -#: fortran/dump-parse-tree.c:1002 -#, c-format -msgid " COPYPRIVATE(" -msgstr "" - -#: fortran/dump-parse-tree.c:1007 -#, c-format -msgid " NOWAIT" -msgstr "" - -#: fortran/dump-parse-tree.c:1034 -#, c-format -msgid "NOP" -msgstr "" - -#: fortran/dump-parse-tree.c:1038 -#, c-format -msgid "CONTINUE" -msgstr "" - -#: fortran/dump-parse-tree.c:1042 -#, c-format -msgid "ENTRY %s" -msgstr "" - -#: fortran/dump-parse-tree.c:1047 -#, c-format -msgid "ASSIGN " -msgstr "" - -#: fortran/dump-parse-tree.c:1054 -#, c-format -msgid "LABEL ASSIGN " -msgstr "" - -#: fortran/dump-parse-tree.c:1056 -#, fuzzy, c-format -msgid " %d" -msgstr " %s" - -#: fortran/dump-parse-tree.c:1060 -#, c-format -msgid "POINTER ASSIGN " -msgstr "" - -#: fortran/dump-parse-tree.c:1067 -#, c-format -msgid "GOTO " -msgstr "" - -#: fortran/dump-parse-tree.c:1076 -#, c-format -msgid ", (" -msgstr "" - -#: fortran/dump-parse-tree.c:1092 fortran/dump-parse-tree.c:1094 -#, c-format -msgid "CALL %s " -msgstr "" - -#: fortran/dump-parse-tree.c:1096 -#, c-format -msgid "CALL ?? " -msgstr "" - -#: fortran/dump-parse-tree.c:1102 -#, c-format -msgid "RETURN " -msgstr "" - -#: fortran/dump-parse-tree.c:1108 -#, c-format -msgid "PAUSE " -msgstr "" - -#: fortran/dump-parse-tree.c:1118 -#, c-format -msgid "STOP " -msgstr "" - -#: fortran/dump-parse-tree.c:1128 fortran/dump-parse-tree.c:1136 -#, c-format -msgid "IF " -msgstr "" - -#: fortran/dump-parse-tree.c:1130 -#, fuzzy, c-format -msgid " %d, %d, %d" -msgstr "%s: %s: " - -#: fortran/dump-parse-tree.c:1147 -#, c-format -msgid "ELSE\n" -msgstr "" - -#: fortran/dump-parse-tree.c:1150 -#, c-format -msgid "ELSE IF " -msgstr "" - -#: fortran/dump-parse-tree.c:1160 -#, c-format -msgid "ENDIF" -msgstr "" - -#: fortran/dump-parse-tree.c:1165 -#, c-format -msgid "SELECT CASE " -msgstr "" - -#: fortran/dump-parse-tree.c:1173 -#, c-format -msgid "CASE " -msgstr "" - -#: fortran/dump-parse-tree.c:1189 -#, c-format -msgid "END SELECT" -msgstr "" - -#: fortran/dump-parse-tree.c:1193 -#, c-format -msgid "WHERE " -msgstr "" - -#: fortran/dump-parse-tree.c:1204 -#, c-format -msgid "ELSE WHERE " -msgstr "" - -#: fortran/dump-parse-tree.c:1211 -#, c-format -msgid "END WHERE" -msgstr "" - -#: fortran/dump-parse-tree.c:1216 -#, c-format -msgid "FORALL " -msgstr "" - -#: fortran/dump-parse-tree.c:1241 -#, c-format -msgid "END FORALL" -msgstr "" - -#: fortran/dump-parse-tree.c:1245 -#, c-format -msgid "DO " -msgstr "" - -#: fortran/dump-parse-tree.c:1259 fortran/dump-parse-tree.c:1270 -#, c-format -msgid "END DO" -msgstr "" - -#: fortran/dump-parse-tree.c:1263 -#, c-format -msgid "DO WHILE " -msgstr "" - -#: fortran/dump-parse-tree.c:1274 -#, c-format -msgid "CYCLE" -msgstr "" - -#: fortran/dump-parse-tree.c:1280 -#, c-format -msgid "EXIT" -msgstr "" - -#: fortran/dump-parse-tree.c:1286 -#, c-format -msgid "ALLOCATE " -msgstr "" - -#: fortran/dump-parse-tree.c:1289 fortran/dump-parse-tree.c:1305 -#, c-format -msgid " STAT=" -msgstr "" - -#: fortran/dump-parse-tree.c:1302 -#, c-format -msgid "DEALLOCATE " -msgstr "" - -#: fortran/dump-parse-tree.c:1318 -#, c-format -msgid "OPEN" -msgstr "" - -#: fortran/dump-parse-tree.c:1323 fortran/dump-parse-tree.c:1402 -#: fortran/dump-parse-tree.c:1444 fortran/dump-parse-tree.c:1467 -#: fortran/dump-parse-tree.c:1619 -#, c-format -msgid " UNIT=" -msgstr "" - -#: fortran/dump-parse-tree.c:1328 fortran/dump-parse-tree.c:1407 -#: fortran/dump-parse-tree.c:1449 fortran/dump-parse-tree.c:1478 -#: fortran/dump-parse-tree.c:1636 -#, c-format -msgid " IOMSG=" -msgstr "" - -#: fortran/dump-parse-tree.c:1333 fortran/dump-parse-tree.c:1412 -#: fortran/dump-parse-tree.c:1454 fortran/dump-parse-tree.c:1483 -#: fortran/dump-parse-tree.c:1641 -#, c-format -msgid " IOSTAT=" -msgstr "" - -#: fortran/dump-parse-tree.c:1338 fortran/dump-parse-tree.c:1472 -#, c-format -msgid " FILE=" -msgstr "" - -#: fortran/dump-parse-tree.c:1343 fortran/dump-parse-tree.c:1417 -#, c-format -msgid " STATUS=" -msgstr "" - -#: fortran/dump-parse-tree.c:1348 fortran/dump-parse-tree.c:1513 -#, c-format -msgid " ACCESS=" -msgstr "" - -#: fortran/dump-parse-tree.c:1353 fortran/dump-parse-tree.c:1529 -#, c-format -msgid " FORM=" -msgstr "" - -#: fortran/dump-parse-tree.c:1358 fortran/dump-parse-tree.c:1544 -#, c-format -msgid " RECL=" -msgstr "" - -#: fortran/dump-parse-tree.c:1363 fortran/dump-parse-tree.c:1554 -#, c-format -msgid " BLANK=" -msgstr "" - -#: fortran/dump-parse-tree.c:1368 fortran/dump-parse-tree.c:1559 -#, c-format -msgid " POSITION=" -msgstr "" - -#: fortran/dump-parse-tree.c:1373 fortran/dump-parse-tree.c:1564 -#, c-format -msgid " ACTION=" -msgstr "" - -#: fortran/dump-parse-tree.c:1378 fortran/dump-parse-tree.c:1584 -#, c-format -msgid " DELIM=" -msgstr "" - -#: fortran/dump-parse-tree.c:1383 fortran/dump-parse-tree.c:1589 -#, c-format -msgid " PAD=" -msgstr "" - -#: fortran/dump-parse-tree.c:1388 fortran/dump-parse-tree.c:1594 -#, c-format -msgid " CONVERT=" -msgstr "" - -#: fortran/dump-parse-tree.c:1392 fortran/dump-parse-tree.c:1421 -#: fortran/dump-parse-tree.c:1458 fortran/dump-parse-tree.c:1599 -#: fortran/dump-parse-tree.c:1676 -#, c-format -msgid " ERR=%d" -msgstr "" - -#: fortran/dump-parse-tree.c:1397 -#, c-format -msgid "CLOSE" -msgstr "" - -#: fortran/dump-parse-tree.c:1425 -#, c-format -msgid "BACKSPACE" -msgstr "" - -#: fortran/dump-parse-tree.c:1429 -#, c-format -msgid "ENDFILE" -msgstr "" - -#: fortran/dump-parse-tree.c:1433 -#, c-format -msgid "REWIND" -msgstr "" - -#: fortran/dump-parse-tree.c:1437 -#, c-format -msgid "FLUSH" -msgstr "" - -#: fortran/dump-parse-tree.c:1462 -#, c-format -msgid "INQUIRE" -msgstr "" - -#: fortran/dump-parse-tree.c:1488 -#, c-format -msgid " EXIST=" -msgstr "" - -#: fortran/dump-parse-tree.c:1493 -#, c-format -msgid " OPENED=" -msgstr "" - -#: fortran/dump-parse-tree.c:1498 -#, c-format -msgid " NUMBER=" -msgstr "" - -#: fortran/dump-parse-tree.c:1503 -#, c-format -msgid " NAMED=" -msgstr "" - -#: fortran/dump-parse-tree.c:1508 -#, c-format -msgid " NAME=" -msgstr "" - -#: fortran/dump-parse-tree.c:1518 -#, c-format -msgid " SEQUENTIAL=" -msgstr "" - -#: fortran/dump-parse-tree.c:1524 -#, c-format -msgid " DIRECT=" -msgstr "" - -#: fortran/dump-parse-tree.c:1534 -#, c-format -msgid " FORMATTED" -msgstr "" - -#: fortran/dump-parse-tree.c:1539 -#, c-format -msgid " UNFORMATTED=" -msgstr "" - -#: fortran/dump-parse-tree.c:1549 -#, c-format -msgid " NEXTREC=" -msgstr "" - -#: fortran/dump-parse-tree.c:1569 -#, c-format -msgid " READ=" -msgstr "" - -#: fortran/dump-parse-tree.c:1574 -#, c-format -msgid " WRITE=" -msgstr "" - -#: fortran/dump-parse-tree.c:1579 -#, c-format -msgid " READWRITE=" -msgstr "" - -#: fortran/dump-parse-tree.c:1603 -#, c-format -msgid "IOLENGTH " -msgstr "" - -#: fortran/dump-parse-tree.c:1609 -#, c-format -msgid "READ" -msgstr "" - -#: fortran/dump-parse-tree.c:1613 -#, c-format -msgid "WRITE" -msgstr "" - -#: fortran/dump-parse-tree.c:1625 -#, c-format -msgid " FMT=" -msgstr "" - -#: fortran/dump-parse-tree.c:1630 -#, c-format -msgid " FMT=%d" -msgstr "" - -#: fortran/dump-parse-tree.c:1632 -#, fuzzy, c-format -msgid " NML=%s" -msgstr " %s" - -#: fortran/dump-parse-tree.c:1646 -#, c-format -msgid " SIZE=" -msgstr "" - -#: fortran/dump-parse-tree.c:1651 -#, c-format -msgid " REC=" -msgstr "" - -#: fortran/dump-parse-tree.c:1656 -#, c-format -msgid " ADVANCE=" -msgstr "" - -#: fortran/dump-parse-tree.c:1667 -#, c-format -msgid "TRANSFER " -msgstr "" - -#: fortran/dump-parse-tree.c:1672 -#, c-format -msgid "DT_END" -msgstr "" - -#: fortran/dump-parse-tree.c:1678 -#, c-format -msgid " END=%d" -msgstr "" - -#: fortran/dump-parse-tree.c:1680 -#, c-format -msgid " EOR=%d" -msgstr "" - -#: fortran/dump-parse-tree.c:1714 -#, c-format -msgid "Equivalence: " -msgstr "" - -#: fortran/dump-parse-tree.c:1740 -#, c-format -msgid "Namespace:" -msgstr "" - -#: fortran/dump-parse-tree.c:1754 -#, c-format -msgid " %c-%c: " -msgstr "" - -#: fortran/dump-parse-tree.c:1756 -#, c-format -msgid " %c: " -msgstr "" - -#: fortran/dump-parse-tree.c:1765 -#, c-format -msgid "procedure name = %s" -msgstr "" - -#: fortran/dump-parse-tree.c:1781 -#, fuzzy, c-format -msgid "Operator interfaces for %s:" -msgstr "" -"\n" -" Opcions per a %s:\n" - -#: fortran/dump-parse-tree.c:1790 -#, c-format -msgid "User operators:\n" -msgstr "" - -#: fortran/dump-parse-tree.c:1806 -#, c-format -msgid "CONTAINS\n" -msgstr "" - -#: fortran/error.c:213 -#, fuzzy, no-c-format -msgid " Included at %s:%d:" -msgstr "En el fitxer incls de %s:%d" - -#: fortran/error.c:318 -#, fuzzy, no-c-format -msgid "\n" -msgstr "assignaci de valors inicials" - -#: fortran/error.c:651 -#, no-c-format -msgid "Error count reached limit of %d." -msgstr "" - -#: fortran/error.c:670 fortran/error.c:725 fortran/error.c:762 -#, fuzzy -msgid "Warning:" -msgstr "avs:" - -#: fortran/error.c:727 fortran/error.c:810 fortran/error.c:836 -#, fuzzy -msgid "Error:" -msgstr "error intern: " - -#: fortran/error.c:860 -#, fuzzy -msgid "Fatal Error:" -msgstr "error intern: " - -#: fortran/error.c:879 -#, fuzzy, no-c-format -msgid "Internal Error at (1):" -msgstr "error intern: " - -#: fortran/expr.c:252 -#, c-format -msgid "Constant expression required at %C" -msgstr "" - -#: fortran/expr.c:255 -#, c-format -msgid "Integer expression required at %C" -msgstr "" - -#: fortran/expr.c:260 -#, fuzzy, c-format -msgid "Integer value too large in expression at %C" -msgstr "desbordament enter en l'expressi" - -#: fortran/expr.c:1018 fortran/expr.c:1189 fortran/expr.c:1240 -#, no-c-format -msgid "index in dimension %d is out of bounds at %L" -msgstr "" - -#: fortran/expr.c:1789 -#, no-c-format -msgid "elemental function arguments at %C are not compliant" -msgstr "" - -#: fortran/expr.c:1833 -#, no-c-format -msgid "Numeric or CHARACTER operands are required in expression at %L" -msgstr "" - -#: fortran/expr.c:1853 -#, no-c-format -msgid "Fortran 2003: Noninteger exponent in an initialization expression at %L" -msgstr "" - -#: fortran/expr.c:1868 -#, no-c-format -msgid "Concatenation operator in expression at %L must have two CHARACTER operands" -msgstr "" - -#: fortran/expr.c:1875 -#, no-c-format -msgid "Concat operator at %L must concatenate strings of the same kind" -msgstr "" - -#: fortran/expr.c:1885 -#, no-c-format -msgid ".NOT. operator in expression at %L must have a LOGICAL operand" -msgstr "" - -#: fortran/expr.c:1901 -#, no-c-format -msgid "LOGICAL operands are required in expression at %L" -msgstr "" - -#: fortran/expr.c:1912 -#, fuzzy, no-c-format -msgid "Only intrinsic operators can be used in expression at %L" -msgstr "Falta un operand per a l'operador en %1 al final de l'expressi en %0" - -#: fortran/expr.c:1920 -#, fuzzy, no-c-format -msgid "Numeric operands are required in expression at %L" -msgstr "Falta un operand per a l'operador en %1 al final de l'expressi en %0" - -#: fortran/expr.c:1985 -#, no-c-format -msgid "Inquiry function '%s' at %L is not permitted in an initialization expression" -msgstr "" - -#: fortran/expr.c:2015 -#, no-c-format -msgid "Assumed character length variable '%s' in constant expression at %L" -msgstr "" - -#: fortran/expr.c:2061 fortran/expr.c:2067 -#, no-c-format -msgid "transformational intrinsic '%s' at %L is not permitted in an initialization expression" -msgstr "" - -#: fortran/expr.c:2098 -#, no-c-format -msgid "Extension: Evaluation of nonstandard initialization expression at %L" -msgstr "" - -#: fortran/expr.c:2151 -#, no-c-format -msgid "Function '%s' in initialization expression at %L must be an intrinsic or a specification function" -msgstr "" - -#: fortran/expr.c:2163 -#, no-c-format -msgid "Intrinsic function '%s' at %L is not permitted in an initialization expression" -msgstr "" - -#: fortran/expr.c:2207 -#, fuzzy, no-c-format -msgid "Assumed size array '%s' at %L is not permitted in an initialization expression" -msgstr "la grandria de la matriu \"%D\" no s una expressi constant integral" - -#: fortran/expr.c:2213 -#, no-c-format -msgid "Assumed shape array '%s' at %L is not permitted in an initialization expression" -msgstr "" - -#: fortran/expr.c:2219 -#, no-c-format -msgid "Deferred array '%s' at %L is not permitted in an initialization expression" -msgstr "" - -#: fortran/expr.c:2229 -#, no-c-format -msgid "Parameter '%s' at %L has not been declared or is a variable, which does not reduce to a constant expression" -msgstr "" - -#: fortran/expr.c:2317 -#, fuzzy, no-c-format -msgid "Initialization expression didn't reduce %C" -msgstr "inicialitzaci de l'expressi new amb \"=\"" - -#: fortran/expr.c:2360 -#, fuzzy, no-c-format -msgid "Specification function '%s' at %L cannot be a statement function" -msgstr "el constructor no pot ser una funci membre de tipus static" - -#: fortran/expr.c:2367 -#, fuzzy, no-c-format -msgid "Specification function '%s' at %L cannot be an internal function" -msgstr "%Jla funci interna \"%D\" no s declarada com funci" - -#: fortran/expr.c:2374 -#, no-c-format -msgid "Specification function '%s' at %L must be PURE" -msgstr "" - -#: fortran/expr.c:2381 -#, no-c-format -msgid "Specification function '%s' at %L cannot be RECURSIVE" -msgstr "" - -#: fortran/expr.c:2443 -#, no-c-format -msgid "Dummy argument '%s' not allowed in expression at %L" -msgstr "" - -#: fortran/expr.c:2450 -#, no-c-format -msgid "Dummy argument '%s' at %L cannot be OPTIONAL" -msgstr "" - -#: fortran/expr.c:2457 -#, no-c-format -msgid "Dummy argument '%s' at %L cannot be INTENT(OUT)" -msgstr "" - -#: fortran/expr.c:2479 -#, fuzzy, no-c-format -msgid "Variable '%s' cannot appear in the expression at %L" -msgstr "desbordament en la constant implcita" - -#: fortran/expr.c:2528 -#, no-c-format -msgid "Expression at %L must be of INTEGER type" -msgstr "" - -#: fortran/expr.c:2537 -#, no-c-format -msgid "Function '%s' at %L must be PURE" -msgstr "" - -#: fortran/expr.c:2546 -#, no-c-format -msgid "Expression at %L must be scalar" -msgstr "" - -#: fortran/expr.c:2573 -#, no-c-format -msgid "Incompatible ranks in %s (%d and %d) at %L" -msgstr "" - -#: fortran/expr.c:2587 -#, no-c-format -msgid "Different shape for %s at %L on dimension %d (%d and %d)" -msgstr "" - -#: fortran/expr.c:2633 fortran/expr.c:2800 -#, no-c-format -msgid "Cannot assign to INTENT(IN) variable '%s' at %L" -msgstr "" - -#: fortran/expr.c:2676 -#, no-c-format -msgid "'%s' at %L is not a VALUE" -msgstr "" - -#: fortran/expr.c:2683 -#, fuzzy, no-c-format -msgid "Incompatible ranks %d and %d in assignment at %L" -msgstr "tipus incompatible en l'assignaci de \"%T\" a \"%T\"" - -#: fortran/expr.c:2690 -#, fuzzy, no-c-format -msgid "Variable type is UNKNOWN in assignment at %L" -msgstr "tipus incompatible en l'assignaci de \"%T\" a \"%T\"" - -#: fortran/expr.c:2702 -#, no-c-format -msgid "NULL appears on right-hand side in assignment at %L" -msgstr "" - -#: fortran/expr.c:2713 -#, no-c-format -msgid "Vector assignment to assumed-size Cray Pointee at %L is illegal" -msgstr "" - -#: fortran/expr.c:2722 -#, no-c-format -msgid "POINTER valued function appears on right-hand side of assignment at %L" -msgstr "" - -#: fortran/expr.c:2727 -#, fuzzy -msgid "array assignment" -msgstr "assignaci" - -#: fortran/expr.c:2744 -#, fuzzy, no-c-format -msgid "Incompatible types in assignment at %L, %s to %s" -msgstr "tipus incompatible en l'assignaci de \"%T\" a \"%T\"" - -#: fortran/expr.c:2769 -#, no-c-format -msgid "Pointer assignment target is not a POINTER at %L" -msgstr "" - -#: fortran/expr.c:2777 -#, no-c-format -msgid "'%s' in the pointer assignment at %L cannot be an l-value since it is a procedure" -msgstr "" - -#: fortran/expr.c:2807 -#, no-c-format -msgid "Pointer assignment to non-POINTER at %L" -msgstr "" - -#: fortran/expr.c:2816 -#, no-c-format -msgid "Bad pointer object in PURE procedure at %L" -msgstr "" - -#: fortran/expr.c:2828 -#, no-c-format -msgid "Different types in pointer assignment at %L" -msgstr "" - -#: fortran/expr.c:2835 -#, no-c-format -msgid "Different kind type parameters in pointer assignment at %L" -msgstr "" - -#: fortran/expr.c:2842 -#, no-c-format -msgid "Different ranks in pointer assignment at %L" -msgstr "" - -#: fortran/expr.c:2857 -#, no-c-format -msgid "Different character lengths in pointer assignment at %L" -msgstr "" - -#: fortran/expr.c:2868 -#, no-c-format -msgid "Pointer assignment target is neither TARGET nor POINTER at %L" -msgstr "" - -#: fortran/expr.c:2875 -#, no-c-format -msgid "Bad target in pointer assignment in PURE procedure at %L" -msgstr "" - -#: fortran/expr.c:2881 -#, no-c-format -msgid "Pointer assignment with vector subscript on rhs at %L" -msgstr "" - -#: fortran/expr.c:2888 -#, no-c-format -msgid "Pointer assigment target has PROTECTED attribute at %L" -msgstr "" - -#: fortran/gfortranspec.c:248 -#, fuzzy, c-format -msgid "overflowed output arg list for '%s'" -msgstr "llista d'arguments de sortida desbordada per a \"%s\"" - -#: fortran/gfortranspec.c:381 -#, c-format -msgid "" -"GNU Fortran comes with NO WARRANTY, to the extent permitted by law.\n" -"You may redistribute copies of GNU Fortran\n" -"under the terms of the GNU General Public License.\n" -"For more information about these matters, see the file named COPYING\n" -"\n" -msgstr "" - -#: fortran/gfortranspec.c:403 -#, fuzzy, c-format -msgid "argument to '%s' missing" -msgstr "falta l'argument per a \"%s\"" - -#: fortran/gfortranspec.c:407 -#, c-format -msgid "no input files; unwilling to write output files" -msgstr "no hi ha fitxers d'entrada; incapa d'escriure fitxers de sortida" - -#: fortran/gfortranspec.c:566 -#, fuzzy, c-format -msgid "Driving:" -msgstr "avs:" - -#: fortran/interface.c:173 -#, fuzzy, no-c-format -msgid "Syntax error in generic specification at %C" -msgstr "error de decodificaci en l'especificaci del mtode" - -#: fortran/interface.c:200 -#, fuzzy, no-c-format -msgid "Syntax error: Trailing garbage in INTERFACE statement at %C" -msgstr "Text espuri addicional al nombre en la declaraci FORMAT en %0" - -#: fortran/interface.c:219 -#, no-c-format -msgid "Dummy procedure '%s' at %C cannot have a generic interface" -msgstr "" - -#: fortran/interface.c:252 -#, no-c-format -msgid "Fortran 2003: ABSTRACT INTERFACE at %C" -msgstr "" - -#: fortran/interface.c:260 -#, no-c-format -msgid "Syntax error in ABSTRACT INTERFACE statement at %C" -msgstr "" - -#: fortran/interface.c:291 -#, no-c-format -msgid "Syntax error: Trailing garbage in END INTERFACE statement at %C" -msgstr "" - -#: fortran/interface.c:304 -#, fuzzy, no-c-format -msgid "Expected a nameless interface at %C" -msgstr " s'esperava un patr de classe, es va obtenir \"%T\"" - -#: fortran/interface.c:315 -#, no-c-format -msgid "Expected 'END INTERFACE ASSIGNMENT (=)' at %C" -msgstr "" - -#: fortran/interface.c:317 -#, no-c-format -msgid "Expecting 'END INTERFACE OPERATOR (%s)' at %C" -msgstr "" - -#: fortran/interface.c:331 -#, no-c-format -msgid "Expecting 'END INTERFACE OPERATOR (.%s.)' at %C" -msgstr "" - -#: fortran/interface.c:342 -#, no-c-format -msgid "Expecting 'END INTERFACE %s' at %C" -msgstr "" - -#: fortran/interface.c:551 -#, no-c-format -msgid "Alternate return cannot appear in operator interface at %L" -msgstr "" - -#: fortran/interface.c:581 -#, no-c-format -msgid "Operator interface at %L has the wrong number of arguments" -msgstr "" - -#: fortran/interface.c:592 -#, no-c-format -msgid "Assignment operator interface at %L must be a SUBROUTINE" -msgstr "" - -#: fortran/interface.c:598 -#, no-c-format -msgid "Assignment operator interface at %L must have two arguments" -msgstr "" - -#: fortran/interface.c:608 -#, no-c-format -msgid "Assignment operator interface at %L must not redefine an INTRINSIC type assignment" -msgstr "" - -#: fortran/interface.c:617 -#, no-c-format -msgid "Intrinsic operator interface at %L must be a FUNCTION" -msgstr "" - -#: fortran/interface.c:627 -#, no-c-format -msgid "First argument of defined assignment at %L must be INTENT(IN) or INTENT(INOUT)" -msgstr "" - -#: fortran/interface.c:631 -#, no-c-format -msgid "Second argument of defined assignment at %L must be INTENT(IN)" -msgstr "" - -#: fortran/interface.c:637 fortran/resolve.c:8807 -#, no-c-format -msgid "First argument of operator interface at %L must be INTENT(IN)" -msgstr "" - -#: fortran/interface.c:641 fortran/resolve.c:8819 -#, no-c-format -msgid "Second argument of operator interface at %L must be INTENT(IN)" -msgstr "" - -#: fortran/interface.c:744 -#, no-c-format -msgid "Operator interface at %L conflicts with intrinsic interface" -msgstr "" - -#: fortran/interface.c:1044 -#, no-c-format -msgid "Procedure '%s' in %s at %L has no explicit interface" -msgstr "" - -#: fortran/interface.c:1047 -#, no-c-format -msgid "Procedure '%s' in %s at %L is neither function nor subroutine" -msgstr "" - -#: fortran/interface.c:1102 fortran/interface.c:1108 -#, no-c-format -msgid "Ambiguous interfaces '%s' and '%s' in %s at %L" -msgstr "" - -#: fortran/interface.c:1144 -#, no-c-format -msgid "'%s' at %L is not a module procedure" -msgstr "" - -#: fortran/interface.c:1676 -#, no-c-format -msgid "Keyword argument '%s' at %L is not in the procedure" -msgstr "" - -#: fortran/interface.c:1684 -#, no-c-format -msgid "Keyword argument '%s' at %L is already associated with another actual argument" -msgstr "" - -#: fortran/interface.c:1694 -#, no-c-format -msgid "More actual than formal arguments in procedure call at %L" -msgstr "" - -#: fortran/interface.c:1706 fortran/interface.c:1935 -#, no-c-format -msgid "Missing alternate return spec in subroutine call at %L" -msgstr "" - -#: fortran/interface.c:1714 -#, no-c-format -msgid "Unexpected alternate return spec in subroutine call at %L" -msgstr "" - -#: fortran/interface.c:1729 -#, no-c-format -msgid "Fortran 2003: Scalar CHARACTER actual argument with array dummy argument '%s' at %L" -msgstr "" - -#: fortran/interface.c:1742 -#, no-c-format -msgid "Type/rank mismatch in argument '%s' at %L" -msgstr "" - -#: fortran/interface.c:1758 -#, no-c-format -msgid "Character length mismatch between actual argument and pointer or allocatable dummy argument '%s' at %L" -msgstr "" - -#: fortran/interface.c:1771 -#, no-c-format -msgid "Character length of actual argument shorter than of dummy argument '%s' (%lu/%lu) at %L" -msgstr "" - -#: fortran/interface.c:1776 -#, no-c-format -msgid "Actual argument contains too few elements for dummy argument '%s' (%lu/%lu) at %L" -msgstr "" - -#: fortran/interface.c:1790 -#, no-c-format -msgid "Expected a procedure for argument '%s' at %L" -msgstr "" - -#: fortran/interface.c:1800 -#, no-c-format -msgid "Expected a PURE procedure for argument '%s' at %L" -msgstr "" - -#: fortran/interface.c:1814 -#, no-c-format -msgid "Actual argument for '%s' cannot be an assumed-size array at %L" -msgstr "" - -#: fortran/interface.c:1823 -#, fuzzy, no-c-format -msgid "Actual argument for '%s' must be a pointer at %L" -msgstr "l'argument per a \"%s\" ha de ser una literal sense signe de 2-bit" - -#: fortran/interface.c:1832 -#, no-c-format -msgid "Actual argument for '%s' must be ALLOCATABLE at %L" -msgstr "" - -#: fortran/interface.c:1843 -#, no-c-format -msgid "Actual argument at %L must be definable to match dummy INTENT = OUT/INOUT" -msgstr "" - -#: fortran/interface.c:1851 -#, no-c-format -msgid "Actual argument at %L is use-associated with PROTECTED attribute and dummy argument '%s' is INTENT = OUT/INOUT" -msgstr "" - -#: fortran/interface.c:1864 -#, no-c-format -msgid "Array-section actual argument with vector subscripts at %L is incompatible with INTENT(IN), INTENT(INOUT) or VOLATILE attribute of the dummy argument '%s'" -msgstr "" - -#: fortran/interface.c:1881 -#, no-c-format -msgid "Assumed-shape actual argument at %L is incompatible with the non-assumed-shape dummy argument '%s' due to VOLATILE attribute" -msgstr "" - -#: fortran/interface.c:1893 -#, no-c-format -msgid "Array-section actual argument at %L is incompatible with the non-assumed-shape dummy argument '%s' due to VOLATILE attribute" -msgstr "" - -#: fortran/interface.c:1912 -#, no-c-format -msgid "Pointer-array actual argument at %L requires an assumed-shape or pointer-array dummy argument '%s' due to VOLATILE attribute" -msgstr "" - -#: fortran/interface.c:1942 -#, no-c-format -msgid "Missing actual argument for argument '%s' at %L" -msgstr "" - -#: fortran/interface.c:2128 -#, no-c-format -msgid "Same actual argument associated with INTENT(%s) argument '%s' and INTENT(%s) argument '%s' at %L" -msgstr "" - -#: fortran/interface.c:2184 -#, no-c-format -msgid "Procedure argument at %L is INTENT(IN) while interface specifies INTENT(%s)" -msgstr "" - -#: fortran/interface.c:2194 -#, no-c-format -msgid "Procedure argument at %L is local to a PURE procedure and is passed to an INTENT(%s) argument" -msgstr "" - -#: fortran/interface.c:2202 -#, no-c-format -msgid "Procedure argument at %L is local to a PURE procedure and has the POINTER attribute" -msgstr "" - -#: fortran/interface.c:2225 -#, no-c-format -msgid "Procedure '%s' called with an implicit interface at %L" -msgstr "" - -#: fortran/interface.c:2440 -#, no-c-format -msgid "Function '%s' called in lieu of an operator at %L must be PURE" -msgstr "" - -#: fortran/interface.c:2519 -#, no-c-format -msgid "Entity '%s' at %C is already present in the interface" -msgstr "" - -#: fortran/intrinsic.c:2918 -#, fuzzy, no-c-format -msgid "Too many arguments in call to '%s' at %L" -msgstr "massa arguments per a %s \"%+#D\"" - -#: fortran/intrinsic.c:2933 -#, no-c-format -msgid "The argument list functions %%VAL, %%LOC or %%REF are not allowed in this context at %L" -msgstr "" - -#: fortran/intrinsic.c:2936 -#, no-c-format -msgid "Can't find keyword named '%s' in call to '%s' at %L" -msgstr "" - -#: fortran/intrinsic.c:2943 -#, no-c-format -msgid "Argument '%s' is appears twice in call to '%s' at %L" -msgstr "" - -#: fortran/intrinsic.c:2957 -#, no-c-format -msgid "Missing actual argument '%s' in call to '%s' at %L" -msgstr "" - -#: fortran/intrinsic.c:2972 -#, no-c-format -msgid "ALTERNATE RETURN not permitted at %L" -msgstr "" - -#: fortran/intrinsic.c:3021 -#, no-c-format -msgid "Type of argument '%s' in call to '%s' at %L should be %s, not %s" -msgstr "" - -#: fortran/intrinsic.c:3337 -#, no-c-format -msgid "Intrinsic '%s' at %L is not included in the selected standard" -msgstr "" - -#: fortran/intrinsic.c:3450 -#, no-c-format -msgid "Fortran 2003: Elemental function as initialization expression with non-integer/non-character arguments at %L" -msgstr "" - -#: fortran/intrinsic.c:3508 -#, no-c-format -msgid "Subroutine call to intrinsic '%s' at %L is not PURE" -msgstr "" - -#: fortran/intrinsic.c:3579 -#, fuzzy, no-c-format -msgid "Extension: Conversion from %s to %s at %L" -msgstr "conversi no vlida de \"%T\" a \"%T\"" - -#: fortran/intrinsic.c:3582 -#, fuzzy, no-c-format -msgid "Conversion from %s to %s at %L" -msgstr "conversi de \"%#T\" a \"%#T\"" - -#: fortran/intrinsic.c:3629 -#, fuzzy, no-c-format -msgid "Can't convert %s to %s at %L" -msgstr "la conversion de %s a %s ha fallat" - -#: fortran/io.c:156 fortran/primary.c:738 -#, no-c-format -msgid "Extension: backslash character at %C" -msgstr "" - -#: fortran/io.c:187 fortran/io.c:190 -#, no-c-format -msgid "Extension: Tab character in format at %C" -msgstr "" - -#: fortran/io.c:450 -#, fuzzy -msgid "Positive width required" -msgstr " per es requereixen %d" - -#: fortran/io.c:451 -#, fuzzy -msgid "Nonnegative width required" -msgstr "amplria negativa en el camp de bit \"%s\"" - -#: fortran/io.c:452 -#, fuzzy -msgid "Unexpected element" -msgstr "operand inesperat" - -#: fortran/io.c:453 -#, fuzzy -msgid "Unexpected end of format string" -msgstr "constant de format sense acabar" - -#: fortran/io.c:472 -#, fuzzy -msgid "Missing leading left parenthesis" -msgstr "\"(\" faltant" - -#: fortran/io.c:519 -msgid "Expected P edit descriptor" -msgstr "" - -#. P requires a prior number. -#: fortran/io.c:527 -msgid "P descriptor requires leading scale factor" -msgstr "" - -#. X requires a prior number if we're being pedantic. -#: fortran/io.c:532 -#, no-c-format -msgid "Extension: X descriptor requires leading space count at %C" -msgstr "" - -#: fortran/io.c:554 -#, no-c-format -msgid "Extension: $ descriptor at %C" -msgstr "" - -#: fortran/io.c:559 -#, no-c-format -msgid "$ should be the last specifier in format at %C" -msgstr "" - -#: fortran/io.c:604 -msgid "Repeat count cannot follow P descriptor" -msgstr "" - -#: fortran/io.c:624 -#, no-c-format -msgid "Extension: Missing positive width after L descriptor at %C" -msgstr "" - -#: fortran/io.c:670 fortran/io.c:672 fortran/io.c:733 fortran/io.c:735 -#, fuzzy, no-c-format -msgid "Period required in format specifier at %C" -msgstr "no es reconeix l'especificador de format" - -#: fortran/io.c:704 -msgid "Positive exponent width required" -msgstr "" - -#: fortran/io.c:753 -#, no-c-format -msgid "The H format specifier at %C is a Fortran 95 deleted feature" -msgstr "" - -#: fortran/io.c:838 fortran/io.c:895 -#, no-c-format -msgid "Extension: Missing comma at %C" -msgstr "" - -#: fortran/io.c:905 -#, fuzzy, no-c-format -msgid "%s in format string at %C" -msgstr "format %s, argument %s (argument %d)" - -#: fortran/io.c:946 -#, no-c-format -msgid "Format statement in module main block at %C" -msgstr "" - -#: fortran/io.c:952 -#, fuzzy, no-c-format -msgid "Missing format label at %C" -msgstr "nom de fitxer faltant deprs de \"%s\"" - -#: fortran/io.c:1010 fortran/io.c:1034 -#, fuzzy, no-c-format -msgid "Duplicate %s specification at %C" -msgstr "desprs de l'especificaci prvia en \"%#D\"" - -#: fortran/io.c:1041 -#, no-c-format -msgid "Variable tag cannot be INTENT(IN) at %C" -msgstr "" - -#: fortran/io.c:1048 -#, no-c-format -msgid "Variable tag cannot be assigned in PURE procedure at %C" -msgstr "" - -#: fortran/io.c:1085 -#, fuzzy, no-c-format -msgid "Duplicate %s label specification at %C" -msgstr "declaraci de l'etiqueta \"%s\" duplicada" - -#: fortran/io.c:1106 -#, no-c-format -msgid "Constant expression in FORMAT tag at %L must be of type default CHARACTER" -msgstr "" - -#: fortran/io.c:1119 -#, no-c-format -msgid "FORMAT tag at %L must be of type CHARACTER or INTEGER" -msgstr "" - -#: fortran/io.c:1125 -#, no-c-format -msgid "Deleted feature: ASSIGNED variable in FORMAT tag at %L" -msgstr "" - -#: fortran/io.c:1131 -#, no-c-format -msgid "Variable '%s' at %L has not been assigned a format label" -msgstr "" - -#: fortran/io.c:1138 -#, no-c-format -msgid "Scalar '%s' in FORMAT tag at %L is not an ASSIGNED variable" -msgstr "" - -#: fortran/io.c:1151 -#, no-c-format -msgid "Extension: Character array in FORMAT tag at %L" -msgstr "" - -#: fortran/io.c:1157 -#, fuzzy, no-c-format -msgid "Extension: Non-character in FORMAT tag at %L" -msgstr "Coma sobrant en la declaraci FORMAT en %0" - -#: fortran/io.c:1182 -#, fuzzy, no-c-format -msgid "%s tag at %L must be of type %s" -msgstr "\"%D\" no s un membre de tipus \"%T\"" - -#: fortran/io.c:1189 -#, no-c-format -msgid "%s tag at %L must be scalar" -msgstr "" - -#: fortran/io.c:1195 -#, no-c-format -msgid "Fortran 2003: IOMSG tag at %L" -msgstr "" - -#: fortran/io.c:1203 -#, no-c-format -msgid "Fortran 95 requires default INTEGER in %s tag at %L" -msgstr "" - -#: fortran/io.c:1211 -#, no-c-format -msgid "Extension: CONVERT tag at %L" -msgstr "" - -#: fortran/io.c:1367 fortran/io.c:1375 -#, fuzzy, no-c-format -msgid "Fortran 2003: %s specifier in %s statement at %C has value '%s'" -msgstr "Falta l'especificador %A en la declaraci en %0" - -#: fortran/io.c:1393 fortran/io.c:1401 -#, fuzzy, no-c-format -msgid "Extension: %s specifier in %s statement at %C has value '%s'" -msgstr "Falta l'especificador %A en la declaraci en %0" - -#: fortran/io.c:1413 fortran/io.c:1419 -#, fuzzy, no-c-format -msgid "%s specifier in %s statement at %C has invalid value '%s'" -msgstr "Falta l'especificador %A en la declaraci en %0" - -#: fortran/io.c:1473 -#, no-c-format -msgid "OPEN statement not allowed in PURE procedure at %C" -msgstr "" - -#: fortran/io.c:1818 -#, no-c-format -msgid "CLOSE statement not allowed in PURE procedure at %C" -msgstr "" - -#: fortran/io.c:1955 fortran/match.c:1841 -#, no-c-format -msgid "%s statement not allowed in PURE procedure at %C" -msgstr "" - -#: fortran/io.c:2011 -#, no-c-format -msgid "Fortran 2003: FLUSH statement at %C" -msgstr "" - -#: fortran/io.c:2072 -#, no-c-format -msgid "Duplicate UNIT specification at %C" -msgstr "" - -#: fortran/io.c:2128 -#, fuzzy, no-c-format -msgid "Duplicate format specification at %C" -msgstr "error de decodificaci en l'especificaci del mtode" - -#: fortran/io.c:2145 -#, no-c-format -msgid "Symbol '%s' in namelist '%s' is INTENT(IN) at %C" -msgstr "" - -#: fortran/io.c:2181 -#, fuzzy, no-c-format -msgid "Duplicate NML specification at %C" -msgstr "inicialitzaci duplicada de %D" - -#: fortran/io.c:2190 -#, no-c-format -msgid "Symbol '%s' at %C must be a NAMELIST group name" -msgstr "" - -#: fortran/io.c:2231 -#, no-c-format -msgid "END tag at %C not allowed in output statement" -msgstr "" - -#: fortran/io.c:2288 -#, no-c-format -msgid "UNIT specification at %L must be an INTEGER expression or a CHARACTER variable" -msgstr "" - -#: fortran/io.c:2297 -#, no-c-format -msgid "Internal unit with vector subscript at %L" -msgstr "" - -#: fortran/io.c:2304 -#, no-c-format -msgid "External IO UNIT cannot be an array at %L" -msgstr "" - -#: fortran/io.c:2314 -#, fuzzy, no-c-format -msgid "ERR tag label %d at %L not defined" -msgstr "s'usa l'etiqueta \"%D\" per no est definida" - -#: fortran/io.c:2326 -#, fuzzy, no-c-format -msgid "END tag label %d at %L not defined" -msgstr "s'usa l'etiqueta \"%D\" per no est definida" - -#: fortran/io.c:2338 -#, fuzzy, no-c-format -msgid "EOR tag label %d at %L not defined" -msgstr "s'usa l'etiqueta \"%D\" per no est definida" - -#: fortran/io.c:2348 -#, fuzzy, no-c-format -msgid "FORMAT label %d at %L not defined" -msgstr "s'usa l'etiqueta \"%D\" per no est definida" - -#: fortran/io.c:2469 -#, fuzzy, no-c-format -msgid "Syntax error in I/O iterator at %C" -msgstr "errore sintctic en la llista de parmetre de macro" - -#: fortran/io.c:2500 -#, fuzzy, no-c-format -msgid "Expected variable in READ statement at %C" -msgstr "Coma sobrant en la declaraci FORMAT en %0" - -#: fortran/io.c:2506 -#, fuzzy, no-c-format -msgid "Expected expression in %s statement at %C" -msgstr "Coma sobrant en la declaraci FORMAT en %0" - -#: fortran/io.c:2516 -#, no-c-format -msgid "Variable '%s' in input list at %C cannot be INTENT(IN)" -msgstr "" - -#: fortran/io.c:2525 -#, no-c-format -msgid "Cannot read to variable '%s' in PURE procedure at %C" -msgstr "" - -#: fortran/io.c:2541 -#, no-c-format -msgid "Cannot write to internal file unit '%s' at %C inside a PURE procedure" -msgstr "" - -#. A general purpose syntax error. -#: fortran/io.c:2602 fortran/io.c:3004 fortran/gfortran.h:1998 -#, fuzzy, no-c-format -msgid "Syntax error in %s statement at %C" -msgstr "error sintctic en l'element \"%s\"" - -#: fortran/io.c:2670 -#, no-c-format -msgid "Fortran 2003: Internal file at %L with namelist" -msgstr "" - -#: fortran/io.c:2833 -#, no-c-format -msgid "PRINT namelist at %C is an extension" -msgstr "" - -#: fortran/io.c:2965 -#, no-c-format -msgid "Extension: Comma before i/o item list at %C" -msgstr "" - -#: fortran/io.c:2974 -#, fuzzy, no-c-format -msgid "Expected comma in I/O list at %C" -msgstr "Coma sobrant en la declaraci FORMAT en %0" - -#: fortran/io.c:3036 -#, fuzzy, no-c-format -msgid "PRINT statement at %C not allowed within PURE procedure" -msgstr "La declaraci RETURN en %0 no s vlida dintre d'una unitat de programa principal" - -#: fortran/io.c:3176 fortran/io.c:3227 -#, no-c-format -msgid "INQUIRE statement not allowed in PURE procedure at %C" -msgstr "" - -#: fortran/io.c:3203 -#, no-c-format -msgid "IOLENGTH tag invalid in INQUIRE statement at %C" -msgstr "" - -#: fortran/io.c:3213 fortran/trans-io.c:1144 -#, no-c-format -msgid "INQUIRE statement at %L cannot contain both FILE and UNIT specifiers" -msgstr "" - -#: fortran/io.c:3220 -#, no-c-format -msgid "INQUIRE statement at %L requires either FILE or UNIT specifier" -msgstr "" - -#: fortran/match.c:270 -#, fuzzy, no-c-format -msgid "Integer too large at %C" -msgstr "Enter en %0 massa gran" - -#: fortran/match.c:363 fortran/parse.c:442 -#, no-c-format -msgid "Too many digits in statement label at %C" -msgstr "" - -#: fortran/match.c:369 -#, no-c-format -msgid "Statement label at %C is zero" -msgstr "" - -#: fortran/match.c:402 -#, fuzzy, no-c-format -msgid "Label name '%s' at %C is ambiguous" -msgstr "l's de \"%D\" s ambigu" - -#: fortran/match.c:408 -#, fuzzy, no-c-format -msgid "Duplicate construct label '%s' at %C" -msgstr "etiqueta duplicada \"%D\"" - -#: fortran/match.c:438 -#, fuzzy, no-c-format -msgid "Invalid character in name at %C" -msgstr "caracter no vlid \"%c\" en #if" - -#: fortran/match.c:451 fortran/match.c:523 -#, no-c-format -msgid "Name at %C is too long" -msgstr "" - -#: fortran/match.c:506 fortran/match.c:552 -#, no-c-format -msgid "Invalid C name in NAME= specifier at %C" -msgstr "" - -#: fortran/match.c:543 -#, no-c-format -msgid "Embedded space in NAME= specifier at %C" -msgstr "" - -#: fortran/match.c:868 -#, no-c-format -msgid "Loop variable at %C cannot be a sub-component" -msgstr "" - -#: fortran/match.c:874 -#, no-c-format -msgid "Loop variable '%s' at %C cannot be INTENT(IN)" -msgstr "" - -#: fortran/match.c:907 -#, no-c-format -msgid "Expected a step value in iterator at %C" -msgstr "" - -#: fortran/match.c:919 -#, fuzzy, no-c-format -msgid "Syntax error in iterator at %C" -msgstr "errore sintctic en la llista de parmetre de macro" - -#: fortran/match.c:1155 -#, fuzzy, no-c-format -msgid "Invalid form of PROGRAM statement at %C" -msgstr "Coma faltant en la declaraci FORMAT en %0" - -#: fortran/match.c:1196 -#, no-c-format -msgid "Setting value of PROTECTED variable at %C" -msgstr "" - -#: fortran/match.c:1249 -#, no-c-format -msgid "Assigning to a PROTECTED pointer at %C" -msgstr "" - -#: fortran/match.c:1292 fortran/match.c:1365 -#, no-c-format -msgid "Obsolescent: arithmetic IF statement at %C" -msgstr "" - -#: fortran/match.c:1340 -#, fuzzy, no-c-format -msgid "Syntax error in IF-expression at %C" -msgstr "desbordament enter en l'expressi" - -#: fortran/match.c:1351 -#, no-c-format -msgid "Block label not appropriate for arithmetic IF statement at %C" -msgstr "" - -#: fortran/match.c:1389 -#, fuzzy, no-c-format -msgid "Block label is not appropriate IF statement at %C" -msgstr "No hi ha definici d'etiqueta per a la declaraci FORMAT en %0" - -#: fortran/match.c:1468 fortran/primary.c:2522 -#, no-c-format -msgid "Cannot assign to a named constant at %C" -msgstr "" - -#: fortran/match.c:1478 -#, no-c-format -msgid "Unclassifiable statement in IF-clause at %C" -msgstr "" - -#: fortran/match.c:1485 -#, no-c-format -msgid "Syntax error in IF-clause at %C" -msgstr "" - -#: fortran/match.c:1529 -#, no-c-format -msgid "Unexpected junk after ELSE statement at %C" -msgstr "" - -#: fortran/match.c:1535 fortran/match.c:1570 -#, no-c-format -msgid "Label '%s' at %C doesn't match IF label '%s'" -msgstr "" - -#: fortran/match.c:1564 -#, no-c-format -msgid "Unexpected junk after ELSE IF statement at %C" -msgstr "" - -#: fortran/match.c:1727 -#, no-c-format -msgid "Name '%s' in %s statement at %C is not a loop name" -msgstr "" - -#: fortran/match.c:1743 -#, fuzzy, no-c-format -msgid "%s statement at %C is not within a loop" -msgstr "la declaraci continue no est dintre dintre d'un cicle" - -#: fortran/match.c:1746 -#, fuzzy, no-c-format -msgid "%s statement at %C is not within loop '%s'" -msgstr "la declaraci break no est dintre d'un cicle o switch" - -#: fortran/match.c:1754 -#, no-c-format -msgid "%s statement at %C leaving OpenMP structured block" -msgstr "" - -#: fortran/match.c:1767 -#, no-c-format -msgid "EXIT statement at %C terminating !$OMP DO loop" -msgstr "" - -#: fortran/match.c:1819 -#, no-c-format -msgid "Too many digits in STOP code at %C" -msgstr "" - -#: fortran/match.c:1872 -#, no-c-format -msgid "Deleted feature: PAUSE statement at %C" -msgstr "" - -#: fortran/match.c:1920 -#, no-c-format -msgid "Deleted feature: ASSIGN statement at %C" -msgstr "" - -#: fortran/match.c:1966 -#, no-c-format -msgid "Deleted feature: Assigned GOTO statement at %C" -msgstr "" - -#: fortran/match.c:2013 fortran/match.c:2065 -#, no-c-format -msgid "Statement label list in GOTO at %C cannot be empty" -msgstr "" - -#: fortran/match.c:2149 -#, no-c-format -msgid "Bad allocate-object in ALLOCATE statement at %C for a PURE procedure" -msgstr "" - -#: fortran/match.c:2173 -#, no-c-format -msgid "STAT variable '%s' of ALLOCATE statement at %C cannot be INTENT(IN)" -msgstr "" - -#: fortran/match.c:2180 -#, no-c-format -msgid "Illegal STAT variable in ALLOCATE statement at %C for a PURE procedure" -msgstr "" - -#: fortran/match.c:2218 fortran/match.c:2382 -#, no-c-format -msgid "STAT expression at %C must be a variable" -msgstr "" - -#: fortran/match.c:2272 -#, no-c-format -msgid "Illegal variable in NULLIFY at %C for a PURE procedure" -msgstr "" - -#: fortran/match.c:2349 -#, no-c-format -msgid "Illegal deallocate-expression in DEALLOCATE at %C for a PURE procedure" -msgstr "" - -#: fortran/match.c:2368 -#, no-c-format -msgid "STAT variable '%s' of DEALLOCATE statement at %C cannot be INTENT(IN)" -msgstr "" - -#: fortran/match.c:2375 -#, no-c-format -msgid "Illegal STAT variable in DEALLOCATE statement at %C for a PURE procedure" -msgstr "" - -#: fortran/match.c:2424 -#, no-c-format -msgid "Alternate RETURN statement at %C is only allowed within a SUBROUTINE" -msgstr "" - -#: fortran/match.c:2455 -#, fuzzy, no-c-format -msgid "Extension: RETURN statement in main program at %C" -msgstr "La declaraci RETURN en %0 no s vlida dintre d'una unitat de programa principal" - -#: fortran/match.c:2665 -#, fuzzy, no-c-format -msgid "Syntax error in common block name at %C" -msgstr "errore sintctic en la llista de parmetre de macro" - -#: fortran/match.c:2701 -#, no-c-format -msgid "Symbol '%s' at %C is already an external symbol that is not COMMON" -msgstr "" - -#: fortran/match.c:2719 -#, no-c-format -msgid "BLOCK DATA unit cannot contain blank COMMON at %C" -msgstr "" - -#. If we find an error, just print it and continue, -#. cause it's just semantic, and we can see if there -#. are more errors. -#: fortran/match.c:2765 -#, no-c-format -msgid "Variable '%s' at %L in common block '%s' at %C must be declared with a C interoperable kind since common block '%s' is bind(c)" -msgstr "" - -#: fortran/match.c:2774 -#, no-c-format -msgid "Variable '%s' in common block '%s' at %C can not be bind(c) since it is not global" -msgstr "" - -#: fortran/match.c:2781 -#, no-c-format -msgid "Symbol '%s' at %C is already in a COMMON block" -msgstr "" - -#: fortran/match.c:2793 -#, no-c-format -msgid "Previously initialized symbol '%s' in blank COMMON block at %C" -msgstr "" - -#: fortran/match.c:2796 -#, no-c-format -msgid "Previously initialized symbol '%s' in COMMON block '%s' at %C" -msgstr "" - -#: fortran/match.c:2821 -#, no-c-format -msgid "Array specification for symbol '%s' in COMMON at %C must be explicit" -msgstr "" - -#: fortran/match.c:2831 -#, no-c-format -msgid "Symbol '%s' in COMMON at %C cannot be a POINTER array" -msgstr "" - -#: fortran/match.c:2863 -#, no-c-format -msgid "Symbol '%s', in COMMON block '%s' at %C is being indirectly equivalenced to another COMMON block '%s'" -msgstr "" - -#: fortran/match.c:2971 -#, no-c-format -msgid "Namelist group name '%s' at %C already has a basic type of %s" -msgstr "" - -#: fortran/match.c:2979 -#, no-c-format -msgid "Namelist group name '%s' at %C already is USE associated and cannot be respecified." -msgstr "" - -#: fortran/match.c:3006 -#, no-c-format -msgid "Assumed size array '%s' in namelist '%s' at %C is not allowed" -msgstr "" - -#: fortran/match.c:3013 -#, no-c-format -msgid "Assumed character length '%s' in namelist '%s' at %C is not allowed" -msgstr "" - -#: fortran/match.c:3140 -#, no-c-format -msgid "Derived type component %C is not a permitted EQUIVALENCE member" -msgstr "" - -#: fortran/match.c:3148 -#, no-c-format -msgid "Array reference in EQUIVALENCE at %C cannot be an array section" -msgstr "" - -#: fortran/match.c:3176 -#, no-c-format -msgid "EQUIVALENCE at %C requires two or more objects" -msgstr "" - -#: fortran/match.c:3190 -#, no-c-format -msgid "Attempt to indirectly overlap COMMON blocks %s and %s by EQUIVALENCE at %C" -msgstr "" - -#: fortran/match.c:3351 -#, no-c-format -msgid "Statement function at %L is recursive" -msgstr "" - -#: fortran/match.c:3439 -#, fuzzy, no-c-format -msgid "Expected initialization expression in CASE at %C" -msgstr "inicialitzaci de l'expressi new amb \"=\"" - -#: fortran/match.c:3462 -#, no-c-format -msgid "Expected the name of the SELECT CASE construct at %C" -msgstr "" - -#: fortran/match.c:3474 -#, no-c-format -msgid "Expected case name of '%s' at %C" -msgstr "" - -#: fortran/match.c:3518 -#, fuzzy, no-c-format -msgid "Unexpected CASE statement at %C" -msgstr "Falta l'especificador %A en la declaraci en %0" - -#: fortran/match.c:3570 -#, fuzzy, no-c-format -msgid "Syntax error in CASE-specification at %C" -msgstr "error de decodificaci en l'especificaci del mtode" - -#: fortran/match.c:3690 -#, no-c-format -msgid "ELSEWHERE statement at %C not enclosed in WHERE block" -msgstr "" - -#: fortran/match.c:3728 -#, no-c-format -msgid "Label '%s' at %C doesn't match WHERE label '%s'" -msgstr "" - -#: fortran/match.c:3828 -#, fuzzy, no-c-format -msgid "Syntax error in FORALL iterator at %C" -msgstr "errore sintctic en la llista de parmetre de macro" - -#: fortran/matchexp.c:28 -#, fuzzy, c-format -msgid "Syntax error in expression at %C" -msgstr "desbordament enter en l'expressi" - -#: fortran/matchexp.c:72 -#, fuzzy, no-c-format -msgid "Bad character '%c' in OPERATOR name at %C" -msgstr "caracter no vlid \"%c\" en #if" - -#: fortran/matchexp.c:80 -#, fuzzy, no-c-format -msgid "The name '%s' cannot be used as a defined operator at %C" -msgstr "no es pot usar \"%s\" com un nom de macro perqu s un operador en C++" - -#: fortran/matchexp.c:187 -#, fuzzy, no-c-format -msgid "Expected a right parenthesis in expression at %C" -msgstr "S'esperava un operador binari entre les expressions en %0 i en %1" - -#: fortran/matchexp.c:312 -#, fuzzy, no-c-format -msgid "Expected exponent in expression at %C" -msgstr "S'esperava un operador binari entre les expressions en %0 i en %1" - -#: fortran/matchexp.c:348 fortran/matchexp.c:452 -#, no-c-format -msgid "Extension: Unary operator following arithmetic operator (use parentheses) at %C" -msgstr "" - -#: fortran/misc.c:39 -#, no-c-format -msgid "Out of memory-- malloc() failed" -msgstr "" - -#: fortran/module.c:516 -#, no-c-format -msgid "Fortran 2003: module nature in USE statement at %C" -msgstr "" - -#: fortran/module.c:528 -#, no-c-format -msgid "Module nature in USE statement at %C shall be either INTRINSIC or NON_INTRINSIC" -msgstr "" - -#: fortran/module.c:541 -#, no-c-format -msgid "\"::\" was expected after module nature at %C but was not found" -msgstr "" - -#: fortran/module.c:550 -#, no-c-format -msgid "Fortran 2003: \"USE :: module\" at %C" -msgstr "" - -#: fortran/module.c:602 -#, fuzzy, no-c-format -msgid "Missing generic specification in USE statement at %C" -msgstr "Falta l'especificador %A en la declaraci en %0" - -#: fortran/module.c:610 -#, no-c-format -msgid "Fortran 2003: Renaming operators in USE statements at %C" -msgstr "" - -#: fortran/module.c:652 -#, no-c-format -msgid "The name '%s' at %C has already been used as an external module name." -msgstr "" - -#: fortran/module.c:930 -#, no-c-format -msgid "Reading module %s at line %d column %d: %s" -msgstr "" - -#: fortran/module.c:934 -#, no-c-format -msgid "Writing module %s at line %d column %d: %s" -msgstr "" - -#: fortran/module.c:938 -#, no-c-format -msgid "Module %s at line %d column %d: %s" -msgstr "" - -#: fortran/module.c:978 -#, fuzzy -msgid "Unexpected EOF" -msgstr "operand inesperat" - -#: fortran/module.c:1010 -#, fuzzy -msgid "Unexpected end of module in string constant" -msgstr "conversi obsoleta d'una constant de cadena a \"%T\"" - -#: fortran/module.c:1064 -#, fuzzy -msgid "Integer overflow" -msgstr "desbordament enter en l'expressi" - -#: fortran/module.c:1095 -msgid "Name too long" -msgstr "" - -#: fortran/module.c:1202 -msgid "Bad name" -msgstr "" - -#: fortran/module.c:1246 -#, fuzzy -msgid "Expected name" -msgstr "operand inesperat" - -#: fortran/module.c:1249 -#, fuzzy -msgid "Expected left parenthesis" -msgstr "operand inesperat" - -#: fortran/module.c:1252 -msgid "Expected right parenthesis" -msgstr "" - -#: fortran/module.c:1255 -#, fuzzy -msgid "Expected integer" -msgstr "operand inesperat" - -#: fortran/module.c:1258 -#, fuzzy -msgid "Expected string" -msgstr "operand inesperat" - -#: fortran/module.c:1282 -msgid "find_enum(): Enum not found" -msgstr "" - -#: fortran/module.c:1296 -#, fuzzy, no-c-format -msgid "Error writing modules file: %s" -msgstr "%s:error escrivint al fitxer de sortida \"%s\"\n" - -#: fortran/module.c:1691 -#, fuzzy -msgid "Expected attribute bit name" -msgstr "no s necessari l'atribut packed" - -#: fortran/module.c:2503 -#, fuzzy -msgid "Expected integer string" -msgstr "falta la secci de punters" - -#: fortran/module.c:2507 -msgid "Error converting integer" -msgstr "" - -#: fortran/module.c:2529 -#, fuzzy -msgid "Expected real string" -msgstr "constant de format sense acabar" - -#: fortran/module.c:2722 -#, fuzzy -msgid "Expected expression type" -msgstr "expressi d'adrea inesperada" - -#: fortran/module.c:2776 -#, fuzzy -msgid "Bad operator" -msgstr "operand no vlid" - -#: fortran/module.c:2861 -#, fuzzy -msgid "Bad type in constant expression" -msgstr "desbordament en la constant implcita" - -#: fortran/module.c:2898 -#, no-c-format -msgid "Namelist %s cannot be renamed by USE association to %s" -msgstr "" - -#: fortran/module.c:3723 -#, no-c-format -msgid "Symbol '%s' referenced at %L not found in module '%s'" -msgstr "" - -#: fortran/module.c:3730 -#, no-c-format -msgid "User operator '%s' referenced at %L not found in module '%s'" -msgstr "" - -#: fortran/module.c:3735 -#, no-c-format -msgid "Intrinsic operator '%s' referenced at %L not found in module '%s'" -msgstr "" - -#: fortran/module.c:4213 -#, fuzzy, no-c-format -msgid "Can't open module file '%s' for writing at %C: %s" -msgstr "no es pot obrir %s per a escriptura" - -#: fortran/module.c:4251 -#, fuzzy, no-c-format -msgid "Error writing module file '%s' for writing: %s" -msgstr "%s: error escrivint el fitxer \"%s\": %s\n" - -#: fortran/module.c:4281 fortran/module.c:4363 -#, no-c-format -msgid "Symbol '%s' referenced at %L does not exist in intrinsic module ISO_C_BINDING." -msgstr "" - -#: fortran/module.c:4394 -#, no-c-format -msgid "Symbol '%s' referenced at %L not found in intrinsic module ISO_C_BINDING" -msgstr "" - -#: fortran/module.c:4416 -#, no-c-format -msgid "Symbol '%s' already declared" -msgstr "" - -#: fortran/module.c:4471 -#, no-c-format -msgid "Use of intrinsic module '%s' at %C conflicts with non-intrinsic module name used previously" -msgstr "" - -#: fortran/module.c:4484 -#, no-c-format -msgid "Symbol '%s' referenced at %L does not exist in intrinsic module ISO_FORTRAN_ENV" -msgstr "" - -#: fortran/module.c:4492 -#, no-c-format -msgid "Use of the NUMERIC_STORAGE_SIZE named constant from intrinsic module ISO_FORTRAN_ENV at %L is incompatible with option %s" -msgstr "" - -#: fortran/module.c:4520 -#, no-c-format -msgid "Use of the NUMERIC_STORAGE_SIZE named constant from intrinsic module ISO_FORTRAN_ENV at %C is incompatible with option %s" -msgstr "" - -#: fortran/module.c:4536 -#, no-c-format -msgid "Symbol '%s' referenced at %L not found in intrinsic module ISO_FORTRAN_ENV" -msgstr "" - -#: fortran/module.c:4569 -#, no-c-format -msgid "Fortran 2003: ISO_FORTRAN_ENV intrinsic module at %C" -msgstr "" - -#: fortran/module.c:4577 -#, no-c-format -msgid "Fortran 2003: ISO_C_BINDING module at %C" -msgstr "" - -#: fortran/module.c:4587 -#, no-c-format -msgid "Can't find an intrinsic module named '%s' at %C" -msgstr "" - -#: fortran/module.c:4592 -#, fuzzy, no-c-format -msgid "Can't open module file '%s' for reading at %C: %s" -msgstr "%s: no es pot obrir el fitxer \"%s\" per a lectura: %s\n" - -#: fortran/module.c:4600 -#, no-c-format -msgid "Use of non-intrinsic module '%s' at %C conflicts with intrinsic module name used previously" -msgstr "" - -#: fortran/module.c:4615 -#, fuzzy -msgid "Unexpected end of module" -msgstr "smbol PIC inesperat" - -#: fortran/module.c:4620 -#, no-c-format -msgid "File '%s' opened at %C is not a GFORTRAN module file" -msgstr "" - -#: fortran/module.c:4630 -#, no-c-format -msgid "Can't USE the same module we're building!" -msgstr "" - -#: fortran/openmp.c:134 fortran/openmp.c:499 -#, no-c-format -msgid "COMMON block /%s/ not found at %C" -msgstr "" - -#: fortran/openmp.c:165 -#, fuzzy, no-c-format -msgid "Syntax error in OpenMP variable list at %C" -msgstr "errore sintctic en la llista de parmetre de macro" - -#: fortran/openmp.c:291 -#, no-c-format -msgid "%s is not INTRINSIC procedure name at %C" -msgstr "" - -#: fortran/openmp.c:478 -#, no-c-format -msgid "Threadprivate variable at %C is an element of a COMMON block" -msgstr "" - -#: fortran/openmp.c:518 -#, no-c-format -msgid "Syntax error in !$OMP THREADPRIVATE list at %C" -msgstr "" - -#: fortran/openmp.c:696 fortran/resolve.c:5822 fortran/resolve.c:6133 -#, no-c-format -msgid "IF clause at %L requires a scalar LOGICAL expression" -msgstr "" - -#: fortran/openmp.c:704 -#, no-c-format -msgid "NUM_THREADS clause at %L requires a scalar INTEGER expression" -msgstr "" - -#: fortran/openmp.c:712 -#, no-c-format -msgid "SCHEDULE clause's chunk_size at %L requires a scalar INTEGER expression" -msgstr "" - -#: fortran/openmp.c:726 fortran/openmp.c:736 fortran/openmp.c:743 -#: fortran/openmp.c:753 -#, no-c-format -msgid "Symbol '%s' present on multiple clauses at %L" -msgstr "" - -#: fortran/openmp.c:776 -#, no-c-format -msgid "Non-THREADPRIVATE object '%s' in COPYIN clause at %L" -msgstr "" - -#: fortran/openmp.c:779 -#, no-c-format -msgid "COPYIN clause object '%s' is ALLOCATABLE at %L" -msgstr "" - -#: fortran/openmp.c:782 -#, no-c-format -msgid "COPYIN clause object '%s' at %L has ALLOCATABLE components" -msgstr "" - -#: fortran/openmp.c:790 -#, no-c-format -msgid "Assumed size array '%s' in COPYPRIVATE clause at %L" -msgstr "" - -#: fortran/openmp.c:793 -#, no-c-format -msgid "COPYPRIVATE clause object '%s' is ALLOCATABLE at %L" -msgstr "" - -#: fortran/openmp.c:796 -#, no-c-format -msgid "COPYPRIVATE clause object '%s' at %L has ALLOCATABLE components" -msgstr "" - -#: fortran/openmp.c:804 -#, no-c-format -msgid "THREADPRIVATE object '%s' in SHARED clause at %L" -msgstr "" - -#: fortran/openmp.c:807 -#, no-c-format -msgid "Cray pointee '%s' in SHARED clause at %L" -msgstr "" - -#: fortran/openmp.c:815 -#, no-c-format -msgid "THREADPRIVATE object '%s' in %s clause at %L" -msgstr "" - -#: fortran/openmp.c:818 -#, no-c-format -msgid "Cray pointee '%s' in %s clause at %L" -msgstr "" - -#: fortran/openmp.c:823 -#, no-c-format -msgid "POINTER object '%s' in %s clause at %L" -msgstr "" - -#: fortran/openmp.c:826 -#, no-c-format -msgid "%s clause object '%s' is ALLOCATABLE at %L" -msgstr "" - -#: fortran/openmp.c:831 -#, no-c-format -msgid "%s clause object '%s' has ALLOCATABLE components at %L" -msgstr "" - -#: fortran/openmp.c:834 -#, no-c-format -msgid "Cray pointer '%s' in %s clause at %L" -msgstr "" - -#: fortran/openmp.c:838 -#, no-c-format -msgid "Assumed size array '%s' in %s clause at %L" -msgstr "" - -#: fortran/openmp.c:843 -#, no-c-format -msgid "Variable '%s' in %s clause is used in NAMELIST statement at %L" -msgstr "" - -#: fortran/openmp.c:852 -#, no-c-format -msgid "%c REDUCTION variable '%s' at %L must be of numeric type, got %s" -msgstr "" - -#: fortran/openmp.c:863 -#, no-c-format -msgid "%s REDUCTION variable '%s' must be LOGICAL at %L" -msgstr "" - -#: fortran/openmp.c:874 -#, no-c-format -msgid "%s REDUCTION variable '%s' must be INTEGER or REAL at %L" -msgstr "" - -#: fortran/openmp.c:883 -#, no-c-format -msgid "%s REDUCTION variable '%s' must be INTEGER at %L" -msgstr "" - -#: fortran/openmp.c:995 -#, no-c-format -msgid "!$OMP ATOMIC statement must set a scalar variable of intrinsic type at %L" -msgstr "" - -#: fortran/openmp.c:1035 -#, no-c-format -msgid "!$OMP ATOMIC assignment operator must be +, *, -, /, .AND., .OR., .EQV. or .NEQV. at %L" -msgstr "" - -#: fortran/openmp.c:1083 -#, no-c-format -msgid "!$OMP ATOMIC assignment must be var = var op expr or var = expr op var at %L" -msgstr "" - -#: fortran/openmp.c:1097 -#, no-c-format -msgid "!$OMP ATOMIC var = var op expr not mathematically equivalent to var = var op (expr) at %L" -msgstr "" - -#: fortran/openmp.c:1129 -#, no-c-format -msgid "expr in !$OMP ATOMIC assignment var = var op expr must be scalar and cannot reference var at %L" -msgstr "" - -#: fortran/openmp.c:1153 -#, no-c-format -msgid "!$OMP ATOMIC assignment intrinsic IAND, IOR or IEOR must have two arguments at %L" -msgstr "" - -#: fortran/openmp.c:1160 -#, no-c-format -msgid "!$OMP ATOMIC assignment intrinsic must be MIN, MAX, IAND, IOR or IEOR at %L" -msgstr "" - -#: fortran/openmp.c:1176 -#, no-c-format -msgid "!$OMP ATOMIC intrinsic arguments except one must not reference '%s' at %L" -msgstr "" - -#: fortran/openmp.c:1179 -#, no-c-format -msgid "!$OMP ATOMIC intrinsic arguments must be scalar at %L" -msgstr "" - -#: fortran/openmp.c:1185 -#, no-c-format -msgid "First or last !$OMP ATOMIC intrinsic argument must be '%s' at %L" -msgstr "" - -#: fortran/openmp.c:1203 -#, no-c-format -msgid "!$OMP ATOMIC assignment must have an operator or intrinsic on right hand side at %L" -msgstr "" - -#: fortran/openmp.c:1305 -#, no-c-format -msgid "!$OMP DO cannot be a DO WHILE or DO without loop control at %L" -msgstr "" - -#: fortran/openmp.c:1311 -#, no-c-format -msgid "!$OMP DO iteration variable must be of type integer at %L" -msgstr "" - -#: fortran/openmp.c:1315 -#, no-c-format -msgid "!$OMP DO iteration variable must not be THREADPRIVATE at %L" -msgstr "" - -#: fortran/openmp.c:1323 -#, no-c-format -msgid "!$OMP DO iteration variable present on clause other than PRIVATE or LASTPRIVATE at %L" -msgstr "" - -#: fortran/options.c:219 -#, no-c-format -msgid "Option -fwhole-program is not supported for Fortran" -msgstr "" - -#: fortran/options.c:273 -#, no-c-format -msgid "Reading file '%s' as free form" -msgstr "" - -#: fortran/options.c:283 -#, no-c-format -msgid "'-fd-lines-as-comments' has no effect in free form" -msgstr "" - -#: fortran/options.c:286 -#, no-c-format -msgid "'-fd-lines-as-code' has no effect in free form" -msgstr "" - -#: fortran/options.c:312 -#, no-c-format -msgid "Flag -fno-automatic overwrites -fmax-stack-var-size=%d" -msgstr "" - -#: fortran/options.c:315 -#, no-c-format -msgid "Flag -fno-automatic overwrites -frecursive" -msgstr "" - -#: fortran/options.c:317 -#, no-c-format -msgid "Flag -fno-automatic overwrites -frecursive implied by -fopenmp" -msgstr "" - -#: fortran/options.c:321 -#, no-c-format -msgid "Flag -frecursive overwrites -fmax-stack-var-size=%d" -msgstr "" - -#: fortran/options.c:325 -#, no-c-format -msgid "Flag -fmax-stack-var-size=%d overwrites -frecursive implied by -fopenmp" -msgstr "" - -#: fortran/options.c:392 -#, c-format -msgid "gfortran: Only one -M option allowed\n" -msgstr "" - -#: fortran/options.c:398 -#, c-format -msgid "gfortran: Directory required after -M\n" -msgstr "" - -#: fortran/options.c:443 -#, no-c-format -msgid "Argument to -ffpe-trap is not valid: %s" -msgstr "" - -#: fortran/options.c:573 -#, no-c-format -msgid "Fixed line length must be at least seven." -msgstr "" - -#: fortran/options.c:591 -#, no-c-format -msgid "Free line length must be at least three." -msgstr "" - -#: fortran/options.c:605 -#, fuzzy, no-c-format -msgid "-static-libgfortran is not supported in this configuration" -msgstr "%s no t suport en aquesta configuraci" - -#: fortran/options.c:649 -#, no-c-format -msgid "Maximum supported identifier length is %d" -msgstr "" - -#: fortran/options.c:681 -#, fuzzy, no-c-format -msgid "Unrecognized option to -finit-logical: %s" -msgstr "opci \"-%s\" no reconeguda" - -#: fortran/options.c:695 -#, fuzzy, no-c-format -msgid "Unrecognized option to -finit-real: %s" -msgstr "opci \"-%s\" no reconeguda" - -#: fortran/options.c:711 -#, no-c-format -msgid "The value of n in -finit-character=n must be between 0 and 127" -msgstr "" - -#: fortran/options.c:794 -#, no-c-format -msgid "Maximum subrecord length cannot exceed %d" -msgstr "" - -#: fortran/parse.c:304 -#, fuzzy, no-c-format -msgid "Unclassifiable statement at %C" -msgstr "Falta l'especificador %A en la declaraci en %0" - -#: fortran/parse.c:328 -#, no-c-format -msgid "OpenMP directives at %C may not appear in PURE or ELEMENTAL procedures" -msgstr "" - -#: fortran/parse.c:406 -#, no-c-format -msgid "Unclassifiable OpenMP directive at %C" -msgstr "" - -#: fortran/parse.c:445 fortran/parse.c:586 -#, fuzzy, no-c-format -msgid "Zero is not a valid statement label at %C" -msgstr "\"%E\" no s un argument de patr vlid" - -#: fortran/parse.c:452 fortran/parse.c:578 -#, fuzzy, no-c-format -msgid "Non-numeric character in statement label at %C" -msgstr "Carcter no numric en %0 en el camp d'etiqueta [info -f g77 M LEX]" - -#: fortran/parse.c:464 fortran/parse.c:500 fortran/parse.c:626 -#, no-c-format -msgid "Semicolon at %C needs to be preceded by statement" -msgstr "" - -#: fortran/parse.c:472 fortran/parse.c:638 -#, no-c-format -msgid "Ignoring statement label in empty statement at %C" -msgstr "" - -#: fortran/parse.c:565 fortran/parse.c:605 -#, no-c-format -msgid "Bad continuation line at %C" -msgstr "" - -#: fortran/parse.c:664 -#, no-c-format -msgid "Line truncated at %C" -msgstr "" - -#: fortran/parse.c:841 -#, no-c-format -msgid "FORMAT statement at %L does not have a statement label" -msgstr "" - -#: fortran/parse.c:913 -msgid "arithmetic IF" -msgstr "" - -#: fortran/parse.c:919 -#, fuzzy -msgid "attribute declaration" -msgstr "declaraci buida" - -#: fortran/parse.c:949 -#, fuzzy -msgid "data declaration" -msgstr "declaraci buida" - -#: fortran/parse.c:958 -#, fuzzy -msgid "derived type declaration" -msgstr "declaraci buida" - -#: fortran/parse.c:1037 -msgid "block IF" -msgstr "" - -#: fortran/parse.c:1046 -msgid "implied END DO" -msgstr "" - -#: fortran/parse.c:1119 -msgid "assignment" -msgstr "assignaci" - -#: fortran/parse.c:1122 -#, fuzzy -msgid "pointer assignment" -msgstr "assignaci" - -#: fortran/parse.c:1131 -msgid "simple IF" -msgstr "" - -#: fortran/parse.c:1347 -#, fuzzy, no-c-format -msgid "Unexpected %s statement at %C" -msgstr "Falta l'especificador %A en la declaraci en %0" - -#: fortran/parse.c:1486 -#, fuzzy, no-c-format -msgid "%s statement at %C cannot follow %s statement at %L" -msgstr "La declaraci en %0 no s vlida en el context establert per la declaraci en %1" - -#: fortran/parse.c:1503 -#, fuzzy, no-c-format -msgid "Unexpected end of file in '%s'" -msgstr "EOF inesperat mentre es llegia el fitxer de codi font %s.\n" - -#: fortran/parse.c:1558 -#, no-c-format -msgid "Fortran 2003: Derived type definition at %C without components" -msgstr "" - -#: fortran/parse.c:1569 -#, no-c-format -msgid "PRIVATE statement in TYPE at %C must be inside a MODULE" -msgstr "" - -#: fortran/parse.c:1577 -#, no-c-format -msgid "PRIVATE statement at %C must precede structure components" -msgstr "" - -#: fortran/parse.c:1585 -#, fuzzy, no-c-format -msgid "Duplicate PRIVATE statement at %C" -msgstr "Coma faltant en la declaraci FORMAT en %0" - -#: fortran/parse.c:1597 -#, no-c-format -msgid "SEQUENCE statement at %C must precede structure components" -msgstr "" - -#: fortran/parse.c:1604 -#, no-c-format -msgid "SEQUENCE attribute at %C already specified in TYPE statement" -msgstr "" - -#: fortran/parse.c:1609 -#, no-c-format -msgid "Duplicate SEQUENCE statement at %C" -msgstr "" - -#: fortran/parse.c:1700 -#, no-c-format -msgid "ENUM declaration at %C has no ENUMERATORS" -msgstr "" - -#: fortran/parse.c:1778 -#, no-c-format -msgid "Unexpected %s statement in INTERFACE block at %C" -msgstr "" - -#: fortran/parse.c:1804 -#, no-c-format -msgid "SUBROUTINE at %C does not belong in a generic function interface" -msgstr "" - -#: fortran/parse.c:1808 -#, no-c-format -msgid "FUNCTION at %C does not belong in a generic subroutine interface" -msgstr "" - -#: fortran/parse.c:1818 -#, no-c-format -msgid "Name '%s' of ABSTRACT INTERFACE at %C cannot be the same as an intrinsic type" -msgstr "" - -#: fortran/parse.c:1849 -#, no-c-format -msgid "Unexpected %s statement at %C in INTERFACE body" -msgstr "" - -#: fortran/parse.c:1863 -#, no-c-format -msgid "INTERFACE procedure '%s' at %L has the same name as the enclosing procedure" -msgstr "" - -#: fortran/parse.c:1958 -#, no-c-format -msgid "%s statement must appear in a MODULE" -msgstr "" - -#: fortran/parse.c:1965 -#, no-c-format -msgid "%s statement at %C follows another accessibility specification" -msgstr "" - -#: fortran/parse.c:2015 -#, fuzzy, no-c-format -msgid "Bad kind expression for function '%s' at %L" -msgstr "classe d'emmagatzematge no vlida per a la funci \"%s\"" - -#: fortran/parse.c:2018 -#, no-c-format -msgid "The type for function '%s' at %L is not accessible" -msgstr "" - -#: fortran/parse.c:2070 -#, no-c-format -msgid "ELSEWHERE statement at %C follows previous unmasked ELSEWHERE" -msgstr "" - -#: fortran/parse.c:2091 -#, no-c-format -msgid "Unexpected %s statement in WHERE block at %C" -msgstr "" - -#: fortran/parse.c:2150 -#, no-c-format -msgid "Unexpected %s statement in FORALL block at %C" -msgstr "" - -#: fortran/parse.c:2201 -#, fuzzy, no-c-format -msgid "ELSE IF statement at %C cannot follow ELSE statement at %L" -msgstr "La declaraci PUBLIC o PRIVATE en %1 no es pot especificar juntament amb la declaraci PUBLIC o PRIVATE en %0" - -#: fortran/parse.c:2219 -#, no-c-format -msgid "Duplicate ELSE statements at %L and %C" -msgstr "" - -#: fortran/parse.c:2280 -#, no-c-format -msgid "Expected a CASE or END SELECT statement following SELECT CASE at %C" -msgstr "" - -#: fortran/parse.c:2338 -#, no-c-format -msgid "Variable '%s' at %C cannot be redefined inside loop beginning at %L" -msgstr "" - -#: fortran/parse.c:2372 -#, no-c-format -msgid "End of nonblock DO statement at %C is within another block" -msgstr "" - -#: fortran/parse.c:2381 -#, no-c-format -msgid "End of nonblock DO statement at %C is interwoven with another DO loop" -msgstr "" - -#: fortran/parse.c:2430 -#, no-c-format -msgid "Statement label in ENDDO at %C doesn't match DO label" -msgstr "" - -#: fortran/parse.c:2446 -#, no-c-format -msgid "named block DO at %L requires matching ENDDO name" -msgstr "" - -#: fortran/parse.c:2702 -#, no-c-format -msgid "Name after !$omp critical and !$omp end critical does not match at %C" -msgstr "" - -#: fortran/parse.c:2758 -#, no-c-format -msgid "%s statement at %C cannot terminate a non-block DO loop" -msgstr "" - -#: fortran/parse.c:2943 -#, no-c-format -msgid "Contained procedure '%s' at %C is already ambiguous" -msgstr "" - -#: fortran/parse.c:2993 -#, no-c-format -msgid "Unexpected %s statement in CONTAINS section at %C" -msgstr "" - -#. This is valid in Fortran 2008. -#: fortran/parse.c:3018 -#, no-c-format -msgid "Extension: CONTAINS statement without FUNCTION or SUBROUTINE statement at %C" -msgstr "" - -#: fortran/parse.c:3089 -#, fuzzy, no-c-format -msgid "CONTAINS statement at %C is already in a contained program unit" -msgstr "La declaraci RETURN en %0 no s vlida dintre d'una unitat de programa principal" - -#: fortran/parse.c:3138 -#, no-c-format -msgid "Global name '%s' at %L is already being used as a %s at %L" -msgstr "" - -#: fortran/parse.c:3159 -#, no-c-format -msgid "Blank BLOCK DATA at %C conflicts with prior BLOCK DATA at %L" -msgstr "" - -#: fortran/parse.c:3185 -#, no-c-format -msgid "Unexpected %s statement in BLOCK DATA at %C" -msgstr "" - -#: fortran/parse.c:3228 -#, no-c-format -msgid "Unexpected %s statement in MODULE at %C" -msgstr "" - -#. If we see a duplicate main program, shut down. If the second -#. instance is an implied main program, ie data decls or executable -#. statements, we're in for lots of errors. -#: fortran/parse.c:3416 -#, no-c-format -msgid "Two main PROGRAMs at %L and %C" -msgstr "" - -#: fortran/primary.c:87 -#, fuzzy, no-c-format -msgid "Missing kind-parameter at %C" -msgstr "falta parntesi dret en la llista de parmetres de macro" - -#: fortran/primary.c:210 -#, fuzzy, no-c-format -msgid "Integer kind %d at %C not available" -msgstr "la funci cso no s disponible" - -#: fortran/primary.c:218 -#, no-c-format -msgid "Integer too big for its kind at %C. This check can be disabled with the option -fno-range-check" -msgstr "" - -#: fortran/primary.c:247 -#, no-c-format -msgid "Extension: Hollerith constant at %C" -msgstr "" - -#: fortran/primary.c:259 -#, no-c-format -msgid "Invalid Hollerith constant: %L must contain at least one character" -msgstr "" - -#: fortran/primary.c:265 -#, no-c-format -msgid "Invalid Hollerith constant: Integer kind at %L should be default" -msgstr "" - -#: fortran/primary.c:353 -#, no-c-format -msgid "Extension: Hexadecimal constant at %C uses non-standard syntax." -msgstr "" - -#: fortran/primary.c:363 -#, no-c-format -msgid "Empty set of digits in BOZ constant at %C" -msgstr "" - -#: fortran/primary.c:369 -#, fuzzy, no-c-format -msgid "Illegal character in BOZ constant at %C" -msgstr "Constant de carcter de longitud zero en %0" - -#: fortran/primary.c:391 -#, no-c-format -msgid "Extension: BOZ constant at %C uses non-standard postfix syntax." -msgstr "" - -#: fortran/primary.c:417 -#, no-c-format -msgid "Integer too big for integer kind %i at %C" -msgstr "" - -#: fortran/primary.c:517 -#, fuzzy, no-c-format -msgid "Missing exponent in real number at %C" -msgstr "Falta un valor en %1 per a l'exponent de nombre real en %0" - -#: fortran/primary.c:573 -#, no-c-format -msgid "Real number at %C has a 'd' exponent and an explicit kind" -msgstr "" - -#: fortran/primary.c:586 -#, no-c-format -msgid "Invalid real kind %d at %C" -msgstr "" - -#: fortran/primary.c:600 -#, no-c-format -msgid "Real constant overflows its kind at %C" -msgstr "" - -#: fortran/primary.c:605 -#, no-c-format -msgid "Real constant underflows its kind at %C" -msgstr "" - -#: fortran/primary.c:697 -#, fuzzy, no-c-format -msgid "Syntax error in SUBSTRING specification at %C" -msgstr "error de decodificaci en l'especificaci del mtode" - -#: fortran/primary.c:902 -#, no-c-format -msgid "Invalid kind %d for CHARACTER constant at %C" -msgstr "" - -#: fortran/primary.c:923 -#, fuzzy, no-c-format -msgid "Unterminated character constant beginning at %C" -msgstr "Constant de carcter de longitud zero en %0" - -#: fortran/primary.c:1035 -#, no-c-format -msgid "Bad kind for logical constant at %C" -msgstr "" - -#: fortran/primary.c:1074 -#, no-c-format -msgid "Expected PARAMETER symbol in complex constant at %C" -msgstr "" - -#: fortran/primary.c:1080 -#, no-c-format -msgid "Numeric PARAMETER required in complex constant at %C" -msgstr "" - -#: fortran/primary.c:1086 -#, no-c-format -msgid "Scalar PARAMETER required in complex constant at %C" -msgstr "" - -#: fortran/primary.c:1090 -#, no-c-format -msgid "Fortran 2003: PARAMETER symbol in complex constant at %C" -msgstr "" - -#: fortran/primary.c:1120 -#, no-c-format -msgid "Error converting PARAMETER constant in complex constant at %C" -msgstr "" - -#: fortran/primary.c:1249 -#, no-c-format -msgid "Syntax error in COMPLEX constant at %C" -msgstr "" - -#: fortran/primary.c:1430 -#, no-c-format -msgid "Keyword '%s' at %C has already appeared in the current argument list" -msgstr "" - -#: fortran/primary.c:1494 -#, fuzzy, no-c-format -msgid "Extension: argument list function at %C" -msgstr "massa arguments per a la funci \"%s\"" - -#: fortran/primary.c:1561 -#, no-c-format -msgid "Expected alternate return label at %C" -msgstr "" - -#: fortran/primary.c:1579 -#, no-c-format -msgid "Missing keyword name in actual argument list at %C" -msgstr "" - -#: fortran/primary.c:1624 -#, fuzzy, no-c-format -msgid "Syntax error in argument list at %C" -msgstr "errore sintctic en la llista de parmetre de macro" - -#: fortran/primary.c:1708 -#, no-c-format -msgid "Expected structure component name at %C" -msgstr "" - -#: fortran/primary.c:1961 -#, no-c-format -msgid "Too many components in structure constructor at %C" -msgstr "" - -#: fortran/primary.c:1974 -#, no-c-format -msgid "Structure constructor for '%s' at %C has PRIVATE components" -msgstr "" - -#: fortran/primary.c:1984 -#, no-c-format -msgid "Too few components in structure constructor at %C" -msgstr "" - -#: fortran/primary.c:2002 -#, no-c-format -msgid "Syntax error in structure constructor at %C" -msgstr "" - -#: fortran/primary.c:2086 -#, no-c-format -msgid "'%s' at %C is the name of a recursive function and so refers to the result variable. Use an explicit RESULT variable for direct recursion (12.5.2.1)" -msgstr "" - -#: fortran/primary.c:2188 -#, no-c-format -msgid "Unexpected use of subroutine name '%s' at %C" -msgstr "" - -#: fortran/primary.c:2219 -#, no-c-format -msgid "Statement function '%s' requires argument list at %C" -msgstr "" - -#: fortran/primary.c:2222 -#, fuzzy, no-c-format -msgid "Function '%s' requires an argument list at %C" -msgstr "\"union %s\" declarat dintre d'una llista de parmetres" - -#: fortran/primary.c:2267 -#, fuzzy, no-c-format -msgid "Missing argument to '%s' at %C" -msgstr "Falten arguments per a l'opci \"%s\"" - -#: fortran/primary.c:2408 -#, fuzzy, no-c-format -msgid "Missing argument list in function '%s' at %C" -msgstr "Falten arguments per a l'opci \"%s\"" - -#: fortran/primary.c:2436 -#, fuzzy, no-c-format -msgid "Symbol at %C is not appropriate for an expression" -msgstr "desbordament de coma flotant en l'expressi" - -#: fortran/primary.c:2504 -#, no-c-format -msgid "Assigning to PROTECTED variable at %C" -msgstr "" - -#: fortran/primary.c:2520 -#, no-c-format -msgid "Named constant at %C in an EQUIVALENCE" -msgstr "" - -#: fortran/primary.c:2543 -#, no-c-format -msgid "Expected VARIABLE at %C" -msgstr "" - -#: fortran/resolve.c:120 -#, fuzzy, no-c-format -msgid "Alternate return specifier in elemental subroutine '%s' at %L is not allowed" -msgstr "L'especificador de retorn alternatiu en %0 no s vlid dintre d'una funci" - -#: fortran/resolve.c:124 -#, fuzzy, no-c-format -msgid "Alternate return specifier in function '%s' at %L is not allowed" -msgstr "L'especificador de retorn alternatiu en %0 no s vlid dintre d'una funci" - -#: fortran/resolve.c:137 -#, no-c-format -msgid "Dummy procedure '%s' of PURE procedure at %L must also be PURE" -msgstr "" - -#: fortran/resolve.c:144 -#, no-c-format -msgid "Dummy procedure at %L not allowed in ELEMENTAL procedure" -msgstr "" - -#: fortran/resolve.c:157 fortran/resolve.c:1080 -#, no-c-format -msgid "Unable to find a specific INTRINSIC procedure for the reference '%s' at %L" -msgstr "" - -#: fortran/resolve.c:201 -#, no-c-format -msgid "Argument '%s' of pure function '%s' at %L must be INTENT(IN)" -msgstr "" - -#: fortran/resolve.c:206 -#, no-c-format -msgid "Argument '%s' of pure subroutine '%s' at %L must have its INTENT specified" -msgstr "" - -#: fortran/resolve.c:215 -#, no-c-format -msgid "Argument '%s' of elemental procedure at %L must be scalar" -msgstr "" - -#: fortran/resolve.c:222 -#, no-c-format -msgid "Argument '%s' of elemental procedure at %L cannot have the POINTER attribute" -msgstr "" - -#: fortran/resolve.c:234 -#, no-c-format -msgid "Argument '%s' of statement function at %L must be scalar" -msgstr "" - -#: fortran/resolve.c:244 -#, no-c-format -msgid "Character-valued argument '%s' of statement function at %L must have constant length" -msgstr "" - -#: fortran/resolve.c:299 -#, no-c-format -msgid "Contained function '%s' at %L has no IMPLICIT type" -msgstr "" - -#: fortran/resolve.c:302 -#, no-c-format -msgid "Result '%s' of contained function '%s' at %L has no IMPLICIT type" -msgstr "" - -#: fortran/resolve.c:319 -#, no-c-format -msgid "Character-valued internal function '%s' at %L must not be assumed length" -msgstr "" - -#: fortran/resolve.c:490 -#, no-c-format -msgid "Procedure %s at %L has entries with mismatched array specifications" -msgstr "" - -#: fortran/resolve.c:516 -#, no-c-format -msgid "FUNCTION result %s can't be an array in FUNCTION %s at %L" -msgstr "" - -#: fortran/resolve.c:520 -#, no-c-format -msgid "ENTRY result %s can't be an array in FUNCTION %s at %L" -msgstr "" - -#: fortran/resolve.c:527 -#, no-c-format -msgid "FUNCTION result %s can't be a POINTER in FUNCTION %s at %L" -msgstr "" - -#: fortran/resolve.c:531 -#, no-c-format -msgid "ENTRY result %s can't be a POINTER in FUNCTION %s at %L" -msgstr "" - -#: fortran/resolve.c:569 -#, no-c-format -msgid "FUNCTION result %s can't be of type %s in FUNCTION %s at %L" -msgstr "" - -#: fortran/resolve.c:574 -#, no-c-format -msgid "ENTRY result %s can't be of type %s in FUNCTION %s at %L" -msgstr "" - -#: fortran/resolve.c:643 -#, no-c-format -msgid "Derived type variable '%s' in COMMON at %L has neither the SEQUENCE nor the BIND(C) attribute" -msgstr "" - -#: fortran/resolve.c:647 -#, no-c-format -msgid "Derived type variable '%s' in COMMON at %L has an ultimate component that is allocatable" -msgstr "" - -#: fortran/resolve.c:651 -#, no-c-format -msgid "Derived type variable '%s' in COMMON at %L may not have default initializer" -msgstr "" - -#: fortran/resolve.c:661 -#, no-c-format -msgid "COMMON block '%s' at %L is used as PARAMETER at %L" -msgstr "" - -#: fortran/resolve.c:665 -#, no-c-format -msgid "COMMON block '%s' at %L is also an intrinsic procedure" -msgstr "" - -#: fortran/resolve.c:669 -#, no-c-format -msgid "Fortran 2003: COMMON block '%s' at %L that is also a function result" -msgstr "" - -#: fortran/resolve.c:674 -#, no-c-format -msgid "Fortran 2003: COMMON block '%s' at %L that is also a global procedure" -msgstr "" - -#: fortran/resolve.c:736 -#, no-c-format -msgid "Components of structure constructor '%s' at %L are PRIVATE" -msgstr "" - -#: fortran/resolve.c:756 -#, no-c-format -msgid "The rank of the element in the derived type constructor at %L does not match that of the component (%d/%d)" -msgstr "" - -#: fortran/resolve.c:769 -#, no-c-format -msgid "The element in the derived type constructor at %L, for pointer component '%s', is %s but should be %s" -msgstr "" - -#: fortran/resolve.c:786 -#, no-c-format -msgid "The element in the derived type constructor at %L, for pointer component '%s' should be a POINTER or a TARGET" -msgstr "" - -#: fortran/resolve.c:913 -#, no-c-format -msgid "The upper bound in the last dimension must appear in the reference to the assumed size array '%s' at %L" -msgstr "" - -#: fortran/resolve.c:976 fortran/resolve.c:5434 fortran/resolve.c:6098 -#, fuzzy, no-c-format -msgid "Label %d referenced at %L is never defined" -msgstr "L'etiqueta %A ja es va definir en %1 quan es va redefinir en %0" - -#: fortran/resolve.c:986 -#, fuzzy, no-c-format -msgid "'%s' at %L is ambiguous" -msgstr "l's de \"%D\" s ambigu" - -#: fortran/resolve.c:1018 -#, no-c-format -msgid "Statement function '%s' at %L is not allowed as an actual argument" -msgstr "" - -#: fortran/resolve.c:1026 -#, no-c-format -msgid "Intrinsic '%s' at %L is not allowed as an actual argument" -msgstr "" - -#: fortran/resolve.c:1033 -#, no-c-format -msgid "Internal procedure '%s' is not allowed as an actual argument at %L" -msgstr "" - -#: fortran/resolve.c:1039 -#, no-c-format -msgid "ELEMENTAL non-INTRINSIC procedure '%s' is not allowed as an actual argument at %L" -msgstr "" - -#: fortran/resolve.c:1059 -#, no-c-format -msgid "GENERIC procedure '%s' is not allowed as an actual argument at %L" -msgstr "" - -#: fortran/resolve.c:1098 -#, fuzzy, no-c-format -msgid "Symbol '%s' at %L is ambiguous" -msgstr "l's de \"%D\" s ambigu" - -#: fortran/resolve.c:1143 -#, no-c-format -msgid "By-value argument at %L is not of numeric type" -msgstr "" - -#: fortran/resolve.c:1150 -#, no-c-format -msgid "By-value argument at %L cannot be an array or an array section" -msgstr "" - -#: fortran/resolve.c:1164 -#, fuzzy, no-c-format -msgid "By-value argument at %L is not allowed in this context" -msgstr "La declaraci en %0 no s vlida en aquest context" - -#: fortran/resolve.c:1176 -#, no-c-format -msgid "Passing internal procedure at %L by location not allowed" -msgstr "" - -#: fortran/resolve.c:1293 -#, no-c-format -msgid "'%s' at %L is an array and OPTIONAL; IF IT IS MISSING, it cannot be the actual argument of an ELEMENTAL procedure unless there is a non-optional argument with the same rank (12.4.1.5)" -msgstr "" - -#: fortran/resolve.c:1315 -msgid "elemental procedure" -msgstr "" - -#: fortran/resolve.c:1332 -#, no-c-format -msgid "Actual argument at %L for INTENT(%s) dummy '%s' of ELEMENTAL subroutine '%s' is a scalar, but another actual argument is an array" -msgstr "" - -#: fortran/resolve.c:1466 -#, no-c-format -msgid "There is no specific function for the generic '%s' at %L" -msgstr "" - -#: fortran/resolve.c:1475 -#, no-c-format -msgid "Generic function '%s' at %L is not consistent with a specific intrinsic interface" -msgstr "" - -#: fortran/resolve.c:1513 -#, no-c-format -msgid "Function '%s' at %L is INTRINSIC but is not compatible with an intrinsic" -msgstr "" - -#: fortran/resolve.c:1559 -#, no-c-format -msgid "Unable to resolve the specific function '%s' at %L" -msgstr "" - -#: fortran/resolve.c:1615 fortran/resolve.c:8740 -#, no-c-format -msgid "Function '%s' at %L has no IMPLICIT type" -msgstr "" - -#: fortran/resolve.c:1799 -#, fuzzy, no-c-format -msgid "Argument to '%s' at %L is not a variable" -msgstr "l'argument de l'atribut \"%s\" no es una cadena constant" - -#: fortran/resolve.c:1871 -#, no-c-format -msgid "More actual than formal arguments in '%s' call at %L" -msgstr "" - -#: fortran/resolve.c:1883 -#, no-c-format -msgid "Parameter '%s' to '%s' at %L must be either a TARGET or an associated pointer" -msgstr "" - -#: fortran/resolve.c:1909 -#, no-c-format -msgid "Allocatable variable '%s' used as a parameter to '%s' at %L must not be an array of zero size" -msgstr "" - -#: fortran/resolve.c:1926 -#, no-c-format -msgid "Assumed-shape array '%s' at %L cannot be an argument to the procedure '%s' because it is not C interoperable" -msgstr "" - -#: fortran/resolve.c:1936 -#, no-c-format -msgid "Deferred-shape array '%s' at %L cannot be an argument to the procedure '%s' because it is not C interoperable" -msgstr "" - -#: fortran/resolve.c:1959 fortran/resolve.c:1998 -#, no-c-format -msgid "CHARACTER argument '%s' to '%s' at %L must have a length of 1" -msgstr "" - -#. Case 1c, section 15.1.2.5, J3/04-007: an associated -#. scalar pointer. -#: fortran/resolve.c:1974 -#, no-c-format -msgid "Argument '%s' to '%s' at %L must be an associated scalar POINTER" -msgstr "" - -#: fortran/resolve.c:1990 -#, no-c-format -msgid "Parameter '%s' to '%s' at %L must be a scalar" -msgstr "" - -#. TODO: Update this error message to allow for procedure -#. pointers once they are implemented. -#: fortran/resolve.c:2012 -#, no-c-format -msgid "Parameter '%s' to '%s' at %L must be a procedure" -msgstr "" - -#: fortran/resolve.c:2020 -#, no-c-format -msgid "Parameter '%s' to '%s' at %L must be BIND(C)" -msgstr "" - -#: fortran/resolve.c:2062 -#, fuzzy, no-c-format -msgid "'%s' at %L is not a function" -msgstr "\"%D\" no s una funci," - -#: fortran/resolve.c:2068 -#, no-c-format -msgid "ABSTRACT INTERFACE '%s' must not be referenced at %L" -msgstr "" - -#. Internal procedures are taken care of in resolve_contained_fntype. -#: fortran/resolve.c:2111 -#, no-c-format -msgid "Function '%s' is declared CHARACTER(*) and cannot be used at %L since it is not a dummy argument" -msgstr "" - -#: fortran/resolve.c:2164 -#, no-c-format -msgid "User defined non-ELEMENTAL function '%s' at %L not allowed in WORKSHARE construct" -msgstr "" - -#: fortran/resolve.c:2213 -#, no-c-format -msgid "reference to non-PURE function '%s' at %L inside a FORALL %s" -msgstr "" - -#: fortran/resolve.c:2220 -#, no-c-format -msgid "Function reference to '%s' at %L is to a non-PURE procedure within a PURE procedure" -msgstr "" - -#: fortran/resolve.c:2235 -#, no-c-format -msgid "Function '%s' at %L cannot call itself, as it is not RECURSIVE" -msgstr "" - -#: fortran/resolve.c:2243 -#, no-c-format -msgid "Call to ENTRY '%s' at %L is recursive, but function '%s' is not declared as RECURSIVE" -msgstr "" - -#: fortran/resolve.c:2285 -#, no-c-format -msgid "Subroutine call to '%s' in FORALL block at %L is not PURE" -msgstr "" - -#: fortran/resolve.c:2288 -#, no-c-format -msgid "Subroutine call to '%s' at %L is not PURE" -msgstr "" - -#: fortran/resolve.c:2351 -#, no-c-format -msgid "There is no specific subroutine for the generic '%s' at %L" -msgstr "" - -#: fortran/resolve.c:2360 -#, no-c-format -msgid "Generic subroutine '%s' at %L is not consistent with an intrinsic subroutine interface" -msgstr "" - -#: fortran/resolve.c:2468 -#, no-c-format -msgid "Missing SHAPE parameter for call to %s at %L" -msgstr "" - -#: fortran/resolve.c:2476 -#, no-c-format -msgid "SHAPE parameter for call to %s at %L must be a rank 1 INTEGER array" -msgstr "" - -#: fortran/resolve.c:2543 -#, no-c-format -msgid "Subroutine '%s' at %L is INTRINSIC but is not compatible with an intrinsic" -msgstr "" - -#: fortran/resolve.c:2587 -#, no-c-format -msgid "Unable to resolve the specific subroutine '%s' at %L" -msgstr "" - -#: fortran/resolve.c:2644 -#, no-c-format -msgid "'%s' at %L has a type, which is not consistent with the CALL at %L" -msgstr "" - -#: fortran/resolve.c:2663 -#, no-c-format -msgid "SUBROUTINE '%s' at %L cannot call itself, as it is not RECURSIVE" -msgstr "" - -#: fortran/resolve.c:2671 -#, no-c-format -msgid "Call to ENTRY '%s' at %L is recursive, but subroutine '%s' is not declared as RECURSIVE" -msgstr "" - -#: fortran/resolve.c:2741 -#, no-c-format -msgid "Shapes for operands at %L and %L are not conformable" -msgstr "" - -#: fortran/resolve.c:2792 -#, c-format -msgid "Invalid context for NULL() pointer at %%L" -msgstr "" - -#: fortran/resolve.c:2808 -#, c-format -msgid "Operand of unary numeric operator '%s' at %%L is %s" -msgstr "" - -#: fortran/resolve.c:2824 -#, c-format -msgid "Operands of binary numeric operator '%s' at %%L are %s/%s" -msgstr "" - -#: fortran/resolve.c:2838 -#, c-format -msgid "Operands of string concatenation operator at %%L are %s/%s" -msgstr "" - -#: fortran/resolve.c:2857 -#, c-format -msgid "Operands of logical operator '%s' at %%L are %s/%s" -msgstr "" - -#: fortran/resolve.c:2871 -#, c-format -msgid "Operand of .not. operator at %%L is %s" -msgstr "" - -#: fortran/resolve.c:2885 -#, fuzzy -msgid "COMPLEX quantities cannot be compared at %L" -msgstr "els qualificadors \"%V\" no es poden aplicar a \"%T\"" - -#: fortran/resolve.c:2913 -#, c-format -msgid "Logicals at %%L must be compared with %s instead of %s" -msgstr "" - -#: fortran/resolve.c:2919 -#, c-format -msgid "Operands of comparison operator '%s' at %%L are %s/%s" -msgstr "" - -#: fortran/resolve.c:2927 -#, c-format -msgid "Unknown operator '%s' at %%L" -msgstr "" - -#: fortran/resolve.c:2929 -#, c-format -msgid "Operand of user operator '%s' at %%L is %s" -msgstr "" - -#: fortran/resolve.c:2932 -#, c-format -msgid "Operands of user operator '%s' at %%L are %s/%s" -msgstr "" - -#: fortran/resolve.c:3018 -#, c-format -msgid "Inconsistent ranks for operator at %%L and %%L" -msgstr "" - -#: fortran/resolve.c:3212 -#, no-c-format -msgid "Array reference at %L is out of bounds (%ld < %ld) in dimension %d" -msgstr "" - -#: fortran/resolve.c:3220 -#, no-c-format -msgid "Array reference at %L is out of bounds (%ld > %ld) in dimension %d" -msgstr "" - -#: fortran/resolve.c:3239 -#, no-c-format -msgid "Illegal stride of zero at %L" -msgstr "" - -#: fortran/resolve.c:3256 -#, no-c-format -msgid "Lower array reference at %L is out of bounds (%ld < %ld) in dimension %d" -msgstr "" - -#: fortran/resolve.c:3264 -#, no-c-format -msgid "Lower array reference at %L is out of bounds (%ld > %ld) in dimension %d" -msgstr "" - -#: fortran/resolve.c:3280 -#, no-c-format -msgid "Upper array reference at %L is out of bounds (%ld < %ld) in dimension %d" -msgstr "" - -#: fortran/resolve.c:3289 -#, no-c-format -msgid "Upper array reference at %L is out of bounds (%ld > %ld) in dimension %d" -msgstr "" - -#: fortran/resolve.c:3328 -#, no-c-format -msgid "Rightmost upper bound of assumed size array section not specified at %L" -msgstr "" - -#: fortran/resolve.c:3338 -#, no-c-format -msgid "Rank mismatch in array reference at %L (%d/%d)" -msgstr "" - -#: fortran/resolve.c:3366 -#, no-c-format -msgid "Array index at %L must be scalar" -msgstr "" - -#: fortran/resolve.c:3372 -#, no-c-format -msgid "Array index at %L must be of INTEGER type" -msgstr "" - -#: fortran/resolve.c:3378 -#, no-c-format -msgid "Extension: REAL array index at %L" -msgstr "" - -#: fortran/resolve.c:3408 -#, no-c-format -msgid "Argument dim at %L must be scalar" -msgstr "" - -#: fortran/resolve.c:3414 -#, no-c-format -msgid "Argument dim at %L must be of INTEGER type" -msgstr "" - -#: fortran/resolve.c:3534 -#, no-c-format -msgid "Array index at %L is an array of rank %d" -msgstr "" - -#: fortran/resolve.c:3571 -#, no-c-format -msgid "Substring start index at %L must be of type INTEGER" -msgstr "" - -#: fortran/resolve.c:3578 -#, no-c-format -msgid "Substring start index at %L must be scalar" -msgstr "" - -#: fortran/resolve.c:3587 -#, no-c-format -msgid "Substring start index at %L is less than one" -msgstr "" - -#: fortran/resolve.c:3600 -#, no-c-format -msgid "Substring end index at %L must be of type INTEGER" -msgstr "" - -#: fortran/resolve.c:3607 -#, fuzzy, no-c-format -msgid "Substring end index at %L must be scalar" -msgstr "El punt d'inici/fi de la subcadena en %0 est fora del rang definit" - -#: fortran/resolve.c:3617 -#, no-c-format -msgid "Substring end index at %L exceeds the string length" -msgstr "" - -#: fortran/resolve.c:3755 -#, no-c-format -msgid "Component to the right of a part reference with nonzero rank must not have the POINTER attribute at %L" -msgstr "" - -#: fortran/resolve.c:3762 -#, no-c-format -msgid "Component to the right of a part reference with nonzero rank must not have the ALLOCATABLE attribute at %L" -msgstr "" - -#: fortran/resolve.c:3781 -#, no-c-format -msgid "Two or more part references with nonzero rank must not be specified at %L" -msgstr "" - -#: fortran/resolve.c:3956 -#, no-c-format -msgid "Variable '%s', used in a specification expression, is referenced at %L before the ENTRY statement in which it is a parameter" -msgstr "" - -#: fortran/resolve.c:3961 -#, no-c-format -msgid "Variable '%s' is used at %L before the ENTRY statement in which it is a parameter" -msgstr "" - -#: fortran/resolve.c:4238 -#, no-c-format -msgid "%s at %L must be a scalar" -msgstr "" - -#: fortran/resolve.c:4248 -#, no-c-format -msgid "Deleted feature: %s at %L must be integer" -msgstr "" - -#: fortran/resolve.c:4252 fortran/resolve.c:4259 -#, no-c-format -msgid "%s at %L must be INTEGER" -msgstr "" - -#: fortran/resolve.c:4279 -#, no-c-format -msgid "Cannot assign to loop variable in PURE procedure at %L" -msgstr "" - -#: fortran/resolve.c:4303 -#, no-c-format -msgid "Step expression in DO loop at %L cannot be zero" -msgstr "" - -#: fortran/resolve.c:4378 -#, no-c-format -msgid "FORALL index-name at %L must be a scalar INTEGER" -msgstr "" - -#: fortran/resolve.c:4383 -#, no-c-format -msgid "FORALL start expression at %L must be a scalar INTEGER" -msgstr "" - -#: fortran/resolve.c:4390 -#, no-c-format -msgid "FORALL end expression at %L must be a scalar INTEGER" -msgstr "" - -#: fortran/resolve.c:4398 -#, no-c-format -msgid "FORALL stride expression at %L must be a scalar %s" -msgstr "" - -#: fortran/resolve.c:4403 -#, no-c-format -msgid "FORALL stride expression at %L cannot be zero" -msgstr "" - -#: fortran/resolve.c:4419 -#, no-c-format -msgid "FORALL index '%s' may not appear in triplet specification at %L" -msgstr "" - -#: fortran/resolve.c:4499 -#, no-c-format -msgid "Expression in DEALLOCATE statement at %L must be ALLOCATABLE or a POINTER" -msgstr "" - -#: fortran/resolve.c:4506 -#, no-c-format -msgid "Cannot deallocate INTENT(IN) variable '%s' at %L" -msgstr "" - -#: fortran/resolve.c:4675 -#, no-c-format -msgid "The STAT variable '%s' in an ALLOCATE statement must not be allocated in the same statement at %L" -msgstr "" - -#: fortran/resolve.c:4711 -#, no-c-format -msgid "Expression in ALLOCATE statement at %L must be ALLOCATABLE or a POINTER" -msgstr "" - -#: fortran/resolve.c:4719 -#, no-c-format -msgid "Cannot allocate INTENT(IN) variable '%s' at %L" -msgstr "" - -#: fortran/resolve.c:4743 -#, fuzzy, no-c-format -msgid "Array specification required in ALLOCATE statement at %L" -msgstr "Falta l'especificador %A en la declaraci en %0" - -#: fortran/resolve.c:4773 -#, fuzzy, no-c-format -msgid "Bad array specification in ALLOCATE statement at %L" -msgstr "No hi ha definici d'etiqueta per a la declaraci FORMAT en %0" - -#: fortran/resolve.c:4791 -#, no-c-format -msgid "'%s' must not appear an the array specification at %L in the same ALLOCATE statement where it is itself allocated" -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:4949 -#, no-c-format -msgid "CASE label at %L overlaps with CASE label at %L" -msgstr "" - -#: fortran/resolve.c:5000 -#, fuzzy, no-c-format -msgid "Expression in CASE statement at %L must be of type %s" -msgstr "la declaraci de l'expressi t tipus de dada incompleta" - -#: fortran/resolve.c:5011 -#, no-c-format -msgid "Expression in CASE statement at %L must be kind %d" -msgstr "" - -#: fortran/resolve.c:5023 -#, no-c-format -msgid "Expression in CASE statement at %L must be scalar" -msgstr "" - -#: fortran/resolve.c:5069 -#, no-c-format -msgid "Selection expression in computed GOTO statement at %L must be a scalar integer expression" -msgstr "" - -#: fortran/resolve.c:5087 -#, no-c-format -msgid "Argument of SELECT statement at %L cannot be %s" -msgstr "" - -#: fortran/resolve.c:5096 -#, no-c-format -msgid "Argument of SELECT statement at %L must be a scalar expression" -msgstr "" - -#: fortran/resolve.c:5161 -#, no-c-format -msgid "The DEFAULT CASE at %L cannot be followed by a second DEFAULT CASE at %L" -msgstr "" - -#: fortran/resolve.c:5187 -#, no-c-format -msgid "Logical range in CASE statement at %L is not allowed" -msgstr "" - -#: fortran/resolve.c:5199 -#, no-c-format -msgid "constant logical value in CASE statement is repeated at %L" -msgstr "" - -#: fortran/resolve.c:5213 -#, no-c-format -msgid "Range specification at %L can never be matched" -msgstr "" - -#: fortran/resolve.c:5316 -#, no-c-format -msgid "Logical SELECT CASE block at %L has more that two cases" -msgstr "" - -#: fortran/resolve.c:5354 -#, no-c-format -msgid "Data transfer element at %L cannot have POINTER components" -msgstr "" - -#: fortran/resolve.c:5361 -#, no-c-format -msgid "Data transfer element at %L cannot have ALLOCATABLE components" -msgstr "" - -#: fortran/resolve.c:5368 -#, no-c-format -msgid "Data transfer element at %L cannot have PRIVATE components" -msgstr "" - -#: fortran/resolve.c:5377 -#, no-c-format -msgid "Data transfer element at %L cannot be a full reference to an assumed-size array" -msgstr "" - -#: fortran/resolve.c:5441 -#, fuzzy, no-c-format -msgid "Statement at %L is not a valid branch target statement for the branch statement at %L" -msgstr "La declaraci en %0 no s vlida en el context establert per la declaraci en %1" - -#: fortran/resolve.c:5450 -#, no-c-format -msgid "Branch at %L causes an infinite loop" -msgstr "" - -#. The label is not in an enclosing block, so illegal. This was -#. allowed in Fortran 66, so we allow it as extension. No -#. further checks are necessary in this case. -#: fortran/resolve.c:5463 -#, fuzzy, no-c-format -msgid "Label at %L is not in the same block as the GOTO statement at %L" -msgstr "La declaraci en %0 no s vlida en el context establert per la declaraci en %1" - -#: fortran/resolve.c:5478 fortran/resolve.c:5492 -#, no-c-format -msgid "Deleted feature: GOTO at %L jumps to END of construct at %L" -msgstr "" - -#: fortran/resolve.c:5569 -#, no-c-format -msgid "WHERE mask at %L has inconsistent shape" -msgstr "" - -#: fortran/resolve.c:5585 -#, no-c-format -msgid "WHERE assignment target at %L has inconsistent shape" -msgstr "" - -#: fortran/resolve.c:5600 fortran/resolve.c:5682 -#, no-c-format -msgid "Unsupported statement inside WHERE at %L" -msgstr "" - -#: fortran/resolve.c:5631 -#, no-c-format -msgid "Assignment to a FORALL index variable at %L" -msgstr "" - -#: fortran/resolve.c:5639 -#, no-c-format -msgid "The FORALL with index '%s' cause more than one assignment to this object at %L" -msgstr "" - -#: fortran/resolve.c:5774 -#, no-c-format -msgid "An outer FORALL construct already has an index with this name %L" -msgstr "" - -#: fortran/resolve.c:5830 -#, no-c-format -msgid "WHERE/ELSEWHERE clause at %L requires a LOGICAL array" -msgstr "" - -#: fortran/resolve.c:5890 -#, no-c-format -msgid "Subroutine '%s' called instead of assignment at %L must be PURE" -msgstr "" - -#: fortran/resolve.c:5927 -#, no-c-format -msgid "CHARACTER expression will be truncated in assignment (%d/%d) at %L" -msgstr "" - -#: fortran/resolve.c:5950 -#, no-c-format -msgid "Cannot assign to variable '%s' in PURE procedure at %L" -msgstr "" - -#: fortran/resolve.c:5962 -#, no-c-format -msgid "The impure variable at %L is assigned to a derived type variable with a POINTER component in a PURE procedure (12.6)" -msgstr "" - -#: fortran/resolve.c:6066 -#, no-c-format -msgid "ASSIGNED GOTO statement at %L requires an INTEGER variable" -msgstr "" - -#: fortran/resolve.c:6069 -#, no-c-format -msgid "Variable '%s' has not been assigned a target label at %L" -msgstr "" - -#: fortran/resolve.c:6080 -#, no-c-format -msgid "Alternate RETURN statement at %L requires a SCALAR-INTEGER return specifier" -msgstr "" - -#: fortran/resolve.c:6106 -#, no-c-format -msgid "ASSIGN statement at %L requires a scalar default INTEGER variable" -msgstr "" - -#: fortran/resolve.c:6121 -#, no-c-format -msgid "Arithmetic IF statement at %L requires a numeric expression" -msgstr "" - -#: fortran/resolve.c:6163 -#, no-c-format -msgid "Exit condition of DO WHILE loop at %L must be a scalar LOGICAL expression" -msgstr "" - -#: fortran/resolve.c:6170 -#, no-c-format -msgid "STAT tag in ALLOCATE statement at %L must be of type INTEGER" -msgstr "" - -#: fortran/resolve.c:6182 -#, no-c-format -msgid "STAT tag in DEALLOCATE statement at %L must be of type INTEGER" -msgstr "" - -#: fortran/resolve.c:6247 -#, no-c-format -msgid "FORALL mask clause at %L requires a LOGICAL expression" -msgstr "" - -#: fortran/resolve.c:6317 fortran/resolve.c:6373 -#, no-c-format -msgid "Binding label '%s' for common block '%s' at %L collides with the global entity '%s' at %L" -msgstr "" - -#. Common block names match but binding labels do not. -#: fortran/resolve.c:6338 -#, no-c-format -msgid "Binding label '%s' for common block '%s' at %L does not match the binding label '%s' for common block '%s' at %L" -msgstr "" - -#: fortran/resolve.c:6385 -#, no-c-format -msgid "Binding label '%s' for common block '%s' at %L collides with global entity '%s' at %L" -msgstr "" - -#. Make sure global procedures don't collide with anything. -#: fortran/resolve.c:6437 -#, no-c-format -msgid "Binding label '%s' at %L collides with the global entity '%s' at %L" -msgstr "" - -#. Make sure procedures in interface bodies don't collide. -#: fortran/resolve.c:6450 -#, no-c-format -msgid "Binding label '%s' in interface body at %L collides with the global entity '%s' at %L" -msgstr "" - -#: fortran/resolve.c:6463 -#, no-c-format -msgid "Binding label '%s' at %L collides with global entity '%s' at %L" -msgstr "" - -#: fortran/resolve.c:6540 -#, no-c-format -msgid "CHARACTER variable has zero length at %L" -msgstr "" - -#: fortran/resolve.c:6828 -#, no-c-format -msgid "Allocatable array '%s' at %L must have a deferred shape" -msgstr "" - -#: fortran/resolve.c:6831 -#, no-c-format -msgid "Scalar object '%s' at %L may not be ALLOCATABLE" -msgstr "" - -#: fortran/resolve.c:6838 -#, no-c-format -msgid "Array pointer '%s' at %L must have a deferred shape" -msgstr "" - -#: fortran/resolve.c:6849 -#, no-c-format -msgid "Array '%s' at %L cannot have a deferred shape" -msgstr "" - -#: fortran/resolve.c:6878 -#, no-c-format -msgid "The type '%s' cannot be host associated at %L because it is blocked by an incompatible object of the same name declared at %L" -msgstr "" - -#: fortran/resolve.c:6901 -#, no-c-format -msgid "Object '%s' at %L must have the SAVE attribute for default initialization of a component" -msgstr "" - -#. The shape of a main program or module array needs to be -#. constant. -#: fortran/resolve.c:6948 -#, no-c-format -msgid "The module or main program array '%s' at %L must have constant shape" -msgstr "" - -#: fortran/resolve.c:6961 -#, no-c-format -msgid "Entity with assumed character length at %L must be a dummy argument or a PARAMETER" -msgstr "" - -#: fortran/resolve.c:6980 -#, no-c-format -msgid "'%s' at %L must have constant character length in this context" -msgstr "" - -#: fortran/resolve.c:7012 -#, fuzzy, no-c-format -msgid "Allocatable '%s' at %L cannot have an initializer" -msgstr "no existeix el camp \"%D\" en el union que s'est inicialitzant" - -#: fortran/resolve.c:7015 -#, fuzzy, no-c-format -msgid "External '%s' at %L cannot have an initializer" -msgstr "no existeix el camp \"%D\" en el union que s'est inicialitzant" - -#: fortran/resolve.c:7019 -#, fuzzy, no-c-format -msgid "Dummy '%s' at %L cannot have an initializer" -msgstr "\"%s\" t \"extern\" i assignador de valor inicial al mateix temps" - -#: fortran/resolve.c:7022 -#, fuzzy, no-c-format -msgid "Intrinsic '%s' at %L cannot have an initializer" -msgstr "no existeix el camp \"%D\" en el union que s'est inicialitzant" - -#: fortran/resolve.c:7025 -#, fuzzy, no-c-format -msgid "Function result '%s' at %L cannot have an initializer" -msgstr "no existeix el camp \"%D\" en el union que s'est inicialitzant" - -#: fortran/resolve.c:7028 -#, no-c-format -msgid "Automatic array '%s' at %L cannot have an initializer" -msgstr "" - -#: fortran/resolve.c:7051 -#, no-c-format -msgid "Although not referenced, '%s' at %L has ambiguous interfaces" -msgstr "" - -#: fortran/resolve.c:7070 -#, no-c-format -msgid "Character-valued statement function '%s' at %L must have constant length" -msgstr "" - -#: fortran/resolve.c:7078 -#, no-c-format -msgid "Automatic character length function '%s' at %L must have an explicit interface" -msgstr "" - -#: fortran/resolve.c:7103 -#, no-c-format -msgid "Fortran 2003: '%s' is of a PRIVATE type and cannot be a dummy argument of '%s', which is PUBLIC at %L" -msgstr "" - -#: fortran/resolve.c:7126 fortran/resolve.c:7151 -#, no-c-format -msgid "Fortran 2003: Procedure '%s' in PUBLIC interface '%s' at %L takes dummy arguments of '%s' which is PRIVATE" -msgstr "" - -#: fortran/resolve.c:7168 -#, fuzzy, no-c-format -msgid "Function '%s' at %L cannot have an initializer" -msgstr "no existeix el camp \"%D\" en el union que s'est inicialitzant" - -#: fortran/resolve.c:7177 -#, fuzzy, no-c-format -msgid "External object '%s' at %L may not have an initializer" -msgstr "no existeix el camp \"%D\" en el union que s'est inicialitzant" - -#: fortran/resolve.c:7185 -#, no-c-format -msgid "ELEMENTAL function '%s' at %L must have a scalar result" -msgstr "" - -#: fortran/resolve.c:7206 -#, no-c-format -msgid "CHARACTER(*) function '%s' at %L cannot be array-valued" -msgstr "" - -#: fortran/resolve.c:7210 -#, no-c-format -msgid "CHARACTER(*) function '%s' at %L cannot be pointer-valued" -msgstr "" - -#: fortran/resolve.c:7214 -#, no-c-format -msgid "CHARACTER(*) function '%s' at %L cannot be pure" -msgstr "" - -#: fortran/resolve.c:7218 -#, no-c-format -msgid "CHARACTER(*) function '%s' at %L cannot be recursive" -msgstr "" - -#: fortran/resolve.c:7227 -#, no-c-format -msgid "CHARACTER(*) function '%s' at %L is obsolescent in fortran 95" -msgstr "" - -#: fortran/resolve.c:7299 -#, no-c-format -msgid "Character length of component '%s' needs to be a constant specification expression at %L" -msgstr "" - -#: fortran/resolve.c:7314 -#, no-c-format -msgid "The component '%s' is a PRIVATE type and cannot be a component of '%s', which is PUBLIC at %L" -msgstr "" - -#: fortran/resolve.c:7324 -#, no-c-format -msgid "Component %s of SEQUENCE type declared at %L does not have the SEQUENCE attribute" -msgstr "" - -#: fortran/resolve.c:7334 -#, no-c-format -msgid "The pointer component '%s' of '%s' at %L is a type that has not been declared" -msgstr "" - -#: fortran/resolve.c:7352 -#, no-c-format -msgid "Component '%s' of '%s' at %L must have constant array bounds" -msgstr "" - -#: fortran/resolve.c:7395 -#, no-c-format -msgid "NAMELIST object '%s' was declared PRIVATE and cannot be member of PUBLIC namelist '%s' at %L" -msgstr "" - -#: fortran/resolve.c:7405 -#, no-c-format -msgid "NAMELIST object '%s' has use-associated PRIVATE components and cannot be member of namelist '%s' at %L" -msgstr "" - -#: fortran/resolve.c:7418 -#, no-c-format -msgid "NAMELIST object '%s' has PRIVATE components and cannot be a member of PUBLIC namelist '%s' at %L" -msgstr "" - -#: fortran/resolve.c:7430 -#, no-c-format -msgid "NAMELIST array object '%s' must not have assumed shape in namelist '%s' at %L" -msgstr "" - -#: fortran/resolve.c:7439 -#, no-c-format -msgid "NAMELIST array object '%s' must have constant shape in namelist '%s' at %L" -msgstr "" - -#: fortran/resolve.c:7451 -#, no-c-format -msgid "NAMELIST object '%s' in namelist '%s' at %L cannot have ALLOCATABLE components" -msgstr "" - -#: fortran/resolve.c:7459 -#, no-c-format -msgid "NAMELIST object '%s' in namelist '%s' at %L cannot have POINTER components" -msgstr "" - -#: fortran/resolve.c:7485 -#, no-c-format -msgid "PROCEDURE attribute conflicts with NAMELIST attribute in '%s' at %L" -msgstr "" - -#: fortran/resolve.c:7504 -#, no-c-format -msgid "Parameter array '%s' at %L cannot be automatic or of deferred shape" -msgstr "" - -#: fortran/resolve.c:7515 -#, no-c-format -msgid "Implicitly typed PARAMETER '%s' at %L doesn't match a later IMPLICIT type" -msgstr "" - -#: fortran/resolve.c:7526 -#, fuzzy, no-c-format -msgid "Incompatible derived type in PARAMETER at %L" -msgstr "tipus incompatibles en %s" - -#: fortran/resolve.c:7597 -#, no-c-format -msgid "Interface '%s' of procedure '%s' at %L must be explicit" -msgstr "" - -#: fortran/resolve.c:7622 -#, no-c-format -msgid "Type specified for intrinsic function '%s' at %L is ignored" -msgstr "" - -#: fortran/resolve.c:7629 -#, no-c-format -msgid "Intrinsic subroutine '%s' at %L shall not have a type specifier" -msgstr "" - -#: fortran/resolve.c:7636 -#, no-c-format -msgid "Intrinsic '%s' at %L does not exist" -msgstr "" - -#: fortran/resolve.c:7676 -#, no-c-format -msgid "Assumed size array at %L must be a dummy argument" -msgstr "" - -#: fortran/resolve.c:7679 -#, no-c-format -msgid "Assumed shape array at %L must be a dummy argument" -msgstr "" - -#: fortran/resolve.c:7691 -#, no-c-format -msgid "Symbol at %L is not a DUMMY variable" -msgstr "" - -#: fortran/resolve.c:7697 -#, no-c-format -msgid "'%s' at %L cannot have the VALUE attribute because it is not a dummy argument" -msgstr "" - -#: fortran/resolve.c:7707 -#, no-c-format -msgid "Character dummy variable '%s' at %L with VALUE attribute must have constant length" -msgstr "" - -#: fortran/resolve.c:7716 -#, no-c-format -msgid "C interoperable character dummy variable '%s' at %L with VALUE attribute must have length one" -msgstr "" - -#: fortran/resolve.c:7742 -#, no-c-format -msgid "Variable '%s' at %L cannot be BIND(C) because it is neither a COMMON block nor declared at the module level scope" -msgstr "" - -#: fortran/resolve.c:7795 -#, no-c-format -msgid "The derived type '%s' at %L is of type '%s', which has not been defined" -msgstr "" - -#: fortran/resolve.c:7811 -#, no-c-format -msgid "Fortran 2003: PUBLIC %s '%s' at %L of PRIVATE derived type '%s'" -msgstr "" - -#: fortran/resolve.c:7830 -#, no-c-format -msgid "The INTENT(OUT) dummy argument '%s' at %L is ASSUMED SIZE and so cannot have a default initializer" -msgstr "" - -#: fortran/resolve.c:7889 -#, no-c-format -msgid "Threadprivate at %L isn't SAVEd" -msgstr "" - -#: fortran/resolve.c:7967 -#, no-c-format -msgid "BLOCK DATA element '%s' at %L must be in COMMON" -msgstr "" - -#: fortran/resolve.c:8011 -#, no-c-format -msgid "Nonconstant array section at %L in DATA statement" -msgstr "" - -#: fortran/resolve.c:8024 -#, no-c-format -msgid "DATA statement at %L has more variables than values" -msgstr "" - -#: fortran/resolve.c:8118 -#, no-c-format -msgid "iterator start at %L does not simplify" -msgstr "" - -#: fortran/resolve.c:8125 -#, no-c-format -msgid "iterator end at %L does not simplify" -msgstr "" - -#: fortran/resolve.c:8132 -#, no-c-format -msgid "iterator step at %L does not simplify" -msgstr "" - -#: fortran/resolve.c:8258 -#, no-c-format -msgid "DATA statement at %L has more values than variables" -msgstr "" - -#: fortran/resolve.c:8349 -#, fuzzy, no-c-format -msgid "Label %d at %L defined but not used" -msgstr "s'usa l'etiqueta \"%D\" per no est definida" - -#: fortran/resolve.c:8354 -#, fuzzy, no-c-format -msgid "Label %d at %L defined but cannot be used" -msgstr "s'usa l'etiqueta \"%D\" per no est definida" - -#: fortran/resolve.c:8439 -#, no-c-format -msgid "Derived type variable '%s' at %L must have SEQUENCE attribute to be an EQUIVALENCE object" -msgstr "" - -#: fortran/resolve.c:8448 -#, no-c-format -msgid "Derived type variable '%s' at %L cannot have ALLOCATABLE components to be an EQUIVALENCE object" -msgstr "" - -#: fortran/resolve.c:8465 -#, no-c-format -msgid "Derived type variable '%s' at %L with pointer component(s) cannot be an EQUIVALENCE object" -msgstr "" - -#: fortran/resolve.c:8570 -#, no-c-format -msgid "Syntax error in EQUIVALENCE statement at %L" -msgstr "" - -#: fortran/resolve.c:8585 -#, no-c-format -msgid "Either all or none of the objects in the EQUIVALENCE set at %L shall have the PROTECTED attribute" -msgstr "" - -#: fortran/resolve.c:8597 -#, no-c-format -msgid "Common block member '%s' at %L cannot be an EQUIVALENCE object in the pure procedure '%s'" -msgstr "" - -#: fortran/resolve.c:8606 -#, no-c-format -msgid "Named constant '%s' at %L cannot be an EQUIVALENCE object" -msgstr "" - -#: fortran/resolve.c:8685 -#, no-c-format -msgid "Array '%s' at %L with non-constant bounds cannot be an EQUIVALENCE object" -msgstr "" - -#: fortran/resolve.c:8696 -#, no-c-format -msgid "Structure component '%s' at %L cannot be an EQUIVALENCE object" -msgstr "" - -#: fortran/resolve.c:8707 -#, no-c-format -msgid "Substring at %L has length zero" -msgstr "" - -#: fortran/resolve.c:8750 -#, no-c-format -msgid "PUBLIC function '%s' at %L cannot be of PRIVATE type '%s'" -msgstr "" - -#: fortran/resolve.c:8762 -#, no-c-format -msgid "ENTRY '%s' at %L has no IMPLICIT type" -msgstr "" - -#: fortran/resolve.c:8788 -#, no-c-format -msgid "User operator procedure '%s' at %L must be a FUNCTION" -msgstr "" - -#: fortran/resolve.c:8795 -#, no-c-format -msgid "User operator procedure '%s' at %L cannot be assumed character length" -msgstr "" - -#: fortran/resolve.c:8801 -#, no-c-format -msgid "User operator procedure '%s' at %L must have at least one argument" -msgstr "" - -#: fortran/resolve.c:8811 -#, no-c-format -msgid "First argument of operator interface at %L cannot be optional" -msgstr "" - -#: fortran/resolve.c:8823 -#, no-c-format -msgid "Second argument of operator interface at %L cannot be optional" -msgstr "" - -#: fortran/resolve.c:8827 -#, no-c-format -msgid "Operator interface at %L must have, at most, two arguments" -msgstr "" - -#: fortran/resolve.c:8867 -#, no-c-format -msgid "Contained procedure '%s' at %L of a PURE procedure must also be PURE" -msgstr "" - -#: fortran/scanner.c:526 -#, no-c-format -msgid "!$OMP at %C starts a commented line as it neither is followed by a space nor is a continuation line" -msgstr "" - -#: fortran/scanner.c:816 fortran/scanner.c:937 -#, no-c-format -msgid "Limit of %d continuations exceeded in statement at %C" -msgstr "" - -#: fortran/scanner.c:861 -#, fuzzy, no-c-format -msgid "Missing '&' in continued character constant at %C" -msgstr "Constant de carcter de longitud zero en %0" - -#: fortran/scanner.c:1071 -#, no-c-format -msgid "Nonconforming tab character at %C" -msgstr "" - -#: fortran/scanner.c:1153 fortran/scanner.c:1156 -#, no-c-format -msgid "'&' not allowed by itself in line %d" -msgstr "" - -#: fortran/scanner.c:1189 -#, no-c-format -msgid "Nonconforming tab character in column 1 of line %d" -msgstr "" - -#: fortran/scanner.c:1387 -#, no-c-format -msgid "%s:%d: file %s left but not entered" -msgstr "" - -#: fortran/scanner.c:1419 -#, fuzzy, no-c-format -msgid "%s:%d: Illegal preprocessor directive" -msgstr "%s en directiva de preprocessament" - -#: fortran/scanner.c:1514 -#, no-c-format -msgid "File '%s' is being included recursively" -msgstr "" - -#: fortran/scanner.c:1529 -#, fuzzy, no-c-format -msgid "Can't open file '%s'" -msgstr "no es pot obrir el fitxer \"%s\"" - -#: fortran/scanner.c:1538 -#, fuzzy, no-c-format -msgid "Can't open included file '%s'" -msgstr "no es pot tancar el fitxer temporal" - -#: fortran/scanner.c:1676 -#, fuzzy, c-format -msgid "%s:%3d %s\n" -msgstr "%s: %s" - -#: fortran/simplify.c:82 -#, no-c-format -msgid "Result of %s overflows its kind at %L" -msgstr "" - -#: fortran/simplify.c:87 -#, no-c-format -msgid "Result of %s underflows its kind at %L" -msgstr "" - -#: fortran/simplify.c:92 -#, no-c-format -msgid "Result of %s is NaN at %L" -msgstr "" - -#: fortran/simplify.c:96 -#, no-c-format -msgid "Result of %s gives range error for its kind at %L" -msgstr "" - -#: fortran/simplify.c:119 -#, no-c-format -msgid "KIND parameter of %s at %L must be an initialization expression" -msgstr "" - -#: fortran/simplify.c:127 -#, fuzzy, no-c-format -msgid "Invalid KIND parameter of %s at %L" -msgstr "el parmetre \"%s\" no s vlid" - -#: fortran/simplify.c:282 -#, no-c-format -msgid "Argument of ACHAR function at %L outside of range [0,127]" -msgstr "" - -#: fortran/simplify.c:307 -#, no-c-format -msgid "Argument of ACOS at %L must be between -1 and 1" -msgstr "" - -#: fortran/simplify.c:329 -#, no-c-format -msgid "Argument of ACOSH at %L must not be less than 1" -msgstr "" - -#: fortran/simplify.c:546 -#, no-c-format -msgid "Argument of ASIN at %L must be between -1 and 1" -msgstr "" - -#: fortran/simplify.c:602 -#, no-c-format -msgid "Argument of ATANH at %L must be inside the range -1 to 1" -msgstr "" - -#: fortran/simplify.c:627 -#, no-c-format -msgid "If first argument of ATAN2 %L is zero, then the second argument must not be zero" -msgstr "" - -#: fortran/simplify.c:714 -#, no-c-format -msgid "Argument of CHAR function at %L outside of range [0,255]" -msgstr "" - -#: fortran/simplify.c:1247 -#, no-c-format -msgid "Argument of IACHAR at %L must be of length one" -msgstr "" - -#: fortran/simplify.c:1254 -#, no-c-format -msgid "Argument of IACHAR function at %L outside of range 0..127" -msgstr "" - -#: fortran/simplify.c:1293 -#, fuzzy, no-c-format -msgid "Invalid second argument of IBCLR at %L" -msgstr "argument de tipus no vlid de \"%s\"" - -#: fortran/simplify.c:1301 -#, no-c-format -msgid "Second argument of IBCLR exceeds bit size at %L" -msgstr "" - -#: fortran/simplify.c:1335 -#, fuzzy, no-c-format -msgid "Invalid second argument of IBITS at %L" -msgstr "argument de tipus no vlid de \"%s\"" - -#: fortran/simplify.c:1341 -#, fuzzy, no-c-format -msgid "Invalid third argument of IBITS at %L" -msgstr "argument de tipus no vlid de \"%s\"" - -#: fortran/simplify.c:1351 -#, no-c-format -msgid "Sum of second and third arguments of IBITS exceeds bit size at %L" -msgstr "" - -#: fortran/simplify.c:1393 -#, fuzzy, no-c-format -msgid "Invalid second argument of IBSET at %L" -msgstr "argument de tipus no vlid de \"%s\"" - -#: fortran/simplify.c:1401 -#, no-c-format -msgid "Second argument of IBSET exceeds bit size at %L" -msgstr "" - -#: fortran/simplify.c:1431 -#, no-c-format -msgid "Argument of ICHAR at %L must be of length one" -msgstr "" - -#: fortran/simplify.c:1646 -#, fuzzy, no-c-format -msgid "Argument of INT at %L is not a valid type" -msgstr "l'argument de \"asm\" no s una cadena constant" - -#: fortran/simplify.c:1688 -#, fuzzy, no-c-format -msgid "Argument of %s at %L is not a valid type" -msgstr "l'argument de l'atribut \"%s\" no es una cadena constant" - -#: fortran/simplify.c:1786 -#, fuzzy, no-c-format -msgid "Invalid second argument of ISHFT at %L" -msgstr "argument de tipus no vlid de \"%s\"" - -#: fortran/simplify.c:1801 -#, no-c-format -msgid "Magnitude of second argument of ISHFT exceeds bit size at %L" -msgstr "" - -#: fortran/simplify.c:1865 -#, fuzzy, no-c-format -msgid "Invalid second argument of ISHFTC at %L" -msgstr "argument de tipus no vlid de \"%s\"" - -#: fortran/simplify.c:1879 -#, fuzzy, no-c-format -msgid "Invalid third argument of ISHFTC at %L" -msgstr "argument de tipus no vlid de \"%s\"" - -#: fortran/simplify.c:1885 -#, no-c-format -msgid "Magnitude of third argument of ISHFTC exceeds BIT_SIZE of first argument at %L" -msgstr "" - -#: fortran/simplify.c:1901 -#, no-c-format -msgid "Magnitude of second argument of ISHFTC exceeds third argument at %L" -msgstr "" - -#: fortran/simplify.c:1904 -#, no-c-format -msgid "Magnitude of second argument of ISHFTC exceeds BIT_SIZE of first argument at %L" -msgstr "" - -#: fortran/simplify.c:1975 -#, no-c-format -msgid "Argument of KIND at %L is a DERIVED type" -msgstr "" - -#: fortran/simplify.c:2163 -#, fuzzy, no-c-format -msgid "DIM argument at %L is out of bounds" -msgstr "l'argument \"%d\" no s una constant" - -#: fortran/simplify.c:2318 -#, no-c-format -msgid "Argument of LOG at %L cannot be less than or equal to zero" -msgstr "" - -#: fortran/simplify.c:2331 -#, no-c-format -msgid "Complex argument of LOG at %L cannot be zero" -msgstr "" - -#: fortran/simplify.c:2374 -#, no-c-format -msgid "Argument of LOG10 at %L cannot be less than or equal to zero" -msgstr "" - -#. Result is processor-dependent. -#: fortran/simplify.c:2579 -#, no-c-format -msgid "Second argument MOD at %L is zero" -msgstr "" - -#. Result is processor-dependent. -#: fortran/simplify.c:2590 -#, no-c-format -msgid "Second argument of MOD at %L is zero" -msgstr "" - -#. Result is processor-dependent. This processor just opts -#. to not handle it at all. -#. Result is processor-dependent. -#: fortran/simplify.c:2638 fortran/simplify.c:2650 -#, no-c-format -msgid "Second argument of MODULO at %L is zero" -msgstr "" - -#: fortran/simplify.c:2702 -#, no-c-format -msgid "Second argument of NEAREST at %L shall not be zero" -msgstr "" - -#: fortran/simplify.c:2977 -#, no-c-format -msgid "Argument NCOPIES of REPEAT intrinsic is negative at %L" -msgstr "" - -#: fortran/simplify.c:3032 -#, no-c-format -msgid "Argument NCOPIES of REPEAT intrinsic is too large at %L" -msgstr "" - -#: fortran/simplify.c:3122 -#, fuzzy, no-c-format -msgid "Integer too large in shape specification at %L" -msgstr "desprs de l'especificaci prvia en \"%#D\"" - -#: fortran/simplify.c:3132 -#, no-c-format -msgid "Too many dimensions in shape specification for RESHAPE at %L" -msgstr "" - -#: fortran/simplify.c:3140 -#, no-c-format -msgid "Shape specification at %L cannot be negative" -msgstr "" - -#: fortran/simplify.c:3150 -#, no-c-format -msgid "Shape specification at %L cannot be the null array" -msgstr "" - -#: fortran/simplify.c:3171 -#, no-c-format -msgid "ORDER parameter of RESHAPE at %L is not the same size as SHAPE parameter" -msgstr "" - -#: fortran/simplify.c:3178 -#, no-c-format -msgid "Error in ORDER parameter of RESHAPE at %L" -msgstr "" - -#: fortran/simplify.c:3188 -#, no-c-format -msgid "ORDER parameter of RESHAPE at %L is out of range" -msgstr "" - -#: fortran/simplify.c:3197 -#, no-c-format -msgid "Invalid permutation in ORDER parameter at %L" -msgstr "" - -#: fortran/simplify.c:3253 -#, no-c-format -msgid "PAD parameter required for short SOURCE parameter at %L" -msgstr "" - -#: fortran/simplify.c:3372 -#, no-c-format -msgid "Result of SCALE overflows its kind at %L" -msgstr "" - -#: fortran/simplify.c:3942 -#, fuzzy, no-c-format -msgid "Argument of SQRT at %L has a negative value" -msgstr "la crida a la funci t valor agregat" - -#: fortran/simplify.c:4069 -#, no-c-format -msgid "Intrinsic TRANSFER at %L has partly undefined result: source size %ld < result size %ld" -msgstr "" - -#: fortran/symbol.c:120 -#, no-c-format -msgid "Duplicate IMPLICIT NONE statement at %C" -msgstr "" - -#: fortran/symbol.c:160 -#, no-c-format -msgid "Letter '%c' already set in IMPLICIT statement at %C" -msgstr "" - -#: fortran/symbol.c:182 -#, no-c-format -msgid "Cannot specify IMPLICIT at %C after IMPLICIT NONE" -msgstr "" - -#: fortran/symbol.c:193 -#, no-c-format -msgid "Letter %c already has an IMPLICIT type at %C" -msgstr "" - -#: fortran/symbol.c:247 -#, no-c-format -msgid "Symbol '%s' at %L has no IMPLICIT type" -msgstr "" - -#. BIND(C) variables should not be implicitly declared. -#: fortran/symbol.c:261 -#, no-c-format -msgid "Implicitly declared BIND(C) variable '%s' at %L may not be C interoperable" -msgstr "" - -#. Dummy args to a BIND(C) routine may not be interoperable if -#. they are implicitly typed. -#: fortran/symbol.c:275 -#, no-c-format -msgid "Implicity declared variable '%s' at %L may not be C interoperable but it is a dummy argument to the BIND(C) procedure '%s' at %L" -msgstr "" - -#: fortran/symbol.c:316 -#, no-c-format -msgid "Function result '%s' at %L has no IMPLICIT type" -msgstr "" - -#: fortran/symbol.c:395 -#, no-c-format -msgid "%s attribute not allowed in BLOCK DATA program unit at %L" -msgstr "" - -#: fortran/symbol.c:561 -#, no-c-format -msgid "Fortran 2003: Procedure pointers at %L are not yet implemented in gfortran" -msgstr "" - -#: fortran/symbol.c:690 fortran/symbol.c:1300 -#, fuzzy, no-c-format -msgid "%s attribute conflicts with %s attribute at %L" -msgstr "l'atribut \"%s\" solament aplica a variables" - -#: fortran/symbol.c:693 -#, no-c-format -msgid "%s attribute conflicts with %s attribute in '%s' at %L" -msgstr "" - -#: fortran/symbol.c:701 -#, no-c-format -msgid "Fortran 2003: %s attribute with %s attribute at %L" -msgstr "" - -#: fortran/symbol.c:707 -#, no-c-format -msgid "Fortran 2003: %s attribute with %s attribute in '%s' at %L" -msgstr "" - -#: fortran/symbol.c:751 -#, no-c-format -msgid "Cannot change attributes of USE-associated symbol at %L" -msgstr "" - -#: fortran/symbol.c:754 -#, no-c-format -msgid "Cannot change attributes of USE-associated symbol %s at %L" -msgstr "" - -#: fortran/symbol.c:770 -#, no-c-format -msgid "Duplicate %s attribute specified at %L" -msgstr "" - -#: fortran/symbol.c:912 -#, no-c-format -msgid "Cray Pointee at %L appears in multiple pointer() statements" -msgstr "" - -#: fortran/symbol.c:931 -#, no-c-format -msgid "Duplicate PROTECTED attribute specified at %L" -msgstr "" - -#: fortran/symbol.c:964 -#, fuzzy, no-c-format -msgid "SAVE attribute at %L cannot be specified in a PURE procedure" -msgstr "La declaraci o atribut SAVE en %1 no es pot especificar juntament amb la declaraci o atribut SAVE en %0" - -#: fortran/symbol.c:972 -#, no-c-format -msgid "Duplicate SAVE attribute specified at %L" -msgstr "" - -#: fortran/symbol.c:993 -#, no-c-format -msgid "Duplicate VALUE attribute specified at %L" -msgstr "" - -#: fortran/symbol.c:1013 -#, no-c-format -msgid "Duplicate VOLATILE attribute specified at %L" -msgstr "" - -#: fortran/symbol.c:1296 -#, fuzzy, no-c-format -msgid "%s attribute of '%s' conflicts with %s attribute at %L" -msgstr "%Jl'rea d'adrea de \"%s\" s en conflicte amb una declaraci prvia" - -#: fortran/symbol.c:1330 -#, no-c-format -msgid "%s procedure at %L is already declared as %s procedure" -msgstr "" - -#: fortran/symbol.c:1365 -#, no-c-format -msgid "INTENT (%s) conflicts with INTENT(%s) at %L" -msgstr "" - -#: fortran/symbol.c:1388 -#, no-c-format -msgid "ACCESS specification at %L was already specified" -msgstr "" - -#: fortran/symbol.c:1405 -#, no-c-format -msgid "Duplicate BIND attribute specified at %L" -msgstr "" - -#: fortran/symbol.c:1412 -#, no-c-format -msgid "Fortran 2003: BIND(C) at %L" -msgstr "" - -#: fortran/symbol.c:1434 -#, no-c-format -msgid "Symbol '%s' at %L already has an explicit interface" -msgstr "" - -#: fortran/symbol.c:1479 -#, no-c-format -msgid "Symbol '%s' at %L cannot have a type" -msgstr "" - -#: fortran/symbol.c:1636 -#, no-c-format -msgid "Component '%s' at %C already declared at %L" -msgstr "" - -#: fortran/symbol.c:1714 -#, fuzzy, no-c-format -msgid "Symbol '%s' at %C is ambiguous" -msgstr "l's de \"%D\" s ambigu" - -#: fortran/symbol.c:1746 -#, no-c-format -msgid "Derived type '%s' at %C is being used before it is defined" -msgstr "" - -#: fortran/symbol.c:1774 -#, fuzzy, no-c-format -msgid "'%s' at %C is not a member of the '%s' structure" -msgstr "\"%D\" no s un membre de tipus \"%T\"" - -#: fortran/symbol.c:1781 -#, no-c-format -msgid "Component '%s' at %C is a PRIVATE component of '%s'" -msgstr "" - -#: fortran/symbol.c:1938 -#, no-c-format -msgid "Duplicate statement label %d at %L and %L" -msgstr "" - -#: fortran/symbol.c:1948 -#, no-c-format -msgid "Label %d at %C already referenced as branch target" -msgstr "" - -#: fortran/symbol.c:1957 -#, no-c-format -msgid "Label %d at %C already referenced as a format label" -msgstr "" - -#: fortran/symbol.c:1999 -#, no-c-format -msgid "Label %d at %C previously used as a FORMAT label" -msgstr "" - -#: fortran/symbol.c:2007 -#, no-c-format -msgid "Label %d at %C previously used as branch target" -msgstr "" - -#: fortran/symbol.c:2314 -#, no-c-format -msgid "Name '%s' at %C is an ambiguous reference to '%s' from module '%s'" -msgstr "" - -#: fortran/symbol.c:2317 -#, no-c-format -msgid "Name '%s' at %C is an ambiguous reference to '%s' from current program unit" -msgstr "" - -#. Symbol is from another namespace. -#: fortran/symbol.c:2461 -#, no-c-format -msgid "Symbol '%s' at %C has already been host associated" -msgstr "" - -#: fortran/symbol.c:3162 -#, no-c-format -msgid "Derived type '%s' declared at %L must have the BIND attribute to be C interoperable" -msgstr "" - -#: fortran/symbol.c:3173 -#, fuzzy, no-c-format -msgid "Derived type '%s' at %L is empty" -msgstr "el predicat de la resposta est buidor" - -#: fortran/symbol.c:3190 -#, no-c-format -msgid "Component '%s' at %L cannot have the POINTER attribute because it is a member of the BIND(C) derived type '%s' at %L" -msgstr "" - -#: fortran/symbol.c:3202 -#, no-c-format -msgid "Component '%s' at %L cannot have the ALLOCATABLE attribute because it is a member of the BIND(C) derived type '%s' at %L" -msgstr "" - -#. If the derived type is bind(c), all fields must be -#. interop. -#: fortran/symbol.c:3241 -#, no-c-format -msgid "Component '%s' in derived type '%s' at %L may not be C interoperable, even though derived type '%s' is BIND(C)" -msgstr "" - -#. If derived type is param to bind(c) routine, or to one -#. of the iso_c_binding procs, it must be interoperable, so -#. all fields must interop too. -#: fortran/symbol.c:3250 -#, no-c-format -msgid "Component '%s' in derived type '%s' at %L may not be C interoperable" -msgstr "" - -#: fortran/symbol.c:3264 -#, no-c-format -msgid "Derived type '%s' at %L cannot be declared with both PRIVATE and BIND(C) attributes" -msgstr "" - -#: fortran/symbol.c:3272 -#, no-c-format -msgid "Derived type '%s' at %L cannot have the SEQUENCE attribute because it is BIND(C)" -msgstr "" - -#: fortran/target-memory.c:548 -#, no-c-format -msgid "Overlapping unequal initializers in EQUIVALENCE at %L" -msgstr "" - -#: fortran/trans-common.c:396 -#, no-c-format -msgid "Named COMMON block '%s' at %L shall be of the same size" -msgstr "" - -#: fortran/trans-common.c:817 -#, fuzzy, no-c-format -msgid "Bad array reference at %L" -msgstr "Element null en %0 per a la referncia de matriu en %1" - -#: fortran/trans-common.c:825 -#, no-c-format -msgid "Illegal reference type at %L as EQUIVALENCE object" -msgstr "" - -#: fortran/trans-common.c:865 -#, no-c-format -msgid "Inconsistent equivalence rules involving '%s' at %L and '%s' at %L" -msgstr "" - -#. Aligning this field would misalign a previous field. -#: fortran/trans-common.c:998 -#, no-c-format -msgid "The equivalence set for variable '%s' declared at %L violates alignment requirements" -msgstr "" - -#: fortran/trans-common.c:1063 -#, no-c-format -msgid "Equivalence for '%s' does not match ordering of COMMON '%s' at %L" -msgstr "" - -#: fortran/trans-common.c:1078 -#, no-c-format -msgid "The equivalence set for '%s' cause an invalid extension to COMMON '%s' at %L" -msgstr "" - -#. The required offset conflicts with previous alignment -#. requirements. Insert padding immediately before this -#. segment. -#: fortran/trans-common.c:1089 -#, no-c-format -msgid "Padding of %d bytes required before '%s' in COMMON '%s' at %L" -msgstr "" - -#: fortran/trans-common.c:1115 -#, no-c-format -msgid "COMMON '%s' at %L does not exist" -msgstr "" - -#: fortran/trans-common.c:1122 -#, no-c-format -msgid "COMMON '%s' at %L requires %d bytes of padding at start" -msgstr "" - -#: fortran/trans-decl.c:3016 -#, no-c-format -msgid "Dummy argument '%s' at %L was declared INTENT(OUT) but was not set" -msgstr "" - -#: fortran/trans-decl.c:3020 -#, no-c-format -msgid "Unused dummy argument '%s' at %L" -msgstr "" - -#: fortran/trans-decl.c:3026 -#, fuzzy, no-c-format -msgid "Unused variable '%s' declared at %L" -msgstr "%Jla variable \"%D\" s declarada com \"inline\"" - -#: fortran/trans-decl.c:3052 -#, fuzzy, no-c-format -msgid "Unused parameter '%s' declared at %L" -msgstr "el parmetre \"%s\" es va declarar void" - -#: fortran/trans-expr.c:2036 -#, fuzzy, no-c-format -msgid "Unknown argument list function at %L" -msgstr "massa pocs arguments per a la funci \"%s\"" - -#: fortran/trans-intrinsic.c:829 -#, no-c-format -msgid "'dim' argument of %s intrinsic at %L is not a valid dimension index" -msgstr "" - -#: fortran/trans-io.c:1850 -#, no-c-format -msgid "Derived type '%s' at %L has PRIVATE components" -msgstr "" - -#: fortran/trans-stmt.c:438 -#, fuzzy, no-c-format -msgid "An alternate return at %L without a * dummy argument" -msgstr "L'especificador de retorn alternatiu en %0 no s vlid dintre d'una unitat de programa principal" - -#: fortran/trans.c:49 -msgid "Array bound mismatch" -msgstr "" - -#: fortran/trans.c:50 -#, fuzzy -msgid "Array reference out of bounds" -msgstr "formant la referncia a void" - -#: fortran/trans.c:51 -#, fuzzy -msgid "Incorrect function return value" -msgstr "la funci \"no return\" retorna un valor que no s \"void\"" - -#: fortran/trans.c:465 fortran/trans.c:859 -msgid "Attempt to allocate a negative amount of memory." -msgstr "" - -#: fortran/trans.c:479 -msgid "Memory allocation failed" -msgstr "" - -#: fortran/trans.c:567 -msgid "Attempt to allocate negative amount of memory. Possible integer overflow" -msgstr "" - -#: fortran/trans.c:598 fortran/trans.c:876 -msgid "Out of memory" -msgstr "" - -#: fortran/trans.c:678 -msgid "Attempting to allocate already allocated array" -msgstr "" - -#: fortran/trans.c:776 -msgid "Attempt to DEALLOCATE unallocated memory." -msgstr "" - -#: java/jcf-dump.c:1066 -#, c-format -msgid "Not a valid Java .class file.\n" -msgstr "" - -#: java/jcf-dump.c:1072 -#, fuzzy, c-format -msgid "error while parsing constant pool\n" -msgstr "%s abans d'una constant de cadena" - -#: java/jcf-dump.c:1078 java/jcf-parse.c:1458 -#, gcc-internal-format -msgid "error in constant pool entry #%d\n" -msgstr "" - -#: java/jcf-dump.c:1088 -#, c-format -msgid "error while parsing fields\n" -msgstr "" - -#: java/jcf-dump.c:1094 -#, c-format -msgid "error while parsing methods\n" -msgstr "" - -#: java/jcf-dump.c:1100 -#, c-format -msgid "error while parsing final attributes\n" -msgstr "" - -#: java/jcf-dump.c:1137 -#, c-format -msgid "Try 'jcf-dump --help' for more information.\n" -msgstr "" - -#: java/jcf-dump.c:1144 -#, fuzzy, c-format -msgid "" -"Usage: jcf-dump [OPTION]... CLASS...\n" -"\n" -msgstr "" -"Us: gcov [OPCIO]... FITXERFONT\n" -"\n" - -#: java/jcf-dump.c:1145 -#, c-format -msgid "" -"Display contents of a class file in readable form.\n" -"\n" -msgstr "" - -#: java/jcf-dump.c:1146 -#, fuzzy, c-format -msgid " -c Disassemble method bodies\n" -msgstr " -W Activar avisos extra\n" - -#: java/jcf-dump.c:1147 -#, fuzzy, c-format -msgid " --javap Generate output in 'javap' format\n" -msgstr " --help Mostra aquesta informaci\n" - -#: java/jcf-dump.c:1149 -#, c-format -msgid " --classpath PATH Set path to find .class files\n" -msgstr "" - -#: java/jcf-dump.c:1150 -#, fuzzy, c-format -msgid " -IDIR Append directory to class path\n" -msgstr "" -" -B Agrega el a les rutes de recerca del\n" -" compilador\n" - -#: java/jcf-dump.c:1151 -#, c-format -msgid " --bootclasspath PATH Override built-in class path\n" -msgstr "" - -#: java/jcf-dump.c:1152 -#, c-format -msgid " --extdirs PATH Set extensions directory path\n" -msgstr "" - -#: java/jcf-dump.c:1153 -#, fuzzy, c-format -msgid " -o FILE Set output file name\n" -msgstr " -o Colloca la sortida en el \n" - -#: java/jcf-dump.c:1155 -#, fuzzy, c-format -msgid " --help Print this help, then exit\n" -msgstr " -h, --help Mostra aquesta informaci, i surt\n" - -#: java/jcf-dump.c:1156 -#, fuzzy, c-format -msgid " --version Print version number, then exit\n" -msgstr " -v, --version Mostra el numero de versi, i surt\n" - -#: java/jcf-dump.c:1157 -#, fuzzy, c-format -msgid " -v, --verbose Print extra information while running\n" -msgstr " -v, --version Mostra el numero de versi, i surt\n" - -#: java/jcf-dump.c:1159 -#, fuzzy, c-format -msgid "" -"For bug reporting instructions, please see:\n" -"%s.\n" -msgstr "" -"\n" -"Per a instrucions d'informe de bug, si us plau consulta:\n" -"%s.\n" - -#: java/jcf-dump.c:1187 java/jcf-dump.c:1255 -#, c-format -msgid "jcf-dump: no classes specified\n" -msgstr "" - -#: java/jcf-dump.c:1275 -#, fuzzy, c-format -msgid "Cannot open '%s' for output.\n" -msgstr "no es pot obrir %s" - -#: java/jcf-dump.c:1321 -#, c-format -msgid "bad format of .zip/.jar archive\n" -msgstr "" - -#: java/jcf-dump.c:1439 -#, c-format -msgid "Bad byte codes.\n" -msgstr "" - -#: java/jvgenmain.c:47 -#, fuzzy, c-format -msgid "Usage: %s [OPTIONS]... CLASSNAMEmain [OUTFILE]\n" -msgstr "" -"Us: gcov [OPCIO]... FITXERFONT\n" -"\n" - -#: java/jvgenmain.c:109 -#, fuzzy, c-format -msgid "%s: Cannot open output file: %s\n" -msgstr "%s:no es pot obrir el fitxer de sortida \"%s\"\n" - -#: java/jvgenmain.c:151 -#, fuzzy, c-format -msgid "%s: Failed to close output file %s\n" -msgstr "%s:no es pot obrir el fitxer de sortida \"%s\"\n" - -#: java/jvspec.c:409 -#, c-format -msgid "can't specify '-D' without '--main'\n" -msgstr "" - -#: java/jvspec.c:412 -#, fuzzy, c-format -msgid "'%s' is not a valid class name" -msgstr "\"%s\" no s un nom de fitxer vlid" - -#: java/jvspec.c:418 -#, c-format -msgid "--resource requires -o" -msgstr "" - -#: java/jvspec.c:432 -#, c-format -msgid "cannot specify both -C and -o" -msgstr "" - -#: java/jvspec.c:444 -#, c-format -msgid "cannot create temporary file" -msgstr "" - -#: java/jvspec.c:466 -#, c-format -msgid "using both @FILE with multiple files not implemented" -msgstr "" - -#: java/jvspec.c:588 -#, c-format -msgid "cannot specify 'main' class when not linking" -msgstr "" - -#: config/i386/nwld.h:34 -#, fuzzy -msgid "Static linking is not supported.\n" -msgstr "no es dna suport a l'expressi del lmit de la pila" - -#: java/jvspec.c:80 gcc.c:820 ada/lang-specs.h:33 -msgid "-pg and -fomit-frame-pointer are incompatible" -msgstr "" - -#: config/vax/netbsd-elf.h:41 -#, fuzzy -msgid "the -shared option is not currently supported for VAX ELF" -msgstr "L'opci -shared no se suporta actualment per a ELF de VAX." - -#: config/sparc/sol2-gld-bi.h:17 config/sparc/sol2-gld-bi.h:22 -#: config/sparc/sol2-bi.h:189 config/sparc/sol2-bi.h:194 -msgid "does not support multilib" -msgstr "no es dna suport a multilib" - -#: config/vax/vax.h:49 config/vax/vax.h:50 -msgid "profiling not supported with -mg\n" -msgstr "" - -#: config/rs6000/linux64.h:347 config/rs6000/linux64.h:349 config/linux.h:106 -#: config/linux.h:108 config/rs6000/sysv4.h:897 config/rs6000/sysv4.h:899 -#: config/alpha/linux-elf.h:33 config/alpha/linux-elf.h:35 -#: config/sparc/linux.h:126 config/sparc/linux.h:128 -#: config/sparc/linux64.h:152 config/sparc/linux64.h:154 -msgid "-mglibc and -muclibc used together" -msgstr "" - -#: config/i386/cygwin.h:28 -msgid "mno-cygwin and mno-win32 are not compatible" -msgstr "" - -#: config/i386/cygwin.h:74 config/i386/mingw32.h:74 -msgid "shared and mdll are not compatible" -msgstr "" - -#: config/i386/sco5.h:188 -msgid "-pg not supported on this platform" -msgstr "-pg no t suport en aquesta plataforma" - -#: config/i386/sco5.h:189 -msgid "-p and -pp specified - pick one" -msgstr "-p i -pp especificats - tria un" - -#: config/i386/sco5.h:258 -msgid "-G and -static are mutually exclusive" -msgstr "-Gi-static sn mtuament exclusius" - -#: gcc.c:792 -msgid "GCC does not support -C or -CC without -E" -msgstr "GCC no dna suport a -C o -CC sense usar -E" - -#: gcc.c:1002 -msgid "-E or -x required when input is from standard input" -msgstr "" - -#: java/lang-specs.h:33 -msgid "-fjni and -femit-class-files are incompatible" -msgstr "" - -#: java/lang-specs.h:34 -msgid "-fjni and -femit-class-file are incompatible" -msgstr "" - -#: java/lang-specs.h:35 java/lang-specs.h:36 -msgid "-femit-class-file should used along with -fsyntax-only" -msgstr "" - -#: config/mcore/mcore.h:56 -msgid "the m210 does not have little endian support" -msgstr "" - -#: config/lynx.h:70 -msgid "cannot use mthreads and mlegacy-threads together" -msgstr "" - -#: config/lynx.h:95 -msgid "cannot use mshared and static together" -msgstr "" - -#: config/sh/sh.h:461 -#, fuzzy -msgid "SH2a does not support little-endian" -msgstr "no es dna suport a multilib" - -#: config/mips/mips.h:1042 config/arc/arc.h:61 -msgid "may not use both -EB and -EL" -msgstr "" - -#: config/s390/tpf.h:119 -#, fuzzy -msgid "static is not supported on TPF-OS" -msgstr "no es dna suport a lmits de pila en aquest objectiu" - -#: config/rs6000/darwin.h:95 -msgid " conflicting code gen style switches are used" -msgstr "" - -#: ada/lang-specs.h:34 -msgid "-c or -S required for Ada" -msgstr "" - -#: config/mips/r3900.h:34 -msgid "-mhard-float not supported" -msgstr "" - -#: config/mips/r3900.h:36 -msgid "-msingle-float and -msoft-float cannot both be specified" -msgstr "" - -#: config/vxworks.h:71 -#, fuzzy -msgid "-Xbind-now and -Xbind-lazy are incompatible" -msgstr "-membedded-pic i -mabicalls sn incompatibles" - -#: config/darwin.h:269 -msgid "-current_version only allowed with -dynamiclib" -msgstr "" - -#: config/darwin.h:271 -msgid "-install_name only allowed with -dynamiclib" -msgstr "" - -#: config/darwin.h:276 -msgid "-bundle not allowed with -dynamiclib" -msgstr "no es permet -bundle amb -dynamiclib" - -#: config/darwin.h:277 -msgid "-bundle_loader not allowed with -dynamiclib" -msgstr "no es permet -bundle_loader amb -dynamiclib" - -#: config/darwin.h:278 -msgid "-client_name not allowed with -dynamiclib" -msgstr "no es permet -client_name amb -dynamiclib" - -#: config/darwin.h:283 -msgid "-force_flat_namespace not allowed with -dynamiclib" -msgstr "" - -#: config/darwin.h:285 -msgid "-keep_private_externs not allowed with -dynamiclib" -msgstr "" - -#: config/darwin.h:286 -msgid "-private_bundle not allowed with -dynamiclib" -msgstr "no es permet -private_bundle amb -dynamiclib" - -#: config/sparc/linux64.h:211 config/sparc/linux64.h:222 -#: config/sparc/netbsd-elf.h:125 config/sparc/netbsd-elf.h:144 -#: config/sparc/sol2-bi.h:217 config/sparc/sol2-bi.h:227 -msgid "may not use both -m32 and -m64" -msgstr "" - -#: config/arm/arm.h:147 -msgid "-msoft-float and -mhard_float may not be used together" -msgstr "" - -#: config/arm/arm.h:149 -msgid "-mbig-endian and -mlittle-endian may not be used together" -msgstr "" - -#: java/lang.opt:65 -#, fuzzy -msgid "Warn if a deprecated compiler feature, class, method, or field is used" -msgstr "No anunciar caracterstiques obsoletes del compilador" - -#: java/lang.opt:69 -msgid "Warn if deprecated empty statements are found" -msgstr "" - -#: java/lang.opt:73 -msgid "Warn if .class files are out of date" -msgstr "" - -#: java/lang.opt:77 -msgid "Warn if modifiers are specified when not necessary" -msgstr "" - -#: java/lang.opt:81 -msgid "Deprecated; use --classpath instead" -msgstr "" - -#: java/lang.opt:88 -msgid "Permit the use of the assert keyword" -msgstr "" - -#: java/lang.opt:110 -msgid "Replace system path" -msgstr "" - -#: java/lang.opt:114 -#, fuzzy -msgid "Generate checks for references to NULL" -msgstr "Generar codi per a una DLL" - -#: java/lang.opt:118 -msgid "Set class path" -msgstr "" - -#: java/lang.opt:125 -msgid "Output a class file" -msgstr "" - -#: java/lang.opt:129 -msgid "Alias for -femit-class-file" -msgstr "" - -#: java/lang.opt:133 -msgid "Choose input encoding (defaults from your locale)" -msgstr "" - -#: java/lang.opt:137 -msgid "Set the extension directory path" -msgstr "" - -#: java/lang.opt:144 -msgid "Input file is a file with a list of filenames to compile" -msgstr "" - -#: java/lang.opt:151 -msgid "Always check for non gcj generated classes archives" -msgstr "" - -#: java/lang.opt:155 -msgid "Assume the runtime uses a hash table to map an object to its synchronization structure" -msgstr "" - -#: java/lang.opt:159 -msgid "Generate instances of Class at runtime" -msgstr "" - -#: java/lang.opt:163 -msgid "Use offset tables for virtual method calls" -msgstr "" - -#: java/lang.opt:170 -msgid "Assume native functions are implemented using JNI" -msgstr "" - -#: java/lang.opt:174 -#, fuzzy -msgid "Enable optimization of static class initialization code" -msgstr "(es requereix una inicialitzaci fora de la classe)" - -#: java/lang.opt:181 -msgid "Reduce the amount of reflection meta-data generated" -msgstr "" - -#: java/lang.opt:185 -msgid "Enable assignability checks for stores into object arrays" -msgstr "" - -#: java/lang.opt:189 -#, fuzzy -msgid "Generate code for the Boehm GC" -msgstr "Generar codi per a M*Core M340" - -#: java/lang.opt:193 -msgid "Call a library routine to do integer divisions" -msgstr "" - -#: java/lang.opt:197 -msgid "Generated should be loaded by bootstrap loader" -msgstr "" - -#: java/lang.opt:201 -msgid "Set the source language version" -msgstr "" - -#: java/lang.opt:205 -#, fuzzy -msgid "Set the target VM version" -msgstr "versi d'encapalat errnia" - -#: ada/lang.opt:96 -msgid "Specify options to GNAT" -msgstr "" - -#: fortran/lang.opt:29 -#, fuzzy -msgid "Add a directory for INCLUDE and MODULE searching" -msgstr "Agregar un directori per a la recerca de INCLUDE" - -#: fortran/lang.opt:33 -msgid "Put MODULE files in 'directory'" -msgstr "" - -#: fortran/lang.opt:41 -#, fuzzy -msgid "Warn about possible aliasing of dummy arguments" -msgstr "Avisar sobre possibles parntesis faltantes" - -#: fortran/lang.opt:45 -#, fuzzy -msgid "Warn about missing ampersand in continued character constants" -msgstr "Avisar sobre l's de literals multicarcters" - -#: fortran/lang.opt:49 -#, fuzzy -msgid "Warn about truncated character expressions" -msgstr "No anunciar caracterstiques obsoletes del compilador" - -#: fortran/lang.opt:53 -#, fuzzy -msgid "Warn about implicit conversion" -msgstr "Avisar sobre la declaraci implcita de funcions" - -#: fortran/lang.opt:57 -#, fuzzy -msgid "Warn about calls with implicit interface" -msgstr "Avisar sobre conversions que descarten calificators" - -#: fortran/lang.opt:61 -#, fuzzy -msgid "Warn about truncated source lines" -msgstr "No anunciar caracterstiques obsoletes del compilador" - -#: fortran/lang.opt:65 -#, fuzzy -msgid "Warn about usage of non-standard intrinsics" -msgstr "Avisar sobre l's d' (noms algunes per ara) extensions Fortran" - -#: fortran/lang.opt:69 -#, fuzzy -msgid "Warn about \"suspicious\" constructs" -msgstr "Avisar sobre declaracions sospitoses de main" - -#: fortran/lang.opt:73 -msgid "Permit nonconforming uses of the tab character" -msgstr "" - -#: fortran/lang.opt:77 -#, fuzzy -msgid "Warn about underflow of numerical constant expressions" -msgstr "desbordament en la constant implcita" - -#: fortran/lang.opt:81 -msgid "All intrinsics procedures are available regardless of selected standard" -msgstr "" - -#: fortran/lang.opt:89 -#, fuzzy -msgid "Do not treat local variables and COMMON blocks as if they were named in SAVE statements" -msgstr "Tractar les variables locals i els blocs COMMON com si fossin nomenats en declaracions SAVE" - -#: fortran/lang.opt:93 -msgid "Specify that backslash in string introduces an escape character" -msgstr "" - -#: fortran/lang.opt:97 -msgid "Produce a backtrace when a runtime error is encountered" -msgstr "" - -#: fortran/lang.opt:101 -msgid "-fblas-matmul-limit= Size of the smallest matrix for which matmul will use BLAS" -msgstr "" - -#: fortran/lang.opt:105 -#, fuzzy -msgid "Use big-endian format for unformatted files" -msgstr "Usar ordre de bit big-endian" - -#: fortran/lang.opt:109 -#, fuzzy -msgid "Use little-endian format for unformatted files" -msgstr "Usar l'ordre d'octet little-endian per a les dades" - -#: fortran/lang.opt:113 -msgid "Use native format for unformatted files" -msgstr "" - -#: fortran/lang.opt:117 -msgid "Swap endianness for unformatted files" -msgstr "" - -#: fortran/lang.opt:121 -#, fuzzy -msgid "Use the Cray Pointer extension" -msgstr "Usar la interfcie Cygwin" - -#: fortran/lang.opt:125 -msgid "Ignore 'D' in column one in fixed form" -msgstr "" - -#: fortran/lang.opt:129 -msgid "Treat lines with 'D' in column one as comments" -msgstr "" - -#: fortran/lang.opt:133 -msgid "Set the default double precision kind to an 8 byte wide type" -msgstr "" - -#: fortran/lang.opt:137 -msgid "Set the default integer kind to an 8 byte wide type" -msgstr "" - -#: fortran/lang.opt:141 -msgid "Set the default real kind to an 8 byte wide type" -msgstr "" - -#: fortran/lang.opt:145 -msgid "Allow dollar signs in entity names" -msgstr "" - -#: fortran/lang.opt:149 -msgid "Dump a core file when a runtime error occurs" -msgstr "" - -#: fortran/lang.opt:153 -#, fuzzy -msgid "Display the code tree after parsing" -msgstr "Mostra la versi del compilador" - -#: fortran/lang.opt:157 -msgid "Specify that an external BLAS library should be used for matmul calls on large-size arrays" -msgstr "" - -#: fortran/lang.opt:161 -#, fuzzy -msgid "Use f2c calling convention" -msgstr "Usar convenci de cridada normal" - -#: fortran/lang.opt:165 -#, fuzzy -msgid "Assume that the source file is fixed form" -msgstr "Assumir que els punters no tenen alies" - -#: fortran/lang.opt:169 -msgid "Specify where to find the compiled intrinsic modules" -msgstr "" - -#: fortran/lang.opt:173 -msgid "Allow arbitrary character line width in fixed mode" -msgstr "" - -#: fortran/lang.opt:177 -msgid "Use n as character line width in fixed mode" -msgstr "" - -#: fortran/lang.opt:181 -#, fuzzy -msgid "Stop on following floating point exceptions" -msgstr "Especifica la versi de l'emulador de nombre de coma flotant" - -#: fortran/lang.opt:185 -msgid "Assume that the source file is free form" -msgstr "" - -#: fortran/lang.opt:189 -msgid "Allow arbitrary character line width in free mode" -msgstr "" - -#: fortran/lang.opt:193 -msgid "Use n as character line width in free mode" -msgstr "" - -#: fortran/lang.opt:197 -msgid "Specify that no implicit typing is allowed, unless overridden by explicit IMPLICIT statements" -msgstr "" - -#: fortran/lang.opt:201 -msgid "-finit-character= Initialize local character variables to ASCII value n" -msgstr "" - -#: fortran/lang.opt:205 -msgid "-finit-integer= Initialize local integer variables to n" -msgstr "" - -#: fortran/lang.opt:209 -#, fuzzy -msgid "Initialize local variables to zero (from g77)" -msgstr "Inicialitza les variables locals i matrius a zero" - -#: fortran/lang.opt:213 -msgid "-finit-logical= Initialize local logical variables" -msgstr "" - -#: fortran/lang.opt:217 -msgid "-finit-real= Initialize local real variables" -msgstr "" - -#: fortran/lang.opt:221 -#, fuzzy -msgid "Maximum number of errors to report" -msgstr "Especificar el nombre mxim d'iteracions per a RPTS" - -#: fortran/lang.opt:225 -#, fuzzy -msgid "Maximum identifier length" -msgstr "Establir la longitud mxima de lnia" - -#: fortran/lang.opt:229 -msgid "Maximum length for subrecords" -msgstr "" - -#: fortran/lang.opt:233 -msgid "Size in bytes of the largest array that will be put on the stack" -msgstr "" - -#: fortran/lang.opt:237 -msgid "Set default accessibility of module entities to PRIVATE." -msgstr "" - -#: fortran/lang.opt:241 -msgid "Enable OpenMP (also sets frecursive)" -msgstr "" - -#: fortran/lang.opt:245 -msgid "Try to lay out derived types as compactly as possible" -msgstr "" - -#: fortran/lang.opt:249 -msgid "Treat the input file as preprocessed" -msgstr "" - -#: fortran/lang.opt:253 -msgid "Enable range checking during compilation" -msgstr "" - -#: fortran/lang.opt:257 -msgid "Use a 4-byte record marker for unformatted files" -msgstr "" - -#: fortran/lang.opt:261 -msgid "Use an 8-byte record marker for unformatted files" -msgstr "" - -#: fortran/lang.opt:265 -msgid "Allocate local variables on the stack to allow indirect recursion" -msgstr "" - -#: fortran/lang.opt:269 -msgid "Copy array sections into a contiguous block on procedure entry" -msgstr "" - -#: fortran/lang.opt:273 -msgid "Append a second underscore if the name already contains an underscore" -msgstr "" - -#: fortran/lang.opt:277 c.opt:714 -msgid "Use the narrowest integer type possible for enumeration types" -msgstr "" - -#: fortran/lang.opt:281 -msgid "Apply negative sign to zero values" -msgstr "" - -#: fortran/lang.opt:285 -#, fuzzy -msgid "Append underscores to externally visible names" -msgstr "Mai agregar un segon subratllat als externs" - -#: fortran/lang.opt:289 -msgid "Statically link the GNU Fortran helper library (libgfortran)" -msgstr "" - -#: fortran/lang.opt:293 -msgid "Conform to the ISO Fortran 2003 standard" -msgstr "" - -#: fortran/lang.opt:297 -msgid "Conform to the ISO Fortran 95 standard" -msgstr "" - -#: fortran/lang.opt:301 -msgid "Conform to nothing in particular" -msgstr "" - -#: fortran/lang.opt:305 -msgid "Accept extensions to support legacy code" -msgstr "" - -#: treelang/lang.opt:30 -msgid "Trace lexical analysis" -msgstr "" - -#: treelang/lang.opt:34 -#, fuzzy -msgid "Trace the parsing process" -msgstr "Apuntar al processador AM33" - -#: config/alpha/alpha.opt:23 config/i386/i386.opt:155 -msgid "Do not use hardware fp" -msgstr "No usar fp de maquinari" - -#: config/alpha/alpha.opt:27 -msgid "Use fp registers" -msgstr "Usar registres fp" - -#: config/alpha/alpha.opt:31 -msgid "Assume GAS" -msgstr "Assumir GAS" - -#: config/alpha/alpha.opt:35 -msgid "Do not assume GAS" -msgstr "No assumir GAS" - -#: config/alpha/alpha.opt:39 -msgid "Request IEEE-conformant math library routines (OSF/1)" -msgstr "Requerir rutines de biblioteca matemtica que compleixin amb IEEE (OSF/1)" - -#: config/alpha/alpha.opt:43 -msgid "Emit IEEE-conformant code, without inexact exceptions" -msgstr "Emetre codi que compleixi amb IEEE, sense excepcions inexactes" - -#: config/alpha/alpha.opt:50 -msgid "Do not emit complex integer constants to read-only memory" -msgstr "No emetre constants enteres complexes a memria de noms lectura" - -#: config/alpha/alpha.opt:54 -msgid "Use VAX fp" -msgstr "Usar fp VAX" - -#: config/alpha/alpha.opt:58 -msgid "Do not use VAX fp" -msgstr "No usar fp VAX" - -#: config/alpha/alpha.opt:62 -msgid "Emit code for the byte/word ISA extension" -msgstr "Emetre codi per a l'extensi ISA octet/word" - -#: config/alpha/alpha.opt:66 -msgid "Emit code for the motion video ISA extension" -msgstr "Emetre codi per a l'extensi ISA de vdeo en moviment" - -#: config/alpha/alpha.opt:70 -msgid "Emit code for the fp move and sqrt ISA extension" -msgstr "Emetre codi per a l'extensi ISA de move i sqrt de fp" - -#: config/alpha/alpha.opt:74 -msgid "Emit code for the counting ISA extension" -msgstr "Emetre codi per a l'extensi ISA de compte" - -#: config/alpha/alpha.opt:78 -msgid "Emit code using explicit relocation directives" -msgstr "Emetre codi utilitzant directives explcites de reassignaci" - -#: config/alpha/alpha.opt:82 -msgid "Emit 16-bit relocations to the small data areas" -msgstr "Emetre reassignaci de 16 bits per a les rees de dades petites" - -#: config/alpha/alpha.opt:86 -msgid "Emit 32-bit relocations to the small data areas" -msgstr "Emetre reassignaci de 32 bits per a les rees de dades petites" - -#: config/alpha/alpha.opt:90 -#, fuzzy -msgid "Emit direct branches to local functions" -msgstr "Ometre el marc de referncia per a les funcions fulles" - -#: config/alpha/alpha.opt:94 -#, fuzzy -msgid "Emit indirect branches to local functions" -msgstr "Ometre el marc de referncia per a les funcions fulles" - -#: config/alpha/alpha.opt:98 -msgid "Emit rdval instead of rduniq for thread pointer" -msgstr "" - -#: config/alpha/alpha.opt:102 config/s390/s390.opt:59 -#: config/sparc/long-double-switch.opt:23 -#, fuzzy -msgid "Use 128-bit long double" -msgstr "Usar long doubles de 128 bits" - -#: config/alpha/alpha.opt:106 config/s390/s390.opt:63 -#: config/sparc/long-double-switch.opt:27 -#, fuzzy -msgid "Use 64-bit long double" -msgstr "Usar long doubles de 64 bit" - -#: config/alpha/alpha.opt:110 -msgid "Use features of and schedule given CPU" -msgstr "Usar les caracterstiques d'el i el planificador del CPU donat" - -#: config/alpha/alpha.opt:114 -msgid "Schedule given CPU" -msgstr "planificat per al CPU donat" - -#: config/alpha/alpha.opt:118 -msgid "Control the generated fp rounding mode" -msgstr "Controlar el mode d'arrodoniment generat de fp" - -#: config/alpha/alpha.opt:122 -msgid "Control the IEEE trap mode" -msgstr "Controlar el mode de captura IEEE" - -#: config/alpha/alpha.opt:126 -msgid "Control the precision given to fp exceptions" -msgstr "Controlar la precisi donada a les excepcions de fp" - -#: config/alpha/alpha.opt:130 -msgid "Tune expected memory latency" -msgstr "Ajustar la latncia esperada de memria" - -#: config/alpha/alpha.opt:134 config/ia64/ia64.opt:93 -#: config/rs6000/sysv4.opt:32 -msgid "Specify bit size of immediate TLS offsets" -msgstr "" - -#: config/frv/frv.opt:23 -#, fuzzy -msgid "Use 4 media accumulators" -msgstr "Usar el acumulador de multiplicaci" - -#: config/frv/frv.opt:27 -#, fuzzy -msgid "Use 8 media accumulators" -msgstr "Usar el acumulador de multiplicaci" - -#: config/frv/frv.opt:31 -#, fuzzy -msgid "Enable label alignment optimizations" -msgstr "Activar les optimitzacions del enllaador" - -#: config/frv/frv.opt:35 -#, fuzzy -msgid "Dynamically allocate cc registers" -msgstr "No assignar el registre BK" - -#: config/frv/frv.opt:42 -msgid "Set the cost of branches" -msgstr "" - -#: config/frv/frv.opt:46 -msgid "Enable conditional execution other than moves/scc" -msgstr "" - -#: config/frv/frv.opt:50 -#, fuzzy -msgid "Change the maximum length of conditionally-executed sequences" -msgstr "La longitud mxima de la llista d'operacions pendents del planificador de tasques" - -#: config/frv/frv.opt:54 -msgid "Change the number of temporary registers that are available to conditionally-executed sequences" -msgstr "" - -#: config/frv/frv.opt:58 -#, fuzzy -msgid "Enable conditional moves" -msgstr "Activar l's de les instruccions condicionals move" - -#: config/frv/frv.opt:62 -#, fuzzy -msgid "Set the target CPU type" -msgstr "Especificar el nom del CPU destinaci" - -#: config/frv/frv.opt:84 -#, fuzzy -msgid "Use fp double instructions" -msgstr "Usar instruccions AltiVec" - -#: config/frv/frv.opt:88 -msgid "Change the ABI to allow double word insns" -msgstr "" - -#: config/frv/frv.opt:92 config/bfin/bfin.opt:73 -#, fuzzy -msgid "Enable Function Descriptor PIC mode" -msgstr "Habilitar l'anlisi de perfil de les funcions" - -#: config/frv/frv.opt:96 -msgid "Just use icc0/fcc0" -msgstr "" - -#: config/frv/frv.opt:100 -msgid "Only use 32 FPRs" -msgstr "" - -#: config/frv/frv.opt:104 -msgid "Use 64 FPRs" -msgstr "" - -#: config/frv/frv.opt:108 -msgid "Only use 32 GPRs" -msgstr "" - -#: config/frv/frv.opt:112 -msgid "Use 64 GPRs" -msgstr "" - -#: config/frv/frv.opt:116 -msgid "Enable use of GPREL for read-only data in FDPIC" -msgstr "" - -#: config/frv/frv.opt:120 config/rs6000/rs6000.opt:112 -#: config/pdp11/pdp11.opt:71 -msgid "Use hardware floating point" -msgstr "Usar coma flotant de maquinari" - -#: config/frv/frv.opt:124 config/bfin/bfin.opt:77 -#, fuzzy -msgid "Enable inlining of PLT in function calls" -msgstr "Activar l's de la instrucci RTPS" - -#: config/frv/frv.opt:128 -#, fuzzy -msgid "Enable PIC support for building libraries" -msgstr "Activar el suport per a objectes enormes" - -#: config/frv/frv.opt:132 -msgid "Follow the EABI linkage requirements" -msgstr "" - -#: config/frv/frv.opt:136 -#, fuzzy -msgid "Disallow direct calls to global functions" -msgstr "Ometre el marc de referncia per a les funcions fulles" - -#: config/frv/frv.opt:140 -#, fuzzy -msgid "Use media instructions" -msgstr "Usar instruccions de camps de bit" - -#: config/frv/frv.opt:144 -#, fuzzy -msgid "Use multiply add/subtract instructions" -msgstr "Usar instruccions de fp per a multiplicar-acumular" - -#: config/frv/frv.opt:148 -msgid "Enable optimizing &&/|| in conditional execution" -msgstr "" - -#: config/frv/frv.opt:152 -#, fuzzy -msgid "Enable nested conditional execution optimizations" -msgstr "Activar l's de les instruccions condicionals move" - -#: config/frv/frv.opt:157 -msgid "Do not mark ABI switches in e_flags" -msgstr "" - -#: config/frv/frv.opt:161 -msgid "Remove redundant membars" -msgstr "" - -#: config/frv/frv.opt:165 -#, fuzzy -msgid "Pack VLIW instructions" -msgstr "Usar instruccions AltiVec" - -#: config/frv/frv.opt:169 -msgid "Enable setting GPRs to the result of comparisons" -msgstr "" - -#: config/frv/frv.opt:173 -msgid "Change the amount of scheduler lookahead" -msgstr "" - -#: config/frv/frv.opt:177 config/pa/pa.opt:104 -msgid "Use software floating point" -msgstr "Usar coma flotant de programari" - -#: config/frv/frv.opt:181 -msgid "Assume a large TLS segment" -msgstr "" - -#: config/frv/frv.opt:185 -#, fuzzy -msgid "Do not assume a large TLS segment" -msgstr "No assumir GAS" - -#: config/frv/frv.opt:190 -msgid "Cause gas to print tomcat statistics" -msgstr "" - -#: config/frv/frv.opt:195 -msgid "Link with the library-pic libraries" -msgstr "" - -#: config/frv/frv.opt:199 -msgid "Allow branches to be packed with other instructions" -msgstr "" - -#: config/mn10300/mn10300.opt:23 -msgid "Target the AM33 processor" -msgstr "Apuntar al processador AM33" - -#: config/mn10300/mn10300.opt:27 -#, fuzzy -msgid "Target the AM33/2.0 processor" -msgstr "Apuntar al processador AM33" - -#: config/mn10300/mn10300.opt:31 -msgid "Work around hardware multiply bug" -msgstr "Evitar el error de multiplicaci de maquinari" - -#: config/mn10300/mn10300.opt:36 -msgid "Enable linker relaxations" -msgstr "Activar la relaxaci del enllaador" - -#: config/mn10300/mn10300.opt:40 -msgid "Return pointers in both a0 and d0" -msgstr "" - -#: config/s390/tpf.opt:23 -msgid "Enable TPF-OS tracing code" -msgstr "" - -#: config/s390/tpf.opt:27 -#, fuzzy -msgid "Specify main object for TPF-OS" -msgstr "Especificar el nombre mxim d'iteracions per a RPTS" - -#: config/s390/s390.opt:23 -#, fuzzy -msgid "31 bit ABI" -msgstr "Usar el ABI 64 bits" - -#: config/s390/s390.opt:27 -#, fuzzy -msgid "64 bit ABI" -msgstr "Usar el ABI 64 bits" - -#: config/s390/s390.opt:31 config/i386/i386.opt:59 config/spu/spu.opt:60 -msgid "Generate code for given CPU" -msgstr "Generar codi per al CPU donat" - -#: config/s390/s390.opt:35 -msgid "Maintain backchain pointer" -msgstr "" - -#: config/s390/s390.opt:39 -msgid "Additional debug prints" -msgstr "Impressions addicionals de depuraci" - -#: config/s390/s390.opt:43 -msgid "ESA/390 architecture" -msgstr "" - -#: config/s390/s390.opt:47 -#, fuzzy -msgid "Enable fused multiply/add instructions" -msgstr "Generar instruccions multiply/add de curt circuit" - -#: config/s390/s390.opt:51 -#, fuzzy -msgid "Enable decimal floating point hardware support" -msgstr "la constant de coma flotant hexadecimal requereixe un exponent" - -#: config/s390/s390.opt:55 -#, fuzzy -msgid "Enable hardware floating point" -msgstr "Usar coma flotant de maquinari" - -#: config/s390/s390.opt:67 -msgid "Use packed stack layout" -msgstr "" - -#: config/s390/s390.opt:71 -msgid "Use bras for executable < 64k" -msgstr "Usar bras per a executable < 64k" - -#: config/s390/s390.opt:75 -#, fuzzy -msgid "Disable hardware floating point" -msgstr "Usar coma flotant de maquinari" - -#: config/s390/s390.opt:79 -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:83 -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:87 config/ia64/ia64.opt:97 config/sparc/sparc.opt:95 -#: config/i386/i386.opt:183 config/rs6000/rs6000.opt:226 config/spu/spu.opt:64 -msgid "Schedule code for given CPU" -msgstr "Codi de planificador per al CPU donat" - -#: config/s390/s390.opt:91 -msgid "mvcle use" -msgstr "s de mvcle" - -#: config/s390/s390.opt:95 -msgid "Warn if a function uses alloca or creates an array with dynamic size" -msgstr "" - -#: config/s390/s390.opt:99 -msgid "Warn if a single function's framesize exceeds the given framesize" -msgstr "" - -#: config/s390/s390.opt:103 -msgid "z/Architecture" -msgstr "" - -#: config/ia64/ilp32.opt:3 -#, fuzzy -msgid "Generate ILP32 code" -msgstr "Generar codi 32 bit per a i386" - -#: config/ia64/ilp32.opt:7 -#, fuzzy -msgid "Generate LP64 code" -msgstr "Generar codi 64 bit per a x86-64" - -#: config/ia64/ia64.opt:3 -msgid "Generate big endian code" -msgstr "Generar codi big endian" - -#: config/ia64/ia64.opt:7 -msgid "Generate little endian code" -msgstr "Generar codi little endian" - -#: config/ia64/ia64.opt:11 -msgid "Generate code for GNU as" -msgstr "Generar codi per a GNU as" - -#: config/ia64/ia64.opt:15 -msgid "Generate code for GNU ld" -msgstr "Generar codi per a GNU ld" - -#: config/ia64/ia64.opt:19 -msgid "Emit stop bits before and after volatile extended asms" -msgstr "Emetre bits de desocupada abans i desprs de asms estesos amb volatile" - -#: config/ia64/ia64.opt:23 -msgid "Use in/loc/out register names" -msgstr "Usar noms de registre in/loc/out" - -#: config/ia64/ia64.opt:30 -msgid "Enable use of sdata/scommon/sbss" -msgstr "Activar l's de sdata/scommon/sbss" - -#: config/ia64/ia64.opt:34 -msgid "Generate code without GP reg" -msgstr "Generar codi sense registre GP" - -#: config/ia64/ia64.opt:38 -msgid "gp is constant (but save/restore gp on indirect calls)" -msgstr "gp s constant (per hi ha save/restore de gp en crides indirectes)" - -#: config/ia64/ia64.opt:42 -msgid "Generate self-relocatable code" -msgstr "Generar codi self-relocatable" - -#: config/ia64/ia64.opt:46 -msgid "Generate inline floating point division, optimize for latency" -msgstr "Generar divisi de coma flotant inline, optimitzar per a latncia" - -#: config/ia64/ia64.opt:50 -msgid "Generate inline floating point division, optimize for throughput" -msgstr "Generar divisi de coma flotant inline, optimitzar per a sortida" - -#: config/ia64/ia64.opt:57 -msgid "Generate inline integer division, optimize for latency" -msgstr "Generar divisi entera inline, optimitzar per a latncia" - -#: config/ia64/ia64.opt:61 -msgid "Generate inline integer division, optimize for throughput" -msgstr "Generar divisi entera inline, optimitzar per a sortida" - -#: config/ia64/ia64.opt:65 -#, fuzzy -msgid "Do not inline integer division" -msgstr "No avisar sobre la divisi entera per zero en temps de compilaci" - -#: config/ia64/ia64.opt:69 -msgid "Generate inline square root, optimize for latency" -msgstr "Generar arrel quadrada inline, optimitzar per a latncia" - -#: config/ia64/ia64.opt:73 -msgid "Generate inline square root, optimize for throughput" -msgstr "Generar arrel quadrada inline, optimitzar per a sortida" - -#: config/ia64/ia64.opt:77 -#, fuzzy -msgid "Do not inline square root" -msgstr "No desactivar registres d'espai" - -#: config/ia64/ia64.opt:81 -msgid "Enable Dwarf 2 line debug info via GNU as" -msgstr "Activar la informaci de la lnia de depuraci Dwarf2 a travs com de GNU" - -#: config/ia64/ia64.opt:85 -msgid "Enable earlier placing stop bits for better scheduling" -msgstr "" - -#: config/ia64/ia64.opt:89 config/spu/spu.opt:56 config/pa/pa.opt:51 -msgid "Specify range of registers to make fixed" -msgstr "Especifica el rang de registres a convertir en fixos" - -#: config/ia64/ia64.opt:101 -#, fuzzy -msgid "Use data speculation before reload" -msgstr "Permetre el moviment especulatiu de ms crregues" - -#: config/ia64/ia64.opt:105 -msgid "Use data speculation after reload" -msgstr "" - -#: config/ia64/ia64.opt:109 -#, fuzzy -msgid "Use control speculation" -msgstr "Crear una aplicaci de consola" - -#: config/ia64/ia64.opt:113 -msgid "Use in block data speculation before reload" -msgstr "" - -#: config/ia64/ia64.opt:117 -msgid "Use in block data speculation after reload" -msgstr "" - -#: config/ia64/ia64.opt:121 -msgid "Use in block control speculation" -msgstr "" - -#: config/ia64/ia64.opt:125 -msgid "Use simple data speculation check" -msgstr "" - -#: config/ia64/ia64.opt:129 -msgid "Use simple data speculation check for control speculation" -msgstr "" - -#: config/ia64/ia64.opt:133 -msgid "Print information about speculative motions." -msgstr "" - -#: config/ia64/ia64.opt:137 -msgid "If set, data speculative instructions will be chosen for schedule only if there are no other choices at the moment " -msgstr "" - -#: config/ia64/ia64.opt:141 -msgid "If set, control speculative instructions will be chosen for schedule only if there are no other choices at the moment " -msgstr "" - -#: config/ia64/ia64.opt:145 -msgid "Count speculative dependencies while calculating priority of instructions" -msgstr "" - -#: config/m32c/m32c.opt:24 config/bfin/bfin.opt:23 config/mt/mt.opt:27 -msgid "Use simulator runtime" -msgstr "" - -#: config/m32c/m32c.opt:28 -#, fuzzy -msgid "Compile code for R8C variants" -msgstr "Compilar per a punters de 64-bit" - -#: config/m32c/m32c.opt:32 -#, fuzzy -msgid "Compile code for M16C variants" -msgstr "Compilar per a punters de 64-bit" - -#: config/m32c/m32c.opt:36 -#, fuzzy -msgid "Compile code for M32CM variants" -msgstr "Compilar per a punters de 32-bit" - -#: config/m32c/m32c.opt:40 -#, fuzzy -msgid "Compile code for M32C variants" -msgstr "Compilar per a punters de 32-bit" - -#: config/m32c/m32c.opt:44 -msgid "Number of memreg bytes (default: 16, range: 0..16)" -msgstr "" - -#: config/sparc/little-endian.opt:23 -#, fuzzy -msgid "Generate code for little-endian" -msgstr "Generar codi per a little endian" - -#: config/sparc/little-endian.opt:27 -#, fuzzy -msgid "Generate code for big-endian" -msgstr "Generar codi per a big endian" - -#: config/sparc/sparc.opt:23 config/sparc/sparc.opt:27 -#, fuzzy -msgid "Use hardware FP" -msgstr "Usar fp de maquinari" - -#: config/sparc/sparc.opt:31 -#, fuzzy -msgid "Do not use hardware FP" -msgstr "No usar fp de maquinari" - -#: config/sparc/sparc.opt:35 -msgid "Assume possible double misalignment" -msgstr "Assumir desalineaci de double possible" - -#: config/sparc/sparc.opt:39 -msgid "Pass -assert pure-text to linker" -msgstr "Passar el text pur de -assert al enllaador" - -#: config/sparc/sparc.opt:43 -msgid "Use ABI reserved registers" -msgstr "Usar els registres ABI reservats" - -#: config/sparc/sparc.opt:47 -#, fuzzy -msgid "Use hardware quad FP instructions" -msgstr "Usar instruccions de fp quad de maquinari" - -#: config/sparc/sparc.opt:51 -msgid "Do not use hardware quad fp instructions" -msgstr "No usar instruccions de fp quad de maquinari" - -#: config/sparc/sparc.opt:55 -#, fuzzy -msgid "Compile for V8+ ABI" -msgstr "Compilar per a el ABI de v8plus" - -#: config/sparc/sparc.opt:59 -#, fuzzy -msgid "Use UltraSPARC Visual Instruction Set extensions" -msgstr "Utilitzar el Conjunt d'Instruccions Visuals" - -#: config/sparc/sparc.opt:63 -msgid "Pointers are 64-bit" -msgstr "El punters sn de 64 bits" - -#: config/sparc/sparc.opt:67 -msgid "Pointers are 32-bit" -msgstr "El punters sn de 32 bits" - -#: config/sparc/sparc.opt:71 -msgid "Use 64-bit ABI" -msgstr "Usar el ABI 64 bits" - -#: config/sparc/sparc.opt:75 -msgid "Use 32-bit ABI" -msgstr "Usar el ABI 32 bits" - -#: config/sparc/sparc.opt:79 -msgid "Use stack bias" -msgstr "Usar tendncia de la pila" - -#: config/sparc/sparc.opt:83 -msgid "Use structs on stronger alignment for double-word copies" -msgstr "Usar structs en alineaci ms forta per a cpies double-word" - -#: config/sparc/sparc.opt:87 -msgid "Optimize tail call instructions in assembler and linker" -msgstr "Optimitzar les instruccions de la crida extrem en l'ensamblador i l'enllaador" - -#: config/sparc/sparc.opt:91 config/rs6000/rs6000.opt:222 -msgid "Use features of and schedule code for given CPU" -msgstr "Usar caracterstiques i calendaritzar el codi per al CPU donat" - -#: config/sparc/sparc.opt:99 -#, fuzzy -msgid "Use given SPARC-V9 code model" -msgstr "Usar el model de codi del SPARC donat" - -#: config/sparc/sparc.opt:103 -msgid "Enable strict 32-bit psABI struct return checking." -msgstr "" - -#: config/m32r/m32r.opt:23 -#, fuzzy -msgid "Compile for the m32rx" -msgstr "Compilar per a un 68HC12" - -#: config/m32r/m32r.opt:27 -#, fuzzy -msgid "Compile for the m32r2" -msgstr "Compilar per a un 68HC12" - -#: config/m32r/m32r.opt:31 -#, fuzzy -msgid "Compile for the m32r" -msgstr "Compilar per a un 68HC12" - -#: config/m32r/m32r.opt:35 -msgid "Align all loops to 32 byte boundary" -msgstr "Alinear tots els cicles al lmit de 32 octet" - -#: config/m32r/m32r.opt:39 -msgid "Prefer branches over conditional execution" -msgstr "Preferir les branques sobre l'execuci condicional" - -#: config/m32r/m32r.opt:43 -msgid "Give branches their default cost" -msgstr "" - -#: config/m32r/m32r.opt:47 -msgid "Display compile time statistics" -msgstr "Mostrar estadstiques de tepms de compilaci" - -#: config/m32r/m32r.opt:51 -msgid "Specify cache flush function" -msgstr "Especificar una funci de neteja de memria cau" - -#: config/m32r/m32r.opt:55 -#, fuzzy -msgid "Specify cache flush trap number" -msgstr "Especificar una funci de neteja de memria cau" - -#: config/m32r/m32r.opt:59 -msgid "Only issue one instruction per cycle" -msgstr "Noms executar una instrucci per cicle" - -#: config/m32r/m32r.opt:63 -#, fuzzy -msgid "Allow two instructions to be issued per cycle" -msgstr "Noms executar una instrucci per cicle" - -#: config/m32r/m32r.opt:67 -msgid "Code size: small, medium or large" -msgstr "Grandria del codi: small, medium o large" - -#: config/m32r/m32r.opt:71 -msgid "Don't call any cache flush functions" -msgstr "No cridar cap funci de neteja de memria cau" - -#: config/m32r/m32r.opt:75 -#, fuzzy -msgid "Don't call any cache flush trap" -msgstr "No cridar cap funci de neteja de memria cau" - -#: config/m32r/m32r.opt:82 -msgid "Small data area: none, sdata, use" -msgstr " rea de dades small: none, sdata, use" - -#: config/m68k/m68k.opt:23 -msgid "Generate code for a 520X" -msgstr "Generar codi per a un 520X" - -#: config/m68k/m68k.opt:27 -#, fuzzy -msgid "Generate code for a 5206e" -msgstr "Generar codi per a un 520X" - -#: config/m68k/m68k.opt:31 -#, fuzzy -msgid "Generate code for a 528x" -msgstr "Generar codi per a un 520X" - -#: config/m68k/m68k.opt:35 -#, fuzzy -msgid "Generate code for a 5307" -msgstr "Generar codi per a un 520X" - -#: config/m68k/m68k.opt:39 -#, fuzzy -msgid "Generate code for a 5407" -msgstr "Generar codi per a un 520X" - -#: config/m68k/m68k.opt:43 config/m68k/m68k.opt:104 -msgid "Generate code for a 68000" -msgstr "Generar codi per a un 68000" - -#: config/m68k/m68k.opt:47 -#, fuzzy -msgid "Generate code for a 68010" -msgstr "Generar codi per a un 68020" - -#: config/m68k/m68k.opt:51 config/m68k/m68k.opt:108 -msgid "Generate code for a 68020" -msgstr "Generar codi per a un 68020" - -#: config/m68k/m68k.opt:55 -msgid "Generate code for a 68040, without any new instructions" -msgstr "Generar codi per a un 68040, sense cap instrucci nova" - -#: config/m68k/m68k.opt:59 -msgid "Generate code for a 68060, without any new instructions" -msgstr "Generar codi per a un 68060, sense cap instrucci nova" - -#: config/m68k/m68k.opt:63 -msgid "Generate code for a 68030" -msgstr "Generar codi per a un 68030" - -#: config/m68k/m68k.opt:67 -msgid "Generate code for a 68040" -msgstr "Generar codi per a un 68040" - -#: config/m68k/m68k.opt:71 -msgid "Generate code for a 68060" -msgstr "Generar codi per a un 68060" - -#: config/m68k/m68k.opt:75 -msgid "Generate code for a 68302" -msgstr "Generar codi per a un 68302" - -#: config/m68k/m68k.opt:79 -msgid "Generate code for a 68332" -msgstr "Generar codi per a un 68332" - -#: config/m68k/m68k.opt:84 -msgid "Generate code for a 68851" -msgstr "Generar codi per a un 68851" - -#: config/m68k/m68k.opt:88 -#, fuzzy -msgid "Generate code that uses 68881 floating-point instructions" -msgstr "Usar instruccions de maquinari per a coma flotant" - -#: config/m68k/m68k.opt:92 -msgid "Align variables on a 32-bit boundary" -msgstr "Alinear les variables en un lmit de 32-bit" - -#: config/m68k/m68k.opt:96 config/arm/arm.opt:49 config/score/score.opt:63 -msgid "Specify the name of the target architecture" -msgstr "Especificar el nom de l'arquitectura destinaci" - -#: config/m68k/m68k.opt:100 -msgid "Use the bit-field instructions" -msgstr "Usar instruccions de camps de bit" - -#: config/m68k/m68k.opt:112 -#, fuzzy -msgid "Generate code for a ColdFire v4e" -msgstr "Generar codi per a M*Core M340" - -#: config/m68k/m68k.opt:116 -#, fuzzy -msgid "Specify the target CPU" -msgstr "Especificar el nom del CPU destinaci" - -#: config/m68k/m68k.opt:120 -msgid "Generate code for a cpu32" -msgstr "Generar codi per a un cpu32" - -#: config/m68k/m68k.opt:124 -#, fuzzy -msgid "Use hardware division instructions on ColdFire" -msgstr "Usar instruccions de fp quad de maquinari" - -#: config/m68k/m68k.opt:128 -#, fuzzy -msgid "Generate code for a Fido A" -msgstr "Generar codi per a un Sun FPA" - -#: config/m68k/m68k.opt:132 -#, fuzzy -msgid "Generate code which uses hardware floating point instructions" -msgstr "Usar instruccions de maquinari per a coma flotant" - -#: config/m68k/m68k.opt:136 -msgid "Enable ID based shared library" -msgstr "" - -#: config/m68k/m68k.opt:140 -msgid "Do not use the bit-field instructions" -msgstr "No usar instruccions de camps de bit" - -#: config/m68k/m68k.opt:144 -msgid "Use normal calling convention" -msgstr "Usar convenci de cridada normal" - -#: config/m68k/m68k.opt:148 -#, fuzzy -msgid "Consider type 'int' to be 32 bits wide" -msgstr "Considerar que el tipus \"int\" s de 32 bits d'amplria" - -#: config/m68k/m68k.opt:152 -msgid "Generate pc-relative code" -msgstr "Generar codi relatiu al pc" - -#: config/m68k/m68k.opt:156 -msgid "Use different calling convention using 'rtd'" -msgstr "Usar la convenci de cridada diferent usant 'rtd'" - -#: config/m68k/m68k.opt:160 config/bfin/bfin.opt:61 -msgid "Enable separate data segment" -msgstr "" - -#: config/m68k/m68k.opt:164 config/bfin/bfin.opt:57 -msgid "ID of shared library to build" -msgstr "" - -#: config/m68k/m68k.opt:168 -#, fuzzy -msgid "Consider type 'int' to be 16 bits wide" -msgstr "Considerar que el tipus \"int\" s de 16 bits d'amplria" - -#: config/m68k/m68k.opt:172 -msgid "Generate code with library calls for floating point" -msgstr "Generar codi amb crides a biblioteques per a coma flotant" - -#: config/m68k/m68k.opt:176 -msgid "Do not use unaligned memory references" -msgstr "No permetre referncies a memria sense alinear" - -#: config/m68k/m68k.opt:180 -#, fuzzy -msgid "Tune for the specified target CPU or architecture" -msgstr "Especificar el nom de l'arquitectura destinaci" - -#: config/m68k/ieee.opt:24 config/i386/i386.opt:95 -msgid "Use IEEE math for fp comparisons" -msgstr "Usar matemtica IEEE per a comparances fp" - -#: config/i386/djgpp.opt:25 -msgid "Ignored (obsolete)" -msgstr "" - -#: config/i386/i386.opt:23 -msgid "sizeof(long double) is 16" -msgstr "sizeof(long double) s 16." - -#: config/i386/i386.opt:27 config/i386/i386.opt:91 -msgid "Use hardware fp" -msgstr "Usar fp de maquinari" - -#: config/i386/i386.opt:31 -msgid "sizeof(long double) is 12" -msgstr "sizeof(long double) s 12." - -#: config/i386/i386.opt:35 -msgid "Reserve space for outgoing arguments in the function prologue" -msgstr "" - -#: config/i386/i386.opt:39 -msgid "Align some doubles on dword boundary" -msgstr "Alinear alguns dobles en lmits de dword" - -#: config/i386/i386.opt:43 -msgid "Function starts are aligned to this power of 2" -msgstr "Els inicis de les funcions sn alineats a aquesta potncia de 2" - -#: config/i386/i386.opt:47 -msgid "Jump targets are aligned to this power of 2" -msgstr "Els objectius de salt sn alineats a aquesta potncia de 2" - -#: config/i386/i386.opt:51 -msgid "Loop code aligned to this power of 2" -msgstr "El codi de cicle s alineat a aquesta potncia de 2" - -#: config/i386/i386.opt:55 -msgid "Align destination of the string operations" -msgstr "Alinear destinaci de les operacions de cadenes" - -#: config/i386/i386.opt:63 -msgid "Use given assembler dialect" -msgstr "Usar el dialecte de l'ensamblador donat" - -#: config/i386/i386.opt:67 -msgid "Branches are this expensive (1-5, arbitrary units)" -msgstr "Les ramificacions sn aix de cares (1-5, unitats arbitrries)" - -#: config/i386/i386.opt:71 -msgid "Data greater than given threshold will go into .ldata section in x86-64 medium model" -msgstr "" - -#: config/i386/i386.opt:75 -msgid "Use given x86-64 code model" -msgstr "Usar el mpdel de codi x86-64 donat" - -#: config/i386/i386.opt:79 -msgid "Generate sin, cos, sqrt for FPU" -msgstr "Generar sin, cos, sqrt per a FPU" - -#: config/i386/i386.opt:83 -msgid "Return values of functions in FPU registers" -msgstr "Retornar valors de funcions en registres FPU" - -#: config/i386/i386.opt:87 -msgid "Generate floating point mathematics using given instruction set" -msgstr "Generar matemtiques de coma flotant usant el conjunt d'instruccions donat" - -#: config/i386/i386.opt:99 -msgid "Inline all known string operations" -msgstr "Convertir a inline totes les operacions de cadenes conegudes" - -#: config/i386/i386.opt:103 -msgid "Inline memset/memcpy string operations, but perform inline version only for small blocks" -msgstr "" - -#: config/i386/i386.opt:111 -msgid "Use native (MS) bitfield layout" -msgstr "" - -#: config/i386/i386.opt:127 -msgid "Omit the frame pointer in leaf functions" -msgstr "Ometre el marc de referncia per a les funcions fulles" - -#: config/i386/i386.opt:131 -msgid "Set 80387 floating-point precision (-mpc32, -mpc64, -mpc80)" -msgstr "" - -#: config/i386/i386.opt:135 -msgid "Attempt to keep stack aligned to this power of 2" -msgstr "Es tracta de mantenir la pila alineada a aquesta potncia de 2" - -#: config/i386/i386.opt:139 -msgid "Use push instructions to save outgoing arguments" -msgstr "Usar instruccions push per a guardar els arguments de sortida" - -#: config/i386/i386.opt:143 -msgid "Use red-zone in the x86-64 code" -msgstr "Usar red-zone en el codi x86-64" - -#: config/i386/i386.opt:147 -msgid "Number of registers used to pass integer arguments" -msgstr "Nombre de registres usats per a passar arguments enters" - -#: config/i386/i386.opt:151 -msgid "Alternate calling convention" -msgstr "Convenci de cridada alternativa" - -#: config/i386/i386.opt:159 -msgid "Use SSE register passing conventions for SF and DF mode" -msgstr "" - -#: config/i386/i386.opt:163 -msgid "Realign stack in prologue" -msgstr "" - -#: config/i386/i386.opt:167 -msgid "Enable stack probing" -msgstr "Habilitar la prova de la pila" - -#: config/i386/i386.opt:171 -msgid "Chose strategy to generate stringop using" -msgstr "" - -#: config/i386/i386.opt:175 -msgid "Use given thread-local storage dialect" -msgstr "Usar el dialecte d'emmagatzematge thread-local donat" - -#: config/i386/i386.opt:179 -#, c-format -msgid "Use direct references against %gs when accessing tls data" -msgstr "" - -#: config/i386/i386.opt:187 -#, fuzzy -msgid "Vector library ABI to use" -msgstr "Especificar el ABI a utilitzar" - -#: config/i386/i386.opt:193 -msgid "Generate 32bit i386 code" -msgstr "Generar codi 32 bit per a i386" - -#: config/i386/i386.opt:197 -msgid "Generate 64bit x86-64 code" -msgstr "Generar codi 64 bit per a x86-64" - -#: config/i386/i386.opt:201 -msgid "Support MMX built-in functions" -msgstr "Donar suport per a funcions internes MMX" - -#: config/i386/i386.opt:205 -msgid "Support 3DNow! built-in functions" -msgstr "Donar suport per a funcions internes 3DNow!" - -#: config/i386/i386.opt:209 -#, fuzzy -msgid "Support Athlon 3Dnow! built-in functions" -msgstr "Donar suport per a funcions internes 3DNow!" - -#: config/i386/i386.opt:213 -msgid "Support MMX and SSE built-in functions and code generation" -msgstr "Donar suport per a funcions internes MMX i SSE i generaci de codi" - -#: config/i386/i386.opt:217 -msgid "Support MMX, SSE and SSE2 built-in functions and code generation" -msgstr "Donar suport per a funcions internes MMX, SSE i SSE2 i generaci de codi" - -#: config/i386/i386.opt:221 -msgid "Support MMX, SSE, SSE2 and SSE3 built-in functions and code generation" -msgstr "Donar suport per a funcions internes MMX, SSE, SSE2 i SSE3 i generaci de codi" - -#: config/i386/i386.opt:225 -#, fuzzy -msgid "Support MMX, SSE, SSE2, SSE3 and SSSE3 built-in functions and code generation" -msgstr "Donar suport per a funcions internes MMX, SSE, SSE2 i SSE3 i generaci de codi" - -#: config/i386/i386.opt:229 -#, fuzzy -msgid "Support MMX, SSE, SSE2, SSE3, SSSE3 and SSE4.1 built-in functions and code generation" -msgstr "Donar suport per a funcions internes MMX, SSE, SSE2 i SSE3 i generaci de codi" - -#: config/i386/i386.opt:233 config/i386/i386.opt:237 -#, fuzzy -msgid "Support MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1 and SSE4.2 built-in functions and code generation" -msgstr "Donar suport per a funcions internes MMX, SSE, SSE2 i SSE3 i generaci de codi" - -#: config/i386/i386.opt:241 -#, fuzzy -msgid "Do not support SSE4.1 and SSE4.2 built-in functions and code generation" -msgstr "No donar suport per a funcions internes MMX, SSE i SSE2 i generaci de codi" - -#: config/i386/i386.opt:245 -#, fuzzy -msgid "Support MMX, SSE, SSE2, SSE3 and SSE4A built-in functions and code generation" -msgstr "Donar suport per a funcions internes MMX, SSE, SSE2 i SSE3 i generaci de codi" - -#: config/i386/i386.opt:249 -#, fuzzy -msgid "Support SSE5 built-in functions and code generation" -msgstr "Donar suport per a funcions internes MMX i SSE i generaci de codi" - -#: config/i386/i386.opt:255 -msgid "Support code generation of Advanced Bit Manipulation (ABM) instructions." -msgstr "" - -#: config/i386/i386.opt:259 -#, fuzzy -msgid "Support code generation of cmpxchg16b instruction." -msgstr "No generar instruccions char" - -#: config/i386/i386.opt:263 -#, fuzzy -msgid "Support code generation of popcnt instruction." -msgstr "No generar instruccions char" - -#: config/i386/i386.opt:267 -msgid "Support code generation of sahf instruction in 64bit x86-64 code." -msgstr "" - -#: config/i386/i386.opt:271 -msgid "Generate reciprocals instead of divss and sqrtss." -msgstr "" - -#: config/i386/i386.opt:275 -#, fuzzy -msgid "Enable automatic generation of fused floating point multiply-add instructions" -msgstr "No generar instruccions multiply/add de curt circuit" - -#: config/i386/cygming.opt:23 -msgid "Create console application" -msgstr "Crear una aplicaci de consola" - -#: config/i386/cygming.opt:27 -msgid "Use the Cygwin interface" -msgstr "Usar la interfcie Cygwin" - -#: config/i386/cygming.opt:31 -msgid "Generate code for a DLL" -msgstr "Generar codi per a una DLL" - -#: config/i386/cygming.opt:35 -msgid "Ignore dllimport for functions" -msgstr "Ignorar dllimport per a funcions" - -#: config/i386/cygming.opt:39 -msgid "Use Mingw-specific thread support" -msgstr "Usar suport de fils especfic de Mingw" - -#: config/i386/cygming.opt:43 -msgid "Set Windows defines" -msgstr "Establir les definicions de Windows" - -#: config/i386/cygming.opt:47 -msgid "Create GUI application" -msgstr "Crear una aplicaci amb interfcie grfica d'usuari (GUI)" - -#: config/i386/sco5.opt:24 -msgid "Generate ELF output" -msgstr "Generar sortida ELF" - -#: config/rs6000/aix41.opt:24 config/rs6000/aix64.opt:32 -msgid "Support message passing with the Parallel Environment" -msgstr "Suport per al pas de missatges amb l'Ambient Parallel" - -#: config/rs6000/aix.opt:24 config/rs6000/rs6000.opt:147 -msgid "Conform more closely to IBM XLC semantics" -msgstr "" - -#: config/rs6000/darwin.opt:24 config/rs6000/sysv4.opt:132 -#, fuzzy -msgid "Generate 64-bit code" -msgstr "Generar codi 64 bit per a x86-64" - -#: config/rs6000/darwin.opt:28 config/rs6000/sysv4.opt:136 -#, fuzzy -msgid "Generate 32-bit code" -msgstr "Generar codi 32 bit per a i386" - -#: config/rs6000/darwin.opt:32 -msgid "Generate code suitable for executables (NOT shared libs)" -msgstr "" - -#: config/rs6000/rs6000.opt:24 -msgid "Use POWER instruction set" -msgstr "Usar el conjunt d'instruccions POWER" - -#: config/rs6000/rs6000.opt:28 -msgid "Do not use POWER instruction set" -msgstr "No usar el conjunt d'instruccions POWER" - -#: config/rs6000/rs6000.opt:32 -msgid "Use POWER2 instruction set" -msgstr "Usar el conjunt d'instruccions POWER2" - -#: config/rs6000/rs6000.opt:36 -msgid "Use PowerPC instruction set" -msgstr "Usar el conjunt d'instruccions PowerPC" - -#: config/rs6000/rs6000.opt:40 -msgid "Do not use PowerPC instruction set" -msgstr "No usar el conjunt d'instruccions PowerPC" - -#: config/rs6000/rs6000.opt:44 -msgid "Use PowerPC-64 instruction set" -msgstr "Usar el conjunt d'instruccions PowerPC-64" - -#: config/rs6000/rs6000.opt:48 -msgid "Use PowerPC General Purpose group optional instructions" -msgstr "Usar el grup opcional d'instruccions PowerPC de Propsit General" - -#: config/rs6000/rs6000.opt:52 -msgid "Use PowerPC Graphics group optional instructions" -msgstr "Usar el grup opcional d'instruccions PowerPC de Grfiques" - -#: config/rs6000/rs6000.opt:56 -#, fuzzy -msgid "Use PowerPC V2.01 single field mfcr instruction" -msgstr "Generar instruccions char" - -#: config/rs6000/rs6000.opt:60 -#, fuzzy -msgid "Use PowerPC V2.02 popcntb instruction" -msgstr "Usar el conjunt d'instruccions PowerPC" - -#: config/rs6000/rs6000.opt:64 -#, fuzzy -msgid "Use PowerPC V2.02 floating point rounding instructions" -msgstr "Usar instruccions de maquinari per a coma flotant" - -#: config/rs6000/rs6000.opt:68 -#, fuzzy -msgid "Use PowerPC V2.05 compare bytes instruction" -msgstr "Usar el conjunt d'instruccions PowerPC" - -#: config/rs6000/rs6000.opt:72 -#, fuzzy -msgid "Use extended PowerPC V2.05 move floating point to/from GPR instructions" -msgstr "Usar instruccions de maquinari per a coma flotant" - -#: config/rs6000/rs6000.opt:76 -msgid "Use AltiVec instructions" -msgstr "Usar instruccions AltiVec" - -#: config/rs6000/rs6000.opt:80 -#, fuzzy -msgid "Use decimal floating point instructions" -msgstr "Usar instruccions de maquinari per a coma flotant" - -#: config/rs6000/rs6000.opt:84 -#, fuzzy -msgid "Use 4xx half-word multiply instructions" -msgstr "Generar instruccions multiply/add de curt circuit" - -#: config/rs6000/rs6000.opt:88 -#, fuzzy -msgid "Use 4xx string-search dlmzb instruction" -msgstr "Usar instruccions AltiVec" - -#: config/rs6000/rs6000.opt:92 -msgid "Generate load/store multiple instructions" -msgstr "Generar mltiples instruccions load/store" - -#: config/rs6000/rs6000.opt:96 -msgid "Generate string instructions for block moves" -msgstr "Generar instruccions de cadena per a moviment de blocs" - -#: config/rs6000/rs6000.opt:100 -msgid "Use new mnemonics for PowerPC architecture" -msgstr "Usar els mnemnics nous per a l'arquitectura PowerPC" - -#: config/rs6000/rs6000.opt:104 -msgid "Use old mnemonics for PowerPC architecture" -msgstr "Usar els mnemnics vells per a l'arquitectura PowerPC" - -#: config/rs6000/rs6000.opt:108 config/pdp11/pdp11.opt:83 -msgid "Do not use hardware floating point" -msgstr "No usa coma flotant de maquinari" - -#: config/rs6000/rs6000.opt:116 -msgid "Do not generate load/store with update instructions" -msgstr "No generar load/store amb instruccions d'actualitzaci" - -#: config/rs6000/rs6000.opt:120 -msgid "Generate load/store with update instructions" -msgstr "Generar load/store amb instruccions d'actualitzaci" - -#: config/rs6000/rs6000.opt:124 -#, fuzzy -msgid "Do not generate fused multiply/add instructions" -msgstr "No generar instruccions multiply/add de curt circuit" - -#: config/rs6000/rs6000.opt:128 -msgid "Generate fused multiply/add instructions" -msgstr "Generar instruccions multiply/add de curt circuit" - -#: config/rs6000/rs6000.opt:132 -#, fuzzy -msgid "Schedule the start and end of the procedure" -msgstr "No calendaritzar l'inici i el final del procediment" - -#: config/rs6000/rs6000.opt:139 -msgid "Return all structures in memory (AIX default)" -msgstr "Regressar totes les estructures en memria (per omissi en AIX)" - -#: config/rs6000/rs6000.opt:143 -msgid "Return small structures in registers (SVR4 default)" -msgstr "Regressar les petites estructures en registres (per omissi en SVR4)" - -#: config/rs6000/rs6000.opt:151 -#, fuzzy -msgid "Generate software reciprocal sqrt for better throughput" -msgstr "Generar arrel quadrada inline, optimitzar per a sortida" - -#: config/rs6000/rs6000.opt:155 -#, fuzzy -msgid "Do not place floating point constants in TOC" -msgstr "No collocar les constants de coma flotant en TOC" - -#: config/rs6000/rs6000.opt:159 -msgid "Place floating point constants in TOC" -msgstr "Collocar les constants de coma flotant en TOC" - -#: config/rs6000/rs6000.opt:163 -#, fuzzy -msgid "Do not place symbol+offset constants in TOC" -msgstr "No collocar les constants smbol+desplaament en TOC" - -#: config/rs6000/rs6000.opt:167 -msgid "Place symbol+offset constants in TOC" -msgstr "Collocar les constants smbol+desplaament en TOC" - -#: config/rs6000/rs6000.opt:178 -msgid "Use only one TOC entry per procedure" -msgstr "" - -#: config/rs6000/rs6000.opt:182 -msgid "Put everything in the regular TOC" -msgstr "Collocar tot en el TOC normal" - -#: config/rs6000/rs6000.opt:186 -msgid "Generate VRSAVE instructions when generating AltiVec code" -msgstr "" - -#: config/rs6000/rs6000.opt:190 -msgid "Deprecated option. Use -mvrsave/-mno-vrsave instead" -msgstr "" - -#: config/rs6000/rs6000.opt:194 -#, fuzzy -msgid "Generate isel instructions" -msgstr "Generar instruccions char" - -#: config/rs6000/rs6000.opt:198 -msgid "Deprecated option. Use -misel/-mno-isel instead" -msgstr "" - -#: config/rs6000/rs6000.opt:202 -#, fuzzy -msgid "Generate SPE SIMD instructions on E500" -msgstr "Generar instruccions char" - -#: config/rs6000/rs6000.opt:206 -#, fuzzy -msgid "Generate PPC750CL paired-single instructions" -msgstr "Generar instruccions char" - -#: config/rs6000/rs6000.opt:210 -msgid "Deprecated option. Use -mspe/-mno-spe instead" -msgstr "" - -#: config/rs6000/rs6000.opt:214 -msgid "Enable debug output" -msgstr "Activar la sortida de depuraci" - -#: config/rs6000/rs6000.opt:218 -msgid "Specify ABI to use" -msgstr "Especificar el ABI a utilitzar" - -#: config/rs6000/rs6000.opt:230 -msgid "Select full, part, or no traceback table" -msgstr "" - -#: config/rs6000/rs6000.opt:234 -#, fuzzy -msgid "Avoid all range limits on call instructions" -msgstr "Evitar tots els lmits de rang en les instruccions de crides" - -#: config/rs6000/rs6000.opt:238 -msgid "Warn about deprecated 'vector long ...' AltiVec type usage" -msgstr "" - -#: config/rs6000/rs6000.opt:242 -msgid "Select GPR floating point method" -msgstr "" - -#: config/rs6000/rs6000.opt:246 -msgid "Specify size of long double (64 or 128 bits)" -msgstr "Especificar la grandria de long double (64 o 128 bits)" - -#: config/rs6000/rs6000.opt:250 -msgid "Determine which dependences between insns are considered costly" -msgstr "" - -#: config/rs6000/rs6000.opt:254 -msgid "Specify which post scheduling nop insertion scheme to apply" -msgstr "" - -#: config/rs6000/rs6000.opt:258 -#, fuzzy -msgid "Specify alignment of structure fields default/natural" -msgstr "Especificar l'alineaci mnima de bit de les estructures" - -#: config/rs6000/rs6000.opt:262 -msgid "Specify scheduling priority for dispatch slot restricted insns" -msgstr "" - -#: config/rs6000/aix64.opt:24 -msgid "Compile for 64-bit pointers" -msgstr "Compilar per a punters de 64-bit" - -#: config/rs6000/aix64.opt:28 -msgid "Compile for 32-bit pointers" -msgstr "Compilar per a punters de 32-bit" - -#: config/rs6000/linux64.opt:24 -#, fuzzy -msgid "Call mcount for profiling before a function prologue" -msgstr "No moure les instruccions al prleg d'una funci" - -#: config/rs6000/sysv4.opt:24 -msgid "Select ABI calling convention" -msgstr "Seleccionar la convenci de cridada ABI" - -#: config/rs6000/sysv4.opt:28 -msgid "Select method for sdata handling" -msgstr "Seleccionar el mtode per al maneig de sdata" - -#: config/rs6000/sysv4.opt:36 config/rs6000/sysv4.opt:40 -msgid "Align to the base type of the bit-field" -msgstr "Alinear al tipus base del camp de bit" - -#: config/rs6000/sysv4.opt:45 config/rs6000/sysv4.opt:49 -msgid "Produce code relocatable at runtime" -msgstr "Produir codi re-ubicable en el moment d'execuci" - -#: config/rs6000/sysv4.opt:53 config/rs6000/sysv4.opt:57 -msgid "Produce little endian code" -msgstr "Produir codi little endian" - -#: config/rs6000/sysv4.opt:61 config/rs6000/sysv4.opt:65 -msgid "Produce big endian code" -msgstr "Produir codi big endian" - -#: config/rs6000/sysv4.opt:70 config/rs6000/sysv4.opt:74 -#: config/rs6000/sysv4.opt:83 config/rs6000/sysv4.opt:100 -#: config/rs6000/sysv4.opt:128 config/rs6000/sysv4.opt:140 -msgid "no description yet" -msgstr "sense descripci encara" - -#: config/rs6000/sysv4.opt:78 -msgid "Assume all variable arg functions are prototyped" -msgstr "" - -#: config/rs6000/sysv4.opt:87 -msgid "Use EABI" -msgstr "Usar EABI" - -#: config/rs6000/sysv4.opt:91 -#, fuzzy -msgid "Allow bit-fields to cross word boundaries" -msgstr "No permetre que els camps de bits creuin els lmits de word" - -#: config/rs6000/sysv4.opt:95 -msgid "Use alternate register names" -msgstr "Usar noms de registre alternats" - -#: config/rs6000/sysv4.opt:104 -msgid "Link with libsim.a, libc.a and sim-crt0.o" -msgstr "Enllaar amb libsim.a, libc.a i sim-crt0.o" - -#: config/rs6000/sysv4.opt:108 -msgid "Link with libads.a, libc.a and crt0.o" -msgstr "Enllaar amb libads.a, libc.a i crt0.o" - -#: config/rs6000/sysv4.opt:112 -msgid "Link with libyk.a, libc.a and crt0.o" -msgstr "Enllaar amb libyk.a, libc.a i crt0.o" - -#: config/rs6000/sysv4.opt:116 -msgid "Link with libmvme.a, libc.a and crt0.o" -msgstr "Enllaar amb libmvme.a, libc.a i crt0.o" - -#: config/rs6000/sysv4.opt:120 -msgid "Set the PPC_EMB bit in the ELF flags header" -msgstr "Activar el bit PPC_EMB en els interruptors de l'encapalat ELF" - -#: config/rs6000/sysv4.opt:124 -msgid "Use the WindISS simulator" -msgstr "" - -#: config/rs6000/sysv4.opt:144 -#, fuzzy -msgid "Generate code to use a non-exec PLT and GOT" -msgstr "Generar codi per a un Sun Sky board" - -#: config/rs6000/sysv4.opt:148 -#, fuzzy -msgid "Generate code for old exec BSS PLT" -msgstr "Generar codi per a un Sun FPA" - -#: config/spu/spu.opt:20 -msgid "Emit warnings when run-time relocations are generated" -msgstr "" - -#: config/spu/spu.opt:24 -msgid "Emit errors when run-time relocations are generated" -msgstr "" - -#: config/spu/spu.opt:28 -msgid "Specify cost of branches (Default 20)" -msgstr "" - -#: config/spu/spu.opt:32 -#, fuzzy -msgid "Make sure loads and stores are not moved past DMA instructions" -msgstr "Generar load/store amb instruccions d'actualitzaci" - -#: config/spu/spu.opt:36 -msgid "volatile must be specified on any memory that is effected by DMA" -msgstr "" - -#: config/spu/spu.opt:40 -#, fuzzy -msgid "Use standard main function as entry for startup" -msgstr "Usar jsr i rts per a crides i retorns de funci" - -#: config/spu/spu.opt:44 -#, fuzzy -msgid "Generate branch hints for branches" -msgstr "Generar instruccions de cadena per a moviment de blocs" - -#: config/spu/spu.opt:48 -#, fuzzy -msgid "Generate code for 18 bit addressing" -msgstr "Generar codi per a big endian" - -#: config/spu/spu.opt:52 -#, fuzzy -msgid "Generate code for 32 bit addressing" -msgstr "Generar codi per a big endian" - -#: config/mcore/mcore.opt:23 -#, fuzzy -msgid "Generate code for the M*Core M210" -msgstr "Generar codi per a M*Core M340" - -#: config/mcore/mcore.opt:27 -msgid "Generate code for the M*Core M340" -msgstr "Generar codi per a M*Core M340" - -#: config/mcore/mcore.opt:31 -msgid "Set maximum alignment to 4" -msgstr "Establir l'alineaci mxima a 4" - -#: config/mcore/mcore.opt:35 -msgid "Force functions to be aligned to a 4 byte boundary" -msgstr "Forar que les funcions s'alinen a un lmit de 4 octet" - -#: config/mcore/mcore.opt:39 -msgid "Set maximum alignment to 8" -msgstr "Establir l'alineaci mxima a 8" - -#: config/mcore/mcore.opt:43 config/score/score.opt:23 -#, fuzzy -msgid "Generate big-endian code" -msgstr "Generar codi big endian" - -#: config/mcore/mcore.opt:47 -msgid "Emit call graph information" -msgstr "Emetre informaci de graf de crides" - -#: config/mcore/mcore.opt:51 -#, fuzzy -msgid "Use the divide instruction" -msgstr "No usar la instrucci divideix" - -#: config/mcore/mcore.opt:55 -msgid "Inline constants if it can be done in 2 insns or less" -msgstr "inline constants si pot ser fet en 2 insns o menys" - -#: config/mcore/mcore.opt:59 config/score/score.opt:27 -#, fuzzy -msgid "Generate little-endian code" -msgstr "Generar codi little endian" - -#: config/mcore/mcore.opt:67 -#, fuzzy -msgid "Use arbitrary sized immediates in bit operations" -msgstr "No intervenir en immediats de grandries arbitrries en operacions de bit" - -#: config/mcore/mcore.opt:71 -msgid "Prefer word accesses over byte accesses" -msgstr "Preferir accessos word sobre accs octet" - -#: config/mcore/mcore.opt:75 -#, fuzzy -msgid "Set the maximum amount for a single stack increment operation" -msgstr "Quantitat mxima per a una sola operaci d'increment de pila" - -#: config/mcore/mcore.opt:79 -#, fuzzy -msgid "Always treat bitfields as int-sized" -msgstr "Tractar sempre als camps de bit com de grandria int" - -#: config/arc/arc.opt:32 -msgid "Prepend the name of the cpu to all public symbol names" -msgstr "" - -#: config/arc/arc.opt:42 -#, fuzzy -msgid "Compile code for ARC variant CPU" -msgstr "Codi de planificador per al CPU donat" - -#: config/arc/arc.opt:46 -msgid "Put functions in SECTION" -msgstr "" - -#: config/arc/arc.opt:50 -msgid "Put data in SECTION" -msgstr "" - -#: config/arc/arc.opt:54 -msgid "Put read-only data in SECTION" -msgstr "" - -#: config/sh/sh.opt:44 -#, fuzzy -msgid "Generate SH1 code" -msgstr "Generar codi SA" - -#: config/sh/sh.opt:48 -#, fuzzy -msgid "Generate SH2 code" -msgstr "Generar codi SA" - -#: config/sh/sh.opt:52 -#, fuzzy -msgid "Generate SH2a code" -msgstr "Generar codi SA" - -#: config/sh/sh.opt:56 -#, fuzzy -msgid "Generate SH2a FPU-less code" -msgstr "Generar codi SA" - -#: config/sh/sh.opt:60 -#, fuzzy -msgid "Generate default single-precision SH2a code" -msgstr "Generar codi little endian" - -#: config/sh/sh.opt:64 -#, fuzzy -msgid "Generate only single-precision SH2a code" -msgstr "Generar codi little endian" - -#: config/sh/sh.opt:68 -#, fuzzy -msgid "Generate SH2e code" -msgstr "Generar codi SA" - -#: config/sh/sh.opt:72 -#, fuzzy -msgid "Generate SH3 code" -msgstr "Generar codi SA" - -#: config/sh/sh.opt:76 -#, fuzzy -msgid "Generate SH3e code" -msgstr "Generar codi SA" - -#: config/sh/sh.opt:80 -#, fuzzy -msgid "Generate SH4 code" -msgstr "Generar codi SA" - -#: config/sh/sh.opt:84 -#, fuzzy -msgid "Generate SH4-100 code" -msgstr "Generar codi SA" - -#: config/sh/sh.opt:88 -#, fuzzy -msgid "Generate SH4-200 code" -msgstr "Generar codi H8S/2600" - -#: config/sh/sh.opt:94 -#, fuzzy -msgid "Generate SH4-300 code" -msgstr "Generar codi H8/300H" - -#: config/sh/sh.opt:98 -#, fuzzy -msgid "Generate SH4 FPU-less code" -msgstr "Generar codi SA" - -#: config/sh/sh.opt:102 -#, fuzzy -msgid "Generate SH4-100 FPU-less code" -msgstr "Generar codi H8/300H" - -#: config/sh/sh.opt:106 -#, fuzzy -msgid "Generate SH4-200 FPU-less code" -msgstr "Generar codi H8S/2600" - -#: config/sh/sh.opt:110 -#, fuzzy -msgid "Generate SH4-300 FPU-less code" -msgstr "Generar codi H8/300H" - -#: config/sh/sh.opt:114 -#, fuzzy -msgid "Generate code for SH4 340 series (MMU/FPU-less)" -msgstr "Generar codi per al CPU C30" - -#: config/sh/sh.opt:119 -#, fuzzy -msgid "Generate code for SH4 400 series (MMU/FPU-less)" -msgstr "Generar codi per al CPU C40" - -#: config/sh/sh.opt:124 -#, fuzzy -msgid "Generate code for SH4 500 series (FPU-less)." -msgstr "Generar codi per al CPU C40" - -#: config/sh/sh.opt:129 -#, fuzzy -msgid "Generate default single-precision SH4 code" -msgstr "Generar codi little endian" - -#: config/sh/sh.opt:133 -msgid "Generate default single-precision SH4-100 code" -msgstr "" - -#: config/sh/sh.opt:137 -msgid "Generate default single-precision SH4-200 code" -msgstr "" - -#: config/sh/sh.opt:141 -msgid "Generate default single-precision SH4-300 code" -msgstr "" - -#: config/sh/sh.opt:145 -#, fuzzy -msgid "Generate only single-precision SH4 code" -msgstr "Generar codi little endian" - -#: config/sh/sh.opt:149 -#, fuzzy -msgid "Generate only single-precision SH4-100 code" -msgstr "Generar codi little endian" - -#: config/sh/sh.opt:153 -#, fuzzy -msgid "Generate only single-precision SH4-200 code" -msgstr "Generar codi little endian" - -#: config/sh/sh.opt:157 -#, fuzzy -msgid "Generate only single-precision SH4-300 code" -msgstr "Generar codi little endian" - -#: config/sh/sh.opt:161 -#, fuzzy -msgid "Generate SH4a code" -msgstr "Generar codi SA" - -#: config/sh/sh.opt:165 -#, fuzzy -msgid "Generate SH4a FPU-less code" -msgstr "Generar codi SA" - -#: config/sh/sh.opt:169 -#, fuzzy -msgid "Generate default single-precision SH4a code" -msgstr "Generar codi little endian" - -#: config/sh/sh.opt:173 -#, fuzzy -msgid "Generate only single-precision SH4a code" -msgstr "Generar codi little endian" - -#: config/sh/sh.opt:177 -#, fuzzy -msgid "Generate SH4al-dsp code" -msgstr "Generar codi SA" - -#: config/sh/sh.opt:181 -#, fuzzy -msgid "Generate 32-bit SHmedia code" -msgstr "Generar codi 32 bit per a i386" - -#: config/sh/sh.opt:185 -#, fuzzy -msgid "Generate 32-bit FPU-less SHmedia code" -msgstr "Generar codi little endian" - -#: config/sh/sh.opt:189 -#, fuzzy -msgid "Generate 64-bit SHmedia code" -msgstr "Generar codi 64 bit per a x86-64" - -#: config/sh/sh.opt:193 -#, fuzzy -msgid "Generate 64-bit FPU-less SHmedia code" -msgstr "Generar codi little endian" - -#: config/sh/sh.opt:197 -#, fuzzy -msgid "Generate SHcompact code" -msgstr "Generar codi SA" - -#: config/sh/sh.opt:201 -#, fuzzy -msgid "Generate FPU-less SHcompact code" -msgstr "Generar codi relatiu al pc" - -#: config/sh/sh.opt:205 -msgid "Throttle unrolling to avoid thrashing target registers unless the unroll benefit outweighs this" -msgstr "" - -#: config/sh/sh.opt:209 -#, fuzzy -msgid "Generate code in big endian mode" -msgstr "Generar codi per a big endian" - -#: config/sh/sh.opt:213 -#, fuzzy -msgid "Generate 32-bit offsets in switch tables" -msgstr "Usar entrades de 4 octet en les matrius de switch" - -#: config/sh/sh.opt:217 -msgid "Cost to assume for a branch insn" -msgstr "" - -#: config/sh/sh.opt:221 -msgid "Enable cbranchdi4 pattern" -msgstr "" - -#: config/sh/sh.opt:225 -msgid "Expand cbranchdi4 pattern early into separate comparisons and branches." -msgstr "" - -#: config/sh/sh.opt:229 -msgid "Emit cmpeqdi_t pattern even when -mcbranchdi and -mexpand-cbranchdi are in effect." -msgstr "" - -#: config/sh/sh.opt:233 -msgid "Enable SH5 cut2 workaround" -msgstr "" - -#: config/sh/sh.opt:237 -#, fuzzy -msgid "Align doubles at 64-bit boundaries" -msgstr "Alinear les variables en un lmit de 16-bit" - -#: config/sh/sh.opt:241 -msgid "Division strategy, one of: call, call2, fp, inv, inv:minlat, inv20u, inv20l, inv:call, inv:call2, inv:fp, call-div1, call-fp, call-table" -msgstr "" - -#: config/sh/sh.opt:245 -#, fuzzy -msgid "Specify name for 32 bit signed division function" -msgstr "Especificar un nom alternatiu per a la secci bss" - -#: config/sh/sh.opt:252 -#, fuzzy -msgid "Enable the use of the fused floating point multiply-accumulate operation" -msgstr "Activar l's de les instruccions short load" - -#: config/sh/sh.opt:256 -msgid "Cost to assume for gettr insn" -msgstr "" - -#: config/sh/sh.opt:260 config/sh/sh.opt:310 -msgid "Follow Renesas (formerly Hitachi) / SuperH calling conventions" -msgstr "" - -#: config/sh/sh.opt:264 -msgid "Increase the IEEE compliance for floating-point code" -msgstr "" - -#: config/sh/sh.opt:268 -msgid "Enable the use of the indexed addressing mode for SHmedia32/SHcompact" -msgstr "" - -#: config/sh/sh.opt:272 -msgid "inline code to invalidate instruction cache entries after setting up nested function trampolines" -msgstr "" - -#: config/sh/sh.opt:276 -msgid "Assume symbols might be invalid" -msgstr "" - -#: config/sh/sh.opt:280 -msgid "Annotate assembler instructions with estimated addresses" -msgstr "" - -#: config/sh/sh.opt:284 -#, fuzzy -msgid "Generate code in little endian mode" -msgstr "Generar codi per a little endian" - -#: config/sh/sh.opt:288 -#, fuzzy -msgid "Mark MAC register as call-clobbered" -msgstr "nom de registre desconegut \"%s\" en \"asm\"" - -#: config/sh/sh.opt:294 -msgid "Make structs a multiple of 4 bytes (warning: ABI altered)" -msgstr "" - -#: config/sh/sh.opt:298 -msgid "Emit function-calls using global offset table when generating PIC" -msgstr "" - -#: config/sh/sh.opt:302 -#, fuzzy -msgid "Assume pt* instructions won't trap" -msgstr "Les operacions de coma flotant poden capturar" - -#: config/sh/sh.opt:306 -msgid "Shorten address references during linking" -msgstr "" - -#: config/sh/sh.opt:314 -msgid "Deprecated. Use -Os instead" -msgstr "" - -#: config/sh/sh.opt:318 -msgid "Cost to assume for a multiply insn" -msgstr "" - -#: config/sh/sh.opt:322 -msgid "Don't generate privileged-mode only code; implies -mno-inline-ic_invalidate if the inline code would not work in user mode." -msgstr "" - -#: config/sh/sh.opt:328 -msgid "Pretend a branch-around-a-move is a conditional move." -msgstr "" - -#: config/sh/superh.opt:6 -msgid "Board name [and memory region]." -msgstr "" - -#: config/sh/superh.opt:10 -#, fuzzy -msgid "Runtime name." -msgstr "No hi ha fitxers d'entrada" - -#: config/arm/arm.opt:23 -msgid "Specify an ABI" -msgstr "Especificar un ABI" - -#: config/arm/arm.opt:27 -msgid "Generate a call to abort if a noreturn function returns" -msgstr "Generar una cridada a avortar si una funci \"noreturn\" retorna" - -#: config/arm/arm.opt:34 -msgid "Pass FP arguments in FP registers" -msgstr "Passar els arguments FP en els registres FP" - -#: config/arm/arm.opt:38 -msgid "Generate APCS conformant stack frames" -msgstr "Generar marcs de pila que compleixin amb APCS" - -#: config/arm/arm.opt:42 -msgid "Generate re-entrant, PIC code" -msgstr "Generar codi PIC que es torna a introduir" - -#: config/arm/arm.opt:56 -msgid "Assume target CPU is configured as big endian" -msgstr "Assumir que el CPU destinaci est configurat com big endian" - -#: config/arm/arm.opt:60 -msgid "Thumb: Assume non-static functions may be called from ARM code" -msgstr "Thumb: Assumir que les funcions no static poden ser crides des de codi ARM" - -#: config/arm/arm.opt:64 -msgid "Thumb: Assume function pointers may go to non-Thumb aware code" -msgstr "Thumb: Assumir que els punters de funci poden anar a codi no informat sobre Thumb" - -#: config/arm/arm.opt:68 -msgid "Cirrus: Place NOPs to avoid invalid instruction combinations" -msgstr "" - -#: config/arm/arm.opt:72 config/bfin/bfin.opt:27 -msgid "Specify the name of the target CPU" -msgstr "Especificar el nom del CPU destinaci" - -#: config/arm/arm.opt:76 -#, fuzzy -msgid "Specify if floating point hardware should be used" -msgstr "Especifica la versi de l'emulador de nombre de coma flotant" - -#: config/arm/arm.opt:90 -#, fuzzy -msgid "Specify the name of the target floating point hardware/format" -msgstr "Especifica la versi de l'emulador de nombre de coma flotant" - -#: config/arm/arm.opt:94 -msgid "Alias for -mfloat-abi=hard" -msgstr "" - -#: config/arm/arm.opt:98 -msgid "Assume target CPU is configured as little endian" -msgstr "Assumir que el CPU destinaci est configurat com little endian" - -#: config/arm/arm.opt:102 -msgid "Generate call insns as indirect calls, if necessary" -msgstr "Generar les crides insns com crides indirectes, si s necessari" - -#: config/arm/arm.opt:106 -msgid "Specify the register to be used for PIC addressing" -msgstr "Especificar el registre a usar per l'adreament PIC" - -#: config/arm/arm.opt:110 -msgid "Store function names in object code" -msgstr "Emmagatzemar noms de funci en el codi objecte" - -#: config/arm/arm.opt:114 -#, fuzzy -msgid "Permit scheduling of a function's prologue sequence" -msgstr "Usar caps per als prlegs de funci" - -#: config/arm/arm.opt:118 -msgid "Do not load the PIC register in function prologues" -msgstr "No carregar el registre PIC en els prlegs de funci" - -#: config/arm/arm.opt:122 -msgid "Alias for -mfloat-abi=soft" -msgstr "" - -#: config/arm/arm.opt:126 -msgid "Specify the minimum bit alignment of structures" -msgstr "Especificar l'alineaci mnima de bit de les estructures" - -#: config/arm/arm.opt:130 -msgid "Compile for the Thumb not the ARM" -msgstr "Compilar per al Thumb on per al ARM" - -#: config/arm/arm.opt:134 -msgid "Support calls between Thumb and ARM instruction sets" -msgstr "Suport a crides entre els conjunts d'instruccions Thumb i ARM" - -#: config/arm/arm.opt:138 -#, fuzzy -msgid "Specify how to access the thread pointer" -msgstr "Especificar el nom de l'arquitectura destinaci" - -#: config/arm/arm.opt:142 -msgid "Thumb: Generate (non-leaf) stack frames even if not needed" -msgstr "Thumb: Generar marcs de pila (no-fulles) encara si no s necessari" - -#: config/arm/arm.opt:146 -msgid "Thumb: Generate (leaf) stack frames even if not needed" -msgstr "Thumb: Generar marcs de pila (fulles) encara si no s necessari" - -#: config/arm/arm.opt:150 -#, fuzzy -msgid "Tune code for the given processor" -msgstr "Compilar per al processador v850" - -#: config/arm/arm.opt:154 -msgid "Assume big endian bytes, little endian words" -msgstr "Assumir octets big endian ,mots little endian" - -#: config/arm/arm.opt:158 -msgid "Use Neon quad-word (rather than double-word) registers for vectorization" -msgstr "" - -#: config/arm/pe.opt:23 -msgid "Ignore dllimport attribute for functions" -msgstr "Ignorar l'atribut dllimport per a les funcions" - -#: config/pdp11/pdp11.opt:23 -msgid "Generate code for an 11/10" -msgstr "Generar codi per a un 11/10" - -#: config/pdp11/pdp11.opt:27 -msgid "Generate code for an 11/40" -msgstr "Generar codi per a un 11/40" - -#: config/pdp11/pdp11.opt:31 -msgid "Generate code for an 11/45" -msgstr "5Generar codi per a un 11/45" - -#: config/pdp11/pdp11.opt:35 -#, fuzzy -msgid "Use 16-bit abs patterns" -msgstr "Usar registres FP de 64 bits" - -#: config/pdp11/pdp11.opt:39 -#, fuzzy -msgid "Return floating-point results in ac0 (fr0 in Unix assembler syntax)" -msgstr "Retorna els resultats en coma flotant en ac0" - -#: config/pdp11/pdp11.opt:43 -msgid "Do not use inline patterns for copying memory" -msgstr "" - -#: config/pdp11/pdp11.opt:47 -msgid "Use inline patterns for copying memory" -msgstr "" - -#: config/pdp11/pdp11.opt:51 -msgid "Do not pretend that branches are expensive" -msgstr "" - -#: config/pdp11/pdp11.opt:55 -msgid "Pretend that branches are expensive" -msgstr "" - -#: config/pdp11/pdp11.opt:59 -#, fuzzy -msgid "Use the DEC assembler syntax" -msgstr "Usar sintaxi de l'ensamblador DEC" - -#: config/pdp11/pdp11.opt:63 -msgid "Use 32 bit float" -msgstr "Usar float de 32 bits" - -#: config/pdp11/pdp11.opt:67 -msgid "Use 64 bit float" -msgstr "Usar float de 64 bits" - -#: config/pdp11/pdp11.opt:75 -msgid "Use 16 bit int" -msgstr "Usar int de 16 bits" - -#: config/pdp11/pdp11.opt:79 -msgid "Use 32 bit int" -msgstr "Usar int de 32 bits" - -#: config/pdp11/pdp11.opt:87 -msgid "Target has split I&D" -msgstr "L'objectiu t un I&D dividit" - -#: config/pdp11/pdp11.opt:91 -msgid "Use UNIX assembler syntax" -msgstr "Usar sintaxi de l'ensamblador UNIX" - -#: config/avr/avr.opt:23 -#, fuzzy -msgid "Use subroutines for function prologues and epilogues" -msgstr "Usar subrutines per al prleg/epleg de funci" - -#: config/avr/avr.opt:27 -#, fuzzy -msgid "Select the target MCU" -msgstr "Especificar el nom del CPU destinaci" - -#: config/avr/avr.opt:34 -#, fuzzy -msgid "Use an 8-bit 'int' type" -msgstr "Usar tipus int de 64 bits" - -#: config/avr/avr.opt:38 -msgid "Change the stack pointer without disabling interrupts" -msgstr "Canviar el punter de la pila sense desactivar les interrupcions" - -#: config/avr/avr.opt:42 -msgid "Do not generate tablejump insns" -msgstr "No generar insns de salt de matriu" - -#: config/avr/avr.opt:52 -msgid "Use rjmp/rcall (limited range) on >8K devices" -msgstr "" - -#: config/avr/avr.opt:56 -msgid "Output instruction sizes to the asm file" -msgstr "Grandries d'instrucci de sortida al fitxer asm" - -#: config/avr/avr.opt:60 -msgid "Change only the low 8 bits of the stack pointer" -msgstr "Canviar noms els 8 bits baixos del punter de pila" - -#: config/crx/crx.opt:23 -#, fuzzy -msgid "Support multiply accumulate instructions" -msgstr "Usar instruccions de fp per a multiplicar-acumular" - -#: config/crx/crx.opt:27 -#, fuzzy -msgid "Do not use push to store function arguments" -msgstr "No usar instruccions push per a guardar els arguments de sortida" - -#: config/crx/crx.opt:31 -msgid "Restrict doloop to the given nesting level" -msgstr "" - -#: config/c4x/c4x.opt:23 -msgid "Generate code for C30 CPU" -msgstr "Generar codi per al CPU C30" - -#: config/c4x/c4x.opt:27 -msgid "Generate code for C31 CPU" -msgstr "Generar codi per al CPU C31" - -#: config/c4x/c4x.opt:31 -msgid "Generate code for C32 CPU" -msgstr "Generar codi per al CPU C32" - -#: config/c4x/c4x.opt:35 -msgid "Generate code for C33 CPU" -msgstr "Generar codi per al CPU C33" - -#: config/c4x/c4x.opt:39 -msgid "Generate code for C40 CPU" -msgstr "Generar codi per al CPU C40" - -#: config/c4x/c4x.opt:43 -msgid "Generate code for C44 CPU" -msgstr "Generar codi per al CPU C44" - -#: config/c4x/c4x.opt:47 -msgid "Assume that pointers may be aliased" -msgstr "Assumir que es poden fer alies dels punters" - -#: config/c4x/c4x.opt:51 -msgid "Big memory model" -msgstr "Model de memria big" - -#: config/c4x/c4x.opt:55 -msgid "Use the BK register as a general purpose register" -msgstr "Usar el registre BK com un registre de propsit general" - -#: config/c4x/c4x.opt:59 -#, fuzzy -msgid "Generate code for CPU" -msgstr "Generar codi per al CPU C30" - -#: config/c4x/c4x.opt:63 -msgid "Enable use of DB instruction" -msgstr "Activar l's de la instrucci DB" - -#: config/c4x/c4x.opt:67 -msgid "Enable debugging" -msgstr "Activar la depuraci" - -#: config/c4x/c4x.opt:71 -msgid "Enable new features under development" -msgstr "Activar noves caracterstiques en desenvolupament" - -#: config/c4x/c4x.opt:75 -msgid "Use fast but approximate float to integer conversion" -msgstr "Usar conversi de coma flotant a enter rpida per aproximada" - -#: config/c4x/c4x.opt:79 -msgid "Force RTL generation to emit valid 3 operand insns" -msgstr "Forar que la generaci de RTL emeti 3 operandes insns vlids" - -#: config/c4x/c4x.opt:83 -msgid "Force constants into registers to improve hoisting" -msgstr "Forar les constants dintre de registres per a millorar l'aixecament" - -#: config/c4x/c4x.opt:87 config/c4x/c4x.opt:111 -msgid "Save DP across ISR in small memory model" -msgstr "Guardar DP entre ISR en el model de memria small" - -#: config/c4x/c4x.opt:91 -msgid "Allow unsigned iteration counts for RPTB/DB" -msgstr "Permetre comptes d'iteracions unsigned per a RPTB/DB" - -#: config/c4x/c4x.opt:95 -msgid "Pass arguments on the stack" -msgstr "Passar els arguments en la pila" - -#: config/c4x/c4x.opt:99 -msgid "Use MPYI instruction for C3x" -msgstr "Usar instrucci MPYI per a C3x" - -#: config/c4x/c4x.opt:103 -msgid "Enable parallel instructions" -msgstr "Activar les funcions paralleles" - -#: config/c4x/c4x.opt:107 -msgid "Enable MPY||ADD and MPY||SUB instructions" -msgstr "Activar les instruccions MPY||ADD i MPY||SUB" - -#: config/c4x/c4x.opt:115 -msgid "Preserve all 40 bits of FP reg across call" -msgstr "Preservar els 40 bits del registre FP entre crides" - -#: config/c4x/c4x.opt:119 -msgid "Pass arguments in registers" -msgstr "Passar els arguments en els registres" - -#: config/c4x/c4x.opt:123 -msgid "Enable use of RTPB instruction" -msgstr "Activar l's de la instrucci RTPB" - -#: config/c4x/c4x.opt:127 -msgid "Enable use of RTPS instruction" -msgstr "Activar l's de la instrucci RTPS" - -#: config/c4x/c4x.opt:131 -#, fuzzy -msgid "Set the maximum number of iterations for RPTS to N" -msgstr "Especificar el nombre mxim d'iteracions per a RPTS" - -#: config/c4x/c4x.opt:135 -msgid "Small memory model" -msgstr "Model de memria small" - -#: config/c4x/c4x.opt:139 -msgid "Emit code compatible with TI tools" -msgstr "Emetre codi compatible amb les eines TI" - -#: config/pa/pa-hpux.opt:23 -msgid "Generate cpp defines for server IO" -msgstr "Generar definicions cpp per a IO de servidor" - -#: config/pa/pa-hpux.opt:27 config/pa/pa-hpux1010.opt:23 -#: config/pa/pa-hpux1111.opt:23 -msgid "Specify UNIX standard for predefines and linking" -msgstr "" - -#: config/pa/pa-hpux.opt:31 -msgid "Generate cpp defines for workstation IO" -msgstr "Generar definicions cpp per a IO d'estaci de treball" - -#: config/pa/pa.opt:23 config/pa/pa.opt:76 config/pa/pa.opt:84 -msgid "Generate PA1.0 code" -msgstr "Generar codi PA1.0" - -#: config/pa/pa.opt:27 config/pa/pa.opt:88 config/pa/pa.opt:108 -msgid "Generate PA1.1 code" -msgstr "Generar codi PA1.1" - -#: config/pa/pa.opt:31 config/pa/pa.opt:92 -msgid "Generate PA2.0 code (requires binutils 2.10 or later)" -msgstr "" - -#: config/pa/pa.opt:35 -msgid "Generate code for huge switch statements" -msgstr "Generar codi per a declaracions switch llargues" - -#: config/pa/pa.opt:39 -msgid "Disable FP regs" -msgstr "Desactivar els registres FP" - -#: config/pa/pa.opt:43 -msgid "Disable indexed addressing" -msgstr "Desactivar adreament d'index" - -#: config/pa/pa.opt:47 -msgid "Generate fast indirect calls" -msgstr "Generar crides indirectes rpides" - -#: config/pa/pa.opt:55 -msgid "Assume code will be assembled by GAS" -msgstr "" - -#: config/pa/pa.opt:59 -msgid "Put jumps in call delay slots" -msgstr "" - -#: config/pa/pa.opt:64 -msgid "Enable linker optimizations" -msgstr "Activar les optimitzacions del enllaador" - -#: config/pa/pa.opt:68 -msgid "Always generate long calls" -msgstr "Generar sempre crides llargues" - -#: config/pa/pa.opt:72 -msgid "Emit long load/store sequences" -msgstr "" - -#: config/pa/pa.opt:80 -msgid "Disable space regs" -msgstr "" - -#: config/pa/pa.opt:96 -msgid "Use portable calling conventions" -msgstr "Usar convencions de cridada portable" - -#: config/pa/pa.opt:100 -#, fuzzy -msgid "Specify CPU for scheduling purposes. Valid arguments are 700, 7100, 7100LC, 7200, 7300, and 8000" -msgstr "" -"opci -mschedule= desconeguda (%s).\n" -"Les opcions vlides sn 700, 7100, 7100LC, 7200, 7300, i 8000\n" - -#: config/pa/pa.opt:112 -msgid "Do not disable space regs" -msgstr "No desactivar registres d'espai" - -#: config/pa/pa64-hpux.opt:23 -msgid "Assume code will be linked by GNU ld" -msgstr "" - -#: config/pa/pa64-hpux.opt:27 -msgid "Assume code will be linked by HP ld" -msgstr "" - -#: config/xtensa/xtensa.opt:23 -#, fuzzy -msgid "Use CONST16 instruction to load constants" -msgstr "Usar instruccions push per a guardar els arguments de sortida" - -#: config/xtensa/xtensa.opt:27 -msgid "Enable fused multiply/add and multiply/subtract FP instructions" -msgstr "Activar les instruccions FP multiply/add i multiply/substract de curt circuit" - -#: config/xtensa/xtensa.opt:31 -msgid "Use indirect CALLXn instructions for large programs" -msgstr "Usar instruccions CALLXn indirectes per a programes grans" - -#: config/xtensa/xtensa.opt:35 -msgid "Automatically align branch targets to reduce branch penalties" -msgstr "Alinear automticament els objectius de les ramificacions per a reduir les faltes de ramificaci" - -#: config/xtensa/xtensa.opt:39 -msgid "Intersperse literal pools with code in the text section" -msgstr "Entremesclar els conjunts de literals amb codi en la secci de text" - -#: config/stormy16/stormy16.opt:24 -msgid "Provide libraries for the simulator" -msgstr "" - -#: config/mips/mips.opt:23 -#, fuzzy -msgid "Generate code that conforms to the given ABI" -msgstr "Generar codi per al CPU donat" - -#: config/mips/mips.opt:27 -msgid "Generate code that can be used in SVR4-style dynamic objects" -msgstr "" - -#: config/mips/mips.opt:31 -#, fuzzy -msgid "Use PMC-style 'mad' instructions" -msgstr "Usar instruccions de camps de bit" - -#: config/mips/mips.opt:35 -#, fuzzy -msgid "Generate code for the given ISA" -msgstr "Generar codi per al CPU donat" - -#: config/mips/mips.opt:39 -#, fuzzy -msgid "Set the cost of branches to roughly COST instructions" -msgstr "Activar l's de les instruccions short load" - -#: config/mips/mips.opt:43 -msgid "Use Branch Likely instructions, overriding the architecture default" -msgstr "" - -#: config/mips/mips.opt:47 -msgid "Switch on/off MIPS16 ASE on alternating functions for compiler testing" -msgstr "" - -#: config/mips/mips.opt:51 -msgid "Trap on integer divide by zero" -msgstr "Atrapar la divisi entera per zero" - -#: config/mips/mips.opt:55 -msgid "Specify when instructions are allowed to access code" -msgstr "" - -#: config/mips/mips.opt:59 -msgid "Use branch-and-break sequences to check for integer divide by zero" -msgstr "" - -#: config/mips/mips.opt:63 -#, fuzzy -msgid "Use trap instructions to check for integer divide by zero" -msgstr "Atrapar la divisi entera per zero" - -#: config/mips/mips.opt:67 -#, fuzzy -msgid "Allow the use of MDMX instructions" -msgstr "Activar l's de la instrucci DB" - -#: config/mips/mips.opt:71 -msgid "Allow hardware floating-point instructions to cover both 32-bit and 64-bit operations" -msgstr "" - -#: config/mips/mips.opt:75 -#, fuzzy -msgid "Use MIPS-DSP instructions" -msgstr "No usar instruccions MIPS16" - -#: config/mips/mips.opt:79 -#, fuzzy -msgid "Use MIPS-DSP REV 2 instructions" -msgstr "Usar el conjunt d'instruccions POWER2" - -#: config/mips/mips.opt:89 -msgid "Use big-endian byte order" -msgstr "Usar ordre de bit big-endian" - -#: config/mips/mips.opt:93 -msgid "Use little-endian byte order" -msgstr "Usar ordre de bit little-endian" - -#: config/mips/mips.opt:97 config/iq2000/iq2000.opt:31 -msgid "Use ROM instead of RAM" -msgstr "Usar ROM enlloc de RAM" - -#: config/mips/mips.opt:101 -msgid "Use NewABI-style %reloc() assembly operators" -msgstr "" - -#: config/mips/mips.opt:105 -msgid "Use -G for data that is not defined by the current object" -msgstr "" - -#: config/mips/mips.opt:109 -#, fuzzy -msgid "Work around certain R4000 errata" -msgstr "Evitar el bug del primer maquinari 4300" - -#: config/mips/mips.opt:113 -#, fuzzy -msgid "Work around certain R4400 errata" -msgstr "Evitar el bug del primer maquinari 4300" - -#: config/mips/mips.opt:117 -msgid "Work around errata for early SB-1 revision 2 cores" -msgstr "" - -#: config/mips/mips.opt:121 -msgid "Work around certain VR4120 errata" -msgstr "" - -#: config/mips/mips.opt:125 -msgid "Work around VR4130 mflo/mfhi errata" -msgstr "" - -#: config/mips/mips.opt:129 -#, fuzzy -msgid "Work around an early 4300 hardware bug" -msgstr "Evitar el bug del primer maquinari 4300" - -#: config/mips/mips.opt:133 -#, fuzzy -msgid "FP exceptions are enabled" -msgstr "opcions activades: " - -#: config/mips/mips.opt:137 -#, fuzzy -msgid "Use 32-bit floating-point registers" -msgstr "Usar registres generals de 32 bits" - -#: config/mips/mips.opt:141 -#, fuzzy -msgid "Use 64-bit floating-point registers" -msgstr "Usar registres generals de 64 bits" - -#: config/mips/mips.opt:145 -msgid "Use FUNC to flush the cache before calling stack trampolines" -msgstr "" - -#: config/mips/mips.opt:149 -#, fuzzy -msgid "Generate floating-point multiply-add instructions" -msgstr "Generar instruccions multiply/add de curt circuit" - -#: config/mips/mips.opt:153 -msgid "Use 32-bit general registers" -msgstr "Usar registres generals de 32 bits" - -#: config/mips/mips.opt:157 -msgid "Use 64-bit general registers" -msgstr "Usar registres generals de 64 bits" - -#: config/mips/mips.opt:161 -msgid "Use GP-relative addressing to access small data" -msgstr "" - -#: config/mips/mips.opt:165 -#, fuzzy -msgid "Allow the use of hardware floating-point ABI and instructions" -msgstr "Usar instruccions de maquinari per a coma flotant" - -#: config/mips/mips.opt:169 -msgid "Generate code that can be safely linked with MIPS16 code." -msgstr "" - -#: config/mips/mips.opt:173 -#, fuzzy -msgid "Generate code for ISA level N" -msgstr "Generar codi per a Intel as" - -#: config/mips/mips.opt:177 -#, fuzzy -msgid "Generate MIPS16 code" -msgstr "Generar codi SA" - -#: config/mips/mips.opt:181 -#, fuzzy -msgid "Use MIPS-3D instructions" -msgstr "No usar instruccions MIPS16" - -#: config/mips/mips.opt:185 -#, fuzzy -msgid "Use ll, sc and sync instructions" -msgstr "Usar instruccions AltiVec" - -#: config/mips/mips.opt:189 -msgid "Use -G for object-local data" -msgstr "" - -#: config/mips/mips.opt:193 -msgid "Use indirect calls" -msgstr "Usar crides indirectes" - -#: config/mips/mips.opt:197 -#, fuzzy -msgid "Use a 32-bit long type" -msgstr "Usar tipus long de 32 bits" - -#: config/mips/mips.opt:201 -#, fuzzy -msgid "Use a 64-bit long type" -msgstr "Usar tipus long de 64 bits" - -#: config/mips/mips.opt:205 -msgid "Don't optimize block moves" -msgstr "No optimitzar els moviments de blocs" - -#: config/mips/mips.opt:209 -#, fuzzy -msgid "Use the mips-tfile postpass" -msgstr "Usar mips-tfile asm postpass" - -#: config/mips/mips.opt:213 -#, fuzzy -msgid "Allow the use of MT instructions" -msgstr "Activar l's de la instrucci RTPS" - -#: config/mips/mips.opt:217 -msgid "Do not use a cache-flushing function before calling stack trampolines" -msgstr "" - -#: config/mips/mips.opt:221 -#, fuzzy -msgid "Do not use MDMX instructions" -msgstr "No usar instruccions AltiVec" - -#: config/mips/mips.opt:225 -#, fuzzy -msgid "Generate normal-mode code" -msgstr "Generar codi SA" - -#: config/mips/mips.opt:229 -#, fuzzy -msgid "Do not use MIPS-3D instructions" -msgstr "No usar instruccions MIPS16" - -#: config/mips/mips.opt:233 -#, fuzzy -msgid "Use paired-single floating-point instructions" -msgstr "Usar instruccions de maquinari per a coma flotant" - -#: config/mips/mips.opt:237 -msgid "When generating -mabicalls code, make the code suitable for use in shared libraries" -msgstr "" - -#: config/mips/mips.opt:241 -#, fuzzy -msgid "Restrict the use of hardware floating-point instructions to 32-bit operations" -msgstr "Usar instruccions de maquinari per a coma flotant" - -#: config/mips/mips.opt:245 -#, fuzzy -msgid "Use SmartMIPS instructions" -msgstr "No usar instruccions MIPS16" - -#: config/mips/mips.opt:249 -#, fuzzy -msgid "Prevent the use of all hardware floating-point instructions" -msgstr "Usar instruccions de maquinari per a coma flotant" - -#: config/mips/mips.opt:253 -msgid "Optimize lui/addiu address loads" -msgstr "Optimitzar les crregues de les adreces lui/addiu" - -#: config/mips/mips.opt:257 -#, fuzzy -msgid "Assume all symbols have 32-bit values" -msgstr "Assumir que tots els doubles estan alineats" - -#: config/mips/mips.opt:261 -msgid "Optimize the output for PROCESSOR" -msgstr "" - -#: config/mips/mips.opt:265 config/iq2000/iq2000.opt:44 -msgid "Put uninitialized constants in ROM (needs -membedded-data)" -msgstr "Posar les constants sense inicialitzar en ROM (necessita -membedded-data)" - -#: config/mips/mips.opt:269 -#, fuzzy -msgid "Perform VR4130-specific alignment optimizations" -msgstr "Realitzar optimitzacions de filat de salts" - -#: config/mips/mips.opt:273 -msgid "Lift restrictions on GOT size" -msgstr "" - -#: config/mips/sdemtk.opt:23 -#, fuzzy -msgid "Prevent the use of all floating-point operations" -msgstr "es requereixen registres booleans per a l'opci de coma flotant" - -#: config/fr30/fr30.opt:23 -msgid "Assume small address space" -msgstr "Assumint espai d'adreces petit" - -#: config/m68hc11/m68hc11.opt:23 config/m68hc11/m68hc11.opt:31 -msgid "Compile for a 68HC11" -msgstr "Compilar per a un 68HC11" - -#: config/m68hc11/m68hc11.opt:27 config/m68hc11/m68hc11.opt:35 -msgid "Compile for a 68HC12" -msgstr "Compilar per a un 68HC12" - -#: config/m68hc11/m68hc11.opt:41 config/m68hc11/m68hc11.opt:45 -msgid "Compile for a 68HCS12" -msgstr "Compilar per a un 68HCS12" - -#: config/m68hc11/m68hc11.opt:49 -msgid "Auto pre/post decrement increment allowed" -msgstr "Es permet el pre/post decrement increment automtic" - -#: config/m68hc11/m68hc11.opt:53 -msgid "Min/max instructions allowed" -msgstr "" - -#: config/m68hc11/m68hc11.opt:57 -msgid "Use call and rtc for function calls and returns" -msgstr "Usar call i rtc per a crides i retorns de funci" - -#: config/m68hc11/m68hc11.opt:61 -msgid "Auto pre/post decrement increment not allowed" -msgstr "No es permet el pre/post decrement increment automtic" - -#: config/m68hc11/m68hc11.opt:65 -msgid "Use jsr and rts for function calls and returns" -msgstr "Usar jsr i rts per a crides i retorns de funci" - -#: config/m68hc11/m68hc11.opt:69 -msgid "Min/max instructions not allowed" -msgstr "" - -#: config/m68hc11/m68hc11.opt:73 -msgid "Use direct addressing mode for soft registers" -msgstr "Usar el mode d'adreament direct per a registres soft" - -#: config/m68hc11/m68hc11.opt:77 -msgid "Compile with 32-bit integer mode" -msgstr "Compilar amb el mode enter de 32-bit" - -#: config/m68hc11/m68hc11.opt:82 -msgid "Specify the register allocation order" -msgstr "Especificar l'ordre d'assignaci de registres" - -#: config/m68hc11/m68hc11.opt:86 -msgid "Do not use direct addressing mode for soft registers" -msgstr "No usar el mode d'adreament direct per a registres soft" - -#: config/m68hc11/m68hc11.opt:90 -msgid "Compile with 16-bit integer mode" -msgstr "Compilar amb el mode enter de 16-bit" - -#: config/m68hc11/m68hc11.opt:94 -msgid "Indicate the number of soft registers available" -msgstr "Indicar el nombre de registres suaus disponibles" - -#: config/vax/vax.opt:23 config/vax/vax.opt:27 -msgid "Target DFLOAT double precision code" -msgstr "" - -#: config/vax/vax.opt:31 config/vax/vax.opt:35 -#, fuzzy -msgid "Generate GFLOAT double precision code" -msgstr "Generar codi little endian" - -#: config/vax/vax.opt:39 -#, fuzzy -msgid "Generate code for GNU assembler (gas)" -msgstr "Generar codi per a GNU as" - -#: config/vax/vax.opt:43 -#, fuzzy -msgid "Generate code for UNIX assembler" -msgstr "Generar codi per a GNU as" - -#: config/vax/vax.opt:47 -#, fuzzy -msgid "Use VAXC structure conventions" -msgstr "Usar convencions de cridada portable" - -#: config/cris/linux.opt:27 -msgid "Together with -fpic and -fPIC, do not use GOTPLT references" -msgstr "Juntament amb -fpic i -fPIC, no utilitzar referncies GOTPLT" - -#: config/cris/cris.opt:45 -#, fuzzy -msgid "Work around bug in multiplication instruction" -msgstr "No usar instruccions de fp per a multiplicar-acumular" - -#: config/cris/cris.opt:51 -msgid "Compile for ETRAX 4 (CRIS v3)" -msgstr "Compilar per a ETRAX 4 (CRIS v3)" - -#: config/cris/cris.opt:56 -msgid "Compile for ETRAX 100 (CRIS v8)" -msgstr "Compilar per a ETRAX 100 (CRIS v8)" - -#: config/cris/cris.opt:64 -msgid "Emit verbose debug information in assembly code" -msgstr "Emetre informaci de depuraci detallada en el codi ensamblador" - -#: config/cris/cris.opt:71 -msgid "Do not use condition codes from normal instructions" -msgstr "No usar codis de condici per a les instruccions normals" - -#: config/cris/cris.opt:80 -msgid "Do not emit addressing modes with side-effect assignment" -msgstr "No emetre modes d'adreament amb assignacions collaterals" - -#: config/cris/cris.opt:89 -msgid "Do not tune stack alignment" -msgstr "No ajustar l'alineaci de la pila" - -#: config/cris/cris.opt:98 -msgid "Do not tune writable data alignment" -msgstr "No ajustar l'alineaci de les dades modificables" - -#: config/cris/cris.opt:107 -msgid "Do not tune code and read-only data alignment" -msgstr "No ajustar l'alineaci del codi i de dades noms de lectura" - -#: config/cris/cris.opt:116 -msgid "Align code and data to 32 bits" -msgstr "Alinear codi i dades a 32 bits" - -#: config/cris/cris.opt:133 -msgid "Don't align items in code or data" -msgstr "No alinear elements en el codi o les dades" - -#: config/cris/cris.opt:142 -msgid "Do not emit function prologue or epilogue" -msgstr "No emetre prleg o epleg de funcions" - -#: config/cris/cris.opt:149 -msgid "Use the most feature-enabling options allowed by other options" -msgstr "Usar la major quantitat de caracterstiques permeses per altres opcions" - -#: config/cris/cris.opt:158 -msgid "Override -mbest-lib-options" -msgstr "Anular -mbest-lib-options" - -#: config/cris/cris.opt:165 -msgid "Generate code for the specified chip or CPU version" -msgstr "Generar codi per al xip especificat o la versi de CPU" - -#: config/cris/cris.opt:169 -msgid "Tune alignment for the specified chip or CPU version" -msgstr "Ajustar alineaci per al xip especificat o la versi de CPU" - -#: config/cris/cris.opt:173 -msgid "Warn when a stackframe is larger than the specified size" -msgstr "Avisar quan un marc de pila sigui ms gran que la grandria especificada" - -#: config/cris/aout.opt:27 -msgid "Compile for the MMU-less Etrax 100-based elinux system" -msgstr "Compilar per al sistema elinux Etrax basat en 100 sense MMU" - -#: config/cris/aout.opt:33 -msgid "For elinux, request a specified stack-size for this program" -msgstr "Per a elinux, sollicitar una grandria de pila especificada per a aquest programa" - -#: config/h8300/h8300.opt:23 -msgid "Generate H8S code" -msgstr "Generar codi H8S" - -#: config/h8300/h8300.opt:27 -#, fuzzy -msgid "Generate H8SX code" -msgstr "Generar codi H8S" - -#: config/h8300/h8300.opt:31 -msgid "Generate H8S/2600 code" -msgstr "Generar codi H8S/2600" - -#: config/h8300/h8300.opt:35 -msgid "Make integers 32 bits wide" -msgstr "Fer enters de 32 bits d'amplria" - -#: config/h8300/h8300.opt:42 -msgid "Use registers for argument passing" -msgstr "Usar registres per a pas de parmetres" - -#: config/h8300/h8300.opt:46 -msgid "Consider access to byte sized memory slow" -msgstr "Considerar lent l'accs a la memria de grandria octet" - -#: config/h8300/h8300.opt:50 -msgid "Enable linker relaxing" -msgstr "Activar la relaxaci del enllaador" - -#: config/h8300/h8300.opt:54 -msgid "Generate H8/300H code" -msgstr "Generar codi H8/300H" - -#: config/h8300/h8300.opt:58 -msgid "Enable the normal mode" -msgstr "" - -#: config/h8300/h8300.opt:62 -msgid "Use H8/300 alignment rules" -msgstr "Usar regles d'alineaci H8/300" - -#: config/v850/v850.opt:23 -#, fuzzy -msgid "Use registers r2 and r5" -msgstr "No usar els registres r2 i r5" - -#: config/v850/v850.opt:27 -msgid "Use 4 byte entries in switch tables" -msgstr "Usar entrades de 4 octet en les matrius de switch" - -#: config/v850/v850.opt:31 -msgid "Enable backend debugging" -msgstr "Habilitar la depuraci per la fi" - -#: config/v850/v850.opt:35 -msgid "Do not use the callt instruction" -msgstr "No usar la instrucci callt" - -#: config/v850/v850.opt:39 -msgid "Reuse r30 on a per function basis" -msgstr "Reusar r30 basat per funci" - -#: config/v850/v850.opt:43 -msgid "Support Green Hills ABI" -msgstr "Dna suport a l'ABI Green Hills" - -#: config/v850/v850.opt:47 -msgid "Prohibit PC relative function calls" -msgstr "Prohibir la crida a funcions relatives al PC" - -#: config/v850/v850.opt:51 -msgid "Use stubs for function prologues" -msgstr "Usar caps per als prlegs de funci" - -#: config/v850/v850.opt:55 -msgid "Set the max size of data eligible for the SDA area" -msgstr "Establir la grandria mxima de dades elegibles per a l'rea SDA" - -#: config/v850/v850.opt:59 -msgid "Enable the use of the short load instructions" -msgstr "Activar l's de les instruccions short load" - -#: config/v850/v850.opt:63 -msgid "Same as: -mep -mprolog-function" -msgstr "Igual que: -mep -mprolog-function" - -#: config/v850/v850.opt:67 -msgid "Set the max size of data eligible for the TDA area" -msgstr "Establir la grandria mxima de dades elegibles per a l'rea TDA" - -#: config/v850/v850.opt:71 -msgid "Enforce strict alignment" -msgstr "Reforar l'alineaci estricta" - -#: config/v850/v850.opt:78 -msgid "Compile for the v850 processor" -msgstr "Compilar per al processador v850" - -#: config/v850/v850.opt:82 -#, fuzzy -msgid "Compile for the v850e processor" -msgstr "Compilar per al processador v850" - -#: config/v850/v850.opt:86 -#, fuzzy -msgid "Compile for the v850e1 processor" -msgstr "Compilar per al processador v850" - -#: config/v850/v850.opt:90 -msgid "Set the max size of data eligible for the ZDA area" -msgstr "Establir la grandria mxima de dades elegibles per a l'rea ZDA" - -#: config/mmix/mmix.opt:24 -msgid "For intrinsics library: pass all parameters in registers" -msgstr "Per a biblioteques intrnsiques: passar els parmetres en registres" - -#: config/mmix/mmix.opt:28 -msgid "Use register stack for parameters and return value" -msgstr "Usar registres de pila per a parmetres i valors de retorn" - -#: config/mmix/mmix.opt:32 -msgid "Use call-clobbered registers for parameters and return value" -msgstr "Usar registres maltractats per a parmetres i valors de retorn" - -#: config/mmix/mmix.opt:37 -msgid "Use epsilon-respecting floating point compare instructions" -msgstr "Usar instuccions de comparana en coma flotant que respectent epsilon" - -#: config/mmix/mmix.opt:41 -msgid "Use zero-extending memory loads, not sign-extending ones" -msgstr "Usar crregues de memria d'extensi zero, no les d'extensi amb signe" - -#: config/mmix/mmix.opt:45 -msgid "Generate divide results with reminder having the same sign as the divisor (not the dividend)" -msgstr "Generar resultats de divisi amb residu que tingui el mateix signe que el divisor (no el del dividend)" - -#: config/mmix/mmix.opt:49 -msgid "Prepend global symbols with \":\" (for use with PREFIX)" -msgstr "Precedir als smbols globals amb \":\" (per a usar-se amb PREFIX)" - -#: config/mmix/mmix.opt:53 -msgid "Do not provide a default start-address 0x100 of the program" -msgstr "No proveir una adrea d'inici per omissi 0x100 del programa" - -#: config/mmix/mmix.opt:57 -msgid "Link to emit program in ELF format (rather than mmo)" -msgstr "Enllaar per a emetre el programa en format ELF (en lloc de mmo)" - -#: config/mmix/mmix.opt:61 -msgid "Use P-mnemonics for branches statically predicted as taken" -msgstr "Usar Mnemnicos-P per a ramificacions predites estticament com preses" - -#: config/mmix/mmix.opt:65 -msgid "Don't use P-mnemonics for branches" -msgstr "No usar Mnemnicos-P per a ramificacions" - -#: config/mmix/mmix.opt:79 -msgid "Use addresses that allocate global registers" -msgstr "Usar adreces que reservin registres globals" - -#: config/mmix/mmix.opt:83 -msgid "Do not use addresses that allocate global registers" -msgstr "No usar adreces que reservin registres globals" - -#: config/mmix/mmix.opt:87 -msgid "Generate a single exit point for each function" -msgstr "Generar noms un punt de sortida per a cada funci" - -#: config/mmix/mmix.opt:91 -msgid "Do not generate a single exit point for each function" -msgstr "No generar noms un punt de sortida per a cada funci" - -#: config/mmix/mmix.opt:95 -msgid "Set start-address of the program" -msgstr "Definir l'adrea d'inici del programa" - -#: config/mmix/mmix.opt:99 -msgid "Set start-address of data" -msgstr "Definir l'adrea d'inici de les dades" - -#: config/iq2000/iq2000.opt:23 config/mt/mt.opt:55 -msgid "Specify CPU for code generation purposes" -msgstr "Especificar el CPU per a propsits de generaci de codi" - -#: config/iq2000/iq2000.opt:27 -msgid "Specify CPU for scheduling purposes" -msgstr "Especificar el CPU per a propsits de calendaritzaci" - -#: config/iq2000/iq2000.opt:35 -msgid "Use GP relative sdata/sbss sections" -msgstr "Usar seccions sdata/sbss relatives a GP" - -#: config/iq2000/iq2000.opt:40 -msgid "No default crt0.o" -msgstr "No est el crt0.o per omissi" - -#: config/bfin/bfin.opt:31 -#, fuzzy -msgid "Omit frame pointer for leaf functions" -msgstr "Ometre el marc de referncia per a les funcions fulles" - -#: config/bfin/bfin.opt:35 -msgid "Program is entirely located in low 64k of memory" -msgstr "" - -#: config/bfin/bfin.opt:39 -msgid "Work around a hardware anomaly by adding a number of NOPs before a" -msgstr "" - -#: config/bfin/bfin.opt:44 -msgid "Avoid speculative loads to work around a hardware anomaly." -msgstr "" - -#: config/bfin/bfin.opt:48 -msgid "Enabled ID based shared library" -msgstr "" - -#: config/bfin/bfin.opt:52 -msgid "Generate code that won't be linked against any other ID shared libraries," -msgstr "" - -#: config/bfin/bfin.opt:65 -msgid "Avoid generating pc-relative calls; use indirection" -msgstr "" - -#: config/bfin/bfin.opt:69 -#, fuzzy -msgid "Link with the fast floating-point library" -msgstr "Usar la unitat de coma flotant de Xtensa" - -#: config/bfin/bfin.opt:81 -msgid "Do stack checking using bounds in L1 scratch memory" -msgstr "" - -#: config/mt/mt.opt:23 -msgid "Use byte loads and stores when generating code." -msgstr "" - -#: config/mt/mt.opt:31 -msgid "Do not include crt0.o in the startup files" -msgstr "" - -#: config/mt/mt.opt:35 config/mt/mt.opt:39 config/mt/mt.opt:43 -#: config/mt/mt.opt:47 config/mt/mt.opt:51 -#, fuzzy -msgid "Internal debug switch" -msgstr "interruptor -mdebug-%s desconegut" - -#: config/vxworks.opt:24 -#, fuzzy -msgid "Assume the VxWorks RTP environment" -msgstr "Assumir l'ambient normal d'execuci C" - -#: config/vxworks.opt:31 -#, fuzzy -msgid "Assume the VxWorks vThreads environment" -msgstr "Assumir l'ambient normal d'execuci C" - -#: config/darwin.opt:23 -#, fuzzy -msgid "Generate code suitable for fast turn around debugging" -msgstr "Generar codi per a un Sun Sky board" - -#: config/darwin.opt:31 -msgid "The earliest MacOS X version on which this program will run" -msgstr "" - -#: config/darwin.opt:35 -#, fuzzy -msgid "Set sizeof(bool) to 1" -msgstr "sizeof(long double) s 16." - -#: config/darwin.opt:39 -#, fuzzy -msgid "Generate code for darwin loadable kernel extensions" -msgstr "Generar codi per a little endian" - -#: config/darwin.opt:43 -#, fuzzy -msgid "Generate code for the kernel or loadable kernel extensions" -msgstr "Generar codi per al xip especificat o la versi de CPU" - -#: config/darwin.opt:47 -msgid "Add to the end of the system framework include path" -msgstr "" - -#: config/lynx.opt:23 -msgid "Support legacy multi-threading" -msgstr "" - -#: config/lynx.opt:27 -#, fuzzy -msgid "Use shared libraries" -msgstr "Usar fp de maquinari" - -#: config/lynx.opt:31 -msgid "Support multi-threading" -msgstr "" - -#: config/score/score.opt:31 -#, fuzzy -msgid "Disable bcnz instruction" -msgstr "Desactivar l's de la instrucci DB" - -#: config/score/score.opt:35 -#, fuzzy -msgid "Enable unaligned load/store instruction" -msgstr "Activar l's de la instrucci DB" - -#: config/score/score.opt:39 -msgid "Support SCORE 5 ISA" -msgstr "" - -#: config/score/score.opt:43 -msgid "Support SCORE 5U ISA" -msgstr "" - -#: config/score/score.opt:47 -msgid "Support SCORE 7 ISA" -msgstr "" - -#: config/score/score.opt:51 -msgid "Support SCORE 7D ISA" -msgstr "" - -#: config/score/score.opt:55 -msgid "Support SCORE 3 ISA" -msgstr "" - -#: config/score/score.opt:59 -msgid "Support SCORE 3d ISA" -msgstr "" - -#: config/linux.opt:24 -#, fuzzy -msgid "Use uClibc instead of GNU libc" -msgstr "Usar ROM enlloc de RAM" - -#: config/linux.opt:28 -#, fuzzy -msgid "Use GNU libc instead of uClibc" -msgstr "Usar ROM enlloc de RAM" - -#: c.opt:41 -msgid "Assert the to . Putting '-' before disables the to " -msgstr "" - -#: c.opt:45 -#, fuzzy -msgid "Do not discard comments" -msgstr "No desactivar registres d'espai" - -#: c.opt:49 -msgid "Do not discard comments in macro expansions" -msgstr "" - -#: c.opt:53 -msgid "Define a with as its value. If just is given, is taken to be 1" -msgstr "" - -#: c.opt:60 -msgid "Add to the end of the main framework include path" -msgstr "" - -#: c.opt:64 -#, fuzzy -msgid "Print the name of header files as they are used" -msgstr "Mostrar els noms de les unitats de programa mentre sn compilades" - -#: c.opt:68 c.opt:859 -msgid "Add to the end of the main include path" -msgstr "" - -#: c.opt:72 -#, fuzzy -msgid "Generate make dependencies" -msgstr "Generar codi little endian" - -#: c.opt:76 -#, fuzzy -msgid "Generate make dependencies and compile" -msgstr "Generar codi little endian" - -#: c.opt:80 -msgid "Write dependency output to the given file" -msgstr "" - -#: c.opt:84 -msgid "Treat missing header files as generated files" -msgstr "" - -#: c.opt:88 -msgid "Like -M but ignore system header files" -msgstr "" - -#: c.opt:92 -msgid "Like -MD but ignore system header files" -msgstr "" - -#: c.opt:96 -#, fuzzy -msgid "Generate phony targets for all headers" -msgstr "Generar codi com de Intel" - -#: c.opt:100 -msgid "Add a MAKE-quoted target" -msgstr "" - -#: c.opt:104 -msgid "Add an unquoted target" -msgstr "" - -#: c.opt:108 -#, fuzzy -msgid "Do not generate #line directives" -msgstr "No generar directives .size" - -#: c.opt:112 -msgid "Undefine " -msgstr "" - -#: c.opt:116 -msgid "Warn about things that will change when compiling with an ABI-compliant compiler" -msgstr "" - -#: c.opt:120 -#, fuzzy -msgid "Warn about suspicious uses of memory addresses" -msgstr "Avisar sobre declaracions sospitoses de main" - -#: c.opt:124 -msgid "Enable most warning messages" -msgstr "Activar gaireb tots els missatges d'avs" - -#: c.opt:128 -#, fuzzy -msgid "Warn if a comparison is always true or always false due to the limited range of the data type" -msgstr "la comparana sempre s falsa a causa dels lmits limitats del tipus de dades" - -#: c.opt:132 -msgid "Warn whenever an Objective-C assignment is being intercepted by the garbage collector" -msgstr "" - -#: c.opt:136 -msgid "Warn about casting functions to incompatible types" -msgstr "Avisar per funcions de conversi a tipus incompatibles" - -#: c.opt:140 -msgid "Warn about C constructs that are not in the common subset of C and C++" -msgstr "" - -#: c.opt:144 -#, fuzzy -msgid "Warn about C++ constructs whose meaning differs between ISO C++ 1998 and ISO C++ 200x" -msgstr "Avisar sobre construccions el significat de les quals canvia en ISO C" - -#: c.opt:148 -msgid "Warn about casts which discard qualifiers" -msgstr "Avisar sobre conversions que descarten calificators" - -#: c.opt:152 -#, fuzzy -msgid "Warn about subscripts whose type is \"char\"" -msgstr "Avisar sobre subindicis el tipus del qual s \"char\"" - -#: c.opt:156 -#, fuzzy -msgid "Warn about variables that might be changed by \"longjmp\" or \"vfork\"" -msgstr "%Jla variable \"%D\" podria ser apallissada per \"longjmp\" o \"vfork\"" - -#: c.opt:160 -msgid "Warn about possibly nested block comments, and C++ comments spanning more than one physical line" -msgstr "" - -#: c.opt:164 -msgid "Synonym for -Wcomment" -msgstr "" - -#: c.opt:168 -msgid "Warn for implicit type conversions that may change a value" -msgstr "" - -#: c.opt:172 -#, fuzzy -msgid "Warn for implicit type conversions between signed and unsigned integers" -msgstr "comparana entre expressions enteres signed i unsigned" - -#: c.opt:176 -#, fuzzy -msgid "Warn when all constructors and destructors are private" -msgstr "No avisar quan tots els ctors/dtors sn privats" - -#: c.opt:180 -#, fuzzy -msgid "Warn when a declaration is found after a statement" -msgstr "Avisar quan una declaraci no especifiqui un tipus" - -#: c.opt:184 -#, fuzzy -msgid "Warn about deprecated compiler features" -msgstr "No anunciar caracterstiques obsoletes del compilador" - -#: c.opt:188 -#, fuzzy -msgid "Warn about compile-time integer division by zero" -msgstr "No avisar sobre la divisi entera per zero en temps de compilaci" - -#: c.opt:192 -msgid "Warn about violations of Effective C++ style rules" -msgstr "Avisar violacions de regles d'estil de Effective C++" - -#: c.opt:196 -#, fuzzy -msgid "Warn about an empty body in an if or else statement" -msgstr "cos buit en una declaraci else" - -#: c.opt:200 -msgid "Warn about stray tokens after #elif and #endif" -msgstr "" - -#: c.opt:208 -msgid "This switch is deprecated; use -Werror=implicit-function-declaration instead" -msgstr "" - -#: c.opt:212 -#, fuzzy -msgid "Warn if testing floating point numbers for equality" -msgstr "Avisar sobre l'equitat de proves de nombres de coma flotant" - -#: c.opt:216 -#, fuzzy -msgid "Warn about printf/scanf/strftime/strfmon format string anomalies" -msgstr "Avisar sobre anomalies amb format de printf/scanf/strftime/strfmon" - -#: c.opt:220 -#, fuzzy -msgid "Warn if passing too many arguments to a function for its format string" -msgstr "massa arguments per a la funci \"va_start\"" - -#: c.opt:224 -#, fuzzy -msgid "Warn about format strings that are not literals" -msgstr "Avisar sobre l's de literals multicarcters" - -#: c.opt:228 -#, fuzzy -msgid "Warn about format strings that contain NUL bytes" -msgstr "Avisar sobre l's de literals multicarcters" - -#: c.opt:232 -msgid "Warn about possible security problems with format functions" -msgstr "Avisar sobre possibles problemes de seguretat amb funcions de format" - -#: c.opt:236 -#, fuzzy -msgid "Warn about strftime formats yielding 2-digit years" -msgstr "No avisar sobre formats de strftime que produeixen dos dgits per a l'any" - -#: c.opt:240 -#, fuzzy -msgid "Warn about zero-length formats" -msgstr "cadena de format %s de longitud zero" - -#: c.opt:247 -msgid "Warn about variables which are initialized to themselves" -msgstr "" - -#: c.opt:254 -msgid "Warn about implicit function declarations" -msgstr "Avisar sobre la declaraci implcita de funcions" - -#: c.opt:258 -msgid "Warn when a declaration does not specify a type" -msgstr "Avisar quan una declaraci no especifiqui un tipus" - -#: c.opt:262 -msgid "Deprecated. This switch has no effect" -msgstr "" - -#: c.opt:266 -#, fuzzy -msgid "Warn when there is a cast to a pointer from an integer of a different size" -msgstr "conversi a punter des d'un enter de grandria diferent" - -#: c.opt:270 -#, fuzzy -msgid "Warn about invalid uses of the \"offsetof\" macro" -msgstr "Avisar sobre l's de la directiva #import" - -#: c.opt:274 -msgid "Warn about PCH files that are found but not used" -msgstr "" - -#: c.opt:278 -#, fuzzy -msgid "Do not warn about using \"long long\" when -pedantic" -msgstr "No avisar sobre l's de \"long long\" quan s'usi -pedantic" - -#: c.opt:282 -#, fuzzy -msgid "Warn about suspicious declarations of \"main\"" -msgstr "Avisar sobre declaracions sospitoses de main" - -#: c.opt:286 -msgid "Warn about possibly missing braces around initializers" -msgstr "Avisar sobre possibles claus faltantes al voltant d'assignadors" - -#: c.opt:290 -#, fuzzy -msgid "Warn about global functions without previous declarations" -msgstr "Avisar sobre funcions globals sense declaracions prvies" - -#: c.opt:294 -#, fuzzy -msgid "Warn about missing fields in struct initializers" -msgstr "Avisar sobre possibles claus faltantes al voltant d'assignadors" - -#: c.opt:298 -msgid "Warn about functions which might be candidates for format attributes" -msgstr "Avisar per funcions que podrien ser candidates per a atributs de format" - -#: c.opt:302 -msgid "Warn about user-specified include directories that do not exist" -msgstr "" - -#: c.opt:306 -msgid "Warn about function parameters declared without a type specifier in K&R-style functions" -msgstr "" - -#: c.opt:310 -#, fuzzy -msgid "Warn about global functions without prototypes" -msgstr "Avisar sobre funcions globals sense prototips" - -#: c.opt:314 -#, fuzzy -msgid "Warn about use of multi-character character constants" -msgstr "Avisar sobre l's de literals multicarcters" - -#: c.opt:318 -#, fuzzy -msgid "Warn about \"extern\" declarations not at file scope" -msgstr "Avisar sobre externs que no estan en el nivell de l'abast del fitxer" - -#: c.opt:322 -#, fuzzy -msgid "Warn when non-templatized friend functions are declared within a template" -msgstr "No avisar quan les funcions friend sense patr sn declarades dintre d'un patr" - -#: c.opt:326 -#, fuzzy -msgid "Warn about non-virtual destructors" -msgstr "Avisar sobre destructors no virtuals" - -#: c.opt:330 -msgid "Warn about NULL being passed to argument slots marked as requiring non-NULL" -msgstr "" - -#: c.opt:334 -#, fuzzy -msgid "Warn about non-normalised Unicode strings" -msgstr "Avisar sobre cadenes de format que no sn cadenes literals" - -#: c.opt:338 -#, fuzzy -msgid "Warn if a C-style cast is used in a program" -msgstr "Avisar quan s'usi una conversi d'estil C en un programa" - -#: c.opt:342 -#, fuzzy -msgid "Warn for obsolescent usage in a declaration" -msgstr "Avisar sobre la declaraci implcita de funcions" - -#: c.opt:346 -#, fuzzy -msgid "Warn if an old-style parameter definition is used" -msgstr "Avisar quan no s'usi un parmetre d'una funci" - -#: c.opt:350 -msgid "Warn if a string is longer than the maximum portable length specified by the standard" -msgstr "" - -#: c.opt:354 -msgid "Warn about overloaded virtual function names" -msgstr "Avisar sobre noms de funcions virtual sobrecarregades" - -#: c.opt:358 -#, fuzzy -msgid "Warn about overriding initializers without side effects" -msgstr "Avisar sobre variables automtiques sense iniciar" - -#: c.opt:362 -#, fuzzy -msgid "Warn about possibly missing parentheses" -msgstr "Avisar sobre possibles parntesis faltantes" - -#: c.opt:366 -#, fuzzy -msgid "Warn when converting the type of pointers to member functions" -msgstr "avisar quan el tipus converteix punters a funcions membre" - -#: c.opt:370 -msgid "Warn about function pointer arithmetic" -msgstr "Avisar sobre l'aritmtica de punters de funcions" - -#: c.opt:374 -#, fuzzy -msgid "Warn when a pointer is cast to an integer of a different size" -msgstr "conversi de punter a enter de grandria diferent" - -#: c.opt:378 -#, fuzzy -msgid "Warn about misuses of pragmas" -msgstr "Avisar sobre pragmas no reconeguts" - -#: c.opt:382 -#, fuzzy -msgid "Warn if inherited methods are unimplemented" -msgstr "Avisar si es detecten comentaris niats" - -#: c.opt:386 -msgid "Warn about multiple declarations of the same object" -msgstr "Avisar sobre declaracions mltiples del mateix objecte" - -#: c.opt:390 -msgid "Warn when the compiler reorders code" -msgstr "Avisar quan el compilador reordeni codi" - -#: c.opt:394 -#, fuzzy -msgid "Warn whenever a function's return type defaults to \"int\" (C), or about inconsistent return types (C++)" -msgstr "Avisar quan el tipus de retorn per defecte d'una funci canvia a int" - -#: c.opt:398 -msgid "Warn if a selector has multiple methods" -msgstr "" - -#: c.opt:402 -msgid "Warn about possible violations of sequence point rules" -msgstr "Avisar sobre possibles violacions a les regles de seqncia de punt" - -#: c.opt:406 -#, fuzzy -msgid "Warn about signed-unsigned comparisons" -msgstr "Avisar sobre comparances signed/unsigned" - -#: c.opt:410 -msgid "Warn when overload promotes from unsigned to signed" -msgstr "Avisar quan la sobrecrrega promogui de unsigned a signed" - -#: c.opt:414 -msgid "Warn about uncasted NULL used as sentinel" -msgstr "" - -#: c.opt:418 -#, fuzzy -msgid "Warn about unprototyped function declarations" -msgstr "Avisar sobre declaracions de funci sense prototip" - -#: c.opt:422 -msgid "Warn if type signatures of candidate methods do not match exactly" -msgstr "" - -#: c.opt:426 -msgid "Warn when synthesis behavior differs from Cfront" -msgstr "Avisar quan el comportament de sntesi difereixi de Cfront" - -#: c.opt:430 common.opt:182 -msgid "Do not suppress warnings from system headers" -msgstr "No suprimir els avisos dels encapalats del sistema" - -#: c.opt:434 -#, fuzzy -msgid "Warn about features not present in traditional C" -msgstr "es suggereix no usar #elif en C tradicional" - -#: c.opt:438 -msgid "Warn of prototypes causing type conversions different from what would happen in the absence of prototype" -msgstr "" - -#: c.opt:442 -msgid "Warn if trigraphs are encountered that might affect the meaning of the program" -msgstr "" - -#: c.opt:446 -#, fuzzy -msgid "Warn about @selector()s without previously declared methods" -msgstr "Avisar sobre funcions globals sense declaracions prvies" - -#: c.opt:450 -#, fuzzy -msgid "Warn if an undefined macro is used in an #if directive" -msgstr "directiva # no definida o no vlida" - -#: c.opt:454 -msgid "Warn about unrecognized pragmas" -msgstr "Avisar sobre pragmas no reconeguts" - -#: c.opt:458 -msgid "Warn about macros defined in the main file that are not used" -msgstr "" - -#: c.opt:462 -#, fuzzy -msgid "Do not warn about using variadic macros when -pedantic" -msgstr "No avisar sobre l's de \"long long\" quan s'usi -pedantic" - -#: c.opt:466 -#, fuzzy -msgid "Warn if a variable length array is used" -msgstr "Avisar quan no s'usi una variable" - -#: c.opt:470 -msgid "In C++, nonzero means warn about deprecated conversion from string literals to `char *'. In C, similar warning, except that the conversion is of course not deprecated by the ISO C standard." -msgstr "" - -#: c.opt:474 -#, fuzzy -msgid "Warn when a pointer differs in signedness in an assignment" -msgstr "Avisar quan la sobrecrrega promogui de unsigned a signed" - -#: c.opt:478 -msgid "A synonym for -std=c89 (for C) or -std=c++98 (for C++)" -msgstr "" - -#: c.opt:486 -#, fuzzy -msgid "Enforce class member access control semantics" -msgstr "No obeir les semntiques de control d'accs" - -#: c.opt:493 -msgid "Change when template instances are emitted" -msgstr "Canviar quan s'emetin les instncies del patr" - -#: c.opt:497 -#, fuzzy -msgid "Recognize the \"asm\" keyword" -msgstr "No reconixer la paraula clau \"asm\"" - -#: c.opt:501 -#, fuzzy -msgid "Recognize built-in functions" -msgstr "No reconixer cap funci interna" - -#: c.opt:508 -msgid "Check the return value of new" -msgstr "Revisar el valor de retorn de new" - -#: c.opt:512 -#, fuzzy -msgid "Allow the arguments of the '?' operator to have different types" -msgstr "els operands de ?: tenen tipus diferents" - -#: c.opt:516 -#, fuzzy -msgid "Reduce the size of object files" -msgstr "Reduir la grandria dels fitxers objecte" - -#: c.opt:520 -#, fuzzy -msgid "Use class for constant strings" -msgstr "Especificar un nom alternatiu per a la secci constant" - -#: c.opt:524 -msgid "Inline member functions by default" -msgstr "Fer que les funcions membre siguin inline per omissi" - -#: c.opt:528 -#, fuzzy -msgid "Preprocess directives only." -msgstr "Processar directives #ident" - -#: c.opt:532 -#, fuzzy -msgid "Permit '$' as an identifier character" -msgstr "el format s una cadena de carcter ampla" - -#: c.opt:539 -#, fuzzy -msgid "Generate code to check exception specifications" -msgstr "No generar codi per a revisar excepcions d'especificacions" - -#: c.opt:546 -msgid "Convert all strings and character constants to character set " -msgstr "" - -#: c.opt:550 -#, fuzzy -msgid "Permit universal character names (\\u and \\U) in identifiers" -msgstr "universal-character-name \"\\u%04x\" no s vlid en l'identificador" - -#: c.opt:554 -msgid "Specify the default character set for source files" -msgstr "" - -#: c.opt:562 -#, fuzzy -msgid "Scope of for-init-statement variables is local to the loop" -msgstr "L'mbit de les variables de la declaraci d'inici de for s'estn cap a fora" - -#: c.opt:566 -#, fuzzy -msgid "Do not assume that standard C libraries and \"main\" exist" -msgstr "Assumir que podrien no existir les biblioteques estndard i main" - -#: c.opt:570 -#, fuzzy -msgid "Recognize GNU-defined keywords" -msgstr "No reconixer les paraules claus definides per GNU" - -#: c.opt:574 -msgid "Generate code for GNU runtime environment" -msgstr "" - -#: c.opt:578 -#, fuzzy -msgid "Use traditional GNU semantics for inline functions" -msgstr "C tradicional rebutja els valors inicials d'unions" - -#: c.opt:591 -msgid "Assume normal C execution environment" -msgstr "Assumir l'ambient normal d'execuci C" - -#: c.opt:595 -msgid "Enable support for huge objects" -msgstr "Activar el suport per a objectes enormes" - -#: c.opt:599 -msgid "Export functions even if they can be inlined" -msgstr "Exportar funcions encara si poden ser inline" - -#: c.opt:603 -#, fuzzy -msgid "Emit implicit instantiations of inline templates" -msgstr "Emetre solament instanciacions explcites de patrons inline" - -#: c.opt:607 -#, fuzzy -msgid "Emit implicit instantiations of templates" -msgstr "Emetre solament instanciacions explcites de patrons inline" - -#: c.opt:611 -#, fuzzy -msgid "Inject friend functions into enclosing namespace" -msgstr "Integrar les funcions simples en els seus invocators" - -#: c.opt:618 -msgid "Allow implicit conversions between vectors with differing numbers of subparts and/or differing element types." -msgstr "" - -#: c.opt:622 -#, fuzzy -msgid "Don't warn about uses of Microsoft extensions" -msgstr "No avisar pedantment sobre els usos d'extensions Microsoft" - -#: c.opt:632 -msgid "Generate code for NeXT (Apple Mac OS X) runtime environment" -msgstr "" - -#: c.opt:636 -msgid "Assume that receivers of Objective-C messages may be nil" -msgstr "" - -#: c.opt:648 -msgid "Generate special Objective-C methods to initialize/destroy non-POD C++ ivars, if needed" -msgstr "" - -#: c.opt:652 -msgid "Allow fast jumps to the message dispatcher" -msgstr "" - -#: c.opt:658 -msgid "Enable Objective-C exception and synchronization syntax" -msgstr "" - -#: c.opt:662 -msgid "Enable garbage collection (GC) in Objective-C/Objective-C++ programs" -msgstr "" - -#: c.opt:667 -#, fuzzy -msgid "Enable Objective-C setjmp exception handling runtime" -msgstr "Activar el maneig d'excepcions" - -#: c.opt:671 -#, fuzzy -msgid "Enable OpenMP" -msgstr "Activar la depuraci" - -#: c.opt:675 -msgid "Recognize C++ kewords like \"compl\" and \"xor\"" -msgstr "" - -#: c.opt:679 -#, fuzzy -msgid "Enable optional diagnostics" -msgstr "Desactivar els diagnstics opcionals" - -#: c.opt:686 -msgid "Look for and use PCH files even when preprocessing" -msgstr "" - -#: c.opt:690 -msgid "Downgrade conformance errors to warnings" -msgstr "Degradar els errors de concordana a advertiments" - -#: c.opt:694 -msgid "Treat the input file as already preprocessed" -msgstr "" - -#: c.opt:698 -msgid "Used in Fix-and-Continue mode to indicate that object files may be swapped in at runtime" -msgstr "" - -#: c.opt:702 -msgid "Enable automatic template instantiation" -msgstr "Activar l'instanciaci automtica de patrons" - -#: c.opt:706 -#, fuzzy -msgid "Generate run time type descriptor information" -msgstr "No generar informaci del tipus de descriptor en temps d'execuci" - -#: c.opt:710 -msgid "Use the same size for double as for float" -msgstr "Usar la mateixa grandria per a double que per a float" - -#: c.opt:718 -#, fuzzy -msgid "Force the underlying type for \"wchar_t\" to be \"unsigned short\"" -msgstr "Fer de costat el tipus sota wchar_t per \"unsigned short\"" - -#: c.opt:722 -msgid "When \"signed\" or \"unsigned\" is not given make the bitfield signed" -msgstr "" - -#: c.opt:726 -#, fuzzy -msgid "Make \"char\" signed by default" -msgstr "Fer que \"char\" sigui signed per omissi" - -#: c.opt:733 -msgid "Display statistics accumulated during compilation" -msgstr "Mostrar les estadstiques acumulades durant la compilaci" - -#: c.opt:740 -msgid "Distance between tab stops for column reporting" -msgstr "" - -#: c.opt:744 -#, fuzzy -msgid "Specify maximum template instantiation depth" -msgstr "Especificar la profunditat mxima d'instanciaci de patrons" - -#: c.opt:751 -#, fuzzy -msgid "Do not generate thread-safe code for initializing local statics" -msgstr "No generis codi per a crides near" - -#: c.opt:755 -msgid "When \"signed\" or \"unsigned\" is not given make the bitfield unsigned" -msgstr "" - -#: c.opt:759 -msgid "Make \"char\" unsigned by default" -msgstr "Fer que \"char\" sigui unsigned per omissi" - -#: c.opt:763 -msgid "Use __cxa_atexit to register destructors" -msgstr "Usar __cxa_atexit per a registrar destructors" - -#: c.opt:767 -msgid "Use __cxa_get_exception_ptr in exception handling" -msgstr "" - -#: c.opt:771 -msgid "Marks all inlined methods as having hidden visibility" -msgstr "" - -#: c.opt:775 -msgid "Changes visibility to match Microsoft Visual Studio by default" -msgstr "" - -#: c.opt:779 -msgid "Discard unused virtual functions" -msgstr "Descartar funcions virtual sense usar" - -#: c.opt:783 -msgid "Implement vtables using thunks" -msgstr "Implementar vtables usant thunks" - -#: c.opt:787 -msgid "Emit common-like symbols as weak symbols" -msgstr "Emetre smbols comuns com smbols febles" - -#: c.opt:791 -msgid "Convert all wide strings and character constants to character set " -msgstr "" - -#: c.opt:795 -msgid "Generate a #line directive pointing at the current working directory" -msgstr "" - -#: c.opt:799 -msgid "Emit cross referencing information" -msgstr "Emetre informaci de referncia creuada" - -#: c.opt:803 -msgid "Generate lazy class lookup (via objc_getClass()) for use in Zero-Link mode" -msgstr "" - -#: c.opt:807 -msgid "Dump declarations to a .decl file" -msgstr "" - -#: c.opt:811 -msgid "Aggressive reduced debug info for structs" -msgstr "" - -#: c.opt:815 -msgid "Conservative reduced debug info for structs" -msgstr "" - -#: c.opt:819 -msgid "Detailed reduced debug info for structs" -msgstr "" - -#: c.opt:823 c.opt:855 -msgid "Add to the end of the system include path" -msgstr "" - -#: c.opt:827 -#, fuzzy -msgid "Accept definition of macros in " -msgstr "cicle en la definici de la reservaci \"%s\"" - -#: c.opt:831 -msgid "-imultilib Set to be the multilib include subdirectory" -msgstr "" - -#: c.opt:835 -msgid "Include the contents of before other files" -msgstr "" - -#: c.opt:839 -#, fuzzy -msgid "Specify as a prefix for next two options" -msgstr "Especificar un nom alternatiu per a la secci de text" - -#: c.opt:843 -msgid "Set to be the system root directory" -msgstr "" - -#: c.opt:847 -msgid "Add to the start of the system include path" -msgstr "" - -#: c.opt:851 -msgid "Add to the end of the quote include path" -msgstr "" - -#: c.opt:872 -msgid "Do not search standard system include directories (those specified with -isystem will still be used)" -msgstr "" - -#: c.opt:876 -msgid "Do not search standard system include directories for C++" -msgstr "" - -#: c.opt:892 -msgid "Generate C header of platform-specific features" -msgstr "" - -#: c.opt:896 -msgid "Print a checksum of the executable for PCH validity checking, and stop" -msgstr "" - -#: c.opt:900 -msgid "Remap file names when including files" -msgstr "" - -#: c.opt:904 -msgid "Conform to the ISO 1998 C++ standard" -msgstr "" - -#: c.opt:908 -msgid "Conform to the ISO 1998 C++ standard, with extensions that are likely to" -msgstr "" - -#: c.opt:915 c.opt:950 -msgid "Conform to the ISO 1990 C standard" -msgstr "" - -#: c.opt:919 c.opt:958 -msgid "Conform to the ISO 1999 C standard" -msgstr "" - -#: c.opt:923 -msgid "Deprecated in favor of -std=c99" -msgstr "" - -#: c.opt:927 -msgid "Conform to the ISO 1998 C++ standard with GNU extensions" -msgstr "" - -#: c.opt:931 -msgid "Conform to the ISO 1998 C++ standard, with GNU extensions and" -msgstr "" - -#: c.opt:938 -msgid "Conform to the ISO 1990 C standard with GNU extensions" -msgstr "" - -#: c.opt:942 -msgid "Conform to the ISO 1999 C standard with GNU extensions" -msgstr "" - -#: c.opt:946 -msgid "Deprecated in favor of -std=gnu99" -msgstr "" - -#: c.opt:954 -msgid "Conform to the ISO 1990 C standard as amended in 1994" -msgstr "" - -#: c.opt:962 -msgid "Deprecated in favor of -std=iso9899:1999" -msgstr "" - -#: c.opt:966 -msgid "Enable traditional preprocessing" -msgstr "" - -#: c.opt:970 -msgid "Support ISO C trigraphs" -msgstr "" - -#: c.opt:974 -msgid "Do not predefine system-specific and GCC-specific macros" -msgstr "" - -#: c.opt:978 -msgid "Enable verbose output" -msgstr "Activar la sortida de depuraci verbosa" - -#: common.opt:27 -#, fuzzy -msgid "Display this information" -msgstr " --help Mostra aquesta informaci\n" - -#: common.opt:31 -msgid "Display descriptions of a specific class of options. is one or more of optimizers, target, warnings, undocumented, params" -msgstr "" - -#: common.opt:35 -msgid "Alias for --help=target" -msgstr "" - -#: common.opt:51 -msgid "Set parameter to value. See below for a complete list of parameters" -msgstr "" - -#: common.opt:58 -#, fuzzy -msgid "Put global and static data smaller than bytes into a special section (on some targets)" -msgstr "" -" -G Collocar les dades globals i esttics ms petits que \n" -" octets en una secci especial (en alguns objectius)\n" - -#: common.opt:62 -#, fuzzy -msgid "Set optimization level to " -msgstr " -O[nombre] Establir el nivell d'optimitzaci a [nombre]\n" - -#: common.opt:66 -#, fuzzy -msgid "Optimize for space rather than speed" -msgstr " -Os Optimitzar per a espai en lloc de velocitat\n" - -#: common.opt:70 -msgid "This switch is deprecated; use -Wextra instead" -msgstr "" - -#: common.opt:74 -msgid "Warn about returning structures, unions or arrays" -msgstr "Avisar sobre la retorn d'estructures, unions o matrius" - -#: common.opt:78 -msgid "Warn if an array is accessed out of bounds" -msgstr "" - -#: common.opt:82 -#, fuzzy -msgid "Warn about inappropriate attribute usage" -msgstr "Avisar sobre l'aritmtica de punters de funcions" - -#: common.opt:86 -msgid "Warn about pointer casts which increase alignment" -msgstr "Avisar sobre conversi de punters que incrementi l'alineaci" - -#: common.opt:90 -msgid "Warn about uses of __attribute__((deprecated)) declarations" -msgstr "Avisar sobre el s de declaracions __attribute__((deprecated))" - -#: common.opt:94 -msgid "Warn when an optimization pass is disabled" -msgstr "Avisar quan es va desactivar un pas d'optimitzaci" - -#: common.opt:98 -msgid "Treat all warnings as errors" -msgstr "Tractar tots els avisos com errors" - -#: common.opt:102 -#, fuzzy -msgid "Treat specified warning as error" -msgstr "Tractar tots els avisos com errors" - -#: common.opt:106 -msgid "Print extra (possibly unwanted) warnings" -msgstr "" - -#: common.opt:110 -msgid "Exit on the first error occurred" -msgstr "" - -#: common.opt:114 -msgid "Warn when an inlined function cannot be inlined" -msgstr "Avisar quan una funci inline no pot ser inline" - -#: common.opt:118 -#, fuzzy -msgid "Warn if an object is larger than bytes" -msgstr " -Wlarger-than- Avisar si un objecte s ms gran que octets\n" - -#: common.opt:122 -msgid "Warn when a logical operator is suspicously always evaluating to true or false" -msgstr "" - -#: common.opt:126 -msgid "Warn if the loop cannot be optimized due to nontrivial assumptions." -msgstr "" - -#: common.opt:130 -#, fuzzy -msgid "Warn about functions which might be candidates for __attribute__((noreturn))" -msgstr "Avisar sobre funcions que podrien ser candidates per a l'atribut noreturn" - -#: common.opt:134 -#, fuzzy -msgid "Warn about overflow in arithmetic expressions" -msgstr "desbordament de coma flotant en l'expressi" - -#: common.opt:138 -msgid "Warn when the packed attribute has no effect on struct layout" -msgstr "Avisar quan l'atribut packed no t efecte en la disposici d'un struct" - -#: common.opt:142 -#, fuzzy -msgid "Warn when padding is required to align structure members" -msgstr "Avisar quan es requereix farcit per a alinear als membres d'un struct" - -#: common.opt:146 -msgid "Warn when one local variable shadows another" -msgstr "Avisar quan una variable local enfosque una altra" - -#: common.opt:150 -msgid "Warn when not issuing stack smashing protection for some reason" -msgstr "" - -#: common.opt:154 common.opt:158 -#, fuzzy -msgid "Warn about code which might break strict aliasing rules" -msgstr "Avisar sobre codi que pugui trencar les regles estrictes d'aliessis" - -#: common.opt:162 common.opt:166 -msgid "Warn about optimizations that assume that signed overflow is undefined" -msgstr "" - -#: common.opt:170 -msgid "Warn about enumerated switches, with no default, missing a case" -msgstr "Avisar sobre switch enumerats, sense valor per defecte, que manquin d'un case" - -#: common.opt:174 -#, fuzzy -msgid "Warn about enumerated switches missing a \"default:\" statement" -msgstr "Avisar sobre switch enumerats que manquin d'un \"default:\"" - -#: common.opt:178 -msgid "Warn about all enumerated switches missing a specific case" -msgstr "Avisar sobre tots els switch enumerats que manquin d'un case especfic" - -#: common.opt:186 -msgid "Warn about uninitialized automatic variables" -msgstr "Avisar sobre variables automtiques sense iniciar" - -#: common.opt:190 -msgid "Warn about code that will never be executed" -msgstr "Avisar sobre codi que mai s'executar" - -#: common.opt:194 -msgid "Enable all -Wunused- warnings" -msgstr "" - -#: common.opt:198 -msgid "Warn when a function is unused" -msgstr "Avisar quan no s'usi una funci" - -#: common.opt:202 -msgid "Warn when a label is unused" -msgstr "Avisar quan no s'usi una etiqueta" - -#: common.opt:206 -msgid "Warn when a function parameter is unused" -msgstr "Avisar quan no s'usi un parmetre d'una funci" - -#: common.opt:210 -msgid "Warn when an expression value is unused" -msgstr "Avisar quan no s'usi un valor d'una expressi" - -#: common.opt:214 -msgid "Warn when a variable is unused" -msgstr "Avisar quan no s'usi una variable" - -#: common.opt:218 -#, fuzzy -msgid "Warn when a register variable is declared volatile" -msgstr "Avisar quan no s'usi una variable" - -#: common.opt:222 -msgid "Warn instead of error in case profiles in -fprofile-use do not match" -msgstr "" - -#: common.opt:226 -#, fuzzy -msgid "Emit declaration information into " -msgstr " -aux-info Emetre la informaci de declaracions en el \n" - -#: common.opt:239 -#, fuzzy -msgid "Enable dumps from specific passes of the compiler" -msgstr " -d[lletres] Activa els bolcats des de passos especfics del compilador\n" - -#: common.opt:243 -#, fuzzy -msgid "Set the file basename to be used for dumps" -msgstr " -dumpbase Nom base a usar per als bolcats des de passos especfics\n" - -#: common.opt:263 -msgid "Align the start of functions" -msgstr "Alinear l'inici de les funcions" - -#: common.opt:270 -msgid "Align labels which are only reached by jumping" -msgstr "Alinear les etiquetes que solament s'arriben a saltant" - -#: common.opt:277 -msgid "Align all labels" -msgstr "Alinear totes les etiquetes" - -#: common.opt:284 -msgid "Align the start of loops" -msgstr "Alinear l'inici dels cicles" - -#: common.opt:299 -#, fuzzy -msgid "Specify that arguments may alias each other and globals" -msgstr "Especifica que els arguments poden ser alies de cada altre i dels globals" - -#: common.opt:303 -msgid "Assume arguments may alias globals but not each other" -msgstr "Assumir que els arguments poden ser alies de globals per no de cada altre" - -#: common.opt:307 -#, fuzzy -msgid "Assume arguments alias neither each other nor globals" -msgstr "Assumir que els arguments no poden ser alies de globals o de cada altre" - -#: common.opt:311 -#, fuzzy -msgid "Assume arguments alias no other storage" -msgstr "Assumir que els arguments no poden ser alies de globals o de cada altre" - -#: common.opt:315 -#, fuzzy -msgid "Generate unwind tables that are exact at each instruction boundary" -msgstr "Generar matrius de desembolico exactament en cada lmit d'instrucci" - -#: common.opt:319 -#, fuzzy -msgid "Generate auto-inc/dec instructions" -msgstr "Generar instruccions char" - -#: common.opt:327 -msgid "Generate code to check bounds before indexing arrays" -msgstr "Generar codi per a revisar els lmits abans de matrius" - -#: common.opt:331 -#, fuzzy -msgid "Replace add, compare, branch with branch on count register" -msgstr "Reemplaar add,compare,branch per branch en el compte de registres" - -#: common.opt:335 -msgid "Use profiling information for branch probabilities" -msgstr "Usar la informaci d'anlisi de perfil per a les probabilitats de ramificaci" - -#: common.opt:339 -msgid "Perform branch target load optimization before prologue / epilogue threading" -msgstr "" - -#: common.opt:343 -msgid "Perform branch target load optimization after prologue / epilogue threading" -msgstr "" - -#: common.opt:347 -msgid "Restrict target load migration not to re-use registers in any basic block" -msgstr "" - -#: common.opt:351 -#, fuzzy -msgid "Mark as being preserved across functions" -msgstr " -fcall-saved- Marca el com preservat entre funcions\n" - -#: common.opt:355 -#, fuzzy -msgid "Mark as being corrupted by function calls" -msgstr " -fcall-used- Marca el com corrupte per a crides de funci\n" - -#: common.opt:362 -#, fuzzy -msgid "Save registers around function calls" -msgstr "Permetre guardar registres al voltant de crides de funci" - -#: common.opt:366 -msgid "Compare the results of several data dependence analyzers." -msgstr "" - -#: common.opt:370 -msgid "Do not put uninitialized globals in the common section" -msgstr "No posar globals sense iniciar en la secci comuna" - -#: common.opt:374 -#, fuzzy -msgid "Perform a register copy-propagation optimization pass" -msgstr "Fer el pas d'optimitzaci de cpia-propagaci de registres" - -#: common.opt:378 -msgid "Perform cross-jumping optimization" -msgstr "Realitzar optimitzacions de salts creuats" - -#: common.opt:382 -msgid "When running CSE, follow jumps to their targets" -msgstr "Quan s'estigui executant CSE, seguir als salts als seus objectius" - -#: common.opt:386 -msgid "When running CSE, follow conditional jumps" -msgstr "Quan s'estigui executant CSE, seguir als salts condicionals" - -#: common.opt:390 -msgid "Omit range reduction step when performing complex division" -msgstr "" - -#: common.opt:394 -#, fuzzy -msgid "Place data items into their own section" -msgstr "collocar els elements de dades en la seva prpia secci" - -#: common.opt:398 -msgid "List all available debugging counters with their limits and counts." -msgstr "" - -#: common.opt:402 -msgid "-fdbg-cnt=:[,:,...] Set the debug counter limit. " -msgstr "" - -#: common.opt:406 -msgid "Map one directory name to another in debug information" -msgstr "" - -#: common.opt:412 -msgid "Defer popping functions args from stack until later" -msgstr "Diferir l'extracci d'arguments de funcions de la pila fins ms tard" - -#: common.opt:416 -msgid "Attempt to fill delay slots of branch instructions" -msgstr "Intentar emplenar les ranures de retard de les instruccions de ramificaci" - -#: common.opt:420 -msgid "Delete useless null pointer checks" -msgstr "Esborrar les revisions de punters nuls sense s" - -#: common.opt:424 -#, fuzzy -msgid "How often to emit source location at the beginning of line-wrapped diagnostics" -msgstr " -fdiagnostics-show-location=[once | every-line] Indica que tan seguit es ha d'emetre la informaci d'ubicaci del codi, com prefix, a l'inici dels diagnstics quan est activat el cort de lnia\n" - -#: common.opt:428 -msgid "Amend appropriate diagnostic messages with the command line option that controls them" -msgstr "" - -#: common.opt:432 -msgid "Dump various compiler internals to a file" -msgstr "" - -#: common.opt:436 -#, fuzzy -msgid "Suppress output of addresses in debugging dumps" -msgstr "Suprimir la sortida de notes de nombres d'instrucci i nombres de lnia en els bolcats de depuraci" - -#: common.opt:440 -#, fuzzy -msgid "Suppress output of instruction numbers, line number notes and addresses in debugging dumps" -msgstr "Suprimir la sortida de notes de nombres d'instrucci i nombres de lnia en els bolcats de depuraci" - -#: common.opt:444 -#, fuzzy -msgid "Perform early inlining" -msgstr "Realitzar les optimitzacions de cicle" - -#: common.opt:448 -msgid "Perform DWARF2 duplicate elimination" -msgstr "Realitzar l'eliminaci de DWARF2 duplicats" - -#: common.opt:452 common.opt:456 -msgid "Perform unused type elimination in debug info" -msgstr "" - -#: common.opt:460 -msgid "Do not suppress C++ class debug information." -msgstr "" - -#: common.opt:464 -msgid "Enable exception handling" -msgstr "Activar el maneig d'excepcions" - -#: common.opt:468 -msgid "Perform a number of minor, expensive optimizations" -msgstr "Realitzar un nombre menor d'optimitzacions costoses" - -#: common.opt:475 -msgid "Assume no NaNs or infinities are generated" -msgstr "" - -#: common.opt:479 -#, fuzzy -msgid "Mark as being unavailable to the compiler" -msgstr " -ffixed- Marca el com no disponible per al compilador\n" - -#: common.opt:483 -msgid "Don't allocate floats and doubles in extended-precision registers" -msgstr "" - -#: common.opt:489 -#, fuzzy -msgid "Copy memory address constants into registers before use" -msgstr "Copiar les constants d'adreces de memria en registres abans d'usar-los" - -#: common.opt:493 -#, fuzzy -msgid "Perform a forward propagation pass on RTL" -msgstr "Fer el pas d'optimitzaci de cpia-propagaci de registres" - -#: common.opt:500 -msgid "Allow function addresses to be held in registers" -msgstr "Permetre que les adreces de les funcions es conserven en registres" - -#: common.opt:504 -#, fuzzy -msgid "Place each function into its own section" -msgstr "collocar cada funci en la seva prpia secci" - -#: common.opt:508 -#, fuzzy -msgid "Perform global common subexpression elimination" -msgstr "Realitzar l'eliminaci de subexpressions comuns globals" - -#: common.opt:512 -#, fuzzy -msgid "Perform enhanced load motion during global common subexpression elimination" -msgstr "Realitzar el moviment de crrega millorada durant l'eliminaci de subexpressions globals" - -#: common.opt:516 -#, fuzzy -msgid "Perform store motion after global common subexpression elimination" -msgstr "Realitzar el moviment de guardat desprs de l'eliminaci de subexpressions globals" - -#: common.opt:520 -#, fuzzy -msgid "Perform redundant load after store elimination in global common subexpression" -msgstr "Realitzar el moviment de crrega millorada durant l'eliminaci de subexpressions globals" - -#: common.opt:525 -#, fuzzy -msgid "Perform global common subexpression elimination after register allocation" -msgstr "Realitzar l'eliminaci de subexpressions comuns globals" - -#: common.opt:530 -#, fuzzy -msgid "Enable guessing of branch probabilities" -msgstr "Activar la predicci de probabilitats de ramificaci" - -#: common.opt:538 -msgid "Process #ident directives" -msgstr "Processar directives #ident" - -#: common.opt:542 -msgid "Perform conversion of conditional jumps to branchless equivalents" -msgstr "" - -#: common.opt:546 -msgid "Perform conversion of conditional jumps to conditional execution" -msgstr "Realitzar la conversi de salts condicionals a execuci condicional" - -#: common.opt:554 -msgid "Do not generate .size directives" -msgstr "No generar directives .size" - -#: common.opt:563 -#, fuzzy -msgid "Pay attention to the \"inline\" keyword" -msgstr "Fer atenci a la paraula clau \"inline\"" - -#: common.opt:567 -#, fuzzy -msgid "Integrate simple functions into their callers when code size is known to not growth" -msgstr "Integrar les funcions simples en els seus invocators" - -#: common.opt:571 -msgid "Integrate simple functions into their callers" -msgstr "Integrar les funcions simples en els seus invocators" - -#: common.opt:575 -#, fuzzy -msgid "Integrate functions called once into their callers" -msgstr "Integrar les funcions simples en els seus invocators" - -#: common.opt:582 -#, fuzzy -msgid "Limit the size of inlined functions to " -msgstr "-finline-limit=\tLimita la grandria de funcions inline a \n" - -#: common.opt:586 -#, fuzzy -msgid "Instrument function entry and exit with profiling calls" -msgstr "Instrumentar funcions entrada/sortida amb crides d'anlisi de perfil" - -#: common.opt:590 -msgid "-finstrument-functions-exclude-function-list=name,... Do not instrument listed functions" -msgstr "" - -#: common.opt:594 -msgid "-finstrument-functions-exclude-file-list=filename,... Do not instrument functions listed in files" -msgstr "" - -#: common.opt:598 -#, fuzzy -msgid "Perform Interprocedural constant propagation" -msgstr "Activar la propagaci de les constants condicionals SSA" - -#: common.opt:602 -#, fuzzy -msgid "Discover pure and const functions" -msgstr "Descartar funcions virtual sense usar" - -#: common.opt:606 -msgid "Perform interprocedural points-to analysis" -msgstr "" - -#: common.opt:610 -msgid "Discover readonly and non addressable static variables" -msgstr "" - -#: common.opt:614 -msgid "Type based escape and alias analysis" -msgstr "" - -#: common.opt:618 -msgid "Perform matrix layout flattening and transposing based" -msgstr "" - -#: common.opt:623 -#, fuzzy -msgid "Perform structure layout optimizations based" -msgstr "Realitzar optimitzacions de reducci de fora" - -#: common.opt:628 -msgid "Optimize induction variables on trees" -msgstr "" - -#: common.opt:632 -#, fuzzy -msgid "Use jump tables for sufficiently large switch statements" -msgstr "l'etiqueta case no es troba dintre d'una declaraci switch" - -#: common.opt:636 -#, fuzzy -msgid "Generate code for functions even if they are fully inlined" -msgstr "Generar codi per a les funcions encara si estan completament inline" - -#: common.opt:640 -msgid "Emit static const variables even if they are not used" -msgstr "Emetre variables static const encara si no s'usen" - -#: common.opt:644 -#, fuzzy -msgid "Give external symbols a leading underscore" -msgstr "Els smbols externs tenen un subratllat inicial" - -#: common.opt:648 common.opt:852 common.opt:983 -msgid "Does nothing. Preserved for backward compatibility." -msgstr "" - -#: common.opt:652 -msgid "Set errno after built-in math functions" -msgstr "Establir errno desprs de les funcions matemtiques internes" - -#: common.opt:656 -#, fuzzy -msgid "Report on permanent memory allocation" -msgstr "Reportar l'allotjament en memria permanent al final de l'execuci" - -#: common.opt:663 -msgid "Attempt to merge identical constants and constant variables" -msgstr "Intentar barrejar constants idntiques i variables constants" - -#: common.opt:667 -msgid "Attempt to merge identical constants across compilation units" -msgstr "Intentar barrejar constants idntiques a travs de les unitats de compilaci" - -#: common.opt:671 -#, fuzzy -msgid "Limit diagnostics to characters per line. 0 suppresses line-wrapping" -msgstr " -fmessage-length= Limita la longitud dels missatges de diagnstic a carcters per lnia. 0 suprimeix el cort de lnia\n" - -#: common.opt:675 -msgid "Perform SMS based modulo scheduling before the first scheduling pass" -msgstr "" - -#: common.opt:679 -msgid "Perform SMS based modulo scheduling with register moves allowed" -msgstr "" - -#: common.opt:683 -#, fuzzy -msgid "Move loop invariant computations out of loops" -msgstr "Forar que totes les computacions invariantes del cicle siguin fora del cicle" - -#: common.opt:687 -msgid "Add mudflap bounds-checking instrumentation for single-threaded program" -msgstr "" - -#: common.opt:691 -msgid "Add mudflap bounds-checking instrumentation for multi-threaded program" -msgstr "" - -#: common.opt:695 -msgid "Ignore read operations when inserting mudflap instrumentation" -msgstr "" - -#: common.opt:699 -#, fuzzy -msgid "Use the RTL dead code elimination pass" -msgstr "Activar l'eliminaci agressiva de codi mort SSA" - -#: common.opt:703 -#, fuzzy -msgid "Use the RTL dead store elimination pass" -msgstr "Fa el pas complet d'optimitzaci de moviment de registres" - -#: common.opt:707 -msgid "Enable/Disable the traditional scheduling in loops that already passed modulo scheduling" -msgstr "" - -#: common.opt:711 -msgid "Support synchronous non-call exceptions" -msgstr "Suport per a excepcions sncrones no de crides" - -#: common.opt:715 -msgid "When possible do not generate stack frames" -msgstr "Quan sigui possible no generar marcs de pila" - -#: common.opt:719 -msgid "Expand OpenMP operations on SSA form" -msgstr "" - -#: common.opt:723 -#, fuzzy -msgid "Do the full register move optimization pass" -msgstr "Fa el pas complet d'optimitzaci de moviment de registres" - -#: common.opt:727 -msgid "Optimize sibling and tail recursive calls" -msgstr "Optimitzar les crides recursives germanades i d'extrem" - -#: common.opt:731 common.opt:735 -msgid "Report on memory allocation before interprocedural optimization" -msgstr "" - -#: common.opt:739 -msgid "Pack structure members together without holes" -msgstr "Empaqueta junts als membres de l'estructura sense forats" - -#: common.opt:743 -msgid "Set initial maximum structure member alignment" -msgstr "" - -#: common.opt:747 -#, fuzzy -msgid "Return small aggregates in memory, not registers" -msgstr "Retornar els agregats \"short\" en memria, no en registres" - -#: common.opt:751 -#, fuzzy -msgid "Perform loop peeling" -msgstr "Realitzar les optimitzacions de cicle" - -#: common.opt:755 -msgid "Enable machine specific peephole optimizations" -msgstr "Activar les optimitzacions de forats especfiques de la mquina" - -#: common.opt:759 -#, fuzzy -msgid "Enable an RTL peephole pass before sched2" -msgstr "Activa una execuci de passada de forats rtl abans de sched2" - -#: common.opt:763 -#, fuzzy -msgid "Generate position-independent code if possible (large mode)" -msgstr "Generar codi independent de posici, si s possible" - -#: common.opt:767 -#, fuzzy -msgid "Generate position-independent code for executables if possible (large mode)" -msgstr "Generar codi independent de posici, si s possible" - -#: common.opt:771 -#, fuzzy -msgid "Generate position-independent code if possible (small mode)" -msgstr "Generar codi independent de posici, si s possible" - -#: common.opt:775 -#, fuzzy -msgid "Generate position-independent code for executables if possible (small mode)" -msgstr "Generar codi independent de posici, si s possible" - -#: common.opt:779 -#, fuzzy -msgid "Run predictive commoning optimization." -msgstr "Permet una optimitzaci de moviment de registres" - -#: common.opt:783 -msgid "Generate prefetch instructions, if available, for arrays in loops" -msgstr "Generar instruccions de precarregament, si estan disponibles, per a matrius en cicles" - -#: common.opt:787 -msgid "Enable basic program profiling code" -msgstr "Activar el codi bsic d'anlisi de perfil del programa" - -#: common.opt:791 -#, fuzzy -msgid "Insert arc-based program profiling code" -msgstr "Inserir codi d'anlisi de perfil basat en el programa arc" - -#: common.opt:795 -msgid "Enable common options for generating profile info for profile feedback directed optimizations" -msgstr "" - -#: common.opt:799 -msgid "Enable common options for performing profile feedback directed optimizations" -msgstr "" - -#: common.opt:803 -msgid "Insert code to profile values of expressions" -msgstr "" - -#: common.opt:810 -msgid "Make compile reproducible using " -msgstr "" - -#: common.opt:820 -msgid "Record gcc command line switches in the object file." -msgstr "" - -#: common.opt:824 -#, fuzzy -msgid "Return small aggregates in registers" -msgstr "Retornar els agregats \"short\" en registres" - -#: common.opt:828 -msgid "Enables a register move optimization" -msgstr "Permet una optimitzaci de moviment de registres" - -#: common.opt:832 -#, fuzzy -msgid "Perform a register renaming optimization pass" -msgstr "Fer el pas d'optimitzaci de renomenaci de registres" - -#: common.opt:836 -msgid "Reorder basic blocks to improve code placement" -msgstr "Reordenar els blocs bsics per a millorar la ubicaci del codi" - -#: common.opt:840 -#, fuzzy -msgid "Reorder basic blocks and partition into hot and cold sections" -msgstr "Reordenar els blocs bsics per a millorar la ubicaci del codi" - -#: common.opt:844 -msgid "Reorder functions to improve code placement" -msgstr "Reordenar les funcions per a millorar la ubicaci del codi" - -#: common.opt:848 -#, fuzzy -msgid "Add a common subexpression elimination pass after loop optimizations" -msgstr "Executar un pas CSE abans de les optimitzacions de cicles" - -#: common.opt:856 -msgid "Disable optimizations that assume default FP rounding behavior" -msgstr "" - -#: common.opt:860 -msgid "Enable scheduling across basic blocks" -msgstr "Activar la calendaritzaci entre blocs bsics" - -#: common.opt:864 -msgid "Allow speculative motion of non-loads" -msgstr "Permetre el moviment especulatiu de cap crrega" - -#: common.opt:868 -msgid "Allow speculative motion of some loads" -msgstr "Permetre el moviment especulatiu d'unes crregues" - -#: common.opt:872 -msgid "Allow speculative motion of more loads" -msgstr "Permetre el moviment especulatiu de ms crregues" - -#: common.opt:876 -#, fuzzy -msgid "Set the verbosity level of the scheduler" -msgstr " -fsched-verbose= Estableix el nivell de detall del calendaritzador\n" - -#: common.opt:880 -msgid "If scheduling post reload, do superblock scheduling" -msgstr "" - -#: common.opt:884 -msgid "If scheduling post reload, do trace scheduling" -msgstr "" - -#: common.opt:888 -msgid "Reschedule instructions before register allocation" -msgstr "Recalendaritzar les instruccions abans de l'allotjament de registres" - -#: common.opt:892 -msgid "Reschedule instructions after register allocation" -msgstr "Recalendaritzar les instruccions desprs de l'allotjament de registres" - -#: common.opt:898 -msgid "Allow premature scheduling of queued insns" -msgstr "" - -#: common.opt:902 -msgid "Set number of queued insns that can be prematurely scheduled" -msgstr "" - -#: common.opt:910 common.opt:914 -msgid "Set dependence distance checking in premature scheduling of queued insns" -msgstr "" - -#: common.opt:918 -msgid "Access data in the same section from shared anchor points" -msgstr "" - -#: common.opt:922 -#, fuzzy -msgid "Perform sequence abstraction optimization on RTL" -msgstr "Realitzar optimitzacions de reducci de fora" - -#: common.opt:926 -msgid "Eliminate redundant sign extensions using LCM." -msgstr "" - -#: common.opt:930 -msgid "Show column numbers in diagnostics, when available. Default off" -msgstr "" - -#: common.opt:934 -msgid "Disable optimizations observable by IEEE signaling NaNs" -msgstr "" - -#: common.opt:938 -msgid "Disable floating point optimizations that ignore the IEEE signedness of zero" -msgstr "" - -#: common.opt:942 -#, fuzzy -msgid "Convert floating point constants to single precision constants" -msgstr "Convertir constants de coma flotant a constants de precisi simple" - -#: common.opt:946 -msgid "Split lifetimes of induction variables when loops are unrolled" -msgstr "" - -#: common.opt:950 -msgid "Split wide types into independent registers" -msgstr "" - -#: common.opt:954 -msgid "Apply variable expansion when loops are unrolled" -msgstr "" - -#: common.opt:960 -msgid "Insert stack checking code into the program" -msgstr "Insereix codi de revisi de la pila en el programa" - -#: common.opt:967 -msgid "Trap if the stack goes past " -msgstr "" - -#: common.opt:971 -msgid "Trap if the stack goes past symbol " -msgstr "" - -#: common.opt:975 -msgid "Use propolice as a stack protection method" -msgstr "" - -#: common.opt:979 -msgid "Use a stack protection method for every function" -msgstr "" - -#: common.opt:991 -msgid "Assume strict aliasing rules apply" -msgstr "Assumir que s'apliquen les regles estrictes d'alies" - -#: common.opt:995 -#, fuzzy -msgid "Treat signed overflow as undefined" -msgstr "Establir les definicions de Windows" - -#: common.opt:999 -msgid "Check for syntax errors, then stop" -msgstr "Buscar errors de sintaxi, i aleshores detenir-se" - -#: common.opt:1003 -#, fuzzy -msgid "Create data files needed by \"gcov\"" -msgstr "Crear fitxers de dades necessries per a gcov" - -#: common.opt:1007 -msgid "Perform jump threading optimizations" -msgstr "Realitzar optimitzacions de filat de salts" - -#: common.opt:1011 -#, fuzzy -msgid "Report the time taken by each compiler pass" -msgstr "Reportar el temps pres per cada pas del compilador al final de l'execuci" - -#: common.opt:1015 -msgid "Set the default thread-local storage code generation model" -msgstr "" - -#: common.opt:1019 -msgid "Reorder top level functions, variables, and asms" -msgstr "" - -#: common.opt:1023 -msgid "Perform superblock formation via tail duplication" -msgstr "" - -#: common.opt:1030 -#, fuzzy -msgid "Assume floating-point operations can trap" -msgstr "Les operacions de coma flotant poden capturar" - -#: common.opt:1034 -#, fuzzy -msgid "Trap for signed overflow in addition, subtraction and multiplication" -msgstr "Atrapar desbordaments signed en addici / substracci / multiplicaci" - -#: common.opt:1038 -#, fuzzy -msgid "Enable SSA-CCP optimization on trees" -msgstr "Activar les optimitzacions SSA" - -#: common.opt:1042 -#, fuzzy -msgid "Enable SSA-CCP optimization for stores and loads" -msgstr "Activar les optimitzacions SSA" - -#: common.opt:1046 -msgid "Enable loop header copying on trees" -msgstr "" - -#: common.opt:1050 -msgid "Replace SSA temporaries with better names in copies" -msgstr "" - -#: common.opt:1054 -msgid "Enable copy propagation on trees" -msgstr "" - -#: common.opt:1058 -msgid "This switch is obsolete" -msgstr "" - -#: common.opt:1062 -#, fuzzy -msgid "Transform condition stores into unconditional ones" -msgstr "Realitzar la conversi de salts condicionals a execuci condicional" - -#: common.opt:1066 -#, fuzzy -msgid "Enable SSA dead code elimination optimization on trees" -msgstr "Activar l'eliminaci agressiva de codi mort SSA" - -#: common.opt:1070 -#, fuzzy -msgid "Enable dominator optimizations" -msgstr "Activar les optimitzacions del enllaador" - -#: common.opt:1074 -#, fuzzy -msgid "Enable dead store elimination" -msgstr "Activar l'eliminaci agressiva de codi mort SSA" - -#: common.opt:1078 -msgid "Enable Full Redundancy Elimination (FRE) on trees" -msgstr "" - -#: common.opt:1082 -#, fuzzy -msgid "Enable loop invariant motion on trees" -msgstr "Forar que totes les computacions invariantes del cicle siguin fora del cicle" - -#: common.opt:1086 -#, fuzzy -msgid "Enable linear loop transforms on trees" -msgstr "Activar les optimitzacions del enllaador" - -#: common.opt:1090 -#, fuzzy -msgid "Create canonical induction variables in loops" -msgstr "Enfortir la reducci de totes les variables generals d'inducci de cicle" - -#: common.opt:1094 -#, fuzzy -msgid "Enable loop optimizations on tree level" -msgstr "Activar les optimitzacions del enllaador" - -#: common.opt:1098 -#, fuzzy -msgid "Enable automatic parallelization of loops" -msgstr "Activar l'instanciaci automtica de patrons" - -#: common.opt:1102 -#, fuzzy -msgid "Enable SSA-PRE optimization on trees" -msgstr "Activar les optimitzacions SSA" - -#: common.opt:1106 -msgid "Enable reassociation on tree level" -msgstr "" - -#: common.opt:1110 -msgid "Perform structural alias analysis" -msgstr "" - -#: common.opt:1114 -#, fuzzy -msgid "Enable SSA code sinking on trees" -msgstr "Activar les optimitzacions SSA" - -#: common.opt:1118 -msgid "Perform scalar replacement of aggregates" -msgstr "" - -#: common.opt:1122 -msgid "Replace temporary expressions in the SSA->normal pass" -msgstr "" - -#: common.opt:1126 -msgid "Perform live range splitting during the SSA->normal pass" -msgstr "" - -#: common.opt:1130 -#, fuzzy -msgid "Perform Value Range Propagation on trees" -msgstr "Fer el pas d'optimitzaci de cpia-propagaci de registres" - -#: common.opt:1134 -#, fuzzy -msgid "Compile whole compilation unit at a time" -msgstr "Buidar la unitat de traducci completa a un fitxer" - -#: common.opt:1138 -msgid "Perform loop unrolling when iteration count is known" -msgstr "Realitzar el desenrollament del cicle quan es coneix el compte d'iteraci" - -#: common.opt:1142 -msgid "Perform loop unrolling for all loops" -msgstr "Realitzar el desenrollament del cicle per a tots els cicles" - -#: common.opt:1149 -msgid "Allow loop optimizations to assume that the loops behave in normal way" -msgstr "" - -#: common.opt:1153 -msgid "Allow optimization for floating-point arithmetic which may change the" -msgstr "" - -#: common.opt:1158 -msgid "Same as -fassociative-math for expressions which include division." -msgstr "" - -#: common.opt:1166 -#, fuzzy -msgid "Allow math optimizations that may violate IEEE or ISO standards" -msgstr "Permetre optimitzacions matemtiques que poden violar els estndards IEEE o ANSI" - -#: common.opt:1170 -#, fuzzy -msgid "Perform loop unswitching" -msgstr "Realitzar les optimitzacions de cicle" - -#: common.opt:1174 -msgid "Just generate unwind tables for exception handling" -msgstr "Noms generar matrius de desembolico per a maneig d'excepcions" - -#: common.opt:1178 -#, fuzzy -msgid "Perform variable tracking" -msgstr "Realitzar optimitzaci de la crida de l'extrem" - -#: common.opt:1182 -msgid "Perform variable tracking and also tag variables that are uninitialized" -msgstr "" - -#: common.opt:1186 -#, fuzzy -msgid "Enable loop vectorization on trees" -msgstr "Activar les optimitzacions del enllaador" - -#: common.opt:1190 -#, fuzzy -msgid "Enable use of cost model in vectorization" -msgstr "Activar l's de les instruccions condicionals move" - -#: common.opt:1194 -msgid "Enable loop versioning when doing loop vectorization on trees" -msgstr "" - -#: common.opt:1198 -#, fuzzy -msgid "Set the verbosity level of the vectorizer" -msgstr " -fsched-verbose= Estableix el nivell de detall del calendaritzador\n" - -#: common.opt:1202 -msgid "Enable copy propagation of scalar-evolution information." -msgstr "" - -#: common.opt:1212 -msgid "Add extra commentary to assembler output" -msgstr "Agregar comentaris extra a la sortida de l'ensamblador" - -#: common.opt:1216 -msgid "Set the default symbol visibility" -msgstr "" - -#: common.opt:1221 -#, fuzzy -msgid "Use expression value profiles in optimizations" -msgstr "Activar les optimitzacions del enllaador" - -#: common.opt:1225 -msgid "Construct webs and split unrelated uses of single variable" -msgstr "" - -#: common.opt:1229 -#, fuzzy -msgid "Perform whole program optimizations" -msgstr "Realitzar les optimitzacions de cicle" - -#: common.opt:1233 -msgid "Assume signed arithmetic overflow wraps around" -msgstr "" - -#: common.opt:1237 -msgid "Put zero initialized data in the bss section" -msgstr "Posar dades inicialitzades a zero en la secci bss" - -#: common.opt:1241 -msgid "Generate debug information in default format" -msgstr "Generar informaci de depuraci en el format per omissi" - -#: common.opt:1245 -msgid "Generate debug information in COFF format" -msgstr "Generar informaci de depuraci en el format COFF" - -#: common.opt:1249 -msgid "Generate debug information in DWARF v2 format" -msgstr "Generar informaci de depuraci en el format DWARF v2" - -#: common.opt:1253 -msgid "Generate debug information in default extended format" -msgstr "Generar informaci de depuraci en el format ests per omissi" - -#: common.opt:1257 -msgid "Generate debug information in STABS format" -msgstr "Generar informaci de depuraci en el format STABS" - -#: common.opt:1261 -msgid "Generate debug information in extended STABS format" -msgstr "Generar informaci de depuraci en el format STABS ests" - -#: common.opt:1265 -msgid "Generate debug information in VMS format" -msgstr "Generar informaci de depuraci en el format VMS" - -#: common.opt:1269 -msgid "Generate debug information in XCOFF format" -msgstr "Generar informaci de depuraci en el format XCOFF" - -#: common.opt:1273 -msgid "Generate debug information in extended XCOFF format" -msgstr "Generar informaci de depuraci en el format XCOFF ests" - -#: common.opt:1277 -#, fuzzy -msgid "Place output into " -msgstr "-o \tSituar la sortida en el " - -#: common.opt:1281 -msgid "Enable function profiling" -msgstr "Habilitar l'anlisi de perfil de les funcions" - -#: common.opt:1285 -msgid "Issue warnings needed for strict compliance to the standard" -msgstr "Activar els avisos necessaris per a complir strictament amb ISO C" - -#: common.opt:1289 -msgid "Like -pedantic but issue them as errors" -msgstr "" - -#: common.opt:1293 -msgid "Do not display functions compiled or elapsed time" -msgstr "No mostrar les funcions compilades o el temps transcorregut" - -#: common.opt:1297 -msgid "Display the compiler's version" -msgstr "Mostra la versi del compilador" - -#: common.opt:1301 -msgid "Suppress warnings" -msgstr "" - -#: common.opt:1305 -msgid "Create a shared library" -msgstr "" - -#: common.opt:1309 -#, fuzzy -msgid "Create a position independent executable" -msgstr "Generar codi independent de posici, si s possible" - -#: attribs.c:244 -#, fuzzy, gcc-internal-format -msgid "%qs attribute directive ignored" -msgstr "s'ignora la directiva d'atribut \"%s\"" - -#: attribs.c:252 -#, fuzzy, gcc-internal-format -msgid "wrong number of arguments specified for %qs attribute" -msgstr "es va especificar un nombre equivocat d'arguments per a l'atribut \"%s\"" - -#: attribs.c:270 -#, fuzzy, gcc-internal-format -msgid "%qs attribute does not apply to types" -msgstr "l'atribut \"%s\" no s'aplica a tipus" - -#: attribs.c:317 -#, fuzzy, gcc-internal-format -msgid "%qs attribute only applies to function types" -msgstr "l'atribut \"%s\" noms s'aplica a tipus de funcions" - -#: attribs.c:327 -#, fuzzy, gcc-internal-format -msgid "type attributes ignored after type is already defined" -msgstr "l'atribut \"%s\" sol es pot aplicar a definicions de classe" - -#: bb-reorder.c:1860 -#, gcc-internal-format -msgid "multiple hot/cold transitions found (bb %i)" -msgstr "" - -#: bt-load.c:1546 -#, gcc-internal-format -msgid "branch target register load optimization is not intended to be run twice" -msgstr "" - -#: builtins.c:451 -#, gcc-internal-format -msgid "offset outside bounds of constant string" -msgstr "desplaament fora dels lmits de la constant de cadena" - -#: builtins.c:1001 -#, fuzzy, gcc-internal-format -msgid "second argument to %<__builtin_prefetch%> must be a constant" -msgstr "el segon argument de \"__builtin_prefetch\" ha de ser una constant" - -#: builtins.c:1008 -#, fuzzy, gcc-internal-format -msgid "invalid second argument to %<__builtin_prefetch%>; using zero" -msgstr "el segon argument de __builtin_prefetch no s vlid; s'utilitzar zero" - -#: builtins.c:1016 -#, fuzzy, gcc-internal-format -msgid "third argument to %<__builtin_prefetch%> must be a constant" -msgstr "el tercer argument de \"__builtin_prefetch\" ha de ser una constant" - -#: builtins.c:1023 -#, fuzzy, gcc-internal-format -msgid "invalid third argument to %<__builtin_prefetch%>; using zero" -msgstr "el tercer argument de __builtin_prefetch no s vlid; s'utilitzar zero" - -#: builtins.c:4592 -#, fuzzy, gcc-internal-format -msgid "argument of %<__builtin_args_info%> must be constant" -msgstr "l'argument de \"__builtin_args_info\" ha de ser constant" - -#: builtins.c:4598 -#, fuzzy, gcc-internal-format -msgid "argument of %<__builtin_args_info%> out of range" -msgstr "l'argument de \"__builtin_args_info\" est fora de lmits" - -#: builtins.c:4604 -#, fuzzy, gcc-internal-format -msgid "missing argument in %<__builtin_args_info%>" -msgstr "falta un argument en \"__builtin_args_info\"" - -#: builtins.c:4693 gimplify.c:2117 -#, fuzzy, gcc-internal-format -msgid "too few arguments to function %" -msgstr "massa arguments per a la funci \"va_start\"" - -#: builtins.c:4857 -#, fuzzy, gcc-internal-format -msgid "first argument to % not of type %" -msgstr "el primer argument per a \"va_arg\" no s del tipus \"va_list\"" - -#. 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:4871 -#, fuzzy, gcc-internal-format -msgid "%qT is promoted to %qT when passed through %<...%>" -msgstr "\"%s\" es promou a \"%s\" quan passa a travs de \"...\"" - -#: builtins.c:4876 -#, fuzzy, gcc-internal-format -msgid "(so you should pass %qT not %qT to %)" -msgstr "(aix que ha de passar \"%s\" i no \"%s\" a \"va_arg\")" - -#. We can, however, treat "undefined" any way we please. -#. Call abort to encourage the user to fix the program. -#: builtins.c:4882 c-typeck.c:2408 -#, gcc-internal-format -msgid "if this code is reached, the program will abort" -msgstr "si s'arriba a aquest codi, el programa avortar" - -#: builtins.c:5000 -#, fuzzy, gcc-internal-format -msgid "invalid argument to %<__builtin_frame_address%>" -msgstr "argument no vlid per a \"__builtin_frame_address\"" - -#: builtins.c:5002 -#, fuzzy, gcc-internal-format -msgid "invalid argument to %<__builtin_return_address%>" -msgstr "argument no vlid per a \"__builtin_return_address\"" - -#: builtins.c:5015 -#, fuzzy, gcc-internal-format -msgid "unsupported argument to %<__builtin_frame_address%>" -msgstr "argument sense suport per a \"__builtin_frame_address\"" - -#: builtins.c:5017 -#, fuzzy, gcc-internal-format -msgid "unsupported argument to %<__builtin_return_address%>" -msgstr "argument sense suport per a \"__builtin_return_address\"" - -#: builtins.c:5564 -#, fuzzy, gcc-internal-format -msgid "both arguments to %<__builtin___clear_cache%> must be pointers" -msgstr "l'argument de \"__builtin_eh_return_regno\" ha de ser constant" - -#. All valid uses of __builtin_va_arg_pack () are removed during -#. inlining. -#: builtins.c:6276 expr.c:8024 -msgid "%Kinvalid use of %<__builtin_va_arg_pack ()%>" -msgstr "" - -#. All valid uses of __builtin_va_arg_pack_len () are removed during -#. inlining. -#: builtins.c:6282 -msgid "%Kinvalid use of %<__builtin_va_arg_pack_len ()%>" -msgstr "" - -#: builtins.c:6578 -#, fuzzy, gcc-internal-format -msgid "%<__builtin_longjmp%> second argument must be 1" -msgstr "el segon argument de _builtin_longjump ha de ser 1" - -#: builtins.c:7209 -#, gcc-internal-format -msgid "target format does not support infinity" -msgstr "el format objectiu no t suport per a infinit" - -#: builtins.c:9623 builtins.c:9712 -#, fuzzy, gcc-internal-format -msgid "non-floating-point argument to function %qs" -msgstr "arguments que no sn de coma flotant per a la funci \"%s\"" - -#: builtins.c:11303 -#, fuzzy, gcc-internal-format -msgid "% used in function with fixed args" -msgstr "es va usar \"va_start\" en una funci amb arguments fixos" - -#: builtins.c:11311 -#, fuzzy, gcc-internal-format -msgid "wrong number of arguments to function %" -msgstr "massa arguments per a la funci \"va_start\"" - -#. Evidently an out of date version of ; can't validate -#. va_start's second argument, but can still work as intended. -#: builtins.c:11324 -#, fuzzy, gcc-internal-format -msgid "%<__builtin_next_arg%> called without an argument" -msgstr "es va cridar a \"__builtin_next_arg\" sense argument" - -#: builtins.c:11329 -#, fuzzy, gcc-internal-format -msgid "wrong number of arguments to function %<__builtin_next_arg%>" -msgstr "es va especificar un nombre equivocat d'arguments per a l'atribut \"%s\"" - -#. 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:11358 -#, fuzzy, gcc-internal-format -msgid "second parameter of % not last named argument" -msgstr "el segon parmetre de \"va_start\" no s l'ltim argument nomenat" - -#: builtins.c:11472 -#, fuzzy -msgid "%Kfirst argument of %D must be a pointer, second integer constant" -msgstr "l'argument de l'atribut \"%s\" no s una cadena entera" - -#: builtins.c:11485 -#, fuzzy -msgid "%Klast argument of %D is not integer constant between 0 and 3" -msgstr "l'argument de \"asm\" no s una cadena constant" - -#: builtins.c:11529 builtins.c:11693 builtins.c:11752 -msgid "%Kcall to %D will always overflow destination buffer" -msgstr "" - -#: builtins.c:11683 -msgid "%Kcall to %D might overflow destination buffer" -msgstr "" - -#: c-common.c:859 -#, fuzzy, gcc-internal-format -msgid "%qD is not defined outside of function scope" -msgstr "%Jno es defineix \"%D\" fora de l'mbit de la funci" - -#. Translators: The %d after 'ISO C' will be 90 or 99. Do not -#. separate the %d from the 'C'. 'ISO' should not be -#. translated, but it may be moved after 'C%d' in languages -#. where modifiers follow nouns. -#: c-common.c:891 -#, fuzzy, gcc-internal-format -msgid "string length %qd is greater than the length %qd ISO C%d compilers are required to support" -msgstr "la longitud de la cadena \"%d\" s major que la longitud `%d\" que es requereix que els compiladors ISO C %d donin suport" - -#: c-common.c:941 -#, gcc-internal-format -msgid "overflow in constant expression" -msgstr "desbordament en la constant implcita" - -#: c-common.c:963 -#, gcc-internal-format -msgid "integer overflow in expression" -msgstr "desbordament enter en l'expressi" - -#: c-common.c:967 -#, gcc-internal-format -msgid "floating point overflow in expression" -msgstr "desbordament de coma flotant en l'expressi" - -#: c-common.c:971 -#, fuzzy, gcc-internal-format -msgid "fixed-point overflow in expression" -msgstr "desbordament de coma flotant en l'expressi" - -#: c-common.c:975 -#, gcc-internal-format -msgid "vector overflow in expression" -msgstr "desbordament de vector flotant en l'expressi" - -#: c-common.c:980 -#, fuzzy, gcc-internal-format -msgid "complex integer overflow in expression" -msgstr "desbordament enter en l'expressi" - -#: c-common.c:982 -#, fuzzy, gcc-internal-format -msgid "complex floating point overflow in expression" -msgstr "desbordament de coma flotant en l'expressi" - -#: c-common.c:1013 -#, gcc-internal-format -msgid "logical %<%s%> with non-zero constant will always evaluate as true" -msgstr "" - -#: c-common.c:1046 -#, gcc-internal-format -msgid "type-punning to incomplete type might break strict-aliasing rules" -msgstr "el cstig de tipus a tipus incomplet pot trencar les regles d'alies estricte" - -#: c-common.c:1060 -#, gcc-internal-format -msgid "dereferencing type-punned pointer will break strict-aliasing rules" -msgstr "el retorn de punters de tipus castigat trencar les regles d'alies estricte" - -#: c-common.c:1067 c-common.c:1085 -#, fuzzy, gcc-internal-format -msgid "dereferencing type-punned pointer might break strict-aliasing rules" -msgstr "el retorn de punters de tipus castigat trencar les regles d'alies estricte" - -#: c-common.c:1111 -#, fuzzy, gcc-internal-format -msgid "%Hsuggest braces around empty body in an % statement" -msgstr "%Hcos buit en una declaraci if" - -#: c-common.c:1115 -#, fuzzy, gcc-internal-format -msgid "%Hsuggest braces around empty body in an % statement" -msgstr "cos buit en una declaraci else" - -#: c-common.c:1141 -#, fuzzy, gcc-internal-format -msgid "first argument of %q+D should be %" -msgstr "%Jel primer argument de \"%D\" ha de ser \"int\"" - -#: c-common.c:1149 -#, fuzzy, gcc-internal-format -msgid "second argument of %q+D should be %" -msgstr "%Jel segon argument de \"%D\" ha de ser \"char **\"" - -#: c-common.c:1158 -#, fuzzy, gcc-internal-format -msgid "third argument of %q+D should probably be %" -msgstr "%Jel tercer argument de \"%D\" ha de ser \"char **\"" - -#: c-common.c:1168 -#, fuzzy, gcc-internal-format -msgid "%q+D takes only zero or two arguments" -msgstr "%J\"%D\" noms pren zero o dos arguments" - -#: c-common.c:1203 -#, gcc-internal-format -msgid "use -flax-vector-conversions to permit conversions between vectors with differing element types or numbers of subparts" -msgstr "" - -#: c-common.c:1241 -#, gcc-internal-format -msgid "negative integer implicitly converted to unsigned type" -msgstr "enter negatiu truncat implcitament al tipus unsigned" - -#: c-common.c:1244 -#, gcc-internal-format -msgid "conversion of unsigned constant value to negative integer" -msgstr "" - -#: c-common.c:1270 -#, gcc-internal-format -msgid "conversion to %qT alters %qT constant value" -msgstr "" - -#: c-common.c:1296 -#, gcc-internal-format -msgid "conversion to %qT from %qT may change the sign of the result" -msgstr "" - -#: c-common.c:1325 -#, fuzzy, gcc-internal-format -msgid "conversion to %qT from %qT may alter its value" -msgstr "la conversi de \"%E\" des de \"%T\" a \"%T\" s ambigua" - -#: c-common.c:1353 -#, gcc-internal-format -msgid "large integer implicitly truncated to unsigned type" -msgstr "enter gran truncat implcitament al tipus unsigned" - -#: c-common.c:1359 c-common.c:1366 c-common.c:1374 -#, gcc-internal-format -msgid "overflow in implicit constant conversion" -msgstr "desbordament en la conversi implcita de constant" - -#: c-common.c:1528 -#, fuzzy, gcc-internal-format -msgid "operation on %qE may be undefined" -msgstr "l'operaci sobre \"%s\" pot estar indefinida" - -#: c-common.c:1821 -#, gcc-internal-format -msgid "case label does not reduce to an integer constant" -msgstr "l'etiqueta d'un case no es redueix a una constant entera" - -#: c-common.c:1861 -#, gcc-internal-format -msgid "case label value is less than minimum value for type" -msgstr "" - -#: c-common.c:1869 -#, gcc-internal-format -msgid "case label value exceeds maximum value for type" -msgstr "" - -#: c-common.c:1877 -#, gcc-internal-format -msgid "lower value in case label range less than minimum value for type" -msgstr "" - -#: c-common.c:1886 -#, gcc-internal-format -msgid "upper value in case label range exceeds maximum value for type" -msgstr "" - -#: c-common.c:1960 -#, gcc-internal-format -msgid "GCC cannot support operators with integer types and fixed-point types that have too many integral and fractional bits together" -msgstr "" - -#: c-common.c:2450 -#, fuzzy, gcc-internal-format -msgid "invalid operands to binary %s (have %qT and %qT)" -msgstr "operadors no vlids per al binari %s" - -#: c-common.c:2686 -#, gcc-internal-format -msgid "comparison is always false due to limited range of data type" -msgstr "la comparana sempre s falsa a causa dels lmits limitats del tipus de dades" - -#: c-common.c:2688 -#, gcc-internal-format -msgid "comparison is always true due to limited range of data type" -msgstr "la comparana sempre s certa a causa dels lmits limitat del tipus de dades" - -#: c-common.c:2767 -#, gcc-internal-format -msgid "comparison of unsigned expression >= 0 is always true" -msgstr "la comparana d'una expressi unsigned >= 0 sempre s certa" - -#: c-common.c:2777 -#, gcc-internal-format -msgid "comparison of unsigned expression < 0 is always false" -msgstr "la comparana d'una expressi unsigned < 0 sempre s falsa" - -#: c-common.c:2818 -#, fuzzy, gcc-internal-format -msgid "pointer of type % used in arithmetic" -msgstr "es va usar un punter de tipus \"void *\" en l'aritmtica" - -#: c-common.c:2824 -#, gcc-internal-format -msgid "pointer to a function used in arithmetic" -msgstr "es va usar un punter a una funci en l'aritmtica" - -#: c-common.c:2830 -#, gcc-internal-format -msgid "pointer to member function used in arithmetic" -msgstr "es va usar un punter a una funci membre en l'aritmtica" - -#: c-common.c:2982 -#, fuzzy, gcc-internal-format -msgid "the address of %qD will always evaluate as %" -msgstr "l'adrea de \"%D\", sempre ser \"true\"" - -#: c-common.c:3051 cp/semantics.c:596 cp/typeck.c:6411 -#, gcc-internal-format -msgid "suggest parentheses around assignment used as truth value" -msgstr "es suggereixen parntesi al voltant de l'assignaci usada com valor veritable" - -#: c-common.c:3123 c-typeck.c:8958 -#, fuzzy, gcc-internal-format -msgid "invalid use of %" -msgstr "s no vlid de \"restrict\"" - -#: c-common.c:3339 -#, fuzzy, gcc-internal-format -msgid "invalid application of % to a function type" -msgstr "aplicaci invalida de \"sizeof\" a una expressi de tipus de funci" - -#: c-common.c:3349 -#, fuzzy, gcc-internal-format -msgid "invalid application of %qs to a void type" -msgstr "applicaci no vlida de \"%s\" a un tipus void" - -#: c-common.c:3355 -#, fuzzy, gcc-internal-format -msgid "invalid application of %qs to incomplete type %qT " -msgstr "aplicaci no vlida de \"%s\" a un tipus incomplet \"T\" " - -#: c-common.c:3396 -#, fuzzy, gcc-internal-format -msgid "%<__alignof%> applied to a bit-field" -msgstr "\"__alignof\" aplicat a un camp de bits" - -#: c-common.c:3969 -#, fuzzy, gcc-internal-format -msgid "cannot disable built-in function %qs" -msgstr "no es pot desactivar la funci interna \"%s\"" - -#: c-common.c:4172 -#, gcc-internal-format -msgid "pointers are not permitted as case values" -msgstr "els punters no sn permesos com valors d'un case" - -#: c-common.c:4178 -#, gcc-internal-format -msgid "range expressions in switch statements are non-standard" -msgstr "les expressions de lmits en les declaracions switch no sn estndard" - -#: c-common.c:4204 -#, gcc-internal-format -msgid "empty range specified" -msgstr "es va especificar uns lmits buides" - -#: c-common.c:4264 -#, gcc-internal-format -msgid "duplicate (or overlapping) case value" -msgstr "valor d'un case duplicat (o sobreposat)" - -# -#: c-common.c:4265 -#, gcc-internal-format -msgid "%Jthis is the first entry overlapping that value" -msgstr "%Jaquesta s la primera entrada que sobreposa aquest valor" - -#: c-common.c:4269 -#, gcc-internal-format -msgid "duplicate case value" -msgstr "valor d'un case duplicat" - -#: c-common.c:4270 -#, gcc-internal-format -msgid "%Jpreviously used here" -msgstr "%Jes va usar prviament aqu" - -#: c-common.c:4274 -#, gcc-internal-format -msgid "multiple default labels in one switch" -msgstr "mltiples etiquetes per omissi en un sol switch" - -#: c-common.c:4275 -#, gcc-internal-format -msgid "%Jthis is the first default label" -msgstr "%Jaquesta s la primera etiqueta per omissi" - -#: c-common.c:4324 -#, fuzzy, gcc-internal-format -msgid "%Jcase value %qs not in enumerated type" -msgstr "el valor de case \"%ld\" no s un tipus enumerat" - -#: c-common.c:4327 -#, fuzzy, gcc-internal-format -msgid "%Jcase value %qs not in enumerated type %qT" -msgstr "el valor de case \"%ld\" no s un tipus enumerat" - -#: c-common.c:4385 -#, fuzzy, gcc-internal-format -msgid "%Hswitch missing default case" -msgstr "manca el case per defecte per a un switch" - -#: c-common.c:4448 -#, fuzzy, gcc-internal-format -msgid "%Henumeration value %qE not handled in switch" -msgstr "el valor d'enumeraci \"%s\" no es gestiona en un switch" - -#: c-common.c:4472 -#, gcc-internal-format -msgid "taking the address of a label is non-standard" -msgstr "prendre l'adrea d'una etiqueta no s estndard" - -#: c-common.c:4622 -#, fuzzy, gcc-internal-format -msgid "%qE attribute ignored for field of type %qT" -msgstr "atribut \"%s\" ignorat per a \"%s\"" - -#: c-common.c:4633 c-common.c:4652 c-common.c:4670 c-common.c:4697 -#: c-common.c:4724 c-common.c:4750 c-common.c:4769 c-common.c:4793 -#: c-common.c:4816 c-common.c:4839 c-common.c:4860 c-common.c:4881 -#: c-common.c:4905 c-common.c:4931 c-common.c:4968 c-common.c:4995 -#: c-common.c:5046 c-common.c:5130 c-common.c:5160 c-common.c:5179 -#: c-common.c:5499 c-common.c:5559 c-common.c:5580 c-common.c:5644 -#: c-common.c:5762 c-common.c:5828 c-common.c:5877 c-common.c:5923 -#: c-common.c:5993 c-common.c:6017 c-common.c:6301 c-common.c:6324 -#: c-common.c:6363 -#, fuzzy, gcc-internal-format -msgid "%qE attribute ignored" -msgstr "s'ignora l'atribut \"%s\"" - -#: c-common.c:4715 c-common.c:4741 -#, fuzzy, gcc-internal-format -msgid "%qE attribute conflicts with attribute %s" -msgstr "l'atribut \"%s\" solament aplica a variables" - -#: c-common.c:4962 -#, fuzzy, gcc-internal-format -msgid "%qE attribute have effect only on public objects" -msgstr "%Jl'atribut \"%E\" s'aplica solament a funcions" - -#: c-common.c:5067 -#, fuzzy, gcc-internal-format -msgid "destructor priorities are not supported" -msgstr "els trampolins no tenen suport" - -#: c-common.c:5069 -#, fuzzy, gcc-internal-format -msgid "constructor priorities are not supported" -msgstr "els trampolins no tenen suport" - -#: c-common.c:5086 -#, gcc-internal-format -msgid "destructor priorities from 0 to %d are reserved for the implementation" -msgstr "" - -#: c-common.c:5091 -#, gcc-internal-format -msgid "constructor priorities from 0 to %d are reserved for the implementation" -msgstr "" - -#: c-common.c:5099 -#, gcc-internal-format -msgid "destructor priorities must be integers from 0 to %d inclusive" -msgstr "" - -#: c-common.c:5102 -#, gcc-internal-format -msgid "constructor priorities must be integers from 0 to %d inclusive" -msgstr "" - -#: c-common.c:5221 -#, fuzzy, gcc-internal-format -msgid "unknown machine mode %qs" -msgstr "es desconeix el mode de mquina \"%s\"" - -#: c-common.c:5250 -#, gcc-internal-format -msgid "specifying vector types with __attribute__ ((mode)) is deprecated" -msgstr "" - -#: c-common.c:5253 -#, fuzzy, gcc-internal-format -msgid "use __attribute__ ((vector_size)) instead" -msgstr "s'ignora la directiva d'atribut \"%s\"" - -#: c-common.c:5262 -#, fuzzy, gcc-internal-format -msgid "unable to emulate %qs" -msgstr "no es pot emular \"%s\"" - -#: c-common.c:5272 -#, fuzzy, gcc-internal-format -msgid "invalid pointer mode %qs" -msgstr "mode de punter \"%s\" no vlid" - -#: c-common.c:5289 -#, fuzzy, gcc-internal-format -msgid "signness of type and machine mode %qs don't match" -msgstr "el nombre de #-lines per a entrar i sortir dels fitxers no coincideixen" - -#: c-common.c:5300 -#, fuzzy, gcc-internal-format -msgid "no data type for mode %qs" -msgstr "no hi ha tipus de dades pel mode \"%s\"" - -#: c-common.c:5310 -#, fuzzy, gcc-internal-format -msgid "cannot use mode %qs for enumeral types" -msgstr "no es pot convertir a un tipus punter" - -#: c-common.c:5337 -#, fuzzy, gcc-internal-format -msgid "mode %qs applied to inappropriate type" -msgstr "mode \"%s\" aplicat a un tipus no inadequat" - -#: c-common.c:5368 -#, gcc-internal-format -msgid "%Jsection attribute cannot be specified for local variables" -msgstr "%Jl'atribut de secci no pot ser especificat per a les variables locals" - -#: c-common.c:5379 config/bfin/bfin.c:4879 config/bfin/bfin.c:4930 -#, fuzzy, gcc-internal-format -msgid "section of %q+D conflicts with previous declaration" -msgstr "%Jla secci de \"%D\" causa conflictes amb la declaraci prvia" - -#: c-common.c:5388 -#, fuzzy, gcc-internal-format -msgid "section attribute not allowed for %q+D" -msgstr "%Jno es permet un atribut de secci per a \"%D\"" - -#: c-common.c:5394 -#, gcc-internal-format -msgid "%Jsection attributes are not supported for this target" -msgstr "%Jatributs de secci no suportats per aquest objectiu" - -#: c-common.c:5426 -#, gcc-internal-format -msgid "requested alignment is not a constant" -msgstr "l'alineaci sollicitada no s una constant" - -#: c-common.c:5431 -#, gcc-internal-format -msgid "requested alignment is not a power of 2" -msgstr "l'alineaci sollicitada no s una potncia de 2" - -#: c-common.c:5436 -#, gcc-internal-format -msgid "requested alignment is too large" -msgstr "l'alineaci sollicitada s massa gran" - -#: c-common.c:5462 -#, fuzzy, gcc-internal-format -msgid "alignment may not be specified for %q+D" -msgstr "%Jl'alineaci no pot ser especificada per a \"%D\"" - -#: c-common.c:5469 -#, gcc-internal-format -msgid "alignment for %q+D was previously specified as %d and may not be decreased" -msgstr "" - -#: c-common.c:5473 -#, fuzzy, gcc-internal-format -msgid "alignment for %q+D must be at least %d" -msgstr "l'alineaci ha de ser una potncia petita de dos, no %d" - -#: c-common.c:5522 -#, fuzzy, gcc-internal-format -msgid "%q+D defined both normally and as an alias" -msgstr "%J\"%D\" definit normalment i com un alies" - -#: c-common.c:5538 -#, fuzzy, gcc-internal-format -msgid "alias argument not a string" -msgstr "l'argument d'alies no s una cadena" - -#: c-common.c:5601 -#, gcc-internal-format -msgid "%Jweakref attribute must appear before alias attribute" -msgstr "" - -#: c-common.c:5631 -#, fuzzy, gcc-internal-format -msgid "%qE attribute ignored on non-class types" -msgstr "atribut \"%s\" ignorat per a \"%s\"" - -#: c-common.c:5637 -#, fuzzy, gcc-internal-format -msgid "%qE attribute ignored because %qT is already defined" -msgstr "el mateix bypass \"%s - %s\" ja est definit" - -#: c-common.c:5650 -#, fuzzy, gcc-internal-format -msgid "visibility argument not a string" -msgstr "l'argument de visibilitat no s una cadena" - -#: c-common.c:5662 -#, fuzzy, gcc-internal-format -msgid "%qE attribute ignored on types" -msgstr "atribut \"%s\" ignorat per a \"%s\"" - -#: c-common.c:5678 -#, fuzzy, gcc-internal-format -msgid "visibility argument must be one of \"default\", \"hidden\", \"protected\" or \"internal\"" -msgstr "l'argument de visibilitat ha de ser \"default\", \"hidden\", \"protected\" o \"internal\"" - -#: c-common.c:5689 -#, fuzzy, gcc-internal-format -msgid "%qD redeclared with different visibility" -msgstr "\"%#D\" redeclarat com un tipus diferent de smbol" - -#: c-common.c:5692 c-common.c:5696 -#, gcc-internal-format -msgid "%qD was declared %qs which implies default visibility" -msgstr "" - -#: c-common.c:5770 -#, fuzzy, gcc-internal-format -msgid "tls_model argument not a string" -msgstr "l'argument tls_model no s una cadena" - -#: c-common.c:5783 -#, fuzzy, gcc-internal-format -msgid "tls_model argument must be one of \"local-exec\", \"initial-exec\", \"local-dynamic\" or \"global-dynamic\"" -msgstr "l'argument de tls_model ha de ser \"local-exec\", \"initial-exec\", \"local-dynamic\" or \"global-dynamic\"" - -#: c-common.c:5802 c-common.c:5897 -#, fuzzy, gcc-internal-format -msgid "%J%qE attribute applies only to functions" -msgstr "%Jl'atribut \"%E\" s'aplica solament a funcions" - -#: c-common.c:5807 c-common.c:5902 -#, fuzzy, gcc-internal-format -msgid "%Jcan%'t set %qE attribute after definition" -msgstr "%Jno es pot establir l'atribut \"%E\" desprs de la definici" - -#: c-common.c:5858 -#, gcc-internal-format -msgid "alloc_size parameter outside range" -msgstr "" - -#: c-common.c:5991 -#, fuzzy, gcc-internal-format -msgid "%qE attribute ignored for %qE" -msgstr "atribut \"%s\" ignorat per a \"%s\"" - -#: c-common.c:6049 -#, fuzzy, gcc-internal-format -msgid "invalid vector type for attribute %qE" -msgstr "tipus de vector no vlid per a l'atribut \"%s\"" - -#: c-common.c:6055 -#, gcc-internal-format -msgid "vector size not an integral multiple of component size" -msgstr "" - -#: c-common.c:6061 -#, gcc-internal-format -msgid "zero vector size" -msgstr "" - -#: c-common.c:6069 -#, gcc-internal-format -msgid "number of components of the vector not a power of two" -msgstr "" - -#: c-common.c:6097 -#, gcc-internal-format -msgid "nonnull attribute without arguments on a non-prototype" -msgstr "un atribut nonnull sense arguments en un que no s prototip" - -#: c-common.c:6112 -#, fuzzy, gcc-internal-format -msgid "nonnull argument has invalid operand number (argument %lu)" -msgstr "un argument no null t un nombre d'operadors no vlid (arg %lu)" - -#: c-common.c:6131 -#, fuzzy, gcc-internal-format -msgid "nonnull argument with out-of-range operand number (argument %lu, operand %lu)" -msgstr "argument no \"null\" amb un nombre d'operadors fora de lmits (arg %lu, operand %lu)" - -#: c-common.c:6139 -#, fuzzy, gcc-internal-format -msgid "nonnull argument references non-pointer operand (argument %lu, operand %lu)" -msgstr "un argument no null fa referncia a un operand que no s un punter (arg %lu, operand %lu)" - -#: c-common.c:6215 -#, fuzzy, gcc-internal-format -msgid "not enough variable arguments to fit a sentinel" -msgstr "molt pocs arguments per a la funci" - -#: c-common.c:6229 -#, fuzzy, gcc-internal-format -msgid "missing sentinel in function call" -msgstr "Prohibir la crida a funcions relatives al PC" - -#: c-common.c:6270 -#, fuzzy, gcc-internal-format -msgid "null argument where non-null required (argument %lu)" -msgstr "argument null on es requereix un que no sigui null (arg %lu)" - -#: c-common.c:6335 -#, fuzzy, gcc-internal-format -msgid "cleanup argument not an identifier" -msgstr "l'objecte cridat no s un identificador" - -#: c-common.c:6342 -#, fuzzy, gcc-internal-format -msgid "cleanup argument not a function" -msgstr "l'objecte cridat no s una funci" - -#: c-common.c:6381 -#, fuzzy, gcc-internal-format -msgid "%qE attribute requires prototypes with named arguments" -msgstr "l'atribut \"%s\" requereix una constant entera com argument" - -#: c-common.c:6392 -#, fuzzy, gcc-internal-format -msgid "%qE attribute only applies to variadic functions" -msgstr "l'atribut \"%s\" noms s'aplica a funcions" - -#: c-common.c:6404 -#, fuzzy, gcc-internal-format -msgid "requested position is not an integer constant" -msgstr "la init_priority sollicitada no s una constant entera" - -#: c-common.c:6412 -#, gcc-internal-format -msgid "requested position is less than zero" -msgstr "" - -#: c-common.c:6736 -#, fuzzy, gcc-internal-format -msgid "%Hignoring return value of %qD, declared with attribute warn_unused_result" -msgstr "%Hignorant el valor de retorn de \"%D\", declarat amb atributs \"warn_unused_result\"" - -#: c-common.c:6740 -#, gcc-internal-format -msgid "%Hignoring return value of function declared with attribute warn_unused_result" -msgstr "" - -#: c-common.c:6793 -#, fuzzy, gcc-internal-format -msgid "cannot apply % to static data member %qD" -msgstr "s no vlid del camp no static \"%D\"" - -#: c-common.c:6797 -#, gcc-internal-format -msgid "cannot apply % when % is overloaded" -msgstr "" - -#: c-common.c:6818 cp/typeck.c:4525 -#, fuzzy, gcc-internal-format -msgid "attempt to take address of bit-field structure member %qD" -msgstr "es va intentar prendre l'adrea del membre de l'estructura de camps de bits \"%s\"" - -#: c-common.c:6871 -#, fuzzy, gcc-internal-format -msgid "lvalue required as left operand of assignment" -msgstr "l-value no vlid en l'assignaci" - -#: c-common.c:6874 -#, gcc-internal-format -msgid "lvalue required as increment operand" -msgstr "" - -#: c-common.c:6877 -#, gcc-internal-format -msgid "lvalue required as decrement operand" -msgstr "" - -#: c-common.c:6880 -#, gcc-internal-format -msgid "lvalue required as unary %<&%> operand" -msgstr "" - -#: c-common.c:6883 -#, fuzzy, gcc-internal-format -msgid "lvalue required in asm statement" -msgstr "lvalue no vlid en declaraci asm" - -#: c-common.c:7005 -#, fuzzy, gcc-internal-format -msgid "size of array is too large" -msgstr "la grandria de la matriu \"%s\" s massa gran" - -#: c-common.c:7041 c-common.c:7090 c-typeck.c:2705 -#, fuzzy, gcc-internal-format -msgid "too few arguments to function %qE" -msgstr "molt pocs arguments per a la funci" - -#. ??? This should not be an error when inlining calls to -#. unprototyped functions. -#: c-common.c:7058 c-typeck.c:4374 -#, fuzzy, gcc-internal-format -msgid "incompatible type for argument %d of %qE" -msgstr "tipus incompatible per a l'argument %d de \"%s\"" - -#: c-common.c:7250 -#, fuzzy, gcc-internal-format -msgid "array subscript has type %" -msgstr "el subindici de matriu t un tipus \"char\"" - -#: c-common.c:7273 -#, gcc-internal-format -msgid "suggest parentheses around + or - inside shift" -msgstr "es suggereixen parntesi al voltant de + o - dintre d'un desplaament" - -#: c-common.c:7281 -#, gcc-internal-format -msgid "suggest parentheses around && within ||" -msgstr "es suggereixen parntesi al voltant de && dintre de ||" - -#: c-common.c:7291 -#, gcc-internal-format -msgid "suggest parentheses around arithmetic in operand of |" -msgstr "es suggereixen parntesi al voltant de l'aritmtica per a operada de |" - -#: c-common.c:7296 -#, gcc-internal-format -msgid "suggest parentheses around comparison in operand of |" -msgstr "es suggereixen parntesi al voltant de les comparances per a operada de |" - -#: c-common.c:7306 -#, gcc-internal-format -msgid "suggest parentheses around arithmetic in operand of ^" -msgstr "es suggereixen parntesi al voltant de l'aritmtica per a operada de ^" - -#: c-common.c:7311 -#, gcc-internal-format -msgid "suggest parentheses around comparison in operand of ^" -msgstr "es suggereixen parntesi al voltant de les comparances per a operada de ^" - -#: c-common.c:7319 -#, gcc-internal-format -msgid "suggest parentheses around + or - in operand of &" -msgstr "es suggereixen parntesi al voltant de + o - per a operada de &" - -#: c-common.c:7324 -#, gcc-internal-format -msgid "suggest parentheses around comparison in operand of &" -msgstr "es suggereixen parntesi al voltant de les comparances per a operada de &" - -#: c-common.c:7332 -#, fuzzy, gcc-internal-format -msgid "suggest parentheses around comparison in operand of %s" -msgstr "es suggereixen parntesi al voltant de les comparances per a operada de |" - -#: c-common.c:7341 -#, gcc-internal-format -msgid "comparisons like X<=Y<=Z do not have their mathematical meaning" -msgstr "les comparances com X<=Y<=Z no tenen el seu significat matemtic" - -#: c-common.c:7354 -#, fuzzy, gcc-internal-format -msgid "label %q+D defined but not used" -msgstr "s'usa l'etiqueta \"%D\" per no est definida" - -#: c-common.c:7356 -#, fuzzy, gcc-internal-format -msgid "label %q+D declared but not defined" -msgstr "%Jl'etiqueta \"%D\" est declarada per no est definida" - -#: c-common.c:7375 -#, gcc-internal-format -msgid "division by zero" -msgstr "divisi per zero" - -#. 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:95 c-typeck.c:1775 c-typeck.c:4012 cp/typeck.c:1502 -#: cp/typeck.c:5717 cp/typeck.c:6325 fortran/convert.c:88 -#: treelang/tree-convert.c:79 -#, gcc-internal-format -msgid "void value not ignored as it ought to be" -msgstr "valor void no ignorat com deuria ser" - -#: c-convert.c:118 fortran/convert.c:121 java/typeck.c:152 -#: treelang/tree-convert.c:105 -#, gcc-internal-format -msgid "conversion to non-scalar type requested" -msgstr "es va sollicitar conversi a tipus no escalar" - -#: c-decl.c:546 -#, fuzzy, gcc-internal-format -msgid "array %q+D assumed to have one element" -msgstr "%Js'assumeix que la matriu \"%D\" t un element" - -#: c-decl.c:651 -#, gcc-internal-format -msgid "GCC supports only %u nested scopes" -msgstr "" - -#: c-decl.c:737 cp/decl.c:358 -#, fuzzy, gcc-internal-format -msgid "label %q+D used but not defined" -msgstr "s'usa l'etiqueta \"%D\" per no est definida" - -#: c-decl.c:778 -#, fuzzy, gcc-internal-format -msgid "nested function %q+D declared but never defined" -msgstr "s'usa la funci inline \"%D\" per mai es va definir" - -#: c-decl.c:788 -#, fuzzy, gcc-internal-format -msgid "inline function %q+D declared but never defined" -msgstr "s'usa la funci inline \"%D\" per mai es va definir" - -#: c-decl.c:801 cp/decl.c:608 -#, fuzzy, gcc-internal-format -msgid "unused variable %q+D" -msgstr "%Jvariable \"%D\" sense s" - -#: c-decl.c:805 -#, gcc-internal-format -msgid "type of array %q+D completed incompatibly with implicit initialization" -msgstr "" - -#: c-decl.c:1039 -#, fuzzy, gcc-internal-format -msgid "a parameter list with an ellipsis can%'t match an empty parameter name list declaration" -msgstr "una llista de parmetres amb una ellipse no pot coincidir amb una declaraci de nom de llista de parmetres buida." - -#: c-decl.c:1046 -#, fuzzy, gcc-internal-format -msgid "an argument type that has a default promotion can%'t match an empty parameter name list declaration" -msgstr "Un tipus d'argument que t una promoci per omissi no pot coincidir amb una declaraci de nom de llista de parmetres buida." - -#: c-decl.c:1087 -#, gcc-internal-format -msgid "prototype for %q+D declares more arguments than previous old-style definition" -msgstr "" - -#: c-decl.c:1093 -#, gcc-internal-format -msgid "prototype for %q+D declares fewer arguments than previous old-style definition" -msgstr "" - -#: c-decl.c:1102 -#, fuzzy, gcc-internal-format -msgid "prototype for %q+D declares argument %d with incompatible type" -msgstr "el prototip per a \"%s\" a continuaci i l'argument %d no coincideixen" - -#. If we get here, no errors were found, but do issue a warning -#. for this poor-style construct. -#: c-decl.c:1115 -#, fuzzy, gcc-internal-format -msgid "prototype for %q+D follows non-prototype definition" -msgstr "a continuaci la definici del no prototip aqu" - -#: c-decl.c:1130 -#, fuzzy, gcc-internal-format -msgid "previous definition of %q+D was here" -msgstr "%Jdefinici prvia de \"%D\" aqu" - -#: c-decl.c:1132 -#, fuzzy, gcc-internal-format -msgid "previous implicit declaration of %q+D was here" -msgstr "%Jdeclaraci implcita prvia de \"%D\" aqu" - -#: c-decl.c:1134 -#, fuzzy, gcc-internal-format -msgid "previous declaration of %q+D was here" -msgstr "%Jdeclaraci prvia de \"%D\" aqu" - -#: c-decl.c:1174 -#, fuzzy, gcc-internal-format -msgid "%q+D redeclared as different kind of symbol" -msgstr "\"%#D\" redeclarat com un tipus diferent de smbol" - -#: c-decl.c:1178 -#, fuzzy, gcc-internal-format -msgid "built-in function %q+D declared as non-function" -msgstr "%Jla funci interna \"%D\" no s declarada com funci" - -#: c-decl.c:1181 c-decl.c:1298 c-decl.c:1983 -#, fuzzy, gcc-internal-format -msgid "declaration of %q+D shadows a built-in function" -msgstr "la declaraci de \"%#D\" enfosqueix un parmetre" - -#: c-decl.c:1190 -#, fuzzy, gcc-internal-format -msgid "redeclaration of enumerator %q+D" -msgstr "redeclaraci de \"enum %s\"" - -#. 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:1211 -#, fuzzy, gcc-internal-format -msgid "conflicting types for built-in function %q+D" -msgstr "%Jtipus en conflicte per a la funci interna \"%D\"" - -#: c-decl.c:1235 c-decl.c:1248 c-decl.c:1258 -#, fuzzy, gcc-internal-format -msgid "conflicting types for %q+D" -msgstr "%Jtipus en conflicte per a \"%D\"" - -#: c-decl.c:1256 -#, fuzzy, gcc-internal-format -msgid "conflicting type qualifiers for %q+D" -msgstr "%Jtipus en conflicte per a \"%D\"" - -#. Allow OLDDECL to continue in use. -#: c-decl.c:1273 -#, fuzzy, gcc-internal-format -msgid "redefinition of typedef %q+D" -msgstr "%Jredefinici de typedef \"%D\"" - -#: c-decl.c:1324 c-decl.c:1426 -#, fuzzy, gcc-internal-format -msgid "redefinition of %q+D" -msgstr "%Jredefinici de \"%D\"" - -#: c-decl.c:1359 c-decl.c:1464 -#, fuzzy, gcc-internal-format -msgid "static declaration of %q+D follows non-static declaration" -msgstr "%Jdeclaraci \"static\" de \"%D\" a continuaci d'una declaraci \"non-static\"" - -#: c-decl.c:1369 c-decl.c:1376 c-decl.c:1453 c-decl.c:1461 -#, fuzzy, gcc-internal-format -msgid "non-static declaration of %q+D follows static declaration" -msgstr "%Jdeclaraci \"non-static\" de \"%D\" a continuaci d'una declaraci \"static\"" - -#: c-decl.c:1393 -#, gcc-internal-format -msgid "% attribute present on %q+D" -msgstr "" - -#: c-decl.c:1395 -#, fuzzy, gcc-internal-format -msgid "%Jbut not here" -msgstr " primer tipus aqu" - -#: c-decl.c:1413 -#, fuzzy, gcc-internal-format -msgid "thread-local declaration of %q+D follows non-thread-local declaration" -msgstr "%Jdeclaraci \"thread-local\" de \"%D\" a continuaci d'una declaraci \"non-thread-local\"" - -#: c-decl.c:1416 -#, fuzzy, gcc-internal-format -msgid "non-thread-local declaration of %q+D follows thread-local declaration" -msgstr "%Jdeclaraci \"non-thread-local\" de \"%D\" a continuaci d'una declaraci \"thread-local\"" - -#: c-decl.c:1446 -#, fuzzy, gcc-internal-format -msgid "extern declaration of %q+D follows declaration with no linkage" -msgstr "%Jla declaraci externa de \"%D\" no coincideix amb la declaraci sense \"linkage\"" - -#: c-decl.c:1482 -#, fuzzy, gcc-internal-format -msgid "declaration of %q+D with no linkage follows extern declaration" -msgstr "%Jla declaraci de \"%D\" sense \"linkage\" segueix una declaraci \"extern\"" - -#: c-decl.c:1488 -#, fuzzy, gcc-internal-format -msgid "redeclaration of %q+D with no linkage" -msgstr "%Jredeclaraci de \"%D\" sense \"linkage\"" - -#: c-decl.c:1502 -#, gcc-internal-format -msgid "redeclaration of %q+D with different visibility (old visibility preserved)" -msgstr "" - -#: c-decl.c:1513 -#, fuzzy, gcc-internal-format -msgid "inline declaration of %qD follows declaration with attribute noinline" -msgstr "%Jla declaraci externa de \"%D\" no coincideix amb la declaraci sense \"linkage\"" - -#: c-decl.c:1520 -#, fuzzy, gcc-internal-format -msgid "declaration of %q+D with attribute noinline follows inline declaration " -msgstr "%Jla declaraci de \"%D\" sense \"linkage\" segueix una declaraci \"extern\"" - -#: c-decl.c:1539 -#, fuzzy, gcc-internal-format -msgid "%q+D declared inline after being called" -msgstr "%J\"%D\" declarat inline abans de ser cridat" - -#: c-decl.c:1544 -#, fuzzy, gcc-internal-format -msgid "%q+D declared inline after its definition" -msgstr "%J\"%D\" declarat inline desprs de la seva definici" - -#: c-decl.c:1563 -#, fuzzy, gcc-internal-format -msgid "redefinition of parameter %q+D" -msgstr "%Jredefinici de typedef \"%D\"" - -#: c-decl.c:1590 -#, fuzzy, gcc-internal-format -msgid "redundant redeclaration of %q+D" -msgstr "%Jdeclaraci redundant de \"%D\"" - -#: c-decl.c:1970 -#, fuzzy, gcc-internal-format -msgid "declaration of %q+D shadows previous non-variable" -msgstr "la declaraci de \"%#D\" enfosqueix un parmetre" - -#: c-decl.c:1975 -#, fuzzy, gcc-internal-format -msgid "declaration of %q+D shadows a parameter" -msgstr "la declaraci de \"%#D\" enfosqueix un parmetre" - -#: c-decl.c:1978 -#, fuzzy, gcc-internal-format -msgid "declaration of %q+D shadows a global declaration" -msgstr "la declaraci de \"%#D\" enfosqueix un parmetre" - -#: c-decl.c:1988 -#, fuzzy, gcc-internal-format -msgid "declaration of %q+D shadows a previous local" -msgstr "la declaraci de \"%#D\" enfosqueix un parmetre" - -#: c-decl.c:1991 cp/name-lookup.c:988 cp/name-lookup.c:1019 -#: cp/name-lookup.c:1027 -#, gcc-internal-format -msgid "%Jshadowed declaration is here" -msgstr "%Jla declaraci enfosquit s aqu" - -#: c-decl.c:2183 -#, fuzzy, gcc-internal-format -msgid "nested extern declaration of %qD" -msgstr "declaraci extern niada de \"%s\"" - -#: c-decl.c:2346 c-decl.c:2349 -#, fuzzy, gcc-internal-format -msgid "implicit declaration of function %qE" -msgstr "declaraci implcita de la funci \"%s\"" - -#: c-decl.c:2411 -#, fuzzy, gcc-internal-format -msgid "incompatible implicit declaration of built-in function %qD" -msgstr "declaraci implcita de la funci \"%#D\"" - -#: c-decl.c:2420 -#, fuzzy, gcc-internal-format -msgid "incompatible implicit declaration of function %qD" -msgstr "declaraci implcita de la funci \"%#D\"" - -#: c-decl.c:2473 -#, fuzzy, gcc-internal-format -msgid "%H%qE undeclared here (not in a function)" -msgstr "\"%s\" no ha estat declarat aqu (no en una funci)" - -#: c-decl.c:2478 -#, fuzzy, gcc-internal-format -msgid "%H%qE undeclared (first use in this function)" -msgstr "\"%s\" no ha estat declarat aqu (primer us en aquesta funci)" - -#: c-decl.c:2482 -#, fuzzy, gcc-internal-format -msgid "%H(Each undeclared identifier is reported only once" -msgstr "(Cada identificador no declarat solament es reporta una vegada" - -#: c-decl.c:2483 -#, fuzzy, gcc-internal-format -msgid "%Hfor each function it appears in.)" -msgstr "per a cada funci en la qual apareix.)" - -#: c-decl.c:2521 cp/decl.c:2397 -#, fuzzy, gcc-internal-format -msgid "label %qE referenced outside of any function" -msgstr "l'etiqueta %s es referenciada fora de qualsevol funci" - -#: c-decl.c:2563 -#, fuzzy, gcc-internal-format -msgid "duplicate label declaration %qE" -msgstr "declaraci de l'etiqueta \"%s\" duplicada" - -#: c-decl.c:2599 -#, fuzzy, gcc-internal-format -msgid "%Hduplicate label %qD" -msgstr "%Hetiqueta duplicada \"%D\"" - -#: c-decl.c:2609 -#, fuzzy, gcc-internal-format -msgid "%Jjump into statement expression" -msgstr "desbordament en la constant implcita" - -#: c-decl.c:2611 -#, fuzzy, gcc-internal-format -msgid "%Jjump into scope of identifier with variably modified type" -msgstr "l'argument de patr \"%T\" s un tipus modificat variablement" - -#: c-decl.c:2626 -#, gcc-internal-format -msgid "%Htraditional C lacks a separate namespace for labels, identifier %qE conflicts" -msgstr "" - -#: c-decl.c:2701 -#, gcc-internal-format -msgid "%H%qE defined as wrong kind of tag" -msgstr "" - -#: c-decl.c:2903 -#, gcc-internal-format -msgid "unnamed struct/union that defines no instances" -msgstr "struct/union sense nom que no defineix cap instncia" - -#: c-decl.c:2911 -#, gcc-internal-format -msgid "empty declaration with storage class specifier does not redeclare tag" -msgstr "" - -#: c-decl.c:2922 -#, fuzzy, gcc-internal-format -msgid "empty declaration with type qualifier does not redeclare tag" -msgstr "la declaraci no declara res" - -#: c-decl.c:2943 c-decl.c:2950 -#, fuzzy, gcc-internal-format -msgid "useless type name in empty declaration" -msgstr "paraules claus intils o noms de tipus en una declaraci buida" - -#: c-decl.c:2958 -#, fuzzy, gcc-internal-format -msgid "% in empty declaration" -msgstr "declaraci buida" - -#: c-decl.c:2964 -#, fuzzy, gcc-internal-format -msgid "% in file-scope empty declaration" -msgstr "es van especificar dos tipus en una declaraci buida" - -#: c-decl.c:2970 -#, fuzzy, gcc-internal-format -msgid "% in file-scope empty declaration" -msgstr "es van especificar dos tipus en una declaraci buida" - -#: c-decl.c:2976 -#, fuzzy, gcc-internal-format -msgid "useless storage class specifier in empty declaration" -msgstr "especificadors de classe d'emmagatzematge no vlids en les declaracions de parmetres" - -#: c-decl.c:2982 -#, fuzzy, gcc-internal-format -msgid "useless %<__thread%> in empty declaration" -msgstr "paraules claus intils o noms de tipus en una declaraci buida" - -#: c-decl.c:2990 -#, fuzzy, gcc-internal-format -msgid "useless type qualifier in empty declaration" -msgstr "qualificadors de tipus duplicats en la declaraci %s" - -#: c-decl.c:2997 -#, gcc-internal-format -msgid "empty declaration" -msgstr "declaraci buida" - -#: c-decl.c:3063 -#, fuzzy, gcc-internal-format -msgid "ISO C90 does not support % or type qualifiers in parameter array declarators" -msgstr "ISO C90 no dna suport a \"static\" o qualificadors de tipus dins matrius de declaradors de parmetres" - -#: c-decl.c:3066 -#, fuzzy, gcc-internal-format -msgid "ISO C90 does not support %<[*]%> array declarators" -msgstr "ISO C90 no dna suport a declaradors de parmetres \"[*]\"" - -#. C99 6.7.5.2p4 -#. A function definition isn't function prototype scope C99 6.2.1p4. -#. C99 6.7.5.2p4 -#: c-decl.c:3073 c-decl.c:5015 -#, gcc-internal-format -msgid "%<[*]%> not allowed in other than function prototype scope" -msgstr "" - -#: c-decl.c:3097 -#, gcc-internal-format -msgid "static or type qualifiers in abstract declarator" -msgstr "static o qualificador de tipus en un declarador abstracte" - -#: c-decl.c:3183 -#, fuzzy, gcc-internal-format -msgid "%q+D is usually a function" -msgstr "%J\"%D\" s generalment una funci" - -#: c-decl.c:3192 cp/decl.c:3983 cp/decl2.c:773 -#, fuzzy, gcc-internal-format -msgid "typedef %qD is initialized (use __typeof__ instead)" -msgstr "typedef \"%D\" est inicialitzat (utilitzi __typeof__ en el seu lloc)" - -#: c-decl.c:3197 -#, fuzzy, gcc-internal-format -msgid "function %qD is initialized like a variable" -msgstr "la funci \"%#D\" est inicialitzada com una variable" - -#. DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. -#: c-decl.c:3203 -#, fuzzy, gcc-internal-format -msgid "parameter %qD is initialized" -msgstr "el parmetre \"%s\" t valor inicial" - -#: c-decl.c:3228 -#, fuzzy, gcc-internal-format -msgid "variable %qD has initializer but incomplete type" -msgstr "la variable \"%#D\" t inicializador per de tipus de dada incompleta" - -#: c-decl.c:3316 c-decl.c:6108 cp/decl.c:4025 cp/decl.c:10985 -#, fuzzy, gcc-internal-format -msgid "inline function %q+D given attribute noinline" -msgstr "%Jha donat un atribut noinline a la funci inline \"%D\"" - -#: c-decl.c:3327 -#, gcc-internal-format -msgid "%q+D is static but declared in inline function %qD which is not static" -msgstr "" - -#: c-decl.c:3418 -#, fuzzy, gcc-internal-format -msgid "initializer fails to determine size of %q+D" -msgstr "l'inicializador no pot determinar la grandria de \"%D\"" - -#: c-decl.c:3423 -#, fuzzy, gcc-internal-format -msgid "array size missing in %q+D" -msgstr "falta la grandria de la matriu en \"%D\"" - -#: c-decl.c:3435 -#, fuzzy, gcc-internal-format -msgid "zero or negative size array %q+D" -msgstr "%Jmatriu \"%D\" de grandria zero o negatiu" - -#: c-decl.c:3490 varasm.c:2067 -#, fuzzy, gcc-internal-format -msgid "storage size of %q+D isn%'t known" -msgstr "no es coneix la grandria d'emmagatzematge de \"%D\"" - -#: c-decl.c:3500 -#, fuzzy, gcc-internal-format -msgid "storage size of %q+D isn%'t constant" -msgstr "la grandria d'emmagatzematge de \"%D\" no s constant" - -#: c-decl.c:3545 -#, fuzzy, gcc-internal-format -msgid "ignoring asm-specifier for non-static local variable %q+D" -msgstr "%Js'ignora l'especificador \"asm\" per a la variable local \"non-static\" \"%D\"" - -#: c-decl.c:3573 fortran/f95-lang.c:653 -#, gcc-internal-format -msgid "cannot put object with volatile field into register" -msgstr "no es pot posar objecte amb camp volatile en register" - -#: c-decl.c:3702 -#, gcc-internal-format -msgid "ISO C forbids forward parameter declarations" -msgstr "ISO C prohibeix declaracions avanades de parmetres" - -#: c-decl.c:3821 -#, fuzzy, gcc-internal-format -msgid "bit-field %qs width not an integer constant" -msgstr "l'amplria del camp de bits \"%s\" no s una constant entera" - -#: c-decl.c:3829 -#, fuzzy, gcc-internal-format -msgid "negative width in bit-field %qs" -msgstr "amplria negativa en el camp de bit \"%s\"" - -#: c-decl.c:3834 -#, fuzzy, gcc-internal-format -msgid "zero width for bit-field %qs" -msgstr "amplria zero per al camp de bits \"%s\"" - -#: c-decl.c:3844 -#, fuzzy, gcc-internal-format -msgid "bit-field %qs has invalid type" -msgstr "el camp de bits \"%s\" t un tipus no vlid" - -#: c-decl.c:3854 -#, fuzzy, gcc-internal-format -msgid "type of bit-field %qs is a GCC extension" -msgstr "el tipus de camp de bits \"%s\" s una extensi del GCC" - -#: c-decl.c:3860 -#, fuzzy, gcc-internal-format -msgid "width of %qs exceeds its type" -msgstr "l'amplria de \"%s\" excedeix el seu tipus" - -#: c-decl.c:3873 -#, fuzzy, gcc-internal-format -msgid "%qs is narrower than values of its type" -msgstr "\"%s\" s ms estret que els valors del seu tipus" - -#: c-decl.c:3892 -#, fuzzy, gcc-internal-format -msgid "ISO C90 forbids array %qs whose size can%'t be evaluated" -msgstr "ISO C90 prohibeix matriu \"%s\" que la seua grandria no pot ser avaluada" - -#: c-decl.c:3896 -#, fuzzy, gcc-internal-format -msgid "ISO C90 forbids array whose size can%'t be evaluated" -msgstr "ISO C90 prohibeix matriu \"%s\" que la seua grandria no pot ser avaluada" - -#: c-decl.c:3902 -#, fuzzy, gcc-internal-format -msgid "ISO C90 forbids variable length array %qs" -msgstr "ISO C90 prohibeix la matriu \"%s\" de grandria variable" - -#: c-decl.c:3905 -#, fuzzy, gcc-internal-format -msgid "ISO C90 forbids variable length array" -msgstr "ISO C++ prohibeix la matriu de grandria variable" - -#: c-decl.c:3914 -#, fuzzy, gcc-internal-format -msgid "the size of array %qs can%'t be evaluated" -msgstr "la grandria del tipus no pot ser avaluat explcitament" - -#: c-decl.c:3918 -#, fuzzy, gcc-internal-format -msgid "the size of array can %'t be evaluated" -msgstr "la grandria del tipus no pot ser avaluat explcitament" - -#: c-decl.c:3924 -#, gcc-internal-format -msgid "variable length array %qs is used" -msgstr "" - -#: c-decl.c:3928 cp/decl.c:7004 -#, gcc-internal-format -msgid "variable length array is used" -msgstr "" - -#: c-decl.c:4051 c-decl.c:4328 -#, fuzzy, gcc-internal-format -msgid "variably modified %qs at file scope" -msgstr "l'argument de patr \"%T\" s un tipus modificat variablement" - -#: c-decl.c:4069 -#, fuzzy, gcc-internal-format -msgid "type defaults to % in declaration of %qs" -msgstr "el tipus de dada per omissi s \"int\" en la declaraci de \"%s\"" - -#: c-decl.c:4097 -#, fuzzy, gcc-internal-format -msgid "duplicate %" -msgstr "\"const\" duplicat" - -#: c-decl.c:4099 -#, fuzzy, gcc-internal-format -msgid "duplicate %" -msgstr "\"restrict\" duplicat" - -#: c-decl.c:4101 -#, fuzzy, gcc-internal-format -msgid "duplicate %" -msgstr "\"volatile\" duplicat" - -#: c-decl.c:4120 -#, fuzzy, gcc-internal-format -msgid "function definition declared %" -msgstr "la definici de la funci ho va declarar com \"auto\"" - -#: c-decl.c:4122 -#, fuzzy, gcc-internal-format -msgid "function definition declared %" -msgstr "la definici de la funci ho va declarar com \"register\"" - -#: c-decl.c:4124 -#, fuzzy, gcc-internal-format -msgid "function definition declared %" -msgstr "la definici de la funci ho va declarar com \"typedef\"" - -#: c-decl.c:4126 -#, fuzzy, gcc-internal-format -msgid "function definition declared %<__thread%>" -msgstr "la definici de la funci ho va declarar com \"__thread\"" - -#: c-decl.c:4142 -#, fuzzy, gcc-internal-format -msgid "storage class specified for structure field %qs" -msgstr "es va especificar una classe d'emmagatzematge per al camp de l'estructura \"%s\"" - -#: c-decl.c:4146 cp/decl.c:7874 -#, fuzzy, gcc-internal-format -msgid "storage class specified for parameter %qs" -msgstr "es va especificar una classe d'emmagatzematge per al parmetre \"%s\"" - -#: c-decl.c:4149 cp/decl.c:7876 -#, gcc-internal-format -msgid "storage class specified for typename" -msgstr "es va especificar una classe d'emmagatzematge per al nom de tipus" - -#: c-decl.c:4166 cp/decl.c:7893 -#, fuzzy, gcc-internal-format -msgid "%qs initialized and declared %" -msgstr "\"%s\" iniciat i declarat com \"extern\"" - -#: c-decl.c:4169 cp/decl.c:7896 -#, fuzzy, gcc-internal-format -msgid "%qs has both % and initializer" -msgstr "\"%s\" t \"extern\" i assignador de valor inicial al mateix temps" - -#: c-decl.c:4174 -#, fuzzy, gcc-internal-format -msgid "file-scope declaration of %qs specifies %" -msgstr "la declaraci al nivell del fitxer de \"%s\" especifica \"auto\"" - -#: c-decl.c:4176 -#, fuzzy, gcc-internal-format -msgid "file-scope declaration of %qs specifies %" -msgstr "la declaraci al nivell del fitxer de \"%s\" especifica \"auto\"" - -#: c-decl.c:4181 cp/decl.c:7900 -#, fuzzy, gcc-internal-format -msgid "nested function %qs declared %" -msgstr "la funci niada \"%s\" es va declarar \"extern\"" - -#: c-decl.c:4184 cp/decl.c:7910 -#, fuzzy, gcc-internal-format -msgid "function-scope %qs implicitly auto and declared %<__thread%>" -msgstr "l'mbit de la funci \"%s\" s implcitament acte i declarada \"__thread\"" - -#. 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:4231 c-decl.c:4472 -#, gcc-internal-format -msgid "static or type qualifiers in non-parameter array declarator" -msgstr "static o qualificador de tipus en un declarador de matriu que no s parmetre" - -#: c-decl.c:4278 -#, fuzzy, gcc-internal-format -msgid "declaration of %qs as array of voids" -msgstr "declaraci de \"%s\" com una matriu de voids" - -#: c-decl.c:4284 -#, fuzzy, gcc-internal-format -msgid "declaration of %qs as array of functions" -msgstr "declaraci de \"%s\" com una matriu de funcions" - -#: c-decl.c:4289 -#, gcc-internal-format -msgid "invalid use of structure with flexible array member" -msgstr "s no vlid d'estructura amb membres de matriu flexible" - -#: c-decl.c:4309 -#, fuzzy, gcc-internal-format -msgid "size of array %qs has non-integer type" -msgstr "la grandria de la matriu \"%s\" t un tipus no enter" - -#: c-decl.c:4314 -#, fuzzy, gcc-internal-format -msgid "ISO C forbids zero-size array %qs" -msgstr "ISO C prohibeix la matriu \"%s\" de grandria zero" - -#: c-decl.c:4321 -#, fuzzy, gcc-internal-format -msgid "size of array %qs is negative" -msgstr "la grandria de la matriu \"%s\" s negatiu" - -#: c-decl.c:4375 c-decl.c:4631 cp/decl.c:8375 -#, fuzzy, gcc-internal-format -msgid "size of array %qs is too large" -msgstr "la grandria de la matriu \"%s\" s massa gran" - -#: c-decl.c:4386 -#, gcc-internal-format -msgid "ISO C90 does not support flexible array members" -msgstr "ISO C90 no t suport per a membres de matrius flexibles" - -#. C99 6.7.5.2p4 -#: c-decl.c:4399 -#, fuzzy, gcc-internal-format -msgid "%<[*]%> not allowed in other than a declaration" -msgstr "no es permet l'espai de noms \"%D\" en la declaraci d's" - -#: c-decl.c:4422 -#, gcc-internal-format -msgid "array type has incomplete element type" -msgstr "el tipus array t tipus d'element incomplet" - -#: c-decl.c:4504 cp/decl.c:8001 -#, fuzzy, gcc-internal-format -msgid "%qs declared as function returning a function" -msgstr "\"%s\" que s declarat com funci retorna una funci" - -#: c-decl.c:4509 cp/decl.c:8006 -#, fuzzy, gcc-internal-format -msgid "%qs declared as function returning an array" -msgstr "\"%s\" que s declarat com funci retorna una matriu" - -#: c-decl.c:4531 -#, fuzzy, gcc-internal-format -msgid "function definition has qualified void return type" -msgstr "definici no vlida del tipus qualificat \"%T\"" - -#: c-decl.c:4534 cp/decl.c:7990 cp/pt.c:8568 -#, gcc-internal-format -msgid "type qualifiers ignored on function return type" -msgstr "s'ignoren els qualificadors de tipus en el tipus de retorn de la funci" - -#: c-decl.c:4563 c-decl.c:4644 c-decl.c:4732 c-decl.c:4825 -#, gcc-internal-format -msgid "ISO C forbids qualified function types" -msgstr "ISO C prohibeix els tipus de funci qualificats" - -#: c-decl.c:4652 -#, fuzzy, gcc-internal-format -msgid "typedef %q+D declared %" -msgstr "%Jla variable \"%D\" s declarada com \"inline\"" - -#: c-decl.c:4667 -#, gcc-internal-format -msgid "ISO C forbids const or volatile function types" -msgstr "ISO C prohibeix els tipus de funci const o volatile" - -#. C99 6.7.2.1p8 -#: c-decl.c:4677 -#, gcc-internal-format -msgid "a member of a structure or union cannot have a variably modified type" -msgstr "" - -#: c-decl.c:4693 -#, fuzzy, gcc-internal-format -msgid "variable or field %qs declared void" -msgstr "variable o camp \"%s\" declarat void" - -#: c-decl.c:4725 -#, gcc-internal-format -msgid "attributes in parameter array declarator ignored" -msgstr "atributs en el declarador de parmetres de matriu ignorats" - -#: c-decl.c:4760 -#, fuzzy, gcc-internal-format -msgid "parameter %q+D declared %" -msgstr "el parmetre \"%D\" es va declarar void" - -#: c-decl.c:4773 -#, fuzzy, gcc-internal-format -msgid "field %qs declared as a function" -msgstr "el camp \"%s\" es declara com una funci" - -#: c-decl.c:4779 -#, fuzzy, gcc-internal-format -msgid "field %qs has incomplete type" -msgstr "el camp \"%s\" t tipus de dada incompleta" - -#: c-decl.c:4796 c-decl.c:4808 c-decl.c:4812 -#, fuzzy, gcc-internal-format -msgid "invalid storage class for function %qs" -msgstr "classe d'emmagatzematge no vlida per a la funci \"%s\"" - -#: c-decl.c:4831 -#, fuzzy, gcc-internal-format -msgid "% function returns non-void value" -msgstr "la funci \"no return\" retorna un valor que no s \"void\"" - -#: c-decl.c:4867 -#, fuzzy, gcc-internal-format -msgid "cannot inline function %" -msgstr "no es pot fer inline la funci \"main\"" - -#: c-decl.c:4910 -#, gcc-internal-format -msgid "variable previously declared % redeclared %" -msgstr "" - -#: c-decl.c:4920 -#, fuzzy, gcc-internal-format -msgid "variable %q+D declared %" -msgstr "%Jla variable \"%D\" s declarada com \"inline\"" - -#. C99 6.7.5.2p2 -#: c-decl.c:4951 -#, gcc-internal-format -msgid "object with variably modified type must have no linkage" -msgstr "" - -#: c-decl.c:5020 c-decl.c:6199 -#, fuzzy, gcc-internal-format -msgid "function declaration isn%'t a prototype" -msgstr "la declaraci de la funci no s un prototip" - -#: c-decl.c:5028 -#, gcc-internal-format -msgid "parameter names (without types) in function declaration" -msgstr "noms de parmetres (sense tipus) en la declaraci de la funci" - -#: c-decl.c:5061 -#, fuzzy, gcc-internal-format -msgid "parameter %u (%q+D) has incomplete type" -msgstr "%Jel parmetre \"%D\" t un tipus incomplet" - -#: c-decl.c:5064 -#, fuzzy, gcc-internal-format -msgid "%Jparameter %u has incomplete type" -msgstr "%Jel parmetre \"%D\" t un tipus incomplet" - -#: c-decl.c:5073 -#, fuzzy, gcc-internal-format -msgid "parameter %u (%q+D) has void type" -msgstr "%Jel parmetre \"%D\" t un tipus incomplet" - -#: c-decl.c:5076 -#, fuzzy, gcc-internal-format -msgid "%Jparameter %u has void type" -msgstr "%Jel parmetre \"%D\" t un tipus incomplet" - -#: c-decl.c:5138 -#, gcc-internal-format -msgid "% as only parameter may not be qualified" -msgstr "" - -#: c-decl.c:5142 c-decl.c:5176 -#, gcc-internal-format -msgid "% must be the only parameter" -msgstr "" - -#: c-decl.c:5170 -#, fuzzy, gcc-internal-format -msgid "parameter %q+D has just a forward declaration" -msgstr "%Jel parmetre \"%D\" noms t una declaraci posterior" - -#. The %s will be one of 'struct', 'union', or 'enum'. -#: c-decl.c:5215 -#, fuzzy, gcc-internal-format -msgid "%<%s %E%> declared inside parameter list" -msgstr "\"%s %s\" declarat dintre d'una llista de parmetres" - -#. The %s will be one of 'struct', 'union', or 'enum'. -#: c-decl.c:5219 -#, gcc-internal-format -msgid "anonymous %s declared inside parameter list" -msgstr "%s annim declarat dintre d'una llista de parmetres" - -#: c-decl.c:5224 -#, gcc-internal-format -msgid "its scope is only this definition or declaration, which is probably not what you want" -msgstr "el seu mbit s solament aquesta definici o declaraci, la qual cosa probablement no sigui el que desitja." - -#: c-decl.c:5358 -#, fuzzy, gcc-internal-format -msgid "redefinition of %" -msgstr "redefinici de \"union %s\"" - -#: c-decl.c:5360 -#, fuzzy, gcc-internal-format -msgid "redefinition of %" -msgstr "redefinici de \"struct %s\"" - -#: c-decl.c:5365 -#, fuzzy, gcc-internal-format -msgid "nested redefinition of %" -msgstr "redefinici niada de \"%s\"" - -#: c-decl.c:5367 -#, fuzzy, gcc-internal-format -msgid "nested redefinition of %" -msgstr "redefinici niada de \"%s\"" - -#: c-decl.c:5442 cp/decl.c:3780 -#, gcc-internal-format -msgid "declaration does not declare anything" -msgstr "la declaraci no declara res" - -#: c-decl.c:5446 -#, fuzzy, gcc-internal-format -msgid "ISO C doesn%'t support unnamed structs/unions" -msgstr "ISO C no t suport per a structs/unions sense nom" - -#: c-decl.c:5490 c-decl.c:5506 -#, fuzzy, gcc-internal-format -msgid "duplicate member %q+D" -msgstr "%Jmembre duplicat \"%D\"" - -#: c-decl.c:5545 -#, fuzzy, gcc-internal-format -msgid "union has no named members" -msgstr "membres nomenats" - -#: c-decl.c:5547 -#, fuzzy, gcc-internal-format -msgid "union has no members" -msgstr "agregat annim sense membres" - -#: c-decl.c:5552 -#, fuzzy, gcc-internal-format -msgid "struct has no named members" -msgstr "membres nomenats" - -#: c-decl.c:5554 -#, fuzzy, gcc-internal-format -msgid "struct has no members" -msgstr "%s no t un membre cridat \"%s\"" - -#: c-decl.c:5616 -#, gcc-internal-format -msgid "%Jflexible array member in union" -msgstr "%Jmembre de matriu flexible en el union" - -#: c-decl.c:5621 -#, gcc-internal-format -msgid "%Jflexible array member not at end of struct" -msgstr "%Jel membre de matriu flexible no est al final del struct" - -#: c-decl.c:5626 -#, gcc-internal-format -msgid "%Jflexible array member in otherwise empty struct" -msgstr "%Jel membre de matriu flexible seria d'altra manera un struct buit" - -# -#: c-decl.c:5633 -#, gcc-internal-format -msgid "%Jinvalid use of structure with flexible array member" -msgstr "%Js no vlid d'estructura amb membres de matriu flexible" - -#: c-decl.c:5742 -#, gcc-internal-format -msgid "union cannot be made transparent" -msgstr "union no es pot fer transparent" - -#: c-decl.c:5813 -#, fuzzy, gcc-internal-format -msgid "nested redefinition of %" -msgstr "redefinici niada de \"%s\"" - -#. This enum is a named one that has been declared already. -#: c-decl.c:5820 -#, fuzzy, gcc-internal-format -msgid "redeclaration of %" -msgstr "redeclaraci de \"enum %s\"" - -#: c-decl.c:5883 -#, gcc-internal-format -msgid "enumeration values exceed range of largest integer" -msgstr "els valors d'enumeraci excedeixen els lmits de l'enter ms gran" - -#: c-decl.c:5900 -#, gcc-internal-format -msgid "specified mode too small for enumeral values" -msgstr "" - -#: c-decl.c:5996 -#, fuzzy, gcc-internal-format -msgid "enumerator value for %qE is not an integer constant" -msgstr "el valor de enumerator per a \"%s\" no s una constant entera" - -#: c-decl.c:6013 -#, gcc-internal-format -msgid "overflow in enumeration values" -msgstr "desbordament en valors d'enumeraci" - -#: c-decl.c:6018 -#, fuzzy, gcc-internal-format -msgid "ISO C restricts enumerator values to range of %" -msgstr "ISO C restringeix els valors d'enumeraci als lmits de \"int\"" - -#: c-decl.c:6125 -#, gcc-internal-format -msgid "return type is an incomplete type" -msgstr "el tipus de retorn s un tipus incomplet" - -#: c-decl.c:6133 -#, fuzzy, gcc-internal-format -msgid "return type defaults to %" -msgstr "el tipus de retorn per omissi s \"int\"" - -#: c-decl.c:6206 -#, fuzzy, gcc-internal-format -msgid "no previous prototype for %q+D" -msgstr "%Jno hi ha un prototip previ per a \"%D\"" - -#: c-decl.c:6215 -#, fuzzy, gcc-internal-format -msgid "%q+D was used with no prototype before its definition" -msgstr "%Jes va usar \"%D\" sense prototip abans de la seva definici" - -#: c-decl.c:6221 cp/decl.c:11126 -#, fuzzy, gcc-internal-format -msgid "no previous declaration for %q+D" -msgstr "no hi ha declaraci prvia per a \"%D\"" - -#: c-decl.c:6231 -#, fuzzy, gcc-internal-format -msgid "%q+D was used with no declaration before its definition" -msgstr "%Jes va usar \"%D\" sense declaraci abans de la seva definici" - -#: c-decl.c:6254 c-decl.c:6723 -#, fuzzy, gcc-internal-format -msgid "return type of %q+D is not %" -msgstr "el tipus de retorn de \"%D\" no s \"int\"" - -#: c-decl.c:6259 -#, fuzzy, gcc-internal-format -msgid "%q+D is normally a non-static function" -msgstr "%J\"%D\" generalment s una funci non-static" - -#: c-decl.c:6293 -#, gcc-internal-format -msgid "%Jold-style parameter declarations in prototyped function definition" -msgstr "" - -#: c-decl.c:6307 -#, fuzzy, gcc-internal-format -msgid "%Jtraditional C rejects ISO C style function definitions" -msgstr "C tradicional rebutja la definici de funcions d'estil ISOC" - -#: c-decl.c:6323 -#, gcc-internal-format -msgid "%Jparameter name omitted" -msgstr "%Jes va ometre el nom del parmetre" - -#: c-decl.c:6357 -#, fuzzy, gcc-internal-format -msgid "%Jold-style function definition" -msgstr "%s: no es va convertir la definici de la funci\n" - -#: c-decl.c:6366 -#, gcc-internal-format -msgid "%Jparameter name missing from parameter list" -msgstr "%Jfalta el nom del parmetre de la llista de parmetres" - -#: c-decl.c:6377 -#, fuzzy, gcc-internal-format -msgid "%q+D declared as a non-parameter" -msgstr "%J\"%D\" declarat com non-parameter" - -#: c-decl.c:6382 -#, fuzzy, gcc-internal-format -msgid "multiple parameters named %q+D" -msgstr "%Jmltiples parmetres nomenats \"%D\"" - -#: c-decl.c:6390 -#, fuzzy, gcc-internal-format -msgid "parameter %q+D declared with void type" -msgstr "el parmetre \"%D\" es va declarar void" - -#: c-decl.c:6407 c-decl.c:6409 -#, fuzzy, gcc-internal-format -msgid "type of %q+D defaults to %" -msgstr "%Jel tipus de \"%D\" s \"int\" per omissi" - -#: c-decl.c:6428 -#, fuzzy, gcc-internal-format -msgid "parameter %q+D has incomplete type" -msgstr "el parmetre t tipus incomplet" - -#: c-decl.c:6434 -#, fuzzy, gcc-internal-format -msgid "declaration for parameter %q+D but no such parameter" -msgstr "%Jexisteix la declaraci per al parmetre \"%D\" per no hi ha tal parmetre" - -#: c-decl.c:6484 -#, fuzzy, gcc-internal-format -msgid "number of arguments doesn%'t match built-in prototype" -msgstr "el nombre d'arguments no coincideixen amb el prototip" - -#: c-decl.c:6488 -#, fuzzy, gcc-internal-format -msgid "number of arguments doesn%'t match prototype" -msgstr "el nombre d'arguments no coincideixen amb el prototip" - -#: c-decl.c:6489 c-decl.c:6529 c-decl.c:6542 -#, gcc-internal-format -msgid "%Hprototype declaration" -msgstr "%Hdeclaraci de prototip" - -#: c-decl.c:6523 -#, fuzzy, gcc-internal-format -msgid "promoted argument %qD doesn%'t match built-in prototype" -msgstr "l'argument promogut \"%D\" no coincideix amb el prototip" - -#: c-decl.c:6527 -#, fuzzy, gcc-internal-format -msgid "promoted argument %qD doesn%'t match prototype" -msgstr "l'argument promogut \"%D\" no coincideix amb el prototip" - -#: c-decl.c:6537 -#, fuzzy, gcc-internal-format -msgid "argument %qD doesn%'t match built-in prototype" -msgstr "l'argument \"%D\" no coincideix amb el prototip" - -#: c-decl.c:6541 -#, fuzzy, gcc-internal-format -msgid "argument %qD doesn%'t match prototype" -msgstr "l'argument \"%D\" no coincideix amb el prototip" - -#: c-decl.c:6768 cp/decl.c:11820 -#, gcc-internal-format -msgid "no return statement in function returning non-void" -msgstr "no hi ha una declaraci de retorn en una funci que retorna \"non-void\"" - -#. 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:6841 -#, fuzzy, gcc-internal-format -msgid "% loop initial declaration used outside C99 mode" -msgstr "es va usar la declaraci inicial del cicle \"for\" fora del mode C99" - -#: c-decl.c:6870 -#, fuzzy, gcc-internal-format -msgid "declaration of static variable %q+D in % loop initial declaration" -msgstr "%Jdeclaraci de la variable \"static\" \"%D\" en la declaraci inicial del cicle \"for\"" - -#: c-decl.c:6873 -#, fuzzy, gcc-internal-format -msgid "declaration of % variable %q+D in % loop initial declaration" -msgstr "%Jdeclaraci de la variable \"extern\" \"%D\" en la declaraci inicial del cicle \"for\"" - -#: c-decl.c:6878 -#, fuzzy, gcc-internal-format -msgid "% declared in % loop initial declaration" -msgstr "\"struct %s\" declarat en la declaraci inicial del cicle \"for\"" - -#: c-decl.c:6882 -#, fuzzy, gcc-internal-format -msgid "% declared in % loop initial declaration" -msgstr "\"union %s\" declarat en la declaraci inicial del cicle \"for\"" - -#: c-decl.c:6886 -#, fuzzy, gcc-internal-format -msgid "% declared in % loop initial declaration" -msgstr "\"enum %s\" declarat en la declaraci inicial del cicle \"for\"" - -#: c-decl.c:6890 -#, fuzzy, gcc-internal-format -msgid "declaration of non-variable %q+D in % loop initial declaration" -msgstr "%Jdeclaraci de \"%D\" que s \"non-variable\" en la declaraci inicial del cicle \"for\"" - -#: c-decl.c:7178 c-decl.c:7420 c-decl.c:7716 -#, fuzzy, gcc-internal-format -msgid "duplicate %qE" -msgstr "\"%s\" duplicat" - -#: c-decl.c:7201 c-decl.c:7430 c-decl.c:7617 -#, fuzzy, gcc-internal-format -msgid "two or more data types in declaration specifiers" -msgstr "dos o ms tipus de dades en la declaraci de \"%s\"" - -#: c-decl.c:7213 cp/parser.c:2149 -#, fuzzy, gcc-internal-format -msgid "% is too long for GCC" -msgstr "\"long long long\" s massa llarg per a GCC" - -#: c-decl.c:7220 c-decl.c:7520 -#, gcc-internal-format -msgid "both % and % in declaration specifiers" -msgstr "" - -#: c-decl.c:7226 -#, fuzzy, gcc-internal-format -msgid "ISO C90 does not support %" -msgstr "ISO C90 no dna suport a \"long long\"" - -#: c-decl.c:7231 c-decl.c:7260 -#, fuzzy, gcc-internal-format -msgid "both % and % in declaration specifiers" -msgstr "s'especifica long i short al mateix temps per a \"%s\"" - -#: c-decl.c:7234 c-decl.c:7437 -#, fuzzy, gcc-internal-format -msgid "both % and % in declaration specifiers" -msgstr "s'especifica long i short al mateix temps per a \"%s\"" - -#: c-decl.c:7237 c-decl.c:7459 -#, fuzzy, gcc-internal-format -msgid "both % and %<_Bool%> in declaration specifiers" -msgstr "s'especifica long i short al mateix temps per a \"%s\"" - -#: c-decl.c:7240 c-decl.c:7481 -#, fuzzy, gcc-internal-format -msgid "both % and % in declaration specifiers" -msgstr "s'especifica long i short al mateix temps per a \"%s\"" - -#: c-decl.c:7243 c-decl.c:7501 -#, fuzzy, gcc-internal-format -msgid "both % and % in declaration specifiers" -msgstr "s'especifica long i short al mateix temps per a \"%s\"" - -#: c-decl.c:7246 -#, gcc-internal-format -msgid "both % and %<_Decimal32%> in declaration specifiers" -msgstr "" - -#: c-decl.c:7249 -#, gcc-internal-format -msgid "both % and %<_Decimal64%> in declaration specifiers" -msgstr "" - -#: c-decl.c:7252 -#, gcc-internal-format -msgid "both % and %<_Decimal128%> in declaration specifiers" -msgstr "" - -#: c-decl.c:7263 c-decl.c:7440 -#, gcc-internal-format -msgid "both % and % in declaration specifiers" -msgstr "" - -#: c-decl.c:7266 c-decl.c:7462 -#, gcc-internal-format -msgid "both % and %<_Bool%> in declaration specifiers" -msgstr "" - -#: c-decl.c:7269 c-decl.c:7484 -#, gcc-internal-format -msgid "both % and % in declaration specifiers" -msgstr "" - -#: c-decl.c:7272 c-decl.c:7504 -#, gcc-internal-format -msgid "both % and % in declaration specifiers" -msgstr "" - -#: c-decl.c:7275 c-decl.c:7523 -#, gcc-internal-format -msgid "both % and % in declaration specifiers" -msgstr "" - -#: c-decl.c:7278 -#, gcc-internal-format -msgid "both % and %<_Decimal32%> in declaration specifiers" -msgstr "" - -#: c-decl.c:7281 -#, gcc-internal-format -msgid "both % and %<_Decimal64%> in declaration specifiers" -msgstr "" - -#: c-decl.c:7284 -#, gcc-internal-format -msgid "both % and %<_Decimal128%> in declaration specifiers" -msgstr "" - -#: c-decl.c:7292 c-decl.c:7321 -#, fuzzy, gcc-internal-format -msgid "both % and % in declaration specifiers" -msgstr "s'especifica signed i unsigned al mateix temps per a \"%s\"" - -#: c-decl.c:7295 c-decl.c:7443 -#, fuzzy, gcc-internal-format -msgid "both % and % in declaration specifiers" -msgstr "s'especifica signed i unsigned al mateix temps per a \"%s\"" - -#: c-decl.c:7298 c-decl.c:7465 -#, fuzzy, gcc-internal-format -msgid "both % and %<_Bool%> in declaration specifiers" -msgstr "s'especifica signed i unsigned al mateix temps per a \"%s\"" - -#: c-decl.c:7301 c-decl.c:7507 -#, fuzzy, gcc-internal-format -msgid "both % and % in declaration specifiers" -msgstr "s'especifica signed i unsigned al mateix temps per a \"%s\"" - -#: c-decl.c:7304 c-decl.c:7526 -#, fuzzy, gcc-internal-format -msgid "both % and % in declaration specifiers" -msgstr "s'especifica signed i unsigned al mateix temps per a \"%s\"" - -#: c-decl.c:7307 -#, gcc-internal-format -msgid "both % and %<_Decimal32%> in declaration specifiers" -msgstr "" - -#: c-decl.c:7310 -#, gcc-internal-format -msgid "both % and %<_Decimal64%> in declaration specifiers" -msgstr "" - -#: c-decl.c:7313 -#, gcc-internal-format -msgid "both % and %<_Decimal128%> in declaration specifiers" -msgstr "" - -#: c-decl.c:7324 c-decl.c:7446 -#, fuzzy, gcc-internal-format -msgid "both % and % in declaration specifiers" -msgstr "s'especifica signed i unsigned al mateix temps per a \"%s\"" - -#: c-decl.c:7327 c-decl.c:7468 -#, fuzzy, gcc-internal-format -msgid "both % and %<_Bool%> in declaration specifiers" -msgstr "s'especifica signed i unsigned al mateix temps per a \"%s\"" - -#: c-decl.c:7330 c-decl.c:7510 -#, fuzzy, gcc-internal-format -msgid "both % and % in declaration specifiers" -msgstr "s'especifica signed i unsigned al mateix temps per a \"%s\"" - -#: c-decl.c:7333 c-decl.c:7529 -#, fuzzy, gcc-internal-format -msgid "both % and % in declaration specifiers" -msgstr "s'especifica signed i unsigned al mateix temps per a \"%s\"" - -#: c-decl.c:7336 -#, gcc-internal-format -msgid "both % and %<_Decimal32%> in declaration specifiers" -msgstr "" - -#: c-decl.c:7339 -#, gcc-internal-format -msgid "both % and %<_Decimal64%> in declaration specifiers" -msgstr "" - -#: c-decl.c:7342 -#, gcc-internal-format -msgid "both % and %<_Decimal128%> in declaration specifiers" -msgstr "" - -#: c-decl.c:7350 -#, gcc-internal-format -msgid "ISO C90 does not support complex types" -msgstr "ISO C90 no t suport per a tipus complexos" - -#: c-decl.c:7352 c-decl.c:7449 -#, gcc-internal-format -msgid "both % and % in declaration specifiers" -msgstr "" - -#: c-decl.c:7355 c-decl.c:7471 -#, gcc-internal-format -msgid "both % and %<_Bool%> in declaration specifiers" -msgstr "" - -#: c-decl.c:7358 -#, gcc-internal-format -msgid "both % and %<_Decimal32%> in declaration specifiers" -msgstr "" - -#: c-decl.c:7361 -#, gcc-internal-format -msgid "both % and %<_Decimal64%> in declaration specifiers" -msgstr "" - -#: c-decl.c:7364 -#, gcc-internal-format -msgid "both % and %<_Decimal128%> in declaration specifiers" -msgstr "" - -#: c-decl.c:7367 -#, gcc-internal-format -msgid "both % and %<_Fract%> in declaration specifiers" -msgstr "" - -#: c-decl.c:7370 -#, gcc-internal-format -msgid "both % and %<_Accum%> in declaration specifiers" -msgstr "" - -#: c-decl.c:7373 -#, gcc-internal-format -msgid "both % and %<_Sat%> in declaration specifiers" -msgstr "" - -#: c-decl.c:7381 -#, fuzzy, gcc-internal-format -msgid "ISO C does not support saturating types" -msgstr "ISO C no dna suport a tipus enters complexos" - -#: c-decl.c:7383 c-decl.c:7452 -#, gcc-internal-format -msgid "both %<_Sat%> and % in declaration specifiers" -msgstr "" - -#: c-decl.c:7386 c-decl.c:7474 -#, gcc-internal-format -msgid "both %<_Sat%> and %<_Bool%> in declaration specifiers" -msgstr "" - -#: c-decl.c:7389 c-decl.c:7487 -#, gcc-internal-format -msgid "both %<_Sat%> and % in declaration specifiers" -msgstr "" - -#: c-decl.c:7392 c-decl.c:7494 -#, gcc-internal-format -msgid "both %<_Sat%> and % in declaration specifiers" -msgstr "" - -#: c-decl.c:7395 c-decl.c:7513 -#, gcc-internal-format -msgid "both %<_Sat%> and % in declaration specifiers" -msgstr "" - -#: c-decl.c:7398 c-decl.c:7532 -#, gcc-internal-format -msgid "both %<_Sat%> and % in declaration specifiers" -msgstr "" - -#: c-decl.c:7401 -#, gcc-internal-format -msgid "both %<_Sat%> and %<_Decimal32%> in declaration specifiers" -msgstr "" - -#: c-decl.c:7404 -#, gcc-internal-format -msgid "both %<_Sat%> and %<_Decimal64%> in declaration specifiers" -msgstr "" - -#: c-decl.c:7407 -#, gcc-internal-format -msgid "both %<_Sat%> and %<_Decimal128%> in declaration specifiers" -msgstr "" - -#: c-decl.c:7410 -#, gcc-internal-format -msgid "both %<_Sat%> and % in declaration specifiers" -msgstr "" - -#: c-decl.c:7549 -#, fuzzy, gcc-internal-format -msgid "both % and %<%s%> in declaration specifiers" -msgstr "s'especifica long i short al mateix temps per a \"%s\"" - -#: c-decl.c:7552 -#, fuzzy, gcc-internal-format -msgid "both % and %<%s%> in declaration specifiers" -msgstr "s'especifica long i short al mateix temps per a \"%s\"" - -#: c-decl.c:7555 -#, gcc-internal-format -msgid "both % and %<%s%> in declaration specifiers" -msgstr "" - -#: c-decl.c:7558 -#, fuzzy, gcc-internal-format -msgid "both % and %<%s%> in declaration specifiers" -msgstr "s'especifica signed i unsigned al mateix temps per a \"%s\"" - -#: c-decl.c:7561 -#, fuzzy, gcc-internal-format -msgid "both % and %<%s%> in declaration specifiers" -msgstr "s'especifica signed i unsigned al mateix temps per a \"%s\"" - -#: c-decl.c:7564 c-decl.c:7590 -#, gcc-internal-format -msgid "both % and %<%s%> in declaration specifiers" -msgstr "" - -#: c-decl.c:7567 -#, gcc-internal-format -msgid "both %<_Sat%> and %<%s%> in declaration specifiers" -msgstr "" - -#: c-decl.c:7577 -#, fuzzy, gcc-internal-format -msgid "decimal floating point not supported for this target" -msgstr "no es dna suport a -fdata-sections en aquest objectiu" - -#: c-decl.c:7579 -#, fuzzy, gcc-internal-format -msgid "ISO C does not support decimal floating point" -msgstr "ISO C90 no dna suport a \"long long\"" - -#: c-decl.c:7598 -#, fuzzy, gcc-internal-format -msgid "fixed-point types not supported for this target" -msgstr "no es dna suport a -fdata-sections en aquest objectiu" - -#: c-decl.c:7600 -#, fuzzy, gcc-internal-format -msgid "ISO C does not support fixed-point types" -msgstr "ISO C no dna suport a tipus enters complexos" - -#: c-decl.c:7634 -#, fuzzy, gcc-internal-format -msgid "%qE fails to be a typedef or built in type" -msgstr "\"%s\" falla al ser un typedef o un tipus intern del compilador" - -#: c-decl.c:7667 -#, fuzzy, gcc-internal-format -msgid "%qE is not at beginning of declaration" -msgstr "\"%s\" no est en l'inici de la declaraci" - -#: c-decl.c:7681 -#, gcc-internal-format -msgid "%<__thread%> used with %" -msgstr "" - -#: c-decl.c:7683 -#, gcc-internal-format -msgid "%<__thread%> used with %" -msgstr "" - -#: c-decl.c:7685 -#, gcc-internal-format -msgid "%<__thread%> used with %" -msgstr "" - -#: c-decl.c:7696 -#, fuzzy, gcc-internal-format -msgid "%<__thread%> before %" -msgstr "\"__thread\" abans \"extern\"" - -#: c-decl.c:7705 -#, fuzzy, gcc-internal-format -msgid "%<__thread%> before %" -msgstr "\"__thread\" abans \"static\"" - -#: c-decl.c:7721 -#, fuzzy, gcc-internal-format -msgid "multiple storage classes in declaration specifiers" -msgstr "mltiples classes d'emmagatzematge en la declaraci de \"%s\"" - -#: c-decl.c:7728 -#, gcc-internal-format -msgid "%<__thread%> used with %qE" -msgstr "" - -#: c-decl.c:7775 -#, gcc-internal-format -msgid "%<_Sat%> is used without %<_Fract%> or %<_Accum%>" -msgstr "" - -#: c-decl.c:7787 -#, fuzzy, gcc-internal-format -msgid "ISO C does not support plain % meaning %" -msgstr "ISO C no t suport per a \"complex\" simples que signifiquen \"double complex\"" - -#: c-decl.c:7832 c-decl.c:7858 -#, gcc-internal-format -msgid "ISO C does not support complex integer types" -msgstr "ISO C no dna suport a tipus enters complexos" - -#: c-decl.c:8008 toplev.c:847 -#, fuzzy, gcc-internal-format -msgid "%q+F used but never defined" -msgstr "\"%s\" utilitzat per mai definit" - -#: c-format.c:98 c-format.c:207 -#, gcc-internal-format -msgid "format string has invalid operand number" -msgstr "la cadena de format t un nombre d'operadors no vlid" - -#: c-format.c:115 -#, gcc-internal-format -msgid "function does not return string type" -msgstr "la funci no retorna un tipus string" - -#: c-format.c:144 -#, fuzzy, gcc-internal-format -msgid "format string argument not a string type" -msgstr "l'argument de la cadena de format no s del tipus cadena de text" - -#: c-format.c:187 -#, gcc-internal-format -msgid "unrecognized format specifier" -msgstr "no es reconeix l'especificador de format" - -#: c-format.c:199 -#, fuzzy, gcc-internal-format -msgid "%qE is an unrecognized format function type" -msgstr "\"%s\" s un format de tipus de funci no reconegut" - -#: c-format.c:213 -#, fuzzy, gcc-internal-format -msgid "%<...%> has invalid operand number" -msgstr "\"...\" t un nombre d'operadors no vlid" - -#: c-format.c:220 -#, fuzzy, gcc-internal-format -msgid "format string argument follows the args to be formatted" -msgstr "l'argument de la cadena de format segueix els arguments que rebran format" - -#: c-format.c:927 -#, fuzzy, gcc-internal-format -msgid "function might be possible candidate for %qs format attribute" -msgstr "la funci pot ser un candidat possible per a l'atribut de format \"%s\"" - -#: c-format.c:1019 c-format.c:1040 c-format.c:2058 -#, gcc-internal-format -msgid "missing $ operand number in format" -msgstr "falta l'operand numric $ en el format" - -#: c-format.c:1049 -#, gcc-internal-format -msgid "%s does not support %%n$ operand number formats" -msgstr "%s no t suport per a l'operand amb format de nombre %%n$" - -#: c-format.c:1056 -#, gcc-internal-format -msgid "operand number out of range in format" -msgstr "operand numric fora de lmits en el format" - -#: c-format.c:1079 -#, gcc-internal-format -msgid "format argument %d used more than once in %s format" -msgstr "s'usa ms d'una vegada l'argument de format %d en el format %s" - -#: c-format.c:1111 -#, fuzzy, gcc-internal-format -msgid "$ operand number used after format without operand number" -msgstr "el nombre de operades especificats per al format no pren arguments" - -#: c-format.c:1142 -#, gcc-internal-format -msgid "format argument %d unused before used argument %d in $-style format" -msgstr "no s'usa l'argument de format %d abans d'usar l'argument %d en el format $-style" - -#: c-format.c:1237 -#, gcc-internal-format -msgid "format not a string literal, format string not checked" -msgstr "el format no s una cadena literal, no es va revisar la cadena de format" - -#: c-format.c:1252 c-format.c:1255 -#, gcc-internal-format -msgid "format not a string literal and no format arguments" -msgstr "el format no s una cadena literal i no t arguments de format" - -#: c-format.c:1258 -#, gcc-internal-format -msgid "format not a string literal, argument types not checked" -msgstr "el format no s una cadena literal, no es van revisar els tipus d'argument" - -#: c-format.c:1271 -#, gcc-internal-format -msgid "too many arguments for format" -msgstr "massa arguments per al format" - -#: c-format.c:1274 -#, gcc-internal-format -msgid "unused arguments in $-style format" -msgstr "no es van usar arguments en el format d'estil-$" - -#: c-format.c:1277 -#, gcc-internal-format -msgid "zero-length %s format string" -msgstr "cadena de format %s de longitud zero" - -#: c-format.c:1281 -#, gcc-internal-format -msgid "format is a wide character string" -msgstr "el format s una cadena de carcter ampla" - -#: c-format.c:1284 -#, gcc-internal-format -msgid "unterminated format string" -msgstr "constant de format sense acabar" - -#: c-format.c:1492 -#, fuzzy, gcc-internal-format -msgid "embedded %<\\0%> in format" -msgstr "\"\\0\" incrustat en el format" - -#: c-format.c:1507 -#, fuzzy, gcc-internal-format -msgid "spurious trailing %<%%%> in format" -msgstr "\"%%\" final espuri en el format" - -#: c-format.c:1551 c-format.c:1821 -#, gcc-internal-format -msgid "repeated %s in format" -msgstr "es va repetir %s en el format" - -#: c-format.c:1564 -#, gcc-internal-format -msgid "missing fill character at end of strfmon format" -msgstr "falta el carcter de farciment al final del format strfmon" - -#: c-format.c:1608 c-format.c:1710 c-format.c:2005 c-format.c:2070 -#, gcc-internal-format -msgid "too few arguments for format" -msgstr "molt pocs arguments per al format" - -#: c-format.c:1649 -#, gcc-internal-format -msgid "zero width in %s format" -msgstr "amplria zero en el format %s" - -#: c-format.c:1667 -#, gcc-internal-format -msgid "empty left precision in %s format" -msgstr "precisi esquerra buida en el format %s" - -#: c-format.c:1740 -#, gcc-internal-format -msgid "empty precision in %s format" -msgstr "precisi buida en el format %s" - -#: c-format.c:1805 -#, fuzzy, gcc-internal-format -msgid "%s does not support the %qs %s length modifier" -msgstr "%s no t suport per al modificador de longitud %s \"%s\"" - -#: c-format.c:1838 -#, gcc-internal-format -msgid "conversion lacks type at end of format" -msgstr "la conversi manca de tipus al final del format" - -#: c-format.c:1849 -#, fuzzy, gcc-internal-format -msgid "unknown conversion type character %qc in format" -msgstr "es desconeix el carcter de tipus de conversi \"%c\" en el format" - -#: c-format.c:1852 -#, gcc-internal-format -msgid "unknown conversion type character 0x%x in format" -msgstr "es desconeix el carcter de tipus de conversi 0x%x en el format" - -#: c-format.c:1859 -#, fuzzy, gcc-internal-format -msgid "%s does not support the %<%%%c%> %s format" -msgstr "%s no t suport per al format \"%%%s%c\" %s" - -#: c-format.c:1875 -#, fuzzy, gcc-internal-format -msgid "%s used with %<%%%c%> %s format" -msgstr "es va usar %s amb el format \"%%%c\" %s" - -#: c-format.c:1884 -#, gcc-internal-format -msgid "%s does not support %s" -msgstr "%s no t suport per a %s" - -#: c-format.c:1894 -#, fuzzy, gcc-internal-format -msgid "%s does not support %s with the %<%%%c%> %s format" -msgstr "%s no t suport per a %s amb el format \"%%%c\" %s" - -#: c-format.c:1930 -#, fuzzy, gcc-internal-format -msgid "%s ignored with %s and %<%%%c%> %s format" -msgstr "s'ignora %s amb %s i el format \"%%%c\" %s" - -#: c-format.c:1934 -#, gcc-internal-format -msgid "%s ignored with %s in %s format" -msgstr "s'ignora %s amb %s en el format %s" - -#: c-format.c:1941 -#, fuzzy, gcc-internal-format -msgid "use of %s and %s together with %<%%%c%> %s format" -msgstr "s de %s i %s juntament amb el format \"%%%c\" %s" - -#: c-format.c:1945 -#, gcc-internal-format -msgid "use of %s and %s together in %s format" -msgstr "s de %s i %s junts en el format %s" - -#: c-format.c:1964 -#, fuzzy, gcc-internal-format -msgid "%<%%%c%> yields only last 2 digits of year in some locales" -msgstr "\"%%%c\" noms produeix els dos ltims dgits de l'any en alguns llocs" - -#: c-format.c:1967 -#, fuzzy, gcc-internal-format -msgid "%<%%%c%> yields only last 2 digits of year" -msgstr "\"%%%c\" noms produeix els dos ltims dgits de l'any" - -#. The end of the format string was reached. -#: c-format.c:1984 -#, fuzzy, gcc-internal-format -msgid "no closing %<]%> for %<%%[%> format" -msgstr "no hi ha un \"]\" que tancament per al format \"%%[\"" - -#: c-format.c:1998 -#, fuzzy, gcc-internal-format -msgid "use of %qs length modifier with %qc type character" -msgstr "s del modificador de longitud \"%s\" amb el carcter de tipus \"%c\"" - -#: c-format.c:2020 -#, fuzzy, gcc-internal-format -msgid "%s does not support the %<%%%s%c%> %s format" -msgstr "%s no t suport per al format \"%%%s%c\" %s" - -#: c-format.c:2037 -#, gcc-internal-format -msgid "operand number specified with suppressed assignment" -msgstr "nombre d'operadors especificat amb assignaci suprimida" - -#: c-format.c:2040 -#, gcc-internal-format -msgid "operand number specified for format taking no argument" -msgstr "el nombre de operades especificats per al format no pren arguments" - -#: c-format.c:2173 -#, fuzzy, gcc-internal-format -msgid "writing through null pointer (argument %d)" -msgstr "escrivint a travs d'un punter nul (argument %d)" - -#: c-format.c:2181 -#, fuzzy, gcc-internal-format -msgid "reading through null pointer (argument %d)" -msgstr "llegint a travs d'un punter nul (argument %d)" - -#: c-format.c:2201 -#, fuzzy, gcc-internal-format -msgid "writing into constant object (argument %d)" -msgstr "escrivint en un objecte constant (argument %d)" - -#: c-format.c:2212 -#, fuzzy, gcc-internal-format -msgid "extra type qualifiers in format argument (argument %d)" -msgstr "qualificadores de tipus extra en l'argument de format (argument %d)" - -#: c-format.c:2323 -#, gcc-internal-format -msgid "%s should have type %<%s%s%>, but argument %d has type %qT" -msgstr "" - -#: c-format.c:2327 -#, gcc-internal-format -msgid "format %q.*s expects type %<%s%s%>, but argument %d has type %qT" -msgstr "" - -#: c-format.c:2335 -#, gcc-internal-format -msgid "%s should have type %<%T%s%>, but argument %d has type %qT" -msgstr "" - -#: c-format.c:2339 -#, gcc-internal-format -msgid "format %q.*s expects type %<%T%s%>, but argument %d has type %qT" -msgstr "" - -#: c-format.c:2398 c-format.c:2404 c-format.c:2554 -#, gcc-internal-format -msgid "%<__gcc_host_wide_int__%> is not defined as a type" -msgstr "" - -#: c-format.c:2411 c-format.c:2564 -#, gcc-internal-format -msgid "%<__gcc_host_wide_int__%> is not defined as % or %" -msgstr "" - -#: c-format.c:2460 -#, fuzzy, gcc-internal-format -msgid "% is not defined as a type" -msgstr "\"%s\" no s definit" - -#: c-format.c:2513 -#, gcc-internal-format -msgid "% is not defined as a type" -msgstr "" - -#: c-format.c:2530 -#, fuzzy, gcc-internal-format -msgid "% is not defined as a type" -msgstr "\"%s\" no s definit" - -#: c-format.c:2535 -#, fuzzy, gcc-internal-format -msgid "% is not defined as a pointer type" -msgstr "new no pot ser aplicat a un tipus de referncia" - -#: c-format.c:2758 -#, fuzzy, gcc-internal-format -msgid "args to be formatted is not %<...%>" -msgstr "els arguments que rebran format no sn \"...\"" - -#: c-format.c:2767 -#, gcc-internal-format -msgid "strftime formats cannot format arguments" -msgstr "els formats de strftime no poden donar format als arguments" - -#: c-lex.c:245 -#, gcc-internal-format -msgid "badly nested C headers from preprocessor" -msgstr "encapalats C mal niats del preprocessador" - -#: c-lex.c:293 -#, fuzzy, gcc-internal-format -msgid "%Hignoring #pragma %s %s" -msgstr "ignorant el #pragma %s %s" - -#. ... or not. -#: c-lex.c:419 -#, fuzzy, gcc-internal-format -msgid "%Hstray %<@%> in program" -msgstr "%H\"@\" parsit en el programa" - -#: c-lex.c:436 -#, fuzzy, gcc-internal-format -msgid "stray %qs in program" -msgstr "\"%c\" parsit en el programa" - -#: c-lex.c:446 -#, gcc-internal-format -msgid "missing terminating %c character" -msgstr "falta carcter acabant %c" - -#: c-lex.c:448 -#, fuzzy, gcc-internal-format -msgid "stray %qc in program" -msgstr "\"%c\" parsit en el programa" - -#: c-lex.c:450 -#, fuzzy, gcc-internal-format -msgid "stray %<\\%o%> in program" -msgstr "\"\\%o\" parsit en el programa" - -#: c-lex.c:605 -#, gcc-internal-format -msgid "this decimal constant is unsigned only in ISO C90" -msgstr "aquesta constant decimal noms s unsigned en ISO C90" - -#: c-lex.c:609 -#, gcc-internal-format -msgid "this decimal constant would be unsigned in ISO C90" -msgstr "aquesta constant decimal ser unsigned en ISO C90 " - -#: c-lex.c:625 -#, fuzzy, gcc-internal-format -msgid "integer constant is too large for %qs type" -msgstr "la constant entera s massa gran pel tipus \"%s\"" - -#: c-lex.c:674 -#, fuzzy, gcc-internal-format -msgid "unsupported non-standard suffix on floating constant" -msgstr "sufix \"%.*s\" no vlid en la constant de coma flotant" - -#: c-lex.c:680 -#, fuzzy, gcc-internal-format -msgid "non-standard suffix on floating constant" -msgstr "sufix \"%.*s\" no vlid en la constant de coma flotant" - -#: c-lex.c:722 c-lex.c:724 -#, fuzzy, gcc-internal-format -msgid "floating constant exceeds range of %qT" -msgstr "la constant de coma flotant excedeix els lmits de \"%s\"" - -#: c-lex.c:732 -#, fuzzy, gcc-internal-format -msgid "floating constant truncated to zero" -msgstr "constant de coma flotant mal usada" - -#: c-lex.c:941 -#, gcc-internal-format -msgid "traditional C rejects string constant concatenation" -msgstr "C tradicional rebutja la concatenaci de cadenes constantes" - -#: c-omp.c:106 -#, fuzzy, gcc-internal-format -msgid "invalid expression type for %<#pragma omp atomic%>" -msgstr "expressi no vlida com a operand" - -#: c-omp.c:218 -#, fuzzy, gcc-internal-format -msgid "%Hinvalid type for iteration variable %qE" -msgstr "tipus de vector no vlid per a l'atribut \"%s\"" - -#: c-omp.c:222 -#, fuzzy, gcc-internal-format -msgid "%Hiteration variable %qE is unsigned" -msgstr "la variable esttica \"%s\" est marcada com dllimport" - -#: c-omp.c:233 -#, fuzzy, gcc-internal-format -msgid "%H%qE is not initialized" -msgstr "falta valor inicial" - -#: c-omp.c:246 cp/semantics.c:3840 -#, fuzzy, gcc-internal-format -msgid "%Hmissing controlling predicate" -msgstr "falta \"(\" abans del predicat" - -#: c-omp.c:304 -#, fuzzy, gcc-internal-format -msgid "%Hinvalid controlling predicate" -msgstr "restriccions no vlides per a l'operand" - -#: c-omp.c:311 cp/semantics.c:3846 -#, fuzzy, gcc-internal-format -msgid "%Hmissing increment expression" -msgstr "\")\" faltant en l'expressi" - -#: c-omp.c:361 -#, fuzzy, gcc-internal-format -msgid "%Hinvalid increment expression" -msgstr "expressi de valor veritable no vlida" - -#: c-opts.c:153 -#, fuzzy, gcc-internal-format -msgid "no class name specified with %qs" -msgstr "no nom de class especificat amb \"%s\"" - -#: c-opts.c:157 -#, fuzzy, gcc-internal-format -msgid "assertion missing after %qs" -msgstr "asserci faltant deprs de \"%s\"" - -#: c-opts.c:162 -#, fuzzy, gcc-internal-format -msgid "macro name missing after %qs" -msgstr "nom de macro faltant deprs de \"%s\"" - -#: c-opts.c:171 -#, fuzzy, gcc-internal-format -msgid "missing path after %qs" -msgstr "falta el cam desprs de \"%s\"" - -#: c-opts.c:180 -#, fuzzy, gcc-internal-format -msgid "missing filename after %qs" -msgstr "nom de fitxer faltant deprs de \"%s\"" - -#: c-opts.c:185 -#, fuzzy, gcc-internal-format -msgid "missing makefile target after %qs" -msgstr "falta l'objectiu del makefile desprs de \"%s\"" - -#: c-opts.c:337 -#, gcc-internal-format -msgid "-I- specified twice" -msgstr "-I- especificat dues vegades" - -#: c-opts.c:340 -#, gcc-internal-format -msgid "obsolete option -I- used, please use -iquote instead" -msgstr "" - -#: c-opts.c:508 -#, fuzzy, gcc-internal-format -msgid "argument %qs to %<-Wnormalized%> not recognized" -msgstr "no es reconeix el llenguatge %s" - -#: c-opts.c:595 -#, fuzzy, gcc-internal-format -msgid "switch %qs is no longer supported" -msgstr "el switch \"%s\" ja no t suport" - -#: c-opts.c:705 -#, gcc-internal-format -msgid "-fhandle-exceptions has been renamed -fexceptions (and is now on by default)" -msgstr "es va re-nomenar \"-fhandle-exceptions\" a \"-fexceptions\" (i ara est activat per defecte)" - -#: c-opts.c:911 -#, gcc-internal-format -msgid "output filename specified twice" -msgstr "nom de fitxer de sortida especificat dues vegades" - -#: c-opts.c:1051 -#, fuzzy, gcc-internal-format -msgid "-fno-gnu89-inline is only supported in GNU99 or C99 mode" -msgstr "-g noms t suport quan s'usa GAS en aquest processador," - -#: c-opts.c:1126 -#, gcc-internal-format -msgid "-Wformat-y2k ignored without -Wformat" -msgstr "s'ignora -Wformat-y2k sense -Wformat" - -#: c-opts.c:1128 -#, gcc-internal-format -msgid "-Wformat-extra-args ignored without -Wformat" -msgstr "s'ignora -Wformat-extra-args sense -Wformat" - -#: c-opts.c:1130 -#, gcc-internal-format -msgid "-Wformat-zero-length ignored without -Wformat" -msgstr "s'ignora -Wformat-zero-length sense -Wformat" - -#: c-opts.c:1132 -#, gcc-internal-format -msgid "-Wformat-nonliteral ignored without -Wformat" -msgstr "s'ignora -Wformat-nonliteral sense -Wformat" - -#: c-opts.c:1134 -#, fuzzy, gcc-internal-format -msgid "-Wformat-contains-nul ignored without -Wformat" -msgstr "s'ignora -Wformat-nonliteral sense -Wformat" - -#: c-opts.c:1136 -#, gcc-internal-format -msgid "-Wformat-security ignored without -Wformat" -msgstr "s'ignora -Wformat-security sense -Wformat" - -#: c-opts.c:1160 -#, gcc-internal-format -msgid "opening output file %s: %m" -msgstr "obrint el fitxer de sortida %s: %m" - -#: c-opts.c:1165 -#, gcc-internal-format -msgid "too many filenames given. Type %s --help for usage" -msgstr "massa noms de fitxers. Teclegi %s --help per a informaci d's" - -#: c-opts.c:1249 -#, fuzzy, gcc-internal-format -msgid "The C parser does not support -dy, option ignored" -msgstr "no se suporta el codi APCS que es torna a introduir.Ignorat" - -#: c-opts.c:1253 -#, gcc-internal-format -msgid "The Objective-C parser does not support -dy, option ignored" -msgstr "" - -#: c-opts.c:1256 -#, fuzzy, gcc-internal-format -msgid "The C++ parser does not support -dy, option ignored" -msgstr "no se suporta el codi APCS que es torna a introduir.Ignorat" - -#: c-opts.c:1260 -#, gcc-internal-format -msgid "The Objective-C++ parser does not support -dy, option ignored" -msgstr "" - -#: c-opts.c:1309 -#, gcc-internal-format -msgid "opening dependency file %s: %m" -msgstr "obrint el fitxer de dependncies %s: %m" - -#: c-opts.c:1319 -#, gcc-internal-format -msgid "closing dependency file %s: %m" -msgstr "tancant el fitxer de dependncies %s: %m" - -#: c-opts.c:1322 -#, gcc-internal-format -msgid "when writing output to %s: %m" -msgstr "escrivint la sortida a %s: %m" - -#: c-opts.c:1402 -#, gcc-internal-format -msgid "to generate dependencies you must specify either -M or -MM" -msgstr "per a generar dependncies s'ha d'especificar -M o -MM" - -#: c-opts.c:1448 -#, gcc-internal-format -msgid "-fdirectives-only is incompatible with -Wunused_macros" -msgstr "" - -#: c-opts.c:1450 -#, gcc-internal-format -msgid "-fdirectives-only is incompatible with -traditional" -msgstr "" - -#: c-opts.c:1588 -#, gcc-internal-format -msgid "too late for # directive to set debug directory" -msgstr "" - -#: c-parser.c:1070 -#, fuzzy, gcc-internal-format -msgid "%HISO C forbids an empty source file" -msgstr "ISO C prohibeix un fitxer font buit" - -#: c-parser.c:1156 c-parser.c:6091 -#, fuzzy, gcc-internal-format -msgid "%HISO C does not allow extra %<;%> outside of a function" -msgstr "ISO C no permet \";\" extra fora d'una funci" - -#: c-parser.c:1259 c-parser.c:6640 -#, fuzzy, gcc-internal-format -msgid "expected declaration specifiers" -msgstr "declaraci repetida de la unitat \"%s\"" - -#: c-parser.c:1271 -#, fuzzy, gcc-internal-format -msgid "%Hempty declaration" -msgstr "declaraci buida" - -#: c-parser.c:1307 -#, fuzzy, gcc-internal-format -msgid "%Hdata definition has no type or storage class" -msgstr "la definici de dades no t tipus o classe d'emmagatzematge" - -#: c-parser.c:1362 -#, 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:1369 c-parser.c:1386 -#, gcc-internal-format -msgid "expected %<=%>, %<,%>, %<;%>, % or %<__attribute__%>" -msgstr "" - -#: c-parser.c:1378 -#, fuzzy, gcc-internal-format -msgid "%HISO C forbids nested functions" -msgstr "ISO C prohibeix les funcions niades" - -#: c-parser.c:1743 c-parser.c:2553 c-parser.c:3189 c-parser.c:3445 -#: c-parser.c:4308 c-parser.c:4895 c-parser.c:5298 c-parser.c:5318 -#: c-parser.c:5434 c-parser.c:5582 c-parser.c:5599 c-parser.c:5731 -#: c-parser.c:5743 c-parser.c:5768 c-parser.c:5903 c-parser.c:5932 -#: c-parser.c:5940 c-parser.c:5968 c-parser.c:5982 c-parser.c:6201 -#: c-parser.c:6300 c-parser.c:6803 c-parser.c:7426 -#, fuzzy, gcc-internal-format -msgid "expected identifier" -msgstr "operand inesperat" - -#: c-parser.c:1773 -#, fuzzy, gcc-internal-format -msgid "%Hcomma at end of enumerator list" -msgstr "coma al final de la llista de numeradors" - -#: c-parser.c:1779 -#, gcc-internal-format -msgid "expected %<,%> or %<}%>" -msgstr "" - -#: c-parser.c:1793 c-parser.c:1977 c-parser.c:6058 -#, gcc-internal-format -msgid "expected %<{%>" -msgstr "" - -#: c-parser.c:1804 -#, fuzzy, gcc-internal-format -msgid "%HISO C forbids forward references to % types" -msgstr "ISO C prohibeix les declaracions posteriors per a tipus \"enum\"" - -#: c-parser.c:1911 -#, fuzzy, gcc-internal-format -msgid "expected class name" -msgstr "operand inesperat" - -#: c-parser.c:1930 c-parser.c:5835 -#, fuzzy, gcc-internal-format -msgid "%Hextra semicolon in struct or union specified" -msgstr "es va especificar un punt i coma extra en un struct o union" - -#: c-parser.c:1959 -#, fuzzy, gcc-internal-format -msgid "%Hno semicolon at end of struct or union" -msgstr "no hi ha punt i coma al final del struct o union" - -#: c-parser.c:1963 -#, gcc-internal-format -msgid "expected %<;%>" -msgstr "" - -#: c-parser.c:2042 c-parser.c:3014 -#, gcc-internal-format -msgid "expected specifier-qualifier-list" -msgstr "" - -#: c-parser.c:2052 -#, fuzzy, gcc-internal-format -msgid "%HISO C forbids member declarations with no members" -msgstr "ISO C prohibeix declaracions de membres sense membres" - -#: c-parser.c:2126 -#, gcc-internal-format -msgid "expected %<,%>, %<;%> or %<}%>" -msgstr "" - -#: c-parser.c:2133 -#, gcc-internal-format -msgid "expected %<:%>, %<,%>, %<;%>, %<}%> or %<__attribute__%>" -msgstr "" - -#: c-parser.c:2184 -#, fuzzy, gcc-internal-format -msgid "%H% applied to a bit-field" -msgstr "\"typeof\" aplicat a un camp de bits" - -#: c-parser.c:2421 -#, gcc-internal-format -msgid "expected identifier or %<(%>" -msgstr "" - -#: c-parser.c:2622 -#, fuzzy, gcc-internal-format -msgid "%HISO C requires a named argument before %<...%>" -msgstr "ISO C requereix un argument amb nom abans de \"...\"" - -#: c-parser.c:2729 -#, fuzzy, gcc-internal-format -msgid "expected declaration specifiers or %<...%>" -msgstr "la declaraci del nivell superior de \"%s\" especifica \"auto\"" - -#: c-parser.c:2779 -#, gcc-internal-format -msgid "%Hwide string literal in %" -msgstr "" - -#: c-parser.c:2786 c-parser.c:6695 cp/parser.c:20393 -#, fuzzy, gcc-internal-format -msgid "expected string literal" -msgstr "_Pragma duu una cadena literal entre parntesis" - -#: c-parser.c:3107 -#, fuzzy, gcc-internal-format -msgid "%HISO C forbids empty initializer braces" -msgstr "ISO C prohibeix les claus de iniciador buides" - -#. Use the colon as the error location. -#: c-parser.c:3154 -#, fuzzy, gcc-internal-format -msgid "%Hobsolete use of designated initializer with %<:%>" -msgstr "s obsolet de l'iniciador designat amb \":\"" - -#: c-parser.c:3285 -#, fuzzy, gcc-internal-format -msgid "%HISO C forbids specifying range of elements to initialize" -msgstr "ISO C prohibeix l'especificaci de lmits d'elements a iniciar" - -#: c-parser.c:3298 -#, fuzzy, gcc-internal-format -msgid "%HISO C90 forbids specifying subobject to initialize" -msgstr "ISO C90 prohibeix l'especificaci de subobject a iniciar" - -#: c-parser.c:3307 -#, fuzzy, gcc-internal-format -msgid "%Hobsolete use of designated initializer without %<=%>" -msgstr "s obsolet de l'iniciador designat sense \"=\"" - -#: c-parser.c:3316 -#, gcc-internal-format -msgid "expected %<=%>" -msgstr "" - -#: c-parser.c:3461 -#, fuzzy, gcc-internal-format -msgid "%HISO C forbids label declarations" -msgstr "ISO C prohibeix les declaracions etiquetades" - -#: c-parser.c:3466 c-parser.c:3541 -#, fuzzy, gcc-internal-format -msgid "expected declaration or statement" -msgstr "declaraci repetida de l'autmat \"%s\"" - -#: c-parser.c:3494 c-parser.c:3522 -#, fuzzy, gcc-internal-format -msgid "%HISO C90 forbids mixed declarations and code" -msgstr "ISO C90 prohibeix les declaracions barrejades amb codi" - -#: c-parser.c:3555 -#, fuzzy, gcc-internal-format -msgid "%Hlabel at end of compound statement" -msgstr "etiqueta al final de la declaraci composta" - -#: c-parser.c:3598 -#, gcc-internal-format -msgid "expected %<:%> or %<...%>" -msgstr "" - -#: c-parser.c:3779 -#, 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:3841 -#, fuzzy, gcc-internal-format -msgid "expected statement" -msgstr "operand inesperat" - -#: c-parser.c:3851 -#, gcc-internal-format -msgid "%Ha label can only be part of a statement and a declaration is not a statement" -msgstr "" - -#: c-parser.c:4036 -#, fuzzy, gcc-internal-format -msgid "%Hsuggest braces around empty body in % statement" -msgstr "%Hcos buit en una declaraci if" - -#: c-parser.c:4192 -#, fuzzy, gcc-internal-format -msgid "%H%E qualifier ignored on asm" -msgstr "qualificador %s ignorat en asm" - -#: c-parser.c:4473 -#, fuzzy, gcc-internal-format -msgid "%HISO C forbids omitting the middle term of a ?: expression" -msgstr "ISO C prohibeix l'omissi del terme mig d'una expressi ?:" - -#: c-parser.c:4863 -#, fuzzy, gcc-internal-format -msgid "%Htraditional C rejects the unary plus operator" -msgstr "C tradicional rebutja l'operador unari mes" - -#. C99 6.7.5.2p4 -#: c-parser.c:4974 -#, fuzzy, gcc-internal-format -msgid "%H%<[*]%> not allowed in other than a declaration" -msgstr "no es permet l'espai de noms \"%D\" en la declaraci d's" - -#: c-parser.c:4988 -#, fuzzy, gcc-internal-format -msgid "%H% applied to a bit-field" -msgstr "sizeof aplicat a un camp de bits" - -#: c-parser.c:5132 c-parser.c:5476 c-parser.c:5498 -#, fuzzy, gcc-internal-format -msgid "expected expression" -msgstr "expressi d'adrea inesperada" - -#: c-parser.c:5159 -#, fuzzy, gcc-internal-format -msgid "%Hbraced-group within expression allowed only inside a function" -msgstr "un grup de claus dintre d'una expressi noms es permet dintre d'una funci" - -#: c-parser.c:5173 -#, fuzzy, gcc-internal-format -msgid "%HISO C forbids braced-groups within expressions" -msgstr "ISO C prohibeix braced-groups dintre d'expressions" - -#: c-parser.c:5358 -#, fuzzy, gcc-internal-format -msgid "%Hfirst argument to %<__builtin_choose_expr%> not a constant" -msgstr "el primer argument per a __builtin_choose_expr no s una constant" - -#: c-parser.c:5527 -#, gcc-internal-format -msgid "%Hcompound literal has variable size" -msgstr "" - -#: c-parser.c:5535 -#, fuzzy, gcc-internal-format -msgid "%HISO C90 forbids compound literals" -msgstr "ISO C90 prohibeix els compound literals" - -#: c-parser.c:6053 -#, fuzzy, gcc-internal-format -msgid "%Hextra semicolon in method definition specified" -msgstr "es va especificar un punt i coma extra en un struct o union" - -#: c-parser.c:6600 cp/parser.c:20436 -#, gcc-internal-format -msgid "%<#pragma omp barrier%> may only be used in compound statements" -msgstr "" - -#: c-parser.c:6611 cp/parser.c:20451 -#, gcc-internal-format -msgid "%<#pragma omp flush%> may only be used in compound statements" -msgstr "" - -#: c-parser.c:6623 -#, gcc-internal-format -msgid "%H%<#pragma omp section%> may only be used in %<#pragma omp sections%> construct" -msgstr "" - -#: c-parser.c:6630 cp/parser.c:20426 -#, gcc-internal-format -msgid "%<#pragma GCC pch_preprocess%> must be first" -msgstr "" - -#: c-parser.c:6781 cp/parser.c:19277 -#, fuzzy, gcc-internal-format -msgid "too many %qs clauses" -msgstr "massa fitxers d'entrada" - -#: c-parser.c:6906 -#, gcc-internal-format -msgid "expected % or %" -msgstr "" - -#: c-parser.c:6949 -#, gcc-internal-format -msgid "expected %<(%>" -msgstr "" - -#: c-parser.c:6993 c-parser.c:7170 -#, fuzzy, gcc-internal-format -msgid "expected integer expression" -msgstr "expressi d'adrea inesperada" - -#: c-parser.c:7002 -#, gcc-internal-format -msgid "%H% value must be positive" -msgstr "" - -#: c-parser.c:7082 -#, gcc-internal-format -msgid "expected %<+%>, %<*%>, %<-%>, %<&%>, %<^%>, %<|%>, %<&&%>, or %<||%>" -msgstr "" - -#: c-parser.c:7165 -#, gcc-internal-format -msgid "%Hschedule % does not take a % parameter" -msgstr "" - -#: c-parser.c:7183 -#, fuzzy, gcc-internal-format -msgid "invalid schedule kind" -msgstr "rotaci de insn no vlida" - -#: c-parser.c:7269 -#, gcc-internal-format -msgid "expected %<#pragma omp%> clause" -msgstr "" - -#: c-parser.c:7278 -#, fuzzy, gcc-internal-format -msgid "%H%qs is not valid for %qs" -msgstr "%s: no per a %s" - -#: c-parser.c:7378 -#, fuzzy, gcc-internal-format -msgid "invalid operator for %<#pragma omp atomic%>" -msgstr "operand no vlid per al modificador \"p\"" - -#: c-parser.c:7429 c-parser.c:7449 -#, gcc-internal-format -msgid "expected %<(%> or end of line" -msgstr "" - -#: c-parser.c:7467 -#, fuzzy, gcc-internal-format -msgid "for statement expected" -msgstr "%s s ms curt de l'esperat" - -#: c-parser.c:7540 cp/semantics.c:3826 cp/semantics.c:3870 -#, fuzzy, gcc-internal-format -msgid "expected iteration declaration or initialization" -msgstr "declaraci repetida de l'autmat \"%s\"" - -#: c-parser.c:7666 -#, gcc-internal-format -msgid "%Hexpected %<#pragma omp section%> or %<}%>" -msgstr "" - -#: c-parser.c:7899 cp/semantics.c:3718 -#, gcc-internal-format -msgid "%qE declared % after first use" -msgstr "" - -#: c-parser.c:7901 cp/semantics.c:3720 -#, gcc-internal-format -msgid "automatic variable %qE cannot be %" -msgstr "" - -#: c-parser.c:7903 cp/semantics.c:3722 -#, fuzzy, gcc-internal-format -msgid "% %qE has incomplete type" -msgstr "%Jel parmetre \"%D\" t un tipus incomplet" - -#: c-pch.c:132 -#, fuzzy, gcc-internal-format -msgid "can%'t create precompiled header %s: %m" -msgstr "no es pot obtenir el directori actual" - -#: c-pch.c:153 -#, fuzzy, gcc-internal-format -msgid "can%'t write to %s: %m" -msgstr "no es pot escriure a %s: %m" - -#: c-pch.c:159 -#, fuzzy, gcc-internal-format -msgid "%qs is not a valid output file" -msgstr "\"%s\" no s un nom de fitxer de sortida vlid" - -#: c-pch.c:188 c-pch.c:203 c-pch.c:217 -#, fuzzy, gcc-internal-format -msgid "can%'t write %s: %m" -msgstr "no es pot escriure %s: %m" - -#: c-pch.c:193 c-pch.c:210 -#, fuzzy, gcc-internal-format -msgid "can%'t seek in %s: %m" -msgstr "no es pot cercar dintre %s: %m" - -#: c-pch.c:201 c-pch.c:243 c-pch.c:283 c-pch.c:334 -#, fuzzy, gcc-internal-format -msgid "can%'t read %s: %m" -msgstr "no es pot llegir %s: %m" - -#: c-pch.c:466 -#, gcc-internal-format -msgid "pch_preprocess pragma should only be used with -fpreprocessed" -msgstr "" - -#: c-pch.c:467 -#, fuzzy, gcc-internal-format -msgid "use #include instead" -msgstr "#include niat amb massa profunditat" - -#: c-pch.c:473 -#, fuzzy, gcc-internal-format -msgid "%s: couldn%'t open PCH file: %m" -msgstr "no es pot llegir el fitxer PCH: %m" - -#: c-pch.c:478 -#, gcc-internal-format -msgid "use -Winvalid-pch for more information" -msgstr "" - -#: c-pch.c:479 -#, gcc-internal-format -msgid "%s: PCH file was invalid" -msgstr "" - -#: c-pragma.c:102 -#, fuzzy, gcc-internal-format -msgid "#pragma pack (pop) encountered without matching #pragma pack (push)" -msgstr "es va trobar un #pragma pack (pop) sense un #pragma pack (push, ) coincident" - -#: c-pragma.c:115 -#, fuzzy, gcc-internal-format -msgid "#pragma pack(pop, %s) encountered without matching #pragma pack(push, %s)" -msgstr "es va trobar un #pragma pack (pop, %s) sense un #pragma pack (push, %s, ) coincident" - -#: c-pragma.c:129 -#, gcc-internal-format -msgid "#pragma pack(push[, id], ) is not supported on this target" -msgstr "no es dna suport a #pragma pack(push[, id], ) en aquest objectiu" - -#: c-pragma.c:131 -#, gcc-internal-format -msgid "#pragma pack(pop[, id], ) is not supported on this target" -msgstr "no es dna suport a #pragma pack(pop[, id], ) en aquest objectiu" - -#: c-pragma.c:152 -#, fuzzy, gcc-internal-format -msgid "missing %<(%> after %<#pragma pack%> - ignored" -msgstr "\"(\" faltant desprs de \"#pragma pack\" - ignorat" - -#: c-pragma.c:163 c-pragma.c:195 -#, fuzzy, gcc-internal-format -msgid "invalid constant in %<#pragma pack%> - ignored" -msgstr "acci \"%s\" desconeguda per a \"#pragma pack\" - ignorat" - -#: c-pragma.c:167 c-pragma.c:209 -#, fuzzy, gcc-internal-format -msgid "malformed %<#pragma pack%> - ignored" -msgstr "\"#pragma pack\" malformat - ignorat" - -#: c-pragma.c:172 -#, fuzzy, gcc-internal-format -msgid "malformed %<#pragma pack(push[, id][, ])%> - ignored" -msgstr "\"#pragma pack(push[, id], )\" malformat - ignorat" - -#: c-pragma.c:174 -#, fuzzy, gcc-internal-format -msgid "malformed %<#pragma pack(pop[, id])%> - ignored" -msgstr "\"#pragma pack(pop[, id])\" malformat - ignorat" - -#: c-pragma.c:183 -#, fuzzy, gcc-internal-format -msgid "unknown action %qs for %<#pragma pack%> - ignored" -msgstr "acci \"%s\" desconeguda per a \"#pragma pack\" - ignorat" - -#: c-pragma.c:212 -#, fuzzy, gcc-internal-format -msgid "junk at end of %<#pragma pack%>" -msgstr "escombraries al final de \"#pragma pack\"" - -#: c-pragma.c:215 -#, gcc-internal-format -msgid "#pragma pack has no effect with -fpack-struct - ignored" -msgstr "" - -#: c-pragma.c:235 -#, gcc-internal-format -msgid "alignment must be a small power of two, not %d" -msgstr "l'alineaci ha de ser una potncia petita de dos, no %d" - -#: c-pragma.c:290 -#, fuzzy, gcc-internal-format -msgid "missing %<(%> after %<#pragma push_macro%> - ignored" -msgstr "\"(\" faltant desprs de \"#pragma pack\" - ignorat" - -#: c-pragma.c:298 -#, fuzzy, gcc-internal-format -msgid "invalid constant in %<#pragma push_macro%> - ignored" -msgstr "nom de secci faltant en \"#pragma %s\" - ignorat" - -#: c-pragma.c:301 -#, fuzzy, gcc-internal-format -msgid "missing %<)%> after %<#pragma push_macro%> - ignored" -msgstr "\"(\" faltant desprs de \"#pragma pack\" - ignorat" - -#: c-pragma.c:304 -#, fuzzy, gcc-internal-format -msgid "junk at end of %<#pragma push_macro%>" -msgstr "escombraries al final de #pragma map" - -#: c-pragma.c:347 -#, fuzzy, gcc-internal-format -msgid "missing %<(%> after %<#pragma pop_macro%> - ignored" -msgstr "\"(\" faltant desprs de \"#pragma pack\" - ignorat" - -#: c-pragma.c:355 -#, fuzzy, gcc-internal-format -msgid "invalid constant in %<#pragma pop_macro%> - ignored" -msgstr "nom de secci faltant en \"#pragma %s\" - ignorat" - -#: c-pragma.c:358 -#, fuzzy, gcc-internal-format -msgid "missing %<)%> after %<#pragma pop_macro%> - ignored" -msgstr "\"(\" faltant desprs de \"#pragma pack\" - ignorat" - -#: c-pragma.c:361 -#, fuzzy, gcc-internal-format -msgid "junk at end of %<#pragma pop_macro%>" -msgstr "escombraries al final de #pragma map" - -#: c-pragma.c:406 -#, fuzzy, gcc-internal-format -msgid "applying #pragma weak %q+D after first use results in unspecified behavior" -msgstr "%Jl'aplicaci del #pragma weak \"%s\" desprs del primer s resulta en conducta no especificada" - -#: c-pragma.c:480 c-pragma.c:485 -#, gcc-internal-format -msgid "malformed #pragma weak, ignored" -msgstr "#pragma weak malformat, ignorat" - -#: c-pragma.c:489 -#, fuzzy, gcc-internal-format -msgid "junk at end of %<#pragma weak%>" -msgstr "escombraries al final de \"#pragma weak\"" - -#: c-pragma.c:557 c-pragma.c:559 -#, gcc-internal-format -msgid "malformed #pragma redefine_extname, ignored" -msgstr "#pragma redefine_extname malformat, ignorat" - -#: c-pragma.c:562 -#, fuzzy, gcc-internal-format -msgid "junk at end of %<#pragma redefine_extname%>" -msgstr "escombraries al final de #pragma redefine_extname" - -#: c-pragma.c:568 -#, fuzzy, gcc-internal-format -msgid "#pragma redefine_extname not supported on this target" -msgstr "no es dna suport a _builtin_eh_return en aquest objectiu" - -#: c-pragma.c:585 c-pragma.c:672 -#, fuzzy, gcc-internal-format -msgid "#pragma redefine_extname ignored due to conflict with previous rename" -msgstr "#pragma redefine_extname t conflictes amb la declaraci" - -#: c-pragma.c:608 -#, fuzzy, gcc-internal-format -msgid "#pragma redefine_extname ignored due to conflict with previous #pragma redefine_extname" -msgstr "#pragma redefine_extname t conflictes amb la declaraci" - -#: c-pragma.c:627 -#, gcc-internal-format -msgid "malformed #pragma extern_prefix, ignored" -msgstr "#pragma extern_prefix malformat, ignorat" - -#: c-pragma.c:630 -#, fuzzy, gcc-internal-format -msgid "junk at end of %<#pragma extern_prefix%>" -msgstr "escombraries al final de #pragma extern_prefix" - -#: c-pragma.c:637 -#, fuzzy, gcc-internal-format -msgid "#pragma extern_prefix not supported on this target" -msgstr "No es dna suport a anlisi de perfil en aquest objectiu." - -#: c-pragma.c:663 -#, fuzzy, gcc-internal-format -msgid "asm declaration ignored due to conflict with previous rename" -msgstr "la declaraci asm causa conflictes amb el rename previ" - -#: c-pragma.c:694 -#, fuzzy, gcc-internal-format -msgid "#pragma redefine_extname ignored due to conflict with __asm__ declaration" -msgstr "#pragma redefine_extname t conflictes amb la declaraci" - -#: c-pragma.c:756 -#, gcc-internal-format -msgid "#pragma GCC visibility push() must specify default, internal, hidden or protected" -msgstr "" - -#: c-pragma.c:791 -#, gcc-internal-format -msgid "#pragma GCC visibility must be followed by push or pop" -msgstr "" - -#: c-pragma.c:797 -#, gcc-internal-format -msgid "no matching push for %<#pragma GCC visibility pop%>" -msgstr "" - -#: c-pragma.c:804 c-pragma.c:811 -#, fuzzy, gcc-internal-format -msgid "missing %<(%> after %<#pragma GCC visibility push%> - ignored" -msgstr "\"(\" faltant desprs de \"#pragma %s\" - ignorat" - -#: c-pragma.c:807 -#, fuzzy, gcc-internal-format -msgid "malformed #pragma GCC visibility push" -msgstr "secci #pragma builtin malformada" - -#: c-pragma.c:815 -#, fuzzy, gcc-internal-format -msgid "junk at end of %<#pragma GCC visibility%>" -msgstr "escombraries al final de #pragma %s" - -#: c-pragma.c:831 -#, fuzzy, gcc-internal-format -msgid "#pragma GCC diagnostic not allowed inside functions" -msgstr "ISO C no permet \";\" extra fora d'una funci" - -#: c-pragma.c:837 -#, gcc-internal-format -msgid "missing [error|warning|ignored] after %<#pragma GCC diagnostic%>" -msgstr "" - -#: c-pragma.c:846 -#, gcc-internal-format -msgid "expected [error|warning|ignored] after %<#pragma GCC diagnostic%>" -msgstr "" - -#: c-pragma.c:850 -#, fuzzy, gcc-internal-format -msgid "missing option after %<#pragma GCC diagnostic%> kind" -msgstr "\"(\" faltant desprs de \"#pragma %s\" - ignorat" - -#: c-pragma.c:864 -#, fuzzy, gcc-internal-format -msgid "unknown option after %<#pragma GCC diagnostic%> kind" -msgstr "acci \"%s\" desconeguda per a \"#pragma pack\" - ignorat" - -#: c-typeck.c:174 -#, fuzzy, gcc-internal-format -msgid "%qD has an incomplete type" -msgstr "\"%s\" t un tipus incompleta" - -#: c-typeck.c:195 cp/call.c:2785 -#, gcc-internal-format -msgid "invalid use of void expression" -msgstr "s no vlid de l'expressi void" - -#: c-typeck.c:203 -#, gcc-internal-format -msgid "invalid use of flexible array member" -msgstr "s no vlid de membres de matriu flexible" - -#: c-typeck.c:209 -#, gcc-internal-format -msgid "invalid use of array with unspecified bounds" -msgstr "s no vlid de matrius amb lmits sense especificar" - -#: c-typeck.c:217 -#, fuzzy, gcc-internal-format -msgid "invalid use of undefined type %<%s %E%>" -msgstr "s no vlid del tipus indefinit \"%s %s\"" - -#. If this type has a typedef-name, the TYPE_NAME is a TYPE_DECL. -#: c-typeck.c:221 -#, fuzzy, gcc-internal-format -msgid "invalid use of incomplete typedef %qD" -msgstr "s no vlid del typedef incomplet \"%s\"" - -#: c-typeck.c:474 c-typeck.c:499 -#, gcc-internal-format -msgid "function types not truly compatible in ISO C" -msgstr "els tipus de funci no sn totalment compatibles en ISO C" - -#: c-typeck.c:621 -#, gcc-internal-format -msgid "can%'t mix operands of decimal float and vector types" -msgstr "" - -#: c-typeck.c:626 -#, gcc-internal-format -msgid "can%'t mix operands of decimal float and complex types" -msgstr "" - -#: c-typeck.c:631 -#, gcc-internal-format -msgid "can%'t mix operands of decimal float and other float types" -msgstr "" - -#: c-typeck.c:1037 -#, gcc-internal-format -msgid "types are not quite compatible" -msgstr "els tipus no sn totalment compatibles" - -#: c-typeck.c:1356 -#, fuzzy, gcc-internal-format -msgid "function return types not compatible due to %" -msgstr "el tipus de retorn d'una funci no pot ser una funci" - -#: c-typeck.c:1515 c-typeck.c:2853 -#, gcc-internal-format -msgid "arithmetic on pointer to an incomplete type" -msgstr "aritmtica en punter a un tipus incomplet" - -#: c-typeck.c:1912 -#, fuzzy, gcc-internal-format -msgid "%qT has no member named %qE" -msgstr "\"%D\" no t un membre cridat \"%E\"" - -#: c-typeck.c:1953 -#, fuzzy, gcc-internal-format -msgid "request for member %qE in something not a structure or union" -msgstr "petici del membre \"%s\" en alguna cosa que no s estructura o uni" - -#: c-typeck.c:1997 -#, gcc-internal-format -msgid "dereferencing pointer to incomplete type" -msgstr "punter derefernciat a tipus de dada incompleta" - -#: c-typeck.c:2001 -#, fuzzy, gcc-internal-format -msgid "dereferencing % pointer" -msgstr "derefernciant el punter \"void *\"" - -#: c-typeck.c:2018 -#, fuzzy, gcc-internal-format -msgid "invalid type argument of %qs (have %qT)" -msgstr "argument de tipus no vlid de \"%s\"" - -#: c-typeck.c:2046 cp/typeck.c:2524 -#, gcc-internal-format -msgid "subscripted value is neither array nor pointer" -msgstr "el valor indicat pel subindici no s ni matriu ni punter" - -#: c-typeck.c:2057 cp/typeck.c:2443 cp/typeck.c:2529 -#, gcc-internal-format -msgid "array subscript is not an integer" -msgstr "el subindici de la matriu no s un enter" - -#: c-typeck.c:2063 -#, fuzzy, gcc-internal-format -msgid "subscripted value is pointer to function" -msgstr "passant l'argument del punter a la funci" - -#: c-typeck.c:2110 -#, fuzzy, gcc-internal-format -msgid "ISO C forbids subscripting % array" -msgstr "ISO C prohibeix el subindici d'una matriu \"register\"" - -#: c-typeck.c:2112 -#, gcc-internal-format -msgid "ISO C90 forbids subscripting non-lvalue array" -msgstr "ISO C90 prohibeix el subindici d'una matriu non-lvalue" - -#: c-typeck.c:2228 -#, gcc-internal-format -msgid "%H%qD is static but used in inline function %qD which is not static" -msgstr "" - -#: c-typeck.c:2376 -#, fuzzy, gcc-internal-format -msgid "called object %qE is not a function" -msgstr "l'objecte cridat no s una funci" - -#. 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:2404 -#, gcc-internal-format -msgid "function called through a non-compatible type" -msgstr "" - -#: c-typeck.c:2515 -#, fuzzy, gcc-internal-format -msgid "too many arguments to function %qE" -msgstr "massa arguments per a la funci" - -#: c-typeck.c:2536 -#, gcc-internal-format -msgid "type of formal parameter %d is incomplete" -msgstr "el tipus de dada del parmetre formal %d est incomplet" - -#: c-typeck.c:2549 -#, fuzzy, gcc-internal-format -msgid "passing argument %d of %qE as integer rather than floating due to prototype" -msgstr "%s com enter en lloc de coma flotant a causa del prototip" - -#: c-typeck.c:2554 -#, fuzzy, gcc-internal-format -msgid "passing argument %d of %qE as integer rather than complex due to prototype" -msgstr "%s com enter en lloc de complex a causa del prototip" - -#: c-typeck.c:2559 -#, fuzzy, gcc-internal-format -msgid "passing argument %d of %qE as complex rather than floating due to prototype" -msgstr "%s com complex en lloc de coma flotant a causa del prototip" - -#: c-typeck.c:2564 -#, fuzzy, gcc-internal-format -msgid "passing argument %d of %qE as floating rather than integer due to prototype" -msgstr "%s com coma flotant en lloc d'enter a causa del prototip" - -#: c-typeck.c:2569 -#, fuzzy, gcc-internal-format -msgid "passing argument %d of %qE as complex rather than integer due to prototype" -msgstr "%s com complex en lloc d'enter a causa del prototip" - -#: c-typeck.c:2574 -#, fuzzy, gcc-internal-format -msgid "passing argument %d of %qE as floating rather than complex due to prototype" -msgstr "%s com coma flotant en lloc de complex a causa del prototip" - -#: c-typeck.c:2587 -#, fuzzy, gcc-internal-format -msgid "passing argument %d of %qE as % rather than % due to prototype" -msgstr "%s com \"float\" en lloc de \"double\" a causa del prototip" - -#: c-typeck.c:2612 -#, fuzzy, gcc-internal-format -msgid "passing argument %d of %qE as %qT rather than %qT due to prototype" -msgstr "%s com enter en lloc de complex a causa del prototip" - -#: c-typeck.c:2633 -#, fuzzy, gcc-internal-format -msgid "passing argument %d of %qE with different width due to prototype" -msgstr "%s amb amplria diferent a causa del prototip" - -#: c-typeck.c:2656 -#, fuzzy, gcc-internal-format -msgid "passing argument %d of %qE as unsigned due to prototype" -msgstr "%s com unsigned a causa del prototip" - -#: c-typeck.c:2660 -#, fuzzy, gcc-internal-format -msgid "passing argument %d of %qE as signed due to prototype" -msgstr "%s com signed a causa del prototip" - -#: c-typeck.c:2766 c-typeck.c:2770 -#, fuzzy, gcc-internal-format -msgid "comparison with string literal results in unspecified behavior" -msgstr "la declaraci feble de \"%s\" desprs del primer s resulta en una conducta no especificada" - -#: c-typeck.c:2795 -#, fuzzy, gcc-internal-format -msgid "pointer of type % used in subtraction" -msgstr "es va usar un punter de tipus \"void *\" en la substracci" - -#: c-typeck.c:2797 -#, gcc-internal-format -msgid "pointer to a function used in subtraction" -msgstr "es va usar un punter a una funci en la substracci" - -#: c-typeck.c:2908 -#, gcc-internal-format -msgid "wrong type argument to unary plus" -msgstr "argument de tipus erroni per a l'increment unari" - -#: c-typeck.c:2921 -#, gcc-internal-format -msgid "wrong type argument to unary minus" -msgstr "argument de tipus erroni per al decrement unari" - -#: c-typeck.c:2941 -#, fuzzy, gcc-internal-format -msgid "ISO C does not support %<~%> for complex conjugation" -msgstr "ISO C no t suport de \"~\" per a conjugacions complexes" - -#: c-typeck.c:2947 -#, gcc-internal-format -msgid "wrong type argument to bit-complement" -msgstr "argument de tipus erroni per a complement de bits" - -#: c-typeck.c:2955 -#, gcc-internal-format -msgid "wrong type argument to abs" -msgstr "argument de tipus erroni per a abs" - -#: c-typeck.c:2967 -#, gcc-internal-format -msgid "wrong type argument to conjugation" -msgstr "argument de tipus erroni per a la conjugaci" - -#: c-typeck.c:2979 -#, gcc-internal-format -msgid "wrong type argument to unary exclamation mark" -msgstr "argument de tipus erroni per al signe d'exclamaci unari" - -#: c-typeck.c:3013 -#, fuzzy, gcc-internal-format -msgid "ISO C does not support %<++%> and %<--%> on complex types" -msgstr "ISO C no t suport per a \"++\" i \"--\" en tipus complexos" - -#: c-typeck.c:3032 c-typeck.c:3064 -#, gcc-internal-format -msgid "wrong type argument to increment" -msgstr "argument de tipus erroni per a l'increment" - -#: c-typeck.c:3034 c-typeck.c:3066 -#, gcc-internal-format -msgid "wrong type argument to decrement" -msgstr "argument de tipus erroni pel decrement" - -#: c-typeck.c:3055 -#, gcc-internal-format -msgid "increment of pointer to unknown structure" -msgstr "increment de punter a estructura desconeguda" - -#: c-typeck.c:3057 -#, gcc-internal-format -msgid "decrement of pointer to unknown structure" -msgstr "decrement de punter a estructura desconeguda" - -#: c-typeck.c:3258 -#, fuzzy, gcc-internal-format -msgid "assignment of read-only member %qD" -msgstr "%s del membre de noms lectura \"%s\"" - -#: c-typeck.c:3259 -#, fuzzy, gcc-internal-format -msgid "increment of read-only member %qD" -msgstr "%s del membre de noms lectura \"%s\"" - -#: c-typeck.c:3260 -#, fuzzy, gcc-internal-format -msgid "decrement of read-only member %qD" -msgstr "%s del membre de noms lectura \"%s\"" - -#: c-typeck.c:3261 -#, gcc-internal-format -msgid "read-only member %qD used as % output" -msgstr "" - -#: c-typeck.c:3265 -#, fuzzy, gcc-internal-format -msgid "assignment of read-only variable %qD" -msgstr "%s de la variable de noms lectura \"%s\"" - -#: c-typeck.c:3266 -#, fuzzy, gcc-internal-format -msgid "increment of read-only variable %qD" -msgstr "%s de la variable de noms lectura \"%s\"" - -#: c-typeck.c:3267 -#, fuzzy, gcc-internal-format -msgid "decrement of read-only variable %qD" -msgstr "%s de la variable de noms lectura \"%s\"" - -#: c-typeck.c:3268 -#, gcc-internal-format -msgid "read-only variable %qD used as % output" -msgstr "" - -#: c-typeck.c:3271 -#, fuzzy, gcc-internal-format -msgid "assignment of read-only location %qE" -msgstr "%s de la ubicaci de noms lectura" - -#: c-typeck.c:3272 -#, fuzzy, gcc-internal-format -msgid "increment of read-only location %qE" -msgstr "%s de la ubicaci de noms lectura" - -#: c-typeck.c:3273 -#, fuzzy, gcc-internal-format -msgid "decrement of read-only location %qE" -msgstr "%s de la ubicaci de noms lectura" - -#: c-typeck.c:3274 -#, gcc-internal-format -msgid "read-only location %qE used as % output" -msgstr "" - -#: c-typeck.c:3310 -#, fuzzy, gcc-internal-format -msgid "cannot take address of bit-field %qD" -msgstr "no es pot adquirir l'adrea del camp de bits \"%s\"" - -#: c-typeck.c:3338 -#, fuzzy, gcc-internal-format -msgid "global register variable %qD used in nested function" -msgstr "es va usar la variable de registre global \"%s\" en funcions niades" - -#: c-typeck.c:3341 -#, fuzzy, gcc-internal-format -msgid "register variable %qD used in nested function" -msgstr "es va usar la va variable \"%s\" en funcions niades" - -#: c-typeck.c:3346 -#, fuzzy, gcc-internal-format -msgid "address of global register variable %qD requested" -msgstr "es va sollicitar l'adrea de la variable de registre global \"%s\"" - -#: c-typeck.c:3348 -#, fuzzy, gcc-internal-format -msgid "address of register variable %qD requested" -msgstr "es va sollicitar l'adrea de la variable register \"%s\"" - -#: c-typeck.c:3394 -#, fuzzy, gcc-internal-format -msgid "non-lvalue array in conditional expression" -msgstr "els tipus de dades no coincideixen en l'expressi condicional" - -#: c-typeck.c:3442 -#, gcc-internal-format -msgid "signed and unsigned type in conditional expression" -msgstr "tipus signed i unsigned en l'expressi condicional" - -#: c-typeck.c:3449 -#, gcc-internal-format -msgid "ISO C forbids conditional expr with only one void side" -msgstr "ISO C prohibeix una expressi condicional amb noms un costat void" - -#: c-typeck.c:3463 c-typeck.c:3471 -#, fuzzy, gcc-internal-format -msgid "ISO C forbids conditional expr between % and function pointer" -msgstr "ISO C prohibeix expressions condicionals entre \"void *\" i punters de funcions" - -#: c-typeck.c:3478 -#, gcc-internal-format -msgid "pointer type mismatch in conditional expression" -msgstr "els tipus de dades punters no coincideixen en l'expressi condicional" - -#: c-typeck.c:3485 c-typeck.c:3495 -#, gcc-internal-format -msgid "pointer/integer type mismatch in conditional expression" -msgstr "els tipus de dades punters/enters no coincideixen en l'expressi condicional" - -#: c-typeck.c:3509 tree-cfg.c:3783 -#, gcc-internal-format -msgid "type mismatch in conditional expression" -msgstr "els tipus de dades no coincideixen en l'expressi condicional" - -#: c-typeck.c:3552 -#, gcc-internal-format -msgid "left-hand operand of comma expression has no effect" -msgstr "l'operador del costat esquerre de l'expressi coma no t efecte" - -#: c-typeck.c:3589 -#, gcc-internal-format -msgid "cast specifies array type" -msgstr "la conversi especifica el tipus matriu" - -#: c-typeck.c:3595 -#, gcc-internal-format -msgid "cast specifies function type" -msgstr "la conversi especifica el tipus funci" - -#: c-typeck.c:3612 -#, gcc-internal-format -msgid "ISO C forbids casting nonscalar to the same type" -msgstr "ISO C prohibeix la conversi d'un no escalar al mateix tipus" - -#: c-typeck.c:3629 -#, gcc-internal-format -msgid "ISO C forbids casts to union type" -msgstr "ISO C prohibeix la conversi al tipus union" - -#: c-typeck.c:3637 -#, gcc-internal-format -msgid "cast to union type from type not present in union" -msgstr "conversi a tipus union des d'un tipus no presenti en union" - -#: c-typeck.c:3683 -#, gcc-internal-format -msgid "cast adds new qualifiers to function type" -msgstr "la conversi afegeix nous qualificadors del tipus de la funci" - -#. There are qualifiers present in IN_OTYPE that are not -#. present in IN_TYPE. -#: c-typeck.c:3688 -#, gcc-internal-format -msgid "cast discards qualifiers from pointer target type" -msgstr "la conversi descarta els qualificadors del tipus de la destinaci del punter" - -#: c-typeck.c:3704 -#, gcc-internal-format -msgid "cast increases required alignment of target type" -msgstr "la conversi incrementa l'alineaci requerida del tipus de la destinaci" - -#: c-typeck.c:3715 -#, gcc-internal-format -msgid "cast from pointer to integer of different size" -msgstr "conversi de punter a enter de grandria diferent" - -#: c-typeck.c:3719 -#, gcc-internal-format -msgid "cast from function call of type %qT to non-matching type %qT" -msgstr "" - -#: c-typeck.c:3727 -#, gcc-internal-format -msgid "cast to pointer from integer of different size" -msgstr "conversi a punter des d'un enter de grandria diferent" - -#: c-typeck.c:3741 -#, gcc-internal-format -msgid "ISO C forbids conversion of function pointer to object pointer type" -msgstr "ISO C prohibeix la conversi d'un punter de funci a un tipus punter d'objecte" - -#: c-typeck.c:3749 -#, gcc-internal-format -msgid "ISO C forbids conversion of object pointer to function pointer type" -msgstr "ISO C prohibeix la conversi d'un punter d'objecte a un tipus punter de funci" - -#: c-typeck.c:4026 -#, gcc-internal-format -msgid "cannot pass rvalue to reference parameter" -msgstr "no es pot passar un valor-r a un parmetre de referncia" - -#: c-typeck.c:4139 c-typeck.c:4306 -#, fuzzy, gcc-internal-format -msgid "passing argument %d of %qE makes qualified function pointer from unqualified" -msgstr "%s fa un punter de funci qualificat des d'un no qualificat" - -#: c-typeck.c:4142 c-typeck.c:4309 -#, fuzzy, gcc-internal-format -msgid "assignment makes qualified function pointer from unqualified" -msgstr "%s fa un punter de funci qualificat des d'un no qualificat" - -#: c-typeck.c:4145 c-typeck.c:4311 -#, fuzzy, gcc-internal-format -msgid "initialization makes qualified function pointer from unqualified" -msgstr "%s fa un punter de funci qualificat des d'un no qualificat" - -#: c-typeck.c:4148 c-typeck.c:4313 -#, fuzzy, gcc-internal-format -msgid "return makes qualified function pointer from unqualified" -msgstr "%s fa un punter de funci qualificat des d'un no qualificat" - -#: c-typeck.c:4152 c-typeck.c:4273 -#, fuzzy, gcc-internal-format -msgid "passing argument %d of %qE discards qualifiers from pointer target type" -msgstr "la conversi de \"%T\" a \"%T\" descarta els qualificadors del tipus de la destinaci del punter" - -#: c-typeck.c:4154 c-typeck.c:4275 -#, fuzzy, gcc-internal-format -msgid "assignment discards qualifiers from pointer target type" -msgstr "la conversi descarta els qualificadors del tipus de la destinaci del punter" - -#: c-typeck.c:4156 c-typeck.c:4277 -#, fuzzy, gcc-internal-format -msgid "initialization discards qualifiers from pointer target type" -msgstr "la conversi descarta els qualificadors del tipus de la destinaci del punter" - -#: c-typeck.c:4158 c-typeck.c:4279 -#, fuzzy, gcc-internal-format -msgid "return discards qualifiers from pointer target type" -msgstr "la conversi descarta els qualificadors del tipus de la destinaci del punter" - -#: c-typeck.c:4165 -#, gcc-internal-format -msgid "ISO C prohibits argument conversion to union type" -msgstr "ISO C prohibeix la conversi d'arguments a tipus union" - -#: c-typeck.c:4201 -#, fuzzy, gcc-internal-format -msgid "request for implicit conversion from %qT to %qT not permitted in C++" -msgstr "iconv no dna suport a la conversi de \"%s\" a \"%s\"" - -#: c-typeck.c:4214 -#, fuzzy, gcc-internal-format -msgid "argument %d of %qE might be a candidate for a format attribute" -msgstr "la funci pot ser un candidat possible per a l'atribut de format \"%s\"" - -#: c-typeck.c:4220 -#, fuzzy, gcc-internal-format -msgid "assignment left-hand side might be a candidate for a format attribute" -msgstr "Avisar per funcions que podrien ser candidates per a atributs de format" - -#: c-typeck.c:4225 -#, fuzzy, gcc-internal-format -msgid "initialization left-hand side might be a candidate for a format attribute" -msgstr "la funci pot ser un candidat possible per a l'atribut de format \"%s\"" - -#: c-typeck.c:4230 -#, fuzzy, gcc-internal-format -msgid "return type might be a candidate for a format attribute" -msgstr "la funci pot ser un candidat possible per a l'atribut de format \"%s\"" - -#: c-typeck.c:4253 -#, fuzzy, gcc-internal-format -msgid "ISO C forbids passing argument %d of %qE between function pointer and %" -msgstr "ISO C prohibeix %s entre punters a funci i \"void *\"" - -#: c-typeck.c:4256 -#, fuzzy, gcc-internal-format -msgid "ISO C forbids assignment between function pointer and %" -msgstr "ISO C prohibeix %s entre punters a funci i \"void *\"" - -#: c-typeck.c:4258 -#, fuzzy, gcc-internal-format -msgid "ISO C forbids initialization between function pointer and %" -msgstr "ISO C prohibeix %s entre punters a funci i \"void *\"" - -#: c-typeck.c:4260 -#, fuzzy, gcc-internal-format -msgid "ISO C forbids return between function pointer and %" -msgstr "ISO C prohibeix %s entre punters a funci i \"void *\"" - -#: c-typeck.c:4289 -#, fuzzy, gcc-internal-format -msgid "pointer targets in passing argument %d of %qE differ in signedness" -msgstr "el punter que punta a %s difereix en signe" - -#: c-typeck.c:4291 -#, fuzzy, gcc-internal-format -msgid "pointer targets in assignment differ in signedness" -msgstr "el punter que punta a %s difereix en signe" - -#: c-typeck.c:4293 -#, fuzzy, gcc-internal-format -msgid "pointer targets in initialization differ in signedness" -msgstr "el punter que punta a %s difereix en signe" - -#: c-typeck.c:4295 -#, fuzzy, gcc-internal-format -msgid "pointer targets in return differ in signedness" -msgstr "el punter que punta a %s difereix en signe" - -#: c-typeck.c:4320 -#, fuzzy, gcc-internal-format -msgid "passing argument %d of %qE from incompatible pointer type" -msgstr "%s de tipus de punter incompatible" - -#: c-typeck.c:4322 -#, fuzzy, gcc-internal-format -msgid "assignment from incompatible pointer type" -msgstr "%s de tipus de punter incompatible" - -#: c-typeck.c:4323 -#, fuzzy, gcc-internal-format -msgid "initialization from incompatible pointer type" -msgstr "%s de tipus de punter incompatible" - -#: c-typeck.c:4325 -#, fuzzy, gcc-internal-format -msgid "return from incompatible pointer type" -msgstr "%s de tipus de punter incompatible" - -#: c-typeck.c:4342 -#, fuzzy, gcc-internal-format -msgid "passing argument %d of %qE makes pointer from integer without a cast" -msgstr "%s crea un punter des d'un enter sense una conversi" - -#: c-typeck.c:4344 -#, fuzzy, gcc-internal-format -msgid "assignment makes pointer from integer without a cast" -msgstr "%s crea un punter des d'un enter sense una conversi" - -#: c-typeck.c:4346 -#, fuzzy, gcc-internal-format -msgid "initialization makes pointer from integer without a cast" -msgstr "%s crea un punter des d'un enter sense una conversi" - -#: c-typeck.c:4348 -#, fuzzy, gcc-internal-format -msgid "return makes pointer from integer without a cast" -msgstr "%s crea un punter des d'un enter sense una conversi" - -#: c-typeck.c:4355 -#, fuzzy, gcc-internal-format -msgid "passing argument %d of %qE makes integer from pointer without a cast" -msgstr "%s crea un enter des d'un punter sense una conversi" - -#: c-typeck.c:4357 -#, fuzzy, gcc-internal-format -msgid "assignment makes integer from pointer without a cast" -msgstr "%s crea un enter des d'un punter sense una conversi" - -#: c-typeck.c:4359 -#, fuzzy, gcc-internal-format -msgid "initialization makes integer from pointer without a cast" -msgstr "%s crea un enter des d'un punter sense una conversi" - -#: c-typeck.c:4361 -#, fuzzy, gcc-internal-format -msgid "return makes integer from pointer without a cast" -msgstr "%s crea un enter des d'un punter sense una conversi" - -#: c-typeck.c:4377 -#, fuzzy, gcc-internal-format -msgid "incompatible types in assignment" -msgstr "tipus incompatibles en %s" - -#: c-typeck.c:4380 -#, fuzzy, gcc-internal-format -msgid "incompatible types in initialization" -msgstr "tipus incompatibles en %s" - -#: c-typeck.c:4383 -#, fuzzy, gcc-internal-format -msgid "incompatible types in return" -msgstr "tipus incompatibles en %s" - -#: c-typeck.c:4439 -#, gcc-internal-format -msgid "traditional C rejects automatic aggregate initialization" -msgstr "C tradicional rebutja la iniciaci automtica d'agregats" - -#: c-typeck.c:4610 c-typeck.c:4625 c-typeck.c:4640 -#, fuzzy, gcc-internal-format -msgid "(near initialization for %qs)" -msgstr "(prop de l'assignaci de valors inicials per a \"%s\")" - -#: c-typeck.c:5180 cp/decl.c:4975 -#, gcc-internal-format -msgid "opaque vector types cannot be initialized" -msgstr "" - -#: c-typeck.c:5803 -#, fuzzy, gcc-internal-format -msgid "unknown field %qE specified in initializer" -msgstr "camp \"%s\" desconegut especificat en el valor inicial" - -#: c-typeck.c:6703 -#, gcc-internal-format -msgid "traditional C rejects initialization of unions" -msgstr "C tradicional rebutja els valors inicials d'unions" - -#: c-typeck.c:7011 -#, fuzzy, gcc-internal-format -msgid "jump into statement expression" -msgstr "desbordament en la constant implcita" - -#: c-typeck.c:7017 -#, fuzzy, gcc-internal-format -msgid "jump into scope of identifier with variably modified type" -msgstr "l'argument de patr \"%T\" s un tipus modificat variablement" - -#: c-typeck.c:7054 -#, fuzzy, gcc-internal-format -msgid "ISO C forbids %" -msgstr "ISO C prohibeix \"goto *expr;\"" - -#: c-typeck.c:7069 cp/typeck.c:6592 -#, fuzzy, gcc-internal-format -msgid "function declared % has a % statement" -msgstr "la funci declarada \"noreturn\" t una declaraci \"return\"" - -#: c-typeck.c:7077 -#, fuzzy, gcc-internal-format -msgid "% with no value, in function returning non-void" -msgstr "\"return\" sense valors, en una funci que retorna \"non-void\"" - -#: c-typeck.c:7086 -#, fuzzy, gcc-internal-format -msgid "% with a value, in function returning void" -msgstr "\"return\" amb valor, en una funci que retorna \"void\"" - -#: c-typeck.c:7088 -#, fuzzy, gcc-internal-format -msgid "ISO C forbids % with expression, in function returning void" -msgstr "\"return\" amb valor, en una funci que retorna \"void\"" - -#: c-typeck.c:7145 -#, gcc-internal-format -msgid "function returns address of local variable" -msgstr "la funci retorna l'adrea d'una variable local" - -#: c-typeck.c:7217 cp/semantics.c:949 -#, gcc-internal-format -msgid "switch quantity not an integer" -msgstr "la quantitat del switch no s un enter" - -#: c-typeck.c:7229 -#, fuzzy, gcc-internal-format -msgid "% switch expression not converted to % in ISO C" -msgstr "no es converteix l'expressi de switch \"long\" a \"int\" en ISO C" - -#: c-typeck.c:7269 -#, fuzzy, gcc-internal-format -msgid "case label in statement expression not containing enclosing switch statement" -msgstr "l'etiqueta case no es troba dintre d'una declaraci switch" - -#: c-typeck.c:7272 -#, fuzzy, gcc-internal-format -msgid "% label in statement expression not containing enclosing switch statement" -msgstr "l'etiqueta \"default\" no est dintre d'una declaraci switch" - -#: c-typeck.c:7278 -#, gcc-internal-format -msgid "case label in scope of identifier with variably modified type not containing enclosing switch statement" -msgstr "" - -#: c-typeck.c:7281 -#, gcc-internal-format -msgid "% label in scope of identifier with variably modified type not containing enclosing switch statement" -msgstr "" - -#: c-typeck.c:7285 cp/parser.c:6804 -#, gcc-internal-format -msgid "case label not within a switch statement" -msgstr "l'etiqueta case no es troba dintre d'una declaraci switch" - -#: c-typeck.c:7287 -#, fuzzy, gcc-internal-format -msgid "% label not within a switch statement" -msgstr "l'etiqueta \"default\" no est dintre d'una declaraci switch" - -#: c-typeck.c:7364 -#, fuzzy, gcc-internal-format -msgid "%Hsuggest explicit braces to avoid ambiguous %" -msgstr "%Hsuggereix parntesis explcits per evitar \"else\" ambigu" - -#: c-typeck.c:7475 cp/cp-gimplify.c:97 cp/parser.c:7409 -#, gcc-internal-format -msgid "break statement not within loop or switch" -msgstr "la declaraci break no est dintre d'un cicle o switch" - -#: c-typeck.c:7477 cp/parser.c:7430 -#, gcc-internal-format -msgid "continue statement not within a loop" -msgstr "la declaraci continue no est dintre dintre d'un cicle" - -#: c-typeck.c:7482 cp/parser.c:7420 -#, fuzzy, gcc-internal-format -msgid "break statement used with OpenMP for loop" -msgstr "la declaraci break no est dintre d'un cicle o switch" - -#: c-typeck.c:7505 -#, gcc-internal-format -msgid "%Hstatement with no effect" -msgstr "" - -#: c-typeck.c:7527 -#, gcc-internal-format -msgid "expression statement has incomplete type" -msgstr "la declaraci de l'expressi t tipus de dada incompleta" - -#: c-typeck.c:8082 cp/typeck.c:3259 -#, gcc-internal-format -msgid "right shift count is negative" -msgstr "el valor de desplaament a la dreta s negatiu" - -#: c-typeck.c:8089 cp/typeck.c:3265 -#, gcc-internal-format -msgid "right shift count >= width of type" -msgstr "valor de desplaament a la dreta >= amplria del tipus" - -#: c-typeck.c:8111 cp/typeck.c:3284 -#, gcc-internal-format -msgid "left shift count is negative" -msgstr "el valor de desplaament a l'esquerra s negatiu" - -#: c-typeck.c:8114 cp/typeck.c:3286 -#, gcc-internal-format -msgid "left shift count >= width of type" -msgstr "valor de desplaament a l'esquerra >= amplria del tipus" - -#: c-typeck.c:8132 cp/typeck.c:3324 -#, gcc-internal-format -msgid "comparing floating point with == or != is unsafe" -msgstr "no s segura la comparana de coma flotant amb == o !=" - -#: c-typeck.c:8156 c-typeck.c:8163 -#, fuzzy, gcc-internal-format -msgid "ISO C forbids comparison of % with function pointer" -msgstr "ISO C prohibeix la comparana de \"void *\" amb un punter de funci" - -#: c-typeck.c:8169 c-typeck.c:8227 -#, gcc-internal-format -msgid "comparison of distinct pointer types lacks a cast" -msgstr "la comparana de diferents tipus de punter manca d'una conversi" - -#: c-typeck.c:8178 c-typeck.c:8186 cp/typeck.c:3344 cp/typeck.c:3353 -#, fuzzy, gcc-internal-format -msgid "the address of %qD will never be NULL" -msgstr "l'adrea de \"%D\", sempre ser \"true\"" - -#: c-typeck.c:8193 c-typeck.c:8198 c-typeck.c:8245 c-typeck.c:8250 -#, gcc-internal-format -msgid "comparison between pointer and integer" -msgstr "comparana entre punter i enter" - -#: c-typeck.c:8219 -#, gcc-internal-format -msgid "comparison of complete and incomplete pointers" -msgstr "comparana de punters complets i incomplets" - -#: c-typeck.c:8222 -#, gcc-internal-format -msgid "ISO C forbids ordered comparisons of pointers to functions" -msgstr "ISO C prohibeix la comparana entre punters a funcions" - -#: c-typeck.c:8234 c-typeck.c:8240 -#, gcc-internal-format -msgid "ordered comparison of pointer with integer zero" -msgstr "comparana ordenada de punter amb l'enter zero" - -#: c-typeck.c:8500 -#, gcc-internal-format -msgid "comparison between signed and unsigned" -msgstr "comparana entre signed i unsigned" - -#: c-typeck.c:8546 cp/typeck.c:3830 -#, gcc-internal-format -msgid "comparison of promoted ~unsigned with constant" -msgstr "comparana d'un ~unsigned promogut amb una constant" - -#: c-typeck.c:8554 cp/typeck.c:3838 -#, gcc-internal-format -msgid "comparison of promoted ~unsigned with unsigned" -msgstr "comparana d'un ~unsigned promogut amb unsigned" - -#: c-typeck.c:8612 -#, fuzzy, gcc-internal-format -msgid "used array that cannot be converted to pointer where scalar is required" -msgstr "s'usa un valor de tipus matriu quan es requereix un escalar" - -#: c-typeck.c:8616 -#, fuzzy, gcc-internal-format -msgid "used struct type value where scalar is required" -msgstr "s'usa un valor de tipus struct quan es requereix un escalar" - -#: c-typeck.c:8620 -#, fuzzy, gcc-internal-format -msgid "used union type value where scalar is required" -msgstr "s'usa un valor de tipus union quan es requereix un escalar" - -#: c-typeck.c:8725 cp/semantics.c:3523 -#, fuzzy, gcc-internal-format -msgid "%qE has invalid type for %" -msgstr "tipus de retorn no vlid per a la funci \"%#D\"" - -#: c-typeck.c:8759 cp/semantics.c:3536 -#, fuzzy, gcc-internal-format -msgid "%qE has invalid type for %" -msgstr "tipus de retorn no vlid per a la funci \"%#D\"" - -#: c-typeck.c:8775 cp/semantics.c:3546 -#, gcc-internal-format -msgid "%qE must be % for %" -msgstr "" - -#: c-typeck.c:8784 cp/semantics.c:3351 -#, fuzzy, gcc-internal-format -msgid "%qE is not a variable in clause %qs" -msgstr "\"%s\" no s un nom de fitxer vlid" - -#: c-typeck.c:8791 c-typeck.c:8811 c-typeck.c:8831 cp/semantics.c:3377 -#: cp/semantics.c:3396 -#, gcc-internal-format -msgid "%qE appears more than once in data clauses" -msgstr "" - -#: c-typeck.c:8805 cp/semantics.c:3371 -#, gcc-internal-format -msgid "%qE is not a variable in clause %" -msgstr "" - -#: c-typeck.c:8825 cp/semantics.c:3390 -#, gcc-internal-format -msgid "%qE is not a variable in clause %" -msgstr "" - -#: c-typeck.c:8883 cp/semantics.c:3587 -#, gcc-internal-format -msgid "%qE is predetermined %qs for %qs" -msgstr "" - -#: calls.c:2032 -#, gcc-internal-format -msgid "function call has aggregate value" -msgstr "la crida a la funci t valor agregat" - -#: cfgexpand.c:1884 -#, gcc-internal-format -msgid "not protecting local variables: variable length buffer" -msgstr "" - -#: cfgexpand.c:1887 -#, gcc-internal-format -msgid "not protecting function: no buffer at least %d bytes long" -msgstr "" - -#: cfghooks.c:97 -#, gcc-internal-format -msgid "bb %d on wrong place" -msgstr "bb %d en un lloc equivocat" - -#: cfghooks.c:103 -#, gcc-internal-format -msgid "prev_bb of %d should be %d, not %d" -msgstr "el prev_bb de %d ha de ser %d, no %d" - -#: cfghooks.c:120 -#, gcc-internal-format -msgid "verify_flow_info: Block %i has loop_father, but there are no loops" -msgstr "" - -#: cfghooks.c:126 -#, fuzzy, gcc-internal-format -msgid "verify_flow_info: Block %i lacks loop_father" -msgstr "verify_flow_info: El bloc bsic %d succ edge est corrupte" - -#: cfghooks.c:132 -#, gcc-internal-format -msgid "verify_flow_info: Wrong count of block %i %i" -msgstr "verify_flow_info: Compte erroni del bloc %i %i" - -#: cfghooks.c:138 -#, gcc-internal-format -msgid "verify_flow_info: Wrong frequency of block %i %i" -msgstr "verify_flow_info: Freqncia errnia del bloc %i %i" - -#: cfghooks.c:146 -#, gcc-internal-format -msgid "verify_flow_info: Duplicate edge %i->%i" -msgstr "verify_flow_info: Vora duplicada %i->%i" - -#: cfghooks.c:152 -#, gcc-internal-format -msgid "verify_flow_info: Wrong probability of edge %i->%i %i" -msgstr "verify_flow_info: Probabilitat errnia de la vora %i->%i %i" - -#: cfghooks.c:158 -#, gcc-internal-format -msgid "verify_flow_info: Wrong count of edge %i->%i %i" -msgstr "verify_flow_info: Compte erroni de la vora %i->%i %i" - -#: cfghooks.c:170 -#, gcc-internal-format -msgid "verify_flow_info: Basic block %d succ edge is corrupted" -msgstr "verify_flow_info: El bloc bsic %d succ edge est corrupte" - -#: cfghooks.c:184 cfgrtl.c:1840 -#, fuzzy, gcc-internal-format -msgid "wrong amount of branch edges after unconditional jump %i" -msgstr "Quantitat errnia de vores de ramificaci desprs del salt incondicional %i" - -#: cfghooks.c:192 cfghooks.c:203 -#, gcc-internal-format -msgid "basic block %d pred edge is corrupted" -msgstr "el bloc bsic %d pred edge est corrupte" - -#: cfghooks.c:204 -#, fuzzy, gcc-internal-format -msgid "its dest_idx should be %d, not %d" -msgstr "el prev_bb de %d ha de ser %d, no %d" - -#: cfghooks.c:233 -#, gcc-internal-format -msgid "basic block %i edge lists are corrupted" -msgstr "les llistes de vora del bloc bsic %i estan corruptes" - -#: cfghooks.c:246 -#, gcc-internal-format -msgid "verify_flow_info failed" -msgstr "verify_flow_info fallat" - -#: cfghooks.c:307 -#, fuzzy, gcc-internal-format -msgid "%s does not support redirect_edge_and_branch" -msgstr "%s no t suport per a l'operand amb format de nombre %%n$" - -#: cfghooks.c:327 -#, fuzzy, gcc-internal-format -msgid "%s does not support can_remove_branch_p" -msgstr "%s no t suport per a %s" - -#: cfghooks.c:381 -#, fuzzy, gcc-internal-format -msgid "%s does not support redirect_edge_and_branch_force" -msgstr "%s no t suport per a l'operand amb format de nombre %%n$" - -#: cfghooks.c:417 -#, fuzzy, gcc-internal-format -msgid "%s does not support split_block" -msgstr "%s no t suport per a %s" - -#: cfghooks.c:460 -#, fuzzy, gcc-internal-format -msgid "%s does not support move_block_after" -msgstr "%s no t suport per a %s" - -#: cfghooks.c:473 -#, fuzzy, gcc-internal-format -msgid "%s does not support delete_basic_block" -msgstr "%s no t suport per a %s" - -#: cfghooks.c:523 -#, fuzzy, gcc-internal-format -msgid "%s does not support split_edge" -msgstr "%s no t suport per a %s" - -#: cfghooks.c:596 -#, fuzzy, gcc-internal-format -msgid "%s does not support create_basic_block" -msgstr "%s no t suport per a %s" - -#: cfghooks.c:624 -#, fuzzy, gcc-internal-format -msgid "%s does not support can_merge_blocks_p" -msgstr "%s no t suport per a %s" - -#: cfghooks.c:635 -#, fuzzy, gcc-internal-format -msgid "%s does not support predict_edge" -msgstr "%s no t suport per a %s" - -#: cfghooks.c:644 -#, fuzzy, gcc-internal-format -msgid "%s does not support predicted_by_p" -msgstr "%s no t suport per a %s" - -#: cfghooks.c:658 -#, fuzzy, gcc-internal-format -msgid "%s does not support merge_blocks" -msgstr "%s no t suport per a %s" - -#: cfghooks.c:711 -#, fuzzy, gcc-internal-format -msgid "%s does not support make_forwarder_block" -msgstr "%s no t suport per a %s" - -#: cfghooks.c:845 -#, fuzzy, gcc-internal-format -msgid "%s does not support can_duplicate_block_p" -msgstr "no es dna suport a multilib" - -#: cfghooks.c:867 -#, fuzzy, gcc-internal-format -msgid "%s does not support duplicate_block" -msgstr "%s no t suport per a %s" - -#: cfghooks.c:944 -#, fuzzy, gcc-internal-format -msgid "%s does not support block_ends_with_call_p" -msgstr "%s no t suport per a %s" - -#: cfghooks.c:955 -#, fuzzy, gcc-internal-format -msgid "%s does not support block_ends_with_condjump_p" -msgstr "%s no t suport per a %s" - -#: cfghooks.c:973 -#, fuzzy, gcc-internal-format -msgid "%s does not support flow_call_edges_add" -msgstr "%s no t suport per a %s" - -#: cfgloop.c:1328 -#, fuzzy, gcc-internal-format -msgid "size of loop %d should be %d, not %d" -msgstr "La grandria del cicle %d ha de ser %d, no %d." - -#: cfgloop.c:1342 -#, fuzzy, gcc-internal-format -msgid "bb %d do not belong to loop %d" -msgstr "Bb %d no pertany al cicle %d." - -#: cfgloop.c:1357 -#, fuzzy, gcc-internal-format -msgid "loop %d's header does not have exactly 2 entries" -msgstr "L'encapalat del cicle %d no t exactament 2 entrades." - -#: cfgloop.c:1364 -#, fuzzy, gcc-internal-format -msgid "loop %d's latch does not have exactly 1 successor" -msgstr "El forrellat del cicle %d no t exactament 1 successor." - -#: cfgloop.c:1369 -#, fuzzy, gcc-internal-format -msgid "loop %d's latch does not have header as successor" -msgstr "El forrellat del cicle %d no t un encapalat com successor." - -#: cfgloop.c:1374 -#, fuzzy, gcc-internal-format -msgid "loop %d's latch does not belong directly to it" -msgstr "El forrellat del cicle %d no pertany directament a ell." - -#: cfgloop.c:1380 -#, fuzzy, gcc-internal-format -msgid "loop %d's header does not belong directly to it" -msgstr "L'encapalat del cicle %d no pertany directament a ell." - -#: cfgloop.c:1386 -#, gcc-internal-format -msgid "loop %d's latch is marked as part of irreducible region" -msgstr "" - -#: cfgloop.c:1419 -#, fuzzy, gcc-internal-format -msgid "basic block %d should be marked irreducible" -msgstr "el bloc bsic %d pred edge est corrupte" - -#: cfgloop.c:1425 -#, fuzzy, gcc-internal-format -msgid "basic block %d should not be marked irreducible" -msgstr "les llistes de vora del bloc bsic %i estan corruptes" - -#: cfgloop.c:1433 -#, gcc-internal-format -msgid "edge from %d to %d should be marked irreducible" -msgstr "" - -#: cfgloop.c:1440 -#, gcc-internal-format -msgid "edge from %d to %d should not be marked irreducible" -msgstr "" - -#: cfgloop.c:1455 -#, gcc-internal-format -msgid "corrupted head of the exits list of loop %d" -msgstr "" - -#: cfgloop.c:1473 -#, gcc-internal-format -msgid "corrupted exits list of loop %d" -msgstr "" - -#: cfgloop.c:1482 -#, gcc-internal-format -msgid "nonempty exits list of loop %d, but exits are not recorded" -msgstr "" - -#: cfgloop.c:1508 -#, gcc-internal-format -msgid "Exit %d->%d not recorded" -msgstr "" - -#: cfgloop.c:1526 -#, gcc-internal-format -msgid "Wrong list of exited loops for edge %d->%d" -msgstr "" - -#: cfgloop.c:1535 -#, gcc-internal-format -msgid "Too many loop exits recorded" -msgstr "" - -#: cfgloop.c:1546 -#, gcc-internal-format -msgid "%d exits recorded for loop %d (having %d exits)" -msgstr "" - -#: cfgrtl.c:1734 -#, gcc-internal-format -msgid "BB_RTL flag not set for block %d" -msgstr "" - -#: cfgrtl.c:1741 -#, gcc-internal-format -msgid "insn %d basic block pointer is %d, should be %d" -msgstr "" - -#: cfgrtl.c:1752 -#, gcc-internal-format -msgid "insn %d in header of bb %d has non-NULL basic block" -msgstr "" - -#: cfgrtl.c:1760 -#, gcc-internal-format -msgid "insn %d in footer of bb %d has non-NULL basic block" -msgstr "" - -#: cfgrtl.c:1782 -#, gcc-internal-format -msgid "verify_flow_info: REG_BR_PROB does not match cfg %wi %i" -msgstr "verify_flow_info: REG_BR_PROB no coincideix amb la configuraci %wi %i" - -#: cfgrtl.c:1797 -#, gcc-internal-format -msgid "fallthru edge crosses section boundary (bb %i)" -msgstr "" - -#: cfgrtl.c:1822 -#, fuzzy, gcc-internal-format -msgid "missing REG_EH_REGION note in the end of bb %i" -msgstr "Manca la nota REG_EH_REGION al final de bb %i" - -#: cfgrtl.c:1830 -#, fuzzy, gcc-internal-format -msgid "too many outgoing branch edges from bb %i" -msgstr "Massa vores de ramificaci de sortida de bb %i" - -#: cfgrtl.c:1835 -#, fuzzy, gcc-internal-format -msgid "fallthru edge after unconditional jump %i" -msgstr "Vora de caiguda desprs del salt incondicional %i" - -#: cfgrtl.c:1846 -#, fuzzy, gcc-internal-format -msgid "wrong amount of branch edges after conditional jump %i" -msgstr "Quantitat errnia de vores de ramificaci desprs del salt condicional %i" - -#: cfgrtl.c:1852 -#, fuzzy, gcc-internal-format -msgid "call edges for non-call insn in bb %i" -msgstr "Bords de cridada per a una insn que no s cridada en bb %i" - -#: cfgrtl.c:1861 -#, fuzzy, gcc-internal-format -msgid "abnormal edges for no purpose in bb %i" -msgstr "Vores anormals sense cap propsit en bb %i" - -#: cfgrtl.c:1873 -#, gcc-internal-format -msgid "insn %d inside basic block %d but block_for_insn is NULL" -msgstr "insn %d est dintre del bloc bsic %d per block_for_insn s NULL" - -#: cfgrtl.c:1877 -#, gcc-internal-format -msgid "insn %d inside basic block %d but block_for_insn is %i" -msgstr "insn %d est dintre del bloc bsic %d per block_for_insn s %i" - -#: cfgrtl.c:1891 cfgrtl.c:1901 -#, gcc-internal-format -msgid "NOTE_INSN_BASIC_BLOCK is missing for block %d" -msgstr "NOTE_INSN_BASIC_BLOCK mancada per al bloc %d" - -#: cfgrtl.c:1914 -#, gcc-internal-format -msgid "NOTE_INSN_BASIC_BLOCK %d in middle of basic block %d" -msgstr "NOTE_INSN_BASIC_BLOCK %d en el mitj del bloc bsic %d" - -#: cfgrtl.c:1924 -#, gcc-internal-format -msgid "in basic block %d:" -msgstr "en el bloc bsic %d:" - -#: cfgrtl.c:1977 cfgrtl.c:2067 -#, fuzzy, gcc-internal-format -msgid "insn %d outside of basic blocks has non-NULL bb field" -msgstr "insn fora del bloc bsic" - -#: cfgrtl.c:1985 -#, gcc-internal-format -msgid "end insn %d for block %d not found in the insn stream" -msgstr "el insn final %d per al bloc %d no es troba en el fluix insn" - -#: cfgrtl.c:1998 -#, gcc-internal-format -msgid "insn %d is in multiple basic blocks (%d and %d)" -msgstr "insn %d est en mltiples blocs bsics (%d i %d)" - -#: cfgrtl.c:2010 -#, gcc-internal-format -msgid "head insn %d for block %d not found in the insn stream" -msgstr "el cap insn %d per al bloc %d no es troba en el fluix insn" - -#: cfgrtl.c:2030 -#, gcc-internal-format -msgid "missing barrier after block %i" -msgstr "falta una barrera desprs del bloc %i" - -#: cfgrtl.c:2043 -#, gcc-internal-format -msgid "verify_flow_info: Incorrect blocks for fallthru %i->%i" -msgstr "verify_flow_info: Blocs incorrectes per al respatller %i->%i" - -#: cfgrtl.c:2052 -#, gcc-internal-format -msgid "verify_flow_info: Incorrect fallthru %i->%i" -msgstr "verify_flow_info: Respatller incorrecte %i->%i" - -#: cfgrtl.c:2085 -#, gcc-internal-format -msgid "basic blocks not laid down consecutively" -msgstr "els blocs bsics no estan collocats consecutivament" - -#: cfgrtl.c:2124 -#, gcc-internal-format -msgid "number of bb notes in insn chain (%d) != n_basic_blocks (%d)" -msgstr "el nombre de notes bb en la cadena insn (%d) != n_basic_blocks (%d)" - -#: cgraph.c:794 -#, gcc-internal-format -msgid "%D renamed after being referenced in assembly" -msgstr "" - -#: cgraphunit.c:670 -#, gcc-internal-format -msgid "aux field set for edge %s->%s" -msgstr "" - -#: cgraphunit.c:676 -#, fuzzy, gcc-internal-format -msgid "Execution count is negative" -msgstr "el valor de desplaament a l'esquerra s negatiu" - -#: cgraphunit.c:683 -#, fuzzy, gcc-internal-format -msgid "caller edge count is negative" -msgstr "el valor de desplaament a l'esquerra s negatiu" - -#: cgraphunit.c:688 -#, gcc-internal-format -msgid "caller edge frequency is negative" -msgstr "" - -#: cgraphunit.c:693 -#, gcc-internal-format -msgid "caller edge frequency is too large" -msgstr "" - -#: cgraphunit.c:702 -#, fuzzy, gcc-internal-format -msgid "inlined_to pointer is wrong" -msgstr "falta la secci de punters" - -#: cgraphunit.c:707 -#, fuzzy, gcc-internal-format -msgid "multiple inline callers" -msgstr "specificadors \"virtual\" mltiples" - -#: cgraphunit.c:714 -#, gcc-internal-format -msgid "inlined_to pointer set for noninline callers" -msgstr "" - -#: cgraphunit.c:720 -#, gcc-internal-format -msgid "inlined_to pointer is set but no predecessors found" -msgstr "" - -#: cgraphunit.c:725 -#, fuzzy, gcc-internal-format -msgid "inlined_to pointer refers to itself" -msgstr "punter no vlid al camp de bit \"%D\"" - -#: cgraphunit.c:735 -#, gcc-internal-format -msgid "node not found in cgraph_hash" -msgstr "" - -#: cgraphunit.c:763 -#, gcc-internal-format -msgid "shared call_stmt:" -msgstr "" - -#: cgraphunit.c:770 -#, fuzzy, gcc-internal-format -msgid "edge points to wrong declaration:" -msgstr "s'usa \"%s\" previ a la declaraci" - -#: cgraphunit.c:779 -#, gcc-internal-format -msgid "missing callgraph edge for call stmt:" -msgstr "" - -#: cgraphunit.c:795 -#, gcc-internal-format -msgid "edge %s->%s has no corresponding call_stmt" -msgstr "" - -#: cgraphunit.c:807 -#, fuzzy, gcc-internal-format -msgid "verify_cgraph_node failed" -msgstr "verify_flow_info fallat" - -#: cgraphunit.c:909 cgraphunit.c:932 -#, gcc-internal-format -msgid "%J% attribute have effect only on public objects" -msgstr "" - -#: cgraphunit.c:1122 -#, fuzzy, gcc-internal-format -msgid "failed to reclaim unneeded function" -msgstr "el camp \"%s\" es declara com una funci" - -#: cgraphunit.c:1454 -#, gcc-internal-format -msgid "nodes with no released memory found" -msgstr "" - -#: collect2.c:1189 -#, fuzzy, gcc-internal-format -msgid "unknown demangling style '%s'" -msgstr "es desconeix el mode de mquina \"%s\"" - -#: collect2.c:1512 -#, gcc-internal-format -msgid "%s terminated with signal %d [%s]%s" -msgstr "%s acabat amb el senyal %d [%s]%s" - -#: collect2.c:1530 -#, gcc-internal-format -msgid "%s returned %d exit status" -msgstr "%s va retornar l'estat de sortida %d" - -#: collect2.c:2242 -#, fuzzy, gcc-internal-format -msgid "cannot find 'ldd'" -msgstr "no es troba \"ldd\"" - -#: convert.c:69 -#, gcc-internal-format -msgid "cannot convert to a pointer type" -msgstr "no es pot convertir a un tipus punter" - -#: convert.c:333 -#, gcc-internal-format -msgid "pointer value used where a floating point value was expected" -msgstr "es va usar un valor de punter on s'esperava un valor de coma flotant" - -#: convert.c:337 -#, gcc-internal-format -msgid "aggregate value used where a float was expected" -msgstr "es va usar un valor agregat on s'esperava un float" - -#: convert.c:362 -#, gcc-internal-format -msgid "conversion to incomplete type" -msgstr "conversi a tipus de dada incompleta" - -#: convert.c:731 convert.c:807 -#, gcc-internal-format -msgid "can't convert between vector values of different size" -msgstr "no es pot convertir entre valors vectorials de grandries diferents" - -#: convert.c:737 -#, gcc-internal-format -msgid "aggregate value used where an integer was expected" -msgstr "es va usar un valor agregat on s'esperava un enter" - -#: convert.c:787 -#, gcc-internal-format -msgid "pointer value used where a complex was expected" -msgstr "es va usar un valor de punter on s'esperava un complex" - -#: convert.c:791 -#, gcc-internal-format -msgid "aggregate value used where a complex was expected" -msgstr "es va usar un valor agregat on s'esperava un complex" - -#: convert.c:813 -#, gcc-internal-format -msgid "can't convert value to a vector" -msgstr "no es pot convertir el valor a un vector" - -#: convert.c:852 -#, fuzzy, gcc-internal-format -msgid "aggregate value used where a fixed-point was expected" -msgstr "es va usar un valor agregat on s'esperava un float" - -#: coverage.c:182 -#, fuzzy, gcc-internal-format -msgid "%qs is not a gcov data file" -msgstr "\"%s\" no s fitxer de dades gcov" - -#: coverage.c:193 -#, fuzzy, gcc-internal-format -msgid "%qs is version %q.*s, expected version %q.*s" -msgstr "\"%s\" en versi \"%.4s\", s'espera la versi \"%.4s\"" - -#: coverage.c:273 coverage.c:281 -#, gcc-internal-format -msgid "coverage mismatch for function %u while reading execution counters" -msgstr "" - -#: coverage.c:275 coverage.c:370 -#, gcc-internal-format -msgid "checksum is %x instead of %x" -msgstr "" - -#: coverage.c:283 coverage.c:372 -#, gcc-internal-format -msgid "number of counters is %d instead of %d" -msgstr "" - -#: coverage.c:289 -#, gcc-internal-format -msgid "cannot merge separate %s counters for function %u" -msgstr "" - -#: coverage.c:310 -#, fuzzy, gcc-internal-format -msgid "%qs has overflowed" -msgstr "desbordament de la pila per a \"%s\"" - -#: coverage.c:347 -#, fuzzy, gcc-internal-format -msgid "no coverage for function %qs found" -msgstr "%s:no es troben funcions\n" - -#: coverage.c:361 coverage.c:364 -#, gcc-internal-format -msgid "coverage mismatch for function %qs while reading counter %qs" -msgstr "" - -#: coverage.c:380 -#, gcc-internal-format -msgid "coverage mismatch ignored due to -Wcoverage-mismatch" -msgstr "" - -#: coverage.c:382 -#, gcc-internal-format -msgid "execution counts estimated" -msgstr "" - -#: coverage.c:385 -#, gcc-internal-format -msgid "this can result in poorly optimized code" -msgstr "" - -#: coverage.c:543 -#, gcc-internal-format -msgid "cannot open %s" -msgstr "no es pot obrir %s" - -#: coverage.c:578 -#, fuzzy, gcc-internal-format -msgid "error writing %qs" -msgstr "error a l'escriure a \"%s\"" - -#: dbgcnt.c:127 -#, gcc-internal-format -msgid "Can not find a valid counter:value pair:" -msgstr "" - -#: dbgcnt.c:128 -#, gcc-internal-format -msgid "-fdbg-cnt=%s" -msgstr "" - -#: dbgcnt.c:129 -#, fuzzy, gcc-internal-format -msgid " %s" -msgstr " \"%D\"" - -#: diagnostic.c:660 -#, gcc-internal-format -msgid "in %s, at %s:%d" -msgstr "en %s, en %s:%d" - -#: dominance.c:983 -#, fuzzy, gcc-internal-format -msgid "dominator of %d status unknown" -msgstr "el tipus de \"%E\" s desconegut" - -#: dominance.c:990 -#, gcc-internal-format -msgid "dominator of %d should be %d, not %d" -msgstr "" - -#: dwarf2out.c:3634 -#, fuzzy, gcc-internal-format -msgid "DW_LOC_OP %s not implemented" -msgstr "DW_LOC_OP %s no est implementat\n" - -#: emit-rtl.c:2326 -#, fuzzy, gcc-internal-format -msgid "invalid rtl sharing found in the insn" -msgstr "operand no vlid en la instrucci" - -#: emit-rtl.c:2328 -#, gcc-internal-format -msgid "shared rtx" -msgstr "" - -#: emit-rtl.c:2330 -#, fuzzy, gcc-internal-format -msgid "internal consistency failure" -msgstr "avortament intern de gcc" - -#: emit-rtl.c:3417 -#, gcc-internal-format -msgid "ICE: emit_insn used where emit_jump_insn needed:\n" -msgstr "ICE:s'usa emit_insn on es necessita emit_jump_insn:\n" - -#: errors.c:132 -#, gcc-internal-format -msgid "abort in %s, at %s:%d" -msgstr "aband en %s, en %s:%d" - -#: except.c:337 -#, gcc-internal-format -msgid "exception handling disabled, use -fexceptions to enable" -msgstr "maneig d'excepcions desactivat, usi -fexceptions per a activar" - -#: except.c:2889 -#, fuzzy, gcc-internal-format -msgid "argument of %<__builtin_eh_return_regno%> must be constant" -msgstr "l'argument de \"__builtin_eh_return_regno\" ha de ser constant" - -#: except.c:3022 -#, gcc-internal-format -msgid "__builtin_eh_return not supported on this target" -msgstr "no es dna suport a _builtin_eh_return en aquest objectiu" - -#: except.c:3903 except.c:3912 -#, gcc-internal-format -msgid "region_array is corrupted for region %i" -msgstr "" - -#: except.c:3917 -#, gcc-internal-format -msgid "outer block of region %i is wrong" -msgstr "" - -#: except.c:3922 -#, gcc-internal-format -msgid "region %i may contain throw and is contained in region that may not" -msgstr "" - -#: except.c:3928 -#, gcc-internal-format -msgid "negative nesting depth of region %i" -msgstr "" - -#: except.c:3948 -#, gcc-internal-format -msgid "tree list ends on depth %i" -msgstr "" - -#: except.c:3953 -#, fuzzy, gcc-internal-format -msgid "array does not match the region tree" -msgstr "la conversi no coincideix amb el tipus de la funci" - -#: except.c:3959 -#, fuzzy, gcc-internal-format -msgid "verify_eh_tree failed" -msgstr "verify_flow_info fallat" - -#: explow.c:1281 -#, gcc-internal-format -msgid "stack limits not supported on this target" -msgstr "no es dna suport a lmits de pila en aquest objectiu" - -#: expr.c:8031 -#, fuzzy -msgid "%Kcall to %qs declared with attribute error: %s" -msgstr "funci \"%s\" re-declarada amb l'atribut noinline" - -#: expr.c:8037 -#, fuzzy -msgid "%Kcall to %qs declared with attribute warning: %s" -msgstr "funci \"%s\" re-declarada amb l'atribut noinline" - -#: final.c:1431 -#, fuzzy, gcc-internal-format -msgid "invalid argument %qs to -fdebug-prefix-map" -msgstr "no vlid argument per a l'atribut \"%s\"" - -#: fixed-value.c:104 -#, fuzzy, gcc-internal-format -msgid "large fixed-point constant implicitly truncated to fixed-point type" -msgstr "enter gran truncat implcitament al tipus unsigned" - -#: fold-const.c:992 tree-ssa-loop-niter.c:1827 tree-vrp.c:5060 -#, fuzzy, gcc-internal-format -msgid "%H%s" -msgstr "%s" - -#: fold-const.c:1363 -#, gcc-internal-format -msgid "assuming signed overflow does not occur when negating a division" -msgstr "" - -#: fold-const.c:3989 fold-const.c:4000 -#, gcc-internal-format -msgid "comparison is always %d due to width of bit-field" -msgstr "la comparana sempre s %d a causa de l'amplria del camp de bit" - -#: fold-const.c:5317 -#, gcc-internal-format -msgid "assuming signed overflow does not occur when simplifying range test" -msgstr "" - -#: fold-const.c:5691 fold-const.c:5706 -#, gcc-internal-format -msgid "comparison is always %d" -msgstr "la comparana sempre s %d" - -#: fold-const.c:5835 -#, fuzzy, gcc-internal-format -msgid "% of unmatched not-equal tests is always 1" -msgstr "un \"or\" de proves no equivalents sense coincidncia sempre s 1" - -#: fold-const.c:5840 -#, fuzzy, gcc-internal-format -msgid "% of mutually exclusive equal-tests is always 0" -msgstr "un \"and\" de proves equivalents mtuament exclusives sempre s 0" - -#: fold-const.c:8617 -#, gcc-internal-format -msgid "assuming signed overflow does not occur when reducing constant in comparison" -msgstr "" - -#: fold-const.c:8871 -#, gcc-internal-format -msgid "assuming signed overflow does not occur when combining constants around a comparison" -msgstr "" - -#: fold-const.c:13236 -#, gcc-internal-format -msgid "fold check: original tree changed by fold" -msgstr "" - -#: function.c:377 -#, fuzzy, gcc-internal-format -msgid "%Jtotal size of local objects too large" -msgstr "%Jla grandria de la variable \"%D\" s massa gran" - -#: function.c:837 varasm.c:2095 -#, fuzzy, gcc-internal-format -msgid "size of variable %q+D is too large" -msgstr "%Jla grandria de la variable \"%D\" s massa gran" - -#: function.c:1554 gimplify.c:4250 -#, fuzzy, gcc-internal-format -msgid "impossible constraint in %" -msgstr "restricci impossible en \"asm\"" - -#: function.c:3538 -#, fuzzy, gcc-internal-format -msgid "variable %q+D might be clobbered by % or %" -msgstr "%Jla variable \"%D\" podria ser apallissada per \"longjmp\" o \"vfork\"" - -#: function.c:3559 -#, fuzzy, gcc-internal-format -msgid "argument %q+D might be clobbered by % or %" -msgstr "%Jl'argument \"%D\" podria ser apallissat per \"longjmp\" o \"vfork\"" - -#: function.c:4004 -#, gcc-internal-format -msgid "function returns an aggregate" -msgstr "la funci retorna un agregat" - -#: function.c:4401 -#, fuzzy, gcc-internal-format -msgid "unused parameter %q+D" -msgstr "%Jparmetre \"%D\" sense s" - -#: gcc.c:1286 -#, gcc-internal-format -msgid "ambiguous abbreviation %s" -msgstr "abreujament ambigu %s" - -#: gcc.c:1313 -#, fuzzy, gcc-internal-format -msgid "incomplete '%s' option" -msgstr "Opci \"%s\" incompleta" - -#: gcc.c:1324 -#, fuzzy, gcc-internal-format -msgid "missing argument to '%s' option" -msgstr "Falten arguments per a l'opci \"%s\"" - -#: gcc.c:1337 -#, fuzzy, gcc-internal-format -msgid "extraneous argument to '%s' option" -msgstr "argument estrany per a l'opci \"%s\"" - -#: gcc.c:3987 -#, gcc-internal-format -msgid "warning: -pipe ignored because -save-temps specified" -msgstr "Avs: s'ignora -pipe perqu es va especificar -save-temps" - -#: gcc.c:4276 -#, fuzzy, gcc-internal-format -msgid "warning: '-x %s' after last input file has no effect" -msgstr "avs: \"-x %s\" desprs de l'ltim fitxer d'entrada no t efecte" - -#. 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:5314 -#, gcc-internal-format -msgid "spec failure: '%%*' has not been initialized by pattern match" -msgstr "Falla en spec: \"%%*\" no ha estat iniciat per coincidncia de patr" - -#: gcc.c:5323 -#, gcc-internal-format -msgid "warning: use of obsolete %%[ operator in specs" -msgstr "Avs: s de l'operador obsolet %%[ en specs" - -#: gcc.c:5404 -#, gcc-internal-format -msgid "spec failure: unrecognized spec option '%c'" -msgstr "Falla en spec: Opci d'especificaci \"%c\" no reconeguda" - -#: gcc.c:6305 -#, gcc-internal-format -msgid "spec failure: more than one arg to SYSROOT_SUFFIX_SPEC" -msgstr "" - -#: gcc.c:6328 -#, gcc-internal-format -msgid "spec failure: more than one arg to SYSROOT_HEADERS_SUFFIX_SPEC" -msgstr "" - -#: gcc.c:6415 -#, fuzzy, gcc-internal-format -msgid "unrecognized option '-%s'" -msgstr "opci \"-%s\" no reconeguda" - -#: gcc.c:6615 gcc.c:6678 -#, gcc-internal-format -msgid "%s: %s compiler not installed on this system" -msgstr "%s: el compilador %s no est installat en aquest sistema" - -#: gcc.c:6778 -#, gcc-internal-format -msgid "%s: linker input file unused because linking not done" -msgstr "%s: fitxer d'entrada de l'enllaador sense s perqu no es va fer enlla" - -#: gcc.c:6818 -#, gcc-internal-format -msgid "language %s not recognized" -msgstr "no es reconeix el llenguatge %s" - -#: gcc.c:6889 -#, gcc-internal-format -msgid "%s: %s" -msgstr "%s: %s" - -#: gcse.c:6660 -#, fuzzy, gcc-internal-format -msgid "%s: %d basic blocks and %d edges/basic block" -msgstr "GCSE desactivat: %d > 1000 blocs bsics i %d >= 20 blocs bord/bsics" - -#: gcse.c:6673 -#, fuzzy, gcc-internal-format -msgid "%s: %d basic blocks and %d registers" -msgstr "GCSE desactivat: %d blocs bsics i %d registres" - -#: ggc-common.c:403 ggc-common.c:411 ggc-common.c:479 ggc-common.c:498 -#: ggc-page.c:2138 ggc-page.c:2169 ggc-page.c:2176 ggc-zone.c:2290 -#: ggc-zone.c:2305 -#, gcc-internal-format -msgid "can't write PCH file: %m" -msgstr "no es pot escriure el fitxer PCH: %m" - -#: ggc-common.c:491 config/i386/host-cygwin.c:57 -#, fuzzy, gcc-internal-format -msgid "can't get position in PCH file: %m" -msgstr "no es pot crear el fitxer d'informaci de \"repository\" \"%s\"" - -#: ggc-common.c:501 -#, fuzzy, gcc-internal-format -msgid "can't write padding to PCH file: %m" -msgstr "no es pot escriure al fitxer de sortida" - -#: ggc-common.c:556 ggc-common.c:564 ggc-common.c:571 ggc-common.c:574 -#: ggc-common.c:584 ggc-common.c:587 ggc-page.c:2266 ggc-zone.c:2324 -#, gcc-internal-format -msgid "can't read PCH file: %m" -msgstr "no es pot llegir el fitxer PCH: %m" - -#: ggc-common.c:579 -#, gcc-internal-format -msgid "had to relocate PCH" -msgstr "" - -#: ggc-page.c:1471 -#, gcc-internal-format -msgid "open /dev/zero: %m" -msgstr "open /dev/zero: %m" - -#: ggc-page.c:2154 ggc-page.c:2160 -#, gcc-internal-format -msgid "can't write PCH file" -msgstr "no es pot escriure el fitxer PCH" - -#: ggc-zone.c:2287 ggc-zone.c:2298 -#, fuzzy, gcc-internal-format -msgid "can't seek PCH file: %m" -msgstr "no es pot llegir el fitxer PCH: %m" - -#: ggc-zone.c:2301 -#, fuzzy, gcc-internal-format -msgid "can't write PCH fle: %m" -msgstr "no es pot escriure el fitxer PCH: %m" - -#: gimplify.c:4139 -#, fuzzy, gcc-internal-format -msgid "invalid lvalue in asm output %d" -msgstr "lvalue no vlid en declaraci asm" - -#: gimplify.c:4251 -#, gcc-internal-format -msgid "non-memory input %d must stay in memory" -msgstr "" - -#: gimplify.c:4264 -#, fuzzy, gcc-internal-format -msgid "memory input %d is not directly addressable" -msgstr "el nombre de sortida %d no s directament adreable" - -#: gimplify.c:4743 -#, gcc-internal-format -msgid "%qs not specified in enclosing parallel" -msgstr "" - -#: gimplify.c:4745 -#, gcc-internal-format -msgid "%Henclosing parallel" -msgstr "" - -#: gimplify.c:4799 -#, gcc-internal-format -msgid "iteration variable %qs should be private" -msgstr "" - -#: gimplify.c:4813 -#, gcc-internal-format -msgid "iteration variable %qs should not be firstprivate" -msgstr "" - -#: gimplify.c:4816 -#, fuzzy, gcc-internal-format -msgid "iteration variable %qs should not be reduction" -msgstr "es va usar la va variable \"%s\" en funcions niades" - -#: gimplify.c:4940 -#, fuzzy, gcc-internal-format -msgid "%s variable %qs is private in outer context" -msgstr "\"%D\" no es va declarar en aquest mbit" - -#: gimplify.c:6108 -#, gcc-internal-format -msgid "gimplification failed" -msgstr "" - -#: global.c:284 global.c:297 global.c:311 -#, fuzzy, gcc-internal-format -msgid "%s cannot be used in asm here" -msgstr "no es pot usar %s en ensamblador aqu" - -#: graph.c:401 java/jcf-parse.c:1757 java/jcf-parse.c:1897 objc/objc-act.c:500 -#, fuzzy, gcc-internal-format -msgid "can't open %s: %m" -msgstr "no es pot obrir %s" - -#: haifa-sched.c:184 -#, gcc-internal-format -msgid "fix_sched_param: unknown param: %s" -msgstr "fix_sched_param: parmetre desconegut: %s" - -#: omp-low.c:1288 -#, gcc-internal-format -msgid "work-sharing region may not be closely nested inside of work-sharing, critical, ordered or master region" -msgstr "" - -#: omp-low.c:1304 -#, gcc-internal-format -msgid "master region may not be closely nested inside of work-sharing region" -msgstr "" - -#: omp-low.c:1318 -#, gcc-internal-format -msgid "ordered region may not be closely nested inside of critical region" -msgstr "" - -#: omp-low.c:1324 -#, gcc-internal-format -msgid "ordered region must be closely nested inside a loop region with an ordered clause" -msgstr "" - -#: omp-low.c:1338 -#, gcc-internal-format -msgid "critical region may not be nested inside a critical region with the same name" -msgstr "" - -#: omp-low.c:5050 cp/decl.c:2660 cp/parser.c:7417 cp/parser.c:7437 -#, gcc-internal-format -msgid "invalid exit from OpenMP structured block" -msgstr "" - -#: omp-low.c:5052 -#, gcc-internal-format -msgid "invalid entry to OpenMP structured block" -msgstr "" - -#: opts.c:173 -#, gcc-internal-format -msgid "argument %qs to %<-femit-struct-debug-detailed%> not recognized" -msgstr "" - -#: opts.c:207 -#, gcc-internal-format -msgid "argument %qs to %<-femit-struct-debug-detailed%> unknown" -msgstr "" - -#: opts.c:213 -#, gcc-internal-format -msgid "%<-femit-struct-debug-detailed=dir:...%> must allow at least as much as %<-femit-struct-debug-detailed=ind:...%>" -msgstr "" - -#. Eventually this should become a hard error IMO. -#: opts.c:438 -#, gcc-internal-format -msgid "command line option \"%s\" is valid for %s but not for %s" -msgstr "l'opci de lnia d'ordres \"%s\" s vlida per a %s per no per a %s" - -#: opts.c:492 -#, fuzzy, gcc-internal-format -msgid "command line option %qs is not supported by this configuration" -msgstr "%s no t suport en aquesta configuraci" - -#: opts.c:545 -#, gcc-internal-format -msgid "missing argument to \"%s\"" -msgstr "falten arguments per a \"%s\"" - -#: opts.c:555 -#, gcc-internal-format -msgid "argument to \"%s\" should be a non-negative integer" -msgstr "l'argument per a \"%s\" ha de ser un enter non negatiu" - -#: opts.c:728 -#, gcc-internal-format -msgid "unrecognized command line option \"%s\"" -msgstr "opci de lnia d'ordres \"%s\" desconeguda" - -#: opts.c:947 -#, gcc-internal-format -msgid "-Wuninitialized is not supported without -O" -msgstr "no es dna suport a -Wuninitialized sense -O" - -#: opts.c:962 -#, gcc-internal-format -msgid "-freorder-blocks-and-partition does not work with exceptions" -msgstr "" - -#: opts.c:973 -#, gcc-internal-format -msgid "-freorder-blocks-and-partition does not support unwind info" -msgstr "" - -#: opts.c:987 -#, gcc-internal-format -msgid "-freorder-blocks-and-partition does not work on this architecture" -msgstr "" - -#: opts.c:1263 -#, gcc-internal-format -msgid "unrecognized include_flags 0x%x passed to print_specific_help" -msgstr "" - -#: opts.c:1593 -#, fuzzy, gcc-internal-format -msgid "structure alignment must be a small power of two, not %d" -msgstr "l'alineaci ha de ser una potncia petita de dos, no %d" - -#: opts.c:1656 -#, fuzzy, gcc-internal-format -msgid "unrecognized visibility value \"%s\"" -msgstr "no es reconeix el nom de registre \"%s\"" - -#: opts.c:1704 -#, gcc-internal-format -msgid "unrecognized register name \"%s\"" -msgstr "no es reconeix el nom de registre \"%s\"" - -#: opts.c:1728 -#, gcc-internal-format -msgid "unknown tls-model \"%s\"" -msgstr "tls-model \"%s\" desconegut" - -#: opts.c:1803 -#, gcc-internal-format -msgid "%s: --param arguments should be of the form NAME=VALUE" -msgstr "" - -#: opts.c:1808 -#, fuzzy, gcc-internal-format -msgid "invalid --param value %qs" -msgstr "valor de --param \"%s\" no vlid" - -#: opts.c:1931 -#, gcc-internal-format -msgid "target system does not support debug output" -msgstr "el sistema objectiu no t suport per a sortides de depuraci" - -#: opts.c:1938 -#, gcc-internal-format -msgid "debug format \"%s\" conflicts with prior selection" -msgstr "format de depuraci \"%s\" en conflicte amb una selecci prvia" - -#: opts.c:1954 -#, gcc-internal-format -msgid "unrecognised debug output level \"%s\"" -msgstr "no es reconeix el nivell de sortida de depuraci \"%s\"" - -#: opts.c:1956 -#, gcc-internal-format -msgid "debug output level %s is too high" -msgstr "el nivell de sortida de depuraci %s s massa alt" - -#: opts.c:2038 -#, gcc-internal-format -msgid "-Werror=%s: No option -%s" -msgstr "" - -#: params.c:68 -#, fuzzy, gcc-internal-format -msgid "minimum value of parameter %qs is %u" -msgstr "el parmetre \"%s\" no s vlid" - -#: params.c:73 -#, 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 -#, fuzzy, gcc-internal-format -msgid "invalid parameter %qs" -msgstr "el parmetre \"%s\" no s vlid" - -#: profile.c:304 -#, gcc-internal-format -msgid "corrupted profile info: run_max * runs < sum_max" -msgstr "" - -#: profile.c:310 -#, gcc-internal-format -msgid "corrupted profile info: sum_all is smaller than sum_max" -msgstr "" - -#: profile.c:355 -#, gcc-internal-format -msgid "corrupted profile info: edge from %i to %i exceeds maximal count" -msgstr "informaci de perfil corrupta: el tall des de %i fins a %i excedeix el compte mxim" - -#: profile.c:519 -#, gcc-internal-format -msgid "corrupted profile info: number of iterations for basic block %d thought to be %i" -msgstr "informaci de perfil corrupta: el nombre d'iteracions pel bloc bsica %d hauria de ser %i" - -#: profile.c:540 -#, gcc-internal-format -msgid "corrupted profile info: number of executions for edge %d-%d thought to be %i" -msgstr "informaci de perfil corrupta: el nombre d'execicions pel tall %d-%d hauria de ser %i" - -#: reg-stack.c:538 -#, gcc-internal-format -msgid "output constraint %d must specify a single register" -msgstr "la restricci de sortida %d s'ha d'especificar un sol registre" - -#: reg-stack.c:548 -#, gcc-internal-format -msgid "output constraint %d cannot be specified together with \"%s\" clobber" -msgstr "la restricci de sortida %d no es pot especificar amb el clobber \"%s\"" - -#: reg-stack.c:571 -#, gcc-internal-format -msgid "output regs must be grouped at top of stack" -msgstr "els registres de sortida deuen ser agrupats en la part superior de la pila" - -#: reg-stack.c:608 -#, gcc-internal-format -msgid "implicitly popped regs must be grouped at top of stack" -msgstr "els registres extrets implcitament deuen ser agrupats en la part superior de la pila" - -#: reg-stack.c:627 -#, fuzzy, gcc-internal-format -msgid "output operand %d must use %<&%> constraint" -msgstr "l'operand de sortida %d ha d'usar la restricci \"&\"" - -#: regclass.c:875 -#, gcc-internal-format -msgid "can't use '%s' as a %s register" -msgstr "no es pot usar \"%s\" com un registre %s" - -#: regclass.c:890 config/ia64/ia64.c:5138 config/ia64/ia64.c:5145 -#: config/pa/pa.c:359 config/pa/pa.c:366 config/spu/spu.c:3886 -#: config/spu/spu.c:3893 -#, gcc-internal-format -msgid "unknown register name: %s" -msgstr "nom de registre desconegut: %s" - -#: regclass.c:900 -#, gcc-internal-format -msgid "global register variable follows a function definition" -msgstr "la variable de registre global segueix a una definici de funci" - -#: regclass.c:904 -#, gcc-internal-format -msgid "register used for two global register variables" -msgstr "nom de registre usat per dues variables de registre globals" - -#: regclass.c:909 -#, gcc-internal-format -msgid "call-clobbered register used for global register variable" -msgstr "registre de cridada alterada usat per a una variable de registre global" - -#: regrename.c:1893 -#, gcc-internal-format -msgid "validate_value_data: [%u] Bad next_regno for empty chain (%u)" -msgstr "validate_value_data: [%u] next_regno erroni per a la cadena buida (%u)" - -#: regrename.c:1905 -#, gcc-internal-format -msgid "validate_value_data: Loop in regno chain (%u)" -msgstr "validate_value_data: Cicle en la cadena regno (%u)" - -#: regrename.c:1908 -#, gcc-internal-format -msgid "validate_value_data: [%u] Bad oldest_regno (%u)" -msgstr "validate_value_data: [%u] oldest_regno erroni (%u)" - -#: regrename.c:1920 -#, gcc-internal-format -msgid "validate_value_data: [%u] Non-empty reg in chain (%s %u %i)" -msgstr "validate_value_data: [%u] Registre no buit en la cadena (%s %u %i)" - -#: reload.c:1252 -#, fuzzy, gcc-internal-format -msgid "cannot reload integer constant operand in %" -msgstr "no es pot recarregar un operador constant enter en \"asm\"" - -#: reload.c:1266 -#, fuzzy, gcc-internal-format -msgid "impossible register constraint in %" -msgstr "restricci de registres impossible en \"asm\"" - -#: reload.c:3564 -#, fuzzy, gcc-internal-format -msgid "%<&%> constraint used with no register class" -msgstr "es va usar la restricci \"&\" sense classe de registre" - -#: reload.c:3735 reload.c:3975 -#, fuzzy, gcc-internal-format -msgid "inconsistent operand constraints in an %" -msgstr "restriccions d'operand inconsistents en un \"asm\"" - -#: reload1.c:1301 -#, fuzzy, gcc-internal-format -msgid "% operand has impossible constraints" -msgstr "l'operand asm %d probablement no coincideix amb les restriccions" - -#: reload1.c:1321 -#, gcc-internal-format -msgid "frame size too large for reliable stack checking" -msgstr "la grandria del marc s massa gran per a una revisi fiable de la pila" - -#: reload1.c:1324 -#, gcc-internal-format -msgid "try reducing the number of local variables" -msgstr "intenti reduir el nombre de variables locals" - -#: reload1.c:1987 -#, fuzzy, gcc-internal-format -msgid "can't find a register in class %qs while reloading %" -msgstr "no es pot trobar un registre en la classe \"%s\" mentre es recarrega \"asm\"." - -#: reload1.c:1992 -#, fuzzy, gcc-internal-format -msgid "unable to find a register to spill in class %qs" -msgstr "no es pot trobar un registre per a buidar la classe \"%s\"." - -#: reload1.c:4160 -#, fuzzy, gcc-internal-format -msgid "% operand requires impossible reload" -msgstr "l'operand \"asm\" requereix una recarrega impossible" - -#: reload1.c:5368 -#, fuzzy, gcc-internal-format -msgid "% operand constraint incompatible with operand size" -msgstr "la restricci de l'operand \"asm\" s incompatible amb la grandria de l'operand" - -#: reload1.c:7039 -#, fuzzy, gcc-internal-format -msgid "output operand is constant in %" -msgstr "l'operand de sortida s constant en \"asm\"" - -#: rtl.c:484 -#, fuzzy, gcc-internal-format -msgid "RTL check: access of elt %d of '%s' with last elt %d in %s, at %s:%d" -msgstr "revisi RTL: accs de elt %d de \"%s\" amb l'ltim elt %d en %s, en %s:%d" - -#: rtl.c:494 -#, gcc-internal-format -msgid "RTL check: expected elt %d type '%c', have '%c' (rtx %s) in %s, at %s:%d" -msgstr "revisi RTL: s'esperava el tipus elt %d \"%c\", es t \"%c\" (rtx %s) en %s, en %s:%d" - -#: rtl.c:504 -#, gcc-internal-format -msgid "RTL check: expected elt %d type '%c' or '%c', have '%c' (rtx %s) in %s, at %s:%d" -msgstr "revisi RTL: s'esperava el tipus elt %d \"%c\" o \"%c\", es t \"%c\" (rtx %s) en %s, en %s:%d" - -#: rtl.c:513 -#, fuzzy, gcc-internal-format -msgid "RTL check: expected code '%s', have '%s' in %s, at %s:%d" -msgstr "Revisi RTL: s'esperava el codi \"%s\", es t \"%s\" en %s, en %s:%d" - -#: rtl.c:523 -#, fuzzy, gcc-internal-format -msgid "RTL check: expected code '%s' or '%s', have '%s' in %s, at %s:%d" -msgstr "Revisi RTL: s'esperava el codi \"%s\" o \"%s\", es t \"%s\" en %s, en %s:%d" - -#: rtl.c:550 -#, fuzzy, gcc-internal-format -msgid "RTL check: attempt to treat non-block symbol as a block symbol in %s, at %s:%d" -msgstr "revisi RTL: accs de elt %d de \"%s\" amb l'ltim elt %d en %s, en %s:%d" - -#: rtl.c:560 -#, gcc-internal-format -msgid "RTL check: access of elt %d of vector with last elt %d in %s, at %s:%d" -msgstr "Revisi RTL: accs de elt %d de vector amb l'ltim elt %d en %s, en %s:%d" - -#: rtl.c:571 -#, fuzzy, gcc-internal-format -msgid "RTL flag check: %s used with unexpected rtx code '%s' in %s, at %s:%d" -msgstr "Revisi RTL: es va usar %s amb el codi rtx inesperat \"%s\" en %s, en %s:%d" - -#: stmt.c:317 -#, fuzzy, gcc-internal-format -msgid "output operand constraint lacks %<=%>" -msgstr "la restricci d'operand de sortida manca de \"=\"" - -#: stmt.c:332 -#, fuzzy, gcc-internal-format -msgid "output constraint %qc for operand %d is not at the beginning" -msgstr "la restricci de sortida \"%c\" per a l'operand %d no est al principi" - -#: stmt.c:355 -#, fuzzy, gcc-internal-format -msgid "operand constraint contains incorrectly positioned %<+%> or %<=%>" -msgstr "la restricci d'operand cont \"+\" o \"=\" mal posicionat" - -#: stmt.c:362 stmt.c:461 -#, fuzzy, gcc-internal-format -msgid "%<%%%> constraint used with last operand" -msgstr "restricci \"%%\" utilitzada amb l'ltim operand" - -#: stmt.c:381 -#, gcc-internal-format -msgid "matching constraint not valid in output operand" -msgstr "la restricci coincident no s vlida en l'operand de sortida" - -#: stmt.c:452 -#, fuzzy, gcc-internal-format -msgid "input operand constraint contains %qc" -msgstr "la restricci d'operand d'entrada cont \"%c\"" - -#: stmt.c:494 -#, gcc-internal-format -msgid "matching constraint references invalid operand number" -msgstr "la restricci de coincidncia fa referncia a un nombre d'operand no vlid" - -#: stmt.c:532 -#, fuzzy, gcc-internal-format -msgid "invalid punctuation %qc in constraint" -msgstr "puntuaci no vlida \"%c\" en la restricci" - -#: stmt.c:556 -#, fuzzy, gcc-internal-format -msgid "matching constraint does not allow a register" -msgstr "la restricci coincident no s vlida en l'operand de sortida" - -#: stmt.c:610 -#, fuzzy, gcc-internal-format -msgid "asm-specifier for variable %qs conflicts with asm clobber list" -msgstr "els qualificadors asm per a la variable \"%s\" generen conflicte amb la lista d'agrupaci asm" - -#: stmt.c:702 -#, fuzzy, gcc-internal-format -msgid "unknown register name %qs in %" -msgstr "nom de registre \"%s\" desconegut en \"asm\"" - -#: stmt.c:710 -#, fuzzy, gcc-internal-format -msgid "PIC register %qs clobbered in %" -msgstr "nom de registre desconegut \"%s\" en \"asm\"" - -#: stmt.c:757 -#, fuzzy, gcc-internal-format -msgid "more than %d operands in %" -msgstr "no ms de %d operands en \"asm\"" - -#: stmt.c:820 -#, gcc-internal-format -msgid "output number %d not directly addressable" -msgstr "el nombre de sortida %d no s directament adreable" - -#: stmt.c:903 -#, fuzzy, gcc-internal-format -msgid "asm operand %d probably doesn%'t match constraints" -msgstr "l'operand asm %d probablement no coincideix amb les restriccions" - -#: stmt.c:913 -#, gcc-internal-format -msgid "use of memory input without lvalue in asm operand %d is deprecated" -msgstr "" - -#: stmt.c:1060 -#, gcc-internal-format -msgid "asm clobber conflict with output operand" -msgstr "l'agrupaci asm causa conflictes amb l'operand de sortida" - -#: stmt.c:1065 -#, gcc-internal-format -msgid "asm clobber conflict with input operand" -msgstr "l'agrupaci asm causa conflictes amb l'operand d'entrada" - -#: stmt.c:1143 -#, fuzzy, gcc-internal-format -msgid "too many alternatives in %" -msgstr "massa alternatives en \"asm\"" - -#: stmt.c:1155 -#, fuzzy, gcc-internal-format -msgid "operand constraints for % differ in number of alternatives" -msgstr "les restriccions d'operands per a \"asm\" difereixen en el nombre d'alternatives" - -#: stmt.c:1208 -#, fuzzy, gcc-internal-format -msgid "duplicate asm operand name %qs" -msgstr "nom d'operand asm \"%s\" duplicat" - -#: stmt.c:1306 -#, gcc-internal-format -msgid "missing close brace for named operand" -msgstr "falta la clau final per a l'operand nomenat" - -#: stmt.c:1334 -#, fuzzy, gcc-internal-format -msgid "undefined named operand %qs" -msgstr "operand nomenat no definit \"%s\"" - -#: stmt.c:1482 -#, fuzzy, gcc-internal-format -msgid "%Hvalue computed is not used" -msgstr "l'autmat \"%s\" no s'utilitza" - -#: stor-layout.c:149 -#, fuzzy, gcc-internal-format -msgid "type size can%'t be explicitly evaluated" -msgstr "la grandria del tipus no pot ser avaluat explcitament" - -#: stor-layout.c:151 -#, gcc-internal-format -msgid "variable-size type declared outside of any function" -msgstr "tipus de grandria variable declarat fora de qualsevol funci" - -#: stor-layout.c:467 -#, fuzzy, gcc-internal-format -msgid "size of %q+D is %d bytes" -msgstr "la grandria de \"%s\" s de %d octets" - -#: stor-layout.c:469 -#, fuzzy, gcc-internal-format -msgid "size of %q+D is larger than %wd bytes" -msgstr "la grandria de \"%s\" s major que %d octets" - -#: stor-layout.c:899 -#, fuzzy, gcc-internal-format -msgid "packed attribute causes inefficient alignment for %q+D" -msgstr "l'atribut packed causa una alineaci ineficient per a \"%s\"" - -#: stor-layout.c:902 -#, fuzzy, gcc-internal-format -msgid "packed attribute is unnecessary for %q+D" -msgstr "no s necessari l'atribut packed per a \"%s\"" - -#. No, we need to skip space before this field. -#. Bump the cumulative size to multiple of field alignment. -#: stor-layout.c:919 -#, fuzzy, gcc-internal-format -msgid "padding struct to align %q+D" -msgstr "estructura de farcit per a alinear \"%s\"" - -#: stor-layout.c:1270 -#, gcc-internal-format -msgid "padding struct size to alignment boundary" -msgstr "grandria de l'estructura de farcit pels lmits d'alineaci" - -#: stor-layout.c:1300 -#, fuzzy, gcc-internal-format -msgid "packed attribute causes inefficient alignment for %qs" -msgstr "l'atribut packed causa una alineaci ineficient per a \"%s\"" - -#: stor-layout.c:1304 -#, fuzzy, gcc-internal-format -msgid "packed attribute is unnecessary for %qs" -msgstr "no s necessari l'atribut packed per a \"%s\"" - -#: stor-layout.c:1310 -#, gcc-internal-format -msgid "packed attribute causes inefficient alignment" -msgstr "l'atribut packed causa una alineaci ineficient" - -#: stor-layout.c:1312 -#, gcc-internal-format -msgid "packed attribute is unnecessary" -msgstr "no s necessari l'atribut packed" - -#: stor-layout.c:1842 -#, fuzzy, gcc-internal-format -msgid "alignment of array elements is greater than element size" -msgstr "l'alineaci de \"%s\" s massa granda que l'alineaci mxima del fitxer objecte. S'usa %d." - -#: targhooks.c:120 -#, gcc-internal-format -msgid "__builtin_saveregs not supported by this target" -msgstr "no es dna suport a _builtin_saveregs en aquest objectiu" - -#: tlink.c:483 -#, gcc-internal-format -msgid "repository file '%s' does not contain command-line arguments" -msgstr "" - -#: tlink.c:728 -#, gcc-internal-format -msgid "'%s' was assigned to '%s', but was not defined during recompilation, or vice versa" -msgstr "" - -#: tlink.c:798 -#, gcc-internal-format -msgid "ld returned %d exit status" -msgstr "ld va retornar l'estat de sortida %d" - -#: toplev.c:528 -#, fuzzy, gcc-internal-format -msgid "invalid option argument %qs" -msgstr "opci \"%s\" no vlida" - -#: toplev.c:626 -#, gcc-internal-format -msgid "getting core file size maximum limit: %m" -msgstr "" - -#: toplev.c:629 -#, gcc-internal-format -msgid "setting core file size limit to maximum: %m" -msgstr "" - -#: toplev.c:849 -#, fuzzy, gcc-internal-format -msgid "%q+F declared % but never defined" -msgstr "\"%s\" declarat \"static\" per mai definit" - -#: toplev.c:877 -#, fuzzy, gcc-internal-format -msgid "%q+D defined but not used" -msgstr "\"%s\" definit per no utilitzat" - -#: toplev.c:920 -#, fuzzy, gcc-internal-format -msgid "%qD is deprecated (declared at %s:%d)" -msgstr "\"%s\" s depreciat (declarat a %s:%d)" - -#: toplev.c:943 -#, fuzzy, gcc-internal-format -msgid "%qs is deprecated (declared at %s:%d)" -msgstr "\"%s\" s depreciat (declarat a %s:%d)" - -#: toplev.c:947 -#, gcc-internal-format -msgid "type is deprecated (declared at %s:%d)" -msgstr "type s depreciat (declarat a %s:%d)" - -#: toplev.c:953 -#, fuzzy, gcc-internal-format -msgid "%qs is deprecated" -msgstr "\"%s\" s depreciat" - -#: toplev.c:955 -#, gcc-internal-format -msgid "type is deprecated" -msgstr "type s depreciat" - -#: toplev.c:975 toplev.c:1002 -#, gcc-internal-format -msgid "GCC supports only %d input file changes" -msgstr "" - -#: toplev.c:1160 -#, gcc-internal-format -msgid "unrecognized gcc debugging option: %c" -msgstr "opci de depuraci de gcc no reconeguda: %c" - -#: toplev.c:1411 -#, fuzzy, gcc-internal-format -msgid "can%'t open %s for writing: %m" -msgstr "no es pot obrir %s per a escriptura" - -#: toplev.c:1432 -#, fuzzy, gcc-internal-format -msgid "-frecord-gcc-switches is not supported by the current target" -msgstr "no es dna suport a -fdata-sections en aquest objectiu" - -#: toplev.c:1745 -#, fuzzy, gcc-internal-format -msgid "this target does not support %qs" -msgstr "%s no t suport per a %s" - -#: toplev.c:1794 -#, gcc-internal-format -msgid "instruction scheduling not supported on this target machine" -msgstr "no es dna suport a la planificaci d'instruccions en aquest objectiu" - -#: toplev.c:1798 -#, gcc-internal-format -msgid "this target machine does not have delayed branches" -msgstr "aquesta mquina objectiu no t ramificacions alentides" - -#: toplev.c:1812 -#, gcc-internal-format -msgid "-f%sleading-underscore not supported on this target machine" -msgstr "no es dna suport a -f%sleading-underscore en aquest objectiu" - -#: toplev.c:1885 -#, fuzzy, gcc-internal-format -msgid "target system does not support the \"%s\" debug format" -msgstr "%s no t suport per al format \"%%%s%c\" %s" - -#: toplev.c:1898 -#, gcc-internal-format -msgid "variable tracking requested, but useless unless producing debug info" -msgstr "" - -#: toplev.c:1901 -#, fuzzy, gcc-internal-format -msgid "variable tracking requested, but not supported by this debug format" -msgstr "%s no t suport per al format \"%%%s%c\" %s" - -#: toplev.c:1935 -#, fuzzy, gcc-internal-format -msgid "can%'t open %s: %m" -msgstr "no es pot obrir %s" - -#: toplev.c:1942 -#, gcc-internal-format -msgid "-ffunction-sections not supported for this target" -msgstr "no es dna suport a -ffunction-sections en aquest objectiu" - -#: toplev.c:1947 -#, gcc-internal-format -msgid "-fdata-sections not supported for this target" -msgstr "no es dna suport a -fdata-sections en aquest objectiu" - -#: toplev.c:1954 -#, gcc-internal-format -msgid "-ffunction-sections disabled; it makes profiling impossible" -msgstr "-ffunction-sections desactivat; fa impossible l'anlisi de perfil" - -#: toplev.c:1961 -#, gcc-internal-format -msgid "-fprefetch-loop-arrays not supported for this target" -msgstr "no es dna suport a -fprefetch-loop-arrays en aquest objectiu" - -#: toplev.c:1967 -#, gcc-internal-format -msgid "-fprefetch-loop-arrays not supported for this target (try -march switches)" -msgstr "no es dna suport a -fprefetch-loop-arrays en aquest objectiu (prova opcions -march)" - -#: toplev.c:1976 -#, gcc-internal-format -msgid "-fprefetch-loop-arrays is not supported with -Os" -msgstr "no es dna suport a -fprefetch-loop-arrays amb -Os" - -#: toplev.c:1983 -#, gcc-internal-format -msgid "-ffunction-sections may affect debugging on some targets" -msgstr "-ffunction-sections podria afectar la depuraci en alguns objectius" - -#: toplev.c:1999 -#, fuzzy, gcc-internal-format -msgid "-fstack-protector not supported for this target" -msgstr "no es dna suport a -fdata-sections en aquest objectiu" - -#: toplev.c:2012 -#, gcc-internal-format -msgid "unwind tables currently requires a frame pointer for correctness" -msgstr "" - -#: toplev.c:2198 -#, fuzzy, gcc-internal-format -msgid "error writing to %s: %m" -msgstr "error a l'escriure a %s" - -#: toplev.c:2200 java/jcf-parse.c:1776 -#, fuzzy, gcc-internal-format -msgid "error closing %s: %m" -msgstr "error al tancar %s" - -#: tree-cfg.c:1432 tree-cfg.c:2068 tree-cfg.c:2071 -#, fuzzy, gcc-internal-format -msgid "%Hwill never be executed" -msgstr "la cridada %2d mai s'executa\n" - -#: tree-cfg.c:3134 -#, gcc-internal-format -msgid "SSA name in freelist but still referenced" -msgstr "" - -#: tree-cfg.c:3143 -#, gcc-internal-format -msgid "ASSERT_EXPR with an always-false condition" -msgstr "" - -#: tree-cfg.c:3156 -#, gcc-internal-format -msgid "GIMPLE register modified with BIT_FIELD_REF" -msgstr "" - -#: tree-cfg.c:3191 -#, gcc-internal-format -msgid "invariant not recomputed when ADDR_EXPR changed" -msgstr "" - -#: tree-cfg.c:3197 -#, gcc-internal-format -msgid "constant not recomputed when ADDR_EXPR changed" -msgstr "" - -#: tree-cfg.c:3202 -#, gcc-internal-format -msgid "side effects not recomputed when ADDR_EXPR changed" -msgstr "" - -#: tree-cfg.c:3218 -#, gcc-internal-format -msgid "address taken, but ADDRESSABLE bit not set" -msgstr "" - -#: tree-cfg.c:3228 -#, gcc-internal-format -msgid "non-integral used in condition" -msgstr "" - -#: tree-cfg.c:3233 -#, fuzzy, gcc-internal-format -msgid "invalid conditional operand" -msgstr "restriccions no vlides per a l'operand" - -#: tree-cfg.c:3285 -#, fuzzy, gcc-internal-format -msgid "invalid reference prefix" -msgstr "membre referncia \"%D\" sense inicialitzar" - -#: tree-cfg.c:3296 -#, fuzzy, gcc-internal-format -msgid "invalid operand to plus/minus, type is a pointer" -msgstr "operand no vlid en la instrucci" - -#: tree-cfg.c:3307 -#, fuzzy, gcc-internal-format -msgid "invalid operand to pointer plus, first operand is not a pointer" -msgstr "l'operand base de \"->\" no s un punter" - -#: tree-cfg.c:3315 -#, gcc-internal-format -msgid "invalid operand to pointer plus, second operand is not an integer with type of sizetype." -msgstr "" - -#: tree-cfg.c:3382 tree-cfg.c:3798 -#, fuzzy, gcc-internal-format -msgid "invalid operand in unary expression" -msgstr "operadors no vlids per al binari %s" - -#: tree-cfg.c:3392 -#, fuzzy, gcc-internal-format -msgid "type mismatch in unary expression" -msgstr "els tipus de dades no coincideixen en l'expressi condicional" - -#: tree-cfg.c:3413 -#, fuzzy, gcc-internal-format -msgid "invalid operands in binary expression" -msgstr "operadors no vlids per al binari %s" - -#: tree-cfg.c:3424 -#, fuzzy, gcc-internal-format -msgid "type mismatch in binary expression" -msgstr "els tipus de dades no coincideixen en l'expressi condicional" - -#: tree-cfg.c:3449 -#, fuzzy, gcc-internal-format -msgid "invalid expression for min lvalue" -msgstr "expressi no vlida com a operand" - -#: tree-cfg.c:3456 -#, fuzzy, gcc-internal-format -msgid "invalid operand in indirect reference" -msgstr "operand no vlid en la instrucci" - -#: tree-cfg.c:3463 -#, fuzzy, gcc-internal-format -msgid "type mismatch in indirect reference" -msgstr "els tipus de dades no coincideixen en l'expressi condicional" - -#: tree-cfg.c:3491 -#, fuzzy, gcc-internal-format -msgid "invalid operands to array reference" -msgstr "operadors no vlids per al binari %s" - -#: tree-cfg.c:3502 -#, fuzzy, gcc-internal-format -msgid "type mismatch in array reference" -msgstr "falta subindici en la referncia de la matriu" - -#: tree-cfg.c:3511 -#, fuzzy, gcc-internal-format -msgid "type mismatch in array range reference" -msgstr "falta subindici en la referncia de la matriu" - -#: tree-cfg.c:3522 -#, fuzzy, gcc-internal-format -msgid "type mismatch in real/imagpart reference" -msgstr "els tipus de dades no coincideixen en l'expressi condicional" - -#: tree-cfg.c:3532 -#, fuzzy, gcc-internal-format -msgid "type mismatch in component reference" -msgstr "els tipus de dades no coincideixen en l'expressi condicional" - -#: tree-cfg.c:3586 -#, fuzzy, gcc-internal-format -msgid "invalid operand in conversion" -msgstr "operand no vlid en la instrucci" - -#: tree-cfg.c:3614 -#, fuzzy, gcc-internal-format -msgid "invalid types in nop conversion" -msgstr "tipus \"void\" no vlid per a new" - -#: tree-cfg.c:3628 -#, fuzzy, gcc-internal-format -msgid "invalid operand in int to float conversion" -msgstr "operand no vlid en la instrucci" - -#: tree-cfg.c:3634 -#, fuzzy, gcc-internal-format -msgid "invalid types in conversion to floating point" -msgstr "sufix \"%.*s\" no vlid en la constant de coma flotant" - -#: tree-cfg.c:3647 -#, fuzzy, gcc-internal-format -msgid "invalid operand in float to int conversion" -msgstr "operand no vlid en la instrucci" - -#: tree-cfg.c:3653 -#, fuzzy, gcc-internal-format -msgid "invalid types in conversion to integer" -msgstr "tipus \"void\" no vlid per a new" - -#: tree-cfg.c:3667 -#, fuzzy, gcc-internal-format -msgid "invalid operands in complex expression" -msgstr "operand no vlid en la instrucci" - -#: tree-cfg.c:3680 -#, fuzzy, gcc-internal-format -msgid "type mismatch in complex expression" -msgstr "els tipus de dades no coincideixen en l'expressi condicional" - -#: tree-cfg.c:3694 -#, gcc-internal-format -msgid "constructor not allowed for non-vector types" -msgstr "" - -#: tree-cfg.c:3711 -#, fuzzy, gcc-internal-format -msgid "invalid operands in shift expression" -msgstr "operand no vlid en la instrucci" - -#: tree-cfg.c:3717 -#, fuzzy, gcc-internal-format -msgid "type mismatch in shift expression" -msgstr "els tipus de dades no coincideixen en l'expressi condicional" - -#: tree-cfg.c:3735 -#, fuzzy, gcc-internal-format -msgid "invalid (pointer) operands to plus/minus" -msgstr "operadors no vlids per al binari %s" - -#: tree-cfg.c:3748 -#, fuzzy, gcc-internal-format -msgid "invalid operands in pointer plus expression" -msgstr "operand no vlid en la instrucci" - -#: tree-cfg.c:3755 -#, fuzzy, gcc-internal-format -msgid "type mismatch in pointer plus expression" -msgstr "els tipus de dades no coincideixen en l'expressi condicional" - -#: tree-cfg.c:3774 -#, fuzzy, gcc-internal-format -msgid "invalid operands in conditional expression" -msgstr "tipus signed i unsigned en l'expressi condicional" - -#: tree-cfg.c:3807 -#, fuzzy, gcc-internal-format -msgid "type mismatch in address expression" -msgstr "els tipus de dades no coincideixen en l'expressi condicional" - -#: tree-cfg.c:3827 -#, fuzzy, gcc-internal-format -msgid "invalid operands in truth expression" -msgstr "operand no vlid en la instrucci" - -#: tree-cfg.c:3836 -#, fuzzy, gcc-internal-format -msgid "type mismatch in binary truth expression" -msgstr "els tipus de dades no coincideixen en l'expressi condicional" - -#: tree-cfg.c:3852 -#, fuzzy, gcc-internal-format -msgid "invalid operand in unary not" -msgstr "operadors no vlids per al binari %s" - -#: tree-cfg.c:3861 -#, fuzzy, gcc-internal-format -msgid "type mismatch in not expression" -msgstr "els tipus de dades no coincideixen en l'expressi condicional" - -#: tree-cfg.c:3900 -#, fuzzy, gcc-internal-format -msgid "invalid operands in comparison expression" -msgstr "s no vlid de l'expressi void" - -#: tree-cfg.c:3917 -#, fuzzy, gcc-internal-format -msgid "type mismatch in comparison expression" -msgstr "els tipus de dades no coincideixen en l'expressi condicional" - -#: tree-cfg.c:3947 -#, fuzzy, gcc-internal-format -msgid "non-trivial conversion at assignment" -msgstr "l-value no vlid en l'assignaci" - -#: tree-cfg.c:3988 tree-cfg.c:4136 -#, fuzzy, gcc-internal-format -msgid "is not a valid GIMPLE statement" -msgstr "\"%E\" no s un argument de patr vlid" - -#: tree-cfg.c:4015 -#, fuzzy, gcc-internal-format -msgid "invalid operand to switch statement" -msgstr "no vlid operand per al codi %%s" - -#: tree-cfg.c:4026 -#, fuzzy, gcc-internal-format -msgid "type error in return expression" -msgstr " en expressi thrown" - -#: tree-cfg.c:4104 -#, fuzzy, gcc-internal-format -msgid "verify_gimple failed" -msgstr "verify_flow_info fallat" - -#: tree-cfg.c:4156 -#, gcc-internal-format -msgid "statement marked for throw, but doesn%'t" -msgstr "" - -#: tree-cfg.c:4161 -#, gcc-internal-format -msgid "statement marked for throw in middle of block" -msgstr "" - -#: tree-cfg.c:4232 -#, fuzzy, gcc-internal-format -msgid "unexpected non-tuple" -msgstr "operand inesperat" - -#: tree-cfg.c:4261 -#, gcc-internal-format -msgid "Dead STMT in EH table" -msgstr "" - -#: tree-cfg.c:4295 -#, gcc-internal-format -msgid "bb_for_stmt (phi) is set to a wrong basic block" -msgstr "" - -#: tree-cfg.c:4306 -#, fuzzy, gcc-internal-format -msgid "missing PHI def" -msgstr "falta valor" - -#: tree-cfg.c:4317 -#, gcc-internal-format -msgid "PHI def is not a GIMPLE value" -msgstr "" - -#: tree-cfg.c:4333 tree-cfg.c:4359 -#, gcc-internal-format -msgid "incorrect sharing of tree nodes" -msgstr "" - -#: tree-cfg.c:4350 -#, gcc-internal-format -msgid "bb_for_stmt (stmt) is set to a wrong basic block" -msgstr "" - -#: tree-cfg.c:4373 -#, fuzzy, gcc-internal-format -msgid "verify_stmts failed" -msgstr "verify_flow_info fallat" - -#: tree-cfg.c:4396 -#, gcc-internal-format -msgid "ENTRY_BLOCK has IL associated with it" -msgstr "" - -#: tree-cfg.c:4402 -#, gcc-internal-format -msgid "EXIT_BLOCK has IL associated with it" -msgstr "" - -#: tree-cfg.c:4409 -#, gcc-internal-format -msgid "fallthru to exit from bb %d" -msgstr "" - -#: tree-cfg.c:4431 -#, gcc-internal-format -msgid "nonlocal label " -msgstr "" - -#: tree-cfg.c:4440 tree-cfg.c:4450 tree-cfg.c:4475 -#, gcc-internal-format -msgid "label " -msgstr "" - -#: tree-cfg.c:4465 -#, fuzzy, gcc-internal-format -msgid "control flow in the middle of basic block %d" -msgstr "control de fluix insn dintre el bloc bsic" - -#: tree-cfg.c:4495 -#, fuzzy, gcc-internal-format -msgid "fallthru edge after a control statement in bb %d" -msgstr "Vora de caiguda desprs del salt incondicional %i" - -#: tree-cfg.c:4508 -#, gcc-internal-format -msgid "true/false edge after a non-COND_EXPR in bb %d" -msgstr "" - -#: tree-cfg.c:4524 -#, gcc-internal-format -msgid "COND_EXPR with code in branches at the end of bb %d" -msgstr "" - -#: tree-cfg.c:4538 tree-cfg.c:4560 tree-cfg.c:4573 tree-cfg.c:4644 -#, gcc-internal-format -msgid "wrong outgoing edge flags at end of bb %d" -msgstr "" - -#: tree-cfg.c:4548 -#, fuzzy, gcc-internal-format -msgid "explicit goto at end of bb %d" -msgstr "instanciaci explcita de \"%#D\"" - -#: tree-cfg.c:4578 -#, gcc-internal-format -msgid "return edge does not point to exit in bb %d" -msgstr "" - -#: tree-cfg.c:4611 -#, gcc-internal-format -msgid "found default case not at end of case vector" -msgstr "" - -#: tree-cfg.c:4617 -#, fuzzy, gcc-internal-format -msgid "case labels not sorted: " -msgstr "els trampolins no tenen suport" - -#: tree-cfg.c:4628 -#, gcc-internal-format -msgid "no default case found at end of case vector" -msgstr "" - -#: tree-cfg.c:4636 -#, gcc-internal-format -msgid "extra outgoing edge %d->%d" -msgstr "" - -#: tree-cfg.c:4658 -#, gcc-internal-format -msgid "missing edge %i->%i" -msgstr "" - -#: tree-cfg.c:6941 tree-cfg.c:6945 -#, fuzzy, gcc-internal-format -msgid "%H% function does return" -msgstr "la funci \"noreturn\" retorna" - -#: tree-cfg.c:6967 tree-cfg.c:6972 -#, fuzzy, gcc-internal-format -msgid "%Hcontrol reaches end of non-void function" -msgstr "el control arriba a el final d'una funci que no s void" - -#: tree-cfg.c:7033 -#, fuzzy, gcc-internal-format -msgid "%Jfunction might be possible candidate for attribute %" -msgstr "la funci pot ser un candidat possible per a l'atribut \"noreturn\"" - -#: tree-dump.c:933 -#, fuzzy, gcc-internal-format -msgid "could not open dump file %qs: %s" -msgstr "no es pot obrir el fitxer de dump \"%s\"" - -#: tree-dump.c:1068 -#, fuzzy, gcc-internal-format -msgid "ignoring unknown option %q.*s in %<-fdump-%s%>" -msgstr "ignorant l'opci desconeguda \"%.*s\" dintre \"-f%s\"" - -#: tree-eh.c:1788 -#, fuzzy, gcc-internal-format -msgid "EH edge %i->%i is missing" -msgstr "falta l'argument per a \"-%s\"" - -#: tree-eh.c:1793 -#, gcc-internal-format -msgid "EH edge %i->%i miss EH flag" -msgstr "" - -#. ??? might not be mistake. -#: tree-eh.c:1799 -#, gcc-internal-format -msgid "EH edge %i->%i has duplicated regions" -msgstr "" - -#: tree-eh.c:1833 -#, gcc-internal-format -msgid "BB %i can not throw but has EH edges" -msgstr "" - -#: tree-eh.c:1840 -#, gcc-internal-format -msgid "BB %i last statement has incorrectly set region" -msgstr "" - -#: tree-eh.c:1851 -#, gcc-internal-format -msgid "unnecessary EH edge %i->%i" -msgstr "" - -#: tree-inline.c:1830 -#, 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:1842 -#, gcc-internal-format -msgid "function %q+F can never be inlined because it uses setjmp" -msgstr "" - -#: tree-inline.c:1856 -#, gcc-internal-format -msgid "function %q+F can never be inlined because it uses variable argument lists" -msgstr "" - -#: tree-inline.c:1867 -#, gcc-internal-format -msgid "function %q+F can never be inlined because it uses setjmp-longjmp exception handling" -msgstr "" - -#: tree-inline.c:1874 -#, gcc-internal-format -msgid "function %q+F can never be inlined because it uses non-local goto" -msgstr "" - -#: tree-inline.c:1885 -#, gcc-internal-format -msgid "function %q+F can never be inlined because it uses __builtin_return or __builtin_apply_args" -msgstr "" - -#: tree-inline.c:1904 -#, gcc-internal-format -msgid "function %q+F can never be inlined because it contains a computed goto" -msgstr "" - -#: tree-inline.c:1918 -#, gcc-internal-format -msgid "function %q+F can never be inlined because it receives a non-local goto" -msgstr "" - -#: tree-inline.c:1943 -#, gcc-internal-format -msgid "function %q+F can never be inlined because it uses variable sized variables" -msgstr "" - -#: tree-inline.c:2005 -#, gcc-internal-format -msgid "function %q+F can never be inlined because it is suppressed using -fno-inline" -msgstr "" - -#: tree-inline.c:2019 -#, gcc-internal-format -msgid "function %q+F can never be inlined because it uses attributes conflicting with inlining" -msgstr "" - -#: tree-inline.c:2588 tree-inline.c:2598 -#, fuzzy, gcc-internal-format -msgid "inlining failed in call to %q+F: %s" -msgstr "el \"inlining\" ha fallat en la cridada a \"%s\"" - -#: tree-inline.c:2589 tree-inline.c:2600 -#, gcc-internal-format -msgid "called from here" -msgstr "cridat des d'aqu" - -#: tree-mudflap.c:860 -#, gcc-internal-format -msgid "mudflap checking not yet implemented for ARRAY_RANGE_REF" -msgstr "" - -#: tree-mudflap.c:1044 -#, gcc-internal-format -msgid "mudflap cannot track %qs in stub function" -msgstr "" - -#: tree-mudflap.c:1272 -#, gcc-internal-format -msgid "mudflap cannot track unknown size extern %qs" -msgstr "" - -#: tree-nomudflap.c:50 -#, fuzzy, gcc-internal-format -msgid "mudflap: this language is not supported" -msgstr "els trampolins no tenen suport" - -#: tree-optimize.c:430 -#, fuzzy, gcc-internal-format -msgid "size of return value of %q+D is %u bytes" -msgstr "la grandria del valor de retorn de \"%s\" s de %u octets" - -#: tree-optimize.c:433 -#, fuzzy, gcc-internal-format -msgid "size of return value of %q+D is larger than %wd bytes" -msgstr "la grandria del valor de retorn de \"%s\" s ms gran que %d octets" - -#: tree-outof-ssa.c:637 tree-outof-ssa.c:688 tree-ssa-coalesce.c:936 -#: tree-ssa-coalesce.c:951 tree-ssa-coalesce.c:1163 tree-ssa-live.c:1043 -#, gcc-internal-format -msgid "SSA corruption" -msgstr "" - -#: tree-outof-ssa.c:1105 -#, gcc-internal-format -msgid " Pending stmts not issued on PRED edge (%d, %d)\n" -msgstr "" - -#: tree-outof-ssa.c:1111 -#, gcc-internal-format -msgid " Pending stmts not issued on SUCC edge (%d, %d)\n" -msgstr "" - -#: tree-outof-ssa.c:1118 -#, gcc-internal-format -msgid " Pending stmts not issued on ENTRY edge (%d, %d)\n" -msgstr "" - -#: tree-outof-ssa.c:1124 -#, gcc-internal-format -msgid " Pending stmts not issued on EXIT edge (%d, %d)\n" -msgstr "" - -#: tree-profile.c:351 -#, fuzzy, gcc-internal-format -msgid "unimplemented functionality" -msgstr "En la declaraci de la funci" - -#: tree-ssa-alias-warnings.c:814 -#, gcc-internal-format -msgid "%Hlikely type-punning may break strict-aliasing rules: object %<%s%s%> of main type %qT is referenced at or around %s:%d and may be aliased to object %<%s%s%> of main type %qT which is referenced at or around %s:%d." -msgstr "" - -#: tree-ssa.c:110 -#, gcc-internal-format -msgid "expected an SSA_NAME object" -msgstr "" - -#: tree-ssa.c:116 -#, gcc-internal-format -msgid "type mismatch between an SSA_NAME and its symbol" -msgstr "" - -#: tree-ssa.c:122 -#, gcc-internal-format -msgid "found an SSA_NAME that had been released into the free pool" -msgstr "" - -#: tree-ssa.c:128 -#, gcc-internal-format -msgid "found a virtual definition for a GIMPLE register" -msgstr "" - -#: tree-ssa.c:134 -#, fuzzy, gcc-internal-format -msgid "found a real definition for a non-register" -msgstr "la definici de la funci ho va declarar com \"register\"" - -#: tree-ssa.c:141 -#, gcc-internal-format -msgid "found real variable when subvariables should have appeared" -msgstr "" - -#: tree-ssa.c:148 -#, gcc-internal-format -msgid "found a default name with a non-empty defining statement" -msgstr "" - -#: tree-ssa.c:176 -#, gcc-internal-format -msgid "SSA_NAME created in two different blocks %i and %i" -msgstr "" - -#: tree-ssa.c:185 -#, gcc-internal-format -msgid "SSA_NAME_DEF_STMT is wrong" -msgstr "" - -#: tree-ssa.c:237 -#, fuzzy, gcc-internal-format -msgid "missing definition" -msgstr "falta valor inicial" - -#: tree-ssa.c:243 -#, gcc-internal-format -msgid "definition in block %i does not dominate use in block %i" -msgstr "" - -#: tree-ssa.c:251 -#, gcc-internal-format -msgid "definition in block %i follows the use" -msgstr "" - -#: tree-ssa.c:258 -#, gcc-internal-format -msgid "SSA_NAME_OCCURS_IN_ABNORMAL_PHI should be set" -msgstr "" - -#: tree-ssa.c:266 -#, gcc-internal-format -msgid "no immediate_use list" -msgstr "" - -#: tree-ssa.c:278 -#, 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:326 -#, fuzzy, gcc-internal-format -msgid "PHI argument is missing for edge %d->%d" -msgstr "falta l'argument per omissi per al parmetre %P de \"%+#D\"" - -#: tree-ssa.c:335 -#, fuzzy, gcc-internal-format -msgid "PHI argument is not SSA_NAME, or invariant" -msgstr "l'argument \"%d\" no s una constant" - -#: tree-ssa.c:348 -#, gcc-internal-format -msgid "wrong edge %d->%d for PHI argument" -msgstr "" - -#: tree-ssa.c:398 -#, gcc-internal-format -msgid "non-addressable variable inside an alias set" -msgstr "" - -#: tree-ssa.c:409 -#, fuzzy, gcc-internal-format -msgid "verify_flow_insensitive_alias_info failed" -msgstr "verify_flow_info fallat" - -#: tree-ssa.c:451 -#, gcc-internal-format -msgid "dereferenced pointers should have a name or a symbol tag" -msgstr "" - -#: tree-ssa.c:458 -#, gcc-internal-format -msgid "pointers with a memory tag, should have points-to sets" -msgstr "" - -#: tree-ssa.c:470 -#, gcc-internal-format -msgid "pointer escapes but its name tag is not call-clobbered" -msgstr "" - -#: tree-ssa.c:480 -#, fuzzy, gcc-internal-format -msgid "verify_flow_sensitive_alias_info failed" -msgstr "verify_flow_info fallat" - -#: tree-ssa.c:508 -#, gcc-internal-format -msgid "variable in call_clobbered_vars but not marked call_clobbered" -msgstr "" - -#: tree-ssa.c:527 -#, gcc-internal-format -msgid "variable marked call_clobbered but not in call_clobbered_vars bitmap." -msgstr "" - -#: tree-ssa.c:537 -#, fuzzy, gcc-internal-format -msgid "verify_call_clobbering failed" -msgstr "verify_flow_info fallat" - -#: tree-ssa.c:558 -#, gcc-internal-format -msgid "Memory partitions should have at least one symbol" -msgstr "" - -#: tree-ssa.c:568 -#, gcc-internal-format -msgid "Partitioned symbols should belong to exactly one partition" -msgstr "" - -#: tree-ssa.c:581 -#, fuzzy, gcc-internal-format -msgid "verify_memory_partitions failed" -msgstr "verify_flow_info fallat" - -#: tree-ssa.c:653 -#, gcc-internal-format -msgid "AUX pointer initialized for edge %d->%d" -msgstr "" - -#: tree-ssa.c:677 -#, gcc-internal-format -msgid "stmt (%p) marked modified after optimization pass: " -msgstr "" - -#: tree-ssa.c:697 -#, gcc-internal-format -msgid "statement makes a memory store, but has no VDEFS" -msgstr "" - -#: tree-ssa.c:707 tree-ssa.c:717 -#, fuzzy, gcc-internal-format -msgid "in statement" -msgstr "En la declaraci de la funci" - -#: tree-ssa.c:756 -#, fuzzy, gcc-internal-format -msgid "verify_ssa failed" -msgstr "verify_flow_info fallat" - -#: tree-ssa.c:1284 -#, fuzzy, gcc-internal-format -msgid "%J%qD was declared here" -msgstr "%Jes va declarar \"%D\" prviament aqu" - -#. We only do data flow with SSA_NAMEs, so that's all we -#. can warn about. -#: tree-ssa.c:1302 -#, fuzzy, gcc-internal-format -msgid "%H%qD is used uninitialized in this function" -msgstr "%J\"%D\" podria ser usat sense iniciar en aquesta funci" - -#: tree-ssa.c:1340 -#, fuzzy, gcc-internal-format -msgid "%H%qD may be used uninitialized in this function" -msgstr "%J\"%D\" podria ser usat sense iniciar en aquesta funci" - -#: tree-vrp.c:4374 -#, fuzzy, gcc-internal-format -msgid "%Harray subscript is outside array bounds" -msgstr "el subindici de la matriu no s un enter" - -#: tree-vrp.c:4388 -#, fuzzy, gcc-internal-format -msgid "%Harray subscript is above array bounds" -msgstr "el subindici de la matriu no s un enter" - -#: tree-vrp.c:4395 -#, fuzzy, gcc-internal-format -msgid "%Harray subscript is below array bounds" -msgstr "el subindici de la matriu no s un enter" - -#: tree-vrp.c:5042 -#, gcc-internal-format -msgid "assuming signed overflow does not occur when simplifying conditional to constant" -msgstr "" - -#: tree-vrp.c:5048 -#, gcc-internal-format -msgid "assuming signed overflow does not occur when simplifying conditional" -msgstr "" - -#: tree.c:3951 -#, gcc-internal-format -msgid "%q+D already declared with dllexport attribute: dllimport ignored" -msgstr "" - -#: tree.c:3963 -#, gcc-internal-format -msgid "%q+D redeclared without dllimport attribute after being referenced with dll linkage" -msgstr "" - -#: tree.c:3979 -#, gcc-internal-format -msgid "%q+D redeclared without dllimport attribute: previous dllimport ignored" -msgstr "" - -#: tree.c:4038 tree.c:4050 config/darwin.c:1458 config/arm/arm.c:3099 -#: config/arm/arm.c:3127 config/avr/avr.c:4598 config/h8300/h8300.c:5281 -#: config/h8300/h8300.c:5305 config/i386/i386.c:3056 config/i386/i386.c:22515 -#: config/ia64/ia64.c:586 config/m68hc11/m68hc11.c:1118 -#: config/rs6000/rs6000.c:19657 config/sh/symbian.c:408 -#: config/sh/symbian.c:415 -#, fuzzy, gcc-internal-format -msgid "%qs attribute ignored" -msgstr "s'ignora l'atribut \"%s\"" - -#: tree.c:4066 -#, fuzzy, gcc-internal-format -msgid "inline function %q+D declared as dllimport: attribute ignored" -msgstr "la funci inline \"%s\" est declarada com dllimport: s'ignora l'atribut." - -#: tree.c:4074 -#, fuzzy, gcc-internal-format -msgid "function %q+D definition is marked dllimport" -msgstr "la definici de la funci \"%s\" est marcada com dllimport" - -#: tree.c:4082 config/sh/symbian.c:430 -#, fuzzy, gcc-internal-format -msgid "variable %q+D definition is marked dllimport" -msgstr "la variable \"%s\" est marcada com dllimport" - -#: tree.c:4105 config/sh/symbian.c:505 -#, gcc-internal-format -msgid "external linkage required for symbol %q+D because of %qs attribute" -msgstr "" - -#: tree.c:4119 -#, gcc-internal-format -msgid "%qs implies default visibility, but %qD has already been declared with a different visibility" -msgstr "" - -#: tree.c:5632 -#, gcc-internal-format -msgid "arrays of functions are not meaningful" -msgstr "les matrius de funcions no tenen significat" - -#: tree.c:5785 -#, gcc-internal-format -msgid "function return type cannot be function" -msgstr "el tipus de retorn d'una funci no pot ser una funci" - -#: tree.c:6802 tree.c:6887 tree.c:6948 -#, fuzzy, gcc-internal-format -msgid "tree check: %s, have %s in %s, at %s:%d" -msgstr "revisi d'arbre: s'esperava %s, es t %s en %s, en %s:%d" - -#: tree.c:6839 -#, fuzzy, gcc-internal-format -msgid "tree check: expected none of %s, have %s in %s, at %s:%d" -msgstr "revisi d'arbre: s'esperava %s, es t %s en %s, en %s:%d" - -#: tree.c:6852 -#, fuzzy, gcc-internal-format -msgid "tree check: expected class %qs, have %qs (%s) in %s, at %s:%d" -msgstr "revisi d'arbre: s'esperava classe \"%c\", es t \"%c\" (%s) en %s, en %s:%d" - -#: tree.c:6901 -#, fuzzy, gcc-internal-format -msgid "tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d" -msgstr "revisi d'arbre: s'esperava classe \"%c\", es t \"%c\" (%s) en %s, en %s:%d" - -#: tree.c:6914 -#, fuzzy, gcc-internal-format -msgid "tree check: expected omp_clause %s, have %s in %s, at %s:%d" -msgstr "revisi d'arbre: s'esperava %s, es t %s en %s, en %s:%d" - -#: tree.c:6974 -#, fuzzy, gcc-internal-format -msgid "tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d" -msgstr "revisi d'arbre: s'esperava %s, es t %s en %s, en %s:%d" - -#: tree.c:6988 -#, gcc-internal-format -msgid "tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d" -msgstr "revisi d'arbre: accs de *elt %d de tree_vec amb %d elts en %s, en %s:%d" - -#: tree.c:7000 -#, fuzzy, gcc-internal-format -msgid "tree check: accessed elt %d of phi_node with %d elts in %s, at %s:%d" -msgstr "revisi d'arbre: accs de *elt %d de tree_vec amb %d elts en %s, en %s:%d" - -#: tree.c:7013 -#, fuzzy, gcc-internal-format -msgid "tree check: accessed operand %d of %s with %d operands in %s, at %s:%d" -msgstr "revisi d'arbre: accs de *elt %d de tree_vec amb %d elts en %s, en %s:%d" - -#: tree.c:7026 -#, fuzzy, gcc-internal-format -msgid "tree check: accessed operand %d of omp_clause %s with %d operands in %s, at %s:%d" -msgstr "revisi d'arbre: accs de *elt %d de tree_vec amb %d elts en %s, en %s:%d" - -#: value-prof.c:351 -#, gcc-internal-format -msgid "Dead histogram" -msgstr "" - -#: value-prof.c:380 -#, gcc-internal-format -msgid "Histogram value statement does not correspond to statement it is associated with" -msgstr "" - -#: value-prof.c:393 -#, fuzzy, gcc-internal-format -msgid "verify_histograms failed" -msgstr "verify_flow_info fallat" - -#: value-prof.c:434 -#, gcc-internal-format -msgid "%HCorrupted value profile: %s profiler overall count (%d) does not match BB count (%d)" -msgstr "" - -#: varasm.c:546 -#, fuzzy, gcc-internal-format -msgid "%+D causes a section type conflict" -msgstr "%s causa un conflicte de tipus de secci" - -#: varasm.c:1089 -#, fuzzy, gcc-internal-format -msgid "alignment of %q+D is greater than maximum object file alignment. Using %d" -msgstr "l'alineaci de \"%s\" s massa granda que l'alineaci mxima del fitxer objecte. S'usa %d." - -#: varasm.c:1310 varasm.c:1318 -#, fuzzy, gcc-internal-format -msgid "register name not specified for %q+D" -msgstr "no s'especifica nom de registre per a \"%s\"" - -#: varasm.c:1320 -#, fuzzy, gcc-internal-format -msgid "invalid register name for %q+D" -msgstr "nom de registre no vlid per a \"%s\"" - -#: varasm.c:1322 -#, fuzzy, gcc-internal-format -msgid "data type of %q+D isn%'t suitable for a register" -msgstr "el tipus de dades de \"%s\" no s adequat per a un registre" - -#: varasm.c:1325 -#, fuzzy, gcc-internal-format -msgid "register specified for %q+D isn%'t suitable for data type" -msgstr "el registre especificat per \"%s\" no s adequat per al tipus de dades" - -#: varasm.c:1335 -#, gcc-internal-format -msgid "global register variable has initial value" -msgstr "la variable de registre global t valor inicial" - -#: varasm.c:1339 -#, gcc-internal-format -msgid "optimization may eliminate reads and/or writes to register variables" -msgstr "" - -#: varasm.c:1377 -#, fuzzy, gcc-internal-format -msgid "register name given for non-register variable %q+D" -msgstr "nom de registre donat per a una variable \"%s\" que no s registre" - -#: varasm.c:1446 -#, fuzzy, gcc-internal-format -msgid "global destructors not supported on this target" -msgstr "no es dna suport a lmits de pila en aquest objectiu" - -#: varasm.c:1512 -#, fuzzy, gcc-internal-format -msgid "global constructors not supported on this target" -msgstr "no es dna suport a lmits de pila en aquest objectiu" - -#: varasm.c:1898 -#, gcc-internal-format -msgid "thread-local COMMON data not implemented" -msgstr "" - -#: varasm.c:1927 -#, fuzzy, gcc-internal-format -msgid "requested alignment for %q+D is greater than implemented alignment of %wu" -msgstr "l'alineaci sollicitada per a %s s massa granda que l'alineaci implementada de %d" - -#: varasm.c:4386 -#, fuzzy, gcc-internal-format -msgid "initializer for integer/fixed-point value is too complicated" -msgstr "el assignador per a un valor enter s massa complicat" - -#: varasm.c:4391 -#, gcc-internal-format -msgid "initializer for floating value is not a floating constant" -msgstr "el assignador per a un valor de coma flotant no s una constant de coma flotant" - -#: varasm.c:4664 -#, fuzzy, gcc-internal-format -msgid "invalid initial value for member %qs" -msgstr "valor inicial no vlid per al membre \"%s\"" - -#: varasm.c:4864 varasm.c:4908 -#, fuzzy, gcc-internal-format -msgid "weak declaration of %q+D must precede definition" -msgstr "la declaraci feble de \"%s\" ha de precedir la definici" - -#: varasm.c:4872 -#, fuzzy, gcc-internal-format -msgid "weak declaration of %q+D after first use results in unspecified behavior" -msgstr "la declaraci feble de \"%s\" desprs del primer s resulta en una conducta no especificada" - -#: varasm.c:4906 -#, fuzzy, gcc-internal-format -msgid "weak declaration of %q+D must be public" -msgstr "la declaraci feble de \"%s\" ha de ser pblica" - -#: varasm.c:4915 -#, fuzzy, gcc-internal-format -msgid "weak declaration of %q+D not supported" -msgstr "no es dna suport a la declaraci feble de \"%s\"" - -#: varasm.c:4941 -#, gcc-internal-format -msgid "only weak aliases are supported in this configuration" -msgstr "noms els aliessis febles tenen suport en aquesta configuraci" - -#: varasm.c:5176 -#, fuzzy, gcc-internal-format -msgid "%Jweakref is not supported in this configuration" -msgstr "%s no t suport en aquesta configuraci" - -#: varasm.c:5257 -#, fuzzy, gcc-internal-format -msgid "%q+D aliased to undefined symbol %qs" -msgstr "s no vlid del tipus indefinit \"%s %s\"" - -#: varasm.c:5262 -#, gcc-internal-format -msgid "%q+D aliased to external symbol %qs" -msgstr "" - -#: varasm.c:5301 -#, gcc-internal-format -msgid "weakref %q+D ultimately targets itself" -msgstr "" - -#: varasm.c:5310 -#, fuzzy, gcc-internal-format -msgid "weakref %q+D must have static linkage" -msgstr "no es pot declarar que la funci membre \"%D\" tingui enllaat esttic" - -#: varasm.c:5316 -#, fuzzy, gcc-internal-format -msgid "%Jalias definitions not supported in this configuration" -msgstr "les definicions d'alies no tenen suport en aquesta configuraci; ignorades" - -#: varasm.c:5321 -#, fuzzy, gcc-internal-format -msgid "%Jonly weak aliases are supported in this configuration" -msgstr "noms els aliessis febles tenen suport en aquesta configuraci" - -#: varasm.c:5378 -#, gcc-internal-format -msgid "visibility attribute not supported in this configuration; ignored" -msgstr "els atributs de visibilitat no tenen suport en aquesta configuraci; ignorats" - -#: varray.c:195 -#, gcc-internal-format -msgid "virtual array %s[%lu]: element %lu out of bounds in %s, at %s:%d" -msgstr "matriu virtual %s[%lu]: l'element %lu est fora dels lmits en %s, en %s:%d" - -#: varray.c:205 -#, gcc-internal-format -msgid "underflowed virtual array %s in %s, at %s:%d" -msgstr "" - -#: vec.c:233 -#, 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 -#, fuzzy, gcc-internal-format -msgid "no sclass for %s stab (0x%x)" -msgstr "no hi ha sclass per al stab %s (0x%x)\n" - -#: config/darwin-c.c:84 -#, gcc-internal-format -msgid "too many #pragma options align=reset" -msgstr "massa opcions #pragma align=reset" - -#: config/darwin-c.c:104 config/darwin-c.c:107 config/darwin-c.c:109 -#: config/darwin-c.c:111 -#, gcc-internal-format -msgid "malformed '#pragma options', ignoring" -msgstr "\"#pragma opcions\" malformat, ignorant" - -#: config/darwin-c.c:114 -#, gcc-internal-format -msgid "junk at end of '#pragma options'" -msgstr "escombraries al final de \"#pragma opcions\"" - -#: config/darwin-c.c:124 -#, gcc-internal-format -msgid "malformed '#pragma options align={mac68k|power|reset}', ignoring" -msgstr "\"#pragma opcions align={mac68k|power|reset}\" malformat, ignorant" - -#: config/darwin-c.c:136 -#, gcc-internal-format -msgid "missing '(' after '#pragma unused', ignoring" -msgstr "\"(\" faltant desprs de '#pragma unused', ignorant" - -#: config/darwin-c.c:154 -#, gcc-internal-format -msgid "missing ')' after '#pragma unused', ignoring" -msgstr "\")\" faltant desprs de '#pragma unused', ignorant" - -#: config/darwin-c.c:157 -#, gcc-internal-format -msgid "junk at end of '#pragma unused'" -msgstr "escombraries al final de \"#pragma unused\"" - -#: config/darwin-c.c:168 -#, fuzzy, gcc-internal-format -msgid "malformed '#pragma ms_struct', ignoring" -msgstr "\"#pragma opcions\" malformat, ignorant" - -#: config/darwin-c.c:176 -#, fuzzy, gcc-internal-format -msgid "malformed '#pragma ms_struct {on|off|reset}', ignoring" -msgstr "\"#pragma opcions\" malformat, ignorant" - -#: config/darwin-c.c:179 -#, fuzzy, gcc-internal-format -msgid "junk at end of '#pragma ms_struct'" -msgstr "escombraries al final de \"#pragma %s\"" - -#: config/darwin-c.c:405 -#, gcc-internal-format -msgid "subframework include %s conflicts with framework include" -msgstr "" - -#: config/darwin-c.c:588 -#, gcc-internal-format -msgid "Unknown value %qs of -mmacosx-version-min" -msgstr "" - -#: config/darwin.c:1431 -#, gcc-internal-format -msgid "%<%s%> 2.95 vtable-compatibility attribute applies only when compiling a kext" -msgstr "" - -#: config/darwin.c:1438 -#, gcc-internal-format -msgid "%<%s%> 2.95 vtable-compatibility attribute applies only to C++ classes" -msgstr "" - -#: config/darwin.c:1563 -#, fuzzy, gcc-internal-format -msgid "internal and protected visibility attributes not supported in this configuration; ignored" -msgstr "els atributs de visibilitat no tenen suport en aquesta configuraci; ignorats" - -#: config/host-darwin.c:62 -#, gcc-internal-format -msgid "couldn't unmap pch_address_space: %m" -msgstr "" - -#: config/sol2-c.c:93 config/sol2-c.c:109 -#, fuzzy, gcc-internal-format -msgid "malformed %<#pragma align%>, ignoring" -msgstr "#pragma align mal format - ignorat" - -#: config/sol2-c.c:102 -#, fuzzy, gcc-internal-format -msgid "invalid alignment for %<#pragma align%>, ignoring" -msgstr "#pragma align mal format - ignorat" - -#: config/sol2-c.c:117 -#, gcc-internal-format -msgid "%<#pragma align%> must appear before the declaration of %D, ignoring" -msgstr "" - -#: config/sol2-c.c:129 config/sol2-c.c:141 -#, fuzzy, gcc-internal-format -msgid "malformed %<#pragma align%>" -msgstr "secci #pragma builtin malformada" - -#: config/sol2-c.c:136 -#, fuzzy, gcc-internal-format -msgid "junk at end of %<#pragma align%>" -msgstr "escombraries al final de #pragma %s" - -#: config/sol2-c.c:157 config/sol2-c.c:164 -#, fuzzy, gcc-internal-format -msgid "malformed %<#pragma init%>, ignoring" -msgstr "\"#pragma opcions\" malformat, ignorant" - -#: config/sol2-c.c:187 config/sol2-c.c:199 -#, fuzzy, gcc-internal-format -msgid "malformed %<#pragma init%>" -msgstr "secci #pragma builtin malformada" - -#: config/sol2-c.c:194 -#, fuzzy, gcc-internal-format -msgid "junk at end of %<#pragma init%>" -msgstr "escombraries al final de #pragma %s" - -#: config/sol2-c.c:215 config/sol2-c.c:222 -#, fuzzy, gcc-internal-format -msgid "malformed %<#pragma fini%>, ignoring" -msgstr "\"#pragma opcions\" malformat, ignorant" - -#: config/sol2-c.c:245 config/sol2-c.c:257 -#, fuzzy, gcc-internal-format -msgid "malformed %<#pragma fini%>" -msgstr "secci #pragma builtin malformada" - -#: config/sol2-c.c:252 -#, fuzzy, gcc-internal-format -msgid "junk at end of %<#pragma fini%>" -msgstr "escombraries al final de #pragma %s" - -#: config/sol2.c:53 -#, gcc-internal-format -msgid "ignoring %<#pragma align%> for explicitly aligned %q+D" -msgstr "" - -#: config/vxworks.c:69 -#, fuzzy, gcc-internal-format -msgid "PIC is only supported for RTPs" -msgstr "-g noms t suport quan s'usa GAS en aquest processador," - -#. 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:451 -#, fuzzy, gcc-internal-format -msgid "alias definitions not supported in Mach-O; ignored" -msgstr "les definicions d'alies no tenen suport en aquesta configuraci; ignorades" - -#. No profiling. -#: config/vx-common.h:89 -#, fuzzy, gcc-internal-format -msgid "profiler support for VxWorks" -msgstr "suport per a function_profiler per a MMIX" - -#: config/windiss.h:36 -#, fuzzy, gcc-internal-format -msgid "profiler support for WindISS" -msgstr "suport per a function_profiler per a MMIX" - -#: config/alpha/alpha.c:232 config/rs6000/rs6000.c:1990 -#, fuzzy, gcc-internal-format -msgid "bad value %qs for -mtls-size switch" -msgstr "valor erroni \"%s\" per a l'opci -mtls-size" - -#: config/alpha/alpha.c:286 -#, gcc-internal-format -msgid "-f%s ignored for Unicos/Mk (not supported)" -msgstr "s'ignora -f%s per a Unicos/Mk (no es dna suport)" - -#: config/alpha/alpha.c:310 -#, gcc-internal-format -msgid "-mieee not supported on Unicos/Mk" -msgstr "no es dna suport a -mieee en Unicos/Mk" - -#: config/alpha/alpha.c:321 -#, gcc-internal-format -msgid "-mieee-with-inexact not supported on Unicos/Mk" -msgstr "no es dna suport a -mieee-with-inexact en Unicos/Mk" - -#: config/alpha/alpha.c:338 -#, fuzzy, gcc-internal-format -msgid "bad value %qs for -mtrap-precision switch" -msgstr "valor erroni \"%s\" per a l'opci -mtrap-precision" - -#: config/alpha/alpha.c:352 -#, fuzzy, gcc-internal-format -msgid "bad value %qs for -mfp-rounding-mode switch" -msgstr "valor erroni \"%s\" per a l'opci -mfp-rounding-mode" - -#: config/alpha/alpha.c:367 -#, fuzzy, gcc-internal-format -msgid "bad value %qs for -mfp-trap-mode switch" -msgstr "valor erroni \"%s\" per a l'opci -mfp-trap-mode" - -#: config/alpha/alpha.c:381 config/alpha/alpha.c:393 -#, fuzzy, gcc-internal-format -msgid "bad value %qs for -mcpu switch" -msgstr "valor erroni \"%s\" per a l'opci -mcpu" - -#: config/alpha/alpha.c:400 -#, gcc-internal-format -msgid "trap mode not supported on Unicos/Mk" -msgstr "no es dna suport al mode trap en Unicos/Mk" - -#: config/alpha/alpha.c:407 -#, gcc-internal-format -msgid "fp software completion requires -mtrap-precision=i" -msgstr "el completat per programari de fp requereix una opci -mtrap-precision=i" - -#: config/alpha/alpha.c:423 -#, gcc-internal-format -msgid "rounding mode not supported for VAX floats" -msgstr "el mode d'arrodoniment no t suport per a floats de VAX" - -#: config/alpha/alpha.c:428 -#, gcc-internal-format -msgid "trap mode not supported for VAX floats" -msgstr "el mode de captura no t suport per a valors de coma flotant VAX" - -#: config/alpha/alpha.c:432 -#, fuzzy, gcc-internal-format -msgid "128-bit long double not supported for VAX floats" -msgstr "el mode de captura no t suport per a valors de coma flotant VAX" - -#: config/alpha/alpha.c:460 -#, gcc-internal-format -msgid "L%d cache latency unknown for %s" -msgstr "latncia de cau L%d desconeguda per a %s" - -#: config/alpha/alpha.c:475 -#, fuzzy, gcc-internal-format -msgid "bad value %qs for -mmemory-latency" -msgstr "valor erroni \"%s\" per a -mmemory-latency" - -#: config/alpha/alpha.c:6514 config/alpha/alpha.c:6517 config/s390/s390.c:8279 -#: config/s390/s390.c:8282 -#, gcc-internal-format -msgid "bad builtin fcode" -msgstr "" - -#: config/arc/arc.c:388 -#, fuzzy, gcc-internal-format -msgid "argument of %qs attribute is not a string constant" -msgstr "l'argument de l'atribut \"%s\" no es una cadena constant" - -#: config/arc/arc.c:396 -#, fuzzy, gcc-internal-format -msgid "argument of %qs attribute is not \"ilink1\" or \"ilink2\"" -msgstr "l'argument de l'atribut \"%s\" no es \"ilink1\" o \"ilink2\"" - -#: config/arm/arm.c:1050 -#, gcc-internal-format -msgid "switch -mcpu=%s conflicts with -march= switch" -msgstr "l'opci -mcpu=%s genera conflictes amb l'opci -march=" - -#: config/arm/arm.c:1060 config/rs6000/rs6000.c:1504 config/sparc/sparc.c:761 -#, gcc-internal-format -msgid "bad value (%s) for %s switch" -msgstr "valor erroni (%s) per a l'opci %s" - -#: config/arm/arm.c:1170 -#, fuzzy, gcc-internal-format -msgid "target CPU does not support ARM mode" -msgstr "el CPU objectiu no t suport per a APCS-32" - -#: config/arm/arm.c:1174 -#, gcc-internal-format -msgid "target CPU does not support interworking" -msgstr "el CPU objectiu no t suport per a treball intern" - -#: config/arm/arm.c:1180 -#, gcc-internal-format -msgid "target CPU does not support THUMB instructions" -msgstr "el CPU objectiu no t suport les instruccions THUMB" - -#: config/arm/arm.c:1198 -#, gcc-internal-format -msgid "enabling backtrace support is only meaningful when compiling for the Thumb" -msgstr "habilitar el suport de rastrejat cap a endarrere noms t significat quan es compila per al Thumb" - -#: config/arm/arm.c:1201 -#, gcc-internal-format -msgid "enabling callee interworking support is only meaningful when compiling for the Thumb" -msgstr "habilitar el suport de treball intern de crides noms t significat quan es compila per al Thumb" - -#: config/arm/arm.c:1204 -#, gcc-internal-format -msgid "enabling caller interworking support is only meaningful when compiling for the Thumb" -msgstr "habilitar el suport de treball intern de cridat noms t significat quan es compila per al Thumb" - -#: config/arm/arm.c:1208 -#, gcc-internal-format -msgid "-mapcs-stack-check incompatible with -mno-apcs-frame" -msgstr "-mapcs-stack-check s incompatible amb -mno-apcs-frame" - -#: config/arm/arm.c:1216 -#, gcc-internal-format -msgid "-fpic and -mapcs-reent are incompatible" -msgstr "-fpic i -mapcs-reent sn incompatibles" - -#: config/arm/arm.c:1219 -#, gcc-internal-format -msgid "APCS reentrant code not supported. Ignored" -msgstr "no se suporta el codi APCS que es torna a introduir.Ignorat" - -#: config/arm/arm.c:1227 -#, gcc-internal-format -msgid "-g with -mno-apcs-frame may not give sensible debugging" -msgstr "-g amb -mno-apcs-frame no permet una depuraci sensible" - -#: config/arm/arm.c:1230 -#, gcc-internal-format -msgid "passing floating point arguments in fp regs not yet supported" -msgstr "encara no se suporta passar arguments de nombre de coma flotant en registres fp" - -#: config/arm/arm.c:1275 -#, fuzzy, gcc-internal-format -msgid "invalid ABI option: -mabi=%s" -msgstr "opci \"%s\" no vlida" - -#: config/arm/arm.c:1281 -#, gcc-internal-format -msgid "iwmmxt requires an AAPCS compatible ABI for proper operation" -msgstr "" - -#: config/arm/arm.c:1284 -#, gcc-internal-format -msgid "iwmmxt abi requires an iwmmxt capable cpu" -msgstr "" - -#: config/arm/arm.c:1294 -#, fuzzy, gcc-internal-format -msgid "invalid floating point emulation option: -mfpe=%s" -msgstr "opci d'emulaci de coma flotant no vlida: -mfpe-%s" - -#: config/arm/arm.c:1311 -#, fuzzy, gcc-internal-format -msgid "invalid floating point option: -mfpu=%s" -msgstr "opci d'emulaci de coma flotant no vlida: -mfpe-%s" - -#: config/arm/arm.c:1351 -#, fuzzy, gcc-internal-format -msgid "invalid floating point abi: -mfloat-abi=%s" -msgstr "opci d'emulaci de coma flotant no vlida: -mfpe-%s" - -#: config/arm/arm.c:1358 -#, gcc-internal-format -msgid "-mfloat-abi=hard and VFP" -msgstr "" - -#: config/arm/arm.c:1364 -#, fuzzy, gcc-internal-format -msgid "iWMMXt and hardware floating point" -msgstr "Usar coma flotant de maquinari" - -#: config/arm/arm.c:1368 -#, gcc-internal-format -msgid "Thumb-2 iWMMXt" -msgstr "" - -#: config/arm/arm.c:1391 -#, fuzzy, gcc-internal-format -msgid "invalid thread pointer option: -mtp=%s" -msgstr "opci d'emulaci de coma flotant no vlida: -mfpe-%s" - -#: config/arm/arm.c:1404 -#, gcc-internal-format -msgid "can not use -mtp=cp15 with 16-bit Thumb" -msgstr "" - -#: config/arm/arm.c:1418 -#, fuzzy, gcc-internal-format -msgid "structure size boundary can only be set to %s" -msgstr "El lmit de la grandria de l'estructura noms pot establir-se a 8 o 32" - -#: config/arm/arm.c:1424 -#, gcc-internal-format -msgid "RTP PIC is incompatible with Thumb" -msgstr "" - -#: config/arm/arm.c:1433 -#, gcc-internal-format -msgid "RTP PIC is incompatible with -msingle-pic-base" -msgstr "" - -#: config/arm/arm.c:1445 -#, gcc-internal-format -msgid "-mpic-register= is useless without -fpic" -msgstr "-mpic-register= s intil sense -fpic" - -#: config/arm/arm.c:1454 -#, gcc-internal-format -msgid "unable to use '%s' for PIC register" -msgstr "no es pot usar \"%s\" per a registre PIC" - -#: config/arm/arm.c:3067 config/arm/arm.c:3085 config/avr/avr.c:4618 -#: config/avr/avr.c:4660 config/bfin/bfin.c:4778 config/c4x/c4x.c:4071 -#: config/h8300/h8300.c:5257 config/i386/i386.c:3009 -#: config/m68hc11/m68hc11.c:1155 config/m68k/m68k.c:741 -#: config/mcore/mcore.c:3032 config/mips/mips.c:1151 config/mips/mips.c:1153 -#: config/mt/mt.c:1275 config/rs6000/rs6000.c:19583 config/sh/sh.c:7984 -#: config/sh/sh.c:8005 config/sh/sh.c:8028 config/stormy16/stormy16.c:2252 -#: config/v850/v850.c:2048 -#, fuzzy, gcc-internal-format -msgid "%qs attribute only applies to functions" -msgstr "l'atribut \"%s\" noms s'aplica a funcions" - -#: config/arm/arm.c:14012 -#, gcc-internal-format -msgid "unable to compute real location of stacked parameter" -msgstr "no es pot calcular la ubicaci real del parmetre apilat" - -#: config/arm/arm.c:15451 -#, fuzzy, gcc-internal-format -msgid "argument must be a constant" -msgstr "l'argument \"%d\" no s una constant" - -#. @@@ better error message -#: config/arm/arm.c:15759 config/arm/arm.c:15796 -#, gcc-internal-format -msgid "selector must be an immediate" -msgstr "el selector ha de ser immediat" - -#. @@@ better error message -#: config/arm/arm.c:15839 config/i386/i386.c:20651 config/i386/i386.c:20685 -#, gcc-internal-format -msgid "mask must be an immediate" -msgstr "la mscara ha de ser immediat" - -#: config/arm/arm.c:16498 -#, gcc-internal-format -msgid "no low registers available for popping high registers" -msgstr "no hi ha registres inferiors disponibles per a emmagatzemar registres superiors" - -#: config/arm/arm.c:16721 -#, gcc-internal-format -msgid "interrupt Service Routines cannot be coded in Thumb mode" -msgstr "no es poden codificar les Rutines de Serveis d'Interrupci en el mode Thumb" - -#: config/arm/pe.c:158 config/mcore/mcore.c:2898 -#, fuzzy, gcc-internal-format -msgid "initialized variable %q+D is marked dllimport" -msgstr "la variable iniciada \"%s\" est marcada com dllimport" - -#: config/arm/pe.c:167 -#, fuzzy, gcc-internal-format -msgid "static variable %q+D is marked dllimport" -msgstr "la variable esttica \"%s\" est marcada com dllimport" - -#: config/avr/avr.c:690 -#, gcc-internal-format -msgid "large frame pointer change (%d) with -mtiny-stack" -msgstr "canvi de punter gran de marc (%d) amb -mtiny-stack" - -#: config/avr/avr.c:4591 -#, gcc-internal-format -msgid "only initialized variables can be placed into program memory area" -msgstr "Noms les variables iniciades es poden ubicar en l'rea de memria del programa." - -#: config/avr/avr.c:4635 -#, gcc-internal-format -msgid "%qs appears to be a misspelled interrupt handler" -msgstr "" - -#: config/avr/avr.c:4643 -#, gcc-internal-format -msgid "%qs appears to be a misspelled signal handler" -msgstr "" - -#: config/avr/avr.c:4751 -#, gcc-internal-format -msgid "only uninitialized variables can be placed in the .noinit section" -msgstr "Noms les variables sense inicialitzar es poden collocar en la secci noinit" - -#: config/avr/avr.c:4765 -#, fuzzy, gcc-internal-format -msgid "MCU %qs supported for assembler only" -msgstr "MCU \"%s\" noms t suport per a ensamblador" - -#: config/avr/avr.h:692 -#, gcc-internal-format -msgid "trampolines not supported" -msgstr "els trampolins no tenen suport" - -#: config/bfin/bfin.c:2259 config/m68k/m68k.c:488 -#, fuzzy, gcc-internal-format -msgid "-mshared-library-id=%s is not between 0 and %d" -msgstr "-mregparm=%d no est entre 0 i %d" - -#: config/bfin/bfin.c:2279 -#, fuzzy, gcc-internal-format -msgid "-mcpu=%s is not valid" -msgstr "\"%s\" no s un nom de fitxer vlid" - -#: config/bfin/bfin.c:2315 -#, gcc-internal-format -msgid "-mcpu=%s has invalid silicon revision" -msgstr "" - -#: config/bfin/bfin.c:2332 -#, fuzzy, gcc-internal-format -msgid "bf561 support is incomplete yet." -msgstr "el parmetre t tipus incomplet" - -#: config/bfin/bfin.c:2372 -#, gcc-internal-format -msgid "-mshared-library-id= specified without -mid-shared-library" -msgstr "" - -#: config/bfin/bfin.c:2378 -#, fuzzy, gcc-internal-format -msgid "Can't use multiple stack checking methods together." -msgstr "Insereix codi de revisi de la pila en el programa" - -#: config/bfin/bfin.c:2381 -#, gcc-internal-format -msgid "ID shared libraries and FD-PIC mode can't be used together." -msgstr "" - -#: config/bfin/bfin.c:2386 config/m68k/m68k.c:582 -#, gcc-internal-format -msgid "cannot specify both -msep-data and -mid-shared-library" -msgstr "" - -#: config/bfin/bfin.c:4783 -#, fuzzy, gcc-internal-format -msgid "multiple function type attributes specified" -msgstr "%Jha donat un atribut noinline a la funci inline \"%D\"" - -#: config/bfin/bfin.c:4839 config/bfin/bfin.c:4868 config/spu/spu.c:2976 -#, gcc-internal-format -msgid "`%s' attribute only applies to functions" -msgstr "l'atribut \"%s\" noms s'aplica a funcions" - -#: config/bfin/bfin.c:4850 -#, gcc-internal-format -msgid "can't apply both longcall and shortcall attributes to the same function" -msgstr "" - -#: config/bfin/bfin.c:4900 -#, gcc-internal-format -msgid "`%s' attribute only applies to variables" -msgstr "l'atribut \"%s\" solament aplica a variables" - -#: config/bfin/bfin.c:4907 -#, fuzzy, gcc-internal-format -msgid "`%s' attribute cannot be specified for local variables" -msgstr "%Jl'atribut de secci no pot ser especificat per a les variables locals" - -#: config/c4x/c4x-c.c:68 -#, gcc-internal-format -msgid "missing '(' after '#pragma %s' - ignored" -msgstr "\"(\" faltant desprs de \"#pragma %s\" - ignorat" - -#: config/c4x/c4x-c.c:71 -#, gcc-internal-format -msgid "missing function name in '#pragma %s' - ignored" -msgstr "nom de funcci faltant en \"#pragma %s\" - ignorat" - -#: config/c4x/c4x-c.c:76 -#, gcc-internal-format -msgid "malformed '#pragma %s' - ignored" -msgstr "\"#pragma %s\" malformat - ignorat" - -#: config/c4x/c4x-c.c:78 -#, gcc-internal-format -msgid "missing section name in '#pragma %s' - ignored" -msgstr "nom de secci faltant en \"#pragma %s\" - ignorat" - -#: config/c4x/c4x-c.c:83 -#, gcc-internal-format -msgid "missing ')' for '#pragma %s' - ignored" -msgstr "\")\" faltant per a \"#pragma %s\" - ignorat" - -#: config/c4x/c4x-c.c:86 -#, gcc-internal-format -msgid "junk at end of '#pragma %s'" -msgstr "escombraries al final de \"#pragma %s\"" - -#: config/c4x/c4x.c:859 -#, gcc-internal-format -msgid "ISR %s requires %d words of local vars, max is 32767" -msgstr "El ISR %s requereix de %d words de variables locals,el mxim s 32767." - -#. 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:811 -#, fuzzy, gcc-internal-format -msgid "invalid use of ':' modifier" -msgstr "operand no vlid per al modificador \"b\"" - -#: config/cris/cris.c:983 -#, gcc-internal-format -msgid "internal error: bad register: %d" -msgstr "error intern: registre erroni: %d" - -#: config/cris/cris.c:1524 -#, gcc-internal-format -msgid "internal error: sideeffect-insn affecting main effect" -msgstr "error intern: sideeffect-insn afectant el efecte principal" - -#: config/cris/cris.c:1548 -#, fuzzy, gcc-internal-format -msgid "unknown cc_attr value" -msgstr "reubicaci unspec desconeguda" - -#. If we get here, the caller got its initial tests wrong. -#: config/cris/cris.c:1901 -#, gcc-internal-format -msgid "internal error: cris_side_effect_mode_ok with bad operands" -msgstr "error intern: cris_side_effect_mode_ok amb operands erronis" - -#: config/cris/cris.c:2104 -#, gcc-internal-format -msgid "-max-stackframe=%d is not usable, not between 0 and %d" -msgstr "no es pot usar -max-stackframe=%d, no est entre 0 i %d" - -#: config/cris/cris.c:2132 -#, gcc-internal-format -msgid "unknown CRIS version specification in -march= or -mcpu= : %s" -msgstr "especificaci de versi CRIS desconeguda en -march= o -mcpu= : %s" - -#: config/cris/cris.c:2168 -#, gcc-internal-format -msgid "unknown CRIS cpu version specification in -mtune= : %s" -msgstr "especificaci de versi de cpu de CRIS desconeguda en -mtune= : %s" - -#: config/cris/cris.c:2186 -#, gcc-internal-format -msgid "-fPIC and -fpic are not supported in this configuration" -msgstr "no es dna suport a -fPIC i -fpic en aquesta configuraci" - -#: config/cris/cris.c:2201 -#, gcc-internal-format -msgid "that particular -g option is invalid with -maout and -melinux" -msgstr "aquesta opci particular -g no s vlid amb -maout i -melinux" - -#: config/cris/cris.c:2414 -#, gcc-internal-format -msgid "Unknown src" -msgstr "" - -#: config/cris/cris.c:2475 -#, fuzzy, gcc-internal-format -msgid "Unknown dest" -msgstr "mode insn desconegut" - -#: config/cris/cris.c:2760 -#, gcc-internal-format -msgid "stackframe too big: %d bytes" -msgstr "marc de pila massa grand: %d bytes" - -#: config/cris/cris.c:3213 config/cris/cris.c:3240 -#, gcc-internal-format -msgid "expand_binop failed in movsi got" -msgstr "" - -#: config/cris/cris.c:3321 -#, gcc-internal-format -msgid "emitting PIC operand, but PIC register isn't set up" -msgstr "emetent un operand PIC, per el registre PIC no est preparat" - -#. Definitions for GCC. Part of the machine description for CRIS. -#. Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007 -#. 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 3, 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 COPYING3. If not see -#. . -#. After the first "Node:" comment comes all preprocessor directives and -#. attached declarations described in the info files, the "Using and -#. Porting GCC" manual (uapgcc), in the same order as found in the "Target -#. macros" section in the gcc-2.9x CVS edition of 2000-03-17. FIXME: Not -#. really, but needs an update anyway. -#. -#. There is no generic copy-of-uapgcc comment, you'll have to see uapgcc -#. for that. If applicable, there is a CRIS-specific comment. The order -#. of macro definitions follow the order in the manual. Every section in -#. the manual (node in the info pages) has an introductory `Node: -#. ' comment. If no macros are defined for a section, only -#. the section-comment is present. -#. Note that other header files (e.g. config/elfos.h, config/linux.h, -#. config/cris/linux.h and config/cris/aout.h) are responsible for lots of -#. settings not repeated below. This file contains general CRIS -#. definitions and definitions for the cris-*-elf subtarget. -#. We don't want to use gcc_assert for everything, as that can be -#. compiled out. -#: config/cris/cris.h:43 -#, 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:868 -#, gcc-internal-format -msgid "no FUNCTION_PROFILER for CRIS" -msgstr "no FUNCTION_PROFILER per a CRIS" - -#: config/crx/crx.h:354 -#, fuzzy, gcc-internal-format -msgid "Profiler support for CRX" -msgstr "suport per a function_profiler per a MMIX" - -#: config/crx/crx.h:365 -#, fuzzy, gcc-internal-format -msgid "Trampoline support for CRX" -msgstr "els trampolins no tenen suport" - -#: config/frv/frv.c:8622 -#, gcc-internal-format -msgid "accumulator is not a constant integer" -msgstr "el acumulador no s una constant entera" - -#: config/frv/frv.c:8627 -#, gcc-internal-format -msgid "accumulator number is out of bounds" -msgstr "" - -#: config/frv/frv.c:8638 -#, fuzzy, gcc-internal-format -msgid "inappropriate accumulator for %qs" -msgstr "acumulador inadequat per a \"%s\"" - -#: config/frv/frv.c:8715 -#, fuzzy, gcc-internal-format -msgid "invalid IACC argument" -msgstr "argument de tipus no vlid" - -#: config/frv/frv.c:8738 -#, fuzzy, gcc-internal-format -msgid "%qs expects a constant argument" -msgstr "l'atribut \"%s\" espera una constant com argument" - -#: config/frv/frv.c:8743 -#, fuzzy, gcc-internal-format -msgid "constant argument out of range for %qs" -msgstr "l'argument constant est fora de lmits per a \"%s\"" - -#: config/frv/frv.c:9224 -#, gcc-internal-format -msgid "media functions are not available unless -mmedia is used" -msgstr "" - -#: config/frv/frv.c:9236 -#, gcc-internal-format -msgid "this media function is only available on the fr500" -msgstr "" - -#: config/frv/frv.c:9264 -#, gcc-internal-format -msgid "this media function is only available on the fr400 and fr550" -msgstr "" - -#: config/frv/frv.c:9283 -#, gcc-internal-format -msgid "this builtin function is only available on the fr405 and fr450" -msgstr "" - -#: config/frv/frv.c:9292 -#, gcc-internal-format -msgid "this builtin function is only available on the fr500 and fr550" -msgstr "" - -#: config/frv/frv.c:9304 -#, gcc-internal-format -msgid "this builtin function is only available on the fr450" -msgstr "" - -#: config/h8300/h8300.c:330 -#, gcc-internal-format -msgid "-ms2600 is used without -ms" -msgstr "es va usar -ms2600 sense -ms" - -#: config/h8300/h8300.c:336 -#, gcc-internal-format -msgid "-mn is used without -mh or -ms" -msgstr "es va usar -mn sense -mh o -ms" - -#: config/i386/host-cygwin.c:64 -#, fuzzy, gcc-internal-format -msgid "can't extend PCH file: %m" -msgstr "no es pot llegir el fitxer PCH: %m" - -#: config/i386/host-cygwin.c:75 -#, fuzzy, gcc-internal-format -msgid "can't set position in PCH file: %m" -msgstr "no es pot crear el fitxer d'informaci de \"repository\" \"%s\"" - -#: config/i386/i386.c:2133 config/i386/i386.c:2333 -#, fuzzy, gcc-internal-format -msgid "bad value (%s) for -mtune= switch" -msgstr "valor erroni (%s) per a l'opci -mcpu=" - -#: config/i386/i386.c:2174 -#, fuzzy, gcc-internal-format -msgid "bad value (%s) for -mstringop-strategy= switch" -msgstr "valor erroni (%s) per a l'opci -mcpu=" - -#: config/i386/i386.c:2177 -#, gcc-internal-format -msgid "-mtune=x86-64 is deprecated. Use -mtune=k8 or -mtune=generic instead as appropriate." -msgstr "" - -#: config/i386/i386.c:2186 -#, fuzzy, gcc-internal-format -msgid "generic CPU can be used only for -mtune= switch" -msgstr "valor erroni (%s) per a l'opci -mcpu=" - -#: config/i386/i386.c:2188 config/i386/i386.c:2297 config/mt/mt.c:804 -#, gcc-internal-format -msgid "bad value (%s) for -march= switch" -msgstr "valor erroni (%s) per a l'opci -march=" - -#: config/i386/i386.c:2199 -#, fuzzy, gcc-internal-format -msgid "code model %s does not support PIC mode" -msgstr "el model de codi %s no t suport en el mode PIC" - -#: config/i386/i386.c:2205 config/sparc/sparc.c:725 -#, gcc-internal-format -msgid "bad value (%s) for -mcmodel= switch" -msgstr "valor erroni (%s) per a l'opci -mcmodel=" - -#: config/i386/i386.c:2228 -#, gcc-internal-format -msgid "bad value (%s) for -masm= switch" -msgstr "valor erroni (%s) per a l'opci -masm=" - -#: config/i386/i386.c:2231 -#, fuzzy, gcc-internal-format -msgid "code model %qs not supported in the %s bit mode" -msgstr "el model de codi %s no t suport en el mode %s bit" - -#: config/i386/i386.c:2234 -#, gcc-internal-format -msgid "%i-bit mode not compiled in" -msgstr "no est compilat el mode %i-bit" - -#: config/i386/i386.c:2245 config/i386/i386.c:2319 -#, fuzzy, gcc-internal-format -msgid "CPU you selected does not support x86-64 instruction set" -msgstr "el CPU objectiu no t suport les instruccions THUMB" - -#: config/i386/i386.c:2351 -#, gcc-internal-format -msgid "-mregparm is ignored in 64-bit mode" -msgstr "" - -#: config/i386/i386.c:2354 -#, gcc-internal-format -msgid "-mregparm=%d is not between 0 and %d" -msgstr "-mregparm=%d no est entre 0 i %d" - -#: config/i386/i386.c:2366 -#, gcc-internal-format -msgid "-malign-loops is obsolete, use -falign-loops" -msgstr "-malign-loops s obsolet, usi -falign-loops" - -#: config/i386/i386.c:2371 config/i386/i386.c:2384 config/i386/i386.c:2397 -#, gcc-internal-format -msgid "-malign-loops=%d is not between 0 and %d" -msgstr "-malign-loops=%d no est entre 0 i %d" - -#: config/i386/i386.c:2379 -#, gcc-internal-format -msgid "-malign-jumps is obsolete, use -falign-jumps" -msgstr "-malign-jumps s obsolet, usi -falign-jumps" - -#: config/i386/i386.c:2392 -#, gcc-internal-format -msgid "-malign-functions is obsolete, use -falign-functions" -msgstr "-malign-functions s obsolet, usi -falign-functions" - -#: config/i386/i386.c:2425 -#, gcc-internal-format -msgid "-mbranch-cost=%d is not between 0 and 5" -msgstr "-mbranch-cost=%d no est entre 0 i 5" - -#: config/i386/i386.c:2433 -#, gcc-internal-format -msgid "-mlarge-data-threshold=%d is negative" -msgstr "" - -#: config/i386/i386.c:2447 -#, gcc-internal-format -msgid "bad value (%s) for -mtls-dialect= switch" -msgstr "valor erroni (%s) per a l'opci -mtls-dialect=" - -#: config/i386/i386.c:2455 -#, gcc-internal-format -msgid "pc%d is not valid precision setting (32, 64 or 80)" -msgstr "" - -#: config/i386/i386.c:2471 -#, fuzzy, gcc-internal-format -msgid "-mrtd is ignored in 64bit mode" -msgstr "la convenci de crides -mrtd no t suport en el mode 64 bit" - -#: config/i386/i386.c:2560 -#, gcc-internal-format -msgid "-mpreferred-stack-boundary=%d is not between %d and 12" -msgstr "-mpreferred-stack-boundary=%d no est entre %d i 12" - -#: config/i386/i386.c:2569 -#, gcc-internal-format -msgid "-msseregparm used without SSE enabled" -msgstr "" - -#: config/i386/i386.c:2580 config/i386/i386.c:2591 -#, gcc-internal-format -msgid "SSE instruction set disabled, using 387 arithmetics" -msgstr "el conjunt d'instruccions SSE est desactivat, usant l'aritmtica 387" - -#: config/i386/i386.c:2596 -#, gcc-internal-format -msgid "387 instruction set disabled, using SSE arithmetics" -msgstr "el conjunt d'instruccions 387 est desactivat, usant l'aritmtica SSE" - -#: config/i386/i386.c:2603 -#, gcc-internal-format -msgid "bad value (%s) for -mfpmath= switch" -msgstr "valor erroni (%s) per a l'opci -mfpmath=" - -#: config/i386/i386.c:2616 -#, gcc-internal-format -msgid "unknown vectorization library ABI type (%s) for -mveclibabi= switch" -msgstr "" - -#: config/i386/i386.c:2635 -#, gcc-internal-format -msgid "unwind tables currently require either a frame pointer or -maccumulate-outgoing-args for correctness" -msgstr "" - -#: config/i386/i386.c:3022 config/i386/i386.c:3075 -#, fuzzy, gcc-internal-format -msgid "fastcall and regparm attributes are not compatible" -msgstr "-f%s i -msdata=%s sn incompatibles" - -#: config/i386/i386.c:3029 -#, fuzzy, gcc-internal-format -msgid "%qs attribute requires an integer constant argument" -msgstr "l'atribut \"%s\" requereix una constant entera com argument" - -#: config/i386/i386.c:3035 -#, fuzzy, gcc-internal-format -msgid "argument to %qs attribute larger than %d" -msgstr "l'argument per a l'atribut \"%s\" s ms gran que %d" - -#: config/i386/i386.c:3045 -#, gcc-internal-format -msgid "%s functions limited to %d register parameters" -msgstr "" - -#: config/i386/i386.c:3067 config/i386/i386.c:3102 -#, fuzzy, gcc-internal-format -msgid "fastcall and cdecl attributes are not compatible" -msgstr "-f%s i -msdata=%s sn incompatibles" - -#: config/i386/i386.c:3071 -#, fuzzy, gcc-internal-format -msgid "fastcall and stdcall attributes are not compatible" -msgstr "-f%s i -msdata=%s sn incompatibles" - -#: config/i386/i386.c:3085 config/i386/i386.c:3098 -#, fuzzy, gcc-internal-format -msgid "stdcall and cdecl attributes are not compatible" -msgstr "-f%s i -msdata=%s sn incompatibles" - -#: config/i386/i386.c:3089 -#, fuzzy, gcc-internal-format -msgid "stdcall and fastcall attributes are not compatible" -msgstr "-f%s i -msdata=%s sn incompatibles" - -#: config/i386/i386.c:3236 -#, gcc-internal-format -msgid "Calling %qD with attribute sseregparm without SSE/SSE2 enabled" -msgstr "" - -#: config/i386/i386.c:3239 -#, gcc-internal-format -msgid "Calling %qT with attribute sseregparm without SSE/SSE2 enabled" -msgstr "" - -#: config/i386/i386.c:3925 -#, gcc-internal-format -msgid "SSE register return with SSE disabled" -msgstr "" - -#: config/i386/i386.c:3931 -#, gcc-internal-format -msgid "SSE register argument with SSE disabled" -msgstr "" - -#: config/i386/i386.c:3947 -#, gcc-internal-format -msgid "x87 register return with x87 disabled" -msgstr "" - -#: config/i386/i386.c:4265 -#, gcc-internal-format -msgid "SSE vector argument without SSE enabled changes the ABI" -msgstr "" - -#: config/i386/i386.c:4283 -#, gcc-internal-format -msgid "MMX vector argument without MMX enabled changes the ABI" -msgstr "" - -#: config/i386/i386.c:4810 -#, gcc-internal-format -msgid "SSE vector return without SSE enabled changes the ABI" -msgstr "" - -#: config/i386/i386.c:4820 -#, gcc-internal-format -msgid "MMX vector return without MMX enabled changes the ABI" -msgstr "" - -#: config/i386/i386.c:6171 -#, fuzzy, gcc-internal-format -msgid "-mstackrealign ignored for nested functions" -msgstr "ISO C prohibeix les funcions niades" - -#: config/i386/i386.c:6173 -#, fuzzy, gcc-internal-format -msgid "%s not supported for nested functions" -msgstr "No donar suport per a funcions internes MMX" - -#: config/i386/i386.c:8576 -#, gcc-internal-format -msgid "extended registers have no high halves" -msgstr "els registres estesos no tenen meitats superiors" - -#: config/i386/i386.c:8591 -#, gcc-internal-format -msgid "unsupported operand size for extended register" -msgstr "mida d'operand sense suport per al registre ests" - -#: config/i386/i386.c:19610 -#, fuzzy, gcc-internal-format -msgid "the third argument must be a 4-bit immediate" -msgstr "l'argument 3 ha de ser una literal sense signe de 4-bit" - -#: config/i386/i386.c:19614 -#, fuzzy, gcc-internal-format -msgid "the third argument must be an 8-bit immediate" -msgstr "l'argument 1 ha de ser una literal amb signe de 5-bit" - -#: config/i386/i386.c:19836 -#, fuzzy, gcc-internal-format -msgid "last argument must be an immediate" -msgstr "la mscara ha de ser immediat" - -#: config/i386/i386.c:19963 -#, fuzzy, gcc-internal-format -msgid "the second argument must be a 4-bit immediate" -msgstr "l'argument 3 ha de ser una literal sense signe de 4-bit" - -#: config/i386/i386.c:20209 -#, fuzzy, gcc-internal-format -msgid "the fifth argument must be a 8-bit immediate" -msgstr "l'argument 1 ha de ser una literal amb signe de 5-bit" - -#: config/i386/i386.c:20304 -#, fuzzy, gcc-internal-format -msgid "the third argument must be a 8-bit immediate" -msgstr "l'argument 1 ha de ser una literal amb signe de 5-bit" - -#: config/i386/i386.c:20374 config/rs6000/rs6000.c:8133 -#, gcc-internal-format -msgid "selector must be an integer constant in the range 0..%wi" -msgstr "" - -#: config/i386/i386.c:20774 config/i386/i386.c:20970 -#, gcc-internal-format -msgid "shift must be an immediate" -msgstr "el desplaament ha de ser immediat" - -#: config/i386/i386.c:21033 config/i386/i386.c:21075 -#, fuzzy, gcc-internal-format -msgid "index mask must be an immediate" -msgstr "la mscara ha de ser immediat" - -#: config/i386/i386.c:21038 config/i386/i386.c:21080 -#, fuzzy, gcc-internal-format -msgid "length mask must be an immediate" -msgstr "la mscara ha de ser immediat" - -#: config/i386/i386.c:22525 config/rs6000/rs6000.c:19666 -#, fuzzy, gcc-internal-format -msgid "%qs incompatible attribute ignored" -msgstr "s'ignora l'atribut \"%s\"" - -#: config/i386/winnt-cxx.c:71 config/sh/symbian.c:172 -#, gcc-internal-format -msgid "definition of static data member %q+D of dllimport'd class" -msgstr "" - -#: config/i386/winnt.c:58 -#, fuzzy, gcc-internal-format -msgid "%qs attribute only applies to variables" -msgstr "l'atribut \"%s\" solament aplica a variables" - -#: config/i386/winnt.c:80 -#, gcc-internal-format -msgid "%qs attribute applies only to initialized variables with external linkage" -msgstr "" - -#: config/i386/winnt.c:297 -#, fuzzy, gcc-internal-format -msgid "%q+D:'selectany' attribute applies only to initialized objects" -msgstr "%Jl'atribut \"%E\" s'aplica solament a funcions" - -#: config/i386/winnt.c:445 -#, fuzzy, gcc-internal-format -msgid "%q+D causes a section type conflict" -msgstr "%s causa un conflicte de tipus de secci" - -#: config/i386/cygming.h:162 -#, gcc-internal-format -msgid "-f%s ignored for target (all code is position independent)" -msgstr "s'ignora -f%s per a l'objectiu (tot el codi s independent de posici)" - -#: config/i386/djgpp.h:180 -#, gcc-internal-format -msgid "-mbnu210 is ignored (option is obsolete)" -msgstr "s'ignora -mbnu210 (l'opci s obsoleta)." - -#: config/i386/i386-interix.h:256 -#, fuzzy, gcc-internal-format -msgid "ms-bitfields not supported for objc" -msgstr "-f%s no t suport: ignorat" - -#: config/ia64/ia64-c.c:51 -#, gcc-internal-format -msgid "malformed #pragma builtin" -msgstr "secci #pragma builtin malformada" - -#: config/ia64/ia64.c:554 config/m32r/m32r.c:373 -#, fuzzy, gcc-internal-format -msgid "invalid argument of %qs attribute" -msgstr "no vlid argument per a l'atribut \"%s\"" - -#: config/ia64/ia64.c:566 -#, gcc-internal-format -msgid "%Jan address area attribute cannot be specified for local variables" -msgstr "%Jno es pot especificar un atribut d'rea de dades per a variables locals" - -#: config/ia64/ia64.c:573 -#, fuzzy, gcc-internal-format -msgid "address area of %q+D conflicts with previous declaration" -msgstr "%Jl'rea d'adrea de \"%s\" s en conflicte amb una declaraci prvia" - -#: config/ia64/ia64.c:580 -#, gcc-internal-format -msgid "%Jaddress area attribute cannot be specified for functions" -msgstr "%Jno es pot especificar un atribut d'rea d'adrea per a funcions" - -#: config/ia64/ia64.c:5126 config/pa/pa.c:347 config/spu/spu.c:3875 -#, gcc-internal-format -msgid "value of -mfixed-range must have form REG1-REG2" -msgstr "el valor de -mfixed-range ha de ser de la forma REG1-REG2" - -#: config/ia64/ia64.c:5153 config/pa/pa.c:374 config/spu/spu.c:3901 -#, gcc-internal-format -msgid "%s-%s is an empty range" -msgstr "%s-%s s un rang buit" - -#: config/ia64/ia64.c:5181 -#, fuzzy, gcc-internal-format -msgid "bad value %<%s%> for -mtls-size= switch" -msgstr "valor erroni (%s) per a l'opci -mtls-size=" - -#: config/ia64/ia64.c:5209 -#, fuzzy, gcc-internal-format -msgid "bad value %<%s%> for -mtune= switch" -msgstr "valor erroni (%s) per a l'opci -mcpu=" - -#: config/ia64/ia64.c:5228 -#, gcc-internal-format -msgid "not yet implemented: latency-optimized inline square root" -msgstr "" - -#: config/ia64/ia64.c:9950 -#, fuzzy, gcc-internal-format -msgid "version attribute is not a string" -msgstr "l'argument de l'atribut \"%s\" no es una cadena constant" - -#: config/iq2000/iq2000.c:1812 -#, fuzzy, gcc-internal-format -msgid "gp_offset (%ld) or end_offset (%ld) is less than zero" -msgstr "gp_offset (%ld) o end_offset (%ld) s menys de zero" - -#: config/iq2000/iq2000.c:2583 -#, fuzzy, gcc-internal-format -msgid "argument %qd is not a constant" -msgstr "l'argument \"%d\" no s una constant" - -#: config/iq2000/iq2000.c:2885 config/mt/mt.c:349 config/xtensa/xtensa.c:2118 -#, gcc-internal-format -msgid "PRINT_OPERAND_ADDRESS, null pointer" -msgstr "PRINT_OPERAND_ADDRESS, punter nul" - -#: config/iq2000/iq2000.c:3040 -#, fuzzy, gcc-internal-format -msgid "PRINT_OPERAND: Unknown punctuation '%c'" -msgstr "PRINT_OPERAND: puntuaci desconeguda \"%c\"" - -#: config/iq2000/iq2000.c:3049 config/xtensa/xtensa.c:1972 -#, gcc-internal-format -msgid "PRINT_OPERAND null pointer" -msgstr "PRINT_OPERAND punter nul" - -#: config/m32c/m32c-pragma.c:63 -#, fuzzy, gcc-internal-format -msgid "junk at end of #pragma GCC memregs [0..16]" -msgstr "escombraries al final de #pragma %s" - -#: config/m32c/m32c-pragma.c:70 -#, gcc-internal-format -msgid "#pragma GCC memregs must precede any function decls" -msgstr "" - -#: config/m32c/m32c-pragma.c:81 config/m32c/m32c-pragma.c:88 -#, gcc-internal-format -msgid "#pragma GCC memregs takes a number [0..16]" -msgstr "" - -#: config/m32c/m32c.c:416 -#, fuzzy, gcc-internal-format -msgid "invalid target memregs value '%d'" -msgstr "valor de --param \"%s\" no vlid" - -#: config/m32c/m32c.c:2759 -#, fuzzy, gcc-internal-format -msgid "`%s' attribute is not supported for R8C target" -msgstr "l'atribut \"%s\" no t suport en aquesta plataforma" - -#: config/m32c/m32c.c:2767 -#, fuzzy, gcc-internal-format -msgid "`%s' attribute applies only to functions" -msgstr "%Jl'atribut \"%E\" s'aplica solament a funcions" - -#: config/m32c/m32c.c:2775 -#, gcc-internal-format -msgid "`%s' attribute argument not an integer constant" -msgstr "l'argument de l'atribut \"%s\" no s una cadena entera" - -#: config/m32c/m32c.c:2784 -#, fuzzy, gcc-internal-format -msgid "`%s' attribute argument should be between 18 to 255" -msgstr "l'argument de l'atribut \"%s\" no s una cadena entera" - -#: config/m68hc11/m68hc11.c:279 -#, gcc-internal-format -msgid "-f%s ignored for 68HC11/68HC12 (not supported)" -msgstr "s'ignora -f%s per a 68HC11/68HC12 (sense suport)" - -#: config/m68hc11/m68hc11.c:1240 -#, fuzzy, gcc-internal-format -msgid "% and % attributes are not compatible, ignoring %" -msgstr "-f%s i -msdata=%s sn incompatibles" - -#: config/m68hc11/m68hc11.c:1247 -#, fuzzy, gcc-internal-format -msgid "% attribute is already used" -msgstr "l'atribut \"trap\" ja est en s" - -#: config/m68k/m68k.c:533 -#, fuzzy, gcc-internal-format -msgid "-mcpu=%s conflicts with -march=%s" -msgstr "l'opci -mcpu=%s genera conflictes amb l'opci -march=" - -#: config/m68k/m68k.c:594 -#, fuzzy, gcc-internal-format -msgid "-mpcrel -fPIC is not currently supported on selected cpu" -msgstr " -fPIC actualment no t suport en el 68000 o 68010\n" - -#: config/m68k/m68k.c:656 -#, fuzzy, gcc-internal-format -msgid "-falign-labels=%d is not supported" -msgstr "els trampolins no tenen suport" - -#: config/m68k/m68k.c:661 -#, fuzzy, gcc-internal-format -msgid "-falign-loops=%d is not supported" -msgstr "-malign-loops=%d no est entre 0 i %d" - -#: config/m68k/m68k.c:748 -#, fuzzy, gcc-internal-format -msgid "multiple interrupt attributes not allowed" -msgstr "%Jno es permet un atribut de secci per a \"%D\"" - -#: config/m68k/m68k.c:755 -#, gcc-internal-format -msgid "interrupt_thread is available only on fido" -msgstr "" - -#: config/m68k/m68k.c:1072 config/rs6000/rs6000.c:15014 -#, fuzzy, gcc-internal-format -msgid "stack limit expression is not supported" -msgstr "no es dna suport a l'expressi del lmit de la pila" - -#: config/mips/mips.c:1163 -#, gcc-internal-format -msgid "%qs cannot have both % and % attributes" -msgstr "" - -#: config/mips/mips.c:1185 config/mips/mips.c:1188 -#, gcc-internal-format -msgid "%qs redeclared with conflicting %qs attributes" -msgstr "" - -#: config/mips/mips.c:2348 -#, gcc-internal-format -msgid "MIPS16 TLS" -msgstr "" - -#: config/mips/mips.c:5439 -#, fuzzy, gcc-internal-format -msgid "cannot handle inconsistent calls to %qs" -msgstr "no es poden manejar les crides inconsistents a \"%s\"" - -#: config/mips/mips.c:10258 -#, fuzzy, gcc-internal-format -msgid "invalid argument to built-in function" -msgstr "massa arguments per a la funci" - -#: config/mips/mips.c:10530 -#, fuzzy, gcc-internal-format -msgid "built-in function %qs not supported for MIPS16" -msgstr "no se suporta actualment la funci interna \"%s\"" - -#: config/mips/mips.c:11679 config/mips/mips.c:12065 -#, gcc-internal-format -msgid "MIPS16 PIC" -msgstr "" - -#: config/mips/mips.c:11682 -#, gcc-internal-format -msgid "hard-float MIPS16 code for ABIs other than o32 and o64" -msgstr "" - -#: config/mips/mips.c:11810 -#, fuzzy, gcc-internal-format -msgid "CPU names must be lower case" -msgstr "el nom de cpu ha de estar en minscules" - -#: config/mips/mips.c:11938 -#, gcc-internal-format -msgid "%<-%s%> conflicts with the other architecture options, which specify a %s processor" -msgstr "" - -#: config/mips/mips.c:11954 -#, gcc-internal-format -msgid "%<-march=%s%> is not compatible with the selected ABI" -msgstr "" - -#: config/mips/mips.c:11969 -#, fuzzy, gcc-internal-format -msgid "%<-mgp64%> used with a 32-bit processor" -msgstr "s'utilitza -mgp64 amb una ABI de 32-bit" - -#: config/mips/mips.c:11971 -#, fuzzy, gcc-internal-format -msgid "%<-mgp32%> used with a 64-bit ABI" -msgstr "s'utilitza -mgp32 amb una ABI de 64-bit" - -#: config/mips/mips.c:11973 -#, fuzzy, gcc-internal-format -msgid "%<-mgp64%> used with a 32-bit ABI" -msgstr "s'utilitza -mgp64 amb una ABI de 32-bit" - -#: config/mips/mips.c:11989 config/mips/mips.c:11991 config/mips/mips.c:12058 -#, gcc-internal-format -msgid "unsupported combination: %s" -msgstr "combinaci sense suport: %s" - -#: config/mips/mips.c:11995 -#, gcc-internal-format -msgid "%<-mgp32%> and %<-mfp64%> can only be combined if the target supports the mfhc1 and mthc1 instructions" -msgstr "" - -#: config/mips/mips.c:11998 -#, gcc-internal-format -msgid "%<-mgp32%> and %<-mfp64%> can only be combined when using the o32 ABI" -msgstr "" - -#: config/mips/mips.c:12052 -#, fuzzy, gcc-internal-format -msgid "the %qs architecture does not support branch-likely instructions" -msgstr "el CPU objectiu no t suport les instruccions THUMB" - -#: config/mips/mips.c:12098 -#, gcc-internal-format -msgid "%<-mno-gpopt%> needs %<-mexplicit-relocs%>" -msgstr "" - -#: config/mips/mips.c:12106 config/mips/mips.c:12109 -#, gcc-internal-format -msgid "cannot use small-data accesses for %qs" -msgstr "" - -#: config/mips/mips.c:12123 -#, gcc-internal-format -msgid "%<-mips3d%> requires %<-mpaired-single%>" -msgstr "" - -#: config/mips/mips.c:12132 -#, fuzzy, gcc-internal-format -msgid "%qs must be used with %qs" -msgstr "-frepo ha de ser usat amb -c" - -#: config/mips/mips.c:12139 -#, fuzzy, gcc-internal-format -msgid "the %qs architecture does not support paired-single instructions" -msgstr "el CPU objectiu no t suport les instruccions THUMB" - -#. Output assembler code to FILE to increment profiler label # LABELNO -#. for profiling a function entry. -#: config/mips/mips.h:2110 -#, gcc-internal-format -msgid "mips16 function profiling" -msgstr "anlisi de perfil de les funcions mips16" - -#: config/mmix/mmix.c:226 -#, gcc-internal-format -msgid "-f%s not supported: ignored" -msgstr "-f%s no t suport: ignorat" - -#: config/mmix/mmix.c:674 -#, fuzzy, gcc-internal-format -msgid "support for mode %qs" -msgstr "no hi ha tipus de dades pel mode \"%s\"" - -#: config/mmix/mmix.c:688 -#, gcc-internal-format -msgid "too large function value type, needs %d registers, have only %d registers for this" -msgstr "el valor del tipus de la funci s massa gran, necessita %d registres, noms es tenen %d registres per a aix" - -#: config/mmix/mmix.c:858 -#, gcc-internal-format -msgid "function_profiler support for MMIX" -msgstr "suport per a function_profiler per a MMIX" - -#: config/mmix/mmix.c:880 -#, gcc-internal-format -msgid "MMIX Internal: Last named vararg would not fit in a register" -msgstr "MMIX intern: L'ltim vararg nomenat no cont en un registre" - -#: config/mmix/mmix.c:1495 config/mmix/mmix.c:1519 config/mmix/mmix.c:1635 -#, gcc-internal-format -msgid "MMIX Internal: Bad register: %d" -msgstr "MMIX intern: registre erroni: %d" - -#. Presumably there's a missing case above if we get here. -#: config/mmix/mmix.c:1627 -#, fuzzy, gcc-internal-format -msgid "MMIX Internal: Missing %qc case in mmix_print_operand" -msgstr "MMIX intern: case \"%c\" faltant en mmix_print_operand" - -#: config/mmix/mmix.c:1913 -#, fuzzy, gcc-internal-format -msgid "stack frame not a multiple of 8 bytes: %wd" -msgstr "el marc de pila no s un mltiple de 8 octets: %d" - -#: config/mmix/mmix.c:2149 -#, fuzzy, gcc-internal-format -msgid "stack frame not a multiple of octabyte: %wd" -msgstr "el marc de pila no s un mltiple de octabyte: %d" - -#: config/mmix/mmix.c:2489 config/mmix/mmix.c:2553 -#, gcc-internal-format -msgid "MMIX Internal: %s is not a shiftable int" -msgstr "MMIX intern: %s no s un enter desplaable" - -#: config/mt/mt.c:312 -#, gcc-internal-format -msgid "info pointer NULL" -msgstr "" - -#: config/pa/pa.c:479 -#, fuzzy, gcc-internal-format -msgid "PIC code generation is not supported in the portable runtime model" -msgstr "La generaci de codi PIC no t suport en el model portable de temps d'execuci\n" - -#: config/pa/pa.c:484 -#, fuzzy, gcc-internal-format -msgid "PIC code generation is not compatible with fast indirect calls" -msgstr "La generaci de codi PIC no s compatible amb les crides rpides indirectes\n" - -#: config/pa/pa.c:489 -#, gcc-internal-format -msgid "-g is only supported when using GAS on this processor," -msgstr "-g noms t suport quan s'usa GAS en aquest processador," - -#: config/pa/pa.c:490 -#, gcc-internal-format -msgid "-g option disabled" -msgstr "opci -g desactivada" - -#: config/pa/pa.c:8285 -#, gcc-internal-format -msgid "alignment (%u) for %s exceeds maximum alignment for global common data. Using %u" -msgstr "" - -#: config/pa/pa-hpux11.h:84 -#, gcc-internal-format -msgid "-munix=98 option required for C89 Amendment 1 features.\n" -msgstr "" - -#: config/rs6000/host-darwin.c:61 -#, gcc-internal-format -msgid "Segmentation Fault (code)" -msgstr "" - -#: config/rs6000/host-darwin.c:131 -#, gcc-internal-format -msgid "Segmentation Fault" -msgstr "" - -#: config/rs6000/host-darwin.c:145 -#, gcc-internal-format -msgid "While setting up signal stack: %m" -msgstr "" - -#: config/rs6000/host-darwin.c:151 -#, 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:52 -#, gcc-internal-format -msgid "ignoring malformed #pragma longcall" -msgstr "ignorant el #pragma longcall malformats" - -#: config/rs6000/rs6000-c.c:65 -#, gcc-internal-format -msgid "missing open paren" -msgstr "\"(\" faltant" - -#: config/rs6000/rs6000-c.c:67 -#, gcc-internal-format -msgid "missing number" -msgstr "falta valor" - -#: config/rs6000/rs6000-c.c:69 -#, gcc-internal-format -msgid "missing close paren" -msgstr "\")\" faltant" - -#: config/rs6000/rs6000-c.c:72 -#, gcc-internal-format -msgid "number must be 0 or 1" -msgstr "" - -#: config/rs6000/rs6000-c.c:75 -#, gcc-internal-format -msgid "junk at end of #pragma longcall" -msgstr "escombraries al final de #pragma longcall" - -#: config/rs6000/rs6000-c.c:2550 -#, fuzzy, gcc-internal-format -msgid "passing arg %d of %qE discards qualifiers frompointer target type" -msgstr "la conversi de \"%T\" a \"%T\" descarta els qualificadors del tipus de la destinaci del punter" - -#: config/rs6000/rs6000-c.c:2593 -#, fuzzy, gcc-internal-format -msgid "invalid parameter combination for AltiVec intrinsic" -msgstr "registre no vlid en la instrucci" - -#: config/rs6000/rs6000.c:1294 -#, gcc-internal-format -msgid "-mdynamic-no-pic overrides -fpic or -fPIC" -msgstr "" - -#: config/rs6000/rs6000.c:1305 -#, fuzzy, gcc-internal-format -msgid "-m64 requires PowerPC64 architecture, enabling" -msgstr "-maix64 requereix que l'arquitectura PowerPC64 romangui activada" - -#: config/rs6000/rs6000.c:1528 -#, gcc-internal-format -msgid "-mmultiple is not supported on little endian systems" -msgstr "-mmultiple no t suport en sistemes little endian" - -#: config/rs6000/rs6000.c:1535 -#, gcc-internal-format -msgid "-mstring is not supported on little endian systems" -msgstr "-mstringe no t suport en sistemes little endian" - -#: config/rs6000/rs6000.c:1549 -#, gcc-internal-format -msgid "unknown -mdebug-%s switch" -msgstr "interruptor -mdebug-%s desconegut" - -#: config/rs6000/rs6000.c:1561 -#, gcc-internal-format -msgid "unknown -mtraceback arg %qs; expecting %, % or %" -msgstr "" - -#: config/rs6000/rs6000.c:1973 -#, fuzzy, gcc-internal-format -msgid "unknown -m%s= option specified: '%s'" -msgstr "opci -misel= especificada desconeguda: \"%s\"" - -#: config/rs6000/rs6000.c:2186 -#, gcc-internal-format -msgid "not configured for ABI: '%s'" -msgstr "" - -#: config/rs6000/rs6000.c:2199 -#, gcc-internal-format -msgid "Using darwin64 ABI" -msgstr "" - -#: config/rs6000/rs6000.c:2204 -#, gcc-internal-format -msgid "Using old darwin ABI" -msgstr "" - -#: config/rs6000/rs6000.c:2211 -#, gcc-internal-format -msgid "Using IBM extended precision long double" -msgstr "" - -#: config/rs6000/rs6000.c:2217 -#, gcc-internal-format -msgid "Using IEEE extended precision long double" -msgstr "" - -#: config/rs6000/rs6000.c:2222 -#, gcc-internal-format -msgid "unknown ABI specified: '%s'" -msgstr "ABI especificada desconeguda: \"%s\"" - -#: config/rs6000/rs6000.c:2249 -#, fuzzy, gcc-internal-format -msgid "invalid option for -mfloat-gprs: '%s'" -msgstr "opci no vlida \"-mshort-data-%s\"" - -#: config/rs6000/rs6000.c:2259 -#, gcc-internal-format -msgid "Unknown switch -mlong-double-%s" -msgstr "Opci -mlong-double-%s desconegut" - -#: config/rs6000/rs6000.c:2280 -#, 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:2288 -#, fuzzy, gcc-internal-format -msgid "unknown -malign-XXXXX option specified: '%s'" -msgstr "opci -misel= especificada desconeguda: \"%s\"" - -#: config/rs6000/rs6000.c:4989 -#, gcc-internal-format -msgid "GCC vector returned by reference: non-standard ABI extension with no compatibility guarantee" -msgstr "" - -#: config/rs6000/rs6000.c:5062 -#, 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:5320 -#, 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:6221 -#, gcc-internal-format -msgid "GCC vector passed by reference: non-standard ABI extension with no compatibility guarantee" -msgstr "" - -#: config/rs6000/rs6000.c:7461 -#, gcc-internal-format -msgid "argument 1 must be a 5-bit signed literal" -msgstr "l'argument 1 ha de ser una literal amb signe de 5-bit" - -#: config/rs6000/rs6000.c:7564 config/rs6000/rs6000.c:8475 -#, gcc-internal-format -msgid "argument 2 must be a 5-bit unsigned literal" -msgstr "l'argument 2 ha de ser una literal sense signe de 5-bit" - -#: config/rs6000/rs6000.c:7604 -#, gcc-internal-format -msgid "argument 1 of __builtin_altivec_predicate must be a constant" -msgstr "l'argument 1 de _builtin_altivec_predicate ha de ser una constant" - -#: config/rs6000/rs6000.c:7657 -#, gcc-internal-format -msgid "argument 1 of __builtin_altivec_predicate is out of range" -msgstr "l'argument 1 de _builtin_altivec_predicate es fora de lmits" - -#: config/rs6000/rs6000.c:7906 -#, gcc-internal-format -msgid "argument 3 must be a 4-bit unsigned literal" -msgstr "l'argument 3 ha de ser una literal sense signe de 4-bit" - -#: config/rs6000/rs6000.c:8078 -#, fuzzy, gcc-internal-format -msgid "argument to %qs must be a 2-bit unsigned literal" -msgstr "l'argument per a \"%s\" ha de ser una literal sense signe de 2-bit" - -#: config/rs6000/rs6000.c:8220 -#, gcc-internal-format -msgid "unresolved overload for Altivec builtin %qF" -msgstr "" - -#: config/rs6000/rs6000.c:8302 -#, gcc-internal-format -msgid "argument to dss must be a 2-bit unsigned literal" -msgstr "l'argument per a dss ha de ser una literal sense signe de 2-bit" - -#: config/rs6000/rs6000.c:8595 -#, fuzzy, gcc-internal-format -msgid "argument 1 of __builtin_paired_predicate must be a constant" -msgstr "l'argument 1 de __builtin__spe_predicate ha de ser una constant" - -#: config/rs6000/rs6000.c:8642 -#, fuzzy, gcc-internal-format -msgid "argument 1 of __builtin_paired_predicate is out of range" -msgstr "l'argument 1 de __builtin_spe_predicate est fora de lmits" - -#: config/rs6000/rs6000.c:8667 -#, gcc-internal-format -msgid "argument 1 of __builtin_spe_predicate must be a constant" -msgstr "l'argument 1 de __builtin__spe_predicate ha de ser una constant" - -#: config/rs6000/rs6000.c:8739 -#, gcc-internal-format -msgid "argument 1 of __builtin_spe_predicate is out of range" -msgstr "l'argument 1 de __builtin_spe_predicate est fora de lmits" - -#: config/rs6000/rs6000.c:14977 -#, fuzzy, gcc-internal-format -msgid "stack frame too large" -msgstr "marc de pila massa grand: %d bytes" - -#: config/rs6000/rs6000.c:17598 -#, gcc-internal-format -msgid "no profiling of 64-bit code for this ABI" -msgstr "" - -#: config/rs6000/rs6000.c:19470 -#, gcc-internal-format -msgid "use of % in AltiVec types is invalid for 64-bit code" -msgstr "" - -#: config/rs6000/rs6000.c:19472 -#, gcc-internal-format -msgid "use of % in AltiVec types is deprecated; use %" -msgstr "" - -#: config/rs6000/rs6000.c:19476 -#, gcc-internal-format -msgid "use of % in AltiVec types is invalid" -msgstr "" - -#: config/rs6000/rs6000.c:19478 -#, gcc-internal-format -msgid "use of % in AltiVec types is invalid" -msgstr "" - -#: config/rs6000/rs6000.c:19480 -#, gcc-internal-format -msgid "use of % in AltiVec types is invalid" -msgstr "" - -#: config/rs6000/rs6000.c:19482 -#, gcc-internal-format -msgid "use of boolean types in AltiVec types is invalid" -msgstr "" - -#: config/rs6000/rs6000.c:19484 -#, gcc-internal-format -msgid "use of % in AltiVec types is invalid" -msgstr "" - -#: config/rs6000/rs6000.c:19486 -#, gcc-internal-format -msgid "use of decimal floating point types in AltiVec types is invalid" -msgstr "" - -#: config/rs6000/aix43.h:38 config/rs6000/aix51.h:37 config/rs6000/aix52.h:38 -#: config/rs6000/aix53.h:38 -#, gcc-internal-format -msgid "-maix64 and POWER architecture are incompatible" -msgstr "-maix64 i l'arquitectura POWER sn incompatibles" - -#: config/rs6000/aix43.h:43 config/rs6000/aix51.h:42 config/rs6000/aix52.h:43 -#: config/rs6000/aix53.h:43 -#, gcc-internal-format -msgid "-maix64 requires PowerPC64 architecture remain enabled" -msgstr "-maix64 requereix que l'arquitectura PowerPC64 romangui activada" - -#: config/rs6000/aix43.h:49 config/rs6000/aix52.h:49 config/rs6000/aix53.h:49 -#, fuzzy, gcc-internal-format -msgid "soft-float and long-double-128 are incompatible" -msgstr "-mrelocatable i -mcall-%s sn incompatibles" - -#: config/rs6000/aix43.h:53 config/rs6000/aix51.h:46 config/rs6000/aix52.h:53 -#: config/rs6000/aix53.h:53 -#, gcc-internal-format -msgid "-maix64 required: 64-bit computation with 32-bit addressing not yet supported" -msgstr "es requereix -maix64: clcul de 64 bits amb adreament de 32 bits no t suport encara" - -#: config/rs6000/e500.h:41 -#, gcc-internal-format -msgid "AltiVec and E500 instructions cannot coexist" -msgstr "" - -#: config/rs6000/e500.h:43 -#, fuzzy, gcc-internal-format -msgid "64-bit E500 not supported" -msgstr "-pipe no t suport" - -#: config/rs6000/e500.h:45 -#, fuzzy, gcc-internal-format -msgid "E500 and FPRs not supported" -msgstr "els trampolins no tenen suport" - -#: config/rs6000/eabispe.h:43 config/rs6000/linuxspe.h:42 -#, fuzzy, gcc-internal-format -msgid "-m64 not supported in this configuration" -msgstr "%s no t suport en aquesta configuraci" - -#: config/rs6000/linux64.h:108 -#, fuzzy, gcc-internal-format -msgid "-m64 requires a PowerPC64 cpu" -msgstr "-maix64 requereix que l'arquitectura PowerPC64 romangui activada" - -#. 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:1560 -#, gcc-internal-format -msgid "RETURN_ADDRESS_OFFSET not supported" -msgstr "No es dna suport a RETURN_ADDRESS_OFFSET" - -#. 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:129 -#, gcc-internal-format -msgid "bad value for -mcall-%s" -msgstr "valor erroni per a -mcall-%s" - -#: config/rs6000/sysv4.h:145 -#, gcc-internal-format -msgid "bad value for -msdata=%s" -msgstr "valor erroni per a -msdata=%s" - -#: config/rs6000/sysv4.h:162 -#, gcc-internal-format -msgid "-mrelocatable and -msdata=%s are incompatible" -msgstr "-mrelocatable and i -msdata=%s sn incompatibles" - -#: config/rs6000/sysv4.h:171 -#, gcc-internal-format -msgid "-f%s and -msdata=%s are incompatible" -msgstr "-f%s i -msdata=%s sn incompatibles" - -#: config/rs6000/sysv4.h:180 -#, gcc-internal-format -msgid "-msdata=%s and -mcall-%s are incompatible" -msgstr "-msdata=%s i -mcall-%s sn incompatibles" - -#: config/rs6000/sysv4.h:189 -#, gcc-internal-format -msgid "-mrelocatable and -mno-minimal-toc are incompatible" -msgstr "-mrelocatable i -mno-minimal-toc sn incompatibles" - -#: config/rs6000/sysv4.h:195 -#, gcc-internal-format -msgid "-mrelocatable and -mcall-%s are incompatible" -msgstr "-mrelocatable i -mcall-%s sn incompatibles" - -#: config/rs6000/sysv4.h:202 -#, gcc-internal-format -msgid "-fPIC and -mcall-%s are incompatible" -msgstr "-fPIC i -mcall-%s sn incompatibles" - -#: config/rs6000/sysv4.h:209 -#, gcc-internal-format -msgid "-mcall-aixdesc must be big endian" -msgstr "-mcall-aixdesc ha de ser big endian" - -#: config/rs6000/sysv4.h:214 -#, gcc-internal-format -msgid "-msecure-plt not supported by your assembler" -msgstr "" - -#: config/rs6000/sysv4.h:232 -#, fuzzy, gcc-internal-format -msgid "-m%s not supported in this configuration" -msgstr "%s no t suport en aquesta configuraci" - -#: config/s390/s390.c:1395 -#, gcc-internal-format -msgid "stack guard value must be an exact power of 2" -msgstr "" - -#: config/s390/s390.c:1402 -#, gcc-internal-format -msgid "stack size must be an exact power of 2" -msgstr "" - -#: config/s390/s390.c:1447 -#, fuzzy, gcc-internal-format -msgid "z/Architecture mode not supported on %s" -msgstr "no es dna suport al mode trap en Unicos/Mk" - -#: config/s390/s390.c:1449 -#, fuzzy, gcc-internal-format -msgid "64-bit ABI not supported in ESA/390 mode" -msgstr "el model de codi %s no t suport en el mode PIC" - -#: config/s390/s390.c:1456 -#, fuzzy, gcc-internal-format -msgid "Hardware decimal floating point instructions not available on %s" -msgstr "Usar instruccions de maquinari per a coma flotant" - -#: config/s390/s390.c:1459 -#, fuzzy, gcc-internal-format -msgid "Hardware decimal floating point instructions not available in ESA/390 mode" -msgstr "Usar instruccions de maquinari per a coma flotant" - -#: config/s390/s390.c:1469 -#, gcc-internal-format -msgid "-mhard-dfp can't be used in conjunction with -msoft-float" -msgstr "" - -#: config/s390/s390.c:1483 -#, gcc-internal-format -msgid "-mbackchain -mpacked-stack -mhard-float are not supported in combination" -msgstr "" - -#: config/s390/s390.c:1489 -#, gcc-internal-format -msgid "stack size must be greater than the stack guard value" -msgstr "" - -#: config/s390/s390.c:1491 -#, gcc-internal-format -msgid "stack size must not be greater than 64k" -msgstr "" - -#: config/s390/s390.c:1494 -#, gcc-internal-format -msgid "-mstack-guard implies use of -mstack-size" -msgstr "" - -#: config/s390/s390.c:6640 -#, fuzzy, gcc-internal-format -msgid "total size of local variables exceeds architecture limit" -msgstr "La grandria total de les variables locals excedeix els lmits de l'arquitectura." - -#: config/s390/s390.c:7298 -#, gcc-internal-format -msgid "frame size of function %qs is " -msgstr "" - -#: config/s390/s390.c:7328 -#, fuzzy, gcc-internal-format -msgid "frame size of %qs is " -msgstr "no es coneix la grandria d'emmagatzematge de \"%s\"" - -#: config/s390/s390.c:7332 -#, gcc-internal-format -msgid "%qs uses dynamic stack allocation" -msgstr "" - -#: config/score/score3.c:654 config/score/score7.c:653 -#, fuzzy, gcc-internal-format -msgid "-fPIC and -G are incompatible" -msgstr "-fPIC i -mcall-%s sn incompatibles" - -#: config/sh/sh.c:6894 -#, gcc-internal-format -msgid "__builtin_saveregs not supported by this subtarget" -msgstr "no es dna suport a _builtin_saveregs en aquest subobjectiu" - -#: config/sh/sh.c:7904 -#, fuzzy, gcc-internal-format -msgid "%qs attribute only applies to interrupt functions" -msgstr "l'atribut \"%s\" aplica solament a funcions d'interrupci" - -#: config/sh/sh.c:7990 -#, gcc-internal-format -msgid "attribute interrupt_handler is not compatible with -m5-compact" -msgstr "" - -#. The argument must be a constant string. -#: config/sh/sh.c:8012 -#, fuzzy, gcc-internal-format -msgid "%qs attribute argument not a string constant" -msgstr "l'argument de l'atribut \"%s\" no s una cadena constant" - -#. The argument must be a constant integer. -#: config/sh/sh.c:8037 -#, fuzzy, gcc-internal-format -msgid "%qs attribute argument not an integer constant" -msgstr "l'argument de l'atribut \"%s\" no s una cadena entera" - -#: config/sh/sh.c:10085 -#, gcc-internal-format -msgid "r0 needs to be available as a call-clobbered register" -msgstr "" - -#: config/sh/sh.c:10106 -#, fuzzy, gcc-internal-format -msgid "Need a second call-clobbered general purpose register" -msgstr "Usar el registre BK com un registre de propsit general" - -#: config/sh/sh.c:10114 -#, gcc-internal-format -msgid "Need a call-clobbered target register" -msgstr "" - -#: config/sh/symbian.c:146 -#, fuzzy, gcc-internal-format -msgid "function %q+D is defined after prior declaration as dllimport: attribute ignored" -msgstr "la funci inline \"%s\" est declarada com dllimport: s'ignora l'atribut." - -#: config/sh/symbian.c:158 -#, fuzzy, gcc-internal-format -msgid "inline function %q+D is declared as dllimport: attribute ignored" -msgstr "la funci inline \"%s\" est declarada com dllimport: s'ignora l'atribut." - -#: config/sh/symbian.c:272 -#, fuzzy, gcc-internal-format -msgid "%qs declared as both exported to and imported from a DLL" -msgstr "\"%s\" s declarat com exportat a i importat d'una DLL al mateix temps" - -#: config/sh/symbian.c:279 -#, gcc-internal-format -msgid "failure in redeclaration of %q+D: dllimport'd symbol lacks external linkage" -msgstr "" - -#: config/sh/symbian.c:325 -#, gcc-internal-format -msgid "%s %q+D %s after being referenced with dllimport linkage" -msgstr "" - -#: config/sh/symbian.c:891 cp/tree.c:2737 -#, gcc-internal-format -msgid "lang_* check: failed in %s, at %s:%d" -msgstr "revisi lang_*: ha fallat en %s, en %s:%d" - -#. FIXME -#: config/sh/netbsd-elf.h:94 -#, 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:631 -#, fuzzy, gcc-internal-format -msgid "profiling is still experimental for this target" -msgstr "No es dna suport a anlisi de perfil en aquest objectiu." - -#. Only the sh64-elf assembler fully supports .quad properly. -#. Pick one that makes most sense for the target in general. It is not much good to use different functions depending on -Os, since then we'll end up with two different functions when some of the code is compiled for size, and some for speed. -#. SH4 tends to emphasize speed. -#. These have their own way of doing things. -#. ??? Should we use the integer SHmedia function instead? -#. SH1 .. SH3 cores often go into small-footprint systems, so default to the smallest implementation available. -#. ??? EXPERIMENTAL -#. User supplied - leave it alone. -#. The debugging information is sufficient, but gdb doesn't implement this yet -#. Never run scheduling before reload, since that can break global alloc, and generates slower code anyway due to the pressure on R0. -#. Enable sched1 for SH4; ready queue will be reordered by the target hooks when pressure is high. We can not do this for SH3 and lower as they give spill failures for R0. -#. ??? Current exception handling places basic block boundaries after call_insns. It causes the high pressure on R0 and gives spill failures for R0 in reload. See PR 22553 and the thread on gcc-patches . -#: config/sh/sh.h:730 -#, gcc-internal-format -msgid "ignoring -fschedule-insns because of exception handling bug" -msgstr "" - -#. The kernel loader cannot handle the relaxation relocations, so it cannot load kernel modules (which are ET_REL) or RTP executables (which are linked with --emit-relocs). No relaxation relocations appear in shared libraries, so relaxation is OK for RTP PIC. -#: config/sh/vxworks.h:43 -#, fuzzy, gcc-internal-format -msgid "-mrelax is only supported for RTP PIC" -msgstr "-g noms t suport quan s'usa GAS en aquest processador," - -#: config/sparc/sparc.c:698 -#, gcc-internal-format -msgid "%s is not supported by this configuration" -msgstr "%s no t suport en aquesta configuraci" - -#: config/sparc/sparc.c:705 -#, gcc-internal-format -msgid "-mlong-double-64 not allowed with -m64" -msgstr "no es permet -mlong-double-64 amb -m64" - -#: config/sparc/sparc.c:730 -#, gcc-internal-format -msgid "-mcmodel= is not supported on 32 bit systems" -msgstr "-mcmodel= no t suport en sistemes de 32 bit" - -#: config/spu/spu-c.c:77 -#, fuzzy, gcc-internal-format -msgid "insufficient arguments to overloaded function %s" -msgstr "massa pocs arguments per a la funci \"%s\"" - -#: config/spu/spu-c.c:112 -#, fuzzy, gcc-internal-format -msgid "too many arguments to overloaded function %s" -msgstr "massa arguments per a la funci \"%s\"" - -#: config/spu/spu-c.c:124 -#, gcc-internal-format -msgid "parameter list does not match a valid signature for %s()" -msgstr "" - -#: config/spu/spu.c:337 config/spu/spu.c:348 -#, fuzzy, gcc-internal-format -msgid "Unknown architecture '%s'" -msgstr "es desconeix el mode de mquina \"%s\"" - -#: config/spu/spu.c:3034 -#, gcc-internal-format -msgid "`%s' attribute ignored" -msgstr "s'ignora l'atribut \"%s\"" - -#: config/spu/spu.c:5218 -#, gcc-internal-format -msgid "%s expects an integer literal in the range [%d, %d]." -msgstr "" - -#: config/spu/spu.c:5238 -#, gcc-internal-format -msgid "%s expects an integer literal in the range [%d, %d]. (" -msgstr "" - -#: config/spu/spu.c:5268 -#, gcc-internal-format -msgid "%d least significant bits of %s are ignored." -msgstr "" - -#: config/stormy16/stormy16.c:499 -#, fuzzy, gcc-internal-format -msgid "constant halfword load operand out of range" -msgstr "l'argument constant est fora de lmits per a \"%s\"" - -#: config/stormy16/stormy16.c:509 -#, fuzzy, gcc-internal-format -msgid "constant arithmetic operand out of range" -msgstr "l'argument constant est fora de lmits per a \"%s\"" - -#: config/stormy16/stormy16.c:1108 -#, gcc-internal-format -msgid "local variable memory requirements exceed capacity" -msgstr "" - -#: config/stormy16/stormy16.c:1274 -#, fuzzy, gcc-internal-format -msgid "function_profiler support" -msgstr "suport per a function_profiler per a MMIX" - -#: config/stormy16/stormy16.c:1363 -#, gcc-internal-format -msgid "cannot use va_start in interrupt function" -msgstr "no es pot usar va_start en una funci d'interrupci" - -#: config/stormy16/stormy16.c:1906 -#, gcc-internal-format -msgid "switch statement of size %lu entries too large" -msgstr "la declaraci switch de grandria %lu entrades s massa gran" - -#: config/stormy16/stormy16.c:2274 -#, fuzzy, gcc-internal-format -msgid "%<__BELOW100__%> attribute only applies to variables" -msgstr "l'atribut \"%s\" solament aplica a variables" - -#: config/stormy16/stormy16.c:2281 -#, gcc-internal-format -msgid "__BELOW100__ attribute not allowed with auto storage class" -msgstr "" - -#: config/v850/v850-c.c:66 -#, gcc-internal-format -msgid "#pragma GHS endXXXX found without previous startXXX" -msgstr "es va trobar un #pragma GHS endXXXX sense un startXXX previ" - -#: config/v850/v850-c.c:69 -#, gcc-internal-format -msgid "#pragma GHS endXXX does not match previous startXXX" -msgstr "el #pragma GHS endXXXX no coincideix amb el startXXX previ" - -#: config/v850/v850-c.c:95 -#, gcc-internal-format -msgid "cannot set interrupt attribute: no current function" -msgstr "no es pot establir l'atribut d'interrupci: no hi ha funci actual" - -#: config/v850/v850-c.c:103 -#, gcc-internal-format -msgid "cannot set interrupt attribute: no such identifier" -msgstr "no es pot establir l'atribut d'interrupci: no hi ha tal identificador" - -#: config/v850/v850-c.c:148 -#, gcc-internal-format -msgid "junk at end of #pragma ghs section" -msgstr "escombraries al final de la secci #pragma ghs" - -#: config/v850/v850-c.c:165 -#, gcc-internal-format -msgid "unrecognized section name \"%s\"" -msgstr "no es reconeix el nom de secci \"%s\"" - -#: config/v850/v850-c.c:180 -#, gcc-internal-format -msgid "malformed #pragma ghs section" -msgstr "secci #pragma ghs malformada" - -#: config/v850/v850-c.c:199 -#, gcc-internal-format -msgid "junk at end of #pragma ghs interrupt" -msgstr "escombraries al final del #pragma ghs interrupt" - -#: config/v850/v850-c.c:210 -#, gcc-internal-format -msgid "junk at end of #pragma ghs starttda" -msgstr "escombraries al final del #pragma ghs starttda" - -#: config/v850/v850-c.c:221 -#, gcc-internal-format -msgid "junk at end of #pragma ghs startsda" -msgstr "escombraries al final del #pragma ghs startsda" - -#: config/v850/v850-c.c:232 -#, gcc-internal-format -msgid "junk at end of #pragma ghs startzda" -msgstr "escombraries al final del #pragma ghs startzda" - -#: config/v850/v850-c.c:243 -#, gcc-internal-format -msgid "junk at end of #pragma ghs endtda" -msgstr "escombraries al final del #pragma ghs endtda" - -#: config/v850/v850-c.c:254 -#, gcc-internal-format -msgid "junk at end of #pragma ghs endsda" -msgstr "escombraries al final del #pragma ghs endsda" - -#: config/v850/v850-c.c:265 -#, gcc-internal-format -msgid "junk at end of #pragma ghs endzda" -msgstr "escombraries al final del #pragma ghs endzda" - -#: config/v850/v850.c:184 -#, gcc-internal-format -msgid "value passed to %<-m%s%> is too large" -msgstr "" - -#: config/v850/v850.c:2084 -#, fuzzy, gcc-internal-format -msgid "%Jdata area attributes cannot be specified for local variables" -msgstr "no es pot especificar un atribut d'rea de dades per a variables locals" - -#: config/v850/v850.c:2095 -#, fuzzy, gcc-internal-format -msgid "data area of %q+D conflicts with previous declaration" -msgstr "l'rea de dades de \"%s\" en conflicte amb una declaraci prvia" - -#: config/v850/v850.c:2225 -#, fuzzy, gcc-internal-format -msgid "bogus JR construction: %d" -msgstr "construcci JR ambigua: %d\n" - -#: config/v850/v850.c:2243 config/v850/v850.c:2352 -#, gcc-internal-format -msgid "bad amount of stack space removal: %d" -msgstr "quantitat errnia d'eliminaci d'espai de pila: %d" - -#: config/v850/v850.c:2332 -#, gcc-internal-format -msgid "bogus JARL construction: %d\n" -msgstr "construcci JARL ambigua: %d\n" - -#: config/v850/v850.c:2631 -#, fuzzy, gcc-internal-format -msgid "bogus DISPOSE construction: %d" -msgstr "construcci DISPOSE ambigua: %d\n" - -#: config/v850/v850.c:2650 -#, fuzzy, gcc-internal-format -msgid "too much stack space to dispose of: %d" -msgstr "Massa espai de pila per a preparar: %d" - -#: config/v850/v850.c:2752 -#, fuzzy, gcc-internal-format -msgid "bogus PREPEARE construction: %d" -msgstr "construcci PREPEARE ambigua: %d\n" - -#: config/v850/v850.c:2771 -#, fuzzy, gcc-internal-format -msgid "too much stack space to prepare: %d" -msgstr "Massa espai de pila per a preparar: %d" - -#: config/xtensa/xtensa.c:1861 -#, gcc-internal-format -msgid "boolean registers required for the floating-point option" -msgstr "es requereixen registres booleans per a l'opci de coma flotant" - -#: config/xtensa/xtensa.c:1896 -#, fuzzy, gcc-internal-format -msgid "-f%s is not supported with CONST16 instructions" -msgstr "%s no t suport en aquesta configuraci" - -#: config/xtensa/xtensa.c:1901 -#, gcc-internal-format -msgid "PIC is required but not supported with CONST16 instructions" -msgstr "" - -#: config/xtensa/xtensa.c:2745 config/xtensa/xtensa.c:2765 -#, fuzzy, gcc-internal-format -msgid "bad builtin code" -msgstr "macro interna \"%s\" no vlida" - -#: config/xtensa/xtensa.c:2873 -#, gcc-internal-format -msgid "only uninitialized variables can be placed in a .bss section" -msgstr "noms les variables sense inicialitzar es poden collocar en una secci .bss" - -#: ada/misc.c:261 -#, gcc-internal-format -msgid "missing argument to \"-%s\"" -msgstr "Falten arguments per a \"-%s\"" - -#: ada/misc.c:311 -#, fuzzy, gcc-internal-format -msgid "%<-gnat%> misspelled as %<-gant%>" -msgstr "\"-gnat\" mal lletrejat com \"-gant\"" - -#: cp/call.c:2462 -#, gcc-internal-format -msgid "%s %D(%T, %T, %T) " -msgstr "%s %D(%T, %T, %T) " - -#: cp/call.c:2467 -#, gcc-internal-format -msgid "%s %D(%T, %T) " -msgstr "%s %D(%T, %T) " - -#: cp/call.c:2471 -#, gcc-internal-format -msgid "%s %D(%T) " -msgstr "%s %D(%T) " - -#: cp/call.c:2475 -#, gcc-internal-format -msgid "%s %T " -msgstr "%s %T " - -#: cp/call.c:2477 -#, gcc-internal-format -msgid "%s %+#D " -msgstr "" - -#: cp/call.c:2479 cp/pt.c:1397 -#, gcc-internal-format -msgid "%s %+#D" -msgstr "%s %+#D" - -#: cp/call.c:2720 -#, fuzzy, gcc-internal-format -msgid "conversion from %qT to %qT is ambiguous" -msgstr "la conversi de \"%T\" a \"%T\" s ambigua" - -#: cp/call.c:2873 cp/call.c:2891 cp/call.c:2954 -#, fuzzy, gcc-internal-format -msgid "no matching function for call to %<%D(%A)%>" -msgstr "no hi ha una funci coincident per a la crida a \"%D(%A)\"" - -#: cp/call.c:2894 cp/call.c:2957 -#, fuzzy, gcc-internal-format -msgid "call of overloaded %<%D(%A)%> is ambiguous" -msgstr "la crida del \"%D(%A)\" sobrecarregat s ambigua" - -#. It's no good looking for an overloaded operator() on a -#. pointer-to-member-function. -#: cp/call.c:3029 -#, gcc-internal-format -msgid "pointer-to-member function %E cannot be called without an object; consider using .* or ->*" -msgstr "la funci punter-a-membre %E no es pot cridar dintre d'un objecte; consideri utilitzar .* o ->*" - -#: cp/call.c:3103 -#, fuzzy, gcc-internal-format -msgid "no match for call to %<(%T) (%A)%>" -msgstr "no hi ha coincidncia per a la crida a \"(%T) (%A)\"" - -#: cp/call.c:3112 -#, fuzzy, gcc-internal-format -msgid "call of %<(%T) (%A)%> is ambiguous" -msgstr "la crida de \"(%T) (%A)\" s ambigua" - -#: cp/call.c:3150 -#, gcc-internal-format -msgid "%s for ternary % in %<%E ? %E : %E%>" -msgstr "" - -#: cp/call.c:3156 -#, fuzzy, gcc-internal-format -msgid "%s for % in %<%E%s%>" -msgstr "%s per a \"operator%s\" en \"%E%s\"" - -#: cp/call.c:3160 -#, fuzzy, gcc-internal-format -msgid "%s for % in %<%E[%E]%>" -msgstr "%s per a \"operator%s\" en \"%E%s\"" - -#: cp/call.c:3165 -#, fuzzy, gcc-internal-format -msgid "%s for %qs in %<%s %E%>" -msgstr "%s per a \"operador%s\" en \"%s%E\"" - -#: cp/call.c:3170 -#, fuzzy, gcc-internal-format -msgid "%s for % in %<%E %s %E%>" -msgstr "%s per a \"operator%s\" en \"%E%s\"" - -#: cp/call.c:3173 -#, fuzzy, gcc-internal-format -msgid "%s for % in %<%s%E%>" -msgstr "%s per a \"operador%s\" en \"%s%E\"" - -#: cp/call.c:3265 -#, gcc-internal-format -msgid "ISO C++ forbids omitting the middle term of a ?: expression" -msgstr "ISO C++ prohibeix l'omissi del terme mig d'una expressi ?:" - -#: cp/call.c:3343 -#, gcc-internal-format -msgid "second operand to the conditional operator is of type %, but the third operand is neither a throw-expression nor of type %" -msgstr "" - -#: cp/call.c:3348 -#, gcc-internal-format -msgid "third operand to the conditional operator is of type %, but the second operand is neither a throw-expression nor of type %" -msgstr "" - -#: cp/call.c:3389 cp/call.c:3609 -#, fuzzy, gcc-internal-format -msgid "operands to ?: have different types %qT and %qT" -msgstr "els operands de ?: tenen tipus diferents" - -#: cp/call.c:3563 -#, fuzzy, gcc-internal-format -msgid "enumeral mismatch in conditional expression: %qT vs %qT" -msgstr "no coincideix el enumeral en l'expressi condicional: \"%T\" vs \"%T\"" - -#: cp/call.c:3570 -#, gcc-internal-format -msgid "enumeral and non-enumeral type in conditional expression" -msgstr "tipus enumeral i no enumeral en l'expressi condicional" - -#: cp/call.c:3874 -#, fuzzy, gcc-internal-format -msgid "no %<%D(int)%> declared for postfix %qs, trying prefix operator instead" -msgstr "no es va declarar \"%D(int)\" per al \"%s\" postfix, intentant en el seu lloc l'operador prefix" - -#: cp/call.c:3947 -#, fuzzy, gcc-internal-format -msgid "comparison between %q#T and %q#T" -msgstr "comparana entre \"%#T\" i \"%#T\"" - -#: cp/call.c:4229 -#, gcc-internal-format -msgid "no corresponding deallocation function for `%D'" -msgstr "" - -#: cp/call.c:4234 -#, fuzzy, gcc-internal-format -msgid "no suitable % for %qT" -msgstr "no hi ha un operador \"operator delete\" adequat per a \"%T\"" - -#: cp/call.c:4252 -#, fuzzy, gcc-internal-format -msgid "%q+#D is private" -msgstr "\"%+#D\" s privat" - -#: cp/call.c:4254 -#, fuzzy, gcc-internal-format -msgid "%q+#D is protected" -msgstr "\"%+#D\" est protegit" - -#: cp/call.c:4256 -#, fuzzy, gcc-internal-format -msgid "%q+#D is inaccessible" -msgstr "\"%+#D\" s inaccessible" - -#: cp/call.c:4257 -#, gcc-internal-format -msgid "within this context" -msgstr "des d'aquest context" - -#: cp/call.c:4303 -#, fuzzy, gcc-internal-format -msgid "passing NULL to non-pointer argument %P of %qD" -msgstr "passant NULL usat per al no punter %s %P de \"%D\"" - -#: cp/call.c:4306 -#, fuzzy, gcc-internal-format -msgid "converting to non-pointer type %qT from NULL" -msgstr "%s al tipus \"%T\" que no s un punter des de NULL" - -#: cp/call.c:4312 -#, fuzzy, gcc-internal-format -msgid "converting % to pointer type for argument %P of %qD" -msgstr "tipus incompatible per a l'argument %d de \"%s\"" - -#: cp/call.c:4356 cp/cvt.c:217 -#, fuzzy, gcc-internal-format -msgid "invalid conversion from %qT to %qT" -msgstr "conversi no vlida de \"%T\" a \"%T\"" - -#: cp/call.c:4358 -#, fuzzy, gcc-internal-format -msgid " initializing argument %P of %qD" -msgstr " inicialitzant l'argument %P de \"%D\"" - -#: cp/call.c:4491 -#, fuzzy, gcc-internal-format -msgid "cannot bind bitfield %qE to %qT" -msgstr "no es pot inicialitzar \"%T\" des de \"%T\"" - -#: cp/call.c:4494 cp/call.c:4510 -#, fuzzy, gcc-internal-format -msgid "cannot bind packed field %qE to %qT" -msgstr "no es pot declarar que el camp \"%D\" sigui de tipus \"%T\"" - -#: cp/call.c:4497 -#, fuzzy, gcc-internal-format -msgid "cannot bind rvalue %qE to %qT" -msgstr "no es pot inicialitzar \"%T\" des de \"%T\"" - -#: cp/call.c:4611 -#, fuzzy, gcc-internal-format -msgid "cannot pass objects of non-POD type %q#T through %<...%>; call will abort at runtime" -msgstr "no es pot passar objectes de tipus \"%#T\" que no s POD a travs de \"...\"; la cridada avortar en temps d'execuci" - -#. Undefined behavior [expr.call] 5.2.2/7. -#: cp/call.c:4639 -#, fuzzy, gcc-internal-format -msgid "cannot receive objects of non-POD type %q#T through %<...%>; call will abort at runtime" -msgstr "no es pot passar objectes de tipus \"%#T\" que no s POD a travs de \"...\"; la cridada avortar en temps d'execuci" - -#: cp/call.c:4687 -#, fuzzy, gcc-internal-format -msgid "the default argument for parameter %d of %qD has not yet been parsed" -msgstr "l'argument per omissi per al parmetre del tipus \"%T\" t el tipus \"%T\"" - -#: cp/call.c:4697 -#, fuzzy, gcc-internal-format -msgid "recursive evaluation of default argument for %q#D" -msgstr "redefinici de l'argument per omissi per a \"%#D\"" - -#: cp/call.c:4802 -#, fuzzy, gcc-internal-format -msgid "argument of function call might be a candidate for a format attribute" -msgstr "Avisar per funcions que podrien ser candidates per a atributs de format" - -#: cp/call.c:4950 -#, fuzzy, gcc-internal-format -msgid "passing %qT as % argument of %q#D discards qualifiers" -msgstr "passar \"%T\" com l'argument \"this\" de \"%#D\" descarta als qualificadors" - -#: cp/call.c:4969 -#, fuzzy, gcc-internal-format -msgid "%qT is not an accessible base of %qT" -msgstr "\"%T\" no s una base inaccessible de \"%T\"" - -#: cp/call.c:5229 -#, fuzzy, gcc-internal-format -msgid "could not find class$ field in java interface type %qT" -msgstr "no es va poder trobar un camp class$ en el tipus d'interfcie java \"%T\"" - -#: cp/call.c:5470 -#, fuzzy, gcc-internal-format -msgid "call to non-function %qD" -msgstr "cridada a \"%D\" que no s funci" - -#: cp/call.c:5595 -#, fuzzy, gcc-internal-format -msgid "no matching function for call to %<%T::%s(%A)%#V%>" -msgstr "no es troba una funci coincident per a la cridada a \"%T::%D(%A)%#V\"" - -#: cp/call.c:5613 -#, fuzzy, gcc-internal-format -msgid "call of overloaded %<%s(%A)%> is ambiguous" -msgstr "la cridada del \"%D(%A)\" sobrecarregat s ambigua" - -#: cp/call.c:5639 -#, fuzzy, gcc-internal-format -msgid "cannot call member function %qD without object" -msgstr "no es pot cridar a la funci membre \"%D\" sense un objecte" - -#: cp/call.c:6283 -#, fuzzy, gcc-internal-format -msgid "passing %qT chooses %qT over %qT" -msgstr "passar \"%T\" escull \"%T\" sobre \"%T\"" - -#: cp/call.c:6285 cp/name-lookup.c:4320 cp/name-lookup.c:4753 -#, fuzzy, gcc-internal-format -msgid " in call to %qD" -msgstr " en la crida a \"%D\"" - -#: cp/call.c:6342 -#, fuzzy, gcc-internal-format -msgid "choosing %qD over %qD" -msgstr "escollint \"%D\" sobre \"%D\"" - -#: cp/call.c:6343 -#, fuzzy, gcc-internal-format -msgid " for conversion from %qT to %qT" -msgstr " per a la conversi de \"%T\" a \"%T\"" - -#: cp/call.c:6345 -#, gcc-internal-format -msgid " because conversion sequence for the argument is better" -msgstr " perqu la seqncia de conversi per a l'argument s millor" - -#: cp/call.c:6459 -#, 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:6603 -#, fuzzy, gcc-internal-format -msgid "could not convert %qE to %qT" -msgstr "no es pot convertir \"%E\" a \"%T\"" - -#: cp/call.c:6737 -#, fuzzy, gcc-internal-format -msgid "invalid initialization of non-const reference of type %qT from a temporary of type %qT" -msgstr "const_cast no vlid d'un rvalue de tipus \"%T\" al tipus \"%T\"" - -#: cp/call.c:6741 -#, fuzzy, gcc-internal-format -msgid "invalid initialization of reference of type %qT from expression of type %qT" -msgstr "initialitzaci no vlida de reference de tipus \"%T\" a partir d'una expressi de tipus \"%T\"" - -#: cp/class.c:280 -#, fuzzy, gcc-internal-format -msgid "cannot convert from base %qT to derived type %qT via virtual base %qT" -msgstr "no es pot convertir de la base \"%T\" al tipus derivat \"%T\" a travs de la base virtual \"%T\"" - -#: cp/class.c:961 -#, fuzzy, gcc-internal-format -msgid "Java class %qT cannot have a destructor" -msgstr "la classe base \"%#T\" t un destructor no virtual" - -#: cp/class.c:963 -#, fuzzy, gcc-internal-format -msgid "Java class %qT cannot have an implicit non-trivial destructor" -msgstr "la classe base \"%#T\" t un destructor no virtual" - -#: cp/class.c:1062 -#, fuzzy, gcc-internal-format -msgid "repeated using declaration %q+D" -msgstr "per a la declaraci de patr \"%D\"" - -#: cp/class.c:1064 -#, fuzzy, gcc-internal-format -msgid "using declaration %q+D conflicts with a previous using declaration" -msgstr "%Jla secci de \"%D\" causa conflictes amb la declaraci prvia" - -#: cp/class.c:1069 -#, fuzzy, gcc-internal-format -msgid "%q+#D cannot be overloaded" -msgstr "no es poden sobrecarregar \"%#D\" i \"%#D\"" - -#: cp/class.c:1070 -#, gcc-internal-format -msgid "with %q+#D" -msgstr "" - -#: cp/class.c:1137 -#, fuzzy, gcc-internal-format -msgid "conflicting access specifications for method %q+D, ignored" -msgstr "especificacions d'accs en conflicte per al mtode \"%D\", ignorat" - -#: cp/class.c:1140 -#, fuzzy, gcc-internal-format -msgid "conflicting access specifications for field %qE, ignored" -msgstr "especificacions d'accs en conflicte per al camp \"%s\", ignorat" - -#: cp/class.c:1201 cp/class.c:1209 -#, fuzzy, gcc-internal-format -msgid "%q+D invalid in %q#T" -msgstr "\"%D\" no vlid en \"%#T\"" - -#: cp/class.c:1202 -#, fuzzy, gcc-internal-format -msgid " because of local method %q+#D with same name" -msgstr " a causa del mtode local \"%D\" amb el mateix nom" - -#: cp/class.c:1210 -#, fuzzy, gcc-internal-format -msgid " because of local member %q+#D with same name" -msgstr " a causa del membre local \"%D\" amb el mateix nom" - -#: cp/class.c:1253 -#, fuzzy, gcc-internal-format -msgid "base class %q#T has a non-virtual destructor" -msgstr "la classe base \"%#T\" t un destructor no virtual" - -#: cp/class.c:1570 -#, fuzzy, gcc-internal-format -msgid "all member functions in class %qT are private" -msgstr "tots les funcions membres en la classe \"%#T\" sn privades" - -#: cp/class.c:1582 -#, fuzzy, gcc-internal-format -msgid "%q#T only defines a private destructor and has no friends" -msgstr "\"%#T\" solament defineix un destructor privat i no t friends" - -#: cp/class.c:1626 -#, fuzzy, gcc-internal-format -msgid "%q#T only defines private constructors and has no friends" -msgstr "\"%#T\" solament defineix constructors privats i no t friends" - -#: cp/class.c:2019 -#, fuzzy, gcc-internal-format -msgid "no unique final overrider for %qD in %qT" -msgstr "no hi ha un eixafador nic final per a \"%D\" en \"%#T\"" - -#. Here we know it is a hider, and no overrider exists. -#: cp/class.c:2439 -#, fuzzy, gcc-internal-format -msgid "%q+D was hidden" -msgstr "\"%D\" estava amagat" - -#: cp/class.c:2440 -#, fuzzy, gcc-internal-format -msgid " by %q+D" -msgstr " per \"%D\"" - -#: cp/class.c:2483 cp/decl2.c:1135 -#, fuzzy, gcc-internal-format -msgid "%q+#D invalid; an anonymous union can only have non-static data members" -msgstr "\"%D\" no vlid; un union annim noms pot tenir membres amb dades no esttiques" - -#: cp/class.c:2486 -#, fuzzy, gcc-internal-format -msgid "%q+#D invalid; an anonymous struct can only have non-static data members" -msgstr "\"%D\" no vlid; un union annim noms pot tenir membres amb dades no esttiques" - -#: cp/class.c:2494 cp/decl2.c:1141 -#, fuzzy, gcc-internal-format -msgid "private member %q+#D in anonymous union" -msgstr "membre privat \"%D\" en union annima" - -#: cp/class.c:2496 -#, fuzzy, gcc-internal-format -msgid "private member %q+#D in anonymous struct" -msgstr "membre privat \"%D\" en union annima" - -#: cp/class.c:2501 cp/decl2.c:1143 -#, fuzzy, gcc-internal-format -msgid "protected member %q+#D in anonymous union" -msgstr "membre protegit \"%D\" en union annima" - -#: cp/class.c:2503 -#, fuzzy, gcc-internal-format -msgid "protected member %q+#D in anonymous struct" -msgstr "membre protegit \"%D\" en union annima" - -#: cp/class.c:2677 -#, fuzzy, gcc-internal-format -msgid "bit-field %q+#D with non-integral type" -msgstr "camp de bits \"%D\" amb tipus no enter" - -#: cp/class.c:2690 -#, fuzzy, gcc-internal-format -msgid "bit-field %q+D width not an integer constant" -msgstr "l'amplria del camp de bits \"%D\" no s una constant entera" - -#: cp/class.c:2695 -#, fuzzy, gcc-internal-format -msgid "negative width in bit-field %q+D" -msgstr "amplria negativa en el camp de bit \"%D\"" - -#: cp/class.c:2700 -#, fuzzy, gcc-internal-format -msgid "zero width for bit-field %q+D" -msgstr "amplria zero per al camp de bits \"%D\"" - -#: cp/class.c:2706 -#, fuzzy, gcc-internal-format -msgid "width of %q+D exceeds its type" -msgstr "l'amplria de \"%D\" excedeix el seu tipus" - -#: cp/class.c:2715 -#, fuzzy, gcc-internal-format -msgid "%q+D is too small to hold all values of %q#T" -msgstr "\"%D\" s massa petit per a guardar tots els valors de \"%#T\"" - -#: cp/class.c:2772 -#, fuzzy, gcc-internal-format -msgid "member %q+#D with constructor not allowed in union" -msgstr "no es permet el membre \"%D\" amb constructor en la union" - -#: cp/class.c:2775 -#, fuzzy, gcc-internal-format -msgid "member %q+#D with destructor not allowed in union" -msgstr "no es permet el membre \"%D\" amb destructor en la union" - -#: cp/class.c:2777 -#, fuzzy, gcc-internal-format -msgid "member %q+#D with copy assignment operator not allowed in union" -msgstr "no es permet el membre \"%D\" amb operador d'assignaci de cpia en la union" - -#: cp/class.c:2801 -#, fuzzy, gcc-internal-format -msgid "multiple fields in union %qT initialized" -msgstr "mltiples camps inicialitzats en la uni \"%#T\"" - -#: cp/class.c:2890 -#, fuzzy, gcc-internal-format -msgid "%q+D may not be static because it is a member of a union" -msgstr "\"%D\" ha de ser una funci membre que no sigui static" - -#: cp/class.c:2895 -#, fuzzy, gcc-internal-format -msgid "%q+D may not have reference type %qT because it is a member of a union" -msgstr "\"%D\" ha de ser una funci membre que no sigui static" - -#: cp/class.c:2906 -#, fuzzy, gcc-internal-format -msgid "field %q+D invalidly declared function type" -msgstr "el camp \"%D\" s declarat no vlidament com un tipus de funci" - -#: cp/class.c:2912 -#, fuzzy, gcc-internal-format -msgid "field %q+D invalidly declared method type" -msgstr "el camp \"%D\" s declarat no vlidament com un tipus de mtode" - -#: cp/class.c:2944 -#, fuzzy, gcc-internal-format -msgid "non-static reference %q+#D in class without a constructor" -msgstr "referncia \"%D\" que no s static en una classe sense un constructor" - -#: cp/class.c:2955 -#, gcc-internal-format -msgid "ignoring packed attribute because of unpacked non-POD field %q+#D" -msgstr "" - -#: cp/class.c:3022 -#, fuzzy, gcc-internal-format -msgid "non-static const member %q+#D in class without a constructor" -msgstr "membre const \"%D\" que no s static en una classe sense un constructor" - -#: cp/class.c:3037 -#, fuzzy, gcc-internal-format -msgid "field %q+#D with same name as class" -msgstr "camp \"%D\" amb el mateix nom que la classe" - -#: cp/class.c:3068 -#, fuzzy, gcc-internal-format -msgid "%q#T has pointer data members" -msgstr "\"%#T\" t membres punters a dades" - -#: cp/class.c:3073 -#, fuzzy, gcc-internal-format -msgid " but does not override %<%T(const %T&)%>" -msgstr " per no s'imposa a \"%T(const %T&)\"" - -#: cp/class.c:3075 -#, fuzzy, gcc-internal-format -msgid " or %" -msgstr " o a \"operator=(cont %T&)\"" - -#: cp/class.c:3079 -#, fuzzy, gcc-internal-format -msgid " but does not override %" -msgstr " per no s'imposa a \"operator=(const %T&)\"" - -#: cp/class.c:3540 -#, 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:3665 -#, gcc-internal-format -msgid "class %qT will be considered nearly empty in a future version of GCC" -msgstr "" - -#: cp/class.c:3747 -#, fuzzy, gcc-internal-format -msgid "initializer specified for non-virtual method %q+D" -msgstr "es va especificar un inicialitzador per al mtode no virtual \"%D\"" - -#: cp/class.c:4412 -#, 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:4513 -#, fuzzy, gcc-internal-format -msgid "direct base %qT inaccessible in %qT due to ambiguity" -msgstr "base directa \"%T\" inaccessible en \"%T\" a causa d'ambigitat" - -#: cp/class.c:4525 -#, fuzzy, gcc-internal-format -msgid "virtual base %qT inaccessible in %qT due to ambiguity" -msgstr "base virtual \"%T\" inaccessible en \"%T\" a causa d'ambigitat" - -#: cp/class.c:4704 -#, gcc-internal-format -msgid "size assigned to %qT may not be ABI-compliant and may change in a future version of GCC" -msgstr "" - -#: cp/class.c:4744 -#, 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:4772 -#, 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:4781 -#, 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:4864 -#, gcc-internal-format -msgid "layout of classes derived from empty class %qT may change in a future version of GCC" -msgstr "" - -#: cp/class.c:5010 cp/parser.c:14608 -#, fuzzy, gcc-internal-format -msgid "redefinition of %q#T" -msgstr "redefinici de \"%#T\"" - -#: cp/class.c:5166 -#, fuzzy, gcc-internal-format -msgid "%q#T has virtual functions and accessible non-virtual destructor" -msgstr "\"%#T\" t funcions virtuals per destructors no virtuals" - -#: cp/class.c:5268 -#, gcc-internal-format -msgid "trying to finish struct, but kicked out due to previous parse errors" -msgstr "es va tractar d'acabar struct, per va ser tret a causa d'errors previs de decodificaci" - -#: cp/class.c:5728 -#, fuzzy, gcc-internal-format -msgid "language string %<\"%E\"%> not recognized" -msgstr "cadena de llenguatge \"\"%s\"\" no reconeguda" - -#: cp/class.c:5817 -#, fuzzy, gcc-internal-format -msgid "cannot resolve overloaded function %qD based on conversion to type %qT" -msgstr "no es pot resoldre la funci sobrecarregada \"%D\" basant-se en la conversi al tipus \"%T\"" - -#: cp/class.c:5946 -#, fuzzy, gcc-internal-format -msgid "no matches converting function %qD to type %q#T" -msgstr "no hi ha coincidncies al convertir la funci \"%D\" al tipus \"%#T\"" - -#: cp/class.c:5969 -#, fuzzy, gcc-internal-format -msgid "converting overloaded function %qD to type %q#T is ambiguous" -msgstr "la conversi de la funci sobrecarregada \"%D\" al tipus \"%#T\" s ambigua" - -#: cp/class.c:5995 -#, fuzzy, gcc-internal-format -msgid "assuming pointer to member %qD" -msgstr "assumint el punter a membre \"%D\"" - -#: cp/class.c:5998 -#, fuzzy, gcc-internal-format -msgid "(a pointer to member can only be formed with %<&%E%>)" -msgstr "(un punter a membre solament es pot formar amb \"&%E\")" - -#: cp/class.c:6054 cp/class.c:6088 -#, gcc-internal-format -msgid "not enough type information" -msgstr "no hi ha suficient informaci de tipus" - -#: cp/class.c:6071 -#, fuzzy, gcc-internal-format -msgid "argument of type %qT does not match %qT" -msgstr "l'argument de tipus \"%T\" no coincideix amb \"%T\"" - -#. [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:6358 cp/decl.c:1199 cp/name-lookup.c:526 -#, fuzzy, gcc-internal-format -msgid "declaration of %q#D" -msgstr "la declaraci de \"%#D\"" - -#: cp/class.c:6359 -#, fuzzy, gcc-internal-format -msgid "changes meaning of %qD from %q+#D" -msgstr "canvia el significat de \"%D\" a partir de \"%+#D\"" - -#: cp/cp-gimplify.c:99 -#, fuzzy, gcc-internal-format -msgid "continue statement not within loop or switch" -msgstr "la declaraci break no est dintre d'un cicle o switch" - -#: cp/cp-gimplify.c:371 -#, fuzzy, gcc-internal-format -msgid "statement with no effect" -msgstr "%s no t %s" - -#: cp/cvt.c:90 -#, fuzzy, gcc-internal-format -msgid "can't convert from incomplete type %qT to %qT" -msgstr "no es pot convertir des del tipus de dada incompleta \"%T\" a \"%T\"" - -#: cp/cvt.c:99 -#, fuzzy, gcc-internal-format -msgid "conversion of %qE from %qT to %qT is ambiguous" -msgstr "la conversi de \"%E\" des de \"%T\" a \"%T\" s ambigua" - -#: cp/cvt.c:168 cp/cvt.c:193 cp/cvt.c:238 -#, fuzzy, gcc-internal-format -msgid "cannot convert %qE from type %qT to type %qT" -msgstr "no es pot convertir \"%E\" des del tipus \"%T\" al tipus \"%T\"" - -#: cp/cvt.c:452 -#, fuzzy, gcc-internal-format -msgid "conversion from %qT to %qT discards qualifiers" -msgstr "la conversi de \"%T\" a \"%T\" descarta els qualificadors" - -#: cp/cvt.c:470 cp/typeck.c:5257 -#, fuzzy, gcc-internal-format -msgid "casting %qT to %qT does not dereference pointer" -msgstr "la conversi de \"%T\" a \"%T\" no dereferencia els punters" - -#: cp/cvt.c:497 -#, fuzzy, gcc-internal-format -msgid "cannot convert type %qT to type %qT" -msgstr "no es pot convertir del tipus \"%T\" al tipus \"%T\"" - -#: cp/cvt.c:656 -#, fuzzy, gcc-internal-format -msgid "conversion from %q#T to %q#T" -msgstr "conversi de \"%#T\" a \"%#T\"" - -#: cp/cvt.c:668 cp/cvt.c:688 -#, fuzzy, gcc-internal-format -msgid "%q#T used where a %qT was expected" -msgstr "es va usar un \"%#T\" on s'esperava un \"%T\"" - -#: cp/cvt.c:703 -#, fuzzy, gcc-internal-format -msgid "%q#T used where a floating point value was expected" -msgstr "es va usar un \"%#T\" on s'esperava un valor de coma flotant" - -#: cp/cvt.c:750 -#, fuzzy, gcc-internal-format -msgid "conversion from %qT to non-scalar type %qT requested" -msgstr "es va sollicitar la conversi des de \"%T\" al tipus no escalar \"%T\"" - -#: cp/cvt.c:784 -#, fuzzy, gcc-internal-format -msgid "pseudo-destructor is not called" -msgstr "l'argument per a l'atribut \"%s\" s ms gran que %d" - -#: cp/cvt.c:844 -#, fuzzy, gcc-internal-format -msgid "object of incomplete type %qT will not be accessed in %s" -msgstr "l'objecte de tipus incomplet \"%T\" no es accesar en %s" - -#: cp/cvt.c:849 -#, fuzzy, gcc-internal-format -msgid "object of type %qT will not be accessed in %s" -msgstr "l'objecte de tipus \"%T\" no es accesar en %s" - -#: cp/cvt.c:865 -#, fuzzy, gcc-internal-format -msgid "object %qE of incomplete type %qT will not be accessed in %s" -msgstr "l'objecte \"%E\" de tipus incomplet \"%T\" no es accesar en %s" - -#. [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:902 -#, gcc-internal-format -msgid "%s cannot resolve address of overloaded function" -msgstr "%s no es pot resoldre l'adrea de la funci sobrecarregada" - -#. Only warn when there is no &. -#: cp/cvt.c:909 -#, fuzzy, gcc-internal-format -msgid "%s is a reference, not call, to function %qE" -msgstr "%s s una referncia, no una cridada, a la funci \"%E\"" - -#: cp/cvt.c:926 -#, fuzzy, gcc-internal-format -msgid "%s has no effect" -msgstr "%s no t %s" - -#: cp/cvt.c:958 -#, fuzzy, gcc-internal-format -msgid "value computed is not used" -msgstr "l'autmat \"%s\" no s'utilitza" - -#: cp/cvt.c:1068 -#, gcc-internal-format -msgid "converting NULL to non-pointer type" -msgstr "convertint NULL a un tipus que no s punter" - -#: cp/cvt.c:1174 -#, fuzzy, gcc-internal-format -msgid "ambiguous default type conversion from %qT" -msgstr "conversi de tipus per omissi ambigua des de \"%T\"" - -#: cp/cvt.c:1176 -#, fuzzy, gcc-internal-format -msgid " candidate conversions include %qD and %qD" -msgstr " les conversions candidates inclouen \"%D\" i \"%D\"" - -#: cp/decl.c:1062 -#, fuzzy, gcc-internal-format -msgid "%qD was declared % and later %" -msgstr "\"%s\" va ser declarat \"extern\" i desprs \"static\"" - -#: cp/decl.c:1063 cp/decl.c:1618 objc/objc-act.c:2931 objc/objc-act.c:7503 -#, fuzzy, gcc-internal-format -msgid "previous declaration of %q+D" -msgstr "declaraci prvia de \"%D\"" - -#: cp/decl.c:1096 -#, fuzzy, gcc-internal-format -msgid "declaration of %qF throws different exceptions" -msgstr "la declaraci de \"%F\" llana excepcions diferents" - -#: cp/decl.c:1097 -#, fuzzy, gcc-internal-format -msgid "from previous declaration %q+F" -msgstr "que la declaraci prvia \"%F\"" - -#: cp/decl.c:1153 -#, fuzzy, gcc-internal-format -msgid "function %q+D redeclared as inline" -msgstr "funci \"%s\" re declarada com inline" - -#: cp/decl.c:1155 -#, fuzzy, gcc-internal-format -msgid "previous declaration of %q+D with attribute noinline" -msgstr "declaraci prvia de la funci \"%s\" amb l'atribut noinline" - -#: cp/decl.c:1162 -#, fuzzy, gcc-internal-format -msgid "function %q+D redeclared with attribute noinline" -msgstr "funci \"%s\" re-declarada amb l'atribut noinline" - -#: cp/decl.c:1164 -#, fuzzy, gcc-internal-format -msgid "previous declaration of %q+D was inline" -msgstr "la declaraci prvia de la funci \"%s\" va ser inline" - -#: cp/decl.c:1186 cp/decl.c:1259 -#, fuzzy, gcc-internal-format -msgid "shadowing %s function %q#D" -msgstr "enfosquint la funci de biblioteca \"%#D\"" - -#: cp/decl.c:1195 -#, fuzzy, gcc-internal-format -msgid "library function %q#D redeclared as non-function %q#D" -msgstr "la funci de biblioteca \"%#D\" s redeclarada com \"%#D\" que no s funci" - -#: cp/decl.c:1200 -#, fuzzy, gcc-internal-format -msgid "conflicts with built-in declaration %q#D" -msgstr "causa conflicte amb la declaraci interna \"%#D\"" - -#: cp/decl.c:1254 cp/decl.c:1380 cp/decl.c:1396 -#, fuzzy, gcc-internal-format -msgid "new declaration %q#D" -msgstr "declaraci nova \"%#D\"" - -#: cp/decl.c:1255 -#, fuzzy, gcc-internal-format -msgid "ambiguates built-in declaration %q#D" -msgstr "fa ambigua la declaraci interna \"%#D\"" - -#: cp/decl.c:1344 -#, fuzzy, gcc-internal-format -msgid "%q#D redeclared as different kind of symbol" -msgstr "\"%#D\" redeclarat com un tipus diferent de smbol" - -#: cp/decl.c:1347 -#, fuzzy, gcc-internal-format -msgid "previous declaration of %q+#D" -msgstr "declaraci prvia de \"%#D\"" - -#: cp/decl.c:1366 -#, fuzzy, gcc-internal-format -msgid "declaration of template %q#D" -msgstr "declaraci del patr \"%#D\"" - -#: cp/decl.c:1367 cp/name-lookup.c:527 -#, fuzzy, gcc-internal-format -msgid "conflicts with previous declaration %q+#D" -msgstr "causa conflictes amb la declaraci prvia \"%#D\"" - -#: cp/decl.c:1381 cp/decl.c:1397 -#, fuzzy, gcc-internal-format -msgid "ambiguates old declaration %q+#D" -msgstr "fa ambigua la declaraci antiga \"%#D\"" - -#: cp/decl.c:1389 -#, fuzzy, gcc-internal-format -msgid "declaration of C function %q#D conflicts with" -msgstr "la declaraci de la funci C \"%#D\" t conflictes amb" - -#: cp/decl.c:1391 -#, fuzzy, gcc-internal-format -msgid "previous declaration %q+#D here" -msgstr "declaraci prvia de \"%#D\" aqu" - -#: cp/decl.c:1405 -#, fuzzy, gcc-internal-format -msgid "conflicting declaration %q#D" -msgstr "declaracions de \"%s\" en conflicte" - -#: cp/decl.c:1406 -#, fuzzy, gcc-internal-format -msgid "%q+D has a previous declaration as %q#D" -msgstr "declaraci prvia com \"%#D\"" - -#. [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:1458 -#, fuzzy, gcc-internal-format -msgid "declaration of namespace %qD conflicts with" -msgstr "la declaraci de la funci C \"%#D\" t conflictes amb" - -#: cp/decl.c:1459 -#, fuzzy, gcc-internal-format -msgid "previous declaration of namespace %q+D here" -msgstr "declaraci prvia de \"%#D\" aqu" - -#: cp/decl.c:1470 -#, fuzzy, gcc-internal-format -msgid "%q+#D previously defined here" -msgstr "es va definir \"%#D\" prviament aqu" - -#. Prototype decl follows defn w/o prototype. -#: cp/decl.c:1480 -#, fuzzy, gcc-internal-format -msgid "prototype for %q+#D" -msgstr "el prototip per a \"%#D\"" - -#: cp/decl.c:1481 -#, fuzzy, gcc-internal-format -msgid "%Jfollows non-prototype definition here" -msgstr "a continuaci la definici del no prototip aqu" - -#: cp/decl.c:1521 -#, fuzzy, gcc-internal-format -msgid "previous declaration of %q+#D with %qL linkage" -msgstr "declaraci prvia de \"%#D\" amb l'enlla %L" - -#: cp/decl.c:1523 -#, fuzzy, gcc-internal-format -msgid "conflicts with new declaration with %qL linkage" -msgstr "t conflictes amb la declaraci nova amb l'enlla %L" - -#: cp/decl.c:1546 cp/decl.c:1552 -#, fuzzy, gcc-internal-format -msgid "default argument given for parameter %d of %q#D" -msgstr "argument per omissi donat per al parmetre %d de \"%#D\"" - -#: cp/decl.c:1548 cp/decl.c:1554 -#, fuzzy, gcc-internal-format -msgid "after previous specification in %q+#D" -msgstr "desprs de l'especificaci prvia en \"%#D\"" - -#: cp/decl.c:1563 -#, fuzzy, gcc-internal-format -msgid "%q#D was used before it was declared inline" -msgstr "es va usar \"%#D\" abans que sigui declarat inline" - -#: cp/decl.c:1564 -#, fuzzy, gcc-internal-format -msgid "%Jprevious non-inline declaration here" -msgstr "declaraci prvia no inline aqu" - -#: cp/decl.c:1617 -#, fuzzy, gcc-internal-format -msgid "redundant redeclaration of %qD in same scope" -msgstr "declaraci redundant de \"%D\" en el mateix mbit" - -#. 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:1932 -#, fuzzy, gcc-internal-format -msgid "explicit specialization of %qD after first use" -msgstr "especialitzaci explcita de %D desprs del primer s" - -#: cp/decl.c:2028 -#, fuzzy, gcc-internal-format -msgid "%q+D: visibility attribute ignored because it" -msgstr "s'ignora l'atribut \"%s\"" - -#: cp/decl.c:2030 -#, fuzzy, gcc-internal-format -msgid "%Jconflicts with previous declaration here" -msgstr "causa conflictes amb la declaraci prvia \"%#D\"" - -#: cp/decl.c:2457 -#, fuzzy, gcc-internal-format -msgid "jump to label %qD" -msgstr "salt a l'etiqueta \"%D\"" - -#: cp/decl.c:2459 -#, gcc-internal-format -msgid "jump to case label" -msgstr "salt a l'etiqueta case" - -#: cp/decl.c:2461 -#, fuzzy, gcc-internal-format -msgid "%H from here" -msgstr " des d'aqu" - -#: cp/decl.c:2480 cp/decl.c:2643 -#, gcc-internal-format -msgid " exits OpenMP structured block" -msgstr "" - -#: cp/decl.c:2501 -#, fuzzy, gcc-internal-format -msgid " crosses initialization of %q+#D" -msgstr " creua la inicialitzaci de \"%#D\"" - -#: cp/decl.c:2503 cp/decl.c:2618 -#, fuzzy, gcc-internal-format -msgid " enters scope of non-POD %q+#D" -msgstr " entra en l'mbit de \"%#D\" que no s POD" - -#: cp/decl.c:2516 cp/decl.c:2622 -#, gcc-internal-format -msgid " enters try block" -msgstr " entra intent de bloc" - -#: cp/decl.c:2518 cp/decl.c:2624 -#, gcc-internal-format -msgid " enters catch block" -msgstr " entra captura de bloc" - -#: cp/decl.c:2528 cp/decl.c:2627 -#, fuzzy, gcc-internal-format -msgid " enters OpenMP structured block" -msgstr " entra intent de bloc" - -#: cp/decl.c:2599 cp/decl.c:2639 -#, fuzzy, gcc-internal-format -msgid "jump to label %q+D" -msgstr "salt a l'etiqueta \"%D\"" - -#: cp/decl.c:2600 cp/decl.c:2640 -#, gcc-internal-format -msgid " from here" -msgstr " des d'aqu" - -#. Can't skip init of __exception_info. -#: cp/decl.c:2612 -#, fuzzy, gcc-internal-format -msgid "%J enters catch block" -msgstr " entra captura de bloc" - -#: cp/decl.c:2616 -#, fuzzy, gcc-internal-format -msgid " skips initialization of %q+#D" -msgstr " salta la inicializacin de \"%#D\"" - -#: cp/decl.c:2692 -#, gcc-internal-format -msgid "label named wchar_t" -msgstr "etiqueta nomenada wchar_t" - -#: cp/decl.c:2696 -#, fuzzy, gcc-internal-format -msgid "duplicate label %qD" -msgstr "etiqueta duplicada \"%D\"" - -#: cp/decl.c:2962 -#, fuzzy, gcc-internal-format -msgid "%qD is not a type" -msgstr "\"%D::%D\" no s un patr" - -#: cp/decl.c:2968 cp/parser.c:4033 -#, fuzzy, gcc-internal-format -msgid "%qD used without template parameters" -msgstr "s'usa \"%D\" sense parmetres de patr" - -#: cp/decl.c:2983 -#, fuzzy, gcc-internal-format -msgid "%q#T is not a class" -msgstr "\"%#T\" no s un patr" - -#: cp/decl.c:2995 cp/decl.c:3063 -#, fuzzy, gcc-internal-format -msgid "no class template named %q#T in %q#T" -msgstr "no hi ha una patr de classe cridada \"%#T\" en \"%#T\"" - -#: cp/decl.c:3003 -#, gcc-internal-format -msgid "% names %q#T, which is not a class template" -msgstr "" - -#: cp/decl.c:3010 -#, gcc-internal-format -msgid "% names %q#T, which is not a type" -msgstr "" - -#: cp/decl.c:3072 -#, fuzzy, gcc-internal-format -msgid "template parameters do not match template" -msgstr "els parmetres del patr no poden ser friends" - -#: cp/decl.c:3073 cp/friend.c:321 cp/friend.c:329 -#, fuzzy, gcc-internal-format -msgid "%q+D declared here" -msgstr " \"%#D\" declarat aqu" - -#: cp/decl.c:3711 -#, fuzzy, gcc-internal-format -msgid "%Jan anonymous struct cannot have function members" -msgstr "un union annim no pot tenir funcions membre" - -#: cp/decl.c:3713 -#, fuzzy, gcc-internal-format -msgid "%Jan anonymous union cannot have function members" -msgstr "un union annim no pot tenir funcions membre" - -#: cp/decl.c:3731 -#, fuzzy, gcc-internal-format -msgid "member %q+#D with constructor not allowed in anonymous aggregate" -msgstr "no es permet el membre \"%#D\" amb constructor en un agregat annim" - -#: cp/decl.c:3734 -#, fuzzy, gcc-internal-format -msgid "member %q+#D with destructor not allowed in anonymous aggregate" -msgstr "no es permet el membre \"%#D\" amb destructor en un agregat annim" - -#: cp/decl.c:3737 -#, fuzzy, gcc-internal-format -msgid "member %q+#D with copy assignment operator not allowed in anonymous aggregate" -msgstr "no es permet el membre \"%#D\" amb operador d'assignaci de cpia en un agregat annim" - -#: cp/decl.c:3762 -#, gcc-internal-format -msgid "multiple types in one declaration" -msgstr "tipus mltiples en una declaraci" - -#: cp/decl.c:3766 -#, fuzzy, gcc-internal-format -msgid "redeclaration of C++ built-in type %qT" -msgstr "redeclaraci del tipus intern de C++ \"%T\"" - -#: cp/decl.c:3803 -#, gcc-internal-format -msgid "missing type-name in typedef-declaration" -msgstr "falta el nom del tipus en la declaraci typedef" - -#: cp/decl.c:3811 -#, gcc-internal-format -msgid "ISO C++ prohibits anonymous structs" -msgstr "ISO C++ prohibeix structs annims" - -#: cp/decl.c:3818 -#, fuzzy, gcc-internal-format -msgid "%qs can only be specified for functions" -msgstr "\"%D\" noms pot ser especificat per a funcions" - -#: cp/decl.c:3824 -#, fuzzy, gcc-internal-format -msgid "% can only be specified inside a class" -msgstr "\"%D\" noms pot ser especificat dintre d'una classe" - -#: cp/decl.c:3826 -#, fuzzy, gcc-internal-format -msgid "% can only be specified for constructors" -msgstr "\"%D\" noms pot ser especificat per a constructors" - -#: cp/decl.c:3828 -#, fuzzy, gcc-internal-format -msgid "a storage class can only be specified for objects and functions" -msgstr "\"%D\" noms pot ser especificat per a objectes i funcions" - -#: cp/decl.c:3834 -#, fuzzy, gcc-internal-format -msgid "qualifiers can only be specified for objects and functions" -msgstr "\"%D\" noms pot ser especificat per a objectes i funcions" - -#: cp/decl.c:3837 -#, fuzzy, gcc-internal-format -msgid "% was ignored in this declaration" -msgstr "el tipus de dada per omissi s \"int\" en la declaraci de \"%s\"" - -#: cp/decl.c:3866 -#, fuzzy, gcc-internal-format -msgid "attribute ignored in declaration of %q+#T" -msgstr "declaraci friend prvia de \"%D\"" - -#: cp/decl.c:3867 -#, gcc-internal-format -msgid "attribute for %q+#T must follow the %qs keyword" -msgstr "" - -#: cp/decl.c:3909 -#, fuzzy, gcc-internal-format -msgid "ignoring attributes applied to class type outside of definition" -msgstr "l'atribut \"%s\" sol es pot aplicar a definicions de classe" - -#: cp/decl.c:3987 -#, fuzzy, gcc-internal-format -msgid "function %q#D is initialized like a variable" -msgstr "la funci \"%#D\" est inicialitzada com una variable" - -#: cp/decl.c:3998 -#, fuzzy, gcc-internal-format -msgid "declaration of %q#D has % and is initialized" -msgstr "la declaraci de \"%#D\" t \"extern\" i est inicialitzada" - -#: cp/decl.c:4014 -#, fuzzy, gcc-internal-format -msgid "definition of %q#D is marked %" -msgstr "la definici de la funci \"%s\" est marcada com dllimport" - -#: cp/decl.c:4033 -#, fuzzy, gcc-internal-format -msgid "%q#D is not a static member of %q#T" -msgstr "\"%#D\" no s un membre static de \"%#T\"" - -#: cp/decl.c:4039 -#, fuzzy, gcc-internal-format -msgid "ISO C++ does not permit %<%T::%D%> to be defined as %<%T::%D%>" -msgstr "ISO C++ no permet que \"%T::%D\" es defineixi com \"%T::%D\"" - -#: cp/decl.c:4048 -#, gcc-internal-format -msgid "template header not allowed in member definition of explicitly specialized class" -msgstr "" - -#: cp/decl.c:4056 -#, fuzzy, gcc-internal-format -msgid "duplicate initialization of %qD" -msgstr "inicialitzaci duplicada de %D" - -#: cp/decl.c:4095 -#, fuzzy, gcc-internal-format -msgid "declaration of %q#D outside of class is not definition" -msgstr "la declaraci de \"%#D\" fora de la classe no s una definici" - -#: cp/decl.c:4188 -#, fuzzy, gcc-internal-format -msgid "variable %q#D has initializer but incomplete type" -msgstr "la variable \"%#D\" t inicializador per de tipus de dada incompleta" - -#: cp/decl.c:4194 cp/decl.c:4906 -#, fuzzy, gcc-internal-format -msgid "elements of array %q#D have incomplete type" -msgstr "alguns elements de la matriu \"%#D\" tenen tipus de dada incompleta" - -#: cp/decl.c:4200 -#, fuzzy, gcc-internal-format -msgid "aggregate %q#D has incomplete type and cannot be defined" -msgstr "l'agregat \"%#D\" t un tipus incomplet i no es pot definir" - -#: cp/decl.c:4236 -#, fuzzy, gcc-internal-format -msgid "%qD declared as reference but not initialized" -msgstr "\"%D\" declarat com referncia per no est inicialitzat" - -#: cp/decl.c:4242 -#, fuzzy, gcc-internal-format -msgid "ISO C++ forbids use of initializer list to initialize reference %qD" -msgstr "ISO C++ prohibeix l's d'una llista de inicialitzadors per a inicialitzar la referncia \"%D\"" - -#: cp/decl.c:4268 -#, fuzzy, gcc-internal-format -msgid "cannot initialize %qT from %qT" -msgstr "no es pot inicialitzar \"%T\" des de \"%T\"" - -#: cp/decl.c:4296 -#, gcc-internal-format -msgid "name %qD used in a GNU-style designated initializer for an array" -msgstr "" - -#: cp/decl.c:4345 -#, fuzzy, gcc-internal-format -msgid "initializer fails to determine size of %qD" -msgstr "l'inicializador no pot determinar la grandria de \"%D\"" - -#: cp/decl.c:4352 -#, fuzzy, gcc-internal-format -msgid "array size missing in %qD" -msgstr "falta la grandria de la matriu en \"%D\"" - -#: cp/decl.c:4364 -#, fuzzy, gcc-internal-format -msgid "zero-size array %qD" -msgstr "matriu \"%D\" de grandria zero" - -#. 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:4407 -#, fuzzy, gcc-internal-format -msgid "storage size of %qD isn't known" -msgstr "no es coneix la grandria d'emmagatzematge de \"%D\"" - -#: cp/decl.c:4429 -#, fuzzy, gcc-internal-format -msgid "storage size of %qD isn't constant" -msgstr "la grandria d'emmagatzematge de \"%D\" no s constant" - -#: cp/decl.c:4478 -#, fuzzy, gcc-internal-format -msgid "sorry: semantics of inline function static data %q+#D are wrong (you'll wind up with multiple copies)" -msgstr "perd: la semntica de les dades static de la funci inline \"%#D\" s errnia (acabar amb mltiples cpies)" - -#: cp/decl.c:4481 -#, fuzzy, gcc-internal-format -msgid "%J you can work around this by removing the initializer" -msgstr " pot evitar aix eliminant l'inicializador" - -#: cp/decl.c:4508 -#, fuzzy, gcc-internal-format -msgid "uninitialized const %qD" -msgstr "const \"%D\" sense inicialitzar" - -#: cp/decl.c:4620 -#, fuzzy, gcc-internal-format -msgid "invalid type %qT as initializer for a vector of type %qT" -msgstr "inicialitzador no vlid per al mtode virtual \"%D\"" - -#: cp/decl.c:4662 -#, fuzzy, gcc-internal-format -msgid "initializer for %qT must be brace-enclosed" -msgstr "l'inicialitzador per a \"%T\" ha d'estar tancat entre parntesis" - -#: cp/decl.c:4680 -#, fuzzy, gcc-internal-format -msgid "%qT has no non-static data member named %qD" -msgstr "\"%T\" t una dada membre que no s non-static cridada \"%D\"" - -#: cp/decl.c:4731 -#, fuzzy, gcc-internal-format -msgid "braces around scalar initializer for type %qT" -msgstr "parntesis al voltant de l'inicialitzador per a \"%T\"" - -#: cp/decl.c:4814 -#, fuzzy, gcc-internal-format -msgid "missing braces around initializer for %qT" -msgstr "falten claus al voltant dels valors inicials" - -#: cp/decl.c:4871 -#, fuzzy, gcc-internal-format -msgid "too many initializers for %qT" -msgstr "massa inicialitzadors per a \"%T\"" - -#: cp/decl.c:4914 -#, fuzzy, gcc-internal-format -msgid "variable-sized object %qD may not be initialized" -msgstr "l'objecte de grandria variable \"%D\" no pot ser inicialitzat" - -#: cp/decl.c:4920 -#, fuzzy, gcc-internal-format -msgid "%qD has incomplete type" -msgstr "\"%D\" t un tipus de dada incompleta" - -#: cp/decl.c:4935 -#, fuzzy, gcc-internal-format -msgid "scalar object %qD requires one element in initializer" -msgstr "excs d'elements en valors inicials d'union" - -#. A non-aggregate that is not a scalar cannot be initialized -#. via an initializer-list in C++98. -#: cp/decl.c:4945 -#, fuzzy, gcc-internal-format -msgid "braces around initializer for non-aggregate type %qT" -msgstr "parntesis al voltant de l'inicialitzador per a \"%T\"" - -#: cp/decl.c:4995 -#, fuzzy, gcc-internal-format -msgid "%qD must be initialized by constructor, not by %<{...}%>" -msgstr "\"%D\" ha de ser inicialitzat per un constructor, no per \"{...}\"" - -#: cp/decl.c:5031 -#, fuzzy, gcc-internal-format -msgid "array %qD initialized by parenthesized string literal %qE" -msgstr "_Pragma duu una cadena literal entre parntesis" - -#: cp/decl.c:5046 -#, fuzzy, gcc-internal-format -msgid "structure %qD with uninitialized const members" -msgstr "estructura \"%D\" amb membres const sense inicialitzar" - -#: cp/decl.c:5048 -#, fuzzy, gcc-internal-format -msgid "structure %qD with uninitialized reference members" -msgstr "estructura \"%D\" amb membres de referncia sense inicialitzar" - -#: cp/decl.c:5330 -#, gcc-internal-format -msgid "assignment (not initialization) in declaration" -msgstr "assignaci (no inicialitzaci) en la declaraci" - -#: cp/decl.c:5420 -#, fuzzy, gcc-internal-format -msgid "shadowing previous type declaration of %q#D" -msgstr "enfosquint la declaraci de tipus prvia de \"%#D\"" - -#: cp/decl.c:5450 -#, fuzzy, gcc-internal-format -msgid "%qD cannot be thread-local because it has non-POD type %qT" -msgstr "\"%D\" no pot ser thread-local perqu s de tipus \"%T\" que no s POD" - -#: cp/decl.c:5485 -#, fuzzy, gcc-internal-format -msgid "%qD is thread-local and so cannot be dynamically initialized" -msgstr "\"%D\" s thread-local i per tant no es pot inicialitzar dinmicament" - -#: cp/decl.c:5503 -#, fuzzy, gcc-internal-format -msgid "%qD cannot be initialized by a non-constant expression when being declared" -msgstr "matriu amb valors inicials assignats d'una expressi matricial que no s constant" - -#: cp/decl.c:6160 -#, fuzzy, gcc-internal-format -msgid "destructor for alien class %qT cannot be a member" -msgstr "el destructor per a la classe estrangera \"%T\" no pot ser un membre" - -#: cp/decl.c:6162 -#, fuzzy, gcc-internal-format -msgid "constructor for alien class %qT cannot be a member" -msgstr "el constructor per a la classe estrangera \"%T\" no pot ser un membre" - -#: cp/decl.c:6183 -#, fuzzy, gcc-internal-format -msgid "%qD declared as a % %s" -msgstr "\"%D\" va ser declarat com un %s \"virtual\"" - -#: cp/decl.c:6185 -#, fuzzy, gcc-internal-format -msgid "%qD declared as an % %s" -msgstr "\"%D\" va ser declarat com un %s \"inline\"" - -#: cp/decl.c:6187 -#, fuzzy, gcc-internal-format -msgid "% and % function specifiers on %qD invalid in %s declaration" -msgstr "especificadors de funci \"const\" i \"volatile\" en \"%D\" no vlids en la declaraci %s" - -#: cp/decl.c:6191 -#, fuzzy, gcc-internal-format -msgid "%q+D declared as a friend" -msgstr "\"%D\" declarat com un friend" - -#: cp/decl.c:6197 -#, fuzzy, gcc-internal-format -msgid "%q+D declared with an exception specification" -msgstr "\"%D\" declarat amb una excepci d'especificaci" - -#: cp/decl.c:6231 -#, fuzzy, gcc-internal-format -msgid "definition of %qD is not in namespace enclosing %qT" -msgstr "la declaraci de \"%D\" no est en un espai de noms al voltant de \"%D\"" - -#: cp/decl.c:6342 -#, fuzzy, gcc-internal-format -msgid "defining explicit specialization %qD in friend declaration" -msgstr "definint l'especialitzaci explcita \"%D\" en la declaraci friend" - -#. Something like `template friend void f()'. -#: cp/decl.c:6352 -#, fuzzy, gcc-internal-format -msgid "invalid use of template-id %qD in declaration of primary template" -msgstr "s no vlid de l'aneu de patr \"%D\" en la declaraci del patr primri" - -#: cp/decl.c:6382 -#, fuzzy, gcc-internal-format -msgid "default arguments are not allowed in declaration of friend template specialization %qD" -msgstr "no es permeten els argument per omissi en la declaraci de l'especialitzaci friend del patr \"%D\"" - -#: cp/decl.c:6390 -#, fuzzy, gcc-internal-format -msgid "% is not allowed in declaration of friend template specialization %qD" -msgstr "no es permet \"inline\" en la declaraci de l'especialitzaci friend del patr \"%D\"" - -#: cp/decl.c:6433 -#, fuzzy, gcc-internal-format -msgid "cannot declare %<::main%> to be a template" -msgstr "no es pot declarar \"::main\" com template" - -#: cp/decl.c:6435 -#, fuzzy, gcc-internal-format -msgid "cannot declare %<::main%> to be inline" -msgstr "no es pot declarar \"::main\" com inline" - -#: cp/decl.c:6437 -#, fuzzy, gcc-internal-format -msgid "cannot declare %<::main%> to be static" -msgstr "no es pot declarar \"::main\" com static" - -#: cp/decl.c:6465 -#, fuzzy, gcc-internal-format -msgid "non-local function %q#D uses anonymous type" -msgstr "la funci \"%#D\" que no s local usa un tipus annim" - -#: cp/decl.c:6468 cp/decl.c:6748 -#, fuzzy, gcc-internal-format -msgid "%q+#D does not refer to the unqualified type, so it is not used for linkage" -msgstr "\"%#D\" no es refereix al tipus sense qualificar, aix que no s'usa per a l'enllaat" - -#: cp/decl.c:6474 -#, fuzzy, gcc-internal-format -msgid "non-local function %q#D uses local type %qT" -msgstr "la funci \"%#D\" que no s local utilitza el tipus local \"%T\"" - -#: cp/decl.c:6498 -#, fuzzy, gcc-internal-format -msgid "static member function %qD cannot have cv-qualifier" -msgstr "%sfunci membre \"%D\" no pot tenir el qualificador de mtode \"%T\"" - -#: cp/decl.c:6499 -#, fuzzy, gcc-internal-format -msgid "non-member function %qD cannot have cv-qualifier" -msgstr "%sfunci membre \"%D\" no pot tenir el qualificador de mtode \"%T\"" - -#: cp/decl.c:6547 -#, fuzzy, gcc-internal-format -msgid "%<::main%> must return %" -msgstr "\"main\" ha de retornar \"int\"" - -#: cp/decl.c:6586 -#, fuzzy, gcc-internal-format -msgid "definition of implicitly-declared %qD" -msgstr "la definici de \"%D\" declarat implcitament" - -#: cp/decl.c:6603 cp/decl2.c:677 -#, fuzzy, gcc-internal-format -msgid "no %q#D member function declared in class %qT" -msgstr "no hi ha una funci membre \"%#D\" declarada en la classe \"%T\"" - -#. 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:6745 -#, fuzzy, gcc-internal-format -msgid "non-local variable %q#D uses anonymous type" -msgstr "la funci \"%#D\" que no s local usa un tipus annim" - -#: cp/decl.c:6754 -#, fuzzy, gcc-internal-format -msgid "non-local variable %q#D uses local type %qT" -msgstr "la funci \"%#D\" que no s local utilitza el tipus local \"%T\"" - -#: cp/decl.c:6876 -#, fuzzy, gcc-internal-format -msgid "invalid in-class initialization of static data member of non-integral type %qT" -msgstr "ISO C++ prohibeix la inicialitzaci del membre constant \"%D\" del tipus \"%T\" que no s enter" - -#: cp/decl.c:6886 -#, fuzzy, gcc-internal-format -msgid "ISO C++ forbids in-class initialization of non-const static member %qD" -msgstr "ISO C++ prohibeix la inicializacin en la classe del membre static \"%D\" que no s constant" - -#: cp/decl.c:6890 -#, fuzzy, gcc-internal-format -msgid "ISO C++ forbids initialization of member constant %qD of non-integral type %qT" -msgstr "ISO C++ prohibeix la inicialitzaci del membre constant \"%D\" del tipus \"%T\" que no s enter" - -#: cp/decl.c:6915 -#, fuzzy, gcc-internal-format -msgid "size of array %qD has non-integral type %qT" -msgstr "la grandria de la matriu \"%D\" t un tipus no enter" - -#: cp/decl.c:6917 -#, fuzzy, gcc-internal-format -msgid "size of array has non-integral type %qT" -msgstr "la grandria de la matriu t un tipus no enter" - -#: cp/decl.c:6965 -#, fuzzy, gcc-internal-format -msgid "size of array %qD is negative" -msgstr "la grandria de la matriu \"%D\" s negatiu" - -#: cp/decl.c:6967 -#, gcc-internal-format -msgid "size of array is negative" -msgstr "la grandria de la matriu s negatiu" - -#: cp/decl.c:6975 -#, fuzzy, gcc-internal-format -msgid "ISO C++ forbids zero-size array %qD" -msgstr "ISO C++ prohibeix la matriu \"%D\" de grandria zero" - -#: cp/decl.c:6977 -#, gcc-internal-format -msgid "ISO C++ forbids zero-size array" -msgstr "ISO C++ prohibeix la matriu de grandria zero" - -#: cp/decl.c:6984 -#, fuzzy, gcc-internal-format -msgid "size of array %qD is not an integral constant-expression" -msgstr "la grandria de la matriu \"%D\" no s una expressi constant integral" - -#: cp/decl.c:6987 -#, gcc-internal-format -msgid "size of array is not an integral constant-expression" -msgstr "la grandria de la matriu no s una expressi constant integral" - -#: cp/decl.c:6993 -#, fuzzy, gcc-internal-format -msgid "ISO C++ forbids variable length array %qD" -msgstr "ISO C++ prohibeix la matriu \"%D\" de grandria variable" - -#: cp/decl.c:6995 -#, fuzzy, gcc-internal-format -msgid "ISO C++ forbids variable length array" -msgstr "ISO C++ prohibeix la matriu de grandria variable" - -#: cp/decl.c:7001 -#, gcc-internal-format -msgid "variable length array %qD is used" -msgstr "" - -#: cp/decl.c:7035 -#, gcc-internal-format -msgid "overflow in array dimension" -msgstr "desbordament en la dimensi de la matriu" - -#: cp/decl.c:7116 -#, fuzzy, gcc-internal-format -msgid "declaration of %qD as %s" -msgstr "declaracin de \"%D\" com %s" - -#: cp/decl.c:7118 -#, gcc-internal-format -msgid "creating %s" -msgstr "creant %s" - -#: cp/decl.c:7130 -#, fuzzy, gcc-internal-format -msgid "declaration of %qD as multidimensional array must have bounds for all dimensions except the first" -msgstr "la declaraci de \"%D\" com una matriu multidimensional ha de tenir lmits per a totes les dimensions excepte la primera" - -#: cp/decl.c:7134 -#, gcc-internal-format -msgid "multidimensional array must have bounds for all dimensions except the first" -msgstr "una matriu multidimensional ha de tenir lmits per a totes les dimensions excepte per a la primera" - -#: cp/decl.c:7169 -#, gcc-internal-format -msgid "return type specification for constructor invalid" -msgstr "l'especificaci del tipus de retorn per al constructor no s vlid" - -#: cp/decl.c:7179 -#, gcc-internal-format -msgid "return type specification for destructor invalid" -msgstr "l'especificaci del tipus de retorn per al destructor no s vlid" - -#: cp/decl.c:7192 -#, fuzzy, gcc-internal-format -msgid "return type specified for %" -msgstr "es va especificar un tipus de retorn per a \"operator %T\"" - -#: cp/decl.c:7214 -#, gcc-internal-format -msgid "unnamed variable or field declared void" -msgstr "variable sense nom o camp declarat void" - -#: cp/decl.c:7218 -#, fuzzy, gcc-internal-format -msgid "variable or field %qE declared void" -msgstr "variable o camp \"%s\" declarat void" - -#: cp/decl.c:7221 -#, gcc-internal-format -msgid "variable or field declared void" -msgstr "variable o camp declarat void" - -#: cp/decl.c:7388 -#, fuzzy, gcc-internal-format -msgid "invalid use of qualified-name %<::%D%>" -msgstr "s no vlid del membre \"%D\"" - -#: cp/decl.c:7391 -#, fuzzy, gcc-internal-format -msgid "invalid use of qualified-name %<%T::%D%>" -msgstr "definici no vlida del tipus qualificat \"%T\"" - -#: cp/decl.c:7394 -#, fuzzy, gcc-internal-format -msgid "invalid use of qualified-name %<%D::%D%>" -msgstr "s no vlid del membre \"%D\"" - -#: cp/decl.c:7406 -#, fuzzy, gcc-internal-format -msgid "type %qT is not derived from type %qT" -msgstr "el tipus \"%T\" no s derivat del tipus \"%T\"" - -#: cp/decl.c:7422 cp/decl.c:7512 cp/decl.c:8660 -#, fuzzy, gcc-internal-format -msgid "declaration of %qD as non-function" -msgstr "la declaraci de \"%D\" com una no funci" - -#: cp/decl.c:7428 -#, fuzzy, gcc-internal-format -msgid "declaration of %qD as non-member" -msgstr "la declaraci de \"%D\" com una no funci" - -#: cp/decl.c:7457 -#, fuzzy, gcc-internal-format -msgid "declarator-id missing; using reserved word %qD" -msgstr "falta l'identificador del declarador; utilitzant la paraula reservada \"%D\"" - -#: cp/decl.c:7504 -#, fuzzy, gcc-internal-format -msgid "function definition does not declare parameters" -msgstr "la definici de la funci ho va declarar com \"register\"" - -#: cp/decl.c:7546 -#, fuzzy, gcc-internal-format -msgid "two or more data types in declaration of %qs" -msgstr "dos o ms tipus de dades en la declaraci de \"%s\"" - -#: cp/decl.c:7552 -#, fuzzy, gcc-internal-format -msgid "conflicting specifiers in declaration of %qs" -msgstr "declaracions de \"%s\" en conflicte" - -#: cp/decl.c:7623 cp/decl.c:7626 -#, fuzzy, gcc-internal-format -msgid "ISO C++ forbids declaration of %qs with no type" -msgstr "ISO C++ prohibeix la declaraci de \"%s\" sense tipus" - -#: cp/decl.c:7651 -#, fuzzy, gcc-internal-format -msgid "% or % invalid for %qs" -msgstr "short, signed o unsigned no vlid per a \"%s\"" - -#: cp/decl.c:7653 -#, fuzzy, gcc-internal-format -msgid "% and % specified together for %qs" -msgstr "es van donar junts signed i unsigned per a \"%s\"" - -#: cp/decl.c:7655 -#, fuzzy, gcc-internal-format -msgid "% invalid for %qs" -msgstr "complex no vlid per a \"%s\"" - -#: cp/decl.c:7657 -#, fuzzy, gcc-internal-format -msgid "% invalid for %qs" -msgstr "complex no vlid per a \"%s\"" - -#: cp/decl.c:7659 -#, fuzzy, gcc-internal-format -msgid "% invalid for %qs" -msgstr "complex no vlid per a \"%s\"" - -#: cp/decl.c:7661 -#, fuzzy, gcc-internal-format -msgid "% or % invalid for %qs" -msgstr "long, short, signed o unsigned no vlids per a \"%s\"" - -#: cp/decl.c:7663 -#, fuzzy, gcc-internal-format -msgid "% or % specified with char for %qs" -msgstr "s'especifica long o short amb char per a \"%s\"" - -#: cp/decl.c:7665 -#, fuzzy, gcc-internal-format -msgid "% and % specified together for %qs" -msgstr "long i short especificats junts per a \"%s\"" - -#: cp/decl.c:7671 -#, fuzzy, gcc-internal-format -msgid "long, short, signed or unsigned used invalidly for %qs" -msgstr "s no vlid de long, short, signed o unsigned per a \"%s\"" - -#: cp/decl.c:7735 -#, fuzzy, gcc-internal-format -msgid "complex invalid for %qs" -msgstr "complex no vlid per a \"%s\"" - -#: cp/decl.c:7764 -#, fuzzy, gcc-internal-format -msgid "qualifiers are not allowed on declaration of %" -msgstr "no es permeten qualificadors en la declaraci de \"operator %T\"" - -#: cp/decl.c:7776 cp/typeck.c:7011 -#, fuzzy, gcc-internal-format -msgid "ignoring %qV qualifiers added to function type %qT" -msgstr "qualificadors no vlids en el tipus de funci no membre" - -#: cp/decl.c:7799 -#, fuzzy, gcc-internal-format -msgid "member %qD cannot be declared both virtual and static" -msgstr "\"%D\" no es pot declarar virtual, ja que sempre s static" - -#: cp/decl.c:7807 -#, fuzzy, gcc-internal-format -msgid "%<%T::%D%> is not a valid declarator" -msgstr "\"%T::%D\" no s una declaraci vlida" - -#: cp/decl.c:7816 -#, gcc-internal-format -msgid "typedef declaration invalid in parameter declaration" -msgstr "declaraci typedef no vlida en la declaraci de parmetres" - -#: cp/decl.c:7822 -#, gcc-internal-format -msgid "storage class specifiers invalid in parameter declarations" -msgstr "especificadors de classe d'emmagatzematge no vlids en les declaracions de parmetres" - -#: cp/decl.c:7829 -#, gcc-internal-format -msgid "virtual outside class declaration" -msgstr "declaraci de virtual fora de class" - -#: cp/decl.c:7847 -#, fuzzy, gcc-internal-format -msgid "multiple storage classes in declaration of %qs" -msgstr "mltiples classes d'emmagatzematge en la declaraci de \"%s\"" - -#: cp/decl.c:7870 -#, fuzzy, gcc-internal-format -msgid "storage class specified for %qs" -msgstr "classe d'emmagatzematge especificada per %s \"%s\"" - -#: cp/decl.c:7904 -#, fuzzy, gcc-internal-format -msgid "top-level declaration of %qs specifies %" -msgstr "la declaraci del nivell superior de \"%s\" especifica \"auto\"" - -#: cp/decl.c:7916 -#, gcc-internal-format -msgid "storage class specifiers invalid in friend function declarations" -msgstr "especificadors de classe d'emmagatzematge no vlids en les declaracions de funcions friend" - -#: cp/decl.c:8043 -#, gcc-internal-format -msgid "destructor cannot be static member function" -msgstr "el destructor no pot ser una funci membre de tipus static" - -#: cp/decl.c:8048 -#, fuzzy, gcc-internal-format -msgid "destructors may not be cv-qualified" -msgstr "els destructors no poden ser \"%s\"" - -#: cp/decl.c:8066 -#, gcc-internal-format -msgid "constructors cannot be declared virtual" -msgstr "els constructors no poden ser declarats virtual" - -#: cp/decl.c:8079 -#, fuzzy, gcc-internal-format -msgid "can't initialize friend function %qs" -msgstr "no es pot inicialitzar la funci friend \"%s\"" - -#. Cannot be both friend and virtual. -#: cp/decl.c:8083 -#, gcc-internal-format -msgid "virtual functions cannot be friends" -msgstr "les funcions virtuals no poden ser friend" - -#: cp/decl.c:8087 -#, gcc-internal-format -msgid "friend declaration not in class definition" -msgstr "la declaraci friend no est en una definici de classe" - -#: cp/decl.c:8089 -#, fuzzy, gcc-internal-format -msgid "can't define friend function %qs in a local class definition" -msgstr "no es pot definir la funci friend \"%s\" en una definici de classe local" - -#: cp/decl.c:8102 -#, gcc-internal-format -msgid "destructors may not have parameters" -msgstr "els destructors no poden tenir parmetres" - -#: cp/decl.c:8121 -#, fuzzy, gcc-internal-format -msgid "cannot declare pointer to %q#T" -msgstr "no es pot declarar un punter a \"%#T\"" - -#: cp/decl.c:8134 cp/decl.c:8141 -#, fuzzy, gcc-internal-format -msgid "cannot declare reference to %q#T" -msgstr "no es poden declarar referncies a \"%#T\"" - -#: cp/decl.c:8143 -#, fuzzy, gcc-internal-format -msgid "cannot declare pointer to %q#T member" -msgstr "no es pot declarar un punter al membre \"%#T\"" - -#: cp/decl.c:8194 -#, gcc-internal-format -msgid "cannot declare reference to %q#T, which is not a typedef or a template type argument" -msgstr "" - -#: cp/decl.c:8238 -#, fuzzy, gcc-internal-format -msgid "template-id %qD used as a declarator" -msgstr "l'identificador de patr \"%D\" s'usa com un declarador" - -#: cp/decl.c:8289 -#, gcc-internal-format -msgid "member functions are implicitly friends of their class" -msgstr "les funcions membres sn implcitament friends de la seva classe" - -#: cp/decl.c:8293 -#, fuzzy, gcc-internal-format -msgid "extra qualification %<%T::%> on member %qs" -msgstr "s'ignora la qualificaci extra `%T::' en el membre \"%s\"" - -#: cp/decl.c:8325 -#, fuzzy, gcc-internal-format -msgid "cannot define member function %<%T::%s%> within %<%T%>" -msgstr "no es pot declarar la funci membre \"%T::%s\" dintre de \"%T\"" - -#: cp/decl.c:8342 -#, fuzzy, gcc-internal-format -msgid "cannot declare member %<%T::%s%> within %qT" -msgstr "no es pot declarar el membre \"%T::%s\" dintre de \"%T\"" - -#: cp/decl.c:8365 -#, fuzzy, gcc-internal-format -msgid "non-parameter %qs cannot be a parameter pack" -msgstr "les dades membres \"%D\" no poden ser un patr membre" - -#: cp/decl.c:8386 -#, fuzzy, gcc-internal-format -msgid "data member may not have variably modified type %qT" -msgstr "l'argument de patr \"%T\" s un tipus modificat variablement" - -#: cp/decl.c:8388 -#, fuzzy, gcc-internal-format -msgid "parameter may not have variably modified type %qT" -msgstr "l'argument de patr \"%T\" s un tipus modificat variablement" - -#. [dcl.fct.spec] The explicit specifier shall only be used in -#. declarations of constructors within a class definition. -#: cp/decl.c:8396 -#, fuzzy, gcc-internal-format -msgid "only declarations of constructors can be %" -msgstr "solament les declaracions de constructors poden ser \"explicit\"" - -#: cp/decl.c:8404 -#, fuzzy, gcc-internal-format -msgid "non-member %qs cannot be declared %" -msgstr "el no-membre \"%s\" no pot ser declarat \"mutable\"" - -#: cp/decl.c:8409 -#, fuzzy, gcc-internal-format -msgid "non-object member %qs cannot be declared %" -msgstr "el membre non-objecte \"%s\" no pot ser declarat \"mutable\"" - -#: cp/decl.c:8415 -#, fuzzy, gcc-internal-format -msgid "function %qs cannot be declared %" -msgstr "la funci \"%s\" no pot ser declarada \"mutable\"" - -#: cp/decl.c:8420 -#, fuzzy, gcc-internal-format -msgid "static %qs cannot be declared %" -msgstr "static \"%s\" no pot ser declarat \"mutable\"" - -#: cp/decl.c:8425 -#, fuzzy, gcc-internal-format -msgid "const %qs cannot be declared %" -msgstr "const \"%s\" no pot ser declarat \"mutable\"" - -#: cp/decl.c:8462 -#, fuzzy, gcc-internal-format -msgid "%Jtypedef name may not be a nested-name-specifier" -msgstr "el nom de la definici de tipus pot no ser qualificada per a la classe" - -#: cp/decl.c:8478 -#, fuzzy, gcc-internal-format -msgid "ISO C++ forbids nested type %qD with same name as enclosing class" -msgstr "ISO C++ prohibeix el tipus niat \"%D\" amb el mateix nom que la classe que ho cont" - -#: cp/decl.c:8564 -#, fuzzy, gcc-internal-format -msgid "qualified function types cannot be used to declare static member functions" -msgstr "el destructor no pot ser una funci membre de tipus static" - -#: cp/decl.c:8566 -#, fuzzy, gcc-internal-format -msgid "qualified function types cannot be used to declare free functions" -msgstr "el tipus de retorn d'una funci no pot ser una funci" - -#: cp/decl.c:8592 -#, gcc-internal-format -msgid "type qualifiers specified for friend class declaration" -msgstr "es van especificar qualificadors de tipus en una declaraci de classe friend" - -#: cp/decl.c:8597 -#, fuzzy, gcc-internal-format -msgid "% specified for friend class declaration" -msgstr "es va especificar \"inline\" per a la declaraci de classe friend" - -#: cp/decl.c:8605 -#, gcc-internal-format -msgid "template parameters cannot be friends" -msgstr "els parmetres del patr no poden ser friends" - -#: cp/decl.c:8607 -#, fuzzy, gcc-internal-format -msgid "friend declaration requires class-key, i.e. %" -msgstr "la declaraci friend requereix una clau de classe, ex. \"friend class %T::%D\"" - -#: cp/decl.c:8611 -#, fuzzy, gcc-internal-format -msgid "friend declaration requires class-key, i.e. %" -msgstr "la declaraci friend requereix una clau de classe, ex. \"friend %#T\"" - -#: cp/decl.c:8624 -#, fuzzy, gcc-internal-format -msgid "trying to make class %qT a friend of global scope" -msgstr "tractant fer que la classe \"%T\" sigui un friend d'mbit global" - -#: cp/decl.c:8635 -#, gcc-internal-format -msgid "invalid qualifiers on non-member function type" -msgstr "qualificadors no vlids en el tipus de funci no membre" - -#: cp/decl.c:8650 -#, fuzzy, gcc-internal-format -msgid "abstract declarator %qT used as declaration" -msgstr "el declarador abstracte \"%T\" es va utilitzar com una declaraci" - -#: cp/decl.c:8679 -#, fuzzy, gcc-internal-format -msgid "cannot use %<::%> in parameter declaration" -msgstr "no es pot usar \"::\" en la declaraci de parmetres" - -#. Something like struct S { int N::j; }; -#: cp/decl.c:8725 -#, fuzzy, gcc-internal-format -msgid "invalid use of %<::%>" -msgstr "s no vlid de \"::\"" - -#: cp/decl.c:8740 -#, fuzzy, gcc-internal-format -msgid "can't make %qD into a method -- not in a class" -msgstr "no es pot fer \"%D\" en un mtode -- no est en una classe" - -#: cp/decl.c:8749 -#, fuzzy, gcc-internal-format -msgid "function %qD declared virtual inside a union" -msgstr "la funci \"%s\" es va declarar virtual dintre d'un union" - -#: cp/decl.c:8758 -#, fuzzy, gcc-internal-format -msgid "%qD cannot be declared virtual, since it is always static" -msgstr "\"%D\" no es pot declarar virtual, ja que sempre s static" - -#: cp/decl.c:8774 -#, fuzzy, gcc-internal-format -msgid "expected qualified name in friend declaration for destructor %qD" -msgstr "no es permeten qualificadors en la declaraci de \"operator %T\"" - -#: cp/decl.c:8784 -#, fuzzy, gcc-internal-format -msgid "declaration of %qD as member of %qT" -msgstr "la declaraci de \"%s\" obscurece a un membre de \"this\"" - -#: cp/decl.c:8860 -#, fuzzy, gcc-internal-format -msgid "field %qD has incomplete type" -msgstr "el camp \"%D\" t tipus de dada incompleta" - -#: cp/decl.c:8862 -#, fuzzy, gcc-internal-format -msgid "name %qT has incomplete type" -msgstr "el nom \"%T\" t tipus de dada incompleta" - -#: cp/decl.c:8871 -#, fuzzy, gcc-internal-format -msgid " in instantiation of template %qT" -msgstr " en la instanciaci det patr \"%T\"" - -#: cp/decl.c:8880 -#, fuzzy, gcc-internal-format -msgid "%qE is neither function nor member function; cannot be declared friend" -msgstr "\"%s\" no s ni funci ni funci membre; no pot ser declarat friend" - -#. 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:8932 -#, fuzzy, gcc-internal-format -msgid "ISO C++ forbids initialization of member %qD" -msgstr "ISO C++ prohibeix la inicializacin del membre \"%D\"" - -#: cp/decl.c:8934 -#, fuzzy, gcc-internal-format -msgid "making %qD static" -msgstr "fent a \"%D\" static" - -#: cp/decl.c:8999 -#, fuzzy, gcc-internal-format -msgid "storage class % invalid for function %qs" -msgstr "la classe d'emmagatzematge \"auto\" no s vlida per a la funci \"%s\"" - -#: cp/decl.c:9001 -#, fuzzy, gcc-internal-format -msgid "storage class % invalid for function %qs" -msgstr "la classe d'emmagatzematge \"register\" no s vlida per a la funci \"%s\"" - -#: cp/decl.c:9003 -#, fuzzy, gcc-internal-format -msgid "storage class %<__thread%> invalid for function %qs" -msgstr "la classe d'emmagatzematge \"__thread\" no s vlida per a la funci \"%s\"" - -#: cp/decl.c:9014 -#, fuzzy, gcc-internal-format -msgid "% specified invalid for function %qs declared out of global scope" -msgstr "la classe d'emmagatzematge \"inline\" no s vlida per a la funci \"%s\" declarada fora de l'mbit global" - -#: cp/decl.c:9017 -#, fuzzy, gcc-internal-format -msgid "% specifier invalid for function %qs declared out of global scope" -msgstr "la classe d'emmagatzematge \"inline\" no s vlida per a la funci \"%s\" declarada fora de l'mbit global" - -#: cp/decl.c:9025 -#, fuzzy, gcc-internal-format -msgid "virtual non-class function %qs" -msgstr "la funci virtual \"%s\" no s classe" - -#: cp/decl.c:9056 -#, fuzzy, gcc-internal-format -msgid "cannot declare member function %qD to have static linkage" -msgstr "no es pot declarar que la funci membre \"%D\" tingui enllaat esttic" - -#. FIXME need arm citation -#: cp/decl.c:9063 -#, gcc-internal-format -msgid "cannot declare static function inside another function" -msgstr "no es pot declarar una funci static dintre d'altra funci" - -#: cp/decl.c:9093 -#, fuzzy, gcc-internal-format -msgid "% may not be used when defining (as opposed to declaring) a static data member" -msgstr "\"static\" pot no ser utilitzat quan es defineix (oposat a la declaraci) una dada membre static" - -#: cp/decl.c:9100 -#, fuzzy, gcc-internal-format -msgid "static member %qD declared %" -msgstr "es va declarar el membre static \"%D\" com \"register\"" - -#: cp/decl.c:9105 -#, fuzzy, gcc-internal-format -msgid "cannot explicitly declare member %q#D to have extern linkage" -msgstr "no es pot declarar explcitament que el membre \"%#D\" tingui un enllaat extern" - -#: cp/decl.c:9234 -#, fuzzy, gcc-internal-format -msgid "default argument for %q#D has type %qT" -msgstr "l'argument per omissi de \"%#D\" t tipus \"%T\"" - -#: cp/decl.c:9237 -#, fuzzy, gcc-internal-format -msgid "default argument for parameter of type %qT has type %qT" -msgstr "l'argument per omissi per al parmetre del tipus \"%T\" t el tipus \"%T\"" - -#: cp/decl.c:9253 -#, fuzzy, gcc-internal-format -msgid "default argument %qE uses local variable %qD" -msgstr "l'argument per omissi \"%E\" usa la variable local \"%D\"" - -#: cp/decl.c:9323 -#, fuzzy, gcc-internal-format -msgid "parameter %qD invalidly declared method type" -msgstr "el parmetre \"%D\" es va declarar no vlidament com tipus de mtode" - -#: cp/decl.c:9347 -#, fuzzy, gcc-internal-format -msgid "parameter %qD includes %s to array of unknown bound %qT" -msgstr "el parmetre \"%D\" inclou %s per a la matriu \"%T\" de lmit desconegut" - -#: cp/decl.c:9361 -#, fuzzy, gcc-internal-format -msgid "parameter packs must be at the end of the parameter list" -msgstr "\"void\" en la llista de parmetres ha de ser la llista completa" - -#: cp/decl.c:9366 -#, fuzzy, gcc-internal-format -msgid "multiple parameters named %qE" -msgstr "%Jmltiples parmetres nomenats \"%D\"" - -#. [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:9581 -#, fuzzy, gcc-internal-format -msgid "invalid constructor; you probably meant %<%T (const %T&)%>" -msgstr "constructor no vlid; tal vegada va voler dir \"%T (const %T&)\"" - -#: cp/decl.c:9703 -#, fuzzy, gcc-internal-format -msgid "%qD may not be declared within a namespace" -msgstr "\"%D\" no es va declarar en aquest mbit" - -#: cp/decl.c:9708 -#, fuzzy, gcc-internal-format -msgid "%qD may not be declared as static" -msgstr "\"%#D\" no pot ser declarat" - -#: cp/decl.c:9731 -#, fuzzy, gcc-internal-format -msgid "%qD must be a nonstatic member function" -msgstr "\"%D\" ha de ser una funci membre que no sigui static" - -#: cp/decl.c:9740 -#, fuzzy, gcc-internal-format -msgid "%qD must be either a non-static member function or a non-member function" -msgstr "\"%D\" ha de ser una funci membre no esttic o una funci no membre" - -#: cp/decl.c:9761 -#, fuzzy, gcc-internal-format -msgid "%qD must have an argument of class or enumerated type" -msgstr "\"%D\" ha de tenir un argument de tipus classe o enumerat" - -#: cp/decl.c:9802 -#, gcc-internal-format -msgid "conversion to %s%s will never use a type conversion operator" -msgstr "la conversi a %s%s mai usar un operador de conversi de tipus" - -#. 13.4.0.3 -#: cp/decl.c:9810 -#, gcc-internal-format -msgid "ISO C++ prohibits overloading operator ?:" -msgstr "ISO C++ prohibeix la sobrecrrega de l'operador ?:" - -#: cp/decl.c:9815 -#, fuzzy, gcc-internal-format -msgid "%qD must not have variable number of arguments" -msgstr "\"%D\" ha de prendre un o dos arguments" - -#: cp/decl.c:9866 -#, fuzzy, gcc-internal-format -msgid "postfix %qD must take % as its argument" -msgstr "el postfix \"%D\" ha de prendre \"int\" com el seu argument" - -#: cp/decl.c:9869 -#, fuzzy, gcc-internal-format -msgid "postfix %qD must take % as its second argument" -msgstr "el postfix \"%D\" ha de prendre \"int\" com el seu segon argument" - -#: cp/decl.c:9877 -#, fuzzy, gcc-internal-format -msgid "%qD must take either zero or one argument" -msgstr "\"%D\" ha de prendre zero o un argument" - -#: cp/decl.c:9879 -#, fuzzy, gcc-internal-format -msgid "%qD must take either one or two arguments" -msgstr "\"%D\" ha de prendre un o dos arguments" - -#: cp/decl.c:9901 -#, fuzzy, gcc-internal-format -msgid "prefix %qD should return %qT" -msgstr "el prefix \"%D\" ha de regressar \"%T\"" - -#: cp/decl.c:9907 -#, fuzzy, gcc-internal-format -msgid "postfix %qD should return %qT" -msgstr "el postfix \"%D\" ha de regressar \"%T\"" - -#: cp/decl.c:9916 -#, fuzzy, gcc-internal-format -msgid "%qD must take %" -msgstr "\"%D\" ha de prendre \"void\"" - -#: cp/decl.c:9918 cp/decl.c:9927 -#, fuzzy, gcc-internal-format -msgid "%qD must take exactly one argument" -msgstr "\"%D\" ha de prendre un argument exactament" - -#: cp/decl.c:9929 -#, fuzzy, gcc-internal-format -msgid "%qD must take exactly two arguments" -msgstr "\"%D\" ha de prendre dos arguments exactament" - -#: cp/decl.c:9938 -#, fuzzy, gcc-internal-format -msgid "user-defined %qD always evaluates both arguments" -msgstr "el \"%D\" definit per l'usuari sempre avalua ambds arguments" - -#: cp/decl.c:9952 -#, fuzzy, gcc-internal-format -msgid "%qD should return by value" -msgstr "\"%D\" ha de regressar per valor" - -#: cp/decl.c:9964 cp/decl.c:9968 -#, fuzzy, gcc-internal-format -msgid "%qD cannot have default arguments" -msgstr "\"%D\" no pot tenir arguments per omissi" - -#: cp/decl.c:10026 -#, fuzzy, gcc-internal-format -msgid "using template type parameter %qT after %qs" -msgstr "usant el parmetre de tipus patr \"%T\" desprs de \"%s\"" - -#: cp/decl.c:10041 -#, fuzzy, gcc-internal-format -msgid "using typedef-name %qD after %qs" -msgstr "usant el nom de definici de tipus \"%D\" desprs de \"%s\"" - -#: cp/decl.c:10042 -#, fuzzy, gcc-internal-format -msgid "%q+D has a previous declaration here" -msgstr "declaraci prvia com \"%#D\"" - -#: cp/decl.c:10050 -#, fuzzy, gcc-internal-format -msgid "%qT referred to as %qs" -msgstr "\"%#D\" redeclarat com %C" - -#: cp/decl.c:10051 cp/decl.c:10058 -#, fuzzy, gcc-internal-format -msgid "%q+T has a previous declaration here" -msgstr "%Jaix s una declaraci prvia" - -#: cp/decl.c:10057 -#, fuzzy, gcc-internal-format -msgid "%qT referred to as enum" -msgstr "\"%#D\" redeclarat com %C" - -#. If a class template appears as elaborated type specifier -#. without a template header such as: -#. -#. template class C {}; -#. void f(class C); // No template header here -#. -#. then the required template argument is missing. -#: cp/decl.c:10072 -#, fuzzy, gcc-internal-format -msgid "template argument required for %<%s %T%>" -msgstr "es requereix un argument de patr per a \"%T\"" - -#: cp/decl.c:10120 cp/name-lookup.c:2698 -#, gcc-internal-format -msgid "%qD has the same name as the class in which it is declared" -msgstr "" - -#: cp/decl.c:10150 cp/name-lookup.c:2207 cp/parser.c:4036 cp/parser.c:14029 -#: cp/parser.c:16234 -#, fuzzy, gcc-internal-format -msgid "reference to %qD is ambiguous" -msgstr "l's de \"%D\" s ambigu" - -#: cp/decl.c:10264 -#, fuzzy, gcc-internal-format -msgid "use of enum %q#D without previous declaration" -msgstr "s del enum \"%#D\" sense declaraci prvia" - -#: cp/decl.c:10285 -#, fuzzy, gcc-internal-format -msgid "redeclaration of %qT as a non-template" -msgstr "la declaraci de \"%D\" com una no funci" - -#: cp/decl.c:10286 cp/pt.c:4154 -#, fuzzy, gcc-internal-format -msgid "previous declaration %q+D" -msgstr "declaraci prvia de \"%D\"" - -#: cp/decl.c:10397 -#, fuzzy, gcc-internal-format -msgid "derived union %qT invalid" -msgstr "union derivada \"%T\" no vlida" - -#: cp/decl.c:10406 -#, fuzzy, gcc-internal-format -msgid "Java class %qT cannot have multiple bases" -msgstr "la classe base \"%#T\" t un destructor no virtual" - -#: cp/decl.c:10417 -#, fuzzy, gcc-internal-format -msgid "Java class %qT cannot have virtual bases" -msgstr "la classe base \"%#T\" t un destructor no virtual" - -#: cp/decl.c:10440 -#, fuzzy, gcc-internal-format -msgid "base type %qT fails to be a struct or class type" -msgstr "el tipus base \"%T\" falla a ser un tipus struct o classe" - -#: cp/decl.c:10473 -#, fuzzy, gcc-internal-format -msgid "recursive type %qT undefined" -msgstr "tipus recursivo \"%T\" sense definir" - -#: cp/decl.c:10475 -#, fuzzy, gcc-internal-format -msgid "duplicate base type %qT invalid" -msgstr "tipus base duplicat \"%T\" no vlid" - -#: cp/decl.c:10552 -#, fuzzy, gcc-internal-format -msgid "multiple definition of %q#T" -msgstr "definici mltiple de \"%#T\"" - -#: cp/decl.c:10553 -#, fuzzy, gcc-internal-format -msgid "%Jprevious definition here" -msgstr "definici prvia aqu" - -#. DR 377 -#. -#. IF no integral type can represent all the enumerator values, the -#. enumeration is ill-formed. -#: cp/decl.c:10692 -#, gcc-internal-format -msgid "no integral type can represent all of the enumerator values for %qT" -msgstr "" - -#: cp/decl.c:10803 -#, fuzzy, gcc-internal-format -msgid "enumerator value for %qD is not an integer constant" -msgstr "el valor de enumerator per a \"%s\" no s una constant entera" - -#: cp/decl.c:10831 -#, fuzzy, gcc-internal-format -msgid "overflow in enumeration values at %qD" -msgstr "desbordament en valors d'enumeraci en \"%D\"" - -#: cp/decl.c:10906 -#, fuzzy, gcc-internal-format -msgid "return type %q#T is incomplete" -msgstr "el tipus de retorn \"%#T\" s un tipus de dada incompleta" - -#: cp/decl.c:11031 cp/typeck.c:6711 -#, fuzzy, gcc-internal-format -msgid "% should return a reference to %<*this%>" -msgstr "\"operator=\" ha de retornar una referncia a \"*this\"" - -#: cp/decl.c:11420 -#, fuzzy, gcc-internal-format -msgid "parameter %qD declared void" -msgstr "el parmetre \"%D\" es va declarar void" - -#: cp/decl.c:11908 -#, fuzzy, gcc-internal-format -msgid "invalid member function declaration" -msgstr "declaraci del patr membre \"%D\" no vlida" - -#: cp/decl.c:11923 -#, fuzzy, gcc-internal-format -msgid "%qD is already defined in class %qT" -msgstr "\"%D\" ja es va definir en la classe \"%T\"" - -#: cp/decl.c:12170 -#, fuzzy, gcc-internal-format -msgid "static member function %q#D declared with type qualifiers" -msgstr "la funci membre static \"%#D\" s declarada amb qualificadors de tipus" - -#: cp/decl2.c:268 -#, gcc-internal-format -msgid "name missing for member function" -msgstr "falta el nom per a la funci membre" - -#: cp/decl2.c:339 cp/decl2.c:353 -#, gcc-internal-format -msgid "ambiguous conversion for array subscript" -msgstr "conversi ambigua per a ndex de matriu" - -#: cp/decl2.c:347 -#, fuzzy, gcc-internal-format -msgid "invalid types %<%T[%T]%> for array subscript" -msgstr "tipus no vlids \"%T[%T]\" per a ndex de matriu" - -#: cp/decl2.c:390 -#, fuzzy, gcc-internal-format -msgid "deleting array %q#D" -msgstr "esborrant la matriu \"%#D\"" - -#: cp/decl2.c:396 -#, fuzzy, gcc-internal-format -msgid "type %q#T argument given to %, expected pointer" -msgstr "es va donar un argument de tipus \"%#T\" a \"delete\", s'esperava un punter" - -#: cp/decl2.c:408 -#, fuzzy, gcc-internal-format -msgid "cannot delete a function. Only pointer-to-objects are valid arguments to %" -msgstr "no es pot esborrar una funci. Solament els punters a objectes sn arguments vlids per a \"delete\"" - -#: cp/decl2.c:416 -#, fuzzy, gcc-internal-format -msgid "deleting %qT is undefined" -msgstr "esborrar \"%T\" est indefinit" - -#: cp/decl2.c:459 cp/pt.c:3828 -#, fuzzy, gcc-internal-format -msgid "template declaration of %q#D" -msgstr "declaraci en patr de \"%#D\"" - -#: cp/decl2.c:511 -#, fuzzy, gcc-internal-format -msgid "Java method %qD has non-Java return type %qT" -msgstr "el mtode Java \"%D\" t un tipus de retorn \"%T\" que no s de Java" - -#: cp/decl2.c:528 -#, fuzzy, gcc-internal-format -msgid "Java method %qD has non-Java parameter type %qT" -msgstr "el mtode Java \"%D\" t un tipus de parmetre \"%T\" que no s de Java" - -#: cp/decl2.c:639 -#, fuzzy, gcc-internal-format -msgid "prototype for %q#D does not match any in class %qT" -msgstr "el prototip per a \"%#D\" no coincideix amb cap altre en la classe \"%T\"" - -#: cp/decl2.c:719 -#, fuzzy, gcc-internal-format -msgid "local class %q#T shall not have static data member %q#D" -msgstr "la classe local \"%#T\" no ha de tenir el membre static \"%#D\"" - -#: cp/decl2.c:727 -#, gcc-internal-format -msgid "initializer invalid for static member with constructor" -msgstr "inicializador no vlid per al membre static amb constructor" - -#: cp/decl2.c:730 -#, gcc-internal-format -msgid "(an out of class initialization is required)" -msgstr "(es requereix una inicialitzaci fora de la classe)" - -#: cp/decl2.c:790 -#, fuzzy, gcc-internal-format -msgid "member %qD conflicts with virtual function table field name" -msgstr "el membre \"%D\" t conflictes amb el nom de camp de la matriu de funcions virtuals" - -#: cp/decl2.c:810 -#, fuzzy, gcc-internal-format -msgid "%qD is already defined in %qT" -msgstr "\"%D\" ja est definit en \"%T\"" - -#: cp/decl2.c:831 -#, fuzzy, gcc-internal-format -msgid "initializer specified for static member function %qD" -msgstr "es va especificar un inicialitzador per a la funci no-membre \"%D\"" - -#: cp/decl2.c:854 -#, gcc-internal-format -msgid "field initializer is not constant" -msgstr "l'inicializador del camp no s constant" - -#: cp/decl2.c:881 -#, fuzzy, gcc-internal-format -msgid "% specifiers are not permitted on non-static data members" -msgstr "no es permeten els especificadores \"asm\" en membres de dades no esttiques" - -#: cp/decl2.c:932 -#, fuzzy, gcc-internal-format -msgid "bit-field %qD with non-integral type" -msgstr "camp de bits \"%D\" amb tipus no enter" - -#: cp/decl2.c:938 -#, fuzzy, gcc-internal-format -msgid "cannot declare %qD to be a bit-field type" -msgstr "no es pot declarar \"%D\" que sigui un tipus de camp de bits" - -#: cp/decl2.c:948 -#, fuzzy, gcc-internal-format -msgid "cannot declare bit-field %qD with function type" -msgstr "no es pot declarar el camp de bits \"%D\" amb un tipus de funci" - -#: cp/decl2.c:955 -#, fuzzy, gcc-internal-format -msgid "%qD is already defined in the class %qT" -msgstr "\"%D\" ja est definit en la classe %T" - -#: cp/decl2.c:962 -#, fuzzy, gcc-internal-format -msgid "static member %qD cannot be a bit-field" -msgstr "el membre static \"%D\" no pot ser un camp de bits" - -#: cp/decl2.c:1122 -#, gcc-internal-format -msgid "anonymous struct not inside named type" -msgstr "struct annim no es troba dintre d'un tipus nomenat" - -#: cp/decl2.c:1206 -#, gcc-internal-format -msgid "namespace-scope anonymous aggregates must be static" -msgstr "els agregats annims d'abast de nom d'espai deuen ser static" - -#: cp/decl2.c:1215 -#, fuzzy, gcc-internal-format -msgid "anonymous union with no members" -msgstr "agregat annim sense membres" - -#: cp/decl2.c:1251 -#, fuzzy, gcc-internal-format -msgid "% must return type %qT" -msgstr "\"operator new\" ha de retornar el tipus \"%T\"" - -#. [basic.stc.dynamic.allocation] -#. -#. The first parameter shall not have an associated default -#. argument. -#: cp/decl2.c:1262 -#, gcc-internal-format -msgid "the first parameter of % cannot have a default argument" -msgstr "" - -#: cp/decl2.c:1278 -#, fuzzy, gcc-internal-format -msgid "% takes type % (%qT) as first parameter" -msgstr "\"operator new\" pren el tipus \"size_t\" (\"%T\") com primer argument" - -#: cp/decl2.c:1307 -#, fuzzy, gcc-internal-format -msgid "% must return type %qT" -msgstr "\"operator delete\" ha de retornar el tipus \"%T\"" - -#: cp/decl2.c:1316 -#, fuzzy, gcc-internal-format -msgid "% takes type %qT as first parameter" -msgstr "\"operator delete\" pren el tipus \"%T\" com primer argument" - -#: cp/decl2.c:1985 -#, gcc-internal-format -msgid "%qT has a field %qD whose type uses the anonymous namespace" -msgstr "" - -#: cp/decl2.c:1992 -#, gcc-internal-format -msgid "%qT declared with greater visibility than the type of its field %qD" -msgstr "" - -#: cp/decl2.c:2005 -#, gcc-internal-format -msgid "%qT has a base %qT whose type uses the anonymous namespace" -msgstr "" - -#: cp/decl2.c:2011 -#, gcc-internal-format -msgid "%qT declared with greater visibility than its base %qT" -msgstr "" - -#: cp/decl2.c:3395 -#, fuzzy, gcc-internal-format -msgid "inline function %q+D used but never defined" -msgstr "s'usa la funci inline \"%D\" per mai es va definir" - -#: cp/decl2.c:3543 -#, fuzzy, gcc-internal-format -msgid "default argument missing for parameter %P of %q+#D" -msgstr "falta l'argument per omissi per al parmetre %P de \"%+#D\"" - -#. We really want to suppress this warning in system headers, -#. because libstdc++ uses variadic templates even when we aren't -#. in C++0x mode. -#: cp/error.c:2669 -#, fuzzy, gcc-internal-format -msgid "ISO C++ does not include variadic templates" -msgstr "ISO C no permet macros variadic nomenats" - -#. Can't throw a reference. -#: cp/except.c:269 -#, fuzzy, gcc-internal-format -msgid "type %qT is disallowed in Java % or %" -msgstr "el tipus \"%T\" no est perms en \"throw\" o \"catch\" de Java" - -#: cp/except.c:280 -#, fuzzy, gcc-internal-format -msgid "call to Java % or % with % undefined" -msgstr "cridada a \"catch\" o \"throw\" de Java amb \"jthrowable\" sense definir" - -#. Thrown object must be a Throwable. -#: cp/except.c:287 -#, fuzzy, gcc-internal-format -msgid "type %qT is not derived from %" -msgstr "el tipus \"%T\" no s derivat de \"java::lang::Throwable\"" - -#: cp/except.c:350 -#, gcc-internal-format -msgid "mixing C++ and Java catches in a single translation unit" -msgstr "barrejant \"catches\" de C++ i Java en una sola unitat de traducci" - -#: cp/except.c:620 -#, gcc-internal-format -msgid "throwing NULL, which has integral, not pointer type" -msgstr "llanant NULL, que t un tipus integral, no un tipus punter" - -#: cp/except.c:643 cp/init.c:1780 -#, fuzzy, gcc-internal-format -msgid "%qD should never be overloaded" -msgstr "\"%D\" ha de regressar per valor" - -#: cp/except.c:739 -#, gcc-internal-format -msgid " in thrown expression" -msgstr " en expressi thrown" - -#: cp/except.c:895 -#, fuzzy, gcc-internal-format -msgid "expression %qE of abstract class type %qT cannot be used in throw-expression" -msgstr "no es pot usar l'expressi \"%E\" del tipus de classe abstracta \"%T\" en les expressions thrown" - -#: cp/except.c:980 -#, fuzzy, gcc-internal-format -msgid "%Hexception of type %qT will be caught" -msgstr "l'excepci del tipus \"%T\" ser atrapada" - -#: cp/except.c:982 -#, fuzzy, gcc-internal-format -msgid "%H by earlier handler for %qT" -msgstr " per un gestor anterior per a \"%T\"" - -#: cp/except.c:1012 -#, fuzzy, gcc-internal-format -msgid "%H%<...%> handler must be the last handler for its try block" -msgstr "el gestor \"...\" ha de ser l'ltim gestor per al seu bloc try" - -#: cp/friend.c:156 -#, fuzzy, gcc-internal-format -msgid "%qD is already a friend of class %qT" -msgstr "\"%D\" ja s un friend de la classe \"%T\"" - -#: cp/friend.c:232 -#, fuzzy, gcc-internal-format -msgid "invalid type %qT declared %" -msgstr "el tipus no vlid \"%T\" va ser declarat \"friend\"" - -#. [temp.friend] -#. Friend declarations shall not declare partial -#. specializations. -#. template friend class T::X; -#. [temp.friend] -#. Friend declarations shall not declare partial -#. specializations. -#: cp/friend.c:248 cp/friend.c:278 -#, fuzzy, gcc-internal-format -msgid "partial specialization %qT declared %" -msgstr "l'especialitzaci parcial \"%T\" es va declarar \"friend\"" - -#: cp/friend.c:256 -#, fuzzy, gcc-internal-format -msgid "class %qT is implicitly friends with itself" -msgstr "la classe \"%T\" s implcitament friend amb si mateixa" - -#: cp/friend.c:314 -#, fuzzy, gcc-internal-format -msgid "%qT is not a member of %qT" -msgstr "\"%D\" no s un membre de \"%T\"" - -#: cp/friend.c:319 -#, fuzzy, gcc-internal-format -msgid "%qT is not a member class template of %qT" -msgstr "\"%D\" no s una funci patr membre" - -#: cp/friend.c:327 -#, fuzzy, gcc-internal-format -msgid "%qT is not a nested class of %qT" -msgstr "\"%T\" no s una base de \"%T\"" - -#. template friend class T; -#: cp/friend.c:340 -#, fuzzy, gcc-internal-format -msgid "template parameter type %qT declared %" -msgstr "el tipus de parmetre de patr \"%T\" es va declarar \"friend\"" - -#. template friend class A; where A is not a template -#: cp/friend.c:346 -#, fuzzy, gcc-internal-format -msgid "%q#T is not a template" -msgstr "\"%#T\" no s un patr" - -#: cp/friend.c:368 -#, fuzzy, gcc-internal-format -msgid "%qD is already a friend of %qT" -msgstr "\"%T\" ja s un friend de \"%T\"" - -#: cp/friend.c:377 -#, fuzzy, gcc-internal-format -msgid "%qT is already a friend of %qT" -msgstr "\"%T\" ja s un friend de \"%T\"" - -#: cp/friend.c:494 -#, fuzzy, gcc-internal-format -msgid "member %qD declared as friend before type %qT defined" -msgstr "el membre \"%D\" s declarat friend abans que es defineixi el tipus \"%T\"" - -#: cp/friend.c:550 -#, fuzzy, gcc-internal-format -msgid "friend declaration %q#D declares a non-template function" -msgstr "la declaraci friend \"%#D\" declara una funci que no s patr" - -#: cp/friend.c:554 -#, fuzzy, 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) " -msgstr "(si aquesta no s la seva intenci, asseguri's qu'el patr de la funci ja ha estat declarada i agregui <> aqu desprs del nom de la funci) -Wno-non-template-friend desactiva aquest avs" - -#: cp/init.c:334 -#, fuzzy, gcc-internal-format -msgid "%J%qD should be initialized in the member initialization list" -msgstr "inicialitzaci de la dada membre no vlida" - -#: cp/init.c:382 -#, fuzzy, gcc-internal-format -msgid "%Jdefault-initialization of %q#D, which has reference type" -msgstr "l'inicialitzaci per omissi de \"%#D\", el qual t el tipus de referncia" - -#: cp/init.c:388 -#, fuzzy, gcc-internal-format -msgid "%Juninitialized reference member %qD" -msgstr "membre referncia \"%D\" sense inicialitzar" - -#: cp/init.c:391 -#, fuzzy, gcc-internal-format -msgid "%Juninitialized member %qD with % type %qT" -msgstr "const \"%D\" sense inicialitzar" - -#: cp/init.c:534 -#, fuzzy, gcc-internal-format -msgid "%q+D will be initialized after" -msgstr "\"%D\" s'inicialitzar desprs" - -#: cp/init.c:537 -#, fuzzy, gcc-internal-format -msgid "base %qT will be initialized after" -msgstr "la base \"%T\" s'inicialitzar desprs" - -#: cp/init.c:540 -#, fuzzy, gcc-internal-format -msgid " %q+#D" -msgstr " \"#%D\"" - -#: cp/init.c:542 -#, fuzzy, gcc-internal-format -msgid " base %qT" -msgstr " base \"%T\"" - -#: cp/init.c:543 -#, fuzzy, gcc-internal-format -msgid "%J when initialized here" -msgstr "\"%D\" s'inicialitzar desprs" - -#: cp/init.c:559 -#, fuzzy, gcc-internal-format -msgid "%Jmultiple initializations given for %qD" -msgstr "es van donar inicialitzacions mltiples per a \"%D\"" - -#: cp/init.c:562 -#, fuzzy, gcc-internal-format -msgid "%Jmultiple initializations given for base %qT" -msgstr "es van donar inicialitzacions mltiples per a la base \"%T\"" - -#: cp/init.c:629 -#, fuzzy, gcc-internal-format -msgid "%Jinitializations for multiple members of %qT" -msgstr "inicialitzacions per a mltiples membres de \"%T\"" - -#: cp/init.c:691 -#, fuzzy, gcc-internal-format -msgid "%Jbase class %q#T should be explicitly initialized in the copy constructor" -msgstr "la classe base \"%#T\" ha de ser inicialitzada explcitament en la cpia del constructor" - -#: cp/init.c:915 cp/init.c:934 -#, fuzzy, gcc-internal-format -msgid "class %qT does not have any field named %qD" -msgstr "la classe \"%T\" no t cap camp cridat \"%D\"" - -#: cp/init.c:921 -#, fuzzy, gcc-internal-format -msgid "%q#D is a static data member; it can only be initialized at its definition" -msgstr "el camp \"%#D\" s static; l'nic punt d'inicialitzaci s la seva definici" - -#: cp/init.c:928 -#, fuzzy, gcc-internal-format -msgid "%q#D is not a non-static data member of %qT" -msgstr "\"%#D\" no s un membre static de \"%#T\"" - -#: cp/init.c:967 -#, fuzzy, gcc-internal-format -msgid "unnamed initializer for %qT, which has no base classes" -msgstr "inicialitzador sense nom per a \"%T\", el qual no t una classe base" - -#: cp/init.c:975 -#, fuzzy, gcc-internal-format -msgid "unnamed initializer for %qT, which uses multiple inheritance" -msgstr "inicialitzador sense nom per a \"%T\", el qual usa herncia mltiple" - -#: cp/init.c:1021 -#, fuzzy, gcc-internal-format -msgid "%qD is both a direct base and an indirect virtual base" -msgstr "el tipus \"%D\" no s una base directa o virtual de \"%T\"" - -#: cp/init.c:1029 -#, fuzzy, gcc-internal-format -msgid "type %qT is not a direct or virtual base of %qT" -msgstr "el tipus \"%D\" no s una base directa o virtual de \"%T\"" - -#: cp/init.c:1032 -#, fuzzy, gcc-internal-format -msgid "type %qT is not a direct base of %qT" -msgstr "el tipus \"%D\" no s una base directa de \"%T\"" - -#: cp/init.c:1112 -#, gcc-internal-format -msgid "bad array initializer" -msgstr "inicialitzador de matriu erroni" - -#: cp/init.c:1287 -#, fuzzy, gcc-internal-format -msgid "%qT is not an aggregate type" -msgstr "\"%T\" no s un tipus agregat" - -#: cp/init.c:1341 -#, fuzzy, gcc-internal-format -msgid "incomplete type %qT does not have member %qD" -msgstr "el tipus incomplet \"%T\" no t al membre \"%D\"" - -#: cp/init.c:1354 -#, fuzzy, gcc-internal-format -msgid "invalid pointer to bit-field %qD" -msgstr "punter no vlid al camp de bit \"%D\"" - -#: cp/init.c:1431 -#, fuzzy, gcc-internal-format -msgid "invalid use of non-static member function %qD" -msgstr "s no vlid del camp no static \"%D\"" - -#: cp/init.c:1437 -#, fuzzy, gcc-internal-format -msgid "invalid use of non-static data member %qD" -msgstr "s no vlid del camp no static \"%D\"" - -#: cp/init.c:1714 -#, fuzzy, gcc-internal-format -msgid "invalid type % for new" -msgstr "tipus \"void\" no vlid per a new" - -#: cp/init.c:1724 -#, fuzzy, gcc-internal-format -msgid "uninitialized const in % of %q#T" -msgstr "const sense inicialitzar en \"new\" de \"%#T\"" - -#: cp/init.c:1775 -#, fuzzy, gcc-internal-format -msgid "call to Java constructor with %qs undefined" -msgstr "cridada a constructor Java amb \"%s\" sense definir" - -#: cp/init.c:1815 -#, gcc-internal-format -msgid "no suitable %qD found in class %qT" -msgstr "" - -#: cp/init.c:1820 -#, fuzzy, gcc-internal-format -msgid "request for member %qD is ambiguous" -msgstr "a petici per al membre \"%D\" s ambigua" - -#: cp/init.c:1972 -#, gcc-internal-format -msgid "ISO C++ forbids initialization in array new" -msgstr "ISO C++ prohibeix la inicialitzaci en la matriu new" - -#: cp/init.c:2174 -#, gcc-internal-format -msgid "size in array new must have integral type" -msgstr "la grandria de la matriu nova ha de tenir un tipus integral" - -#: cp/init.c:2183 -#, gcc-internal-format -msgid "new cannot be applied to a reference type" -msgstr "new no pot ser aplicat a un tipus de referncia" - -#: cp/init.c:2189 -#, gcc-internal-format -msgid "new cannot be applied to a function type" -msgstr "new no pot ser aplicat a una funcci de referncia" - -#: cp/init.c:2228 -#, fuzzy, gcc-internal-format -msgid "call to Java constructor, while % undefined" -msgstr "cridada a constructor Java, mentre \"jclass\" est indefinit" - -#: cp/init.c:2246 -#, fuzzy, gcc-internal-format -msgid "can't find % in %qT" -msgstr "no es pot trobar class$" - -#: cp/init.c:2607 -#, gcc-internal-format -msgid "initializer ends prematurely" -msgstr "l'inicialitzador acaba prematurament" - -#: cp/init.c:2662 -#, gcc-internal-format -msgid "cannot initialize multi-dimensional array with initializer" -msgstr "no es poden inicialitzar matrius multidimensionals amb l'inicialitzador" - -#: cp/init.c:2799 -#, gcc-internal-format -msgid "possible problem detected in invocation of delete operator:" -msgstr "" - -#: cp/init.c:2802 -#, 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:2823 -#, gcc-internal-format -msgid "unknown array size in delete" -msgstr "grandria de matriu desconeguda en delete" - -#: cp/init.c:3070 -#, gcc-internal-format -msgid "type to vector delete is neither pointer or array type" -msgstr "el tipus de vector delete no s del tipus punter ni matriu" - -#: cp/lex.c:489 -#, gcc-internal-format -msgid "junk at end of #pragma %s" -msgstr "escombraries al final de #pragma %s" - -#: cp/lex.c:496 -#, gcc-internal-format -msgid "invalid #pragma %s" -msgstr "#pragma %s no vlid" - -#: cp/lex.c:504 -#, gcc-internal-format -msgid "#pragma vtable no longer supported" -msgstr "#pragma vtable ja no t suport" - -#: cp/lex.c:583 -#, fuzzy, gcc-internal-format -msgid "#pragma implementation for %qs appears after file is included" -msgstr "implementaci de #pragma per a %s apareix desprs que el fitxer s incls" - -#: cp/lex.c:608 -#, gcc-internal-format -msgid "junk at end of #pragma GCC java_exceptions" -msgstr "escombraries al final del #pragma GCC java_exceptions" - -#: cp/lex.c:622 -#, fuzzy, gcc-internal-format -msgid "%qD not defined" -msgstr "\"%D\" no est definit" - -#: cp/lex.c:626 -#, fuzzy, gcc-internal-format -msgid "%qD was not declared in this scope" -msgstr "\"%D\" no es va declarar en aquest mbit" - -#. 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:663 -#, 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:672 -#, 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:1691 -#, gcc-internal-format -msgid "mangling typeof, use decltype instead" -msgstr "" - -#: cp/mangle.c:2208 -#, gcc-internal-format -msgid "call_expr cannot be mangled due to a defect in the C++ ABI" -msgstr "" - -#: cp/mangle.c:2216 -#, gcc-internal-format -msgid "zero-operand casts cannot be mangled due to a defect in the C++ ABI" -msgstr "" - -#: cp/mangle.c:2266 -#, gcc-internal-format -msgid "omitted middle operand to % operand cannot be mangled" -msgstr "" - -#: cp/mangle.c:2584 -#, gcc-internal-format -msgid "the mangled name of %qD will change in a future version of GCC" -msgstr "" - -#: cp/method.c:462 -#, fuzzy, gcc-internal-format -msgid "generic thunk code fails for method %q#D which uses %<...%>" -msgstr "el codi de thunk genric ha fallat per al mtode \"%#D\" que utilitza \"...\"" - -#: cp/method.c:697 -#, fuzzy, gcc-internal-format -msgid "non-static const member %q#D, can't use default assignment operator" -msgstr "el membre const \"%#D\" que no s static, no pot usar l'operador d'assignaci per omissi" - -#: cp/method.c:703 -#, fuzzy, gcc-internal-format -msgid "non-static reference member %q#D, can't use default assignment operator" -msgstr "el membre de referncia \"%#D\" que no s static, no pot usar l'operador d'assignaci per omissi" - -#: cp/method.c:815 -#, gcc-internal-format -msgid "%Hsynthesized method %qD first required here " -msgstr "" - -#: cp/method.c:1158 -#, 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:728 -#, fuzzy, gcc-internal-format -msgid "redeclaration of % as %qT" -msgstr "redeclaracin de \"wchar_t\" com \"%T\"" - -#. 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:758 -#, fuzzy, gcc-internal-format -msgid "invalid redeclaration of %q+D" -msgstr "redeclaracin no vlida de \"%D\"" - -#: cp/name-lookup.c:759 -#, fuzzy, gcc-internal-format -msgid "as %qD" -msgstr "com \"%D\"" - -#: cp/name-lookup.c:850 -#, fuzzy, gcc-internal-format -msgid "type mismatch with previous external decl of %q#D" -msgstr "no coincideixen els tipus amb la declaraci externa prvia" - -#: cp/name-lookup.c:851 -#, fuzzy, gcc-internal-format -msgid "previous external decl of %q+#D" -msgstr "declaraci externa prvia de \"%#D\"" - -#: cp/name-lookup.c:942 -#, fuzzy, gcc-internal-format -msgid "extern declaration of %q#D doesn't match" -msgstr "la declaraci externa de \"%#D\" no coincideix" - -#: cp/name-lookup.c:943 -#, fuzzy, gcc-internal-format -msgid "global declaration %q+#D" -msgstr "amb la declaraci global \"%#D\"" - -#: cp/name-lookup.c:980 cp/name-lookup.c:987 -#, fuzzy, gcc-internal-format -msgid "declaration of %q#D shadows a parameter" -msgstr "la declaraci de \"%#D\" enfosqueix un parmetre" - -#. Location of previous decl is not useful in this case. -#: cp/name-lookup.c:1012 -#, fuzzy, gcc-internal-format -msgid "declaration of %qD shadows a member of 'this'" -msgstr "la declaraci de \"%s\" obscurece a un membre de \"this\"" - -#: cp/name-lookup.c:1018 -#, fuzzy, gcc-internal-format -msgid "declaration of %qD shadows a previous local" -msgstr "la declaraci de \"%#D\" enfosqueix un parmetre" - -#: cp/name-lookup.c:1025 -#, fuzzy, gcc-internal-format -msgid "declaration of %qD shadows a global declaration" -msgstr "la declaraci de \"%#D\" enfosqueix un parmetre" - -#: cp/name-lookup.c:1148 -#, fuzzy, gcc-internal-format -msgid "name lookup of %qD changed" -msgstr "la recerca de nom de \"%D\" va canviar" - -#: cp/name-lookup.c:1149 -#, gcc-internal-format -msgid " matches this %q+D under ISO standard rules" -msgstr "" - -#: cp/name-lookup.c:1151 -#, gcc-internal-format -msgid " matches this %q+D under old rules" -msgstr "" - -#: cp/name-lookup.c:1169 cp/name-lookup.c:1177 -#, fuzzy, gcc-internal-format -msgid "name lookup of %qD changed for new ISO % scoping" -msgstr "la recerca de nom de \"%D\" va canviar" - -#: cp/name-lookup.c:1171 -#, gcc-internal-format -msgid " cannot use obsolete binding at %q+D because it has a destructor" -msgstr "" - -#: cp/name-lookup.c:1179 -#, gcc-internal-format -msgid " using obsolete binding at %q+D" -msgstr "" - -#: cp/name-lookup.c:1232 -#, gcc-internal-format -msgid "%s %s(%E) %p %d\n" -msgstr "" - -#: cp/name-lookup.c:1235 -#, fuzzy, gcc-internal-format -msgid "%s %s %p %d\n" -msgstr "%s: %s: " - -#: cp/name-lookup.c:1362 -#, gcc-internal-format -msgid "XXX is_class_level != (current_scope == class_scope)\n" -msgstr "" - -#: cp/name-lookup.c:1920 -#, fuzzy, gcc-internal-format -msgid "%q#D hides constructor for %q#T" -msgstr "\"%#D\" amaga el destructor per a \"%#T\"" - -#: cp/name-lookup.c:1937 -#, fuzzy, gcc-internal-format -msgid "%q#D conflicts with previous using declaration %q#D" -msgstr "\"%#D\" causa conflicte amb la declaraci prvia en s \"%#D\"" - -#: cp/name-lookup.c:1960 -#, fuzzy, gcc-internal-format -msgid "previous non-function declaration %q+#D" -msgstr "la declaraci prvia \"%#D\" que no s funci" - -#: cp/name-lookup.c:1961 -#, fuzzy, gcc-internal-format -msgid "conflicts with function declaration %q#D" -msgstr "causa conflicte amb la declaraci de la funci \"%#D\"" - -#. It's a nested name with template parameter dependent scope. -#. This can only be using-declaration for class member. -#: cp/name-lookup.c:2039 cp/name-lookup.c:2064 -#, fuzzy, gcc-internal-format -msgid "%qT is not a namespace" -msgstr "\"%T\" no s un nom d'espai" - -#. 7.3.3/5 -#. A using-declaration shall not name a template-id. -#: cp/name-lookup.c:2049 -#, fuzzy, gcc-internal-format -msgid "a using-declaration cannot specify a template-id. Try %" -msgstr "una declaraci d's no pot especificar un identificador de patr. Intenti \"using %D\"" - -#: cp/name-lookup.c:2056 -#, fuzzy, gcc-internal-format -msgid "namespace %qD not allowed in using-declaration" -msgstr "no es permet l'espai de noms \"%D\" en la declaraci d's" - -#: cp/name-lookup.c:2092 -#, fuzzy, gcc-internal-format -msgid "%qD not declared" -msgstr "no es va declarar \"%D\"" - -#: cp/name-lookup.c:2128 cp/name-lookup.c:2165 cp/name-lookup.c:2199 -#: cp/name-lookup.c:2214 -#, fuzzy, gcc-internal-format -msgid "%qD is already declared in this scope" -msgstr "\"%D\" ja es va declarar en aquest mbit" - -#: cp/name-lookup.c:2817 -#, gcc-internal-format -msgid "using-declaration for non-member at class scope" -msgstr "declaraci d's per a un no membre en l'mbit de la classe" - -#: cp/name-lookup.c:2824 -#, fuzzy, gcc-internal-format -msgid "%<%T::%D%> names destructor" -msgstr "\"%D\" nomena al constructor" - -#: cp/name-lookup.c:2829 -#, fuzzy, gcc-internal-format -msgid "%<%T::%D%> names constructor" -msgstr "\"%D\" nomena al constructor" - -#: cp/name-lookup.c:2834 -#, fuzzy, gcc-internal-format -msgid "%<%T::%D%> names constructor in %qT" -msgstr "\"%D\" nomena al constructor" - -#: cp/name-lookup.c:2884 -#, fuzzy, gcc-internal-format -msgid "no members matching %<%T::%D%> in %q#T" -msgstr "no hi ha membres que coincideixin amb \"%D\" en \"%#T\"" - -#: cp/name-lookup.c:2952 -#, fuzzy, gcc-internal-format -msgid "declaration of %qD not in a namespace surrounding %qD" -msgstr "la declaraci de \"%D\" no est en un espai de noms al voltant de \"%D\"" - -#: cp/name-lookup.c:2960 -#, fuzzy, gcc-internal-format -msgid "explicit qualification in declaration of %qD" -msgstr "qualificadors de tipus duplicats en la declaraci %s" - -#: cp/name-lookup.c:3003 -#, fuzzy, gcc-internal-format -msgid "%qD should have been declared inside %qD" -msgstr "\"%D\" deuria ser declarat dintre de \"%D\"" - -#: cp/name-lookup.c:3048 -#, fuzzy, gcc-internal-format -msgid "%qD attribute requires a single NTBS argument" -msgstr "l'atribut \"%s\" requereix una constant entera com argument" - -#: cp/name-lookup.c:3055 -#, gcc-internal-format -msgid "%qD attribute is meaningless since members of the anonymous namespace get local symbols" -msgstr "" - -#: cp/name-lookup.c:3064 cp/name-lookup.c:3433 -#, fuzzy, gcc-internal-format -msgid "%qD attribute directive ignored" -msgstr "s'ignora la directiva d'atribut \"%s\"" - -#: cp/name-lookup.c:3109 -#, fuzzy, gcc-internal-format -msgid "namespace alias %qD not allowed here, assuming %qD" -msgstr "no es permet aqu l'alies de l'espai de noms \"%D\", assumint que s \"%D\"" - -#: cp/name-lookup.c:3421 -#, gcc-internal-format -msgid "strong using only meaningful at namespace scope" -msgstr "" - -#: cp/name-lookup.c:3425 -#, gcc-internal-format -msgid "current namespace %qD does not enclose strongly used namespace %qD" -msgstr "" - -#: cp/name-lookup.c:4318 -#, fuzzy, gcc-internal-format -msgid "%q+D is not a function," -msgstr "\"%D\" no s una funci," - -#: cp/name-lookup.c:4319 -#, fuzzy, gcc-internal-format -msgid " conflict with %q+D" -msgstr " t conflicte amb \"%D\"" - -#: cp/name-lookup.c:4752 -#, gcc-internal-format -msgid "argument dependent lookup finds %q+D" -msgstr "" - -#: cp/name-lookup.c:5184 -#, gcc-internal-format -msgid "XXX entering pop_everything ()\n" -msgstr "" - -#: cp/name-lookup.c:5193 -#, gcc-internal-format -msgid "XXX leaving pop_everything ()\n" -msgstr "" - -#: cp/parser.c:451 -#, gcc-internal-format -msgid "identifier %<%s%> will become a keyword in C++0x" -msgstr "" - -#: cp/parser.c:2066 -#, fuzzy, gcc-internal-format -msgid "%<#pragma%> is not allowed here" -msgstr "ja s'ha desat #pragma %s" - -#: cp/parser.c:2096 -#, fuzzy, gcc-internal-format -msgid "%<%E::%E%> has not been declared" -msgstr "\"%#D\" no pot ser declarat" - -#: cp/parser.c:2099 -#, fuzzy, gcc-internal-format -msgid "%<::%E%> has not been declared" -msgstr "\"%#D\" no pot ser declarat" - -#: cp/parser.c:2102 -#, fuzzy, gcc-internal-format -msgid "request for member %qE in non-class type %qT" -msgstr "sollicitud pel membre \"%D\" en \"%E\", el qual s del tipus no agregat \"%T\"" - -#: cp/parser.c:2105 -#, fuzzy, gcc-internal-format -msgid "%<%T::%E%> has not been declared" -msgstr "\"%#D\" no pot ser declarat" - -#: cp/parser.c:2108 -#, fuzzy, gcc-internal-format -msgid "%qE has not been declared" -msgstr "\"%#D\" no pot ser declarat" - -#: cp/parser.c:2111 -#, gcc-internal-format -msgid "%<%E::%E%> %s" -msgstr "" - -#: cp/parser.c:2113 -#, fuzzy, gcc-internal-format -msgid "%<::%E%> %s" -msgstr "accs \"%D\"" - -#: cp/parser.c:2115 -#, fuzzy, gcc-internal-format -msgid "%qE %s" -msgstr "%s: %s" - -#: cp/parser.c:2151 -#, fuzzy, gcc-internal-format -msgid "ISO C++ does not support %" -msgstr "ISO C++ no dna suport a \"long long\"" - -#: cp/parser.c:2171 -#, fuzzy, gcc-internal-format -msgid "duplicate %qs" -msgstr "\"%s\" duplicat" - -#: cp/parser.c:2214 -#, fuzzy, gcc-internal-format -msgid "new types may not be defined in a return type" -msgstr "new no pot ser aplicat a un tipus de referncia" - -#: cp/parser.c:2215 -#, fuzzy, gcc-internal-format -msgid "(perhaps a semicolon is missing after the definition of %qT)" -msgstr "manca punt i coma desprs de la declaraci de \"%T\"" - -#: cp/parser.c:2234 cp/parser.c:4077 cp/pt.c:5443 -#, fuzzy, gcc-internal-format -msgid "%qT is not a template" -msgstr "\"%T\" no s un patr" - -#: cp/parser.c:2236 -#, fuzzy, gcc-internal-format -msgid "%qE is not a template" -msgstr "\"%T\" no s un patr" - -#: cp/parser.c:2238 -#, fuzzy, gcc-internal-format -msgid "invalid template-id" -msgstr "rotaci de insn no vlida" - -#: cp/parser.c:2267 -#, fuzzy, gcc-internal-format -msgid "%s cannot appear in a constant-expression" -msgstr "desbordament en la constant implcita" - -#: cp/parser.c:2292 -#, fuzzy, gcc-internal-format -msgid "invalid use of template-name %qE without an argument list" -msgstr "s no vlid del nom de patr \"%E\" en un declarador" - -#: cp/parser.c:2294 -#, fuzzy, gcc-internal-format -msgid "invalid use of destructor %qD as a type" -msgstr "s no vlid de \"restrict\"" - -#. Something like 'unsigned A a;' -#: cp/parser.c:2297 -#, fuzzy, gcc-internal-format -msgid "invalid combination of multiple type-specifiers" -msgstr "definici no vlida del tipus qualificat \"%T\"" - -#. Issue an error message. -#: cp/parser.c:2301 -#, fuzzy, gcc-internal-format -msgid "%qE does not name a type" -msgstr "\"%T\" no s un tipus de classe" - -#: cp/parser.c:2333 -#, fuzzy, gcc-internal-format -msgid "(perhaps % was intended)" -msgstr " (usi \"typename %T::%D\" si aix s el que volia)" - -#: cp/parser.c:2348 -#, fuzzy, gcc-internal-format -msgid "%qE in namespace %qE does not name a type" -msgstr "\"%T\" no s un tipus de classe" - -#: cp/parser.c:2351 -#, fuzzy, gcc-internal-format -msgid "%qE in class %qT does not name a type" -msgstr "\"%T\" no s un tipus de classe" - -#: cp/parser.c:3160 -#, gcc-internal-format -msgid "ISO C++ forbids braced-groups within expressions" -msgstr "ISO C++ prohibeix grups de parntesis dintre de les expressions" - -#: cp/parser.c:3171 -#, fuzzy, gcc-internal-format -msgid "statement-expressions are not allowed outside functions nor in template-argument lists" -msgstr "un grup de claus dintre d'una expressi noms es permet dintre d'una funci" - -#: cp/parser.c:3229 -#, fuzzy, gcc-internal-format -msgid "% may not be used in this context" -msgstr "\"%D\" no es va declarar en aquest mbit" - -#: cp/parser.c:3412 -#, fuzzy, gcc-internal-format -msgid "local variable %qD may not appear in this context" -msgstr "\"%D\" no es va declarar en aquest mbit" - -#: cp/parser.c:3711 -#, gcc-internal-format -msgid "scope %qT before %<~%> is not a class-name" -msgstr "" - -#: cp/parser.c:3812 -#, fuzzy, gcc-internal-format -msgid "declaration of %<~%T%> as member of %qT" -msgstr "la declaraci de \"%s\" obscurece a un membre de \"this\"" - -#: cp/parser.c:3826 -#, fuzzy, gcc-internal-format -msgid "typedef-name %qD used as destructor declarator" -msgstr "l'identificador de patr \"%D\" s'usa com un declarador" - -#: cp/parser.c:4480 -#, fuzzy, gcc-internal-format -msgid "ISO C++ forbids compound-literals" -msgstr "ISO C++ prohibeix literals composats" - -#: cp/parser.c:4837 -#, fuzzy, gcc-internal-format -msgid "%qE does not have class type" -msgstr "\"%T\" no s un tipus de classe" - -#: cp/parser.c:4920 cp/typeck.c:1978 -#, fuzzy, gcc-internal-format -msgid "invalid use of %qD" -msgstr "s no vlid de \"%D\"" - -#: cp/parser.c:5480 -#, gcc-internal-format -msgid "array bound forbidden after parenthesized type-id" -msgstr "" - -#: cp/parser.c:5481 -#, gcc-internal-format -msgid "try removing the parentheses around the type-id" -msgstr "" - -#: cp/parser.c:5671 -#, fuzzy, gcc-internal-format -msgid "expression in new-declarator must have integral or enumeration type" -msgstr "la grandria de la matriu nova ha de tenir un tipus integral" - -#: cp/parser.c:5860 -#, gcc-internal-format -msgid "use of old-style cast" -msgstr "s de la conversi d'estil antic" - -#: cp/parser.c:5986 -#, gcc-internal-format -msgid "%H%<>>%> operator will be treated as two right angle brackets in C++0x" -msgstr "" - -#: cp/parser.c:5989 -#, fuzzy, gcc-internal-format -msgid "suggest parentheses around %<>>%> expression" -msgstr "es suggereixen parntesi al voltant de && dintre de ||" - -#: cp/parser.c:6793 -#, fuzzy, gcc-internal-format -msgid "case label %qE not within a switch statement" -msgstr "l'etiqueta case \"%E\" no es troba dintre d'una declaraci switch" - -#: cp/parser.c:6922 -#, gcc-internal-format -msgid "% without a previous %" -msgstr "" - -#: cp/parser.c:7208 -#, gcc-internal-format -msgid "suggest a space before %<;%> or explicit braces around empty body in %<%s%> statement" -msgstr "" - -#: cp/parser.c:7468 -#, gcc-internal-format -msgid "ISO C++ forbids computed gotos" -msgstr "ISO C++ prohibeix gotos calculats" - -#: cp/parser.c:7608 -#, gcc-internal-format -msgid "extra %<;%>" -msgstr "" - -#: cp/parser.c:7825 -#, gcc-internal-format -msgid "%<__label__%> not at the beginning of a block" -msgstr "" - -#: cp/parser.c:7958 -#, gcc-internal-format -msgid "mixing declarations and function-definitions is forbidden" -msgstr "" - -#: cp/parser.c:8090 -#, gcc-internal-format -msgid "% used outside of class" -msgstr "" - -#: cp/parser.c:8244 -#, fuzzy, gcc-internal-format -msgid "class definition may not be declared a friend" -msgstr "la funci \"%D\" no pot ser declarada friend" - -#: cp/parser.c:8308 cp/parser.c:15155 -#, gcc-internal-format -msgid "templates may not be %" -msgstr "" - -#: cp/parser.c:8775 -#, gcc-internal-format -msgid "only constructors take base initializers" -msgstr "" - -#: cp/parser.c:8795 -#, fuzzy, gcc-internal-format -msgid "cannot expand initializer for member %<%D%>" -msgstr "falta e l'inicialitzador pel membre \"%D\"" - -#: cp/parser.c:8847 -#, fuzzy, gcc-internal-format -msgid "anachronistic old-style base class initializer" -msgstr "inicialitzador de classe base d'estil antic anacrnic" - -#: cp/parser.c:8892 -#, gcc-internal-format -msgid "keyword % not allowed in this context (a qualified member initializer is implicitly a type)" -msgstr "" - -#. Warn that we do not support `export'. -#: cp/parser.c:9237 -#, fuzzy, gcc-internal-format -msgid "keyword % not implemented, and will be ignored" -msgstr "la paraula clau \"export\" no est implementada, i ser ignorada" - -#: cp/parser.c:9482 cp/parser.c:9583 -#, fuzzy, gcc-internal-format -msgid "template parameter pack %qD cannot have a default argument" -msgstr "\"%D\" no pot tenir arguments per omissi" - -#: cp/parser.c:9485 cp/parser.c:9586 -#, fuzzy, gcc-internal-format -msgid "template parameter packs cannot have default arguments" -msgstr "els parmetres del patr no poden ser friends" - -#. Otherwise, emit an error about the invalid digraph, but continue -#. parsing because we got our argument list. -#: cp/parser.c:9723 -#, fuzzy, gcc-internal-format -msgid "%<<::%> cannot begin a template-argument list" -msgstr "l'objecte \"%E\" no es pot usar com un argument de patr" - -#: cp/parser.c:9724 -#, gcc-internal-format -msgid "%<<:%> is an alternate spelling for %<[%>. Insert whitespace between %<<%> and %<::%>" -msgstr "" - -#: cp/parser.c:9731 -#, gcc-internal-format -msgid "(if you use -fpermissive G++ will accept your code)" -msgstr "" - -#: cp/parser.c:9804 -#, fuzzy, gcc-internal-format -msgid "parse error in template argument list" -msgstr "l'objecte \"%E\" no es pot usar com un argument de patr" - -#. Explain what went wrong. -#: cp/parser.c:9917 -#, fuzzy, gcc-internal-format -msgid "non-template %qD used as template" -msgstr "s'usa un no-patr com patr" - -#: cp/parser.c:9918 -#, fuzzy, gcc-internal-format -msgid "use %<%T::template %D%> to indicate that it is a template" -msgstr "identificador de patr \"%D\" en la declaraci del patr primari" - -#: cp/parser.c:10441 -#, gcc-internal-format -msgid "template specialization with C linkage" -msgstr "especialitzaci de patr amb enlla C" - -#: cp/parser.c:11032 -#, fuzzy, gcc-internal-format -msgid "using % outside of template" -msgstr "usant \"typename\" fora de la plantilla" - -#: cp/parser.c:11191 -#, fuzzy, gcc-internal-format -msgid "declaration %qD does not declare anything" -msgstr "la declaraci no declara res" - -#: cp/parser.c:11275 -#, fuzzy, gcc-internal-format -msgid "attributes ignored on uninstantiated type" -msgstr "operaci no vlida en tipus no instanciat" - -#: cp/parser.c:11279 -#, fuzzy, gcc-internal-format -msgid "attributes ignored on template instantiation" -msgstr "classe d'emmagatzematge \"%D\" aplicada a la instanciaci d'un patr" - -#: cp/parser.c:11284 -#, gcc-internal-format -msgid "attributes ignored on elaborated-type-specifier that is not a forward declaration" -msgstr "" - -#: cp/parser.c:11406 -#, gcc-internal-format -msgid "comma at end of enumerator list" -msgstr "coma al final de la llista de numeradors" - -#: cp/parser.c:11498 -#, fuzzy, gcc-internal-format -msgid "%qD is not a namespace-name" -msgstr "\"%D\" no s un nom d'espai" - -#: cp/parser.c:11599 -#, fuzzy, gcc-internal-format -msgid "% definition is not allowed here" -msgstr "no es permet aqu l'alies de l'espai de noms \"%D\", assumint que s \"%D\"" - -#. [namespace.udecl] -#. -#. A using declaration shall not name a template-id. -#: cp/parser.c:11738 -#, fuzzy, gcc-internal-format -msgid "a template-id may not appear in a using-declaration" -msgstr "no es permet l'espai de noms \"%D\" en la declaraci d's" - -#: cp/parser.c:12094 -#, gcc-internal-format -msgid "an asm-specification is not allowed on a function-definition" -msgstr "" - -#: cp/parser.c:12096 -#, fuzzy, gcc-internal-format -msgid "attributes are not allowed on a function-definition" -msgstr "la variable de registre global segueix a una definici de funci" - -#: cp/parser.c:12229 -#, fuzzy, gcc-internal-format -msgid "initializer provided for function" -msgstr "es va especificar un inicialitzador per a la funci no-membre \"%D\"" - -#: cp/parser.c:12249 -#, fuzzy, gcc-internal-format -msgid "attributes after parenthesized initializer ignored" -msgstr "atributs en el declarador de parmetres de matriu ignorats" - -#: cp/parser.c:12630 cp/pt.c:8772 -#, fuzzy, gcc-internal-format -msgid "array bound is not an integer constant" -msgstr "el subindici de la matriu no s un enter" - -#: cp/parser.c:12739 -#, fuzzy, gcc-internal-format -msgid "%<%T::%E%> is not a type" -msgstr "\"%D::%D\" no s un patr" - -#: cp/parser.c:12765 -#, fuzzy, gcc-internal-format -msgid "invalid use of constructor as a template" -msgstr "s no vlid del patr \"%D\"" - -#: cp/parser.c:12766 -#, gcc-internal-format -msgid "use %<%T::%D%> instead of %<%T::%D%> to name the constructor in a qualified name" -msgstr "" - -#: cp/parser.c:12938 -#, fuzzy, gcc-internal-format -msgid "%qD is a namespace" -msgstr "\"%D\" s un nom d'espai" - -#: cp/parser.c:13013 -#, fuzzy, gcc-internal-format -msgid "duplicate cv-qualifier" -msgstr "valor d'un case duplicat" - -#: cp/parser.c:13600 -#, fuzzy, gcc-internal-format -msgid "file ends in default argument" -msgstr "%Hlectura de final de fitxer dintre de l'argument per defecte" - -#: cp/parser.c:13673 -#, fuzzy, gcc-internal-format -msgid "deprecated use of default argument for parameter of non-function" -msgstr "argument per omissi donat per al parmetre %d de \"%#D\"" - -#: cp/parser.c:13676 -#, fuzzy, gcc-internal-format -msgid "default arguments are only permitted for function parameters" -msgstr "argument per omissi donat per al parmetre %d de \"%#D\"" - -#: cp/parser.c:13877 -#, gcc-internal-format -msgid "ISO C++ does not allow designated initializers" -msgstr "ISO C++ no permet inicialitzadors designats" - -#: cp/parser.c:14477 -#, fuzzy, gcc-internal-format -msgid "invalid class name in declaration of %qD" -msgstr "declaraci del patr membre \"%D\" no vlida" - -#: cp/parser.c:14489 -#, fuzzy, gcc-internal-format -msgid "declaration of %qD in namespace %qD which does not enclose %qD" -msgstr "declaraci de \"%D\" en \"%D\" la qual no inclou a \"%D\"" - -#: cp/parser.c:14492 -#, fuzzy, gcc-internal-format -msgid "declaration of %qD in %qD which does not enclose %qD" -msgstr "declaraci de \"%D\" en \"%D\" la qual no inclou a \"%D\"" - -#: cp/parser.c:14505 -#, fuzzy, gcc-internal-format -msgid "extra qualification ignored" -msgstr "s'ignora la qualificaci extra \"%T::\" en el membre \"%D\"" - -#: cp/parser.c:14516 -#, fuzzy, gcc-internal-format -msgid "an explicit specialization must be preceded by %