diff options
author | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-03-06 20:36:03 +0000 |
---|---|---|
committer | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-03-06 20:36:03 +0000 |
commit | e4ab123c32e6ee2064f01f5bb477bfaca438c20f (patch) | |
tree | 45c6c5ff8fa819ab554de69d49403a43f8de5ecb | |
parent | 692323c3112b3b579a1634758842ede7c416f94c (diff) | |
download | gcc-e4ab123c32e6ee2064f01f5bb477bfaca438c20f.tar.gz |
2011-03-06 Basile Starynkevitch <basile@starynkevitch.net>
MELT branch merged with trunk rev 170715 using svnmerge
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@170721 138bc75d-0d04-0410-961f-82ee72b054a4
201 files changed, 10915 insertions, 7495 deletions
diff --git a/ChangeLog b/ChangeLog index 8005328ac1a..b066896d395 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,22 @@ +2011-03-02 Sebastian Pop <sebastian.pop@amd.com> + + * configure.ac: Adjust test of with_ppl. + * configure: Regenerated. + +2011-03-02 Kai Tietz <ktietz@redhat.com> + + * MAINTAINERS: Adjust my e-mail address. + +2011-03-02 Sebastian Pop <sebastian.pop@amd.com> + + * configure.ac: Add -lpwl to ppllibs. + * configure: Regenerated. + +2011-03-02 Sebastian Pop <sebastian.pop@amd.com> + + * config/cloog.m4: Add -lisl to clooglibs. + * configure: Regenerated. + 2011-02-24 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com> * MAINTAINERS (CPU Port maintainers): Add self. diff --git a/ChangeLog.MELT b/ChangeLog.MELT index 049af5c5be6..55593ecd089 100644 --- a/ChangeLog.MELT +++ b/ChangeLog.MELT @@ -1,4 +1,8 @@ +2011-03-06 Basile Starynkevitch <basile@starynkevitch.net> + + MELT branch merged with trunk rev 170715 using svnmerge + 2011-02-28 Basile Starynkevitch <basile@starynkevitch.net> MELT branch merged with trunk rev 170526 using svnmerge diff --git a/MAINTAINERS b/MAINTAINERS index 65a07a6110d..dc17ba621f4 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -127,7 +127,7 @@ VMS Douglas Rupp rupp@gnat.com VMS Tristan Gingold gingold@adacore.com VxWorks ports Nathan Sidwell nathan@codesourcery.com windows, cygwin, mingw Christopher Faylor cgf@gcc.gnu.org -windows, cygwin, mingw Kai Tietz kai.tietz@onevision.com +windows, cygwin, mingw Kai Tietz ktietz@redhat.com windows, cygwin, mingw Dave Korn dave.korn.cygwin@gmail.com Language Front Ends Maintainers diff --git a/config/ChangeLog b/config/ChangeLog index ee4c699b1db..2d8d573ba25 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,9 @@ +2011-03-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> + Eric Blake <eblake@redhat.com> + + * override.m4: Error out if a buggy M4 was detected, to + avoid spurious diffs in generated files. + 2011-01-25 Jakub Jelinek <jakub@redhat.com> * cloog.m4 (CLOOG_REQUESTED): Use $2 if --without-cloog. diff --git a/config/cloog.m4 b/config/cloog.m4 index ec8b46d244e..e95b98d3147 100644 --- a/config/cloog.m4 +++ b/config/cloog.m4 @@ -179,7 +179,7 @@ AC_DEFUN([CLOOG_FIND_FLAGS], ;; "ISL") clooginc="${clooginc} ${_cloogorginc}" - clooglibs="${clooglibs} -lcloog-isl" + clooglibs="${clooglibs} -lcloog-isl -lisl" cloog_org=yes ;; "PPL") diff --git a/config/override.m4 b/config/override.m4 index fc2d5272d74..52bd1c3d1b8 100644 --- a/config/override.m4 +++ b/config/override.m4 @@ -48,6 +48,12 @@ _GCC_AUTOCONF_VERSION_CHECK ]) +dnl Ensure we do not use a buggy M4. +m4_if(m4_index([..wi.d.], [.d.]), [-1], + [m4_fatal(m4_do([m4 with buggy strstr detected. Please install +GNU M4 1.4.16 or newer and set the M4 environment variable]))]) + + dnl Fix 2.64 cross compile detection for AVR and RTEMS dnl by not trying to compile fopen. m4_if(m4_defn([m4_PACKAGE_VERSION]), [2.64], diff --git a/configure b/configure index 8edb12ca08a..4b0347c5842 100755 --- a/configure +++ b/configure @@ -5660,8 +5660,9 @@ fi # Check for PPL -ppllibs=" -lppl_c -lppl -lgmpxx" +ppllibs= pplinc= +pwllib= # Check whether --with-ppl was given. @@ -5682,53 +5683,111 @@ if test "${with_ppl_lib+set}" = set; then : fi +# Check whether --enable-ppl-version-check was given. +if test "${enable_ppl_version_check+set}" = set; then : + enableval=$enable_ppl_version_check; +fi + + case $with_ppl in - no) - ppllibs= - ;; - "" | yes) + yes | no | "") ;; *) - ppllibs="-L$with_ppl/lib -lppl_c -lppl -lgmpxx" + ppllibs="-L$with_ppl/lib" pplinc="-I$with_ppl/include $pplinc" + if test -d "$with_ppl/lib" && test -d "$with_ppl/include"; then + with_ppl=yes + else + as_fn_error "cannot find directories \"$with_ppl/lib\" or \"$with_ppl/include\"" "$LINENO" 5 + fi ;; esac -if test "x$with_ppl_include" != x; then + +if test x"$with_ppl_include" != x; then pplinc="-I$with_ppl_include $pplinc" + with_ppl=yes fi + if test "x$with_ppl_lib" != x; then - ppllibs="-L$with_ppl_lib -lppl_c -lppl -lgmpxx" + ppllibs="-L$with_ppl_lib" + with_ppl=yes fi -if test "x$with_ppl$with_ppl_include$with_ppl_lib" = x && test -d ${srcdir}/ppl; then - ppllibs='-L$$r/$(HOST_SUBDIR)/ppl/interfaces/C/'"$lt_cv_objdir"' -L$$r/$(HOST_SUBDIR)/ppl/src/'"$lt_cv_objdir"' -lppl_c -lppl -lgmpxx ' + +if test x"$with_ppl$with_ppl_include$with_ppl_lib" = x && test -d ${srcdir}/ppl; then + if test x"$enable_watchdog" = xyes; then + pwllib="-lpwl" + fi + ppllibs='-L$$r/$(HOST_SUBDIR)/ppl/interfaces/C/'"$lt_cv_objdir"' -L$$r/$(HOST_SUBDIR)/ppl/src/'"$lt_cv_objdir" pplinc='-I$$r/$(HOST_SUBDIR)/ppl/src -I$$r/$(HOST_SUBDIR)/ppl/interfaces/C ' enable_ppl_version_check=no + with_ppl=yes fi -# Check whether --enable-ppl-version-check was given. -if test "${enable_ppl_version_check+set}" = set; then : - enableval=$enable_ppl_version_check; ENABLE_PPL_CHECK=$enableval +if test "x$with_ppl" != xno; then + if test "x$pwllib" = x; then + saved_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $ppllibs" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PWL_handle_timeout in -lpwl" >&5 +$as_echo_n "checking for PWL_handle_timeout in -lpwl... " >&6; } +if test "${ac_cv_lib_pwl_PWL_handle_timeout+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lpwl $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char PWL_handle_timeout (); +int +main () +{ +return PWL_handle_timeout (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_pwl_PWL_handle_timeout=yes else - ENABLE_PPL_CHECK=yes + ac_cv_lib_pwl_PWL_handle_timeout=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pwl_PWL_handle_timeout" >&5 +$as_echo "$ac_cv_lib_pwl_PWL_handle_timeout" >&6; } +if test "x$ac_cv_lib_pwl_PWL_handle_timeout" = x""yes; then : + pwllib="-lpwl" fi + LDFLAGS="$saved_LDFLAGS" + fi -if test "x$with_ppl" != "xno" -a "${ENABLE_PPL_CHECK}" = "yes"; then - saved_CFLAGS="$CFLAGS" - CFLAGS="$CFLAGS $pplinc $gmpinc" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for version 0.11 (or later revision) of PPL" >&5 -$as_echo_n "checking for version 0.11 (or later revision) of PPL... " >&6; } - cat confdefs.h - <<_ACEOF >conftest.$ac_ext + ppllibs="$ppllibs -lppl_c -lppl $pwllib -lgmpxx" + + if test "$enable_ppl_version_check" != no; then + saved_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS $pplinc $gmpinc" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for version 0.11 (revision 0 or later) of PPL" >&5 +$as_echo_n "checking for version 0.11 (revision 0 or later) of PPL... " >&6; } + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include "ppl_c.h" int main () { - #if PPL_VERSION_MAJOR != 0 || PPL_VERSION_MINOR < 11 - choke me - #endif - if (ppl_io_asprint_Constraint((void*)0, (void*)0)) return 0; + #if PPL_VERSION_MAJOR != 0 || PPL_VERSION_MINOR < 11 + choke me + #endif + if (ppl_io_asprint_Constraint((void*)0, (void*)0)) return 0; ; return 0; @@ -5742,7 +5801,8 @@ else $as_echo "no" >&6; }; ppllibs= ; pplinc= ; with_ppl=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - CFLAGS="$saved_CFLAGS" + CFLAGS="$saved_CFLAGS" + fi fi # Flags needed for PPL @@ -5964,7 +6024,7 @@ $as_echo "$gcc_cv_cloog_type" >&6; } ;; "ISL") clooginc="${clooginc} ${_cloogorginc}" - clooglibs="${clooglibs} -lcloog-isl" + clooglibs="${clooglibs} -lcloog-isl -lisl" cloog_org=yes ;; "PPL") diff --git a/configure.ac b/configure.ac index ca7213d0da4..ed64dcea404 100644 --- a/configure.ac +++ b/configure.ac @@ -1621,8 +1621,9 @@ AC_ARG_WITH(boot-ldflags, AC_SUBST(poststage1_ldflags) # Check for PPL -ppllibs=" -lppl_c -lppl -lgmpxx" +ppllibs= pplinc= +pwllib= AC_ARG_WITH(ppl, [AS_HELP_STRING([--with-ppl=PATH], @@ -1636,46 +1637,66 @@ AC_ARG_WITH(ppl-lib, [AS_HELP_STRING([--with-ppl-lib=PATH], [specify directory for the installed PPL library])]) -case $with_ppl in - no) - ppllibs= - ;; - "" | yes) +AC_ARG_ENABLE(ppl-version-check, +[AS_HELP_STRING([--disable-ppl-version-check], + [disable check for PPL version])]) + +case $with_ppl in + yes | no | "") ;; *) - ppllibs="-L$with_ppl/lib -lppl_c -lppl -lgmpxx" + ppllibs="-L$with_ppl/lib" pplinc="-I$with_ppl/include $pplinc" + if test -d "$with_ppl/lib" && test -d "$with_ppl/include"; then + with_ppl=yes + else + AC_MSG_ERROR([cannot find directories "$with_ppl/lib" or "$with_ppl/include"]) + fi ;; esac -if test "x$with_ppl_include" != x; then + +if test x"$with_ppl_include" != x; then pplinc="-I$with_ppl_include $pplinc" + with_ppl=yes fi + if test "x$with_ppl_lib" != x; then - ppllibs="-L$with_ppl_lib -lppl_c -lppl -lgmpxx" + ppllibs="-L$with_ppl_lib" + with_ppl=yes fi -if test "x$with_ppl$with_ppl_include$with_ppl_lib" = x && test -d ${srcdir}/ppl; then - ppllibs='-L$$r/$(HOST_SUBDIR)/ppl/interfaces/C/'"$lt_cv_objdir"' -L$$r/$(HOST_SUBDIR)/ppl/src/'"$lt_cv_objdir"' -lppl_c -lppl -lgmpxx ' + +if test x"$with_ppl$with_ppl_include$with_ppl_lib" = x && test -d ${srcdir}/ppl; then + if test x"$enable_watchdog" = xyes; then + pwllib="-lpwl" + fi + ppllibs='-L$$r/$(HOST_SUBDIR)/ppl/interfaces/C/'"$lt_cv_objdir"' -L$$r/$(HOST_SUBDIR)/ppl/src/'"$lt_cv_objdir" pplinc='-I$$r/$(HOST_SUBDIR)/ppl/src -I$$r/$(HOST_SUBDIR)/ppl/interfaces/C ' enable_ppl_version_check=no + with_ppl=yes fi -AC_ARG_ENABLE(ppl-version-check, -[AS_HELP_STRING([--disable-ppl-version-check], - [disable check for PPL version])], -ENABLE_PPL_CHECK=$enableval, -ENABLE_PPL_CHECK=yes) +if test "x$with_ppl" != xno; then + if test "x$pwllib" = x; then + saved_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $ppllibs" + AC_CHECK_LIB(pwl,PWL_handle_timeout,[pwllib="-lpwl"]) + LDFLAGS="$saved_LDFLAGS" + fi -if test "x$with_ppl" != "xno" -a "${ENABLE_PPL_CHECK}" = "yes"; then - saved_CFLAGS="$CFLAGS" - CFLAGS="$CFLAGS $pplinc $gmpinc" - AC_MSG_CHECKING([for version 0.11 (or later revision) of PPL]) - AC_TRY_COMPILE([#include "ppl_c.h"],[ - #if PPL_VERSION_MAJOR != 0 || PPL_VERSION_MINOR < 11 - choke me - #endif - if (ppl_io_asprint_Constraint((void*)0, (void*)0)) return 0; - ], [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no]); ppllibs= ; pplinc= ; with_ppl=no ]) - CFLAGS="$saved_CFLAGS" + ppllibs="$ppllibs -lppl_c -lppl $pwllib -lgmpxx" + + if test "$enable_ppl_version_check" != no; then + saved_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS $pplinc $gmpinc" + AC_MSG_CHECKING([for version 0.11 (revision 0 or later) of PPL]) + AC_TRY_COMPILE([#include "ppl_c.h"],[ + #if PPL_VERSION_MAJOR != 0 || PPL_VERSION_MINOR < 11 + choke me + #endif + if (ppl_io_asprint_Constraint((void*)0, (void*)0)) return 0; + ], [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no]); ppllibs= ; pplinc= ; with_ppl=no ]) + CFLAGS="$saved_CFLAGS" + fi fi # Flags needed for PPL diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 1a11db70186..014c4783493 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,7 @@ +2011-03-05 Joseph Myers <joseph@codesourcery.com> + + * gennews (files): Add files for GCC 4.6. + 2011-01-26 Dave Korn <dave.korn.cygwin@gmail.com> * patch_tester.sh (nopristinecache): New shell var, set according diff --git a/contrib/gennews b/contrib/gennews index 30594f06415..27c7dae4bdf 100755 --- a/contrib/gennews +++ b/contrib/gennews @@ -3,7 +3,7 @@ # Script to generate the NEWS file from online release notes. # Contributed by Joseph Myers <jsm28@cam.ac.uk>. # -# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009, 2010 +# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009, 2010, 2011 # Free Software Foundation, Inc. # This file is part of GCC. # @@ -24,6 +24,7 @@ website=http://gcc.gnu.org/ files=" + gcc-4.6/index.html gcc-4.6/changes.html gcc-4.5/index.html gcc-4.5/changes.html gcc-4.4/index.html gcc-4.4/changes.html gcc-4.3/index.html gcc-4.3/changes.html diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 543f3e4e1a1..4a418465390 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,245 @@ +2011-03-05 Jason Merrill <jason@redhat.com> + + * doc/invoke.texi (C++ Dialect Options): Document ABI v5. + +2011-03-05 Anthony Green <green@moxielogic.com> + + * config.gcc (moxie-*-elf): Add newlib-stdint.h to tmfile. + +2011-03-05 Zdenek Dvorak <ook@ucw.cz> + + PR rtl-optimization/47899 + * cfgloopmanip.c (fix_bb_placements): Fix first argument + to flow_loop_nested_p when moving the loop upward. + +2011-03-05 Richard Earnshaw <rearnsha@arm.com> + + PR target/47719 + * arm.md (movhi_insn_arch4): Accept any immediate constant. + +2011-03-05 Jakub Jelinek <jakub@redhat.com> + + PR tree-optimization/47967 + * ipa-cp.c (build_const_val): Return NULL instead of creating + VIEW_CONVERT_EXPR for mismatching sizes. + (ipcp_create_replace_map): Return NULL if build_const_val failed. + (ipcp_insert_stage): If ipcp_create_replace_map returns NULL, + give up on versioning. + +2011-03-05 Alan Modra <amodra@gmail.com> + + PR target/47986 + * config/rs6000/rs6000.c (rs6000_delegitimize_address): Handle + full cmodel medium/large lo_sum + high addresses. + +2011-03-04 Andreas Krebbel <Andreas.Krebbel@de.ibm.com> + + * config/s390/s390.c (s390_decompose_address): Reject non-literal + pool references in UNSPEC_LTREL_OFFSET. + +2011-03-04 Jan Hubicka <jh@suse.cz> + + PR lto/47497 + * lto-symtab.c (lto_cgraph_replace_node): Do not set thunk.alias. + (lto_symtab_merge_cgraph_nodes_1): Update thunk.alias pointers here. + * cgraph.h (cgraph_same_body_alias, cgraph_add_thunk): Add node pointers. + * cgraph.c (cgraph_same_body_alias_1, cgraph_same_body_alias, + cgraph_add_thunk): Add node pointers. + * lto-cgraph.c (lto_output_node): Verify that thunks&aliases are + associated to right node. + (input_node): Update use of cgraph_same_body_alias + and cgraph_add_thunk. + +2011-03-04 Changpeng Fang <changpeng.fang@amd.com> + + * config/i386/i386.opt (mprefer-avx128): New flag. + * config/i386/i386.c (ix86_preferred_simd_mode): Prefer 128-bit mode + when the flag -mprefer-avx128 is on. + +2011-03-04 Richard Sandiford <richard.sandiford@linaro.org> + + * dwarf2out.c (compare_loc_operands): Fix address handling. + +2011-03-04 Alan Modra <amodra@gmail.com> + + * tree.h (TREE_ADDRESSABLE): Update FUNCTION_DECL comment. + +2011-03-04 Richard Guenther <rguenther@suse.de> + + PR middle-end/47968 + * expmed.c (extract_bit_field_1): Prefer vector modes that + vec_extract patterns can handle. + +2011-03-04 Richard Guenther <rguenther@suse.de> + + PR middle-end/47975 + * optabs.c (optab_for_tree_code): Do not use VECTOR_MODE_P. + +2011-03-04 Richard Henderson <rth@redhat.com> + + * explow.c (emit_stack_save): Remove 'after' parameter. + (emit_stack_restore): Likewise. + * expr.h: Update to match. + * builtins.c, calls.c, stmt.c: Likewise. + * config/alpha/alpha.md, config/avr/avr.md: Likewise. + * config/mips/mips.md, config/pa/pa.md, config/vax/vax.md: Likewise. + * function.c (expand_function_end): Insert the emit_stack_save + sequence before parm_birth_insn instead of after. + +2011-03-03 Uros Bizjak <ubizjak@gmail.com> + + * config/i386/sse.md (*avx_pmaddubsw128): Fix mode of VEC_SELECT RTX. + (ssse3_pmaddubsw128): Ditto. + (ssse3_pmaddubsw): Ditto. + +2011-03-03 Steve Ellcey <sje@cup.hp.com> + + * config/ia64/t-hpux: Add $(srcdir)/unwind-c.c to LIB2ADDEH + +2011-03-03 Jakub Jelinek <jakub@redhat.com> + + PR c/47963 + * gimplify.c (omp_add_variable): Only call omp_notice_variable + on TYPE_SIZE_UNIT if it is a DECL. + + PR debug/47283 + * cfgexpand.c (expand_debug_expr) <case MEM_REF>: If MEM_REF + first operand is not is_gimple_mem_ref_addr, try to fold it. + If the operand still isn't is_gimple_mem_ref_addr, clear + MEM_EXPR on op0. + +2011-03-03 Richard Guenther <rguenther@suse.de> + + PR middle-end/47283 + * tree-ssa-alias.c (ptr_deref_may_alias_decl_p): Make code + match comment. + (refs_may_alias_p_1): For release branches return true if + we are confused by our input. + +2011-03-03 Andreas Krebbel <Andreas.Krebbel@de.ibm.com> + + * config/s390/s390.c (s390_function_value): Rename to ... + (s390_function_and_libcall_value): ... this. + (s390_function_value): New function. + (s390_libcall_value): New function. + (TARGET_FUNCTION_VALUE, TARGET_LIBCALL_VALUE): Define target hooks. + * config/s390/s390.h (FUNCTION_VALUE, LIBCALL_VALUE): Remove + target macro definitions. + * config/s390/s390-protos.h (s390_function_value): Remove prototype. + +2011-03-02 Joseph Myers <joseph@codesourcery.com> + + * config/i386/freebsd64.h (CC1_SPEC): Define. + * config/i386/linux64.h (CC1_SPEC): Define. + * config/i386/x86-64.h (CC1_SPEC): Don't define. + +2011-03-02 Anatoly Sokolov <aesok@post.ru> + + * config/stormy16/stormy16.h (REGISTER_MOVE_COST, MEMORY_MOVE_COST): + Remove. + * config/stormy16/stormy16.c: Include reload.h. + (xstormy16_memory_move_cost): New function. + (TARGET_MEMORY_MOVE_COST): Define. + +2011-03-02 Richard Sandiford <richard.sandiford@linaro.org> + + PR rtl-optimization/47925 + * cse.c (count_reg_usage): Don't ignore the SET_DEST of instructions + with side effects. Remove the more-specific check for volatile asms. + +2011-03-02 Alan Modra <amodra@gmail.com> + + PR target/47935 + * config/rs6000/predicates.md (lwa_operand): Check cmodel medium + toc relative addresses for valid offsets. + +2011-03-01 Richard Guenther <rguenther@suse.de> + + PR tree-optimization/47890 + * tree-vect-loop.c (get_initial_def_for_induction): Set + related stmt properly. + +2011-03-01 Richard Guenther <rguenther@suse.de> + + PR lto/47924 + * lto-streamer.c (lto_record_common_node): Also register + the canonical type. + +2011-03-01 Richard Guenther <rguenther@suse.de> + + PR lto/46911 + * lto-streamer-in.c (lto_input_ts_decl_common_tree_pointers): + Do not stream DECL_ABSTRACT_ORIGIN. + (lto_input_ts_block_tree_pointers): Nor BLOCK_SOURCE_LOCATION, + BLOCK_NONLOCALIZED_VARS or BLOCK_ABSTRACT_ORIGIN. + * lto-streamer-out.c (lto_output_ts_decl_common_tree_pointers): + Do not stream DECL_ABSTRACT_ORIGIN. + (lto_output_ts_block_tree_pointers): Nor BLOCK_SOURCE_LOCATION, + BLOCK_NONLOCALIZED_VARS or BLOCK_ABSTRACT_ORIGIN. + +2011-02-28 Anatoly Sokolov <aesok@post.ru> + + * config/stormy16/stormy16.h (FUNCTION_VALUE, LIBCALL_VALUE, + FUNCTION_VALUE_REGNO_P): Remove. + * config/stormy16/stormy16-protos.h (xstormy16_function_value): Remove. + * config/stormy16/stormy16.c (xstormy16_function_value): Make static. + Add 'outgoing' argument. + (xstormy16_libcall_value, xstormy16_function_value_regno_p): New + function. + (TARGET_FUNCTION_VALUE, TARGET_LIBCALL_VALUE, + TARGET_FUNCTION_VALUE_REGNO_P): Define. + +2011-02-28 Kai Tietz <kai.tietz@onevision.com> + + PR debug/28047 + * dwarf2out.c (file_table_eq): Use filename_cmp instead of strcmp. + (lookup_filename): Likewise. + * final.c (remap_debug_filename): Use filename_ncmp instead of strncmp. + +2011-02-28 Bernd Schmidt <bernds@codesourcery.com> + Jakub Jelinek <jakub@redhat.com> + + PR middle-end/47893 + * rtl.h (ASLK_REDUCE_ALIGN, ASLK_RECORD_PAD): Define. + (assign_stack_local_1): Change last argument type to int. + * function.c (assign_stack_local_1): Replace reduce_alignment_ok + argument with kind. If bit ASLK_RECORD_PAD is not set in it, + don't record padding space into frame_space_list nor use those areas. + (assign_stack_local): Adjust caller. + (assign_stack_temp_for_type): Call assign_stack_local_1 instead + of assign_stack_local, pass 0 as last argument. + * caller-save.c (setup_save_areas): Adjust assign_stack_local_1 + callers. + +2011-02-28 Jakub Jelinek <jakub@redhat.com> + + PR debug/47283 + * cfgexpand.c (convert_debug_memory_address): Add AS parameter. + Use target address_mode and pointer_mode hooks instead of hardcoded + Pmode and ptr_mode. Handle some simple cases of extending if + POINTERS_EXTEND_UNSIGNED < 0. + (expand_debug_expr) <case MEM_REF, INDIRECT_REF, TARGET_MEM_REF>: + Call convert_debug_memory_address. + (expand_debug_expr) <case ADDR_EXPR>: Pass as to + convert_debug_memory_address. + + PR middle-end/46790 + * configure.ac (HAVE_LD_EH_GC_SECTIONS_BUG): New test. + * configure: Regenerated. + * config.in: Regenerated. + * varasm.c (default_function_section): Return NULL + if HAVE_LD_EH_GC_SECTIONS_BUG and decl has implicit section name. + +2011-02-28 Martin Jambor <mjambor@suse.cz> + + * ipa-inline.c (cgraph_decide_inlining_of_small_functions): Fix + the description to match the printed values. + +2011-02-28 Richard Guenther <rguenther@suse.de> + + * tree-inline.c (tree_function_versioning): Set BLOCK_SUPERCONTEXT + of the copied scope tree. + 2011-02-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> * doc/extend.texi (Function Attributes): Avoid deeply (and @@ -41,7 +283,7 @@ FreeBSD 6 and later. Generally use cpu generic. 2011-02-25 Gerald Pfeifer <gerald@pfeifer.com> - + * doc/cpp.texi: Update copyright years. 2011-02-25 Sebastien Bourdeauducq <sebastien@milkymist.org> @@ -56,8 +298,7 @@ * config/lm32/lm32.md (ashlsi3): Remove unused variable. * config/lm32/lm32.c (TARGET_EXCEPT_UNWIND_INFO): New. (lm32_block_move_inline): Add type cast to remove warning. - (lm32_expand_prologue): Generate fp in a way compatible with - dwarf2out. + (lm32_expand_prologue): Generate fp in a way compatible with dwarf2out. (gen_int_relational): Move declarations to start of function. 2011-02-25 Eric Botcazou <ebotcazou@adacore.com> @@ -662,10 +903,6 @@ Define nframes, mctx. Use IS_SIGHANDLER, handler_args, mctx, walk stack instead of hardcoded offsets. -2011-02-14 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> - - * go/gccgo.texi (Top, Import and Export): Fix a typo and a markup nit. - 2011-02-14 Andriy Gapon <avg@freebsd.org> PR target/45808 diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index bfc338c6688..7b5bb6d35a4 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20110228 +20110306 diff --git a/gcc/builtins.c b/gcc/builtins.c index 106b2ca10b0..3361264c4c2 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -784,7 +784,7 @@ expand_builtin_setjmp_setup (rtx buf_addr, rtx receiver_label) plus_constant (buf_addr, 2 * GET_MODE_SIZE (Pmode))); set_mem_alias_set (stack_save, setjmp_alias_set); - emit_stack_save (SAVE_NONLOCAL, &stack_save, NULL_RTX); + emit_stack_save (SAVE_NONLOCAL, &stack_save); /* If there is further processing to do, do it. */ #ifdef HAVE_builtin_setjmp_setup @@ -932,7 +932,7 @@ expand_builtin_longjmp (rtx buf_addr, rtx value) emit_clobber (gen_rtx_MEM (BLKmode, hard_frame_pointer_rtx)); emit_move_insn (hard_frame_pointer_rtx, fp); - emit_stack_restore (SAVE_NONLOCAL, stack, NULL_RTX); + emit_stack_restore (SAVE_NONLOCAL, stack); emit_use (hard_frame_pointer_rtx); emit_use (stack_pointer_rtx); @@ -1005,7 +1005,7 @@ expand_builtin_nonlocal_goto (tree exp) The non-local goto handler will then adjust it to contain the proper value and reload the argument pointer, if needed. */ emit_move_insn (hard_frame_pointer_rtx, r_fp); - emit_stack_restore (SAVE_NONLOCAL, r_sp, NULL_RTX); + emit_stack_restore (SAVE_NONLOCAL, r_sp); /* USE of hard_frame_pointer_rtx added for consistency; not clear if really needed. */ @@ -1075,7 +1075,7 @@ expand_builtin_update_setjmp_buf (rtx buf_addr) emit_insn (gen_setjmp ()); #endif - emit_stack_save (SAVE_NONLOCAL, &stack_save, NULL_RTX); + emit_stack_save (SAVE_NONLOCAL, &stack_save); } /* Expand a call to __builtin_prefetch. For a target that does not support @@ -1558,10 +1558,10 @@ expand_builtin_apply (rtx function, rtx arguments, rtx argsize) /* Save the stack with nonlocal if available. */ #ifdef HAVE_save_stack_nonlocal if (HAVE_save_stack_nonlocal) - emit_stack_save (SAVE_NONLOCAL, &old_stack_level, NULL_RTX); + emit_stack_save (SAVE_NONLOCAL, &old_stack_level); else #endif - emit_stack_save (SAVE_BLOCK, &old_stack_level, NULL_RTX); + emit_stack_save (SAVE_BLOCK, &old_stack_level); /* Allocate a block of memory onto the stack and copy the memory arguments to the outgoing arguments address. We can pass TRUE @@ -1677,10 +1677,10 @@ expand_builtin_apply (rtx function, rtx arguments, rtx argsize) /* Restore the stack. */ #ifdef HAVE_save_stack_nonlocal if (HAVE_save_stack_nonlocal) - emit_stack_restore (SAVE_NONLOCAL, old_stack_level, NULL_RTX); + emit_stack_restore (SAVE_NONLOCAL, old_stack_level); else #endif - emit_stack_restore (SAVE_BLOCK, old_stack_level, NULL_RTX); + emit_stack_restore (SAVE_BLOCK, old_stack_level); OK_DEFER_POP; diff --git a/gcc/caller-save.c b/gcc/caller-save.c index 7f7e222b430..160d2e9117d 100644 --- a/gcc/caller-save.c +++ b/gcc/caller-save.c @@ -647,7 +647,8 @@ setup_save_areas (void) saved_reg->slot = assign_stack_local_1 (regno_save_mode[regno][1], - GET_MODE_SIZE (regno_save_mode[regno][1]), 0, true); + GET_MODE_SIZE (regno_save_mode[regno][1]), 0, + ASLK_REDUCE_ALIGN); if (dump_file != NULL) fprintf (dump_file, "%d uses a new slot\n", regno); } @@ -705,7 +706,7 @@ setup_save_areas (void) regno_save_mem[i][j] = assign_stack_local_1 (regno_save_mode[i][j], GET_MODE_SIZE (regno_save_mode[i][j]), - 0, true); + 0, ASLK_REDUCE_ALIGN); /* Setup single word save area just in case... */ for (k = 0; k < j; k++) diff --git a/gcc/calls.c b/gcc/calls.c index 5297763da5f..f539f665800 100644 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -1092,7 +1092,7 @@ initialize_argument_information (int num_actuals ATTRIBUTE_UNUSED, if (*old_stack_level == 0) { - emit_stack_save (SAVE_BLOCK, old_stack_level, NULL_RTX); + emit_stack_save (SAVE_BLOCK, old_stack_level); *old_pending_adj = pending_stack_adjust; pending_stack_adjust = 0; } @@ -2488,7 +2488,7 @@ expand_call (tree exp, rtx target, int ignore) { if (old_stack_level == 0) { - emit_stack_save (SAVE_BLOCK, &old_stack_level, NULL_RTX); + emit_stack_save (SAVE_BLOCK, &old_stack_level); old_stack_pointer_delta = stack_pointer_delta; old_pending_adj = pending_stack_adjust; pending_stack_adjust = 0; @@ -2643,8 +2643,7 @@ expand_call (tree exp, rtx target, int ignore) : reg_parm_stack_space)); if (old_stack_level == 0) { - emit_stack_save (SAVE_BLOCK, &old_stack_level, - NULL_RTX); + emit_stack_save (SAVE_BLOCK, &old_stack_level); old_stack_pointer_delta = stack_pointer_delta; old_pending_adj = pending_stack_adjust; pending_stack_adjust = 0; @@ -3101,7 +3100,7 @@ expand_call (tree exp, rtx target, int ignore) if (old_stack_level) { - emit_stack_restore (SAVE_BLOCK, old_stack_level, NULL_RTX); + emit_stack_restore (SAVE_BLOCK, old_stack_level); stack_pointer_delta = old_stack_pointer_delta; pending_stack_adjust = old_pending_adj; old_stack_allocated = stack_pointer_delta - pending_stack_adjust; diff --git a/gcc/cfgexpand.c b/gcc/cfgexpand.c index ee51ba9f9c0..059c5b2725c 100644 --- a/gcc/cfgexpand.c +++ b/gcc/cfgexpand.c @@ -2292,15 +2292,21 @@ round_udiv_adjust (enum machine_mode mode, rtx mod, rtx op1) any rtl. */ static rtx -convert_debug_memory_address (enum machine_mode mode, rtx x) +convert_debug_memory_address (enum machine_mode mode, rtx x, + addr_space_t as) { enum machine_mode xmode = GET_MODE (x); #ifndef POINTERS_EXTEND_UNSIGNED - gcc_assert (mode == Pmode); + gcc_assert (mode == Pmode + || mode == targetm.addr_space.address_mode (as)); gcc_assert (xmode == mode || xmode == VOIDmode); #else - gcc_assert (mode == Pmode || mode == ptr_mode); + rtx temp; + enum machine_mode address_mode = targetm.addr_space.address_mode (as); + enum machine_mode pointer_mode = targetm.addr_space.pointer_mode (as); + + gcc_assert (mode == address_mode || mode == pointer_mode); if (GET_MODE (x) == mode || GET_MODE (x) == VOIDmode) return x; @@ -2314,7 +2320,47 @@ convert_debug_memory_address (enum machine_mode mode, rtx x) else if (!POINTERS_EXTEND_UNSIGNED) x = gen_rtx_SIGN_EXTEND (mode, x); else - gcc_unreachable (); + { + switch (GET_CODE (x)) + { + case SUBREG: + if ((SUBREG_PROMOTED_VAR_P (x) + || (REG_P (SUBREG_REG (x)) && REG_POINTER (SUBREG_REG (x))) + || (GET_CODE (SUBREG_REG (x)) == PLUS + && REG_P (XEXP (SUBREG_REG (x), 0)) + && REG_POINTER (XEXP (SUBREG_REG (x), 0)) + && CONST_INT_P (XEXP (SUBREG_REG (x), 1)))) + && GET_MODE (SUBREG_REG (x)) == mode) + return SUBREG_REG (x); + break; + case LABEL_REF: + temp = gen_rtx_LABEL_REF (mode, XEXP (x, 0)); + LABEL_REF_NONLOCAL_P (temp) = LABEL_REF_NONLOCAL_P (x); + return temp; + case SYMBOL_REF: + temp = shallow_copy_rtx (x); + PUT_MODE (temp, mode); + return temp; + case CONST: + temp = convert_debug_memory_address (mode, XEXP (x, 0), as); + if (temp) + temp = gen_rtx_CONST (mode, temp); + return temp; + case PLUS: + case MINUS: + if (CONST_INT_P (XEXP (x, 1))) + { + temp = convert_debug_memory_address (mode, XEXP (x, 0), as); + if (temp) + return gen_rtx_fmt_ee (GET_CODE (x), mode, temp, XEXP (x, 1)); + } + break; + default: + break; + } + /* Don't know how to express ptr_extend as operation in debug info. */ + return NULL; + } #endif /* POINTERS_EXTEND_UNSIGNED */ return x; @@ -2532,6 +2578,15 @@ expand_debug_expr (tree exp) } case MEM_REF: + if (!is_gimple_mem_ref_addr (TREE_OPERAND (exp, 0))) + { + tree newexp = fold_binary (MEM_REF, TREE_TYPE (exp), + TREE_OPERAND (exp, 0), + TREE_OPERAND (exp, 1)); + if (newexp) + return expand_debug_expr (newexp); + } + /* FALLTHROUGH */ case INDIRECT_REF: op0 = expand_debug_expr (TREE_OPERAND (exp, 0)); if (!op0) @@ -2558,9 +2613,16 @@ expand_debug_expr (tree exp) else as = ADDR_SPACE_GENERIC; - op0 = gen_rtx_MEM (mode, op0); + op0 = convert_debug_memory_address (targetm.addr_space.address_mode (as), + op0, as); + if (op0 == NULL_RTX) + return NULL; + op0 = gen_rtx_MEM (mode, op0); set_mem_attributes (op0, exp, 0); + if (TREE_CODE (exp) == MEM_REF + && !is_gimple_mem_ref_addr (TREE_OPERAND (exp, 0))) + set_mem_expr (op0, NULL_TREE); set_mem_addr_space (op0, as); return op0; @@ -2575,7 +2637,15 @@ expand_debug_expr (tree exp) if (!op0) return NULL; - as = TYPE_ADDR_SPACE (TREE_TYPE (exp)); + if (POINTER_TYPE_P (TREE_TYPE (exp))) + as = TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp))); + else + as = ADDR_SPACE_GENERIC; + + op0 = convert_debug_memory_address (targetm.addr_space.address_mode (as), + op0, as); + if (op0 == NULL_RTX) + return NULL; op0 = gen_rtx_MEM (mode, op0); @@ -3039,7 +3109,8 @@ expand_debug_expr (tree exp) return NULL; } - op0 = convert_debug_memory_address (mode, XEXP (op0, 0)); + as = TYPE_ADDR_SPACE (TREE_TYPE (exp)); + op0 = convert_debug_memory_address (mode, XEXP (op0, 0), as); return op0; diff --git a/gcc/cfgloopmanip.c b/gcc/cfgloopmanip.c index aa9ab66454e..3802f9cff12 100644 --- a/gcc/cfgloopmanip.c +++ b/gcc/cfgloopmanip.c @@ -1,5 +1,5 @@ /* Loop manipulation code for GNU compiler. - Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010 + Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. This file is part of GCC. @@ -174,7 +174,7 @@ fix_bb_placements (basic_block from, { sbitmap in_queue; basic_block *queue, *qtop, *qbeg, *qend; - struct loop *base_loop; + struct loop *base_loop, *target_loop; edge e; /* We pass through blocks back-reachable from FROM, testing whether some @@ -214,12 +214,14 @@ fix_bb_placements (basic_block from, /* Subloop header, maybe move the loop upward. */ if (!fix_loop_placement (from->loop_father)) continue; + target_loop = loop_outer (from->loop_father); } else { /* Ordinary basic block. */ if (!fix_bb_placement (from)) continue; + target_loop = from->loop_father; } FOR_EACH_EDGE (e, ei, from->succs) @@ -248,9 +250,12 @@ fix_bb_placements (basic_block from, && (nca == base_loop || nca != pred->loop_father)) pred = pred->loop_father->header; - else if (!flow_loop_nested_p (from->loop_father, pred->loop_father)) + else if (!flow_loop_nested_p (target_loop, pred->loop_father)) { - /* No point in processing it. */ + /* If PRED is already higher in the loop hierarchy than the + TARGET_LOOP to that we moved FROM, the change of the position + of FROM does not affect the position of PRED, so there is no + point in processing it. */ continue; } diff --git a/gcc/cgraph.c b/gcc/cgraph.c index dd7eeadc705..64d278f94c1 100644 --- a/gcc/cgraph.c +++ b/gcc/cgraph.c @@ -536,16 +536,16 @@ cgraph_node (tree decl) return node; } -/* Mark ALIAS as an alias to DECL. */ +/* Mark ALIAS as an alias to DECL. DECL_NODE is cgraph node representing + the function body is associated with (not neccesarily cgraph_node (DECL). */ static struct cgraph_node * -cgraph_same_body_alias_1 (tree alias, tree decl) +cgraph_same_body_alias_1 (struct cgraph_node *decl_node, tree alias, tree decl) { - struct cgraph_node key, *alias_node, *decl_node, **slot; + struct cgraph_node key, *alias_node, **slot; gcc_assert (TREE_CODE (decl) == FUNCTION_DECL); gcc_assert (TREE_CODE (alias) == FUNCTION_DECL); - decl_node = cgraph_node (decl); key.decl = alias; @@ -575,7 +575,7 @@ cgraph_same_body_alias_1 (tree alias, tree decl) and cgraph_node (ALIAS) transparently returns cgraph_node (DECL). */ struct cgraph_node * -cgraph_same_body_alias (tree alias, tree decl) +cgraph_same_body_alias (struct cgraph_node *decl_node, tree alias, tree decl) { #ifndef ASM_OUTPUT_DEF /* If aliases aren't supported by the assembler, fail. */ @@ -584,7 +584,7 @@ cgraph_same_body_alias (tree alias, tree decl) /*gcc_assert (!assembler_name_hash);*/ - return cgraph_same_body_alias_1 (alias, decl); + return cgraph_same_body_alias_1 (decl_node, alias, decl); } /* Add thunk alias into callgraph. The alias declaration is ALIAS and it @@ -592,7 +592,8 @@ cgraph_same_body_alias (tree alias, tree decl) See comments in thunk_adjust for detail on the parameters. */ struct cgraph_node * -cgraph_add_thunk (tree alias, tree decl, bool this_adjusting, +cgraph_add_thunk (struct cgraph_node *decl_node, tree alias, tree decl, + bool this_adjusting, HOST_WIDE_INT fixed_offset, HOST_WIDE_INT virtual_value, tree virtual_offset, tree real_alias) @@ -606,7 +607,7 @@ cgraph_add_thunk (tree alias, tree decl, bool this_adjusting, cgraph_remove_node (node); } - node = cgraph_same_body_alias_1 (alias, decl); + node = cgraph_same_body_alias_1 (decl_node, alias, decl); gcc_assert (node); gcc_checking_assert (!virtual_offset || tree_int_cst_equal (virtual_offset, @@ -2722,7 +2723,7 @@ cgraph_propagate_frequency (struct cgraph_node *node) case NODE_FREQUENCY_EXECUTED_ONCE: if (dump_file && (dump_flags & TDF_DETAILS)) fprintf (dump_file, " Called by %s that is executed once\n", - cgraph_node_name (node)); + cgraph_node_name (edge->caller)); maybe_unlikely_executed = false; if (edge->loop_nest) { @@ -2735,7 +2736,7 @@ cgraph_propagate_frequency (struct cgraph_node *node) case NODE_FREQUENCY_NORMAL: if (dump_file && (dump_flags & TDF_DETAILS)) fprintf (dump_file, " Called by %s that is normal or hot\n", - cgraph_node_name (node)); + cgraph_node_name (edge->caller)); maybe_unlikely_executed = false; maybe_executed_once = false; break; diff --git a/gcc/cgraph.h b/gcc/cgraph.h index c00418d5888..e2d2f50ca3e 100644 --- a/gcc/cgraph.h +++ b/gcc/cgraph.h @@ -559,8 +559,8 @@ struct cgraph_indirect_call_info *cgraph_allocate_init_indirect_info (void); struct cgraph_node * cgraph_get_node (const_tree); struct cgraph_node * cgraph_get_node_or_alias (const_tree); struct cgraph_node * cgraph_node (tree); -struct cgraph_node * cgraph_same_body_alias (tree, tree); -struct cgraph_node * cgraph_add_thunk (tree, tree, bool, HOST_WIDE_INT, +struct cgraph_node * cgraph_same_body_alias (struct cgraph_node *, tree, tree); +struct cgraph_node * cgraph_add_thunk (struct cgraph_node *, tree, tree, bool, HOST_WIDE_INT, HOST_WIDE_INT, tree, tree); void cgraph_remove_same_body_alias (struct cgraph_node *); struct cgraph_node *cgraph_node_for_asm (tree); diff --git a/gcc/common.opt b/gcc/common.opt index ee64698faf5..f24b562ba1f 100644 --- a/gcc/common.opt +++ b/gcc/common.opt @@ -739,13 +739,12 @@ Driver Undocumented ; in template non-type arguments of pointer type. ; ; 4: The version of the ABI that introduces unambiguous mangling of -; vector types. +; vector types. First selectable in G++ 4.5. ; ; 5: The version of the ABI that ignores attribute const/noreturn -; in function pointer mangling. -; -; 6: The version of the ABI that corrects mangling of decltype and +; in function pointer mangling, and corrects mangling of decltype and ; function parameters used in other parameters and the return type. +; First selectable in G++ 4.6. ; ; Additional positive integers will be assigned as new versions of ; the ABI become the default version of the ABI. diff --git a/gcc/config.gcc b/gcc/config.gcc index d1baea01007..bd0ad564949 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1008,7 +1008,7 @@ frv-*-*linux*) moxie-*-elf) gas=yes gnu_ld=yes - tm_file="dbxelf.h elfos.h ${tm_file}" + tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}" extra_parts="crti.o crtn.o crtbegin.o crtend.o" tmake_file="${tmake_file} moxie/t-moxie moxie/t-moxie-softfp soft-fp/t-softfp" ;; diff --git a/gcc/config.in b/gcc/config.in index f3b0eee3126..584ec65b2b7 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -1171,6 +1171,13 @@ #endif +/* Define if your linker has buggy garbage collection of sections support when + .text.startup.foo like sections are used. */ +#ifndef USED_FOR_TARGET +#undef HAVE_LD_EH_GC_SECTIONS_BUG +#endif + + /* Define if your PowerPC64 linker supports a large TOC. */ #ifndef USED_FOR_TARGET #undef HAVE_LD_LARGE_TOC diff --git a/gcc/config/alpha/alpha.md b/gcc/config/alpha/alpha.md index 04f3ff8cfe5..d6fba76f75f 100644 --- a/gcc/config/alpha/alpha.md +++ b/gcc/config/alpha/alpha.md @@ -6765,7 +6765,7 @@ /* This bit is the same as expand_builtin_longjmp. */ emit_move_insn (hard_frame_pointer_rtx, fp); emit_move_insn (pv, lab); - emit_stack_restore (SAVE_NONLOCAL, stack, NULL_RTX); + emit_stack_restore (SAVE_NONLOCAL, stack); emit_use (hard_frame_pointer_rtx); emit_use (stack_pointer_rtx); diff --git a/gcc/config/arm/arm.md b/gcc/config/arm/arm.md index 73a879e9384..6f31e6211b4 100644 --- a/gcc/config/arm/arm.md +++ b/gcc/config/arm/arm.md @@ -5790,12 +5790,11 @@ ;; Pattern to recognize insn generated default case above (define_insn "*movhi_insn_arch4" [(set (match_operand:HI 0 "nonimmediate_operand" "=r,r,m,r") - (match_operand:HI 1 "general_operand" "rI,K,r,m"))] + (match_operand:HI 1 "general_operand" "rI,K,r,mi"))] "TARGET_ARM && arm_arch4 - && (GET_CODE (operands[1]) != CONST_INT - || const_ok_for_arm (INTVAL (operands[1])) - || const_ok_for_arm (~INTVAL (operands[1])))" + && (register_operand (operands[0], HImode) + || register_operand (operands[1], HImode))" "@ mov%?\\t%0, %1\\t%@ movhi mvn%?\\t%0, #%B1\\t%@ movhi diff --git a/gcc/config/avr/avr.md b/gcc/config/avr/avr.md index 17fd319bc85..b9e92f4a253 100644 --- a/gcc/config/avr/avr.md +++ b/gcc/config/avr/avr.md @@ -169,7 +169,7 @@ emit_clobber (gen_rtx_MEM (BLKmode, hard_frame_pointer_rtx)); emit_move_insn (hard_frame_pointer_rtx, r_fp); - emit_stack_restore (SAVE_NONLOCAL, r_sp, NULL_RTX); + emit_stack_restore (SAVE_NONLOCAL, r_sp); emit_use (hard_frame_pointer_rtx); emit_use (stack_pointer_rtx); diff --git a/gcc/config/i386/freebsd64.h b/gcc/config/i386/freebsd64.h index 67be570f355..8b5b149b024 100644 --- a/gcc/config/i386/freebsd64.h +++ b/gcc/config/i386/freebsd64.h @@ -1,5 +1,5 @@ /* Definitions for AMD x86-64 running FreeBSD with ELF format - Copyright (C) 2002, 2004, 2007, 2010 Free Software Foundation, Inc. + Copyright (C) 2002, 2004, 2007, 2010, 2011 Free Software Foundation, Inc. Contributed by David O'Brien <obrien@FreeBSD.org> This file is part of GCC. @@ -25,6 +25,9 @@ along with GCC; see the file COPYING3. If not see #define SUBTARGET_EXTRA_SPECS \ { "fbsd_dynamic_linker", FBSD_DYNAMIC_LINKER } +#undef CC1_SPEC +#define CC1_SPEC "%(cc1_cpu) %{profile:-p}" + /* Provide a LINK_SPEC appropriate for the FreeBSD/x86-64 ELF target. This is a copy of LINK_SPEC from <i386/freebsd.h> tweaked for the x86-64 target. */ diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index aa59adacd5e..82d999beb92 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -34747,9 +34747,9 @@ ix86_preferred_simd_mode (enum machine_mode mode) switch (mode) { case SFmode: - return TARGET_AVX ? V8SFmode : V4SFmode; + return (TARGET_AVX && !flag_prefer_avx128) ? V8SFmode : V4SFmode; case DFmode: - return TARGET_AVX ? V4DFmode : V2DFmode; + return (TARGET_AVX && !flag_prefer_avx128) ? V4DFmode : V2DFmode; case DImode: return V2DImode; case SImode: diff --git a/gcc/config/i386/i386.opt b/gcc/config/i386/i386.opt index 85362d73105..0563bc1f925 100644 --- a/gcc/config/i386/i386.opt +++ b/gcc/config/i386/i386.opt @@ -266,6 +266,10 @@ Target RejectNegative Var(flag_dispatch_scheduler) Do dispatch scheduling if processor is bdver1 and Haifa scheduling is selected. +mprefer-avx128 +Target Report Var(flag_prefer_avx128) Init(0) +Use 128-bit AVX instructions instead of 256-bit AVX instructions in the auto-vectorizer. + ;; ISA support m32 diff --git a/gcc/config/i386/linux64.h b/gcc/config/i386/linux64.h index b68c40fec58..8392fabd31d 100644 --- a/gcc/config/i386/linux64.h +++ b/gcc/config/i386/linux64.h @@ -1,5 +1,5 @@ /* Definitions for AMD x86-64 running Linux-based GNU systems with ELF format. - Copyright (C) 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009, 2010 + Copyright (C) 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. Contributed by Jan Hubicka <jh@suse.cz>, based on linux.h. @@ -40,6 +40,9 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #undef CPP_SPEC #define CPP_SPEC "%{posix:-D_POSIX_SOURCE} %{pthread:-D_REENTRANT}" +#undef CC1_SPEC +#define CC1_SPEC "%(cc1_cpu) %{profile:-p}" + /* The svr4 ABI for the i386 says that records and unions are returned in memory. In the 64bit compilation we will turn this flag off in ix86_option_override_internal, as we never do pcc_struct_return diff --git a/gcc/config/i386/sse.md b/gcc/config/i386/sse.md index c6636a6d01e..ba2bf24ea13 100644 --- a/gcc/config/i386/sse.md +++ b/gcc/config/i386/sse.md @@ -8885,7 +8885,7 @@ (ss_plus:V8HI (mult:V8HI (zero_extend:V8HI - (vec_select:V4QI + (vec_select:V8QI (match_operand:V16QI 1 "register_operand" "x") (parallel [(const_int 0) (const_int 2) @@ -8908,7 +8908,7 @@ (const_int 14)])))) (mult:V8HI (zero_extend:V8HI - (vec_select:V16QI (match_dup 1) + (vec_select:V8QI (match_dup 1) (parallel [(const_int 1) (const_int 3) (const_int 5) @@ -8918,7 +8918,7 @@ (const_int 13) (const_int 15)]))) (sign_extend:V8HI - (vec_select:V16QI (match_dup 2) + (vec_select:V8QI (match_dup 2) (parallel [(const_int 1) (const_int 3) (const_int 5) @@ -8939,7 +8939,7 @@ (ss_plus:V8HI (mult:V8HI (zero_extend:V8HI - (vec_select:V4QI + (vec_select:V8QI (match_operand:V16QI 1 "register_operand" "0") (parallel [(const_int 0) (const_int 2) @@ -8962,7 +8962,7 @@ (const_int 14)])))) (mult:V8HI (zero_extend:V8HI - (vec_select:V16QI (match_dup 1) + (vec_select:V8QI (match_dup 1) (parallel [(const_int 1) (const_int 3) (const_int 5) @@ -8972,7 +8972,7 @@ (const_int 13) (const_int 15)]))) (sign_extend:V8HI - (vec_select:V16QI (match_dup 2) + (vec_select:V8QI (match_dup 2) (parallel [(const_int 1) (const_int 3) (const_int 5) @@ -9009,13 +9009,13 @@ (const_int 6)])))) (mult:V4HI (zero_extend:V4HI - (vec_select:V8QI (match_dup 1) + (vec_select:V4QI (match_dup 1) (parallel [(const_int 1) (const_int 3) (const_int 5) (const_int 7)]))) (sign_extend:V4HI - (vec_select:V8QI (match_dup 2) + (vec_select:V4QI (match_dup 2) (parallel [(const_int 1) (const_int 3) (const_int 5) diff --git a/gcc/config/i386/x86-64.h b/gcc/config/i386/x86-64.h index 402cf9a306c..b85dab9cdfc 100644 --- a/gcc/config/i386/x86-64.h +++ b/gcc/config/i386/x86-64.h @@ -1,5 +1,6 @@ /* OS independent definitions for AMD x86-64. - Copyright (C) 2001, 2005, 2007, 2009, 2010 Free Software Foundation, Inc. + Copyright (C) 2001, 2005, 2007, 2009, 2010, 2011 + Free Software Foundation, Inc. Contributed by Bo Thorsen <bo@suse.de>. This file is part of GCC. @@ -48,9 +49,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #undef WCHAR_TYPE_SIZE #define WCHAR_TYPE_SIZE 32 -#undef CC1_SPEC -#define CC1_SPEC "%(cc1_cpu) %{profile:-p}" - #undef ASM_SPEC #define ASM_SPEC "%{m32:--32} %{m64:--64}" diff --git a/gcc/config/ia64/t-hpux b/gcc/config/ia64/t-hpux index 1285b360caf..a97ab5c4478 100644 --- a/gcc/config/ia64/t-hpux +++ b/gcc/config/ia64/t-hpux @@ -50,7 +50,7 @@ LIBGCC1_TEST = T_CFLAGS += -DUSE_LIBUNWIND_EXCEPTIONS -LIB2ADDEH = +LIB2ADDEH = $(srcdir)/unwind-c.c SHLIB_EXT = .so # Must include -lunwind in the link, so that libgcc_s.so has the necessary diff --git a/gcc/config/mips/mips.md b/gcc/config/mips/mips.md index 08837804221..bb871036327 100644 --- a/gcc/config/mips/mips.md +++ b/gcc/config/mips/mips.md @@ -5649,7 +5649,7 @@ restores $gp as well. */ mips_emit_move (hard_frame_pointer_rtx, fp); mips_emit_move (pv, lab); - emit_stack_restore (SAVE_NONLOCAL, stack, NULL_RTX); + emit_stack_restore (SAVE_NONLOCAL, stack); mips_emit_move (gp, gpv); emit_use (hard_frame_pointer_rtx); emit_use (stack_pointer_rtx); diff --git a/gcc/config/pa/pa.md b/gcc/config/pa/pa.md index f22692c0438..24317a5c4f3 100644 --- a/gcc/config/pa/pa.md +++ b/gcc/config/pa/pa.md @@ -6865,7 +6865,7 @@ fp = force_reg (Pmode, fp); emit_move_insn (hard_frame_pointer_rtx, plus_constant (fp, -8)); - emit_stack_restore (SAVE_NONLOCAL, stack, NULL_RTX); + emit_stack_restore (SAVE_NONLOCAL, stack); emit_use (hard_frame_pointer_rtx); emit_use (stack_pointer_rtx); @@ -8310,7 +8310,7 @@ add,l %2,%3,%3\;bv,n %%r0(%3)" emit_move_insn (hard_frame_pointer_rtx, plus_constant (fp, -8)); /* This bit is the same as expand_builtin_longjmp. */ - emit_stack_restore (SAVE_NONLOCAL, stack, NULL_RTX); + emit_stack_restore (SAVE_NONLOCAL, stack); emit_use (hard_frame_pointer_rtx); emit_use (stack_pointer_rtx); diff --git a/gcc/config/rs6000/predicates.md b/gcc/config/rs6000/predicates.md index 1d06caeaef5..3839643af4a 100644 --- a/gcc/config/rs6000/predicates.md +++ b/gcc/config/rs6000/predicates.md @@ -734,20 +734,32 @@ (define_predicate "lwa_operand" (match_code "reg,subreg,mem") { - rtx inner = op; + rtx inner, addr, offset; + inner = op; if (reload_completed && GET_CODE (inner) == SUBREG) inner = SUBREG_REG (inner); - return gpc_reg_operand (inner, mode) - || (memory_operand (inner, mode) - && GET_CODE (XEXP (inner, 0)) != PRE_INC - && GET_CODE (XEXP (inner, 0)) != PRE_DEC - && (GET_CODE (XEXP (inner, 0)) != PRE_MODIFY - || legitimate_indexed_address_p (XEXP (XEXP (inner, 0), 1), 0)) - && (GET_CODE (XEXP (inner, 0)) != PLUS - || GET_CODE (XEXP (XEXP (inner, 0), 1)) != CONST_INT - || INTVAL (XEXP (XEXP (inner, 0), 1)) % 4 == 0)); + if (gpc_reg_operand (inner, mode)) + return true; + if (!memory_operand (inner, mode)) + return false; + addr = XEXP (inner, 0); + if (GET_CODE (addr) == PRE_INC + || GET_CODE (addr) == PRE_DEC + || (GET_CODE (addr) == PRE_MODIFY + && !legitimate_indexed_address_p (XEXP (addr, 1), 0))) + return false; + if (GET_CODE (addr) == LO_SUM + && GET_CODE (XEXP (addr, 0)) == REG + && GET_CODE (XEXP (addr, 1)) == CONST) + addr = XEXP (XEXP (addr, 1), 0); + if (GET_CODE (addr) != PLUS) + return true; + offset = XEXP (addr, 1); + if (GET_CODE (offset) != CONST_INT) + return true; + return INTVAL (offset) % 4 == 0; }) ;; Return 1 if the operand, used inside a MEM, is a SYMBOL_REF. diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index df02bef54df..fd80f8b8ac2 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -6248,17 +6248,23 @@ rs6000_delegitimize_address (rtx orig_x) if (MEM_P (x)) x = XEXP (x, 0); - if ((GET_CODE (x) == PLUS - || GET_CODE (x) == LO_SUM) - && GET_CODE (XEXP (x, 0)) == REG - && (REGNO (XEXP (x, 0)) == TOC_REGISTER - || TARGET_MINIMAL_TOC - || TARGET_CMODEL != CMODEL_SMALL) + if (GET_CODE (x) == (TARGET_CMODEL != CMODEL_SMALL ? LO_SUM : PLUS) && GET_CODE (XEXP (x, 1)) == CONST) { y = XEXP (XEXP (x, 1), 0); if (GET_CODE (y) == UNSPEC - && XINT (y, 1) == UNSPEC_TOCREL) + && XINT (y, 1) == UNSPEC_TOCREL + && ((GET_CODE (XEXP (x, 0)) == REG + && (REGNO (XEXP (x, 0)) == TOC_REGISTER + || TARGET_MINIMAL_TOC + || TARGET_CMODEL != CMODEL_SMALL)) + || (TARGET_CMODEL != CMODEL_SMALL + && GET_CODE (XEXP (x, 0)) == PLUS + && GET_CODE (XEXP (XEXP (x, 0), 0)) == REG + && REGNO (XEXP (XEXP (x, 0), 0)) == TOC_REGISTER + && GET_CODE (XEXP (XEXP (x, 0), 1)) == HIGH + && rtx_equal_p (XEXP (x, 1), + XEXP (XEXP (XEXP (x, 0), 1), 0))))) { y = XVECEXP (y, 0, 0); if (!MEM_P (orig_x)) diff --git a/gcc/config/s390/s390-protos.h b/gcc/config/s390/s390-protos.h index 619d0e51dd7..94648792b31 100644 --- a/gcc/config/s390/s390-protos.h +++ b/gcc/config/s390/s390-protos.h @@ -111,9 +111,3 @@ extern int s390_branch_condition_mask (rtx); extern int s390_compare_and_branch_condition_mask (rtx); #endif /* RTX_CODE */ - -#ifdef TREE_CODE -#ifdef RTX_CODE -extern rtx s390_function_value (const_tree, const_tree, enum machine_mode); -#endif /* RTX_CODE */ -#endif /* TREE_CODE */ diff --git a/gcc/config/s390/s390.c b/gcc/config/s390/s390.c index a8c8bd94362..3e6edb76b47 100644 --- a/gcc/config/s390/s390.c +++ b/gcc/config/s390/s390.c @@ -2065,6 +2065,16 @@ s390_decompose_address (rtx addr, struct s390_address *out) else if (GET_CODE (disp) == UNSPEC && XINT (disp, 1) == UNSPEC_LTREL_OFFSET) { + /* In case CSE pulled a non literal pool reference out of + the pool we have to reject the address. This is + especially important when loading the GOT pointer on non + zarch CPUs. In this case the literal pool contains an lt + relative offset to the _GLOBAL_OFFSET_TABLE_ label which + will most likely exceed the displacement. */ + if (GET_CODE (XVECEXP (disp, 0, 0)) != SYMBOL_REF + || !CONSTANT_POOL_ADDRESS_P (XVECEXP (disp, 0, 0))) + return false; + orig_disp = gen_rtx_CONST (Pmode, disp); if (offset) { @@ -8687,17 +8697,23 @@ s390_promote_function_mode (const_tree type, enum machine_mode mode, return mode; } -/* Define where to return a (scalar) value of type TYPE. - If TYPE is null, define where to return a (scalar) +/* Define where to return a (scalar) value of type RET_TYPE. + If RET_TYPE is null, define where to return a (scalar) value of mode MODE from a libcall. */ -rtx -s390_function_value (const_tree type, const_tree fn, enum machine_mode mode) +static rtx +s390_function_and_libcall_value (enum machine_mode mode, + const_tree ret_type, + const_tree fntype_or_decl, + bool outgoing ATTRIBUTE_UNUSED) { - if (type) + /* For normal functions perform the promotion as + promote_function_mode would do. */ + if (ret_type) { - int unsignedp = TYPE_UNSIGNED (type); - mode = promote_function_mode (type, TYPE_MODE (type), &unsignedp, fn, 1); + int unsignedp = TYPE_UNSIGNED (ret_type); + mode = promote_function_mode (ret_type, mode, &unsignedp, + fntype_or_decl, 1); } gcc_assert (GET_MODE_CLASS (mode) == MODE_INT || SCALAR_FLOAT_MODE_P (mode)); @@ -8710,6 +8726,10 @@ s390_function_value (const_tree type, const_tree fn, enum machine_mode mode) return gen_rtx_REG (mode, 2); else if (GET_MODE_SIZE (mode) == 2 * UNITS_PER_LONG) { + /* This case is triggered when returning a 64 bit value with + -m31 -mzarch. Although the value would fit into a single + register it has to be forced into a 32 bit register pair in + order to match the ABI. */ rtvec p = rtvec_alloc (2); RTVEC_ELT (p, 0) @@ -8723,6 +8743,26 @@ s390_function_value (const_tree type, const_tree fn, enum machine_mode mode) gcc_unreachable (); } +/* Define where to return a scalar return value of type RET_TYPE. */ + +static rtx +s390_function_value (const_tree ret_type, const_tree fn_decl_or_type, + bool outgoing) +{ + return s390_function_and_libcall_value (TYPE_MODE (ret_type), ret_type, + fn_decl_or_type, outgoing); +} + +/* Define where to return a scalar libcall return value of mode + MODE. */ + +static rtx +s390_libcall_value (enum machine_mode mode, const_rtx fun ATTRIBUTE_UNUSED) +{ + return s390_function_and_libcall_value (mode, NULL_TREE, + NULL_TREE, true); +} + /* Create and return the va_list datatype. @@ -10694,6 +10734,10 @@ s390_loop_unroll_adjust (unsigned nunroll, struct loop *loop) #define TARGET_FUNCTION_ARG s390_function_arg #undef TARGET_FUNCTION_ARG_ADVANCE #define TARGET_FUNCTION_ARG_ADVANCE s390_function_arg_advance +#undef TARGET_FUNCTION_VALUE +#define TARGET_FUNCTION_VALUE s390_function_value +#undef TARGET_LIBCALL_VALUE +#define TARGET_LIBCALL_VALUE s390_libcall_value #undef TARGET_FIXED_CONDITION_CODE_REGS #define TARGET_FIXED_CONDITION_CODE_REGS s390_fixed_condition_code_regs diff --git a/gcc/config/s390/s390.h b/gcc/config/s390/s390.h index abf4efcce27..105f5aa0c51 100644 --- a/gcc/config/s390/s390.h +++ b/gcc/config/s390/s390.h @@ -688,14 +688,6 @@ CUMULATIVE_ARGS; (N) == 16 || (N) == 17 || (TARGET_64BIT && ((N) == 18 || (N) == 19))) -/* Scalar return values. */ - -#define FUNCTION_VALUE(VALTYPE, FUNC) \ - s390_function_value ((VALTYPE), (FUNC), VOIDmode) - -#define LIBCALL_VALUE(MODE) \ - s390_function_value (NULL, NULL, (MODE)) - /* Only gpr 2 and fpr 0 are ever used as return registers. */ #define FUNCTION_VALUE_REGNO_P(N) ((N) == 2 || (N) == 16) diff --git a/gcc/config/stormy16/stormy16-protos.h b/gcc/config/stormy16/stormy16-protos.h index e9842ea09ca..bd0b5818e08 100644 --- a/gcc/config/stormy16/stormy16-protos.h +++ b/gcc/config/stormy16/stormy16-protos.h @@ -37,7 +37,6 @@ extern void xstormy16_asm_output_aligned_common (FILE *, tree, const char *, #if defined (TREE_CODE) && defined (RTX_CODE) extern void xstormy16_initialize_trampoline (rtx, rtx, rtx); -extern rtx xstormy16_function_value (const_tree, const_tree); #endif #ifdef RTX_CODE diff --git a/gcc/config/stormy16/stormy16.c b/gcc/config/stormy16/stormy16.c index 03253ddc22e..eb456e27213 100644 --- a/gcc/config/stormy16/stormy16.c +++ b/gcc/config/stormy16/stormy16.c @@ -46,6 +46,7 @@ #include "langhooks.h" #include "gimple.h" #include "df.h" +#include "reload.h" #include "ggc.h" static rtx emit_addhi3_postreload (rtx, rtx, rtx); @@ -108,6 +109,15 @@ xstormy16_address_cost (rtx x, bool speed ATTRIBUTE_UNUSED) : 5); } +/* Worker function for TARGET_MEMORY_MOVE_COST. */ + +static int +xstormy16_memory_move_cost (enum machine_mode mode, reg_class_t rclass, + bool in) +{ + return (5 + memory_move_secondary_cost (mode, rclass, in)); +} + /* Branches are handled as follows: 1. HImode compare-and-branches. The machine supports these @@ -1419,10 +1429,12 @@ xstormy16_trampoline_init (rtx m_tramp, tree fndecl, rtx static_chain) emit_move_insn (reg_addr_mem, reg_fnaddr); } -/* Worker function for FUNCTION_VALUE. */ +/* Worker function for TARGET_FUNCTION_VALUE. */ -rtx -xstormy16_function_value (const_tree valtype, const_tree func ATTRIBUTE_UNUSED) +static rtx +xstormy16_function_value (const_tree valtype, + const_tree func ATTRIBUTE_UNUSED, + bool outgoing ATTRIBUTE_UNUSED) { enum machine_mode mode; mode = TYPE_MODE (valtype); @@ -1430,6 +1442,23 @@ xstormy16_function_value (const_tree valtype, const_tree func ATTRIBUTE_UNUSED) return gen_rtx_REG (mode, RETURN_VALUE_REGNUM); } +/* Worker function for TARGET_LIBCALL_VALUE. */ + +static rtx +xstormy16_libcall_value (enum machine_mode mode, + const_rtx fun ATTRIBUTE_UNUSED) +{ + return gen_rtx_REG (mode, RETURN_VALUE_REGNUM); +} + +/* Worker function for TARGET_FUNCTION_VALUE_REGNO_P. */ + +static bool +xstormy16_function_value_regno_p (const unsigned int regno) +{ + return (regno == RETURN_VALUE_REGNUM); +} + /* A C compound statement that outputs the assembler code for a thunk function, used to implement C++ virtual function calls with multiple inheritance. The thunk acts as a wrapper around a virtual function, adjusting the implicit @@ -2579,6 +2608,8 @@ static const struct default_options xstorym16_option_optimization_table[] = #undef TARGET_ASM_CAN_OUTPUT_MI_THUNK #define TARGET_ASM_CAN_OUTPUT_MI_THUNK default_can_output_mi_thunk_no_vcall +#undef TARGET_MEMORY_MOVE_COST +#define TARGET_MEMORY_MOVE_COST xstormy16_memory_move_cost #undef TARGET_RTX_COSTS #define TARGET_RTX_COSTS xstormy16_rtx_costs #undef TARGET_ADDRESS_COST @@ -2603,6 +2634,12 @@ static const struct default_options xstorym16_option_optimization_table[] = #undef TARGET_RETURN_IN_MEMORY #define TARGET_RETURN_IN_MEMORY xstormy16_return_in_memory +#undef TARGET_FUNCTION_VALUE +#define TARGET_FUNCTION_VALUE xstormy16_function_value +#undef TARGET_LIBCALL_VALUE +#define TARGET_LIBCALL_VALUE xstormy16_libcall_value +#undef TARGET_FUNCTION_VALUE_REGNO_P +#define TARGET_FUNCTION_VALUE_REGNO_P xstormy16_function_value_regno_p #undef TARGET_MACHINE_DEPENDENT_REORG #define TARGET_MACHINE_DEPENDENT_REORG xstormy16_reorg diff --git a/gcc/config/stormy16/stormy16.h b/gcc/config/stormy16/stormy16.h index 7b8f50767bb..ac42ebd40a0 100644 --- a/gcc/config/stormy16/stormy16.h +++ b/gcc/config/stormy16/stormy16.h @@ -319,13 +319,6 @@ enum reg_class /* The number of the hard register that is used to return a scalar value from a function call. */ #define RETURN_VALUE_REGNUM FIRST_ARGUMENT_REGISTER - -#define FUNCTION_VALUE(VALTYPE, FUNC) \ - xstormy16_function_value (VALTYPE, FUNC) - -#define LIBCALL_VALUE(MODE) gen_rtx_REG (MODE, RETURN_VALUE_REGNUM) - -#define FUNCTION_VALUE_REGNO_P(REGNO) ((REGNO) == RETURN_VALUE_REGNUM) /* Function Entry and Exit. */ @@ -361,10 +354,6 @@ enum reg_class /* Describing Relative Costs of Operations. */ -#define REGISTER_MOVE_COST(MODE, FROM, TO) 2 - -#define MEMORY_MOVE_COST(M,C,I) (5 + memory_move_secondary_cost (M, C, I)) - #define BRANCH_COST(speed_p, predictable_p) 5 #define SLOW_BYTE_ACCESS 0 diff --git a/gcc/config/vax/vax.md b/gcc/config/vax/vax.md index 649f17e36ba..8c3ef0042ff 100644 --- a/gcc/config/vax/vax.md +++ b/gcc/config/vax/vax.md @@ -1624,7 +1624,7 @@ emit_clobber (gen_rtx_MEM (BLKmode, hard_frame_pointer_rtx)); emit_move_insn (hard_frame_pointer_rtx, fp); - emit_stack_restore (SAVE_NONLOCAL, stack, NULL_RTX); + emit_stack_restore (SAVE_NONLOCAL, stack); emit_use (hard_frame_pointer_rtx); emit_use (stack_pointer_rtx); diff --git a/gcc/configure b/gcc/configure index 2da3716d834..a4549469816 100755 --- a/gcc/configure +++ b/gcc/configure @@ -25445,6 +25445,53 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gcc_cv_ld_eh_gc_sections" >&5 $as_echo "$gcc_cv_ld_eh_gc_sections" >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking linker EH garbage collection of sections bug" >&5 +$as_echo_n "checking linker EH garbage collection of sections bug... " >&6; } +gcc_cv_ld_eh_gc_sections_bug=no +if test $in_tree_ld = yes ; then + if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -lt 19 -o "$gcc_cv_gld_major_version" -lt 2 \ + && test $in_tree_ld_is_elf = yes; then + gcc_cv_ld_eh_gc_sections_bug=yes + fi +elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x -a x$gcc_cv_objdump != x -a x$gcc_cv_as_comdat_group = xyes; then + gcc_cv_ld_eh_gc_sections_bug=yes + cat > conftest.s <<EOF + .section .text +.globl _start + .type _start, @function +_start: + .long foo + .size _start, .-_start + .section .text.startup.foo,"ax",@progbits + .type foo, @function +foo: + .long 0 + .size foo, .-foo + .section .gcc_except_table.foo,"a",@progbits +.L0: + .long 0 + .section .eh_frame,"a",@progbits + .long .L0 +EOF + if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then + if $gcc_cv_ld -o conftest conftest.o --entry=_start --gc-sections 2>&1 \ + | grep "gc-sections option ignored" > /dev/null; then + : + elif $gcc_cv_objdump -h conftest 2> /dev/null \ + | grep gcc_except_table > /dev/null; then + gcc_cv_ld_eh_gc_sections_bug=no + fi + fi + rm -f conftest.s conftest.o conftest +fi +if test x$gcc_cv_ld_eh_gc_sections_bug = xyes; then + +$as_echo "#define HAVE_LD_EH_GC_SECTIONS_BUG 1" >>confdefs.h + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gcc_cv_ld_eh_gc_sections_bug" >&5 +$as_echo "$gcc_cv_ld_eh_gc_sections_bug" >&6; } + # -------- # UNSORTED # -------- diff --git a/gcc/configure.ac b/gcc/configure.ac index 0c065e0de9b..03a8cef47d6 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -4097,6 +4097,51 @@ if test x$gcc_cv_ld_eh_gc_sections = xyes; then fi AC_MSG_RESULT($gcc_cv_ld_eh_gc_sections) +AC_MSG_CHECKING(linker EH garbage collection of sections bug) +gcc_cv_ld_eh_gc_sections_bug=no +if test $in_tree_ld = yes ; then + if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -lt 19 -o "$gcc_cv_gld_major_version" -lt 2 \ + && test $in_tree_ld_is_elf = yes; then + gcc_cv_ld_eh_gc_sections_bug=yes + fi +elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x -a x$gcc_cv_objdump != x -a x$gcc_cv_as_comdat_group = xyes; then + gcc_cv_ld_eh_gc_sections_bug=yes + cat > conftest.s <<EOF + .section .text +.globl _start + .type _start, @function +_start: + .long foo + .size _start, .-_start + .section .text.startup.foo,"ax",@progbits + .type foo, @function +foo: + .long 0 + .size foo, .-foo + .section .gcc_except_table.foo,"a",@progbits +.L0: + .long 0 + .section .eh_frame,"a",@progbits + .long .L0 +EOF + if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then + if $gcc_cv_ld -o conftest conftest.o --entry=_start --gc-sections 2>&1 \ + | grep "gc-sections option ignored" > /dev/null; then + : + elif $gcc_cv_objdump -h conftest 2> /dev/null \ + | grep gcc_except_table > /dev/null; then + gcc_cv_ld_eh_gc_sections_bug=no + fi + fi + rm -f conftest.s conftest.o conftest +fi +if test x$gcc_cv_ld_eh_gc_sections_bug = xyes; then + AC_DEFINE(HAVE_LD_EH_GC_SECTIONS_BUG, 1, + [Define if your linker has buggy garbage collection of + sections support when .text.startup.foo like sections are used.]) +fi +AC_MSG_RESULT($gcc_cv_ld_eh_gc_sections_bug) + # -------- # UNSORTED # -------- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 50e4b48d5ea..3e228b0395c 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,75 @@ +2011-03-06 Joseph Myers <joseph@codesourcery.com> + + * lang-specs.h: Match -save-temps* instead of -save-temps. + +2011-03-05 Jason Merrill <jason@redhat.com> + + * mangle.c (write_expression): Change ABI v6 to v5. + (write_type): Likewise. + +2011-03-04 Jan Hubicka <jh@suse.cz> + + PR lto/47497 + * optimize.c (maybe_clone_body): Update call of cgraph_same_body_alias + and cgraph_add_thunk. + * method.c (make_alias_for_thunk, use_thunk): Likewise. + * mangle.c (mangle_decl): Likewise. + +2011-03-04 Jason Merrill <jason@redhat.com> + + PR c++/47971 + * pt.c (tsubst_copy_and_build) [PSEUDO_DTOR_EXPR]: Use tsubst for type. + (tsubst_copy) [default]: Just return t if !ENABLE_CHECKING. + + PR c++/46220 + * search.c (check_final_overrider): Allow pointer to same incomplete + class type with different cv-quals. + +2011-03-03 Paolo Carlini <paolo.carlini@oracle.com> + + PR c++/47974 + * pt.c (tsubst_template_args): Check argument t for error_mark_node. + +2011-03-03 Jason Merrill <jason@redhat.com> + + PR c++/47950 + * pt.c (tsubst_copy_and_build) [TARGET_EXPR]: Retain TREE_CONSTANT. + +2011-03-02 Jason Merrill <jason@redhat.com> + + PR c++/47950 + * parser.c (cp_parser_condition): Don't fold_non_dependent_expr here. + + PR c++/47774 + * tree.c (build_vec_init_elt): Split out from... + (build_vec_init_expr): ...here. + (diagnose_non_constexpr_vec_init): New fn. + * semantics.c (potential_constant_expression_1): Use it. + * cp-tree.h: Declare it. + +2011-03-01 Jason Merrill <jason@redhat.com> + + PR c++/46159 + * parser.c (cp_parser_primary_expression): Don't warn about a + failed tentative parse. + + PR c++/47200 + * semantics.c (cxx_bind_parameters_in_call): Don't call + adjust_temp_type on non-constant args. + + PR c++/47851 + * call.c (standard_conversion): Provide requested cv-quals on + class rvalue conversion. + + PR c++/46282 + * decl2.c (grokbitfield): Handle type-dependent width. + +2011-02-28 Jason Merrill <jason@redhat.com> + + PR c++/47873 + * class.c (update_vtable_entry_for_fn): Check BINFO_LOST_PRIMARY_P + after checking for a non-thunk. + 2011-02-26 Jason Merrill <jason@redhat.com> PR c++/47904 diff --git a/gcc/cp/call.c b/gcc/cp/call.c index 8dccbbef412..a297f5313e3 100644 --- a/gcc/cp/call.c +++ b/gcc/cp/call.c @@ -850,6 +850,7 @@ standard_conversion (tree to, tree from, tree expr, bool c_cast_p, enum tree_code fcode, tcode; conversion *conv; bool fromref = false; + tree qualified_to; to = non_reference (to); if (TREE_CODE (from) == REFERENCE_TYPE) @@ -857,6 +858,7 @@ standard_conversion (tree to, tree from, tree expr, bool c_cast_p, fromref = true; from = TREE_TYPE (from); } + qualified_to = to; to = strip_top_quals (to); from = strip_top_quals (from); @@ -918,7 +920,11 @@ standard_conversion (tree to, tree from, tree expr, bool c_cast_p, } if (same_type_p (from, to)) - return conv; + { + if (CLASS_TYPE_P (to) && conv->kind == ck_rvalue) + conv->type = qualified_to; + return conv; + } /* [conv.ptr] A null pointer constant can be converted to a pointer type; ... A diff --git a/gcc/cp/class.c b/gcc/cp/class.c index 0d485fc6ac7..1325260f51e 100644 --- a/gcc/cp/class.c +++ b/gcc/cp/class.c @@ -2250,10 +2250,10 @@ update_vtable_entry_for_fn (tree t, tree binfo, tree fn, tree* virtuals, { tree main_binfo = TYPE_BINFO (BINFO_TYPE (b)); tree bv = chain_index (ix, BINFO_VIRTUALS (main_binfo)); - if (BINFO_LOST_PRIMARY_P (b)) - lost = true; if (!DECL_THUNK_P (TREE_VALUE (bv))) break; + if (BINFO_LOST_PRIMARY_P (b)) + lost = true; } first_defn = b; } diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h index d5a6d5c0763..4b49046105f 100644 --- a/gcc/cp/cp-tree.h +++ b/gcc/cp/cp-tree.h @@ -5400,6 +5400,7 @@ extern tree build_cplus_array_type (tree, tree); extern tree build_array_of_n_type (tree, int); extern tree build_array_copy (tree); extern tree build_vec_init_expr (tree, tree); +extern void diagnose_non_constexpr_vec_init (tree); extern tree hash_tree_cons (tree, tree, tree); extern tree hash_tree_chain (tree, tree); extern tree build_qualified_name (tree, tree, tree, bool); diff --git a/gcc/cp/decl2.c b/gcc/cp/decl2.c index 93d44a4d6b5..eb5d4f5a9c3 100644 --- a/gcc/cp/decl2.c +++ b/gcc/cp/decl2.c @@ -1052,7 +1052,8 @@ grokbitfield (const cp_declarator *declarator, if (width != error_mark_node) { /* The width must be an integer type. */ - if (!INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (width))) + if (!type_dependent_expression_p (width) + && !INTEGRAL_OR_UNSCOPED_ENUMERATION_TYPE_P (TREE_TYPE (width))) error ("width of bit-field %qD has non-integral type %qT", value, TREE_TYPE (width)); DECL_INITIAL (value) = width; diff --git a/gcc/cp/lang-specs.h b/gcc/cp/lang-specs.h index 24213587f76..a73aba3cdc0 100644 --- a/gcc/cp/lang-specs.h +++ b/gcc/cp/lang-specs.h @@ -1,6 +1,6 @@ /* Definitions for specs for C++. Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, - 2001, 2002, 2003, 2004, 2007, 2010 Free Software Foundation, Inc. + 2001, 2002, 2003, 2004, 2007, 2010, 2011 Free Software Foundation, Inc. This file is part of GCC. @@ -43,10 +43,10 @@ along with GCC; see the file COPYING3. If not see {"@c++-header", "%{E|M|MM:cc1plus -E %(cpp_options) %2 %(cpp_debug_options)}\ %{!E:%{!M:%{!MM:\ - %{save-temps|no-integrated-cpp:cc1plus -E\ - %(cpp_options) %2 -o %{save-temps:%b.ii} %{!save-temps:%g.ii} \n}\ - cc1plus %{save-temps|no-integrated-cpp:-fpreprocessed %{save-temps:%b.ii} %{!save-temps:%g.ii}}\ - %{!save-temps:%{!no-integrated-cpp:%(cpp_unique_options)}}\ + %{save-temps*|no-integrated-cpp:cc1plus -E\ + %(cpp_options) %2 -o %{save-temps*:%b.ii} %{!save-temps*:%g.ii} \n}\ + cc1plus %{save-temps*|no-integrated-cpp:-fpreprocessed %{save-temps*:%b.ii} %{!save-temps*:%g.ii}}\ + %{!save-temps*:%{!no-integrated-cpp:%(cpp_unique_options)}}\ %(cc1_options) %2\ %{!fsyntax-only:%{!fdump-ada-spec*:-o %g.s %{!o*:--output-pch=%i.gch}\ %W{o*:--output-pch=%*}}%V}}}}", @@ -54,10 +54,10 @@ along with GCC; see the file COPYING3. If not see {"@c++", "%{E|M|MM:cc1plus -E %(cpp_options) %2 %(cpp_debug_options)}\ %{!E:%{!M:%{!MM:\ - %{save-temps|no-integrated-cpp:cc1plus -E\ - %(cpp_options) %2 -o %{save-temps:%b.ii} %{!save-temps:%g.ii} \n}\ - cc1plus %{save-temps|no-integrated-cpp:-fpreprocessed %{save-temps:%b.ii} %{!save-temps:%g.ii}}\ - %{!save-temps:%{!no-integrated-cpp:%(cpp_unique_options)}}\ + %{save-temps*|no-integrated-cpp:cc1plus -E\ + %(cpp_options) %2 -o %{save-temps*:%b.ii} %{!save-temps*:%g.ii} \n}\ + cc1plus %{save-temps*|no-integrated-cpp:-fpreprocessed %{save-temps*:%b.ii} %{!save-temps*:%g.ii}}\ + %{!save-temps*:%{!no-integrated-cpp:%(cpp_unique_options)}}\ %(cc1_options) %2\ %{!fsyntax-only:%(invoke_as)}}}}", CPLUSPLUS_CPP_SPEC, 0, 0}, diff --git a/gcc/cp/mangle.c b/gcc/cp/mangle.c index dca8b604daa..0297a2adc58 100644 --- a/gcc/cp/mangle.c +++ b/gcc/cp/mangle.c @@ -1934,8 +1934,8 @@ write_type (tree type) gcc_assert (!DECLTYPE_FOR_LAMBDA_CAPTURE (type) && !DECLTYPE_FOR_LAMBDA_RETURN (type)); - /* In ABI <6, we stripped decltype of a plain decl. */ - if (!abi_version_at_least (6) + /* In ABI <5, we stripped decltype of a plain decl. */ + if (!abi_version_at_least (5) && DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (type)) { tree expr = DECLTYPE_TYPE_EXPR (type); @@ -2498,7 +2498,7 @@ write_expression (tree expr) write_char ('f'); if (delta != 0) { - if (abi_version_at_least (6)) + if (abi_version_at_least (5)) { /* Let L be the number of function prototype scopes from the innermost one (in which the parameter reference occurs) up @@ -3163,7 +3163,7 @@ mangle_decl (const tree decl) if (vague_linkage_p (decl)) DECL_WEAK (alias) = 1; if (TREE_CODE (decl) == FUNCTION_DECL) - cgraph_same_body_alias (alias, decl); + cgraph_same_body_alias (cgraph_node (decl), alias, decl); else varpool_extra_name_alias (alias, decl); #endif diff --git a/gcc/cp/method.c b/gcc/cp/method.c index 47f18081063..a4c2dd1b415 100644 --- a/gcc/cp/method.c +++ b/gcc/cp/method.c @@ -259,7 +259,8 @@ make_alias_for_thunk (tree function) if (!flag_syntax_only) { - struct cgraph_node *aliasn = cgraph_same_body_alias (alias, function); + struct cgraph_node *aliasn = cgraph_same_body_alias (cgraph_node (function), + alias, function); DECL_ASSEMBLER_NAME (function); gcc_assert (aliasn != NULL); } @@ -376,7 +377,7 @@ use_thunk (tree thunk_fndecl, bool emit_p) a = nreverse (t); DECL_ARGUMENTS (thunk_fndecl) = a; TREE_ASM_WRITTEN (thunk_fndecl) = 1; - cgraph_add_thunk (thunk_fndecl, function, + cgraph_add_thunk (cgraph_node (function), thunk_fndecl, function, this_adjusting, fixed_offset, virtual_value, virtual_offset, alias); diff --git a/gcc/cp/optimize.c b/gcc/cp/optimize.c index ed59f91eff3..2ce9838a74e 100644 --- a/gcc/cp/optimize.c +++ b/gcc/cp/optimize.c @@ -309,7 +309,7 @@ maybe_clone_body (tree fn) && (!DECL_ONE_ONLY (fns[0]) || (HAVE_COMDAT_GROUP && DECL_WEAK (fns[0]))) - && cgraph_same_body_alias (clone, fns[0])) + && cgraph_same_body_alias (cgraph_node (fns[0]), clone, fns[0])) { alias = true; if (DECL_ONE_ONLY (fns[0])) diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c index 314a2ff2c49..510fcb11179 100644 --- a/gcc/cp/parser.c +++ b/gcc/cp/parser.c @@ -3712,8 +3712,14 @@ cp_parser_primary_expression (cp_parser *parser, if (c_dialect_objc ()) /* We have an Objective-C++ message. */ return cp_parser_objc_expression (parser); - maybe_warn_cpp0x (CPP0X_LAMBDA_EXPR); - return cp_parser_lambda_expression (parser); + { + tree lam = cp_parser_lambda_expression (parser); + /* Don't warn about a failed tentative parse. */ + if (cp_parser_error_occurred (parser)) + return error_mark_node; + maybe_warn_cpp0x (CPP0X_LAMBDA_EXPR); + return lam; + } case CPP_OBJC_STRING: if (c_dialect_objc ()) @@ -8681,9 +8687,6 @@ cp_parser_condition (cp_parser* parser) if (BRACE_ENCLOSED_INITIALIZER_P (initializer)) maybe_warn_cpp0x (CPP0X_INITIALIZER_LISTS); - if (!non_constant_p) - initializer = fold_non_dependent_expr (initializer); - /* Process the initializer. */ cp_finish_decl (decl, initializer, !non_constant_p, diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c index 4b262d00016..dfc972870f4 100644 --- a/gcc/cp/pt.c +++ b/gcc/cp/pt.c @@ -8966,9 +8966,14 @@ static tree tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl) { tree orig_t = t; - int len = TREE_VEC_LENGTH (t); - int need_new = 0, i, expanded_len_adjust = 0, out; - tree *elts = XALLOCAVEC (tree, len); + int len, need_new = 0, i, expanded_len_adjust = 0, out; + tree *elts; + + if (t == error_mark_node) + return error_mark_node; + + len = TREE_VEC_LENGTH (t); + elts = XALLOCAVEC (tree, len); for (i = 0; i < len; i++) { @@ -11722,7 +11727,9 @@ tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl) return t; default: - gcc_unreachable (); + /* We shouldn't get here, but keep going if !ENABLE_CHECKING. */ + gcc_checking_assert (false); + return t; } } @@ -12979,7 +12986,7 @@ tsubst_copy_and_build (tree t, return finish_pseudo_destructor_expr (RECUR (TREE_OPERAND (t, 0)), RECUR (TREE_OPERAND (t, 1)), - RECUR (TREE_OPERAND (t, 2))); + tsubst (TREE_OPERAND (t, 2), args, complain, in_decl)); case TREE_LIST: { @@ -13368,7 +13375,11 @@ tsubst_copy_and_build (tree t, /* We can get here for a constant initializer of non-dependent type. FIXME stop folding in cp_parser_initializer_clause. */ gcc_assert (TREE_CONSTANT (t)); - return get_target_expr (RECUR (TARGET_EXPR_INITIAL (t))); + { + tree r = get_target_expr (RECUR (TARGET_EXPR_INITIAL (t))); + TREE_CONSTANT (r) = true; + return r; + } default: /* Handle Objective-C++ constructs, if appropriate. */ diff --git a/gcc/cp/search.c b/gcc/cp/search.c index 188f0a56d5e..07ec9efd336 100644 --- a/gcc/cp/search.c +++ b/gcc/cp/search.c @@ -1835,11 +1835,17 @@ check_final_overrider (tree overrider, tree basefn) if (CLASS_TYPE_P (base_return) && CLASS_TYPE_P (over_return)) { - tree binfo = lookup_base (over_return, base_return, - ba_check | ba_quiet, NULL); + /* Strictly speaking, the standard requires the return type to be + complete even if it only differs in cv-quals, but that seems + like a bug in the wording. */ + if (!same_type_ignoring_top_level_qualifiers_p (base_return, over_return)) + { + tree binfo = lookup_base (over_return, base_return, + ba_check | ba_quiet, NULL); - if (!binfo) - fail = 1; + if (!binfo) + fail = 1; + } } else if (!pedantic && can_convert (TREE_TYPE (base_type), TREE_TYPE (over_type))) diff --git a/gcc/cp/semantics.c b/gcc/cp/semantics.c index a33a7edd314..52a962dce09 100644 --- a/gcc/cp/semantics.c +++ b/gcc/cp/semantics.c @@ -5906,6 +5906,9 @@ cxx_bind_parameters_in_call (const constexpr_call *old_call, tree t, /* Just discard ellipsis args after checking their constantitude. */ if (!parms) continue; + if (*non_constant_p) + /* Don't try to adjust the type of non-constant args. */ + goto next; /* Make sure the binding has the same type as the parm. */ if (TREE_CODE (type) != REFERENCE_TYPE) @@ -7719,7 +7722,10 @@ potential_constant_expression_1 (tree t, bool want_rval, tsubst_flags_t flags) if (VEC_INIT_EXPR_IS_CONSTEXPR (t)) return true; if (flags & tf_error) - error ("non-constant array initialization"); + { + error ("non-constant array initialization"); + diagnose_non_constexpr_vec_init (t); + } return false; default: diff --git a/gcc/cp/tree.c b/gcc/cp/tree.c index ed4f67bbb0f..56639ffe836 100644 --- a/gcc/cp/tree.c +++ b/gcc/cp/tree.c @@ -456,6 +456,47 @@ build_cplus_new (tree type, tree init) return rval; } +/* Subroutine of build_vec_init_expr: Build up a single element + intialization as a proxy for the full array initialization to get things + marked as used and any appropriate diagnostics. + + Since we're deferring building the actual constructor calls until + gimplification time, we need to build one now and throw it away so + that the relevant constructor gets mark_used before cgraph decides + what functions are needed. Here we assume that init is either + NULL_TREE, void_type_node (indicating value-initialization), or + another array to copy. */ + +static tree +build_vec_init_elt (tree type, tree init) +{ + tree inner_type = strip_array_types (type); + VEC(tree,gc) *argvec; + + if (integer_zerop (array_type_nelts_total (type)) + || !CLASS_TYPE_P (inner_type)) + /* No interesting initialization to do. */ + return integer_zero_node; + else if (init == void_type_node) + return build_value_init (inner_type, tf_warning_or_error); + + gcc_assert (init == NULL_TREE + || (same_type_ignoring_top_level_qualifiers_p + (type, TREE_TYPE (init)))); + + argvec = make_tree_vector (); + if (init) + { + tree dummy = build_dummy_object (inner_type); + if (!real_lvalue_p (init)) + dummy = move (dummy); + VEC_quick_push (tree, argvec, dummy); + } + return build_special_member_call (NULL_TREE, complete_ctor_identifier, + &argvec, inner_type, LOOKUP_NORMAL, + tf_warning_or_error); +} + /* Return a TARGET_EXPR which expresses the initialization of an array to be named later, either default-initialization or copy-initialization from another array of the same type. */ @@ -464,62 +505,22 @@ tree build_vec_init_expr (tree type, tree init) { tree slot; - tree inner_type = strip_array_types (type); - tree elt_init = integer_zero_node; bool value_init = false; + tree elt_init = build_vec_init_elt (type, init); - /* Since we're deferring building the actual constructor calls until - gimplification time, we need to build one now and throw it away so - that the relevant constructor gets mark_used before cgraph decides - what functions are needed. Here we assume that init is either - NULL_TREE, void_type_node (indicating value-initialization), or - another array to copy. */ - if (integer_zerop (array_type_nelts_total (type))) - { - /* No actual initialization to do. */; - init = NULL_TREE; - } - else if (init == void_type_node) + if (init == void_type_node) { - elt_init = build_value_init (inner_type, tf_warning_or_error); value_init = true; init = NULL_TREE; } - else - { - gcc_assert (init == NULL_TREE - || (same_type_ignoring_top_level_qualifiers_p - (type, TREE_TYPE (init)))); - - if (CLASS_TYPE_P (inner_type)) - { - VEC(tree,gc) *argvec = make_tree_vector (); - if (init) - { - tree dummy = build_dummy_object (inner_type); - if (!real_lvalue_p (init)) - dummy = move (dummy); - VEC_quick_push (tree, argvec, dummy); - } - elt_init - = build_special_member_call (NULL_TREE, complete_ctor_identifier, - &argvec, inner_type, LOOKUP_NORMAL, - tf_warning_or_error); - } - } slot = build_local_temp (type); init = build2 (VEC_INIT_EXPR, type, slot, init); SET_EXPR_LOCATION (init, input_location); - if (current_function_decl - && DECL_DECLARED_CONSTEXPR_P (current_function_decl)) - { - if (potential_constant_expression (elt_init)) - VEC_INIT_EXPR_IS_CONSTEXPR (init) = true; - else if (!processing_template_decl) - require_potential_constant_expression (elt_init); - } + if (cxx_dialect >= cxx0x + && potential_constant_expression (elt_init)) + VEC_INIT_EXPR_IS_CONSTEXPR (init) = true; VEC_INIT_EXPR_VALUE_INIT (init) = value_init; init = build_target_expr (slot, init); @@ -528,6 +529,23 @@ build_vec_init_expr (tree type, tree init) return init; } +/* Give a helpful diagnostic for a non-constexpr VEC_INIT_EXPR in a context + that requires a constant expression. */ + +void +diagnose_non_constexpr_vec_init (tree expr) +{ + tree type = TREE_TYPE (VEC_INIT_EXPR_SLOT (expr)); + tree init, elt_init; + if (VEC_INIT_EXPR_VALUE_INIT (expr)) + init = void_zero_node; + else + init = VEC_INIT_EXPR_INIT (expr); + + elt_init = build_vec_init_elt (type, init); + require_potential_constant_expression (elt_init); +} + tree build_array_copy (tree init) { diff --git a/gcc/cse.c b/gcc/cse.c index 3ab6b37a8ea..f7b477c60b1 100644 --- a/gcc/cse.c +++ b/gcc/cse.c @@ -6575,8 +6575,9 @@ check_for_label_ref (rtx *rtl, void *data) Don't count a usage of DEST, which is the SET_DEST of a SET which contains X in its SET_SRC. This is because such a SET does not modify the liveness of DEST. - DEST is set to pc_rtx for a trapping insn, which means that we must count - uses of a SET_DEST regardless because the insn can't be deleted here. */ + DEST is set to pc_rtx for a trapping insn, or for an insn with side effects. + We must then count uses of a SET_DEST regardless, because the insn can't be + deleted here. */ static void count_reg_usage (rtx x, int *counts, rtx dest, int incr) @@ -6629,9 +6630,10 @@ count_reg_usage (rtx x, int *counts, rtx dest, int incr) case CALL_INSN: case INSN: case JUMP_INSN: - /* We expect dest to be NULL_RTX here. If the insn may trap, mark - this fact by setting DEST to pc_rtx. */ - if (insn_could_throw_p (x)) + /* We expect dest to be NULL_RTX here. If the insn may trap, + or if it cannot be deleted due to side-effects, mark this fact + by setting DEST to pc_rtx. */ + if (insn_could_throw_p (x) || side_effects_p (PATTERN (x))) dest = pc_rtx; if (code == CALL_INSN) count_reg_usage (CALL_INSN_FUNCTION_USAGE (x), counts, dest, incr); @@ -6671,10 +6673,6 @@ count_reg_usage (rtx x, int *counts, rtx dest, int incr) return; case ASM_OPERANDS: - /* If the asm is volatile, then this insn cannot be deleted, - and so the inputs *must* be live. */ - if (MEM_VOLATILE_P (x)) - dest = NULL_RTX; /* Iterate over just the inputs, not the constraints as well. */ for (i = ASM_OPERANDS_INPUT_LENGTH (x) - 1; i >= 0; i--) count_reg_usage (ASM_OPERANDS_INPUT (x, i), counts, dest, incr); diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index 9bfb93058df..4f3ea712900 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -1847,6 +1847,10 @@ template argument. Version 4 implements a standard mangling for vector types. +Version 5 corrects the mangling of attribute const/volatile on +function pointer types, decltype of a plain decl, and use of a +function parameter in the declaration of another parameter. + See also @option{-Wabi}. @item -fno-access-control diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index fea820967f9..dfe10865d8b 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -21560,7 +21560,7 @@ file_table_eq (const void *p1_p, const void *p2_p) const struct dwarf_file_data *const p1 = (const struct dwarf_file_data *) p1_p; const char *const p2 = (const char *) p2_p; - return strcmp (p1->filename, p2) == 0; + return filename_cmp (p1->filename, p2) == 0; } static hashval_t @@ -21591,7 +21591,7 @@ lookup_filename (const char *file_name) call matches this file name. If so, return the index. */ if (file_table_last_lookup && (file_name == file_table_last_lookup->filename - || strcmp (file_table_last_lookup->filename, file_name) == 0)) + || filename_cmp (file_table_last_lookup->filename, file_name) == 0)) return file_table_last_lookup; /* Didn't match the previous lookup, search the table. */ @@ -23178,7 +23178,7 @@ compare_loc_operands (dw_loc_descr_ref x, dw_loc_descr_ref y) && valx2->v.val_int == valy2->v.val_int; case DW_OP_addr: hash_addr: - return rtx_equal_p (valx1->v.val_addr, valx2->v.val_addr); + return rtx_equal_p (valx1->v.val_addr, valy1->v.val_addr); case DW_OP_GNU_implicit_pointer: return valx1->val_class == dw_val_class_die_ref && valx1->val_class == valy1->val_class diff --git a/gcc/explow.c b/gcc/explow.c index 2a182065bca..34adcb93281 100644 --- a/gcc/explow.c +++ b/gcc/explow.c @@ -961,13 +961,10 @@ round_push (rtx size) /* Save the stack pointer for the purpose in SAVE_LEVEL. PSAVE is a pointer to a previously-created save area. If no save area has been allocated, this function will allocate one. If a save area is specified, it - must be of the proper mode. - - The insns are emitted after insn AFTER, if nonzero, otherwise the insns - are emitted at the current position. */ + must be of the proper mode. */ void -emit_stack_save (enum save_level save_level, rtx *psave, rtx after) +emit_stack_save (enum save_level save_level, rtx *psave) { rtx sa = *psave; /* The default is that we use a move insn and save in a Pmode object. */ @@ -1013,38 +1010,17 @@ emit_stack_save (enum save_level save_level, rtx *psave, rtx after) } } - if (after) - { - rtx seq; - - start_sequence (); - do_pending_stack_adjust (); - /* We must validize inside the sequence, to ensure that any instructions - created by the validize call also get moved to the right place. */ - if (sa != 0) - sa = validize_mem (sa); - emit_insn (fcn (sa, stack_pointer_rtx)); - seq = get_insns (); - end_sequence (); - emit_insn_after (seq, after); - } - else - { - do_pending_stack_adjust (); - if (sa != 0) - sa = validize_mem (sa); - emit_insn (fcn (sa, stack_pointer_rtx)); - } + do_pending_stack_adjust (); + if (sa != 0) + sa = validize_mem (sa); + emit_insn (fcn (sa, stack_pointer_rtx)); } /* Restore the stack pointer for the purpose in SAVE_LEVEL. SA is the save - area made by emit_stack_save. If it is zero, we have nothing to do. - - Put any emitted insns after insn AFTER, if nonzero, otherwise at - current position. */ + area made by emit_stack_save. If it is zero, we have nothing to do. */ void -emit_stack_restore (enum save_level save_level, rtx sa, rtx after) +emit_stack_restore (enum save_level save_level, rtx sa) { /* The default is that we use a move insn. */ rtx (*fcn) (rtx, rtx) = gen_move_insn; @@ -1086,18 +1062,7 @@ emit_stack_restore (enum save_level save_level, rtx sa, rtx after) discard_pending_stack_adjust (); - if (after) - { - rtx seq; - - start_sequence (); - emit_insn (fcn (stack_pointer_rtx, sa)); - seq = get_insns (); - end_sequence (); - emit_insn_after (seq, after); - } - else - emit_insn (fcn (stack_pointer_rtx, sa)); + emit_insn (fcn (stack_pointer_rtx, sa)); } /* Invoke emit_stack_save on the nonlocal_goto_save_area for the current @@ -1118,7 +1083,7 @@ update_nonlocal_goto_save_area (void) integer_one_node, NULL_TREE, NULL_TREE); r_save = expand_expr (t_save, NULL_RTX, VOIDmode, EXPAND_WRITE); - emit_stack_save (SAVE_NONLOCAL, &r_save, NULL_RTX); + emit_stack_save (SAVE_NONLOCAL, &r_save); } /* Return an rtx representing the address of an area of memory dynamically diff --git a/gcc/expmed.c b/gcc/expmed.c index f17abb53568..b0c1e235dd7 100644 --- a/gcc/expmed.c +++ b/gcc/expmed.c @@ -1205,7 +1205,6 @@ extract_bit_field_1 (rtx str_rtx, unsigned HOST_WIDE_INT bitsize, && GET_MODE_INNER (GET_MODE (op0)) != tmode) { enum machine_mode new_mode; - int nunits = GET_MODE_NUNITS (GET_MODE (op0)); if (GET_MODE_CLASS (tmode) == MODE_FLOAT) new_mode = MIN_MODE_VECTOR_FLOAT; @@ -1221,8 +1220,7 @@ extract_bit_field_1 (rtx str_rtx, unsigned HOST_WIDE_INT bitsize, new_mode = MIN_MODE_VECTOR_INT; for (; new_mode != VOIDmode ; new_mode = GET_MODE_WIDER_MODE (new_mode)) - if (GET_MODE_NUNITS (new_mode) == nunits - && GET_MODE_SIZE (new_mode) == GET_MODE_SIZE (GET_MODE (op0)) + if (GET_MODE_SIZE (new_mode) == GET_MODE_SIZE (GET_MODE (op0)) && targetm.vector_mode_supported_p (new_mode)) break; if (new_mode != VOIDmode) diff --git a/gcc/expr.h b/gcc/expr.h index 263f861ca61..b6e6e6b0cab 100644 --- a/gcc/expr.h +++ b/gcc/expr.h @@ -633,10 +633,10 @@ extern void anti_adjust_stack_and_probe (rtx, bool); enum save_level {SAVE_BLOCK, SAVE_FUNCTION, SAVE_NONLOCAL}; /* Save the stack pointer at the specified level. */ -extern void emit_stack_save (enum save_level, rtx *, rtx); +extern void emit_stack_save (enum save_level, rtx *); /* Restore the stack pointer from a save area of the specified level. */ -extern void emit_stack_restore (enum save_level, rtx, rtx); +extern void emit_stack_restore (enum save_level, rtx); /* Invoke emit_stack_save for the nonlocal_goto_save_area. */ extern void update_nonlocal_goto_save_area (void); diff --git a/gcc/final.c b/gcc/final.c index ceb79744c41..1e1424feabc 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -1492,7 +1492,7 @@ remap_debug_filename (const char *filename) size_t name_len; for (map = debug_prefix_maps; map; map = map->next) - if (strncmp (filename, map->old_prefix, map->old_len) == 0) + if (filename_ncmp (filename, map->old_prefix, map->old_len) == 0) break; if (!map) return filename; diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index d0656f4657f..188a193568e 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,15 @@ +2011-03-04 Janne Blomqvist <jb@gcc.gnu.org> + + PR libfortran/47802 + * intrinsic.texi: Update CTIME and FDATE documentation. + +2011-03-03 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> + + * invoke.texi (Option Summary, Fortran Dialect Options) + (Preprocessing Options, Runtime Options, Code Gen Options): + Fix vertical list spacing by using @itemx for additinoal + items, empty line before @table. Fix typos. + 2011-02-28 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> PR fortran/47894 diff --git a/gcc/fortran/intrinsic.texi b/gcc/fortran/intrinsic.texi index 1ff4db35ef8..28b5fe8ade8 100644 --- a/gcc/fortran/intrinsic.texi +++ b/gcc/fortran/intrinsic.texi @@ -3218,7 +3218,10 @@ end program test_cshift @table @asis @item @emph{Description}: @code{CTIME} converts a system time value, such as returned by -@code{TIME8}, to a string of the form @samp{Sat Aug 19 18:13:14 1995}. +@code{TIME8}, to a string. Unless the application has called +@code{setlocale}, the output will be in the default locale, of length +24 and of the form @samp{Sat Aug 19 18:13:14 1995}. In other locales, +a longer string may result. This intrinsic is provided in both subroutine and function forms; however, only one form can be used in any given program unit. @@ -3232,18 +3235,20 @@ Subroutine, function @item @emph{Syntax}: @multitable @columnfractions .80 @item @code{CALL CTIME(TIME, RESULT)}. -@item @code{RESULT = CTIME(TIME)}, (not recommended). +@item @code{RESULT = CTIME(TIME)}. @end multitable @item @emph{Arguments}: @multitable @columnfractions .15 .70 -@item @var{TIME} @tab The type shall be of type @code{INTEGER(KIND=8)}. +@item @var{TIME} @tab The type shall be of type @code{INTEGER}. @item @var{RESULT} @tab The type shall be of type @code{CHARACTER} and -of default kind. +of default kind. It is an @code{INTENT(OUT)} argument. If the length +of this variable is too short for the time and date string to fit +completely, it will be blank on procedure return. @end multitable @item @emph{Return value}: -The converted date and time as a string. +The converted date and time as a string. @item @emph{Example}: @smallexample @@ -3260,7 +3265,7 @@ end program test_ctime @end smallexample @item @emph{See Also}: -@ref{GMTIME}, @ref{LTIME}, @ref{TIME}, @ref{TIME8} +@ref{DATE_AND_TIME}, @ref{GMTIME}, @ref{LTIME}, @ref{TIME}, @ref{TIME8} @end table @@ -4420,9 +4425,6 @@ TIME())}. This intrinsic is provided in both subroutine and function forms; however, only one form can be used in any given program unit. -@var{DATE} is an @code{INTENT(OUT)} @code{CHARACTER} variable of the -default kind. - @item @emph{Standard}: GNU extension @@ -4432,17 +4434,19 @@ Subroutine, function @item @emph{Syntax}: @multitable @columnfractions .80 @item @code{CALL FDATE(DATE)}. -@item @code{DATE = FDATE()}, (not recommended). +@item @code{DATE = FDATE()}. @end multitable @item @emph{Arguments}: @multitable @columnfractions .15 .70 @item @var{DATE}@tab The type shall be of type @code{CHARACTER} of the -default kind +default kind. It is an @code{INTENT(OUT)} argument. If the length of +this variable is too short for the date and time string to fit +completely, it will be blank on procedure return. @end multitable @item @emph{Return value}: -The current date as a string. +The current date and time as a string. @item @emph{Example}: @smallexample @@ -4458,8 +4462,10 @@ program test_fdate print *, 'Program ended on ', date end program test_fdate @end smallexample -@end table +@item @emph{See also}: +@ref{DATE_AND_TIME}, @ref{CTIME} +@end table @node FGET diff --git a/gcc/fortran/invoke.texi b/gcc/fortran/invoke.texi index 291d1e7b7c4..22245c91b5c 100644 --- a/gcc/fortran/invoke.texi +++ b/gcc/fortran/invoke.texi @@ -139,7 +139,7 @@ and warnings}. -Wall -Waliasing -Wampersand -Warray-bounds -Wcharacter-truncation @gol -Wconversion -Wimplicit-interface -Wimplicit-procedure -Wline-truncation @gol -Wintrinsics-std -Wsurprising -Wno-tabs -Wunderflow -Wunused-parameter @gol --Wintrinsics-shadow -Wno-align-commons} +-Wintrinsic-shadow -Wno-align-commons} @item Debugging Options @xref{Debugging Options,,Options for debugging your program or GNU Fortran}. @@ -198,7 +198,7 @@ accepted by the compiler: @table @gcctabopt @item -ffree-form -@item -ffixed-form +@itemx -ffixed-form @opindex @code{ffree-form} @opindex @code{fno-fixed-form} @cindex options, fortran dialect @@ -219,7 +219,7 @@ will be ignored and no user-defined procedure with the same name as any intrinsic will be called except when it is explicitly declared @code{EXTERNAL}. @item -fd-lines-as-code -@item -fd-lines-as-comments +@itemx -fd-lines-as-comments @opindex @code{fd-lines-as-code} @opindex @code{fd-lines-as-comments} Enable special treatment for lines beginning with @code{d} or @code{D} @@ -381,7 +381,7 @@ information on preprocessing in @command{gfortran}. @table @gcctabopt @item -cpp -@item -nocpp +@itemx -nocpp @opindex @code{cpp} @opindex @code{fpp} @cindex preprocessor, enable @@ -521,14 +521,14 @@ The standard predefined macros remain defined. @item -A@var{predicate}=@var{answer} @opindex @code{A@var{predicate}=@var{answer}} -@cindex preprocessing, assertation +@cindex preprocessing, assertion Make an assertion with the predicate @var{predicate} and answer @var{answer}. This form is preferred to the older form -A predicate(answer), which is still supported, because it does not use shell special characters. @item -A-@var{predicate}=@var{answer} @opindex @code{A-@var{predicate}=@var{answer}} -@cindex preprocessing, assertation +@cindex preprocessing, assertion Cancel an assertion with the predicate @var{predicate} and answer @var{answer}. @item -C @@ -1019,6 +1019,7 @@ configured, this option has no effect. @cindex options, runtime These options affect the runtime behavior of programs compiled with GNU Fortran. + @table @gcctabopt @item -fconvert=@var{conversion} @opindex @code{fconvert=}@var{conversion} @@ -1409,10 +1410,10 @@ on the stack. This flag cannot be used together with @option{-fmax-stack-var-size=} or @option{-fno-automatic}. @item -finit-local-zero -@item -finit-integer=@var{n} -@item -finit-real=@var{<zero|inf|-inf|nan|snan>} -@item -finit-logical=@var{<true|false>} -@item -finit-character=@var{n} +@itemx -finit-integer=@var{n} +@itemx -finit-real=@var{<zero|inf|-inf|nan|snan>} +@itemx -finit-logical=@var{<true|false>} +@itemx -finit-character=@var{n} @opindex @code{finit-local-zero} @opindex @code{finit-integer} @opindex @code{finit-real} @@ -1449,11 +1450,11 @@ consistent data types everywhere, this padding can cause trouble, and @option{-fno-align-commons} can be used to disable automatic alignment. The same form of this option should be used for all files that share a @code{COMMON} block. To avoid potential alignment issues in @code{COMMON} blocks, it is recommended to order -objects from largests to smallest. +objects from largest to smallest. @item -fno-protect-parens @opindex @code{fno-protect-parens} -@cindex re-association of parenthesed expressions +@cindex re-association of parenthesized expressions By default the parentheses in expression are honored for all optimization levels such that the compiler does not do any re-association. Using @option{-fno-protect-parens} allows the compiler to reorder @code{REAL} and diff --git a/gcc/function.c b/gcc/function.c index 3f721fb1a2f..19b480d20ba 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -1,7 +1,7 @@ /* Expands front end tree to back end RTL for GCC. Copyright (C) 1987, 1988, 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, - 2010 Free Software Foundation, Inc. + 2010, 2011 Free Software Foundation, Inc. This file is part of GCC. @@ -355,14 +355,17 @@ add_frame_space (HOST_WIDE_INT start, HOST_WIDE_INT end) -2 means use BITS_PER_UNIT, positive specifies alignment boundary in bits. - If REDUCE_ALIGNMENT_OK is true, it is OK to reduce alignment. + KIND has ASLK_REDUCE_ALIGN bit set if it is OK to reduce + alignment and ASLK_RECORD_PAD bit set if we should remember + extra space we allocated for alignment purposes. When we are + called from assign_stack_temp_for_type, it is not set so we don't + track the same stack slot in two independent lists. We do not round to stack_boundary here. */ rtx assign_stack_local_1 (enum machine_mode mode, HOST_WIDE_INT size, - int align, - bool reduce_alignment_ok ATTRIBUTE_UNUSED) + int align, int kind) { rtx x, addr; int bigend_correction = 0; @@ -412,7 +415,7 @@ assign_stack_local_1 (enum machine_mode mode, HOST_WIDE_INT size, /* It is OK to reduce the alignment as long as the requested size is 0 or the estimated stack alignment >= mode alignment. */ - gcc_assert (reduce_alignment_ok + gcc_assert ((kind & ASLK_REDUCE_ALIGN) || size == 0 || (crtl->stack_alignment_estimated >= GET_MODE_ALIGNMENT (mode))); @@ -430,21 +433,24 @@ assign_stack_local_1 (enum machine_mode mode, HOST_WIDE_INT size, if (mode != BLKmode || size != 0) { - struct frame_space **psp; - - for (psp = &crtl->frame_space_list; *psp; psp = &(*psp)->next) + if (kind & ASLK_RECORD_PAD) { - struct frame_space *space = *psp; - if (!try_fit_stack_local (space->start, space->length, size, - alignment, &slot_offset)) - continue; - *psp = space->next; - if (slot_offset > space->start) - add_frame_space (space->start, slot_offset); - if (slot_offset + size < space->start + space->length) - add_frame_space (slot_offset + size, - space->start + space->length); - goto found_space; + struct frame_space **psp; + + for (psp = &crtl->frame_space_list; *psp; psp = &(*psp)->next) + { + struct frame_space *space = *psp; + if (!try_fit_stack_local (space->start, space->length, size, + alignment, &slot_offset)) + continue; + *psp = space->next; + if (slot_offset > space->start) + add_frame_space (space->start, slot_offset); + if (slot_offset + size < space->start + space->length) + add_frame_space (slot_offset + size, + space->start + space->length); + goto found_space; + } } } else if (!STACK_ALIGNMENT_NEEDED) @@ -460,20 +466,26 @@ assign_stack_local_1 (enum machine_mode mode, HOST_WIDE_INT size, frame_offset -= size; try_fit_stack_local (frame_offset, size, size, alignment, &slot_offset); - if (slot_offset > frame_offset) - add_frame_space (frame_offset, slot_offset); - if (slot_offset + size < old_frame_offset) - add_frame_space (slot_offset + size, old_frame_offset); + if (kind & ASLK_RECORD_PAD) + { + if (slot_offset > frame_offset) + add_frame_space (frame_offset, slot_offset); + if (slot_offset + size < old_frame_offset) + add_frame_space (slot_offset + size, old_frame_offset); + } } else { frame_offset += size; try_fit_stack_local (old_frame_offset, size, size, alignment, &slot_offset); - if (slot_offset > old_frame_offset) - add_frame_space (old_frame_offset, slot_offset); - if (slot_offset + size < frame_offset) - add_frame_space (slot_offset + size, frame_offset); + if (kind & ASLK_RECORD_PAD) + { + if (slot_offset > old_frame_offset) + add_frame_space (old_frame_offset, slot_offset); + if (slot_offset + size < frame_offset) + add_frame_space (slot_offset + size, frame_offset); + } } found_space: @@ -513,7 +525,7 @@ assign_stack_local_1 (enum machine_mode mode, HOST_WIDE_INT size, rtx assign_stack_local (enum machine_mode mode, HOST_WIDE_INT size, int align) { - return assign_stack_local_1 (mode, size, align, false); + return assign_stack_local_1 (mode, size, align, ASLK_RECORD_PAD); } @@ -868,11 +880,13 @@ assign_stack_temp_for_type (enum machine_mode mode, HOST_WIDE_INT size, and round it now. We also make sure ALIGNMENT is at least BIGGEST_ALIGNMENT. */ gcc_assert (mode != BLKmode || align == BIGGEST_ALIGNMENT); - p->slot = assign_stack_local (mode, - (mode == BLKmode - ? CEIL_ROUND (size, (int) align / BITS_PER_UNIT) - : size), - align); + p->slot = assign_stack_local_1 (mode, + (mode == BLKmode + ? CEIL_ROUND (size, + (int) align + / BITS_PER_UNIT) + : size), + align, 0); p->align = align; @@ -5107,10 +5121,15 @@ expand_function_end (void) if (! EXIT_IGNORE_STACK && cfun->calls_alloca) { - rtx tem = 0; + rtx tem = 0, seq; + + start_sequence (); + emit_stack_save (SAVE_FUNCTION, &tem); + seq = get_insns (); + end_sequence (); + emit_insn_before (seq, parm_birth_insn); - emit_stack_save (SAVE_FUNCTION, &tem, parm_birth_insn); - emit_stack_restore (SAVE_FUNCTION, tem, NULL_RTX); + emit_stack_restore (SAVE_FUNCTION, tem); } /* ??? This should no longer be necessary since stupid is no longer with diff --git a/gcc/gimplify.c b/gcc/gimplify.c index 350d793b747..cf9495c9198 100644 --- a/gcc/gimplify.c +++ b/gcc/gimplify.c @@ -1,6 +1,6 @@ /* Tree lowering pass. This pass converts the GENERIC functions-as-trees tree representation into the GIMPLE form. - Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 + Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. Major work done by Sebastian Pop <s.pop@laposte.net>, Diego Novillo <dnovillo@redhat.com> and Jason Merrill <jason@redhat.com>. @@ -5511,7 +5511,8 @@ omp_add_variable (struct gimplify_omp_ctx *ctx, tree decl, unsigned int flags) For local variables TYPE_SIZE_UNIT might not be gimplified yet, in this case omp_notice_variable will be called later on when it is gimplified. */ - else if (! (flags & GOVD_LOCAL)) + else if (! (flags & GOVD_LOCAL) + && DECL_P (TYPE_SIZE_UNIT (TREE_TYPE (decl)))) omp_notice_variable (ctx, TYPE_SIZE_UNIT (TREE_TYPE (decl)), true); } else if (lang_hooks.decls.omp_privatize_by_reference (decl)) diff --git a/gcc/go/ChangeLog b/gcc/go/ChangeLog index 979247a71bc..c21dc756954 100644 --- a/gcc/go/ChangeLog +++ b/gcc/go/ChangeLog @@ -1,3 +1,7 @@ +2011-02-14 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> + + * gccgo.texi (Top, Import and Export): Fix a typo and a markup nit. + 2011-02-08 Ian Lance Taylor <iant@google.com> * go-lang.c (go_langhook_init_options_struct): Set diff --git a/gcc/go/gofrontend/expressions.cc b/gcc/go/gofrontend/expressions.cc index cebcbca7a07..075ba6468fe 100644 --- a/gcc/go/gofrontend/expressions.cc +++ b/gcc/go/gofrontend/expressions.cc @@ -957,6 +957,15 @@ Var_expression::do_type() gcc_unreachable(); } +// Determine the type of a reference to a variable. + +void +Var_expression::do_determine_type(const Type_context*) +{ + if (this->variable_->is_variable()) + this->variable_->var_value()->determine_type(); +} + // Something takes the address of this variable. This means that we // may want to move the variable onto the heap. @@ -7013,6 +7022,8 @@ Builtin_call_expression::do_integer_constant_value(bool iota_is_constant, return false; if (arg_type->is_abstract()) return false; + if (arg_type->named_type() != NULL) + arg_type->named_type()->convert(this->gogo_); tree arg_type_tree = arg_type->get_tree(this->gogo_); if (arg_type_tree == error_mark_node) return false; @@ -7057,6 +7068,8 @@ Builtin_call_expression::do_integer_constant_value(bool iota_is_constant, Type* st = struct_expr->type(); if (st->struct_type() == NULL) return false; + if (st->named_type() != NULL) + st->named_type()->convert(this->gogo_); tree struct_tree = st->get_tree(this->gogo_); gcc_assert(TREE_CODE(struct_tree) == RECORD_TYPE); tree field = TYPE_FIELDS(struct_tree); @@ -7246,6 +7259,9 @@ Builtin_call_expression::do_type() void Builtin_call_expression::do_determine_type(const Type_context* context) { + if (!this->determining_types()) + return; + this->fn()->determine_type_no_context(); const Expression_list* args = this->args(); @@ -8482,6 +8498,9 @@ Call_expression::do_type() void Call_expression::do_determine_type(const Type_context*) { + if (!this->determining_types()) + return; + this->fn_->determine_type_no_context(); Function_type* fntype = this->get_function_type(); const Typed_identifier_list* parameters = NULL; @@ -8508,6 +8527,21 @@ Call_expression::do_determine_type(const Type_context*) } } +// Called when determining types for a Call_expression. Return true +// if we should go ahead, false if they have already been determined. + +bool +Call_expression::determining_types() +{ + if (this->types_are_determined_) + return false; + else + { + this->types_are_determined_ = true; + return true; + } +} + // Check types for parameter I. bool @@ -8793,10 +8827,21 @@ Call_expression::do_get_tree(Translate_context* context) return error_mark_node; } - // This is to support builtin math functions when using 80387 math. tree fndecl = fn; if (TREE_CODE(fndecl) == ADDR_EXPR) fndecl = TREE_OPERAND(fndecl, 0); + + // Add a type cast in case the type of the function is a recursive + // type which refers to itself. + if (!DECL_P(fndecl) || !DECL_IS_BUILTIN(fndecl)) + { + tree fnt = fntype->get_tree(gogo); + if (fnt == error_mark_node) + return error_mark_node; + fn = fold_convert_loc(location, fnt, fn); + } + + // This is to support builtin math functions when using 80387 math. tree excess_type = NULL_TREE; if (DECL_P(fndecl) && DECL_IS_BUILTIN(fndecl) @@ -8842,7 +8887,7 @@ Call_expression::do_get_tree(Translate_context* context) // to the correct type. if (TREE_TYPE(ret) == ptr_type_node) { - tree t = this->type()->get_tree(gogo); + tree t = this->type()->base()->get_tree(gogo); ret = fold_convert_loc(location, t, ret); } @@ -8989,8 +9034,7 @@ Call_result_expression::do_check_types(Gogo*) void Call_result_expression::do_determine_type(const Type_context*) { - if (this->index_ == 0) - this->call_->determine_type_no_context(); + this->call_->determine_type_no_context(); } // Return the tree. @@ -11841,6 +11885,7 @@ Composite_literal_expression::lower_array(Type* type) { mpz_t ival; mpz_init(ival); + Type* dummy; if (!index_expr->integer_constant_value(true, ival, &dummy)) { @@ -11849,12 +11894,14 @@ Composite_literal_expression::lower_array(Type* type) "index expression is not integer constant"); return Expression::make_error(location); } + if (mpz_sgn(ival) < 0) { mpz_clear(ival); error_at(index_expr->location(), "index expression is negative"); return Expression::make_error(location); } + index = mpz_get_ui(ival); if (mpz_cmp_ui(ival, index) != 0) { @@ -11862,7 +11909,30 @@ Composite_literal_expression::lower_array(Type* type) error_at(index_expr->location(), "index value overflow"); return Expression::make_error(location); } + + Named_type* ntype = Type::lookup_integer_type("int"); + Integer_type* inttype = ntype->integer_type(); + mpz_t max; + mpz_init_set_ui(max, 1); + mpz_mul_2exp(max, max, inttype->bits() - 1); + bool ok = mpz_cmp(ival, max) < 0; + mpz_clear(max); + if (!ok) + { + mpz_clear(ival); + error_at(index_expr->location(), "index value overflow"); + return Expression::make_error(location); + } + mpz_clear(ival); + + // FIXME: Our representation isn't very good; this avoids + // thrashing. + if (index > 0x1000000) + { + error_at(index_expr->location(), "index too large for compiler"); + return Expression::make_error(location); + } } if (index == vals.size()) @@ -12306,7 +12376,10 @@ Send_expression::do_traverse(Traverse* traverse) Type* Send_expression::do_type() { - return Type::lookup_bool_type(); + if (this->is_value_discarded_) + return Type::make_void_type(); + else + return Type::lookup_bool_type(); } // Set types. diff --git a/gcc/go/gofrontend/expressions.h b/gcc/go/gofrontend/expressions.h index c050a4a9c0c..20386469f73 100644 --- a/gcc/go/gofrontend/expressions.h +++ b/gcc/go/gofrontend/expressions.h @@ -915,8 +915,7 @@ class Var_expression : public Expression do_type(); void - do_determine_type(const Type_context*) - { } + do_determine_type(const Type_context*); Expression* do_copy() @@ -1161,7 +1160,7 @@ class Call_expression : public Expression source_location location) : Expression(EXPRESSION_CALL, location), fn_(fn), args_(args), type_(NULL), tree_(NULL), is_varargs_(is_varargs), - is_value_discarded_(false), varargs_are_lowered_(false), + varargs_are_lowered_(false), types_are_determined_(false), is_deferred_(false) { } @@ -1220,7 +1219,7 @@ class Call_expression : public Expression void do_discarding_value() - { this->is_value_discarded_ = true; } + { } virtual Type* do_type(); @@ -1263,6 +1262,11 @@ class Call_expression : public Expression lower_varargs(Gogo*, Named_object* function, Type* varargs_type, size_t param_count); + // Let a builtin expression check whether types have been + // determined. + bool + determining_types(); + private: bool check_argument_type(int, const Type*, const Type*, source_location, bool); @@ -1286,10 +1290,10 @@ class Call_expression : public Expression tree tree_; // True if the last argument is a varargs argument (f(a...)). bool is_varargs_; - // True if the value is being discarded. - bool is_value_discarded_; // True if varargs have already been lowered. bool varargs_are_lowered_; + // True if types have been determined. + bool types_are_determined_; // True if the call is an argument to a defer statement. bool is_deferred_; }; diff --git a/gcc/go/gofrontend/go.cc b/gcc/go/gofrontend/go.cc index 2f30fd804b6..7b1fd7eccbb 100644 --- a/gcc/go/gofrontend/go.cc +++ b/gcc/go/gofrontend/go.cc @@ -118,9 +118,6 @@ go_parse_input_files(const char** filenames, unsigned int filename_count, // Export global identifiers as appropriate. ::gogo->do_exports(); - // Build required interface method tables. - ::gogo->build_interface_method_tables(); - // Turn short-cut operators (&&, ||) into explicit if statements. ::gogo->remove_shortcuts(); diff --git a/gcc/go/gofrontend/gogo-tree.cc b/gcc/go/gofrontend/gogo-tree.cc index 3228c42ec3b..83488fc83e7 100644 --- a/gcc/go/gofrontend/gogo-tree.cc +++ b/gcc/go/gofrontend/gogo-tree.cc @@ -640,6 +640,9 @@ sort_var_inits(Var_inits* var_inits) void Gogo::write_globals() { + this->convert_named_types(); + this->build_interface_method_tables(); + Bindings* bindings = this->current_bindings(); size_t count = bindings->size_definitions(); @@ -923,7 +926,16 @@ Named_object::get_tree(Gogo* gogo, Named_object* function) { Type* type = named_constant->type(); if (type != NULL && !type->is_abstract()) - expr_tree = fold_convert(type->get_tree(gogo), expr_tree); + { + if (!type->is_undefined()) + expr_tree = fold_convert(type->get_tree(gogo), expr_tree); + else + { + // Make sure we report the error. + type->base(); + expr_tree = error_mark_node; + } + } if (expr_tree == error_mark_node) decl = error_mark_node; else if (INTEGRAL_TYPE_P(TREE_TYPE(expr_tree))) @@ -1774,8 +1786,14 @@ Function::return_value(Gogo* gogo, Named_object* named_function, // defer statements, the result variables may be unnamed. bool is_named = !results->front().name().empty(); if (is_named) - gcc_assert(this->named_results_ != NULL - && this->named_results_->size() == results->size()); + { + gcc_assert(this->named_results_ != NULL); + if (this->named_results_->size() != results->size()) + { + gcc_assert(saw_errors()); + return error_mark_node; + } + } tree retval; if (results->size() == 1) diff --git a/gcc/go/gofrontend/gogo.cc b/gcc/go/gofrontend/gogo.cc index a63abfefde3..52370499f45 100644 --- a/gcc/go/gofrontend/gogo.cc +++ b/gcc/go/gofrontend/gogo.cc @@ -34,7 +34,8 @@ Gogo::Gogo(int int_type_size, int pointer_size) imported_init_fns_(), unique_prefix_(), unique_prefix_specified_(false), - interface_types_() + interface_types_(), + named_types_are_converted_(false) { const source_location loc = BUILTINS_LOCATION; @@ -1119,11 +1120,6 @@ class Verify_types : public Traverse int Verify_types::type(Type* t) { - // Don't verify types defined in other packages. - Named_type* nt = t->named_type(); - if (nt != NULL && nt->named_object()->package() != NULL) - return TRAVERSE_SKIP_COMPONENTS; - if (!t->verify()) return TRAVERSE_SKIP_COMPONENTS; return TRAVERSE_CONTINUE; @@ -1734,7 +1730,7 @@ Shortcuts::convert_shortcut(Block* enclosing, Expression** pshortcut) Block* retblock = new Block(enclosing, loc); retblock->set_end_location(loc); - Temporary_statement* ts = Statement::make_temporary(Type::make_boolean_type(), + Temporary_statement* ts = Statement::make_temporary(Type::lookup_bool_type(), left, loc); retblock->add_statement(ts); @@ -2090,7 +2086,7 @@ Build_recover_thunks::function(Named_object* orig_no) ++count; std::string can_recover_name = buf; new_params->push_back(Typed_identifier(can_recover_name, - Type::make_boolean_type(), + Type::lookup_bool_type(), orig_fntype->location())); const Typed_identifier_list* orig_results = orig_fntype->results(); @@ -2226,7 +2222,7 @@ Build_recover_thunks::function(Named_object* orig_no) // Add the can_recover argument to the (now) new bindings, and // attach it to any recover statements. - Variable* can_recover_var = new Variable(Type::make_boolean_type(), NULL, + Variable* can_recover_var = new Variable(Type::lookup_bool_type(), NULL, false, true, false, location); can_recover_no = new_bindings->add_variable(can_recover_name, NULL, can_recover_var); @@ -2277,7 +2273,7 @@ Build_recover_thunks::can_recover_arg(source_location location) Typed_identifier_list* param_types = new Typed_identifier_list(); Type* voidptr_type = Type::make_pointer_type(Type::make_void_type()); param_types->push_back(Typed_identifier("a", voidptr_type, bloc)); - Type* boolean_type = Type::make_boolean_type(); + Type* boolean_type = Type::lookup_bool_type(); Typed_identifier_list* results = new Typed_identifier_list(); results->push_back(Typed_identifier("", boolean_type, bloc)); Function_type* fntype = Type::make_function_type(NULL, param_types, @@ -2520,6 +2516,83 @@ Gogo::do_exports() this->package_->bindings()); } +// Find the blocks in order to convert named types defined in blocks. + +class Convert_named_types : public Traverse +{ + public: + Convert_named_types(Gogo* gogo) + : Traverse(traverse_blocks), + gogo_(gogo) + { } + + protected: + int + block(Block* block); + + private: + Gogo* gogo_; +}; + +int +Convert_named_types::block(Block* block) +{ + this->gogo_->convert_named_types_in_bindings(block->bindings()); + return TRAVERSE_CONTINUE; +} + +// Convert all named types to the backend representation. Since named +// types can refer to other types, this needs to be done in the right +// sequence, which is handled by Named_type::convert. Here we arrange +// to call that for each named type. + +void +Gogo::convert_named_types() +{ + this->convert_named_types_in_bindings(this->globals_); + for (Packages::iterator p = this->packages_.begin(); + p != this->packages_.end(); + ++p) + { + Package* package = p->second; + this->convert_named_types_in_bindings(package->bindings()); + } + + Convert_named_types cnt(this); + this->traverse(&cnt); + + // Make all the builtin named types used for type descriptors, and + // then convert them. They will only be written out if they are + // needed. + Type::make_type_descriptor_type(); + Type::make_type_descriptor_ptr_type(); + Function_type::make_function_type_descriptor_type(); + Pointer_type::make_pointer_type_descriptor_type(); + Struct_type::make_struct_type_descriptor_type(); + Array_type::make_array_type_descriptor_type(); + Array_type::make_slice_type_descriptor_type(); + Map_type::make_map_type_descriptor_type(); + Channel_type::make_chan_type_descriptor_type(); + Interface_type::make_interface_type_descriptor_type(); + Type::convert_builtin_named_types(this); + + this->named_types_are_converted_ = true; +} + +// Convert all names types in a set of bindings. + +void +Gogo::convert_named_types_in_bindings(Bindings* bindings) +{ + for (Bindings::const_definitions_iterator p = bindings->begin_definitions(); + p != bindings->end_definitions(); + ++p) + { + if ((*p)->is_type()) + (*p)->type_value()->convert(this); + } +} + // Class Function. Function::Function(Function_type* type, Function* enclosing, Block* block, @@ -3143,7 +3216,7 @@ Variable::Variable(Type* type, Expression* init, bool is_global, is_address_taken_(false), seen_(false), init_is_lowered_(false), type_from_init_tuple_(false), type_from_range_index_(false), type_from_range_value_(false), type_from_chan_element_(false), - is_type_switch_var_(false) + is_type_switch_var_(false), determined_type_(false) { gcc_assert(type != NULL || init != NULL); gcc_assert(!is_parameter || init == NULL); @@ -3383,6 +3456,10 @@ Variable::type() const void Variable::determine_type() { + if (this->determined_type_) + return; + this->determined_type_ = true; + if (this->preinit_ != NULL) this->preinit_->determine_types(); diff --git a/gcc/go/gofrontend/gogo.h b/gcc/go/gofrontend/gogo.h index 57928d6600b..7a52a51a2c6 100644 --- a/gcc/go/gofrontend/gogo.h +++ b/gcc/go/gofrontend/gogo.h @@ -405,6 +405,20 @@ class Gogo void simplify_thunk_statements(); + // Convert named types to the backend representation. + void + convert_named_types(); + + // Convert named types in a list of bindings. + void + convert_named_types_in_bindings(Bindings*); + + // True if named types have been converted to the backend + // representation. + bool + named_types_are_converted() const + { return this->named_types_are_converted_; } + // Write out the global values. void write_globals(); @@ -661,6 +675,8 @@ class Gogo bool unique_prefix_specified_; // A list of interface types defined while parsing. std::vector<Interface_type*> interface_types_; + // Whether named types have been converted. + bool named_types_are_converted_; }; // A block of statements. @@ -1291,6 +1307,8 @@ class Variable bool type_from_chan_element_ : 1; // True if this is a variable created for a type switch case. bool is_type_switch_var_ : 1; + // True if we have determined types. + bool determined_type_ : 1; }; // A variable which is really the name for a function return value, or diff --git a/gcc/go/gofrontend/parse.cc b/gcc/go/gofrontend/parse.cc index ab6021d0b2c..7c03870e82e 100644 --- a/gcc/go/gofrontend/parse.cc +++ b/gcc/go/gofrontend/parse.cc @@ -2063,9 +2063,12 @@ Parse::function_decl() return; } this->advance_token(); - named_object = this->gogo_->declare_function(name, fntype, location); - if (named_object->is_function_declaration()) - named_object->func_declaration_value()->set_asm_name(asm_name); + if (!Gogo::is_sink_name(name)) + { + named_object = this->gogo_->declare_function(name, fntype, location); + if (named_object->is_function_declaration()) + named_object->func_declaration_value()->set_asm_name(asm_name); + } } // Check for the easy error of a newline before the opening brace. @@ -2082,8 +2085,8 @@ Parse::function_decl() if (!this->peek_token()->is_op(OPERATOR_LCURLY)) { - if (named_object == NULL) - named_object = this->gogo_->declare_function(name, fntype, location); + if (named_object == NULL && !Gogo::is_sink_name(name)) + this->gogo_->declare_function(name, fntype, location); } else { diff --git a/gcc/go/gofrontend/statements.cc b/gcc/go/gofrontend/statements.cc index c87574dff1c..c443519b77d 100644 --- a/gcc/go/gofrontend/statements.cc +++ b/gcc/go/gofrontend/statements.cc @@ -391,7 +391,10 @@ Temporary_statement::do_get_tree(Translate_context* context) { gcc_assert(this->decl_ == NULL_TREE); tree type_tree = this->type()->get_tree(context->gogo()); - if (type_tree == error_mark_node) + tree init_tree = (this->init_ == NULL + ? NULL_TREE + : this->init_->get_tree(context)); + if (type_tree == error_mark_node || init_tree == error_mark_node) { this->decl_ = error_mark_node; return error_mark_node; @@ -423,11 +426,10 @@ Temporary_statement::do_get_tree(Translate_context* context) this->decl_ = decl; } - if (this->init_ != NULL) + if (init_tree != NULL_TREE) DECL_INITIAL(this->decl_) = Expression::convert_for_assignment(context, this->type(), - this->init_->type(), - this->init_->get_tree(context), + this->init_->type(), init_tree, this->location()); if (this->is_address_taken_) TREE_ADDRESSABLE(this->decl_) = 1; @@ -968,7 +970,7 @@ Tuple_map_assignment_statement::do_lower(Gogo*, Block* enclosing) param_types->push_back(Typed_identifier("val", pval_type, bloc)); Typed_identifier_list* ret_types = new Typed_identifier_list(); - ret_types->push_back(Typed_identifier("", Type::make_boolean_type(), bloc)); + ret_types->push_back(Typed_identifier("", Type::lookup_bool_type(), bloc)); Function_type* fntype = Type::make_function_type(NULL, param_types, ret_types, bloc); @@ -2024,7 +2026,7 @@ Thunk_statement::build_struct(Function_type* fntype) // we add an argument when building recover thunks. Handle that // here. fields->push_back(Struct_field(Typed_identifier("can_recover", - Type::make_boolean_type(), + Type::lookup_bool_type(), location))); } @@ -2101,7 +2103,7 @@ Thunk_statement::build_thunk(Gogo* gogo, const std::string& thunk_name, // return value, to disable tail call optimizations which will // break the way we check whether recover is permitted. thunk_results = new Typed_identifier_list(); - thunk_results->push_back(Typed_identifier("", Type::make_boolean_type(), + thunk_results->push_back(Typed_identifier("", Type::lookup_bool_type(), location)); } @@ -2133,7 +2135,7 @@ Thunk_statement::build_thunk(Gogo* gogo, const std::string& thunk_name, Typed_identifier_list* result_types = new Typed_identifier_list(); result_types->push_back(Typed_identifier("", - Type::make_boolean_type(), + Type::lookup_bool_type(), bloc)); Function_type* t = Type::make_function_type(NULL, param_types, diff --git a/gcc/go/gofrontend/types.cc b/gcc/go/gofrontend/types.cc index 3e149b93734..0db599441dd 100644 --- a/gcc/go/gofrontend/types.cc +++ b/gcc/go/gofrontend/types.cc @@ -769,7 +769,7 @@ Type::check_int_value(Expression* e, const char* errmsg, mpfr_init(fval); Type* dummy; - if (e->float_constant_value(fval, &dummy)) + if (e->float_constant_value(fval, &dummy) && mpfr_integer_p(fval)) { mpz_t ival; mpz_init(ival); @@ -835,8 +835,9 @@ Type::get_tree(Gogo* gogo) Type::type_trees.insert(val); if (!ins.second && ins.first->second != NULL_TREE) { - this->tree_ = ins.first->second; - return this->tree_; + if (gogo != NULL && gogo->named_types_are_converted()) + this->tree_ = ins.first->second; + return ins.first->second; } tree t = this->get_tree_without_hash(gogo); @@ -850,6 +851,8 @@ Type::get_tree(Gogo* gogo) // which in turns uses an identical unnamed type. Use the tree // we created earlier and ignore the one we just built. t = ins.first->second; + if (gogo == NULL || !gogo->named_types_are_converted()) + return t; this->tree_ = t; } @@ -874,6 +877,9 @@ Type::get_tree_without_hash(Gogo* gogo) if (t == ptr_type_node && this->forward_declaration_type() != NULL) return t; + if (gogo == NULL || !gogo->named_types_are_converted()) + return t; + this->tree_ = t; go_preserve_from_gc(t); } @@ -961,6 +967,10 @@ Type::make_builtin_struct_type(int nfields, ...) return Type::make_struct_type(sfl, bloc); } +// A list of builtin named types. + +std::vector<Named_type*> Type::named_builtin_types; + // Make a builtin named type. Named_type* @@ -968,7 +978,25 @@ Type::make_builtin_named_type(const char* name, Type* type) { source_location bloc = BUILTINS_LOCATION; Named_object* no = Named_object::make_type(name, NULL, type, bloc); - return no->type_value(); + Named_type* ret = no->type_value(); + Type::named_builtin_types.push_back(ret); + return ret; +} + +// Convert the named builtin types. + +void +Type::convert_builtin_named_types(Gogo* gogo) +{ + for (std::vector<Named_type*>::const_iterator p = + Type::named_builtin_types.begin(); + p != Type::named_builtin_types.end(); + ++p) + { + bool r = (*p)->verify(); + gcc_assert(r); + (*p)->convert(gogo); + } } // Return the type of a type descriptor. We should really tie this to @@ -1736,7 +1764,12 @@ Integer_type::do_hash_for_method(Gogo*) const tree Integer_type::do_get_tree(Gogo*) { - gcc_assert(!this->is_abstract_); + if (this->is_abstract_) + { + gcc_assert(saw_errors()); + return error_mark_node; + } + if (this->is_unsigned_) { if (this->bits_ == INT_TYPE_SIZE) @@ -1790,7 +1823,7 @@ Integer_type::do_type_descriptor(Gogo* gogo, Named_type* name) void Integer_type::do_reflection(Gogo*, std::string*) const { - gcc_unreachable(); + gcc_assert(saw_errors()); } // Mangled name. @@ -1946,7 +1979,7 @@ Float_type::do_type_descriptor(Gogo* gogo, Named_type* name) void Float_type::do_reflection(Gogo*, std::string*) const { - gcc_unreachable(); + gcc_assert(saw_errors()); } // Mangled name. @@ -2106,7 +2139,7 @@ Complex_type::do_type_descriptor(Gogo* gogo, Named_type* name) void Complex_type::do_reflection(Gogo*, std::string*) const { - gcc_unreachable(); + gcc_assert(saw_errors()); } // Mangled name. @@ -3309,20 +3342,10 @@ Call_multiple_result_type::do_get_tree(Gogo* gogo) gcc_assert(fntype != NULL); const Typed_identifier_list* results = fntype->results(); gcc_assert(results != NULL && results->size() > 1); - - Struct_field_list* sfl = new Struct_field_list; - for (Typed_identifier_list::const_iterator p = results->begin(); - p != results->end(); - ++p) - { - const std::string name = ((p->name().empty() - || p->name() == Import::import_marker) - ? "UNNAMED" - : p->name()); - sfl->push_back(Struct_field(Typed_identifier(name, p->type(), - this->call_->location()))); - } - return Type::make_struct_type(sfl, this->call_->location())->get_tree(gogo); + tree fntype_tree = fntype->get_tree(gogo); + if (fntype_tree == error_mark_node) + return error_mark_node; + return TREE_TYPE(fntype_tree); } // Make a call result type. @@ -3782,7 +3805,6 @@ Struct_type::fill_in_tree(Gogo* gogo, tree type) { tree field_trees = NULL_TREE; tree* pp = &field_trees; - bool has_pointer = false; for (Struct_field_list::const_iterator p = this->fields_->begin(); p != this->fields_->end(); ++p) @@ -3790,20 +3812,10 @@ Struct_type::fill_in_tree(Gogo* gogo, tree type) std::string name = Gogo::unpack_hidden_name(p->field_name()); tree name_tree = get_identifier_with_length(name.data(), name.length()); - // Don't follow pointers yet, so that we don't get confused by a - // pointer to an array of this struct type. - tree field_type_tree; - if (p->type()->points_to() != NULL || p->type()->function_type() != NULL) - { - field_type_tree = ptr_type_node; - has_pointer = true; - } - else - { - field_type_tree = p->type()->get_tree(gogo); - if (field_type_tree == error_mark_node) - return error_mark_node; - } + tree field_type_tree = p->type()->get_tree(gogo); + if (field_type_tree == error_mark_node) + return error_mark_node; + gcc_assert(TYPE_SIZE(field_type_tree) != NULL_TREE); tree field = build_decl(p->location(), FIELD_DECL, name_tree, field_type_tree); @@ -3816,35 +3828,9 @@ Struct_type::fill_in_tree(Gogo* gogo, tree type) layout_type(type); - if (has_pointer) - { - tree field = field_trees; - for (Struct_field_list::const_iterator p = this->fields_->begin(); - p != this->fields_->end(); - ++p, field = DECL_CHAIN(field)) - { - if (p->type()->points_to() != NULL - || p->type()->function_type() != NULL) - TREE_TYPE(field) = p->type()->get_tree(gogo); - } - } - return type; } -// Make sure that all structs which must be converted to the backend -// representation before this one are in fact converted. - -void -Struct_type::convert_prerequisites(Gogo* gogo) -{ - for (std::vector<Named_type*>::const_iterator p - = this->prerequisites_.begin(); - p != this->prerequisites_.end(); - ++p) - (*p)->get_tree(gogo); -} - // Initialize struct fields. tree @@ -4487,6 +4473,8 @@ Array_type::fill_in_array_tree(Gogo* gogo, tree array_type) || length_tree == error_mark_node) return error_mark_node; + gcc_assert(TYPE_SIZE(element_type_tree) != NULL_TREE); + length_tree = fold_convert(sizetype, length_tree); // build_index_type takes the maximum index, which is one less than @@ -6074,70 +6062,86 @@ tree Interface_type::do_get_tree(Gogo* gogo) { if (this->methods_ == NULL) + return Interface_type::empty_type_tree(gogo); + else { - // At the tree level, use the same type for all empty - // interfaces. This lets us assign them to each other directly - // without triggering GIMPLE type errors. - tree dtype = Type::make_type_descriptor_type()->get_tree(gogo); - dtype = build_pointer_type(build_qualified_type(dtype, TYPE_QUAL_CONST)); - static tree empty_interface; - return Gogo::builtin_struct(&empty_interface, "__go_empty_interface", - NULL_TREE, 2, - "__type_descriptor", - dtype, - "__object", - ptr_type_node); + tree t = Interface_type::non_empty_type_tree(this->location_); + return this->fill_in_tree(gogo, t); } - - return this->fill_in_tree(gogo, make_node(RECORD_TYPE)); } -// Fill in the tree for an interface type. This is used for named -// interface types. +// Return a singleton struct for an empty interface type. We use the +// same type for all empty interfaces. This lets us assign them to +// each other directly without triggering GIMPLE type errors. tree -Interface_type::fill_in_tree(Gogo* gogo, tree type) +Interface_type::empty_type_tree(Gogo* gogo) { - gcc_assert(this->methods_ != NULL); + static tree empty_interface; + if (empty_interface != NULL_TREE) + return empty_interface; - // Because the methods may refer to the interface type itself, we - // need to build the interface type first, and then update the - // method pointer later. + tree dtype = Type::make_type_descriptor_type()->get_tree(gogo); + dtype = build_pointer_type(build_qualified_type(dtype, TYPE_QUAL_CONST)); + return Gogo::builtin_struct(&empty_interface, "__go_empty_interface", + NULL_TREE, 2, + "__type_descriptor", + dtype, + "__object", + ptr_type_node); +} + +// Return a new struct for a non-empty interface type. The correct +// values are filled in by fill_in_tree. + +tree +Interface_type::non_empty_type_tree(source_location location) +{ + tree ret = make_node(RECORD_TYPE); tree field_trees = NULL_TREE; tree* pp = &field_trees; tree name_tree = get_identifier("__methods"); - tree methods_field = build_decl(this->location_, FIELD_DECL, name_tree, - ptr_type_node); - DECL_CONTEXT(methods_field) = type; - *pp = methods_field; - pp = &DECL_CHAIN(methods_field); + tree field = build_decl(location, FIELD_DECL, name_tree, ptr_type_node); + DECL_CONTEXT(field) = ret; + *pp = field; + pp = &DECL_CHAIN(field); name_tree = get_identifier("__object"); - tree field = build_decl(this->location_, FIELD_DECL, name_tree, - ptr_type_node); - DECL_CONTEXT(field) = type; + field = build_decl(location, FIELD_DECL, name_tree, ptr_type_node); + DECL_CONTEXT(field) = ret; *pp = field; - TYPE_FIELDS(type) = field_trees; + TYPE_FIELDS(ret) = field_trees; - layout_type(type); + layout_type(ret); + + return ret; +} + +// Fill in the tree for an interface type. This is used for named +// interface types. + +tree +Interface_type::fill_in_tree(Gogo* gogo, tree type) +{ + gcc_assert(this->methods_ != NULL); // Build the type of the table of methods. tree method_table = make_node(RECORD_TYPE); // The first field is a pointer to the type descriptor. - name_tree = get_identifier("__type_descriptor"); + tree name_tree = get_identifier("__type_descriptor"); tree dtype = Type::make_type_descriptor_type()->get_tree(gogo); dtype = build_pointer_type(build_qualified_type(dtype, TYPE_QUAL_CONST)); - field = build_decl(this->location_, FIELD_DECL, name_tree, dtype); + tree field = build_decl(this->location_, FIELD_DECL, name_tree, dtype); DECL_CONTEXT(field) = method_table; TYPE_FIELDS(method_table) = field; std::string last_name = ""; - pp = &DECL_CHAIN(field); + tree* pp = &DECL_CHAIN(field); for (Typed_identifier_list::const_iterator p = this->methods_->begin(); p != this->methods_->end(); ++p) @@ -6159,7 +6163,10 @@ Interface_type::fill_in_tree(Gogo* gogo, tree type) // Update the type of the __methods field from a generic pointer to // a pointer to the method table. - TREE_TYPE(methods_field) = build_pointer_type(method_table); + field = TYPE_FIELDS(type); + gcc_assert(strcmp(IDENTIFIER_POINTER(DECL_NAME(field)), "__methods") == 0); + + TREE_TYPE(field) = build_pointer_type(method_table); return type; } @@ -6876,7 +6883,7 @@ Named_type::named_type_has_hidden_fields(std::string* reason) const class Find_type_use : public Traverse { public: - Find_type_use(Type* find_type) + Find_type_use(Named_type* find_type) : Traverse(traverse_types), find_type_(find_type), found_(false) { } @@ -6892,7 +6899,7 @@ class Find_type_use : public Traverse private: // The type we are looking for. - Type* find_type_; + Named_type* find_type_; // Whether we found the type. bool found_; }; @@ -6902,11 +6909,12 @@ class Find_type_use : public Traverse int Find_type_use::type(Type* type) { - if (this->find_type_ == type) + if (type->named_type() != NULL && this->find_type_ == type->named_type()) { this->found_ = true; return TRAVERSE_EXIT; } + // It's OK if we see a reference to the type in any type which is // essentially a pointer: a pointer, a slice, a function, a map, or // a channel. @@ -6940,6 +6948,42 @@ Find_type_use::type(Type* type) return TRAVERSE_SKIP_COMPONENTS; } + // Otherwise, FIND_TYPE_ depends on TYPE, in the sense that we need + // to convert TYPE to the backend representation before we convert + // FIND_TYPE_. + if (type->named_type() != NULL) + { + switch (type->base()->classification()) + { + case Type::TYPE_ERROR: + case Type::TYPE_BOOLEAN: + case Type::TYPE_INTEGER: + case Type::TYPE_FLOAT: + case Type::TYPE_COMPLEX: + case Type::TYPE_STRING: + case Type::TYPE_NIL: + break; + + case Type::TYPE_ARRAY: + case Type::TYPE_STRUCT: + this->find_type_->add_dependency(type->named_type()); + break; + + case Type::TYPE_VOID: + case Type::TYPE_SINK: + case Type::TYPE_FUNCTION: + case Type::TYPE_POINTER: + case Type::TYPE_CALL_MULTIPLE_RESULT: + case Type::TYPE_MAP: + case Type::TYPE_CHANNEL: + case Type::TYPE_INTERFACE: + case Type::TYPE_NAMED: + case Type::TYPE_FORWARD: + default: + gcc_unreachable(); + } + } + return TRAVERSE_CONTINUE; } @@ -6995,36 +7039,6 @@ Named_type::do_verify() return false; } - // If this is a struct, then if any of the fields of the struct - // themselves have struct type, or array of struct type, then this - // struct must be converted to the backend representation before the - // field's type is converted. That may seem backward, but it works - // because if the field's type refers to this one, e.g., via a - // pointer, then the conversion process will pick up the half-built - // struct and do the right thing. - if (this->struct_type() != NULL) - { - const Struct_field_list* fields = this->struct_type()->fields(); - for (Struct_field_list::const_iterator p = fields->begin(); - p != fields->end(); - ++p) - { - Struct_type* st = p->type()->struct_type(); - if (st != NULL) - st->add_prerequisite(this); - else - { - Array_type* at = p->type()->array_type(); - if (at != NULL && !at->is_open_array_type()) - { - st = at->element_type()->struct_type(); - if (st != NULL) - st->add_prerequisite(this); - } - } - } - } - return true; } @@ -7074,21 +7088,109 @@ Named_type::do_hash_for_method(Gogo* gogo) const return ret; } -// Get a tree for a named type. +// Convert a named type to the backend representation. In order to +// get dependencies right, we fill in a dummy structure for this type, +// then convert all the dependencies, then complete this type. When +// this function is complete, the size of the type is known. -tree -Named_type::do_get_tree(Gogo* gogo) +void +Named_type::convert(Gogo* gogo) +{ + if (this->is_error_ || this->is_converted_) + return; + + this->create_placeholder(gogo); + + // Convert all the dependencies. If they refer indirectly back to + // this type, they will pick up the intermediate tree we just + // created. + for (std::vector<Named_type*>::const_iterator p = this->dependencies_.begin(); + p != this->dependencies_.end(); + ++p) + (*p)->convert(gogo); + + // Complete this type. + tree t = this->named_tree_; + Type* base = this->type_->base(); + switch (base->classification()) + { + case TYPE_VOID: + case TYPE_BOOLEAN: + case TYPE_INTEGER: + case TYPE_FLOAT: + case TYPE_COMPLEX: + case TYPE_STRING: + case TYPE_NIL: + break; + + case TYPE_MAP: + case TYPE_CHANNEL: + break; + + case TYPE_FUNCTION: + case TYPE_POINTER: + // The size of these types is already correct. + break; + + case TYPE_STRUCT: + t = base->struct_type()->fill_in_tree(gogo, t); + break; + + case TYPE_ARRAY: + if (!base->is_open_array_type()) + t = base->array_type()->fill_in_array_tree(gogo, t); + break; + + case TYPE_INTERFACE: + if (!base->interface_type()->is_empty()) + t = base->interface_type()->fill_in_tree(gogo, t); + break; + + case TYPE_ERROR: + return; + + default: + case TYPE_SINK: + case TYPE_CALL_MULTIPLE_RESULT: + case TYPE_NAMED: + case TYPE_FORWARD: + gcc_unreachable(); + } + + this->named_tree_ = t; + + if (t == error_mark_node) + this->is_error_ = true; + else + gcc_assert(TYPE_SIZE(t) != NULL_TREE); + + this->is_converted_ = true; +} + +// Create the placeholder for a named type. This is the first step in +// converting to the backend representation. + +void +Named_type::create_placeholder(Gogo* gogo) { if (this->is_error_) - return error_mark_node; + this->named_tree_ = error_mark_node; - // Go permits types to refer to themselves in various ways. Break - // the recursion here. + if (this->named_tree_ != NULL_TREE) + return; + + // Create the structure for this type. Note that because we call + // base() here, we don't attempt to represent a named type defined + // as another named type. Instead both named types will point to + // different base representations. + Type* base = this->type_->base(); tree t; - switch (this->type_->forwarded()->classification()) + switch (base->classification()) { case TYPE_ERROR: - return error_mark_node; + this->is_error_ = true; + this->named_tree_ = error_mark_node; + return; case TYPE_VOID: case TYPE_BOOLEAN: @@ -7097,163 +7199,199 @@ Named_type::do_get_tree(Gogo* gogo) case TYPE_COMPLEX: case TYPE_STRING: case TYPE_NIL: - // These types can not refer to themselves. - case TYPE_MAP: - case TYPE_CHANNEL: - // All maps and channels have the same type in GENERIC. - t = Type::get_named_type_tree(gogo, this->type_); + // These are simple basic types, we can just create them + // directly. + t = Type::get_named_type_tree(gogo, base); if (t == error_mark_node) - return error_mark_node; - // Build a copy to set TYPE_NAME. + { + this->is_error_ = true; + this->named_tree_ = error_mark_node; + return; + } t = build_variant_type_copy(t); break; - case TYPE_FUNCTION: - // GENERIC can't handle a pointer to a function type whose - // return type is a pointer to the function type itself. It - // goes into an infinite loop when walking the types. - if (this->seen_ > 0) + case TYPE_MAP: + case TYPE_CHANNEL: + // All maps and channels have the same type in GENERIC. + t = Type::get_named_type_tree(gogo, base); + if (t == error_mark_node) { - Function_type* fntype = this->type_->function_type(); - if (fntype->results() != NULL - && fntype->results()->size() == 1 - && fntype->results()->front().type()->forwarded() == this) - return ptr_type_node; - - // We can legitimately see ourselves here twice when a named - // type is defined using a struct which refers to the named - // type. If we see ourselves too often we are in a loop. - if (this->seen_ > 3) - return ptr_type_node; + this->is_error_ = true; + this->named_tree_ = error_mark_node; + return; } - ++this->seen_; - t = Type::get_named_type_tree(gogo, this->type_); - --this->seen_; - if (t == error_mark_node) - return error_mark_node; t = build_variant_type_copy(t); break; + case TYPE_FUNCTION: case TYPE_POINTER: - // Don't recur infinitely if a pointer type refers to itself. - // Ideally we would build a circular data structure here, but - // GENERIC can't handle them. - if (this->seen_ > 0) - { - if (this->type_->points_to()->forwarded() == this) - return ptr_type_node; - - if (this->seen_ > 3) - return ptr_type_node; - } - ++this->seen_; - t = Type::get_named_type_tree(gogo, this->type_); - --this->seen_; - if (t == error_mark_node) - return error_mark_node; - t = build_variant_type_copy(t); + t = build_variant_type_copy(ptr_type_node); break; case TYPE_STRUCT: - // If there are structs which must be converted first, do them. - if (this->seen_ == 0) - { - ++this->seen_; - this->type_->struct_type()->convert_prerequisites(gogo); - --this->seen_; - } - - if (this->named_tree_ != NULL_TREE) - return this->named_tree_; - t = make_node(RECORD_TYPE); - this->named_tree_ = t; - t = this->type_->struct_type()->fill_in_tree(gogo, t); - if (t == error_mark_node) - { - this->named_tree_ = error_mark_node; - return error_mark_node; - } break; case TYPE_ARRAY: - if (this->named_tree_ != NULL_TREE) - return this->named_tree_; - if (!this->is_open_array_type()) - { - t = make_node(ARRAY_TYPE); - this->named_tree_ = t; - t = this->type_->array_type()->fill_in_array_tree(gogo, t); - } + if (base->is_open_array_type()) + t = gogo->slice_type_tree(void_type_node); else - { - t = gogo->slice_type_tree(void_type_node); - this->named_tree_ = t; - t = this->type_->array_type()->fill_in_slice_tree(gogo, t); - } - if (t == error_mark_node) - return error_mark_node; - t = build_variant_type_copy(t); + t = make_node(ARRAY_TYPE); break; case TYPE_INTERFACE: - if (this->type_->interface_type()->is_empty()) + if (base->interface_type()->is_empty()) { - t = Type::get_named_type_tree(gogo, this->type_); - if (t == error_mark_node) - return error_mark_node; + t = Interface_type::empty_type_tree(gogo); t = build_variant_type_copy(t); } else { - if (this->named_tree_ != NULL_TREE) - return this->named_tree_; - t = make_node(RECORD_TYPE); - this->named_tree_ = t; - t = this->type_->interface_type()->fill_in_tree(gogo, t); - if (t == error_mark_node) - { - this->named_tree_ = error_mark_node; - return error_mark_node; - } + source_location loc = base->interface_type()->location(); + t = Interface_type::non_empty_type_tree(loc); } break; - case TYPE_NAMED: - { - // When a named type T1 is defined as another named type T2, - // the definition must simply be "type T1 T2". If the - // definition of T2 may refer to T1, then we must simply - // return the type for T2 here. It's not precisely correct, - // but it's as close as we can get with GENERIC. - ++this->seen_; - t = Type::get_named_type_tree(gogo, this->type_); - --this->seen_; - if (this->seen_ > 0) - return t; - if (t == error_mark_node) - return error_mark_node; - t = build_variant_type_copy(t); - } - break; - - case TYPE_FORWARD: - // An undefined forwarding type. Make sure the error is - // emitted. - this->type_->forward_declaration_type()->real_type(); - return error_mark_node; - default: case TYPE_SINK: case TYPE_CALL_MULTIPLE_RESULT: + case TYPE_NAMED: + case TYPE_FORWARD: gcc_unreachable(); } + // Create the named type. + tree id = this->named_object_->get_id(gogo); tree decl = build_decl(this->location_, TYPE_DECL, id, t); TYPE_NAME(t) = decl; - return t; + this->named_tree_ = t; +} + +// Get a tree for a named type. + +tree +Named_type::do_get_tree(Gogo* gogo) +{ + if (this->is_error_) + return error_mark_node; + + tree t = this->named_tree_; + + // FIXME: GOGO can be NULL when called from go_type_for_size, which + // is only used for basic types. + if (gogo == NULL || !gogo->named_types_are_converted()) + { + // We have not completed converting named types. NAMED_TREE_ is + // a placeholder and we shouldn't do anything further. + if (t != NULL_TREE) + return t; + + // We don't build dependencies for types whose sizes do not + // change or are not relevant, so we may see them here while + // converting types. + this->create_placeholder(gogo); + t = this->named_tree_; + gcc_assert(t != NULL_TREE); + return t; + } + + // We are not converting types. This should only be called if the + // type has already been converted. + if (!this->is_converted_) + { + gcc_assert(saw_errors()); + return error_mark_node; + } + + gcc_assert(t != NULL_TREE && TYPE_SIZE(t) != NULL_TREE); + + // Complete the tree. + Type* base = this->type_->base(); + tree t1; + switch (base->classification()) + { + case TYPE_ERROR: + return error_mark_node; + + case TYPE_VOID: + case TYPE_BOOLEAN: + case TYPE_INTEGER: + case TYPE_FLOAT: + case TYPE_COMPLEX: + case TYPE_STRING: + case TYPE_NIL: + case TYPE_MAP: + case TYPE_CHANNEL: + case TYPE_STRUCT: + case TYPE_INTERFACE: + return t; + + case TYPE_FUNCTION: + // Don't build a circular data structure. GENERIC can't handle + // it. + if (this->seen_ > 0) + { + this->is_circular_ = true; + return ptr_type_node; + } + ++this->seen_; + t1 = Type::get_named_type_tree(gogo, base); + --this->seen_; + if (t1 == error_mark_node) + return error_mark_node; + if (this->is_circular_) + t1 = ptr_type_node; + gcc_assert(t != NULL_TREE && TREE_CODE(t) == POINTER_TYPE); + gcc_assert(TREE_CODE(t1) == POINTER_TYPE); + TREE_TYPE(t) = TREE_TYPE(t1); + return t; + + case TYPE_POINTER: + // Don't build a circular data structure. GENERIC can't handle + // it. + if (this->seen_ > 0) + { + this->is_circular_ = true; + return ptr_type_node; + } + ++this->seen_; + t1 = Type::get_named_type_tree(gogo, base); + --this->seen_; + if (t1 == error_mark_node) + return error_mark_node; + if (this->is_circular_) + t1 = ptr_type_node; + gcc_assert(t != NULL_TREE && TREE_CODE(t) == POINTER_TYPE); + gcc_assert(TREE_CODE(t1) == POINTER_TYPE); + TREE_TYPE(t) = TREE_TYPE(t1); + return t; + + case TYPE_ARRAY: + if (base->is_open_array_type()) + { + if (this->seen_ > 0) + return t; + else + { + ++this->seen_; + t = base->array_type()->fill_in_slice_tree(gogo, t); + --this->seen_; + } + } + return t; + + default: + case TYPE_SINK: + case TYPE_CALL_MULTIPLE_RESULT: + case TYPE_NAMED: + case TYPE_FORWARD: + gcc_unreachable(); + } + + gcc_unreachable(); } // Build a type descriptor for a named type. @@ -7835,9 +7973,7 @@ Type::bind_field_or_method(Gogo* gogo, const Type* type, Expression* expr, if (type->deref()->is_error_type()) return Expression::make_error(location); - const Named_type* nt = type->named_type(); - if (nt == NULL) - nt = type->deref()->named_type(); + const Named_type* nt = type->deref()->named_type(); const Struct_type* st = type->deref()->struct_type(); const Interface_type* it = type->deref()->interface_type(); diff --git a/gcc/go/gofrontend/types.h b/gcc/go/gofrontend/types.h index b0dbefed455..8e91dfcab07 100644 --- a/gcc/go/gofrontend/types.h +++ b/gcc/go/gofrontend/types.h @@ -799,6 +799,10 @@ class Type check_make_expression(Expression_list* args, source_location location) { return this->do_check_make_expression(args, location); } + // Convert the builtin named types. + static void + convert_builtin_named_types(Gogo*); + // Return a tree representing this type. tree get_tree(Gogo*); @@ -1082,6 +1086,9 @@ class Type static Type_trees type_trees; + // A list of builtin named types. + static std::vector<Named_type*> named_builtin_types; + // The type classification. Type_classification classification_; // The tree representation of the type, once it has been determined. @@ -1605,6 +1612,9 @@ class Function_type : public Type Function_type* copy_with_receiver(Type*) const; + static Type* + make_function_type_descriptor_type(); + protected: int do_traverse(Traverse*); @@ -1636,9 +1646,6 @@ class Function_type : public Type do_export(Export*) const; private: - static Type* - make_function_type_descriptor_type(); - Expression* type_descriptor_params(Type*, const Typed_identifier*, const Typed_identifier_list*); @@ -1680,6 +1687,9 @@ class Pointer_type : public Type static Pointer_type* do_import(Import*); + static Type* + make_pointer_type_descriptor_type(); + protected: int do_traverse(Traverse*); @@ -1710,9 +1720,6 @@ class Pointer_type : public Type do_export(Export*) const; private: - static Type* - make_pointer_type_descriptor_type(); - // The type to which this type points. Type* to_type_; }; @@ -1841,8 +1848,7 @@ class Struct_type : public Type public: Struct_type(Struct_field_list* fields, source_location location) : Type(TYPE_STRUCT), - fields_(fields), location_(location), all_methods_(NULL), - prerequisites_() + fields_(fields), location_(location), all_methods_(NULL) { } // Return the field NAME. This only looks at local fields, not at @@ -1937,16 +1943,8 @@ class Struct_type : public Type tree fill_in_tree(Gogo*, tree); - // Note that a struct must be converted to the backend - // representation before we convert this struct. - void - add_prerequisite(Named_type* nt) - { this->prerequisites_.push_back(nt); } - - // If there are any structs which must be converted to the backend - // representation before this one, convert them. - void - convert_prerequisites(Gogo*); + static Type* + make_struct_type_descriptor_type(); protected: int @@ -1992,25 +1990,12 @@ class Struct_type : public Type source_location, Saw_named_type*, unsigned int* depth) const; - static Type* - make_struct_type_descriptor_type(); - // The fields of the struct. Struct_field_list* fields_; // The place where the struct was declared. source_location location_; // If this struct is unnamed, a list of methods. Methods* all_methods_; - // A list of structs which must be converted to the backend - // representation before this struct can be converted. This is for - // cases like - // type S1 { p *S2 } - // type S2 { s S1 } - // where we must start converting S2 before we start converting S1. - // That is because we can fully convert S1 before S2 is complete, - // but we can not fully convert S2 before S1 is complete. If we - // start converting S1 first, we won't be able to convert S2. - std::vector<Named_type*> prerequisites_; }; // The type of an array. @@ -2066,6 +2051,12 @@ class Array_type : public Type tree fill_in_slice_tree(Gogo*, tree); + static Type* + make_array_type_descriptor_type(); + + static Type* + make_slice_type_descriptor_type(); + protected: int do_traverse(Traverse* traverse); @@ -2114,12 +2105,6 @@ class Array_type : public Type tree get_length_tree(Gogo*); - Type* - make_array_type_descriptor_type(); - - Type* - make_slice_type_descriptor_type(); - Expression* array_type_descriptor(Gogo*, Named_type*); @@ -2162,6 +2147,9 @@ class Map_type : public Type static Map_type* do_import(Import*); + static Type* + make_map_type_descriptor_type(); + protected: int do_traverse(Traverse*); @@ -2202,9 +2190,6 @@ class Map_type : public Type do_export(Export*) const; private: - static Type* - make_map_type_descriptor_type(); - // The key type. Type* key_type_; // The value type. @@ -2248,6 +2233,9 @@ class Channel_type : public Type static Channel_type* do_import(Import*); + static Type* + make_chan_type_descriptor_type(); + protected: int do_traverse(Traverse* traverse) @@ -2286,9 +2274,6 @@ class Channel_type : public Type do_export(Export*) const; private: - static Type* - make_chan_type_descriptor_type(); - // Whether this channel can send data. bool may_send_; // Whether this channel can receive data. @@ -2308,6 +2293,11 @@ class Interface_type : public Type methods_(methods), location_(location) { gcc_assert(methods == NULL || !methods->empty()); } + // The location where the interface type was defined. + source_location + location() const + { return this->location_; } + // Return whether this is an empty interface. bool is_empty() const @@ -2361,10 +2351,21 @@ class Interface_type : public Type static Interface_type* do_import(Import*); + // Make a struct for an empty interface type. + static tree + empty_type_tree(Gogo*); + + // Make a struct for non-empty interface type. + static tree + non_empty_type_tree(source_location); + // Fill in the fields for a named interface type. tree fill_in_tree(Gogo*, tree); + static Type* + make_interface_type_descriptor_type(); + protected: int do_traverse(Traverse*); @@ -2395,9 +2396,6 @@ class Interface_type : public Type do_export(Export*) const; private: - static Type* - make_interface_type_descriptor_type(); - // The list of methods associated with the interface. This will be // NULL for the empty interface. Typed_identifier_list* methods_; @@ -2419,8 +2417,9 @@ class Named_type : public Type named_object_(named_object), in_function_(NULL), type_(type), local_methods_(NULL), all_methods_(NULL), interface_method_tables_(NULL), pointer_interface_method_tables_(NULL), - location_(location), named_tree_(NULL), is_visible_(true), - is_error_(false), seen_(0) + location_(location), named_tree_(NULL), dependencies_(), + is_visible_(true), is_error_(false), is_converted_(false), + is_circular_(false), seen_(0) { } // Return the associated Named_object. This holds the actual name. @@ -2493,6 +2492,12 @@ class Named_type : public Type is_builtin() const { return this->location_ == BUILTINS_LOCATION; } + // Whether this is a circular type: a pointer or function type that + // refers to itself, which is not possible in C. + bool + is_circular() const + { return this->is_circular_; } + // Return the base type for this type. Type* named_base(); @@ -2567,6 +2572,12 @@ class Named_type : public Type bool named_type_has_hidden_fields(std::string* reason) const; + // Note that a type must be converted to the backend representation + // before we convert this type. + void + add_dependency(Named_type* nt) + { this->dependencies_.push_back(nt); } + // Export the type. void export_named_type(Export*, const std::string& name) const; @@ -2575,6 +2586,10 @@ class Named_type : public Type static void import_named_type(Import*, Named_type**); + // Initial conversion to backend representation. + void + convert(Gogo*); + protected: int do_traverse(Traverse* traverse) @@ -2618,6 +2633,10 @@ class Named_type : public Type do_export(Export*) const; private: + // Create the placeholder during conversion. + void + create_placeholder(Gogo*); + // A mapping from interfaces to the associated interface method // tables for this type. This maps to a decl. typedef Unordered_map_hash(const Interface_type*, tree, Type_hash_identical, @@ -2647,6 +2666,14 @@ class Named_type : public Type // The tree for this type while converting to GENERIC. This is used // to avoid endless recursion when a named type refers to itself. tree named_tree_; + // A list of types which must be converted to the backend + // representation before this type can be converted. This is for + // cases like + // type S1 { p *S2 } + // type S2 { s S1 } + // where we can't convert S2 to the backend representation unless we + // have converted S1. + std::vector<Named_type*> dependencies_; // Whether this type is visible. This is false if this type was // created because it was referenced by an imported object, but the // type itself was not exported. This will always be true for types @@ -2654,6 +2681,12 @@ class Named_type : public Type bool is_visible_; // Whether this type is erroneous. bool is_error_; + // Whether this type has been converted to the backend + // representation. + bool is_converted_; + // Whether this is a pointer or function type which refers to the + // type itself. + bool is_circular_; // In a recursive operation such as has_hidden_fields, this flag is // used to prevent infinite recursion when a type refers to itself. // This is mutable because it is always reset to false when the diff --git a/gcc/ipa-cp.c b/gcc/ipa-cp.c index 0ef640bcde9..db0941c36a3 100644 --- a/gcc/ipa-cp.c +++ b/gcc/ipa-cp.c @@ -1,5 +1,5 @@ /* Interprocedural constant propagation - Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 + Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. Contributed by Razya Ladelsky <RAZYA@il.ibm.com> @@ -587,8 +587,9 @@ ipcp_initialize_node_lattices (struct cgraph_node *node) } } -/* build INTEGER_CST tree with type TREE_TYPE and value according to LAT. - Return the tree. */ +/* Build a constant tree with type TREE_TYPE and value according to LAT. + Return the tree, or, if it is not possible to convert such value + to TREE_TYPE, NULL. */ static tree build_const_val (struct ipcp_lattice *lat, tree tree_type) { @@ -601,8 +602,10 @@ build_const_val (struct ipcp_lattice *lat, tree tree_type) { if (fold_convertible_p (tree_type, val)) return fold_build1 (NOP_EXPR, tree_type, val); - else + else if (TYPE_SIZE (tree_type) == TYPE_SIZE (TREE_TYPE (val))) return fold_build1 (VIEW_CONVERT_EXPR, tree_type, val); + else + return NULL; } return val; } @@ -976,8 +979,20 @@ ipcp_create_replace_map (tree parm_tree, struct ipcp_lattice *lat) struct ipa_replace_map *replace_map; tree const_val; - replace_map = ggc_alloc_ipa_replace_map (); const_val = build_const_val (lat, TREE_TYPE (parm_tree)); + if (const_val == NULL_TREE) + { + if (dump_file) + { + fprintf (dump_file, " const "); + print_generic_expr (dump_file, lat->constant, 0); + fprintf (dump_file, " can't be converted to param "); + print_generic_expr (dump_file, parm_tree, 0); + fprintf (dump_file, "\n"); + } + return NULL; + } + replace_map = ggc_alloc_ipa_replace_map (); if (dump_file) { fprintf (dump_file, " replacing param "); @@ -1378,15 +1393,6 @@ ipcp_insert_stage (void) continue; } - new_size += growth; - - /* Look if original function becomes dead after cloning. */ - for (cs = node->callers; cs != NULL; cs = cs->next_caller) - if (cs->caller == node || ipcp_need_redirect_p (cs)) - break; - if (!cs && cgraph_will_be_removed_from_program_if_no_direct_calls (node)) - bitmap_set_bit (dead_nodes, node->uid); - info = IPA_NODE_REF (node); count = ipa_get_param_count (info); @@ -1413,11 +1419,28 @@ ipcp_insert_stage (void) { replace_param = ipcp_create_replace_map (parm_tree, lat); + if (replace_param == NULL) + break; VEC_safe_push (ipa_replace_map_p, gc, replace_trees, replace_param); if (args_to_skip) bitmap_set_bit (args_to_skip, i); } } + if (i < count) + { + if (dump_file) + fprintf (dump_file, "Not versioning, some parameters couldn't be replaced"); + continue; + } + + new_size += growth; + + /* Look if original function becomes dead after cloning. */ + for (cs = node->callers; cs != NULL; cs = cs->next_caller) + if (cs->caller == node || ipcp_need_redirect_p (cs)) + break; + if (!cs && cgraph_will_be_removed_from_program_if_no_direct_calls (node)) + bitmap_set_bit (dead_nodes, node->uid); /* Compute how many callers node has. */ node_callers = 0; diff --git a/gcc/ipa-inline.c b/gcc/ipa-inline.c index 10e57a8750e..e8676c8394b 100644 --- a/gcc/ipa-inline.c +++ b/gcc/ipa-inline.c @@ -1243,7 +1243,7 @@ cgraph_decide_inlining_of_small_functions (void) if (dump_file) { fprintf (dump_file, - " Inlined into %s which now has size %i and self time %i," + " Inlined into %s which now has time %i and size %i," "net change of %+i.\n", cgraph_node_name (edge->caller), edge->caller->global.time, diff --git a/gcc/lto-cgraph.c b/gcc/lto-cgraph.c index fb05a1d05cb..ae49ae6543f 100644 --- a/gcc/lto-cgraph.c +++ b/gcc/lto-cgraph.c @@ -551,6 +551,7 @@ lto_output_node (struct lto_simple_output_block *ob, struct cgraph_node *node, lto_output_fn_decl_index (ob->decl_state, ob->main_stream, alias->thunk.alias); } + gcc_assert (cgraph_get_node (alias->thunk.alias) == node); lto_output_uleb128_stream (ob->main_stream, alias->resolution); alias = alias->previous; } @@ -1094,7 +1095,7 @@ input_node (struct lto_file_decl_data *file_data, tree real_alias; decl_index = lto_input_uleb128 (ib); real_alias = lto_file_decl_data_get_fn_decl (file_data, decl_index); - alias = cgraph_same_body_alias (alias_decl, real_alias); + alias = cgraph_same_body_alias (node, alias_decl, real_alias); } else { @@ -1103,12 +1104,13 @@ input_node (struct lto_file_decl_data *file_data, tree real_alias; decl_index = lto_input_uleb128 (ib); real_alias = lto_file_decl_data_get_fn_decl (file_data, decl_index); - alias = cgraph_add_thunk (alias_decl, fn_decl, type & 2, fixed_offset, + alias = cgraph_add_thunk (node, alias_decl, fn_decl, type & 2, fixed_offset, virtual_value, (type & 4) ? size_int (virtual_value) : NULL_TREE, real_alias); } - alias->resolution = (enum ld_plugin_symbol_resolution)lto_input_uleb128 (ib); + gcc_assert (alias); + alias->resolution = (enum ld_plugin_symbol_resolution)lto_input_uleb128 (ib); } return node; } diff --git a/gcc/lto-streamer-in.c b/gcc/lto-streamer-in.c index 058885d2252..a87325835f2 100644 --- a/gcc/lto-streamer-in.c +++ b/gcc/lto-streamer-in.c @@ -1980,7 +1980,9 @@ lto_input_ts_decl_common_tree_pointers (struct lto_input_block *ib, DECL_INITIAL (expr) = lto_input_tree (ib, data_in); DECL_ATTRIBUTES (expr) = lto_input_tree (ib, data_in); - DECL_ABSTRACT_ORIGIN (expr) = lto_input_tree (ib, data_in); + /* Do not stream DECL_ABSTRACT_ORIGIN. We cannot handle debug information + for early inlining so drop it on the floor instead of ICEing in + dwarf2out.c. */ if (TREE_CODE (expr) == PARM_DECL) TREE_CHAIN (expr) = lto_input_chain (ib, data_in); @@ -2179,24 +2181,19 @@ static void lto_input_ts_block_tree_pointers (struct lto_input_block *ib, struct data_in *data_in, tree expr) { - unsigned i, len; - - BLOCK_SOURCE_LOCATION (expr) = lto_input_location (ib, data_in); + /* Do not stream BLOCK_SOURCE_LOCATION. We cannot handle debug information + for early inlining so drop it on the floor instead of ICEing in + dwarf2out.c. */ BLOCK_VARS (expr) = lto_input_chain (ib, data_in); - len = lto_input_uleb128 (ib); - if (len > 0) - { - VEC_reserve_exact (tree, gc, BLOCK_NONLOCALIZED_VARS (expr), len); - for (i = 0; i < len; i++) - { - tree t = lto_input_tree (ib, data_in); - VEC_quick_push (tree, BLOCK_NONLOCALIZED_VARS (expr), t); - } - } + /* Do not stream BLOCK_NONLOCALIZED_VARS. We cannot handle debug information + for early inlining so drop it on the floor instead of ICEing in + dwarf2out.c. */ BLOCK_SUPERCONTEXT (expr) = lto_input_tree (ib, data_in); - BLOCK_ABSTRACT_ORIGIN (expr) = lto_input_tree (ib, data_in); + /* Do not stream BLOCK_ABSTRACT_ORIGIN. We cannot handle debug information + for early inlining so drop it on the floor instead of ICEing in + dwarf2out.c. */ BLOCK_FRAGMENT_ORIGIN (expr) = lto_input_tree (ib, data_in); BLOCK_FRAGMENT_CHAIN (expr) = lto_input_tree (ib, data_in); /* We re-compute BLOCK_SUBBLOCKS of our parent here instead diff --git a/gcc/lto-streamer-out.c b/gcc/lto-streamer-out.c index 29d171bd7f4..ba916b64c34 100644 --- a/gcc/lto-streamer-out.c +++ b/gcc/lto-streamer-out.c @@ -870,7 +870,9 @@ lto_output_ts_decl_common_tree_pointers (struct output_block *ob, tree expr, } lto_output_tree_or_ref (ob, DECL_ATTRIBUTES (expr), ref_p); - lto_output_tree_or_ref (ob, DECL_ABSTRACT_ORIGIN (expr), ref_p); + /* Do not stream DECL_ABSTRACT_ORIGIN. We cannot handle debug information + for early inlining so drop it on the floor instead of ICEing in + dwarf2out.c. */ if (TREE_CODE (expr) == PARM_DECL) lto_output_chain (ob, TREE_CHAIN (expr), ref_p); @@ -1054,21 +1056,19 @@ static void lto_output_ts_block_tree_pointers (struct output_block *ob, tree expr, bool ref_p) { - unsigned i; - tree t; - - lto_output_location (ob, BLOCK_SOURCE_LOCATION (expr)); + /* Do not stream BLOCK_SOURCE_LOCATION. We cannot handle debug information + for early inlining so drop it on the floor instead of ICEing in + dwarf2out.c. */ lto_output_chain (ob, BLOCK_VARS (expr), ref_p); - output_uleb128 (ob, VEC_length (tree, BLOCK_NONLOCALIZED_VARS (expr))); - FOR_EACH_VEC_ELT (tree, BLOCK_NONLOCALIZED_VARS (expr), i, t) - { - gcc_assert (DECL_CONTEXT (t) != expr); - lto_output_tree_or_ref (ob, t, ref_p); - } + /* Do not stream BLOCK_NONLOCALIZED_VARS. We cannot handle debug information + for early inlining so drop it on the floor instead of ICEing in + dwarf2out.c. */ lto_output_tree_or_ref (ob, BLOCK_SUPERCONTEXT (expr), ref_p); - lto_output_tree_or_ref (ob, BLOCK_ABSTRACT_ORIGIN (expr), ref_p); + /* Do not stream BLOCK_ABSTRACT_ORIGIN. We cannot handle debug information + for early inlining so drop it on the floor instead of ICEing in + dwarf2out.c. */ lto_output_tree_or_ref (ob, BLOCK_FRAGMENT_ORIGIN (expr), ref_p); lto_output_tree_or_ref (ob, BLOCK_FRAGMENT_CHAIN (expr), ref_p); /* Do not output BLOCK_SUBBLOCKS. Instead on streaming-in this diff --git a/gcc/lto-streamer.c b/gcc/lto-streamer.c index dba9d2d5dd7..67132ef1dff 100644 --- a/gcc/lto-streamer.c +++ b/gcc/lto-streamer.c @@ -527,7 +527,9 @@ lto_record_common_node (tree *nodep, VEC(tree, heap) **common_nodes, are set by the middle-end. */ if (in_lto_p) TYPE_CANONICAL (node) = NULL_TREE; - *nodep = node = gimple_register_type (node); + node = gimple_register_type (node); + TYPE_CANONICAL (node) = gimple_register_canonical_type (node); + *nodep = node; } /* Return if node is already seen. */ diff --git a/gcc/lto-symtab.c b/gcc/lto-symtab.c index 75732768653..b02aabab14d 100644 --- a/gcc/lto-symtab.c +++ b/gcc/lto-symtab.c @@ -273,7 +273,6 @@ lto_cgraph_replace_node (struct cgraph_node *node, last = alias; gcc_assert (alias->same_body_alias); alias->same_body = prevailing_node; - alias->thunk.alias = prevailing_node->decl; } last->next = prevailing_node->same_body; /* Node with aliases is prevailed by alias. @@ -828,8 +827,16 @@ lto_symtab_merge_cgraph_nodes_1 (void **slot, void *data ATTRIBUTE_UNUSED) void lto_symtab_merge_cgraph_nodes (void) { + struct cgraph_node *node, *alias, *next; lto_symtab_maybe_init_hash_table (); htab_traverse (lto_symtab_identifiers, lto_symtab_merge_cgraph_nodes_1, NULL); + + for (node = cgraph_nodes; node; node = node->next) + for (alias = node->same_body; alias; alias = next) + { + next = alias->next; + alias->thunk.alias = lto_symtab_prevailing_decl (alias->thunk.alias); + } } /* Given the decl DECL, return the prevailing decl with the same name. */ diff --git a/gcc/objc/ChangeLog b/gcc/objc/ChangeLog index b547316d82e..5194347535c 100644 --- a/gcc/objc/ChangeLog +++ b/gcc/objc/ChangeLog @@ -1,3 +1,7 @@ +2011-03-06 Joseph Myers <joseph@codesourcery.com> + + * lang-specs.h: Match -save-temps* instead of -save-temps. + 2011-02-26 Nicola Pero <nicola.pero@meta-innovation.com> * objc-act.c (objc_v2_encode_prop_attr): Rewritten. diff --git a/gcc/objc/lang-specs.h b/gcc/objc/lang-specs.h index 70d9bba117b..8eac47b712f 100644 --- a/gcc/objc/lang-specs.h +++ b/gcc/objc/lang-specs.h @@ -1,5 +1,5 @@ /* Definitions for specs for Objective-C. - Copyright (C) 1998, 1999, 2002, 2002, 2003, 2005, 2007, 2010 + Copyright (C) 1998, 1999, 2002, 2002, 2003, 2005, 2007, 2010, 2011 Free Software Foundation, Inc. This file is part of GCC. @@ -29,9 +29,9 @@ along with GCC; see the file COPYING3. If not see %{!E:%{!M:%{!MM:\ %{traditional|traditional-cpp:\ %eGNU Objective C no longer supports traditional compilation}\ - %{save-temps|no-integrated-cpp:cc1obj -E %(cpp_options) -o %{save-temps:%b.mi} %{!save-temps:%g.mi} \n\ - cc1obj -fpreprocessed %{save-temps:%b.mi} %{!save-temps:%g.mi} %(cc1_options) %{print-objc-runtime-info} %{gen-decls}}\ - %{!save-temps:%{!no-integrated-cpp:\ + %{save-temps*|no-integrated-cpp:cc1obj -E %(cpp_options) -o %{save-temps*:%b.mi} %{!save-temps*:%g.mi} \n\ + cc1obj -fpreprocessed %{save-temps*:%b.mi} %{!save-temps*:%g.mi} %(cc1_options) %{print-objc-runtime-info} %{gen-decls}}\ + %{!save-temps*:%{!no-integrated-cpp:\ cc1obj %(cpp_unique_options) %(cc1_options) %{print-objc-runtime-info} %{gen-decls}}}\ %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 0}, {"@objective-c-header", @@ -40,11 +40,11 @@ along with GCC; see the file COPYING3. If not see %{!E:%{!M:%{!MM:\ %{traditional|traditional-cpp:\ %eGNU Objective C no longer supports traditional compilation}\ - %{save-temps|no-integrated-cpp:cc1obj -E %(cpp_options) -o %{save-temps:%b.mi} %{!save-temps:%g.mi} \n\ + %{save-temps*|no-integrated-cpp:cc1obj -E %(cpp_options) -o %{save-temps*:%b.mi} %{!save-temps*:%g.mi} \n\ cc1obj -fpreprocessed %b.mi %(cc1_options) %{print-objc-runtime-info} %{gen-decls}\ -o %g.s %{!o*:--output-pch=%i.gch}\ %W{o*:--output-pch=%*}%V}\ - %{!save-temps:%{!no-integrated-cpp:\ + %{!save-temps*:%{!no-integrated-cpp:\ cc1obj %(cpp_unique_options) %(cc1_options) %{print-objc-runtime-info} %{gen-decls}\ -o %g.s %{!o*:--output-pch=%i.gch}\ %W{o*:--output-pch=%*}%V}}}}}", 0, 0, 0}, diff --git a/gcc/objcp/ChangeLog b/gcc/objcp/ChangeLog index 97d28f85440..c8d697c581d 100644 --- a/gcc/objcp/ChangeLog +++ b/gcc/objcp/ChangeLog @@ -1,3 +1,7 @@ +2011-03-06 Joseph Myers <joseph@codesourcery.com> + + * lang-specs.h: Match -save-temps* instead of -save-temps. + 2011-02-20 Nicola Pero <nicola.pero@meta-innovation.com> PR objc++/47711 diff --git a/gcc/objcp/lang-specs.h b/gcc/objcp/lang-specs.h index 90dc4a41c4e..af21ff6d63f 100644 --- a/gcc/objcp/lang-specs.h +++ b/gcc/objcp/lang-specs.h @@ -1,5 +1,5 @@ /* Definitions for specs for Objective-C++. - Copyright (C) 2005, 2007, 2010 Free Software Foundation, Inc. + Copyright (C) 2005, 2007, 2010, 2011 Free Software Foundation, Inc. Contributed by Ziemowit Laski <zlaski@apple.com> This file is part of GCC. @@ -32,20 +32,20 @@ along with GCC; see the file COPYING3. If not see {"@objective-c++-header", "%{E|M|MM:cc1objplus -E %(cpp_options) %2 %(cpp_debug_options)}\ %{!E:%{!M:%{!MM:\ - %{save-temps|no-integrated-cpp:cc1objplus -E\ - %(cpp_options) %2 -o %{save-temps:%b.mii} %{!save-temps:%g.mii} \n}\ - cc1objplus %{save-temps|no-integrated-cpp:-fpreprocessed %{save-temps:%b.mii} %{!save-temps:%g.mii}}\ - %{!save-temps:%{!no-integrated-cpp:%(cpp_unique_options)}}\ + %{save-temps*|no-integrated-cpp:cc1objplus -E\ + %(cpp_options) %2 -o %{save-temps*:%b.mii} %{!save-temps*:%g.mii} \n}\ + cc1objplus %{save-temps*|no-integrated-cpp:-fpreprocessed %{save-temps*:%b.mii} %{!save-temps*:%g.mii}}\ + %{!save-temps*:%{!no-integrated-cpp:%(cpp_unique_options)}}\ %(cc1_options) %2\ -o %g.s %{!o*:--output-pch=%i.gch} %W{o*:--output-pch=%*}%V}}}", CPLUSPLUS_CPP_SPEC, 0, 0}, {"@objective-c++", "%{E|M|MM:cc1objplus -E %(cpp_options) %2 %(cpp_debug_options)}\ %{!E:%{!M:%{!MM:\ - %{save-temps|no-integrated-cpp:cc1objplus -E\ - %(cpp_options) %2 -o %{save-temps:%b.mii} %{!save-temps:%g.mii} \n}\ - cc1objplus %{save-temps|no-integrated-cpp:-fpreprocessed %{save-temps:%b.mii} %{!save-temps:%g.mii}}\ - %{!save-temps:%{!no-integrated-cpp:%(cpp_unique_options)}}\ + %{save-temps*|no-integrated-cpp:cc1objplus -E\ + %(cpp_options) %2 -o %{save-temps*:%b.mii} %{!save-temps*:%g.mii} \n}\ + cc1objplus %{save-temps*|no-integrated-cpp:-fpreprocessed %{save-temps*:%b.mii} %{!save-temps*:%g.mii}}\ + %{!save-temps*:%{!no-integrated-cpp:%(cpp_unique_options)}}\ %(cc1_options) %2\ %{!fsyntax-only:%(invoke_as)}}}}", CPLUSPLUS_CPP_SPEC, 0, 0}, diff --git a/gcc/optabs.c b/gcc/optabs.c index 26735dd2ae1..6be8db03cce 100644 --- a/gcc/optabs.c +++ b/gcc/optabs.c @@ -303,7 +303,7 @@ optab_for_tree_code (enum tree_code code, const_tree type, return TYPE_UNSIGNED (type) ? udiv_optab : sdiv_optab; case LSHIFT_EXPR: - if (VECTOR_MODE_P (TYPE_MODE (type))) + if (TREE_CODE (type) == VECTOR_TYPE) { if (subtype == optab_vector) return TYPE_SATURATING (type) ? NULL : vashl_optab; @@ -315,7 +315,7 @@ optab_for_tree_code (enum tree_code code, const_tree type, return ashl_optab; case RSHIFT_EXPR: - if (VECTOR_MODE_P (TYPE_MODE (type))) + if (TREE_CODE (type) == VECTOR_TYPE) { if (subtype == optab_vector) return TYPE_UNSIGNED (type) ? vlshr_optab : vashr_optab; @@ -325,7 +325,7 @@ optab_for_tree_code (enum tree_code code, const_tree type, return TYPE_UNSIGNED (type) ? lshr_optab : ashr_optab; case LROTATE_EXPR: - if (VECTOR_MODE_P (TYPE_MODE (type))) + if (TREE_CODE (type) == VECTOR_TYPE) { if (subtype == optab_vector) return vrotl_optab; @@ -335,7 +335,7 @@ optab_for_tree_code (enum tree_code code, const_tree type, return rotl_optab; case RROTATE_EXPR: - if (VECTOR_MODE_P (TYPE_MODE (type))) + if (TREE_CODE (type) == VECTOR_TYPE) { if (subtype == optab_vector) return vrotr_optab; diff --git a/gcc/po/ChangeLog b/gcc/po/ChangeLog index e66b1fd01cf..9538e9eca50 100644 --- a/gcc/po/ChangeLog +++ b/gcc/po/ChangeLog @@ -1,3 +1,11 @@ +2011-03-06 Joseph Myers <joseph@codesourcery.com> + + * de.po: Update. + +2011-03-05 Joseph Myers <joseph@codesourcery.com> + + * gcc.pot: Regenerate. + 2011-02-27 Joseph Myers <joseph@codesourcery.com> * de.po: Update. diff --git a/gcc/po/de.po b/gcc/po/de.po index 0d27e98b40b..243226db7ca 100644 --- a/gcc/po/de.po +++ b/gcc/po/de.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gcc 4.6-b20101218\n" "Report-Msgid-Bugs-To: http://gcc.gnu.org/bugs.html\n" "POT-Creation-Date: 2010-12-18 20:02+0000\n" -"PO-Revision-Date: 2011-02-28 14:34+0100\n" +"PO-Revision-Date: 2011-03-05 19:50+0100\n" "Last-Translator: Roland Stigge <stigge@antcom.de>\n" "Language-Team: German <translation-team-de@lists.sourceforge.net>\n" "Language: de\n" @@ -11001,9 +11001,8 @@ msgid "Generate debug information in COFF format" msgstr "Fehlersuchinformationen im COFF-Format erzeugen" #: common.opt:2114 -#, fuzzy msgid "Generate debug information in DWARF v2 (or later) format" -msgstr "Fehlersuchinformationen im DWARFv2-Format erzeugen" +msgstr "Fehlersuchinformationen im DWARFv2-Format (oder neuer) erzeugen" #: common.opt:2118 msgid "Generate debug information in default extended format" @@ -11019,16 +11018,15 @@ msgstr "Fehlersuchinformationen im erweiterten STABS-Format erzeugen" #: common.opt:2130 msgid "Emit DWARF additions beyond selected version" -msgstr "" +msgstr "DWARF-Ergänzungen über gewählte Version hinaus ausgeben" #: common.opt:2134 msgid "Don't emit DWARF additions beyond selected version" -msgstr "" +msgstr "Keine DWARF-Ergänzungen über gewählte Version hinaus ausgeben" #: common.opt:2138 -#, fuzzy msgid "Toggle debug information generation" -msgstr "Fehlersuchinformationen im VMS-Format erzeugen" +msgstr "Erzeugung von Fehlersuchinformationen umschalten" #: common.opt:2142 msgid "Generate debug information in VMS format" @@ -11043,14 +11041,12 @@ msgid "Generate debug information in extended XCOFF format" msgstr "Fehlersuchinformationen im erweiterten XCOFF-Format erzeugen" #: common.opt:2157 -#, fuzzy msgid "-iplugindir=<dir>\tSet <dir> to be the default plugin directory" -msgstr "-imultilib <dir> <dir> als Multilib-include-Verzeichnis setzen" +msgstr "-iplugindir=<Verz>\t<Verz> als Standard-Plugin-Verzeichnis setzen" #: common.opt:2176 -#, fuzzy msgid "-o <file>\tPlace output into <file>" -msgstr "Ausgabe in <Datei> schreiben" +msgstr "-o <Datei>\tAusgabe in <Datei> schreiben" #: common.opt:2180 msgid "Enable function profiling" @@ -11392,58 +11388,57 @@ msgid "need explicit conversion; missing method %s%s%s" msgstr "" #: go/gofrontend/types.cc:5731 go/gofrontend/types.cc:5866 -#, fuzzy, c-format +#, c-format msgid "incompatible type for method %s%s%s" -msgstr "Inkompatibler Typ für Argument %d von %qE" +msgstr "Inkompatibler Typ für Methode %s%s%s" #: go/gofrontend/types.cc:5735 go/gofrontend/types.cc:5870 -#, fuzzy, c-format +#, c-format msgid "incompatible type for method %s%s%s (%s)" -msgstr "Inkompatibler Typ für Argument %d von %qE" +msgstr "Inkompatibler Typ für Methode %s%s%s (%s)" #: go/gofrontend/types.cc:5807 go/gofrontend/types.cc:5820 msgid "pointer to interface type has no methods" -msgstr "" +msgstr "Zeiger auf Schnittstellentyp hat keine Methoden" #: go/gofrontend/types.cc:5809 go/gofrontend/types.cc:5822 -#, fuzzy msgid "type has no methods" -msgstr "Fehler beim Analysieren der Methoden" +msgstr "Typ hat keine Methoden" #: go/gofrontend/types.cc:5843 -#, fuzzy, c-format +#, c-format msgid "ambiguous method %s%s%s" -msgstr "mehrdeutige Abkürzung %s" +msgstr "mehrdeutige Methode %s%s%s" #: go/gofrontend/types.cc:5846 -#, fuzzy, c-format +#, c-format msgid "missing method %s%s%s" -msgstr "fehlendes Argument für »%s«" +msgstr "fehlende Methode %s%s%s" #: go/gofrontend/types.cc:5886 #, c-format msgid "method %s%s%s requires a pointer" -msgstr "" +msgstr "Methode %s%s%s erfordert einen Zeiger" #: attribs.c:306 objc/objc-act.c:7712 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%qE attribute directive ignored" -msgstr "Attribut-Anweisung %qs ignoriert" +msgstr "Attribut-Anweisung %qE ignoriert" #: attribs.c:314 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "wrong number of arguments specified for %qE attribute" -msgstr "Falsche Anzahl an Argumenten für das Attribut %qs angegeben" +msgstr "Falsche Anzahl an Argumenten für das Attribut %qE angegeben" #: attribs.c:332 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%qE attribute does not apply to types" -msgstr "Attribut %qs kann nicht auf Typen angewandt werden" +msgstr "Attribut %qE kann nicht auf Typen angewandt werden" #: attribs.c:384 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%qE attribute only applies to function types" -msgstr "Attribut %qs kann nur auf Funktionstypen angewandt werden" +msgstr "Attribut %qE kann nur auf Funktionstypen angewandt werden" #: attribs.c:394 #, gcc-internal-format @@ -11538,14 +11533,14 @@ msgid "both arguments to %<__builtin___clear_cache%> must be pointers" msgstr "beide Argumente für %<__builtin___clear_cache%> müssen Zeiger sein" #: builtins.c:5332 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "trampoline generated for nested function %qD" -msgstr "-mstackrealign für geschachtelte Funktionen ignoriert" +msgstr "Trampolin für geschachtelte Funktion %qD erzeugt" #: builtins.c:5609 builtins.c:5623 #, gcc-internal-format msgid "%qD changed semantics in GCC 4.4" -msgstr "" +msgstr "%qD hat neue Semantik in GCC 4.4" #. All valid uses of __builtin_va_arg_pack () are removed during #. inlining. @@ -11660,9 +11655,9 @@ msgid "array %q+D assumed to have one element" msgstr "Feld %q+D als einelementig betrachtet" #: c-decl.c:726 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%qD is static but used in inline function %qD which is not static" -msgstr "%H%qD ist statisch, wird jedoch in Inline-Funktion %qD verwendet, was nicht statisch ist" +msgstr "%qD ist statisch, wird jedoch in Inline-Funktion %qD verwendet, was nicht statisch ist" #: c-decl.c:731 #, gcc-internal-format @@ -11695,9 +11690,9 @@ msgid "unused variable %q+D" msgstr "Variable %q+D wird nicht verwendet" #: c-decl.c:1164 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "variable %qD set but not used" -msgstr "Marke %q+D definiert, aber nicht verwendet" +msgstr "Variable %qD gesetzt, aber nicht verwendet" #: c-decl.c:1169 #, gcc-internal-format @@ -11705,9 +11700,9 @@ msgid "type of array %q+D completed incompatibly with implicit initialization" msgstr "Typ des Feldes %q+D vervollständigt Unverträglichkeit mit impliziter Initialisierung" #: c-decl.c:1448 c-decl.c:5756 c-decl.c:6553 c-decl.c:7260 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "originally defined here" -msgstr "%Jursprüngliche Definition trat hier auf" +msgstr "ursprünglich hier definiert" #: c-decl.c:1519 #, gcc-internal-format @@ -11790,19 +11785,19 @@ msgid "conflicting types for %q+D" msgstr "In Konflikt stehende Typen für %q+D" #: c-decl.c:1745 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "conflicting named address spaces (generic vs %s) for %q+D" -msgstr "in Konflikt stehenden Typattribute für %q+#D angegeben" +msgstr "in Konflikt stehende benannte Adressräume (generisch und %s) für %q+D" #: c-decl.c:1749 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "conflicting named address spaces (%s vs generic) for %q+D" -msgstr "in Konflikt stehenden Typattribute für %q+#D angegeben" +msgstr "in Konflikt stehende benannte Adressräume (%s und generisch) für %q+D" #: c-decl.c:1753 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "conflicting named address spaces (%s vs %s) for %q+D" -msgstr "in Konflikt stehenden Typattribute für %q+#D angegeben" +msgstr "in Konflikt stehende benannte Adressräume (%s und %s) für %q+D" #: c-decl.c:1762 #, gcc-internal-format @@ -11810,9 +11805,9 @@ msgid "conflicting type qualifiers for %q+D" msgstr "In Konflikt stehende Typqualifizierer für %q+D" #: c-decl.c:1787 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "redefinition of typedef %q+D with different type" -msgstr "Redefinition des typedef %q+D" +msgstr "Redefinition des typedef %q+D mit anderem Typ" #: c-decl.c:1801 #, gcc-internal-format @@ -11826,7 +11821,7 @@ msgstr "Redefinition des typedef %q+D" #: c-decl.c:1810 #, gcc-internal-format msgid "redefinition of typedef %q+D may be a constraint violation at runtime" -msgstr "" +msgstr "Redefinition des typedef %q+D könnte eine Verletzung der Nebenbedingungen zur Laufzeit sein" #: c-decl.c:1864 c-decl.c:1967 #, gcc-internal-format @@ -11849,9 +11844,9 @@ msgid "%<gnu_inline%> attribute present on %q+D" msgstr "Attribut %<gnu_inline%> vorhanden bei %q+D" #: c-decl.c:1936 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "but not here" -msgstr "%Jaber nicht hier" +msgstr "aber nicht hier" #: c-decl.c:1954 #, gcc-internal-format @@ -11924,9 +11919,9 @@ msgid "declaration of %q+D shadows a previous local" msgstr "Deklaration von %q+D überdeckt einen vorhergehenden lokalen Bezeichner" #: c-decl.c:2537 cp/name-lookup.c:1089 cp/name-lookup.c:1131 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "shadowed declaration is here" -msgstr "%JVerdeckte Deklaration ist hier" +msgstr "verdeckte Deklaration ist hier" #: c-decl.c:2664 #, gcc-internal-format @@ -11949,19 +11944,19 @@ msgid "incompatible implicit declaration of function %qD" msgstr "Unverträgliche implizite Deklaration der Funktion %qD" #: c-decl.c:2960 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%qE undeclared here (not in a function)" -msgstr "%H%qE ist hier nicht deklariert (nicht in einer Funktion)" +msgstr "%qE ist hier nicht deklariert (nicht in einer Funktion)" #: c-decl.c:2966 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%qE undeclared (first use in this function)" -msgstr "%H%qE nicht deklariert (erste Benutzung in dieser Funktion)" +msgstr "%qE nicht deklariert (erste Benutzung in dieser Funktion)" #: c-decl.c:2969 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "each undeclared identifier is reported only once for each function it appears in" -msgstr "(Jeder nicht deklarierte Bezeichner wird nur einmal für jede Funktion, in der er vorkommt, gemeldet.)" +msgstr "jeder nicht deklarierte Bezeichner wird nur einmal für jede Funktion, in der er vorkommt, gemeldet" #: c-decl.c:3019 cp/decl.c:2529 #, gcc-internal-format @@ -11974,19 +11969,19 @@ msgid "jump into scope of identifier with variably modified type" msgstr "in Gültigkeitsbereich des Bezeichners mit variabel modifiziertem Typen springen" #: c-decl.c:3058 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "jump skips variable initialization" -msgstr "Fehlende Variableninitialisierung" +msgstr "Sprung lässt Variableninitialisierung aus" #: c-decl.c:3059 c-decl.c:3115 c-decl.c:3198 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "label %qD defined here" -msgstr "Marke %q+D definiert, aber nicht verwendet" +msgstr "Marke %qD hier definiert" #: c-decl.c:3060 c-decl.c:3322 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%qD declared here" -msgstr "%q+D hier deklariert" +msgstr "%qD hier deklariert" #: c-decl.c:3114 c-decl.c:3197 #, gcc-internal-format @@ -12004,29 +11999,29 @@ msgid "duplicate label %qD" msgstr "doppelte Marke %qD" #: c-decl.c:3259 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "traditional C lacks a separate namespace for labels, identifier %qE conflicts" -msgstr "%HTraditionelles C bietet keinen separaten Namespace für Marken an, Bezeichner %qE steht in Konflikt" +msgstr "traditionelles C bietet keinen separaten Namensraum für Marken an, Bezeichner %qE steht in Konflikt" #: c-decl.c:3320 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "switch jumps over variable initialization" -msgstr "inkompatible Typen in Initialisierung" +msgstr "switch springt über Variableninitialisierung" #: c-decl.c:3321 c-decl.c:3332 #, gcc-internal-format msgid "switch starts here" -msgstr "" +msgstr "switch beginnt hier" #: c-decl.c:3331 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "switch jumps into statement expression" -msgstr "Sprung in Anweisungs-Ausdruck" +msgstr "switch springt in Anweisungs-Ausdruck" #: c-decl.c:3402 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%qE defined as wrong kind of tag" -msgstr "%H%qE als falsche Symbolart definiert" +msgstr "%qE als falsche Symbolart definiert" #: c-decl.c:3624 c-typeck.c:10669 c-family/c-common.c:4025 #, gcc-internal-format @@ -12147,14 +12142,14 @@ msgid "inline function %q+D given attribute noinline" msgstr "inline-Funktion %q+D wurde das Attribut »noinline« gegeben" #: c-decl.c:4115 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "uninitialized const member in %qT is invalid in C++" -msgstr "nicht initialisiertes konstantes Element %qD" +msgstr "nicht initialisiertes konstantes Element %qT ist in C++ ungültig" #: c-decl.c:4117 cp/init.c:1882 cp/init.c:1897 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%qD should be initialized" -msgstr "%q+D wird initialisiert nach" +msgstr "%qD sollte initialisiert werden" #: c-decl.c:4195 #, gcc-internal-format @@ -12192,9 +12187,9 @@ msgid "cannot put object with volatile field into register" msgstr "Objekt mit volatile-Feld kann nicht in Register geladen werden" #: c-decl.c:4449 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "uninitialized const %qD is invalid in C++" -msgstr "nicht initialisiertes const %qD" +msgstr "nicht initialisiertes const %qD ist in C++ ungültig" #: c-decl.c:4500 #, gcc-internal-format @@ -12204,7 +12199,7 @@ msgstr "ISO-C verbietet Vorwärtsdeklaration für Parameter" #: c-decl.c:4590 #, gcc-internal-format msgid "defining a type in a compound literal is invalid in C++" -msgstr "" +msgstr "Definition eines Typs in einem zusammengesetzten Literal ist in C++ ungültig" #: c-decl.c:4642 c-decl.c:4657 #, gcc-internal-format @@ -12212,9 +12207,9 @@ msgid "bit-field %qs width not an integer constant" msgstr "Breite des Bitfeldes %qs ist keine Ganzzahlkonstante" #: c-decl.c:4652 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "bit-field %qs width not an integer constant expression" -msgstr "Breite des Bitfeldes %qs ist keine Ganzzahlkonstante" +msgstr "Breite des Bitfeldes %qs ist kein Ganzzahlkonstantenausdruck" #: c-decl.c:4663 #, gcc-internal-format @@ -12247,9 +12242,9 @@ msgid "%qs is narrower than values of its type" msgstr "%qs ist schmaler als die Werte seines Typs" #: c-decl.c:4726 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "ISO C90 forbids array %qE whose size can%'t be evaluated" -msgstr "ISO-C90 verbietet Feld %qs, dessen Größe nicht ausgewertet werden kann" +msgstr "ISO-C90 verbietet Feld %qE, dessen Größe nicht ausgewertet werden kann" #: c-decl.c:4730 #, gcc-internal-format @@ -12257,9 +12252,9 @@ msgid "ISO C90 forbids array whose size can%'t be evaluated" msgstr "ISO-C90 verbietet Feld, dessen Größe nicht ausgewertet werden kann" #: c-decl.c:4737 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "ISO C90 forbids variable length array %qE" -msgstr "ISO-C90 verbietet Feld %qs variabler Größe" +msgstr "ISO-C90 verbietet Feld %qE variabler Größe" #: c-decl.c:4740 #, gcc-internal-format @@ -12267,9 +12262,9 @@ msgid "ISO C90 forbids variable length array" msgstr "ISO-C90 verbietet Feld variabler Größe" #: c-decl.c:4749 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "the size of array %qE can%'t be evaluated" -msgstr "die Größe des Feldes %qs kann nicht ausgewertet werden" +msgstr "die Größe des Feldes %qE kann nicht ausgewertet werden" #: c-decl.c:4753 #, gcc-internal-format @@ -12277,9 +12272,9 @@ msgid "the size of array can %'t be evaluated" msgstr "die Größe eines Feldes kann nicht ausgewertet werden" #: c-decl.c:4759 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "variable length array %qE is used" -msgstr "Feld %qs variabler Größe wird verwendet" +msgstr "Feld %qE variabler Größe wird verwendet" #: c-decl.c:4763 cp/decl.c:7633 #, gcc-internal-format @@ -12287,24 +12282,24 @@ msgid "variable length array is used" msgstr "Feld variabler Größe wird verwendet" #: c-decl.c:4943 c-decl.c:5289 c-decl.c:5299 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "variably modified %qE at file scope" -msgstr "variabel modifiziertes %qs im Dateibereich" +msgstr "variabel modifiziertes %qE im Dateibereich" #: c-decl.c:4945 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "variably modified field at file scope" -msgstr "variabel modifiziertes %qs im Dateibereich" +msgstr "variabel modifiziertes Feld im Dateibereich" #: c-decl.c:4965 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "type defaults to %<int%> in declaration of %qE" -msgstr "%<int%> ist Standardtyp in Deklaration von %qs" +msgstr "%<int%> ist Standardtyp in Deklaration von %qE" #: c-decl.c:4969 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "type defaults to %<int%> in type name" -msgstr "%<int%> ist Standardtyp in Deklaration von %qs" +msgstr "%<int%> ist Standardtyp in Typ-Deklaration" #: c-decl.c:5002 #, gcc-internal-format @@ -12322,9 +12317,9 @@ msgid "duplicate %<volatile%>" msgstr "doppeltes %<volatile%>" #: c-decl.c:5010 -#, fuzzy, gcc-internal-format, gfc-internal-format +#, gcc-internal-format, gfc-internal-format msgid "conflicting named address spaces (%s vs %s)" -msgstr "in Konflikt stehender Basisklassenname %qs" +msgstr "in Konflikt stehende benannte Adressräume (%s und %s)" #: c-decl.c:5032 #, gcc-internal-format @@ -12347,24 +12342,24 @@ msgid "function definition declared %<__thread%>" msgstr "Funktionsdefinition deklarierte %<__thread%>" #: c-decl.c:5055 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "storage class specified for structure field %qE" -msgstr "Speicherklasse für Strukturfeld %qs angegeben" +msgstr "Speicherklasse für Strukturfeld %qE angegeben" #: c-decl.c:5058 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "storage class specified for structure field" -msgstr "Speicherklasse für Strukturfeld %qs angegeben" +msgstr "Speicherklasse für Strukturfeld angegeben" #: c-decl.c:5062 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "storage class specified for parameter %qE" -msgstr "Speicherklasse für Parameter %qs angegeben" +msgstr "Speicherklasse für Parameter %qE angegeben" #: c-decl.c:5065 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "storage class specified for unnamed parameter" -msgstr "Speicherklasse für Parameter %qs angegeben" +msgstr "Speicherklasse für unbenannten Parameter angegeben" #: c-decl.c:5068 cp/decl.c:8576 #, gcc-internal-format @@ -12372,34 +12367,34 @@ msgid "storage class specified for typename" msgstr "Speicherklasse für Typnamen angegeben" #: c-decl.c:5085 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%qE initialized and declared %<extern%>" -msgstr "%qs initialisiert und als %<extern%> deklariert" +msgstr "%qE initialisiert und als %<extern%> deklariert" #: c-decl.c:5089 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%qE has both %<extern%> and initializer" -msgstr "%qs hat sowohl %<extern%> als auch Initialisierung" +msgstr "%qE hat sowohl %<extern%> als auch Initialisierung" #: c-decl.c:5094 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "file-scope declaration of %qE specifies %<auto%>" -msgstr "Deklaration von %qs in Datei-Sichtbarkeitsbereich spezifiziert %<auto%>" +msgstr "Deklaration von %qE in Datei-Sichtbarkeitsbereich spezifiziert %<auto%>" #: c-decl.c:5098 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "file-scope declaration of %qE specifies %<register%>" -msgstr "Deklaration von %qs in Datei-Sichtbarkeitsbereich spezifiziert %<register%>" +msgstr "Deklaration von %qE in Datei-Sichtbarkeitsbereich spezifiziert %<register%>" #: c-decl.c:5103 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "nested function %qE declared %<extern%>" -msgstr "geschachtelte Funktion %qs als %<extern%> deklariert" +msgstr "geschachtelte Funktion %qE als %<extern%> deklariert" #: c-decl.c:5106 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "function-scope %qE implicitly auto and declared %<__thread%>" -msgstr "Funktions-Gültigkeitsbereich %qs ist implizit auto und deklarierte %<__thread%>" +msgstr "Funktions-Gültigkeitsbereich %qE ist implizit auto und als %<__thread%> deklariert" #. Only the innermost declarator (making a parameter be of #. array type which is converted to pointer type) @@ -12410,24 +12405,24 @@ msgid "static or type qualifiers in non-parameter array declarator" msgstr "»static« oder Typkennzeichner in Nicht-Parameter-Felddeklarator" #: c-decl.c:5201 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "declaration of %qE as array of voids" -msgstr "Deklaration von %qs als Feld von voids" +msgstr "Deklaration von %qE als Feld von voids" #: c-decl.c:5203 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "declaration of type name as array of voids" -msgstr "Deklaration von %qs als Feld von voids" +msgstr "Deklaration eines Typnamen als Feld von voids" #: c-decl.c:5210 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "declaration of %qE as array of functions" -msgstr "Deklaration von %qs als Feld von Funktionen" +msgstr "Deklaration von %qE als Feld von Funktionen" #: c-decl.c:5213 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "declaration of type name as array of functions" -msgstr "Deklaration von %qs als Feld von Funktionen" +msgstr "Deklaration eines Typnamen als Feld von Funktionen" #: c-decl.c:5220 c-decl.c:7044 #, gcc-internal-format @@ -12435,44 +12430,44 @@ msgid "invalid use of structure with flexible array member" msgstr "ungültige Verwendung einer Struktur mit flexiblem Feldelement" #: c-decl.c:5246 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "size of array %qE has non-integer type" -msgstr "Feldgröße von %qs hat Nicht-Ganzzahltyp" +msgstr "Feldgröße von %qE hat Nicht-Ganzzahltyp" #: c-decl.c:5250 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "size of unnamed array has non-integer type" -msgstr "Feldgröße von %qs hat Nicht-Ganzzahltyp" +msgstr "Feldgröße eines unbenannten Feldes hat Nicht-Ganzzahltyp" #: c-decl.c:5260 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "ISO C forbids zero-size array %qE" -msgstr "ISO-C verbietet Feld %qs der Größe null" +msgstr "ISO-C verbietet Feld %qE der Größe null" #: c-decl.c:5263 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "ISO C forbids zero-size array" -msgstr "ISO-C++ verbietet Feld der Größe null" +msgstr "ISO-C verbietet Feld der Größe null" #: c-decl.c:5272 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "size of array %qE is negative" -msgstr "Größe des Feldes %qs ist negativ" +msgstr "Größe des Feldes %qE ist negativ" #: c-decl.c:5274 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "size of unnamed array is negative" -msgstr "Größe des Feldes ist negativ" +msgstr "Größe des unbenannten Feldes ist negativ" #: c-decl.c:5350 c-decl.c:5715 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "size of array %qE is too large" -msgstr "Feldgröße von %qs ist zu groß" +msgstr "Feldgröße von %qE ist zu groß" #: c-decl.c:5353 c-decl.c:5717 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "size of unnamed array is too large" -msgstr "Feldgröße ist zu groß" +msgstr "Größe des unbenannten Feldes ist zu groß" #: c-decl.c:5390 #, gcc-internal-format @@ -12481,9 +12476,9 @@ msgstr "ISO-C90 unterstützt keine flexiblen Felder als Elemente" #. C99 6.7.5.2p4 #: c-decl.c:5411 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%<[*]%> not in a declaration" -msgstr "%<[*]%> nicht außerhalb einer Deklaration erlaubt" +msgstr "%<[*]%> nicht in einer Deklaration" #: c-decl.c:5424 #, gcc-internal-format @@ -12491,24 +12486,24 @@ msgid "array type has incomplete element type" msgstr "Feldtyp hat unvollständigen Elementtypen" #: c-decl.c:5518 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%qE declared as function returning a function" -msgstr "%qs als Funktion, die eine Funktion zurückgibt, deklariert" +msgstr "%qE als Funktion, die eine Funktion zurückgibt, deklariert" #: c-decl.c:5521 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "type name declared as function returning a function" -msgstr "%qs als Funktion, die eine Funktion zurückgibt, deklariert" +msgstr "Typname als Funktion, die eine Funktion zurückgibt, deklariert" #: c-decl.c:5528 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%qE declared as function returning an array" -msgstr "%qs als Funktion, die ein Feld zurückgibt, deklariert" +msgstr "%qE als Funktion, die ein Feld zurückgibt, deklariert" #: c-decl.c:5531 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "type name declared as function returning an array" -msgstr "%qs als Funktion, die ein Feld zurückgibt, deklariert" +msgstr "Typname als Funktion, die ein Feld zurückgibt, deklariert" #: c-decl.c:5561 #, gcc-internal-format @@ -12526,39 +12521,39 @@ msgid "ISO C forbids qualified function types" msgstr "ISO-C verbietet qualifizierte Funktionstypen" #: c-decl.c:5660 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%qs combined with %<auto%> qualifier for %qE" -msgstr "In Konflikt stehende Typqualifizierer für %q+D" +msgstr "%qs mit Qualifizierer %<auto%> für %qE kombiniert" #: c-decl.c:5664 #, gcc-internal-format msgid "%qs combined with %<register%> qualifier for %qE" -msgstr "" +msgstr "%qs mit Qualifizierer %<register%> für %qE kombiniert" #: c-decl.c:5670 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%qs specified for auto variable %qE" -msgstr "%Hungültiger Typ für Schleifenvariable %qE" +msgstr "%qs für »auto«-Variable %qE angegeben" #: c-decl.c:5686 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%qs specified for parameter %qE" -msgstr "Speicherklasse für Parameter %qs angegeben" +msgstr "%qs für Parameter %qE angegeben" #: c-decl.c:5689 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%qs specified for unnamed parameter" -msgstr "Speicherklasse für Parameter %qs angegeben" +msgstr "%qs für unbenannten Parameter angegeben" #: c-decl.c:5695 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%qs specified for structure field %qE" -msgstr "Speicherklasse für Strukturfeld %qs angegeben" +msgstr "%qs für Strukturfeld %qE angegeben" #: c-decl.c:5698 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%qs specified for structure field" -msgstr "Speicherklasse für Strukturfeld %qs angegeben" +msgstr "%qs für Strukturfeld angegeben" #: c-decl.c:5739 #, gcc-internal-format @@ -12592,24 +12587,24 @@ msgid "parameter %q+D declared %<inline%>" msgstr "Parameter %q+D als %<inline%> deklariert" #: c-decl.c:5880 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "field %qE declared as a function" -msgstr "Feld %qs als Funktion deklariert" +msgstr "Feld %qE als Funktion deklariert" #: c-decl.c:5887 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "field %qE has incomplete type" -msgstr "Feld %qs hat unvollständigen Typen" +msgstr "Feld %qE hat unvollständigen Typen" #: c-decl.c:5889 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "unnamed field has incomplete type" -msgstr "Name %qT hat unvollständigen Typen" +msgstr "unbenanntes Feld hat unvollständigen Typen" #: c-decl.c:5906 c-decl.c:5917 c-decl.c:5920 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "invalid storage class for function %qE" -msgstr "ungültige Speicherklasse für Funktion %qs" +msgstr "ungültige Speicherklasse für Funktion %qE" #: c-decl.c:5970 #, gcc-internal-format @@ -12627,9 +12622,9 @@ msgid "variable %q+D declared %<inline%>" msgstr "Variable %q+D als %<inline%> deklariert" #: c-decl.c:6044 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "non-nested function with variably modified type" -msgstr "in Gültigkeitsbereich des Bezeichners mit variabel modifiziertem Typen springen" +msgstr "nicht geschachtelte Funktion mit variabel modifiziertem Typen" #: c-decl.c:6046 #, gcc-internal-format @@ -12652,9 +12647,9 @@ msgid "parameter %u (%q+D) has incomplete type" msgstr "Parameter %u (%q+D) hat unvollständigen Typen" #: c-decl.c:6180 -#, fuzzy, gcc-internal-format, gfc-internal-format +#, gcc-internal-format, gfc-internal-format msgid "parameter %u has incomplete type" -msgstr "%JParameter %u hat unvollständigen Typen" +msgstr "Parameter %u hat unvollständigen Typen" #: c-decl.c:6191 #, gcc-internal-format @@ -12662,9 +12657,9 @@ msgid "parameter %u (%q+D) has void type" msgstr "Parameter %u (%q+D) hat void-Typen" #: c-decl.c:6195 -#, fuzzy, gcc-internal-format, gfc-internal-format +#, gcc-internal-format, gfc-internal-format msgid "parameter %u has void type" -msgstr "%JParameter %u hat void-Typen" +msgstr "Parameter %u hat void-Typen" #: c-decl.c:6277 #, gcc-internal-format @@ -12699,19 +12694,19 @@ msgid "its scope is only this definition or declaration, which is probably not w msgstr "sein Gültigkeitsbereich umfasst nur diese Definition bzw. Deklaration, was Sie wahrscheinlich nicht wollten" #: c-decl.c:6464 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "enum type defined here" -msgstr "enum innerhalb von Parametern definiert" +msgstr "»enum«-Typ hier definiert" #: c-decl.c:6470 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "struct defined here" -msgstr "%q+#D wurde vorher hier definiert" +msgstr "»struct« wurde hier definiert" #: c-decl.c:6476 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "union defined here" -msgstr "%q+#D wurde vorher hier definiert" +msgstr "»union« wurde hier definiert" #: c-decl.c:6549 #, gcc-internal-format @@ -12736,7 +12731,7 @@ msgstr "Verschachtelte Redefinition von %<struct %E%>" #: c-decl.c:6594 c-decl.c:7278 #, gcc-internal-format msgid "defining type in %qs expression is invalid in C++" -msgstr "" +msgstr "Typdefinition in Ausdruck %qs ist in C++ ungültig" #: c-decl.c:6660 cp/decl.c:4020 #, gcc-internal-format @@ -12744,14 +12739,14 @@ msgid "declaration does not declare anything" msgstr "Deklaration deklariert nichts" #: c-decl.c:6667 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "ISO C99 doesn%'t support unnamed structs/unions" -msgstr "ISO-C unterstützt keine namenlosen structs/unions" +msgstr "ISO-C99 unterstützt keine namenlosen structs/unions" #: c-decl.c:6670 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "ISO C90 doesn%'t support unnamed structs/unions" -msgstr "ISO-C unterstützt keine namenlosen structs/unions" +msgstr "ISO-C90 unterstützt keine namenlosen structs/unions" #: c-decl.c:6762 c-decl.c:6781 c-decl.c:6842 objcp/objcp-decl.c:91 #, gcc-internal-format @@ -12779,19 +12774,19 @@ msgid "struct has no members" msgstr "struct hat keine Elemente" #: c-decl.c:7024 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "flexible array member in union" -msgstr "%Jflexibles Feldelement in Union" +msgstr "flexibles Feldelement in Union" #: c-decl.c:7030 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "flexible array member not at end of struct" -msgstr "%Jflexibles Feld-Element nicht am Ende von struct" +msgstr "flexibles Feld-Element nicht am Ende von struct" #: c-decl.c:7036 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "flexible array member in otherwise empty struct" -msgstr "%Jflexibles Feld-Element in ansonsten leerem struct" +msgstr "flexibles Feld-Element in ansonsten leerem struct" #: c-decl.c:7155 #, gcc-internal-format @@ -12825,9 +12820,9 @@ msgid "enumerator value for %qE is not an integer constant" msgstr "Aufzählungswert für %qE ist keine Ganzzahlkonstante" #: c-decl.c:7466 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "enumerator value for %qE is not an integer constant expression" -msgstr "Aufzählungswert für %qE ist keine Ganzzahlkonstante" +msgstr "Aufzählungswert für %qE ist kein Ganzzahlkonstantenausdruck" #: c-decl.c:7490 #, gcc-internal-format @@ -12840,9 +12835,9 @@ msgid "ISO C restricts enumerator values to range of %<int%>" msgstr "ISO-C beschränkt Aufzählungswerte auf Bereich von %<int%>" #: c-decl.c:7582 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "inline function %qD given attribute noinline" -msgstr "inline-Funktion %q+D wurde das Attribut »noinline« gegeben" +msgstr "inline-Funktion %qD wurde das Attribut »noinline« gegeben" #: c-decl.c:7600 #, gcc-internal-format @@ -12855,89 +12850,89 @@ msgid "return type defaults to %<int%>" msgstr "Rückgabetyp ist auf %<int%> voreingestellt" #: c-decl.c:7688 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "no previous prototype for %qD" -msgstr "kein vorheriger Prototyp für %q+D" +msgstr "kein vorheriger Prototyp für %qD" #: c-decl.c:7697 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%qD was used with no prototype before its definition" -msgstr "%q+D wurde vor seiner Definition ohne Prototyp verwendet" +msgstr "%qD wurde vor seiner Definition ohne Prototyp verwendet" #: c-decl.c:7704 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "no previous declaration for %qD" -msgstr "keine vorherige Deklaration für %q+D" +msgstr "keine vorherige Deklaration für %qD" #: c-decl.c:7714 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%qD was used with no declaration before its definition" -msgstr "%q+D wurde vor seiner Definition ohne Deklaration verwendet" +msgstr "%qD wurde vor seiner Definition ohne Deklaration verwendet" #: c-decl.c:7733 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "return type of %qD is not %<int%>" -msgstr "Rückgabetyp von %q+D ist nicht %<int%>" +msgstr "Rückgabetyp von %qD ist nicht %<int%>" #: c-decl.c:7739 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%qD is normally a non-static function" -msgstr "%q+D ist normalerweise eine Nicht-static-Funktion" +msgstr "%qD ist normalerweise eine nicht-statische Funktion" #: c-decl.c:7776 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "old-style parameter declarations in prototyped function definition" -msgstr "%JParameterdeklarationen alten Stils in Prototyp-Funktionsdeklaration" +msgstr "Parameterdeklarationen alten Stils in Prototyp-Funktionsdeklaration" #: c-decl.c:7790 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "traditional C rejects ISO C style function definitions" -msgstr "%Jtraditionelles C weist Funktionsdefinitionen im ISO-C-Stil zurück" +msgstr "traditionelles C weist Funktionsdefinitionen im ISO-C-Stil zurück" #: c-decl.c:7806 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "parameter name omitted" -msgstr "%JParametername ausgelassen" +msgstr "Parametername ausgelassen" #: c-decl.c:7843 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "old-style function definition" -msgstr "%JFunktionsdefinition im alten Stil" +msgstr "Funktionsdefinition im alten Stil" #: c-decl.c:7852 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "parameter name missing from parameter list" -msgstr "%JParametername fehlt in Parameterliste" +msgstr "Parametername fehlt in Parameterliste" #: c-decl.c:7867 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%qD declared as a non-parameter" -msgstr "%q+D als Nicht-Parameter deklariert" +msgstr "%qD als Nicht-Parameter deklariert" #: c-decl.c:7873 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "multiple parameters named %qD" -msgstr "mehrere Parameter wurden %q+D genannt" +msgstr "mehrere Parameter wurden %qD genannt" #: c-decl.c:7882 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "parameter %qD declared with void type" -msgstr "Parameter %q+D als void deklariert" +msgstr "Parameter %qD als void deklariert" #: c-decl.c:7911 c-decl.c:7915 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "type of %qD defaults to %<int%>" -msgstr "Typ von %q+D ist auf %<int%> voreingestellt" +msgstr "Typ von %qD ist auf %<int%> voreingestellt" #: c-decl.c:7935 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "parameter %qD has incomplete type" -msgstr "Parameter %q+D hat unvollständigen Typen" +msgstr "Parameter %qD hat unvollständigen Typen" #: c-decl.c:7942 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "declaration for parameter %qD but no such parameter" -msgstr "Deklaration für nicht vorhandenen Parameter %q+D" +msgstr "Deklaration für nicht vorhandenen Parameter %qD" #: c-decl.c:7994 #, gcc-internal-format @@ -12950,9 +12945,9 @@ msgid "number of arguments doesn%'t match prototype" msgstr "Anzahl der Argumente passt nicht zum Prototypen" #: c-decl.c:8008 c-decl.c:8050 c-decl.c:8064 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "prototype declaration" -msgstr "%HPrototyp-Deklaration" +msgstr "Prototyp-Deklaration" #: c-decl.c:8042 #, gcc-internal-format @@ -12980,32 +12975,32 @@ msgid "no return statement in function returning non-void" msgstr "keine return-Anweisung in nicht void zurückgebender Funktion" #: c-decl.c:8274 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "parameter %qD set but not used" -msgstr "Parameter %qD ist initialisiert" +msgstr "Parameter %qD gesetzt, jedoch nicht verwendet" #. 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:8353 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%<for%> loop initial declarations are only allowed in C99 mode" -msgstr "Anfangsdeklaration in %<for%>-Schleife außerhalb C99-Modus verwendet" +msgstr "Anfangsdeklarationen in %<for%>-Schleifen sind nur im C99-Modus erlaubt" #: c-decl.c:8358 #, gcc-internal-format msgid "use option -std=c99 or -std=gnu99 to compile your code" -msgstr "" +msgstr "-std=c99 oder -std=gnu99 verwenden, um den Code zu übersetzen" #: c-decl.c:8392 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "declaration of static variable %qD in %<for%> loop initial declaration" -msgstr "Deklaration der »static«-Variablen %q+D in Anfangsdeklaration einer %<for%>-Schleife" +msgstr "Deklaration der »static«-Variablen %qD in Anfangsdeklaration einer %<for%>-Schleife" #: c-decl.c:8396 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "declaration of %<extern%> variable %qD in %<for%> loop initial declaration" -msgstr "Deklaration der %<extern%>-Variablen %q+D in Anfangsdeklaration einer %<for%>-Schleife" +msgstr "Deklaration der %<extern%>-Variablen %qD in Anfangsdeklaration einer %<for%>-Schleife" #: c-decl.c:8403 #, gcc-internal-format @@ -13023,14 +13018,14 @@ msgid "%<enum %E%> declared in %<for%> loop initial declaration" msgstr "%<enum %E%> in Anfangsdeklaration einer %<for%>-Schleife deklariert" #: c-decl.c:8416 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "declaration of non-variable %qD in %<for%> loop initial declaration" -msgstr "Deklaration der Nicht-Variablen %q+D in Anfangsdeklaration einer %<for%>-Schleife" +msgstr "Deklaration der Nicht-Variablen %qD in Anfangsdeklaration einer %<for%>-Schleife" #: c-decl.c:8666 #, gcc-internal-format msgid "incompatible address space qualifiers %qs and %qs" -msgstr "" +msgstr "Inkompatible Adressraumkennzeichen %s und %s" #: c-decl.c:8705 c-decl.c:9016 c-decl.c:9405 #, gcc-internal-format @@ -13063,14 +13058,14 @@ msgid "ISO C does not support saturating types" msgstr "ISO-C unterstützt keine sättigenden Typen" #: c-decl.c:9035 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%<__int128%> is not supported for this target" -msgstr "Festkommatypen werden für dieses Ziel nicht unterstützt" +msgstr "<__int128%> wird für dieses Ziel nicht unterstützt" #: c-decl.c:9040 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "ISO C does not support %<__int128%> type" -msgstr "ISO-C unterstützt keine Ganzzahltypen" +msgstr "ISO-C unterstützt nicht den Typen %<__int128%>" #: c-decl.c:9243 #, gcc-internal-format @@ -13090,7 +13085,7 @@ msgstr "ISO-C unterstützt keine Ganzzahltypen" #: c-decl.c:9301 #, gcc-internal-format msgid "C++ lookup of %qD would return a field, not a type" -msgstr "" +msgstr "Nachschlagen von %qD würde in C++ ein Feld, keinen Typen zurückgeben" #: c-decl.c:9314 #, gcc-internal-format @@ -13160,22 +13155,22 @@ msgstr "%q+F verwendet, aber nirgendwo definiert" #: c-parser.c:241 #, gcc-internal-format msgid "identifier %qE conflicts with C++ keyword" -msgstr "" +msgstr "Bezeichner %qE steht mit C++-Schlüsselwort in Konflikt" #: c-parser.c:1215 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "ISO C forbids an empty translation unit" -msgstr "%HISO-C verbietet eine leere Quelldatei" +msgstr "ISO-C verbietet eine leere Quelldatei" #: c-parser.c:1313 c-parser.c:7215 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "ISO C does not allow extra %<;%> outside of a function" -msgstr "%HISO-C erlaubt kein zusätzliches %<;%> außerhalb einer Funktion" +msgstr "ISO-C erlaubt kein zusätzliches %<;%> außerhalb einer Funktion" #: c-parser.c:1439 c-parser.c:2005 c-parser.c:3218 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "unknown type name %qE" -msgstr "unbekannter Registername: %s" +msgstr "unbekannter Typname: %qE" #: c-parser.c:1459 c-parser.c:8219 cp/parser.c:25145 #, gcc-internal-format @@ -13183,29 +13178,29 @@ msgid "expected declaration specifiers" msgstr "Deklarationsspezifizierer erwartet" #: c-parser.c:1484 c-parser.c:2578 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "expected %<;%>, identifier or %<(%>" -msgstr "Bezeichner oder %<(%> erwartet" +msgstr "%<;%>, Bezeichner oder %<(%> erwartet" #: c-parser.c:1502 cp/parser.c:22213 cp/parser.c:22286 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "prefix attributes are ignored for methods" -msgstr "Attribut %qE ignoriert für %qE" +msgstr "Präfixattribute werden für Methoden ignoriert" #: c-parser.c:1537 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "prefix attributes are ignored for implementations" -msgstr "Attribute an Templateinstanziierung ignoriert" +msgstr "Präfixattribute werden für Implementierungen ignoriert" #: c-parser.c:1559 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "attributes may not be specified before" -msgstr "Für %q+D darf keine Ausrichtung angegeben werden" +msgstr "Attribute dürfen nicht vorher angegeben werden" #: c-parser.c:1601 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "data definition has no type or storage class" -msgstr "%HDatendefinition hat keinen Typ oder Speicherklasse" +msgstr "Datendefinition hat keinen Typ oder Speicherklasse" #: c-parser.c:1676 cp/parser.c:9727 #, gcc-internal-format @@ -13221,19 +13216,19 @@ msgid "expected %<=%>, %<,%>, %<;%>, %<asm%> or %<__attribute__%>" msgstr " %<=%>, %<,%>, %<;%>, %<asm%> oder %<__attribute__%> erwartet" #: c-parser.c:1691 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "ISO C forbids nested functions" -msgstr "%HISO-C verbietet verschachtelte Funktionen" +msgstr "ISO-C verbietet verschachtelte Funktionen" #: c-parser.c:1798 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "ISO C99 does not support %<_Static_assert%>" -msgstr "ISO-C90 unterstützt nicht %<long long%>" +msgstr "ISO-C99 unterstützt nicht %<_Static_assert%>" #: c-parser.c:1801 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "ISO C90 does not support %<_Static_assert%>" -msgstr "ISO-C90 unterstützt nicht %<long long%>" +msgstr "ISO-C90 unterstützt nicht %<_Static_assert%>" #: c-parser.c:1826 c-parser.c:3283 c-parser.c:8274 cp/parser.c:25032 #, gcc-internal-format @@ -13241,19 +13236,19 @@ msgid "expected string literal" msgstr "Zeichenkettenliteral erwartet" #: c-parser.c:1834 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "expression in static assertion is not an integer" -msgstr "Feldindex ist keine Ganzzahl" +msgstr "Ausdruck in statischer Behauptung ist keine Ganzzahl" #: c-parser.c:1841 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "expression in static assertion is not an integer constant expression" -msgstr "Größe des Feldes ist kein konstanter Ganzzahlausdruck" +msgstr "Ausdruck in statischer Behauptung ist kein konstanter Ganzzahlausdruck" #: c-parser.c:1846 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "expression in static assertion is not constant" -msgstr "Initialisierer für statische Variable ist nicht konstant" +msgstr "Ausdruck in statischer Behauptung ist nicht konstant" #. Report the error. #: c-parser.c:1851 cp/semantics.c:4628 @@ -13285,9 +13280,9 @@ msgid "expected %<,%> or %<}%>" msgstr "%<,%> oder %<}%> erwartet" #: c-parser.c:2281 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "ISO C forbids forward references to %<enum%> types" -msgstr "%HISO-C verbietet Vorwärts-Referenzen auf %<enum%>-Typen" +msgstr "ISO-C verbietet Vorwärts-Referenzen auf %<enum%>-Typen" #: c-parser.c:2395 #, gcc-internal-format @@ -13295,14 +13290,14 @@ msgid "expected class name" msgstr "Klassenname erwartet" #: c-parser.c:2414 c-parser.c:6933 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "extra semicolon in struct or union specified" -msgstr "%Hzusätzliches Semikolon in »struct« oder »union« angegeben" +msgstr "zusätzliches Semikolon in »struct« oder »union« angegeben" #: c-parser.c:2443 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "no semicolon at end of struct or union" -msgstr "%Hkein Semikolon am Ende von »struct« oder »union«" +msgstr "kein Semikolon am Ende von »struct« oder »union«" #: c-parser.c:2540 c-parser.c:3528 #, gcc-internal-format @@ -13310,9 +13305,9 @@ msgid "expected specifier-qualifier-list" msgstr "Spezifizierer-Qualifizierer-Liste erwartet" #: c-parser.c:2551 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "ISO C forbids member declarations with no members" -msgstr "%HISO-C verbietet Elementdeklarationen ohne Elemente" +msgstr "ISO-C verbietet Elementdeklarationen ohne Elemente" #: c-parser.c:2641 #, gcc-internal-format @@ -13325,9 +13320,9 @@ msgid "expected %<:%>, %<,%>, %<;%>, %<}%> or %<__attribute__%>" msgstr "%<:%>, %<,%>, %<;%>, %<}%> oder %<__attribute__%> erwartet" #: c-parser.c:2701 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%<typeof%> applied to a bit-field" -msgstr "%H%<typeof%> auf ein Bitfeld angewandt" +msgstr "%<typeof%> auf ein Bitfeld angewandt" #: c-parser.c:2927 #, gcc-internal-format @@ -13335,9 +13330,9 @@ msgid "expected identifier or %<(%>" msgstr "Bezeichner oder %<(%> erwartet" #: c-parser.c:3122 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "ISO C requires a named argument before %<...%>" -msgstr "%HISO-C erfordert ein benanntes Argument vor %<...%>" +msgstr "ISO-C erfordert ein benanntes Argument vor %<...%>" #: c-parser.c:3225 #, gcc-internal-format @@ -13345,39 +13340,39 @@ msgid "expected declaration specifiers or %<...%>" msgstr "Deklarationsspezifizierer oder %<...%> erwartet" #: c-parser.c:3277 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "wide string literal in %<asm%>" -msgstr "%HWide-Zeichenkettenliteral in %<asm%>" +msgstr "Wide-Zeichenkettenliteral in %<asm%>" #: c-parser.c:3628 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "ISO C forbids empty initializer braces" -msgstr "%HISO-C verbietet leere Initialisierungsklammern" +msgstr "ISO-C verbietet leere Initialisierungsklammern" #: c-parser.c:3679 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "obsolete use of designated initializer with %<:%>" -msgstr "%Hveraltete Verwendung einer bestimmten Initialisierung mit %<:%>" +msgstr "veraltete Verwendung einer bestimmten Initialisierung mit %<:%>" #: c-parser.c:3819 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "ISO C forbids specifying range of elements to initialize" -msgstr "%HISO-C verbietet die Angabe eines zu initialisierenden Elementebereiches" +msgstr "ISO-C verbietet die Angabe eines zu initialisierenden Elementebereiches" #: c-parser.c:3832 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "ISO C90 forbids specifying subobject to initialize" -msgstr "%HISO-C90 verbietet die Angabe von zu initialisierenden Unterobjekten" +msgstr "ISO-C90 verbietet die Angabe von zu initialisierenden Unterobjekten" #: c-parser.c:3839 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "obsolete use of designated initializer without %<=%>" -msgstr "%Hveraltete Verwendung einer bestimmten Initialisierung ohne %<=%>" +msgstr "veraltete Verwendung einer bestimmten Initialisierung ohne %<=%>" #: c-parser.c:4003 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "ISO C forbids label declarations" -msgstr "%HISO-C verbietet Markendeklarationen" +msgstr "ISO-C verbietet Markendeklarationen" #: c-parser.c:4009 c-parser.c:4090 #, gcc-internal-format @@ -13385,14 +13380,14 @@ msgid "expected declaration or statement" msgstr "Deklaration oder Anweisung erwartet" #: c-parser.c:4041 c-parser.c:4071 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "ISO C90 forbids mixed declarations and code" -msgstr "%HISO-C90 verbietet gemischte Deklarationen und Code" +msgstr "ISO-C90 verbietet gemischte Deklarationen und Code" #: c-parser.c:4098 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "expected %<}%> before %<else%>" -msgstr "%H%<}%> vor %<else%> erwartet" +msgstr "%<}%> vor %<else%> erwartet" #: c-parser.c:4103 cp/parser.c:8397 #, gcc-internal-format @@ -13400,9 +13395,9 @@ msgid "%<else%> without a previous %<if%>" msgstr "%<else%> ohne vorheriges %<if%>" #: c-parser.c:4120 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "label at end of compound statement" -msgstr "%HMarke am Ende einer Verbundanweisung" +msgstr "Marke am Ende einer Verbundanweisung" #: c-parser.c:4165 #, gcc-internal-format @@ -13410,9 +13405,9 @@ msgid "expected %<:%> or %<...%>" msgstr "%<:%> oder %<...%> erwartet" #: c-parser.c:4196 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "a label can only be part of a statement and a declaration is not a statement" -msgstr "%Heine Marke kann nur Teil einer Anweisung sein, und eine Deklaration ist keine Anweisung" +msgstr "eine Marke kann nur Teil einer Anweisung sein, und eine Deklaration ist keine Anweisung" #: c-parser.c:4364 #, gcc-internal-format @@ -13429,54 +13424,54 @@ msgid "expected statement" msgstr "Anweisung erwartet" #: c-parser.c:4527 cp/parser.c:8479 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "suggest braces around empty body in an %<if%> statement" -msgstr "%Hgeschweifte Klammern um leeren Körper in einer %<if%>-Anweisung empfohlen" +msgstr "geschweifte Klammern um leeren Körper in einer %<if%>-Anweisung empfohlen" #: c-parser.c:4555 cp/parser.c:8502 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "suggest braces around empty body in an %<else%> statement" -msgstr "%Hgeschweifte Klammern um leeren Körper in einer %<else%>-Anweisung empfohlen" +msgstr "geschweifte Klammern um leeren Körper in einer %<else%>-Anweisung empfohlen" #: c-parser.c:4686 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "suggest braces around empty body in %<do%> statement" -msgstr "%Hgeschweifte Klammern um leeren Körper in %<do%>-Anweisung empfohlen" +msgstr "geschweifte Klammern um leeren Körper in %<do%>-Anweisung empfohlen" #: c-parser.c:4800 c-parser.c:4830 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "multiple iterating variables in fast enumeration" -msgstr "mehrere Deklarationen in Templatedeklaration" +msgstr "mehrere Schleifenvariablen in schneller Aufzählung" #: c-parser.c:4850 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "invalid iterating variable in fast enumeration" -msgstr "ungültiges Register im Befehl" +msgstr "ungültiges Schleifenvariable in schneller Aufzählung" #: c-parser.c:4883 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "missing collection in fast enumeration" -msgstr "Wächter in Funktionsaufruf fehlt" +msgstr "die Sammlung in schneller Aufzählung fehlt" #: c-parser.c:4954 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%E qualifier ignored on asm" -msgstr "%H%E-Qualifizierer für asm ignoriert" +msgstr "%E-Qualifizierer für asm ignoriert" #: c-parser.c:5308 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "ISO C forbids omitting the middle term of a ?: expression" -msgstr "%HISO-C verbietet das Weglassen des mittleren Terms eines ?:-Ausdruckes" +msgstr "ISO-C verbietet das Weglassen des mittleren Terms eines ?:-Ausdruckes" #: c-parser.c:5768 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "traditional C rejects the unary plus operator" -msgstr "%Htraditionelles C weist den unären Plus-Operator zurück" +msgstr "traditionelles C weist den unären Plus-Operator zurück" #: c-parser.c:5893 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%<sizeof%> applied to a bit-field" -msgstr "%H%<sizeof%> auf ein Bitfeld angewandt" +msgstr "%<sizeof%> auf ein Bitfeld angewandt" #: c-parser.c:6097 c-parser.c:6442 c-parser.c:6462 #, gcc-internal-format @@ -13484,89 +13479,89 @@ msgid "expected expression" msgstr "Ausdruck erwartet" #: c-parser.c:6115 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "braced-group within expression allowed only inside a function" -msgstr "%Hgeklammerte Gruppe innerhalb eines Ausdrucks nur in Funktion erlaubt" +msgstr "geklammerte Gruppe innerhalb eines Ausdrucks nur in einer Funktion erlaubt" #: c-parser.c:6128 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "ISO C forbids braced-groups within expressions" -msgstr "%HISO-C verbietet geklammerte Gruppen innerhalb von Ausdrücken" +msgstr "ISO-C verbietet geklammerte Gruppen innerhalb von Ausdrücken" #: c-parser.c:6337 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "first argument to %<__builtin_choose_expr%> not a constant" -msgstr "%Herstes Argument für %<__builtin_choose_expr%> ist keine Konstante" +msgstr "erstes Argument für %<__builtin_choose_expr%> ist keine Konstante" #: c-parser.c:6497 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "compound literal has variable size" -msgstr "%Hzusammengesetztes Literal hat variable Größe" +msgstr "zusammengesetztes Literal hat variable Größe" #: c-parser.c:6508 #, gcc-internal-format msgid "compound literal qualified by address-space qualifier" -msgstr "" +msgstr "Verbundliteral durch Adressraumqualifizierer qualifiziert" #: c-parser.c:6513 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "ISO C90 forbids compound literals" -msgstr "%HISO-C90 verbietet zusammengesetzte Literale" +msgstr "ISO-C90 verbietet zusammengesetzte Literale" #: c-parser.c:6837 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "expected identifier or %<)%>" -msgstr "Bezeichner oder %<(%> erwartet" +msgstr "Bezeichner oder %<)%> erwartet" #: c-parser.c:7163 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "extra semicolon in method definition specified" -msgstr "%Hzusätzliches Semikolon in Methodendefinition angegeben" +msgstr "zusätzliches Semikolon in Methodendefinition angegeben" #: c-parser.c:7294 #, gcc-internal-format msgid "method attributes must be specified at the end only" -msgstr "" +msgstr "Methodenattribute dürfen nur am Ende angegeben werden" #: c-parser.c:7314 #, gcc-internal-format msgid "expected %<;%> or %<{%> after method attribute definition" -msgstr "" +msgstr "%<;%> or %<{%> nach Definition der Methodenattribute erwartet" #: c-parser.c:7434 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "objective-c method declaration is expected" -msgstr "Klassen- oder Schnittstellendeklaration erwartet" +msgstr "Methodendeklaration in Objective-C erwartet" #: c-parser.c:7846 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "no type or storage class may be specified here," -msgstr "Speicherklasse %qs angegeben" +msgstr "hier darf kein Typ oder Speicherklasse angegeben werden," #: c-parser.c:7936 c-parser.c:7989 cp/parser.c:23092 #, gcc-internal-format msgid "unknown property attribute" -msgstr "" +msgstr "unbekanntes Eigenschaftsattribut" #: c-parser.c:7956 #, gcc-internal-format msgid "getter/setter attribute must be followed by %<=%>" -msgstr "" +msgstr "getter/setter-Attribut muss von %<=%> gefolgt werden" #: c-parser.c:7970 cp/parser.c:23073 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "the %<setter%> attribute may only be specified once" -msgstr "%JAbschnitts-Attribut kann nicht für lokale Variablen angegeben werden" +msgstr "das %<setter%>-Attribut darf nur einmal angegeben werden" #: c-parser.c:7975 cp/parser.c:23078 #, gcc-internal-format msgid "setter name must terminate with %<:%>" -msgstr "" +msgstr "Setter-Name muss mit %<:%> beendet werden" #: c-parser.c:7982 cp/parser.c:23085 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "the %<getter%> attribute may only be specified once" -msgstr "%JAdressbereichsattribut kann nicht für Funktionen angegeben werden" +msgstr "das %<getter%>-Attribut darf nur einmal angegeben werden" #: c-parser.c:8168 cp/parser.c:25076 #, gcc-internal-format @@ -13579,9 +13574,9 @@ msgid "%<#pragma omp flush%> may only be used in compound statements" msgstr "%<#pragma omp flush%> darf nur in Verbundanweisungen verwendet werden" #: c-parser.c:8190 cp/parser.c:25107 -#, fuzzy, gcc-internal-format +#, gcc-internal-format msgid "%<#pragma omp taskwait%> may only be used in compound statements" -msgstr "%<#pragma omp barrier%> darf nur in Verbundanweisungen verwendet werden" +msgstr "%<#pragma omp taskwait%> darf nur in Verbundanweisungen verwendet werden" #: c-parser.c:8203 cp/parser.c:25135 #, gcc-internal-format diff --git a/gcc/po/gcc.pot b/gcc/po/gcc.pot index 70c9e9942e9..3c982374022 100644 --- a/gcc/po/gcc.pot +++ b/gcc/po/gcc.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: http://gcc.gnu.org/bugs.html\n" -"POT-Creation-Date: 2010-12-18 20:02+0000\n" +"POT-Creation-Date: 2011-03-05 19:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: c-decl.c:4636 c-typeck.c:5849 toplev.c:1013 c-family/c-pretty-print.c:423 +#: c-decl.c:4664 c-typeck.c:5851 toplev.c:1013 c-family/c-pretty-print.c:423 #: cp/error.c:610 cp/error.c:889 msgid "<anonymous>" msgstr "" @@ -27,119 +27,119 @@ msgstr "" msgid "({anonymous})" msgstr "" -#: c-parser.c:946 cp/parser.c:20888 +#: c-parser.c:942 cp/parser.c:20950 #, gcc-internal-format msgid "expected end of line" msgstr "" -#: c-parser.c:1760 c-parser.c:1774 c-parser.c:4001 c-parser.c:4439 -#: c-parser.c:4700 c-parser.c:4856 c-parser.c:4873 c-parser.c:5038 -#: c-parser.c:6983 c-parser.c:7019 c-parser.c:7051 c-parser.c:7099 -#: c-parser.c:7279 c-parser.c:8031 c-parser.c:8101 c-parser.c:8144 -#: c-parser.c:9118 c-parser.c:9263 c-parser.c:9301 c-parser.c:2447 -#: c-parser.c:7272 cp/parser.c:20834 +#: c-parser.c:1755 c-parser.c:1769 c-parser.c:3996 c-parser.c:4434 +#: c-parser.c:4695 c-parser.c:4853 c-parser.c:4870 c-parser.c:5035 +#: c-parser.c:6980 c-parser.c:7016 c-parser.c:7048 c-parser.c:7096 +#: c-parser.c:7276 c-parser.c:8042 c-parser.c:8112 c-parser.c:8155 +#: c-parser.c:9132 c-parser.c:9277 c-parser.c:9315 c-parser.c:2442 +#: c-parser.c:7269 cp/parser.c:20896 #, gcc-internal-format msgid "expected %<;%>" msgstr "" -#: c-parser.c:1804 c-parser.c:2385 c-parser.c:2675 c-parser.c:3306 -#: c-parser.c:3358 c-parser.c:3363 c-parser.c:4483 c-parser.c:4616 -#: c-parser.c:4778 c-parser.c:4974 c-parser.c:5100 c-parser.c:6181 -#: c-parser.c:6219 c-parser.c:6305 c-parser.c:6345 c-parser.c:6383 -#: c-parser.c:6398 c-parser.c:6422 c-parser.c:7560 c-parser.c:7631 -#: c-parser.c:8436 c-parser.c:8457 c-parser.c:8507 c-parser.c:8617 -#: c-parser.c:8690 c-parser.c:8758 c-parser.c:9226 c-parser.c:8580 -#: cp/parser.c:20837 +#: c-parser.c:1799 c-parser.c:2380 c-parser.c:2670 c-parser.c:3301 +#: c-parser.c:3353 c-parser.c:3358 c-parser.c:4478 c-parser.c:4611 +#: c-parser.c:4775 c-parser.c:4971 c-parser.c:5097 c-parser.c:6178 +#: c-parser.c:6216 c-parser.c:6302 c-parser.c:6342 c-parser.c:6380 +#: c-parser.c:6395 c-parser.c:6419 c-parser.c:7566 c-parser.c:7638 +#: c-parser.c:8447 c-parser.c:8468 c-parser.c:8518 c-parser.c:8628 +#: c-parser.c:8701 c-parser.c:8769 c-parser.c:9240 c-parser.c:8591 +#: cp/parser.c:20899 #, gcc-internal-format msgid "expected %<(%>" msgstr "" -#: c-parser.c:1809 c-parser.c:6189 c-parser.c:6227 c-parser.c:6312 -#: c-parser.c:6319 c-parser.c:6356 cp/parser.c:20499 cp/parser.c:20852 +#: c-parser.c:1804 c-parser.c:6186 c-parser.c:6224 c-parser.c:6309 +#: c-parser.c:6316 c-parser.c:6353 cp/parser.c:20561 cp/parser.c:20914 #, gcc-internal-format msgid "expected %<,%>" msgstr "" -#: c-parser.c:1830 c-parser.c:2400 c-parser.c:2711 c-parser.c:2919 -#: c-parser.c:3083 c-parser.c:3132 c-parser.c:3191 c-parser.c:3313 -#: c-parser.c:3484 c-parser.c:3495 c-parser.c:3504 c-parser.c:4486 -#: c-parser.c:4620 c-parser.c:4897 c-parser.c:5032 c-parser.c:5112 -#: c-parser.c:5673 c-parser.c:5860 c-parser.c:5920 c-parser.c:6126 -#: c-parser.c:6144 c-parser.c:6165 c-parser.c:6198 c-parser.c:6299 -#: c-parser.c:6327 c-parser.c:6369 c-parser.c:6391 c-parser.c:6414 -#: c-parser.c:6435 c-parser.c:6575 c-parser.c:6847 c-parser.c:7363 -#: c-parser.c:7384 c-parser.c:7583 c-parser.c:7635 c-parser.c:8003 -#: c-parser.c:8439 c-parser.c:8460 c-parser.c:8538 c-parser.c:8623 -#: c-parser.c:8739 c-parser.c:8821 c-parser.c:9154 c-parser.c:9271 -#: c-parser.c:9312 cp/parser.c:20882 +#: c-parser.c:1825 c-parser.c:2395 c-parser.c:2706 c-parser.c:2914 +#: c-parser.c:3078 c-parser.c:3127 c-parser.c:3186 c-parser.c:3308 +#: c-parser.c:3479 c-parser.c:3490 c-parser.c:3499 c-parser.c:4481 +#: c-parser.c:4615 c-parser.c:4894 c-parser.c:5029 c-parser.c:5109 +#: c-parser.c:5670 c-parser.c:5857 c-parser.c:5917 c-parser.c:6123 +#: c-parser.c:6141 c-parser.c:6162 c-parser.c:6195 c-parser.c:6296 +#: c-parser.c:6324 c-parser.c:6366 c-parser.c:6388 c-parser.c:6411 +#: c-parser.c:6432 c-parser.c:6572 c-parser.c:6844 c-parser.c:7360 +#: c-parser.c:7381 c-parser.c:7589 c-parser.c:7642 c-parser.c:8014 +#: c-parser.c:8450 c-parser.c:8471 c-parser.c:8549 c-parser.c:8634 +#: c-parser.c:8750 c-parser.c:8832 c-parser.c:9168 c-parser.c:9285 +#: c-parser.c:9326 cp/parser.c:20944 #, gcc-internal-format msgid "expected %<)%>" msgstr "" -#: c-parser.c:3002 c-parser.c:3789 c-parser.c:3823 c-parser.c:5092 -#: c-parser.c:6291 c-parser.c:6455 c-parser.c:6562 cp/parser.c:20846 +#: c-parser.c:2997 c-parser.c:3784 c-parser.c:3818 c-parser.c:5089 +#: c-parser.c:6288 c-parser.c:6452 c-parser.c:6559 cp/parser.c:20908 #, gcc-internal-format msgid "expected %<]%>" msgstr "" -#: c-parser.c:3168 +#: c-parser.c:3163 msgid "expected %<;%>, %<,%> or %<)%>" msgstr "" -#: c-parser.c:3652 cp/parser.c:20840 cp/parser.c:22438 +#: c-parser.c:3647 cp/parser.c:20902 cp/parser.c:22518 #, gcc-internal-format msgid "expected %<}%>" msgstr "" -#: c-parser.c:3942 c-parser.c:7603 c-parser.c:9555 c-parser.c:2267 -#: c-parser.c:2467 c-parser.c:7168 cp/parser.c:13502 cp/parser.c:20843 +#: c-parser.c:3937 c-parser.c:7609 c-parser.c:9569 c-parser.c:2262 +#: c-parser.c:2462 c-parser.c:7165 cp/parser.c:13540 cp/parser.c:20905 #, gcc-internal-format msgid "expected %<{%>" msgstr "" -#: c-parser.c:4161 c-parser.c:4170 c-parser.c:4996 c-parser.c:5337 -#: c-parser.c:7377 c-parser.c:7742 c-parser.c:7799 c-parser.c:8728 -#: cp/parser.c:20876 cp/parser.c:21694 +#: c-parser.c:4156 c-parser.c:4165 c-parser.c:4993 c-parser.c:5334 +#: c-parser.c:7374 c-parser.c:7749 c-parser.c:7806 c-parser.c:8739 +#: cp/parser.c:20938 cp/parser.c:21756 #, gcc-internal-format msgid "expected %<:%>" msgstr "" -#: c-parser.c:4694 cp/parser.c:20776 +#: c-parser.c:4689 cp/parser.c:20838 #, gcc-internal-format msgid "expected %<while%>" msgstr "" -#: c-parser.c:6079 +#: c-parser.c:6076 msgid "expected %<.%>" msgstr "" -#: c-parser.c:6857 c-parser.c:6889 c-parser.c:7112 cp/parser.c:22224 -#: cp/parser.c:22297 +#: c-parser.c:6854 c-parser.c:6886 c-parser.c:7109 cp/parser.c:22304 +#: cp/parser.c:22377 #, gcc-internal-format msgid "expected %<@end%>" msgstr "" -#: c-parser.c:7518 cp/parser.c:20861 +#: c-parser.c:7523 cp/parser.c:20923 #, gcc-internal-format msgid "expected %<>%>" msgstr "" -#: c-parser.c:8825 cp/parser.c:20885 +#: c-parser.c:8836 cp/parser.c:20947 #, gcc-internal-format msgid "expected %<,%> or %<)%>" msgstr "" -#: c-parser.c:9252 c-parser.c:3846 cp/parser.c:20864 +#: c-parser.c:9266 c-parser.c:3841 cp/parser.c:20926 #, gcc-internal-format msgid "expected %<=%>" msgstr "" -#: c-parser.c:9612 c-parser.c:9602 cp/parser.c:24752 +#: c-parser.c:9626 c-parser.c:9616 cp/parser.c:24842 #, gcc-internal-format msgid "expected %<#pragma omp section%> or %<}%>" msgstr "" -#: c-typeck.c:6492 +#: c-typeck.c:6494 msgid "(anonymous)" msgstr "" @@ -169,147 +169,147 @@ msgstr "" msgid "COLLECT_LTO_WRAPPER must be set" msgstr "" -#: collect2.c:1270 +#: collect2.c:1272 #, c-format msgid "no arguments" msgstr "" -#: collect2.c:1671 collect2.c:1860 collect2.c:1895 +#: collect2.c:1673 collect2.c:1862 collect2.c:1897 #, c-format msgid "fopen %s" msgstr "" -#: collect2.c:1674 collect2.c:1865 collect2.c:1898 +#: collect2.c:1676 collect2.c:1867 collect2.c:1900 #, c-format msgid "fclose %s" msgstr "" -#: collect2.c:1683 +#: collect2.c:1685 #, c-format msgid "collect2 version %s" msgstr "" -#: collect2.c:1795 +#: collect2.c:1797 #, c-format msgid "%d constructor found\n" msgid_plural "%d constructors found\n" msgstr[0] "" msgstr[1] "" -#: collect2.c:1799 +#: collect2.c:1801 #, c-format msgid "%d destructor found\n" msgid_plural "%d destructors found\n" msgstr[0] "" msgstr[1] "" -#: collect2.c:1803 +#: collect2.c:1805 #, c-format msgid "%d frame table found\n" msgid_plural "%d frame tables found\n" msgstr[0] "" msgstr[1] "" -#: collect2.c:1962 lto-wrapper.c:203 +#: collect2.c:1964 lto-wrapper.c:203 #, c-format msgid "can't get program status" msgstr "" -#: collect2.c:2031 +#: collect2.c:2033 #, c-format msgid "could not open response file %s" msgstr "" -#: collect2.c:2036 +#: collect2.c:2038 #, c-format msgid "could not write to response file %s" msgstr "" -#: collect2.c:2041 +#: collect2.c:2043 #, c-format msgid "could not close response file %s" msgstr "" -#: collect2.c:2059 +#: collect2.c:2061 #, c-format msgid "[cannot find %s]" msgstr "" -#: collect2.c:2074 +#: collect2.c:2076 #, c-format msgid "cannot find '%s'" msgstr "" -#: collect2.c:2078 collect2.c:2619 collect2.c:2815 lto-wrapper.c:172 +#: collect2.c:2080 collect2.c:2621 collect2.c:2817 lto-wrapper.c:172 #, c-format msgid "pex_init failed" msgstr "" -#: collect2.c:2116 +#: collect2.c:2118 #, c-format msgid "[Leaving %s]\n" msgstr "" -#: collect2.c:2348 +#: collect2.c:2350 #, c-format msgid "" "\n" "write_c_file - output name is %s, prefix is %s\n" msgstr "" -#: collect2.c:2593 +#: collect2.c:2595 #, c-format msgid "cannot find 'nm'" msgstr "" -#: collect2.c:2641 +#: collect2.c:2643 #, c-format msgid "can't open nm output" msgstr "" -#: collect2.c:2724 +#: collect2.c:2726 #, c-format msgid "init function found in object %s" msgstr "" -#: collect2.c:2734 +#: collect2.c:2736 #, c-format msgid "fini function found in object %s" msgstr "" -#: collect2.c:2836 +#: collect2.c:2838 #, c-format msgid "can't open ldd output" msgstr "" -#: collect2.c:2839 +#: collect2.c:2841 #, c-format msgid "" "\n" "ldd output with constructors/destructors.\n" msgstr "" -#: collect2.c:2854 +#: collect2.c:2856 #, c-format msgid "dynamic dependency %s not found" msgstr "" -#: collect2.c:2866 +#: collect2.c:2868 #, c-format msgid "unable to open dynamic dependency '%s'" msgstr "" -#: collect2.c:3027 +#: collect2.c:3029 #, c-format msgid "%s: not a COFF file" msgstr "" -#: collect2.c:3157 +#: collect2.c:3159 #, c-format msgid "%s: cannot open as COFF file" msgstr "" -#: collect2.c:3215 +#: collect2.c:3217 #, c-format msgid "library lib%s not found" msgstr "" @@ -357,44 +357,44 @@ msgstr "" msgid "Internal compiler error: Error reporting routines re-entered.\n" msgstr "" -#: final.c:1156 +#: final.c:1163 msgid "negative insn length" msgstr "" -#: final.c:2633 +#: final.c:2643 msgid "could not split insn" msgstr "" -#: final.c:3069 +#: final.c:3079 msgid "invalid 'asm': " msgstr "" -#: final.c:3252 +#: final.c:3262 #, c-format msgid "nested assembly dialect alternatives" msgstr "" -#: final.c:3269 final.c:3281 +#: final.c:3279 final.c:3291 #, c-format msgid "unterminated assembly dialect alternative" msgstr "" -#: final.c:3328 +#: final.c:3338 #, c-format msgid "operand number missing after %%-letter" msgstr "" -#: final.c:3331 final.c:3372 +#: final.c:3341 final.c:3382 #, c-format msgid "operand number out of range" msgstr "" -#: final.c:3389 +#: final.c:3399 #, c-format msgid "invalid %%-code" msgstr "" -#: final.c:3419 +#: final.c:3429 #, c-format msgid "'%%l' operand isn't a label" msgstr "" @@ -405,273 +405,273 @@ msgstr "" #. TARGET_PRINT_OPERAND must handle them. #. We can't handle floating point constants; #. PRINT_OPERAND must handle them. -#: final.c:3560 config/i386/i386.c:12975 config/pdp11/pdp11.c:1741 +#: final.c:3570 config/i386/i386.c:13149 config/pdp11/pdp11.c:1722 #, c-format msgid "floating constant misused" msgstr "" -#: final.c:3619 config/i386/i386.c:13073 config/pdp11/pdp11.c:1782 +#: final.c:3629 config/i386/i386.c:13247 config/pdp11/pdp11.c:1763 #, c-format msgid "invalid expression as operand" msgstr "" -#: gcc.c:1291 +#: gcc.c:1307 #, c-format msgid "Using built-in specs.\n" msgstr "" -#: gcc.c:1476 +#: gcc.c:1493 #, c-format msgid "" "Setting spec %s to '%s'\n" "\n" msgstr "" -#: gcc.c:1586 +#: gcc.c:1603 #, c-format msgid "Reading specs from %s\n" msgstr "" -#: gcc.c:1711 +#: gcc.c:1728 #, c-format msgid "could not find specs file %s\n" msgstr "" -#: gcc.c:1780 +#: gcc.c:1797 #, c-format msgid "rename spec %s to %s\n" msgstr "" -#: gcc.c:1782 +#: gcc.c:1799 #, c-format msgid "" "spec is '%s'\n" "\n" msgstr "" -#: gcc.c:2199 +#: gcc.c:2216 #, c-format msgid "%s\n" msgstr "" -#: gcc.c:2548 +#: gcc.c:2572 #, c-format msgid "" "\n" "Go ahead? (y or n) " msgstr "" -#: gcc.c:2688 +#: gcc.c:2712 #, c-format msgid "# %s %.2f %.2f\n" msgstr "" -#: gcc.c:2889 +#: gcc.c:2914 #, c-format msgid "Usage: %s [options] file...\n" msgstr "" -#: gcc.c:2890 +#: gcc.c:2915 msgid "Options:\n" msgstr "" -#: gcc.c:2892 +#: gcc.c:2917 msgid " -pass-exit-codes Exit with highest error code from a phase\n" msgstr "" -#: gcc.c:2893 +#: gcc.c:2918 msgid " --help Display this information\n" msgstr "" -#: gcc.c:2894 +#: gcc.c:2919 msgid "" " --target-help Display target specific command line options\n" msgstr "" -#: gcc.c:2895 +#: gcc.c:2920 msgid "" " --help={target|optimizers|warnings|params|[^]{joined|separate|" "undocumented}}[,...]\n" msgstr "" -#: gcc.c:2896 +#: gcc.c:2921 msgid "" " Display specific types of command line options\n" msgstr "" -#: gcc.c:2898 +#: gcc.c:2923 msgid " (Use '-v --help' to display command line options of sub-processes)\n" msgstr "" -#: gcc.c:2899 +#: gcc.c:2924 msgid " --version Display compiler version information\n" msgstr "" -#: gcc.c:2900 +#: gcc.c:2925 msgid " -dumpspecs Display all of the built in spec strings\n" msgstr "" -#: gcc.c:2901 +#: gcc.c:2926 msgid " -dumpversion Display the version of the compiler\n" msgstr "" -#: gcc.c:2902 +#: gcc.c:2927 msgid " -dumpmachine Display the compiler's target processor\n" msgstr "" -#: gcc.c:2903 +#: gcc.c:2928 msgid "" " -print-search-dirs Display the directories in the compiler's search " "path\n" msgstr "" -#: gcc.c:2904 +#: gcc.c:2929 msgid "" " -print-libgcc-file-name Display the name of the compiler's companion " "library\n" msgstr "" -#: gcc.c:2905 +#: gcc.c:2930 msgid " -print-file-name=<lib> Display the full path to library <lib>\n" msgstr "" -#: gcc.c:2906 +#: gcc.c:2931 msgid "" " -print-prog-name=<prog> Display the full path to compiler component " "<prog>\n" msgstr "" -#: gcc.c:2907 +#: gcc.c:2932 msgid "" " -print-multi-directory Display the root directory for versions of " "libgcc\n" msgstr "" -#: gcc.c:2908 +#: gcc.c:2933 msgid "" " -print-multi-lib Display the mapping between command line options " "and\n" " multiple library search directories\n" msgstr "" -#: gcc.c:2911 +#: gcc.c:2936 msgid " -print-multi-os-directory Display the relative path to OS libraries\n" msgstr "" -#: gcc.c:2912 +#: gcc.c:2937 msgid " -print-sysroot Display the target libraries directory\n" msgstr "" -#: gcc.c:2913 +#: gcc.c:2938 msgid "" " -print-sysroot-headers-suffix Display the sysroot suffix used to find " "headers\n" msgstr "" -#: gcc.c:2914 +#: gcc.c:2939 msgid "" " -Wa,<options> Pass comma-separated <options> on to the " "assembler\n" msgstr "" -#: gcc.c:2915 +#: gcc.c:2940 msgid "" " -Wp,<options> Pass comma-separated <options> on to the " "preprocessor\n" msgstr "" -#: gcc.c:2916 +#: gcc.c:2941 msgid "" " -Wl,<options> Pass comma-separated <options> on to the linker\n" msgstr "" -#: gcc.c:2917 +#: gcc.c:2942 msgid " -Xassembler <arg> Pass <arg> on to the assembler\n" msgstr "" -#: gcc.c:2918 +#: gcc.c:2943 msgid " -Xpreprocessor <arg> Pass <arg> on to the preprocessor\n" msgstr "" -#: gcc.c:2919 +#: gcc.c:2944 msgid " -Xlinker <arg> Pass <arg> on to the linker\n" msgstr "" -#: gcc.c:2920 +#: gcc.c:2945 msgid " -save-temps Do not delete intermediate files\n" msgstr "" -#: gcc.c:2921 +#: gcc.c:2946 msgid " -save-temps=<arg> Do not delete intermediate files\n" msgstr "" -#: gcc.c:2922 +#: gcc.c:2947 msgid "" " -no-canonical-prefixes Do not canonicalize paths when building relative\n" " prefixes to other gcc components\n" msgstr "" -#: gcc.c:2925 +#: gcc.c:2950 msgid " -pipe Use pipes rather than intermediate files\n" msgstr "" -#: gcc.c:2926 +#: gcc.c:2951 msgid " -time Time the execution of each subprocess\n" msgstr "" -#: gcc.c:2927 +#: gcc.c:2952 msgid "" " -specs=<file> Override built-in specs with the contents of " "<file>\n" msgstr "" -#: gcc.c:2928 +#: gcc.c:2953 msgid "" " -std=<standard> Assume that the input sources are for <standard>\n" msgstr "" -#: gcc.c:2929 +#: gcc.c:2954 msgid "" " --sysroot=<directory> Use <directory> as the root directory for " "headers\n" " and libraries\n" msgstr "" -#: gcc.c:2932 +#: gcc.c:2957 msgid "" " -B <directory> Add <directory> to the compiler's search paths\n" msgstr "" -#: gcc.c:2933 +#: gcc.c:2958 msgid "" " -v Display the programs invoked by the compiler\n" msgstr "" -#: gcc.c:2934 +#: gcc.c:2959 msgid "" " -### Like -v but options quoted and commands not " "executed\n" msgstr "" -#: gcc.c:2935 +#: gcc.c:2960 msgid "" " -E Preprocess only; do not compile, assemble or " "link\n" msgstr "" -#: gcc.c:2936 +#: gcc.c:2961 msgid " -S Compile only; do not assemble or link\n" msgstr "" -#: gcc.c:2937 +#: gcc.c:2962 msgid " -c Compile and assemble, but do not link\n" msgstr "" -#: gcc.c:2938 +#: gcc.c:2963 msgid " -o <file> Place the output into <file>\n" msgstr "" -#: gcc.c:2939 +#: gcc.c:2964 msgid "" " -x <language> Specify the language of the following input " "files\n" @@ -682,7 +682,7 @@ msgid "" "extension\n" msgstr "" -#: gcc.c:2946 +#: gcc.c:2971 #, c-format msgid "" "\n" @@ -691,43 +691,43 @@ msgid "" " other options on to these processes the -W<letter> options must be used.\n" msgstr "" -#: gcc.c:5154 +#: gcc.c:5198 #, c-format msgid "Processing spec %c%s%c, which is '%s'\n" msgstr "" -#: gcc.c:6418 +#: gcc.c:6462 #, c-format msgid "install: %s%s\n" msgstr "" -#: gcc.c:6421 +#: gcc.c:6465 #, c-format msgid "programs: %s\n" msgstr "" -#: gcc.c:6423 +#: gcc.c:6467 #, c-format msgid "libraries: %s\n" msgstr "" -#: gcc.c:6498 +#: gcc.c:6542 #, c-format msgid "" "\n" "For bug reporting instructions, please see:\n" msgstr "" -#: gcc.c:6514 +#: gcc.c:6558 #, c-format msgid "%s %s%s\n" msgstr "" -#: gcc.c:6517 gcov.c:444 fortran/gfortranspec.c:302 java/jcf-dump.c:1164 +#: gcc.c:6561 gcov.c:444 fortran/gfortranspec.c:302 java/jcf-dump.c:1164 msgid "(C)" msgstr "" -#: gcc.c:6518 java/jcf-dump.c:1165 +#: gcc.c:6562 java/jcf-dump.c:1165 #, c-format msgid "" "This is free software; see the source for copying conditions. There is NO\n" @@ -735,32 +735,32 @@ msgid "" "\n" msgstr "" -#: gcc.c:6535 +#: gcc.c:6579 #, c-format msgid "Target: %s\n" msgstr "" -#: gcc.c:6536 +#: gcc.c:6580 #, c-format msgid "Configured with: %s\n" msgstr "" -#: gcc.c:6550 +#: gcc.c:6594 #, c-format msgid "Thread model: %s\n" msgstr "" -#: gcc.c:6561 +#: gcc.c:6605 #, c-format msgid "gcc version %s %s\n" msgstr "" -#: gcc.c:6564 +#: gcc.c:6608 #, c-format msgid "gcc driver version %s %sexecuting gcc version %s\n" msgstr "" -#: gcc.c:6799 +#: gcc.c:6855 #, c-format msgid "" "\n" @@ -769,14 +769,14 @@ msgid "" "\n" msgstr "" -#: gcc.c:6800 +#: gcc.c:6856 #, c-format msgid "" "Use \"-Wl,OPTION\" to pass \"OPTION\" to the linker.\n" "\n" msgstr "" -#: gcc.c:7991 +#: gcc.c:8048 #, c-format msgid "" "Assembler options\n" @@ -784,7 +784,7 @@ msgid "" "\n" msgstr "" -#: gcc.c:7992 +#: gcc.c:8049 #, c-format msgid "" "Use \"-Wa,OPTION\" to pass \"OPTION\" to the assembler.\n" @@ -1091,15 +1091,15 @@ msgstr "" msgid "%s:cannot open source file\n" msgstr "" -#: gcse.c:4066 +#: gcse.c:4137 msgid "PRE disabled" msgstr "" -#: gcse.c:4616 +#: gcse.c:4687 msgid "GCSE disabled" msgstr "" -#: gcse.c:5137 +#: gcse.c:5208 msgid "const/copy propagation disabled" msgstr "" @@ -1211,7 +1211,7 @@ msgstr "" msgid "End of search list.\n" msgstr "" -#: input.c:39 c-family/c-opts.c:1288 cp/error.c:1046 fortran/cpp.c:568 +#: input.c:39 c-family/c-opts.c:1294 cp/error.c:1046 fortran/cpp.c:568 msgid "<built-in>" msgstr "" @@ -1239,27 +1239,27 @@ msgstr "" msgid "At top level:" msgstr "" -#: langhooks.c:394 cp/error.c:2814 +#: langhooks.c:394 cp/error.c:2818 #, c-format msgid "In member function %qs" msgstr "" -#: langhooks.c:398 cp/error.c:2817 +#: langhooks.c:398 cp/error.c:2821 #, c-format msgid "In function %qs" msgstr "" -#: langhooks.c:449 cp/error.c:2767 +#: langhooks.c:449 cp/error.c:2771 #, c-format msgid " inlined from %qs at %s:%d:%d" msgstr "" -#: langhooks.c:454 cp/error.c:2772 +#: langhooks.c:454 cp/error.c:2776 #, c-format msgid " inlined from %qs at %s:%d" msgstr "" -#: langhooks.c:460 cp/error.c:2778 +#: langhooks.c:460 cp/error.c:2782 #, c-format msgid " inlined from %qs" msgstr "" @@ -1290,7 +1290,7 @@ msgstr "" msgid "%s terminated with signal %d [%s]" msgstr "" -#: lto-wrapper.c:220 collect2.c:1988 +#: lto-wrapper.c:220 collect2.c:1990 #, gcc-internal-format, gfc-internal-format msgid "%s returned %d exit status" msgstr "" @@ -1325,12 +1325,7 @@ msgstr "" msgid "malformed COLLECT_GCC_OPTIONS" msgstr "" -#: lto-wrapper.c:461 lto-wrapper.c:619 -#, c-format -msgid "invalid LTO mode" -msgstr "" - -#: lto-wrapper.c:482 +#: lto-wrapper.c:484 #, c-format msgid "fopen: %s" msgstr "" @@ -1340,93 +1335,93 @@ msgstr "" msgid "This switch lacks documentation" msgstr "" -#: opts.c:1004 +#: opts.c:1010 msgid "[default]" msgstr "" -#: opts.c:1015 +#: opts.c:1021 msgid "[enabled]" msgstr "" -#: opts.c:1015 +#: opts.c:1021 msgid "[disabled]" msgstr "" -#: opts.c:1034 +#: opts.c:1040 #, c-format msgid " No options with the desired characteristics were found\n" msgstr "" -#: opts.c:1043 +#: opts.c:1049 #, c-format msgid "" " None found. Use --help=%s to show *all* the options supported by the %s " "front-end\n" msgstr "" -#: opts.c:1049 +#: opts.c:1055 #, c-format msgid "" " All options with the desired characteristics have already been displayed\n" msgstr "" -#: opts.c:1144 +#: opts.c:1150 msgid "The following options are target specific" msgstr "" -#: opts.c:1147 +#: opts.c:1153 msgid "The following options control compiler warning messages" msgstr "" -#: opts.c:1150 +#: opts.c:1156 msgid "The following options control optimizations" msgstr "" -#: opts.c:1153 opts.c:1192 +#: opts.c:1159 opts.c:1198 msgid "The following options are language-independent" msgstr "" -#: opts.c:1156 +#: opts.c:1162 msgid "The --param option recognizes the following as parameters" msgstr "" -#: opts.c:1162 +#: opts.c:1168 msgid "The following options are specific to just the language " msgstr "" -#: opts.c:1164 +#: opts.c:1170 msgid "The following options are supported by the language " msgstr "" -#: opts.c:1175 +#: opts.c:1181 msgid "The following options are not documented" msgstr "" -#: opts.c:1177 +#: opts.c:1183 msgid "The following options take separate arguments" msgstr "" -#: opts.c:1179 +#: opts.c:1185 msgid "The following options take joined arguments" msgstr "" -#: opts.c:1190 +#: opts.c:1196 msgid "The following options are language-related" msgstr "" -#: opts.c:1987 +#: opts.c:2010 msgid "enabled by default" msgstr "" -#: plugin.c:789 +#: plugin.c:780 msgid "Event" msgstr "" -#: plugin.c:789 +#: plugin.c:780 msgid "Plugins" msgstr "" -#: plugin.c:821 +#: plugin.c:812 #, c-format msgid "" "*** WARNING *** there are active plugins, do not report this as a bug unless " @@ -1447,36 +1442,36 @@ msgid "could not find a spill register" msgstr "" #. It's the compiler's fault. -#: reload1.c:7863 +#: reload1.c:7852 msgid "VOIDmode on an output" msgstr "" -#: reload1.c:8618 +#: reload1.c:8619 msgid "failure trying to reload:" msgstr "" -#: rtl-error.c:117 +#: rtl-error.c:118 msgid "unrecognizable insn:" msgstr "" -#: rtl-error.c:119 +#: rtl-error.c:120 msgid "insn does not satisfy its constraints:" msgstr "" -#: targhooks.c:1440 +#: targhooks.c:1469 #, c-format msgid "created and used with differing settings of '%s'" msgstr "" -#: targhooks.c:1442 +#: targhooks.c:1471 msgid "out of memory" msgstr "" -#: targhooks.c:1457 +#: targhooks.c:1486 msgid "created and used with different settings of -fpic" msgstr "" -#: targhooks.c:1459 +#: targhooks.c:1488 msgid "created and used with different settings of -fpie" msgstr "" @@ -1551,12 +1546,12 @@ msgstr "" msgid "options enabled: " msgstr "" -#: tree-vrp.c:6792 +#: tree-vrp.c:6794 msgid "" "assuming signed overflow does not occur when simplifying && or || to & or |" msgstr "" -#: tree-vrp.c:6796 +#: tree-vrp.c:6798 msgid "" "assuming signed overflow does not occur when simplifying ==, != or ! to " "identity or ^" @@ -1687,617 +1682,626 @@ msgstr "" msgid "permerror: " msgstr "" -#: params.def:48 +#: params.def:49 msgid "The threshold ratio between current and hottest structure counts" msgstr "" -#: params.def:55 +#: params.def:56 msgid "Maximal estimated outcome of branch considered predictable" msgstr "" -#: params.def:72 +#: params.def:73 msgid "" "The maximum number of instructions in a single function eligible for inlining" msgstr "" -#: params.def:84 +#: params.def:85 msgid "The maximum number of instructions when automatically inlining" msgstr "" -#: params.def:89 +#: params.def:90 msgid "" "The maximum number of instructions inline function can grow to via recursive " "inlining" msgstr "" -#: params.def:94 +#: params.def:95 msgid "" "The maximum number of instructions non-inline function can grow to via " "recursive inlining" msgstr "" -#: params.def:99 +#: params.def:100 msgid "The maximum depth of recursive inlining for inline functions" msgstr "" -#: params.def:104 +#: params.def:105 msgid "The maximum depth of recursive inlining for non-inline functions" msgstr "" -#: params.def:109 +#: params.def:110 msgid "" "Inline recursively only when the probability of call being executed exceeds " "the parameter" msgstr "" -#: params.def:117 +#: params.def:118 msgid "" "The maximum number of nested indirect inlining performed by early inliner" msgstr "" -#: params.def:123 +#: params.def:124 msgid "" "Probability that COMDAT function will be shared with different compilatoin " "unit" msgstr "" -#: params.def:129 +#: params.def:130 msgid "" "Maximum probability of the entry BB of split region (in percent relative to " "entry BB of the function) to make partial inlining happen" msgstr "" -#: params.def:136 +#: params.def:137 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:142 +#: params.def:143 msgid "" "If -ftree-vectorize is used, the minimal loop bound of a loop to be " "considered for vectorization" msgstr "" -#: params.def:153 +#: params.def:154 msgid "The maximum number of instructions to consider to fill a delay slot" msgstr "" -#: params.def:164 +#: params.def:165 msgid "" "The maximum number of instructions to consider to find accurate live " "register information" msgstr "" -#: params.def:174 +#: params.def:175 msgid "The maximum length of scheduling's pending operations list" msgstr "" -#: params.def:179 +#: params.def:180 msgid "The size of function body to be considered large" msgstr "" -#: params.def:183 +#: params.def:184 msgid "Maximal growth due to inlining of large function (in percent)" msgstr "" -#: params.def:187 +#: params.def:188 msgid "The size of translation unit to be considered large" msgstr "" -#: params.def:191 +#: params.def:192 msgid "" "How much can given compilation unit grow because of the inlining (in percent)" msgstr "" -#: params.def:195 +#: params.def:196 msgid "" "How much can given compilation unit grow because of the interprocedural " "constant propagation (in percent)" msgstr "" -#: params.def:199 +#: params.def:200 msgid "" "Maximal estimated growth of function body caused by early inlining of single " "call" msgstr "" -#: params.def:203 +#: params.def:204 msgid "The size of stack frame to be considered large" msgstr "" -#: params.def:207 +#: params.def:208 msgid "Maximal stack frame growth due to inlining (in percent)" msgstr "" -#: params.def:214 +#: params.def:215 msgid "The maximum amount of memory to be allocated by GCSE" msgstr "" -#: params.def:225 +#: params.def:222 +msgid "The maximum ratio of insertions to deletions of expressions in GCSE" +msgstr "" + +#: params.def:233 msgid "" "The threshold ratio for performing partial redundancy elimination after " "reload" msgstr "" -#: params.def:232 +#: params.def:240 msgid "" "The threshold ratio of critical edges execution count that permit performing " "redundancy elimination after reload" msgstr "" -#: params.def:240 +#: params.def:248 msgid "" "Scaling factor in calculation of maximum distance an expression can be moved " "by GCSE optimizations" msgstr "" -#: params.def:246 +#: params.def:254 msgid "" "Cost at which GCSE optimizations will not constraint the distance an " "expression can travel" msgstr "" -#: params.def:254 +#: params.def:262 msgid "Maximum depth of search in the dominator tree for expressions to hoist" msgstr "" -#: params.def:266 +#: params.def:274 msgid "The maximum number of instructions to consider to unroll in a loop" msgstr "" -#: params.def:272 +#: params.def:280 msgid "" "The maximum number of instructions to consider to unroll in a loop on average" msgstr "" -#: params.def:277 +#: params.def:285 msgid "The maximum number of unrollings of a single loop" msgstr "" -#: params.def:282 +#: params.def:290 msgid "The maximum number of insns of a peeled loop" msgstr "" -#: params.def:287 +#: params.def:295 msgid "The maximum number of peelings of a single loop" msgstr "" -#: params.def:292 +#: params.def:300 msgid "The maximum number of insns of a completely peeled loop" msgstr "" -#: params.def:297 +#: params.def:305 msgid "" "The maximum number of peelings of a single loop that is peeled completely" msgstr "" -#: params.def:302 +#: params.def:310 msgid "The maximum number of insns of a peeled loop that rolls only once" msgstr "" -#: params.def:307 +#: params.def:315 msgid "The maximum depth of a loop nest we completely peel" msgstr "" -#: params.def:313 +#: params.def:321 msgid "The maximum number of insns of an unswitched loop" msgstr "" -#: params.def:318 +#: params.def:326 msgid "The maximum number of unswitchings in a single loop" msgstr "" -#: params.def:325 +#: params.def:333 msgid "" "Bound on the number of iterations the brute force # of iterations analysis " "algorithm evaluates" msgstr "" -#: params.def:331 +#: params.def:339 msgid "Bound on the cost of an expression to compute the number of iterations" msgstr "" -#: params.def:337 +#: params.def:345 msgid "" "A factor for tuning the upper bound that swing modulo scheduler uses for " "scheduling a loop" msgstr "" -#: params.def:341 +#: params.def:349 msgid "" "The number of cycles the swing modulo scheduler considers when checking " "conflicts using DFA" msgstr "" -#: params.def:345 +#: params.def:353 msgid "" "A threshold on the average loop count considered by the swing modulo " "scheduler" msgstr "" -#: params.def:350 +#: params.def:358 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:354 +#: params.def:362 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:359 +#: params.def:367 msgid "" "Select fraction of the maximal frequency of executions of basic block in " "function given basic block get alignment" msgstr "" -#: params.def:364 +#: params.def:372 msgid "" "Loops iterating at least selected number of iterations will get loop " "alignement." msgstr "" -#: params.def:380 +#: params.def:388 msgid "The maximum number of loop iterations we predict statically" msgstr "" -#: params.def:384 +#: params.def:392 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:388 +#: params.def:396 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:392 +#: params.def:400 msgid "Maximal code growth caused by tail duplication (in percent)" msgstr "" -#: params.def:396 +#: params.def:404 msgid "" "Stop reverse growth if the reverse probability of best edge is less than " "this threshold (in percent)" msgstr "" -#: params.def:400 +#: params.def:408 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:404 +#: params.def:412 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:410 +#: params.def:418 msgid "The maximum number of incoming edges to consider for crossjumping" msgstr "" -#: params.def:416 +#: params.def:424 msgid "" "The minimum number of matching instructions to consider for crossjumping" msgstr "" -#: params.def:422 +#: params.def:430 msgid "The maximum expansion factor when copying basic blocks" msgstr "" -#: params.def:428 +#: params.def:436 msgid "" "The maximum number of insns to duplicate when unfactoring computed gotos" msgstr "" -#: params.def:434 +#: params.def:442 msgid "The maximum length of path considered in cse" msgstr "" -#: params.def:438 +#: params.def:446 msgid "The maximum instructions CSE process before flushing" msgstr "" -#: params.def:445 +#: params.def:453 msgid "" "The minimum cost of an expensive expression in the loop invariant motion" msgstr "" -#: params.def:454 +#: params.def:462 msgid "" "Bound on number of candidates below that all candidates are considered in iv " "optimizations" msgstr "" -#: params.def:462 +#: params.def:470 msgid "Bound on number of iv uses in loop optimized in iv optimizations" msgstr "" -#: params.def:470 +#: params.def:478 msgid "" "If number of candidates in the set is smaller, we always try to remove " "unused ivs during its optimization" msgstr "" -#: params.def:475 +#: params.def:483 msgid "Bound on size of expressions used in the scalar evolutions analyzer" msgstr "" -#: params.def:480 +#: params.def:488 +msgid "" +"Bound on the complexity of the expressions in the scalar evolutions analyzer" +msgstr "" + +#: params.def:493 msgid "Bound on the number of variables in Omega constraint systems" msgstr "" -#: params.def:485 +#: params.def:498 msgid "Bound on the number of inequalities in Omega constraint systems" msgstr "" -#: params.def:490 +#: params.def:503 msgid "Bound on the number of equalities in Omega constraint systems" msgstr "" -#: params.def:495 +#: params.def:508 msgid "Bound on the number of wild cards in Omega constraint systems" msgstr "" -#: params.def:500 +#: params.def:513 msgid "Bound on the size of the hash table in Omega constraint systems" msgstr "" -#: params.def:505 +#: params.def:518 msgid "Bound on the number of keys in Omega constraint systems" msgstr "" -#: params.def:510 +#: params.def:523 msgid "" "When set to 1, use expensive methods to eliminate all redundant constraints" msgstr "" -#: params.def:515 +#: params.def:528 msgid "" "Bound on number of runtime checks inserted by the vectorizer's loop " "versioning for alignment check" msgstr "" -#: params.def:520 +#: params.def:533 msgid "" "Bound on number of runtime checks inserted by the vectorizer's loop " "versioning for alias check" msgstr "" -#: params.def:525 +#: params.def:538 msgid "The maximum memory locations recorded by cselib" msgstr "" -#: params.def:538 +#: params.def:551 msgid "" "Minimum heap expansion to trigger garbage collection, as a percentage of the " "total size of the heap" msgstr "" -#: params.def:543 +#: params.def:556 msgid "Minimum heap size before we start collecting garbage, in kilobytes" msgstr "" -#: params.def:551 +#: params.def:564 msgid "" "The maximum number of instructions to search backward when looking for " "equivalent reload" msgstr "" -#: params.def:556 params.def:566 +#: params.def:569 params.def:579 msgid "" "The maximum number of blocks in a region to be considered for interblock " "scheduling" msgstr "" -#: params.def:561 params.def:571 +#: params.def:574 params.def:584 msgid "" "The maximum number of insns in a region to be considered for interblock " "scheduling" msgstr "" -#: params.def:576 +#: params.def:589 msgid "" "The minimum probability of reaching a source block for interblock " "speculative scheduling" msgstr "" -#: params.def:581 +#: params.def:594 msgid "The maximum number of iterations through CFG to extend regions" msgstr "" -#: params.def:586 +#: params.def:599 msgid "" "The maximum conflict delay for an insn to be considered for speculative " "motion" msgstr "" -#: params.def:591 +#: params.def:604 msgid "" "The minimal probability of speculation success (in percents), so that " "speculative insn will be scheduled." msgstr "" -#: params.def:596 +#: params.def:609 msgid "The maximum size of the lookahead window of selective scheduling" msgstr "" -#: params.def:601 +#: params.def:614 msgid "Maximum number of times that an insn could be scheduled" msgstr "" -#: params.def:606 +#: params.def:619 msgid "" "Maximum number of instructions in the ready list that are considered " "eligible for renaming" msgstr "" -#: params.def:611 +#: params.def:624 msgid "Minimal distance between possibly conflicting store and load" msgstr "" -#: params.def:616 +#: params.def:629 msgid "" "The maximum number of RTL nodes that can be recorded as combiner's last value" msgstr "" -#: params.def:624 +#: params.def:637 msgid "The upper bound for sharing integer constants" msgstr "" -#: params.def:643 +#: params.def:656 msgid "" "Minimum number of virtual mappings to consider switching to full virtual " "renames" msgstr "" -#: params.def:648 +#: params.def:661 msgid "" "Ratio between virtual mappings and virtual symbols to do full virtual renames" msgstr "" -#: params.def:653 +#: params.def:666 msgid "" "The lower bound for a buffer to be considered for stack smashing protection" msgstr "" -#: params.def:671 +#: params.def:684 msgid "" "Maximum number of statements allowed in a block that needs to be duplicated " "when threading jumps" msgstr "" -#: params.def:680 +#: params.def:693 msgid "" "Maximum number of fields in a structure before pointer analysis treats the " "structure as a single variable" msgstr "" -#: params.def:685 +#: params.def:698 msgid "" "The maximum number of instructions ready to be issued to be considered by " "the scheduler during the first scheduling pass" msgstr "" -#: params.def:695 +#: params.def:708 msgid "The number of insns executed before prefetch is completed" msgstr "" -#: params.def:702 +#: params.def:715 msgid "The number of prefetches that can run at the same time" msgstr "" -#: params.def:709 +#: params.def:722 msgid "The size of L1 cache" msgstr "" -#: params.def:716 +#: params.def:729 msgid "The size of L1 cache line" msgstr "" -#: params.def:723 +#: params.def:736 msgid "The size of L2 cache" msgstr "" -#: params.def:734 +#: params.def:747 msgid "Whether to use canonical types" msgstr "" -#: params.def:739 +#: params.def:752 msgid "" "Maximum length of partial antic set when performing tree pre optimization" msgstr "" -#: params.def:749 +#: params.def:762 msgid "Maximum size of a SCC before SCCVN stops processing a function" msgstr "" -#: params.def:754 +#: params.def:767 msgid "Max loops number for regional RA" msgstr "" -#: params.def:759 +#: params.def:772 msgid "Max size of conflict table in MB" msgstr "" -#: params.def:764 +#: params.def:777 msgid "" "The number of registers in each class kept unused by loop invariant motion" msgstr "" -#: params.def:772 +#: params.def:785 msgid "" "The maximum ratio between array size and switch branches for a switch " "conversion to take place" msgstr "" -#: params.def:780 +#: params.def:793 msgid "size of tiles for loop blocking" msgstr "" -#: params.def:787 +#: params.def:800 msgid "maximum number of parameters in a SCoP" msgstr "" -#: params.def:794 +#: params.def:807 msgid "maximum number of basic blocks per function to be analyzed by Graphite" msgstr "" -#: params.def:801 +#: params.def:814 msgid "Max basic blocks number in loop for loop invariant motion" msgstr "" -#: params.def:807 +#: params.def:820 msgid "" "Maximum number of instructions in basic block to be considered for SLP " "vectorization" msgstr "" -#: params.def:812 +#: params.def:825 msgid "" "Min. ratio of insns to prefetches to enable prefetching for a loop with an " "unknown trip count" msgstr "" -#: params.def:818 +#: params.def:831 msgid "Min. ratio of insns to mem ops to enable prefetching in a loop" msgstr "" -#: params.def:825 +#: params.def:838 msgid "Max. size of var tracking hash tables" msgstr "" -#: params.def:832 +#: params.def:845 msgid "The minimum UID to be used for a nondebug insn" msgstr "" -#: params.def:837 +#: params.def:850 msgid "" "Maximum allowed growth of size of new parameters ipa-sra replaces a pointer " "to an aggregate with" msgstr "" -#: params.def:843 +#: params.def:856 msgid "" "Maximum size of a type list associated with each parameter for " "devirtualization" msgstr "" -#: params.def:851 +#: params.def:864 msgid "Number of paritions program should be split to" msgstr "" -#: params.def:856 +#: params.def:869 msgid "Size of minimal paritition for WHOPR (in estimated instructions)" msgstr "" -#: params.def:863 +#: params.def:876 msgid "" "Maximum number of namespaces to search for alternatives when name lookup " "fails" @@ -2572,7 +2576,7 @@ msgid "length modifier in strfmon format" msgstr "" #. Handle deferred options from command-line. -#: c-family/c-opts.c:1306 fortran/cpp.c:573 +#: c-family/c-opts.c:1312 fortran/cpp.c:573 msgid "<command-line>" msgstr "" @@ -2622,24 +2626,24 @@ msgstr "" msgid "invalid %%J value" msgstr "" -#: config/alpha/alpha.c:5196 config/ia64/ia64.c:5214 +#: config/alpha/alpha.c:5196 config/ia64/ia64.c:5169 #, c-format msgid "invalid %%r value" msgstr "" -#: config/alpha/alpha.c:5206 config/ia64/ia64.c:5168 -#: config/rs6000/rs6000.c:15830 config/xtensa/xtensa.c:2307 +#: config/alpha/alpha.c:5206 config/ia64/ia64.c:5123 +#: config/rs6000/rs6000.c:15898 config/xtensa/xtensa.c:2356 #, c-format msgid "invalid %%R value" msgstr "" -#: config/alpha/alpha.c:5212 config/rs6000/rs6000.c:15749 -#: config/xtensa/xtensa.c:2274 +#: config/alpha/alpha.c:5212 config/rs6000/rs6000.c:15817 +#: config/xtensa/xtensa.c:2323 #, c-format msgid "invalid %%N value" msgstr "" -#: config/alpha/alpha.c:5220 config/rs6000/rs6000.c:15777 +#: config/alpha/alpha.c:5220 config/rs6000/rs6000.c:15845 #, c-format msgid "invalid %%P value" msgstr "" @@ -2649,17 +2653,17 @@ msgstr "" msgid "invalid %%h value" msgstr "" -#: config/alpha/alpha.c:5236 config/xtensa/xtensa.c:2300 +#: config/alpha/alpha.c:5236 config/xtensa/xtensa.c:2349 #, c-format msgid "invalid %%L value" msgstr "" -#: config/alpha/alpha.c:5275 config/rs6000/rs6000.c:15731 +#: config/alpha/alpha.c:5275 config/rs6000/rs6000.c:15799 #, c-format msgid "invalid %%m value" msgstr "" -#: config/alpha/alpha.c:5283 config/rs6000/rs6000.c:15739 +#: config/alpha/alpha.c:5283 config/rs6000/rs6000.c:15807 #, c-format msgid "invalid %%M value" msgstr "" @@ -2670,7 +2674,7 @@ msgid "invalid %%U value" msgstr "" #: config/alpha/alpha.c:5339 config/alpha/alpha.c:5353 -#: config/rs6000/rs6000.c:15838 +#: config/rs6000/rs6000.c:15906 #, c-format msgid "invalid %%s value" msgstr "" @@ -2680,7 +2684,7 @@ msgstr "" msgid "invalid %%C value" msgstr "" -#: config/alpha/alpha.c:5413 config/rs6000/rs6000.c:15596 +#: config/alpha/alpha.c:5413 config/rs6000/rs6000.c:15664 #, c-format msgid "invalid %%E value" msgstr "" @@ -2691,22 +2695,22 @@ msgid "unknown relocation unspec" msgstr "" #: config/alpha/alpha.c:5447 config/crx/crx.c:1119 -#: config/rs6000/rs6000.c:16193 config/spu/spu.c:1721 +#: config/rs6000/rs6000.c:16272 config/spu/spu.c:1725 #, c-format msgid "invalid %%xn code" msgstr "" -#: config/arc/arc.c:1743 config/m32r/m32r.c:2149 +#: config/arc/arc.c:1743 config/m32r/m32r.c:2155 #, c-format msgid "invalid operand to %%R code" msgstr "" -#: config/arc/arc.c:1775 config/m32r/m32r.c:2172 +#: config/arc/arc.c:1775 config/m32r/m32r.c:2178 #, c-format msgid "invalid operand to %%H/%%L code" msgstr "" -#: config/arc/arc.c:1797 config/m32r/m32r.c:2243 +#: config/arc/arc.c:1797 config/m32r/m32r.c:2249 #, c-format msgid "invalid operand to %%U code" msgstr "" @@ -2718,33 +2722,33 @@ msgstr "" #. Unknown flag. #. Undocumented flag. -#: config/arc/arc.c:1815 config/m32r/m32r.c:2270 config/sparc/sparc.c:7616 +#: config/arc/arc.c:1815 config/m32r/m32r.c:2276 config/sparc/sparc.c:7633 #, c-format msgid "invalid operand output code" msgstr "" -#: config/arm/arm.c:15891 config/arm/arm.c:15909 +#: config/arm/arm.c:16019 config/arm/arm.c:16037 #, c-format msgid "predicated Thumb instruction" msgstr "" -#: config/arm/arm.c:15897 +#: config/arm/arm.c:16025 #, c-format msgid "predicated instruction in conditional sequence" msgstr "" -#: config/arm/arm.c:16067 +#: config/arm/arm.c:16195 #, c-format msgid "invalid shift operand" msgstr "" -#: config/arm/arm.c:16124 config/arm/arm.c:16146 config/arm/arm.c:16156 -#: config/arm/arm.c:16166 config/arm/arm.c:16176 config/arm/arm.c:16215 -#: config/arm/arm.c:16233 config/arm/arm.c:16268 config/arm/arm.c:16287 -#: config/arm/arm.c:16302 config/arm/arm.c:16329 config/arm/arm.c:16336 -#: config/arm/arm.c:16354 config/arm/arm.c:16361 config/arm/arm.c:16369 -#: config/arm/arm.c:16390 config/arm/arm.c:16397 config/arm/arm.c:16522 -#: config/arm/arm.c:16529 config/arm/arm.c:16547 config/arm/arm.c:16554 +#: config/arm/arm.c:16252 config/arm/arm.c:16274 config/arm/arm.c:16284 +#: config/arm/arm.c:16294 config/arm/arm.c:16304 config/arm/arm.c:16343 +#: config/arm/arm.c:16361 config/arm/arm.c:16396 config/arm/arm.c:16415 +#: config/arm/arm.c:16430 config/arm/arm.c:16457 config/arm/arm.c:16464 +#: config/arm/arm.c:16482 config/arm/arm.c:16489 config/arm/arm.c:16497 +#: config/arm/arm.c:16518 config/arm/arm.c:16525 config/arm/arm.c:16650 +#: config/arm/arm.c:16657 config/arm/arm.c:16675 config/arm/arm.c:16682 #: config/bfin/bfin.c:1684 config/bfin/bfin.c:1691 config/bfin/bfin.c:1698 #: config/bfin/bfin.c:1705 config/bfin/bfin.c:1714 config/bfin/bfin.c:1721 #: config/bfin/bfin.c:1728 config/bfin/bfin.c:1735 @@ -2752,69 +2756,69 @@ msgstr "" msgid "invalid operand for code '%c'" msgstr "" -#: config/arm/arm.c:16228 +#: config/arm/arm.c:16356 #, c-format msgid "instruction never executed" msgstr "" -#: config/arm/arm.c:16566 +#: config/arm/arm.c:16694 #, c-format msgid "missing operand" msgstr "" -#: config/arm/arm.c:18996 +#: config/arm/arm.c:19124 msgid "function parameters cannot have __fp16 type" msgstr "" -#: config/arm/arm.c:19006 +#: config/arm/arm.c:19134 msgid "functions cannot return __fp16 type" msgstr "" -#: config/avr/avr.c:1096 +#: config/avr/avr.c:1159 #, c-format msgid "address operand requires constraint for X, Y, or Z register" msgstr "" -#: config/avr/avr.c:1222 +#: config/avr/avr.c:1285 msgid "bad address, not a constant):" msgstr "" -#: config/avr/avr.c:1235 +#: config/avr/avr.c:1298 msgid "bad address, not (reg+disp):" msgstr "" -#: config/avr/avr.c:1242 +#: config/avr/avr.c:1305 msgid "bad address, not post_inc or pre_dec:" msgstr "" -#: config/avr/avr.c:1253 +#: config/avr/avr.c:1316 msgid "internal compiler error. Bad address:" msgstr "" -#: config/avr/avr.c:1278 +#: config/avr/avr.c:1341 msgid "internal compiler error. Unknown mode:" msgstr "" -#: config/avr/avr.c:1859 config/avr/avr.c:2547 +#: config/avr/avr.c:1922 config/avr/avr.c:2610 msgid "invalid insn:" msgstr "" -#: config/avr/avr.c:1898 config/avr/avr.c:1984 config/avr/avr.c:2033 -#: config/avr/avr.c:2061 config/avr/avr.c:2156 config/avr/avr.c:2325 -#: config/avr/avr.c:2586 config/avr/avr.c:2698 +#: config/avr/avr.c:1961 config/avr/avr.c:2047 config/avr/avr.c:2096 +#: config/avr/avr.c:2124 config/avr/avr.c:2219 config/avr/avr.c:2388 +#: config/avr/avr.c:2649 config/avr/avr.c:2761 msgid "incorrect insn:" msgstr "" -#: config/avr/avr.c:2080 config/avr/avr.c:2241 config/avr/avr.c:2396 -#: config/avr/avr.c:2764 +#: config/avr/avr.c:2143 config/avr/avr.c:2304 config/avr/avr.c:2459 +#: config/avr/avr.c:2827 msgid "unknown move insn:" msgstr "" -#: config/avr/avr.c:2994 +#: config/avr/avr.c:3057 msgid "bad shift insn:" msgstr "" -#: config/avr/avr.c:3110 config/avr/avr.c:3530 config/avr/avr.c:3888 +#: config/avr/avr.c:3173 config/avr/avr.c:3593 config/avr/avr.c:3951 msgid "internal compiler error. Incorrect shift:" msgstr "" @@ -2828,9 +2832,9 @@ msgstr "" msgid "invalid const_double operand" msgstr "" -#: config/cris/cris.c:575 config/moxie/moxie.c:111 final.c:3074 final.c:3076 -#: fold-const.c:281 gcc.c:4527 gcc.c:4541 loop-iv.c:2968 loop-iv.c:2977 -#: rtl-error.c:102 toplev.c:359 tree-ssa-loop-niter.c:1921 tree-vrp.c:5992 +#: config/cris/cris.c:575 config/moxie/moxie.c:111 final.c:3084 final.c:3086 +#: fold-const.c:281 gcc.c:4563 gcc.c:4577 loop-iv.c:2968 loop-iv.c:2977 +#: rtl-error.c:103 toplev.c:359 tree-ssa-loop-niter.c:1921 tree-vrp.c:5994 #: cp/typeck.c:5229 java/expr.c:384 lto/lto-object.c:184 lto/lto-object.c:269 #: lto/lto-object.c:326 lto/lto-object.c:350 #, gcc-internal-format, gfc-internal-format @@ -2974,81 +2978,81 @@ msgstr "" msgid "fr30_print_operand: unhandled MEM" msgstr "" -#: config/frv/frv.c:2608 +#: config/frv/frv.c:2563 msgid "bad insn to frv_print_operand_address:" msgstr "" -#: config/frv/frv.c:2619 +#: config/frv/frv.c:2574 msgid "bad register to frv_print_operand_memory_reference_reg:" msgstr "" -#: config/frv/frv.c:2658 config/frv/frv.c:2668 config/frv/frv.c:2677 -#: config/frv/frv.c:2698 config/frv/frv.c:2703 +#: config/frv/frv.c:2613 config/frv/frv.c:2623 config/frv/frv.c:2632 +#: config/frv/frv.c:2653 config/frv/frv.c:2658 msgid "bad insn to frv_print_operand_memory_reference:" msgstr "" -#: config/frv/frv.c:2789 +#: config/frv/frv.c:2744 #, c-format msgid "bad condition code" msgstr "" -#: config/frv/frv.c:2865 +#: config/frv/frv.c:2820 msgid "bad insn in frv_print_operand, bad const_double" msgstr "" -#: config/frv/frv.c:2926 +#: config/frv/frv.c:2881 msgid "bad insn to frv_print_operand, 'e' modifier:" msgstr "" -#: config/frv/frv.c:2934 +#: config/frv/frv.c:2889 msgid "bad insn to frv_print_operand, 'F' modifier:" msgstr "" -#: config/frv/frv.c:2950 +#: config/frv/frv.c:2905 msgid "bad insn to frv_print_operand, 'f' modifier:" msgstr "" -#: config/frv/frv.c:2964 +#: config/frv/frv.c:2919 msgid "bad insn to frv_print_operand, 'g' modifier:" msgstr "" -#: config/frv/frv.c:3012 +#: config/frv/frv.c:2967 msgid "bad insn to frv_print_operand, 'L' modifier:" msgstr "" -#: config/frv/frv.c:3025 +#: config/frv/frv.c:2980 msgid "bad insn to frv_print_operand, 'M/N' modifier:" msgstr "" -#: config/frv/frv.c:3046 +#: config/frv/frv.c:3001 msgid "bad insn to frv_print_operand, 'O' modifier:" msgstr "" -#: config/frv/frv.c:3064 +#: config/frv/frv.c:3019 msgid "bad insn to frv_print_operand, P modifier:" msgstr "" -#: config/frv/frv.c:3084 +#: config/frv/frv.c:3039 msgid "bad insn in frv_print_operand, z case" msgstr "" -#: config/frv/frv.c:3115 +#: config/frv/frv.c:3070 msgid "bad insn in frv_print_operand, 0 case" msgstr "" -#: config/frv/frv.c:3120 +#: config/frv/frv.c:3075 msgid "frv_print_operand: unknown code" msgstr "" -#: config/frv/frv.c:4521 +#: config/frv/frv.c:4476 msgid "bad output_move_single operand" msgstr "" -#: config/frv/frv.c:4648 +#: config/frv/frv.c:4603 msgid "bad output_move_double operand" msgstr "" -#: config/frv/frv.c:4790 +#: config/frv/frv.c:4745 msgid "bad output_condmove_single operand" msgstr "" @@ -3061,76 +3065,76 @@ msgstr "" #. #else #. #define TARGET_VERSION fprintf (stderr, " (68k, MIT syntax)"); #. #endif -#: config/frv/frv.h:295 +#: config/frv/frv.h:252 #, c-format msgid " (frv)" msgstr "" -#: config/i386/i386.c:13067 +#: config/i386/i386.c:13241 #, c-format msgid "invalid UNSPEC as operand" msgstr "" -#: config/i386/i386.c:13664 +#: config/i386/i386.c:13846 #, c-format msgid "'%%&' used without any local dynamic TLS references" msgstr "" -#: config/i386/i386.c:13755 config/i386/i386.c:13830 +#: config/i386/i386.c:13937 config/i386/i386.c:14012 #, c-format msgid "invalid operand size for operand code '%c'" msgstr "" -#: config/i386/i386.c:13825 +#: config/i386/i386.c:14007 #, c-format msgid "invalid operand type used with operand code '%c'" msgstr "" -#: config/i386/i386.c:13905 config/i386/i386.c:13945 +#: config/i386/i386.c:14087 config/i386/i386.c:14127 #, c-format msgid "operand is not a condition code, invalid operand code 'D'" msgstr "" -#: config/i386/i386.c:13971 +#: config/i386/i386.c:14153 #, c-format msgid "" "operand is neither a constant nor a condition code, invalid operand code 'C'" msgstr "" -#: config/i386/i386.c:13981 +#: config/i386/i386.c:14163 #, c-format msgid "" "operand is neither a constant nor a condition code, invalid operand code 'F'" msgstr "" -#: config/i386/i386.c:13999 +#: config/i386/i386.c:14181 #, c-format msgid "" "operand is neither a constant nor a condition code, invalid operand code 'c'" msgstr "" -#: config/i386/i386.c:14009 +#: config/i386/i386.c:14191 #, c-format msgid "" "operand is neither a constant nor a condition code, invalid operand code 'f'" msgstr "" -#: config/i386/i386.c:14112 +#: config/i386/i386.c:14294 #, c-format msgid "operand is not a condition code, invalid operand code 'Y'" msgstr "" -#: config/i386/i386.c:14138 +#: config/i386/i386.c:14320 #, c-format msgid "invalid operand code '%c'" msgstr "" -#: config/i386/i386.c:14188 +#: config/i386/i386.c:14370 #, c-format msgid "invalid constraints for operand" msgstr "" -#: config/i386/i386.c:22086 +#: config/i386/i386.c:22268 msgid "unknown insn mode" msgstr "" @@ -3151,25 +3155,25 @@ msgstr "" msgid "environment variable DJGPP points to corrupt file '%s'" msgstr "" -#: config/ia64/ia64.c:5096 +#: config/ia64/ia64.c:5051 #, c-format msgid "invalid %%G mode" msgstr "" -#: config/ia64/ia64.c:5266 +#: config/ia64/ia64.c:5221 #, c-format msgid "ia64_print_operand: unknown code" msgstr "" -#: config/ia64/ia64.c:10946 +#: config/ia64/ia64.c:10901 msgid "invalid conversion from %<__fpreg%>" msgstr "" -#: config/ia64/ia64.c:10949 +#: config/ia64/ia64.c:10904 msgid "invalid conversion to %<__fpreg%>" msgstr "" -#: config/ia64/ia64.c:10962 config/ia64/ia64.c:10973 +#: config/ia64/ia64.c:10917 config/ia64/ia64.c:10928 msgid "invalid operation on %<__fpreg%>" msgstr "" @@ -3178,7 +3182,7 @@ msgstr "" msgid "invalid %%P operand" msgstr "" -#: config/iq2000/iq2000.c:3192 config/rs6000/rs6000.c:15767 +#: config/iq2000/iq2000.c:3192 config/rs6000/rs6000.c:15835 #, c-format msgid "invalid %%p value" msgstr "" @@ -3188,65 +3192,65 @@ msgstr "" msgid "invalid use of %%d, %%x, or %%X" msgstr "" -#: config/lm32/lm32.c:525 +#: config/lm32/lm32.c:529 #, c-format msgid "only 0.0 can be loaded as an immediate" msgstr "" -#: config/lm32/lm32.c:595 +#: config/lm32/lm32.c:599 msgid "bad operand" msgstr "" -#: config/lm32/lm32.c:607 +#: config/lm32/lm32.c:611 msgid "can't use non gp relative absolute address" msgstr "" -#: config/lm32/lm32.c:611 +#: config/lm32/lm32.c:615 msgid "invalid addressing mode" msgstr "" -#: config/m32r/m32r.c:2119 +#: config/m32r/m32r.c:2125 #, c-format msgid "invalid operand to %%s code" msgstr "" -#: config/m32r/m32r.c:2126 +#: config/m32r/m32r.c:2132 #, c-format msgid "invalid operand to %%p code" msgstr "" -#: config/m32r/m32r.c:2181 +#: config/m32r/m32r.c:2187 msgid "bad insn for 'A'" msgstr "" -#: config/m32r/m32r.c:2228 +#: config/m32r/m32r.c:2234 #, c-format msgid "invalid operand to %%T/%%B code" msgstr "" -#: config/m32r/m32r.c:2251 +#: config/m32r/m32r.c:2257 #, c-format msgid "invalid operand to %%N code" msgstr "" -#: config/m32r/m32r.c:2284 +#: config/m32r/m32r.c:2290 msgid "pre-increment address is not a register" msgstr "" -#: config/m32r/m32r.c:2291 +#: config/m32r/m32r.c:2297 msgid "pre-decrement address is not a register" msgstr "" -#: config/m32r/m32r.c:2298 +#: config/m32r/m32r.c:2304 msgid "post-increment address is not a register" msgstr "" -#: config/m32r/m32r.c:2374 config/m32r/m32r.c:2388 -#: config/rs6000/rs6000.c:25201 +#: config/m32r/m32r.c:2380 config/m32r/m32r.c:2394 +#: config/rs6000/rs6000.c:25280 msgid "bad address" msgstr "" -#: config/m32r/m32r.c:2393 +#: config/m32r/m32r.c:2399 msgid "lo_sum not of register" msgstr "" @@ -3318,7 +3322,7 @@ msgid "insn contains an invalid address !" msgstr "" #: config/microblaze/microblaze.c:1854 config/microblaze/microblaze.c:2041 -#: config/xtensa/xtensa.c:2394 +#: config/xtensa/xtensa.c:2443 msgid "invalid address" msgstr "" @@ -3327,19 +3331,19 @@ msgstr "" msgid "letter %c was found & insn was not CONST_INT" msgstr "" -#: config/mips/mips.c:7454 config/mips/mips.c:7475 config/mips/mips.c:7595 +#: config/mips/mips.c:7457 config/mips/mips.c:7478 config/mips/mips.c:7598 #, c-format msgid "'%%%c' is not a valid operand prefix" msgstr "" -#: config/mips/mips.c:7532 config/mips/mips.c:7539 config/mips/mips.c:7546 -#: config/mips/mips.c:7553 config/mips/mips.c:7613 config/mips/mips.c:7627 -#: config/mips/mips.c:7640 config/mips/mips.c:7649 +#: config/mips/mips.c:7535 config/mips/mips.c:7542 config/mips/mips.c:7549 +#: config/mips/mips.c:7556 config/mips/mips.c:7616 config/mips/mips.c:7630 +#: config/mips/mips.c:7643 config/mips/mips.c:7652 #, c-format msgid "invalid use of '%%%c'" msgstr "" -#: config/mips/mips.c:7871 +#: config/mips/mips.c:7874 msgid "mips_debugger_offset called with non stack/frame/arg pointer" msgstr "" @@ -3434,188 +3438,263 @@ msgstr "" msgid "-mno-altivec disables vsx" msgstr "" -#: config/rs6000/rs6000.c:7750 +#: config/rs6000/rs6000.c:7759 msgid "bad move" msgstr "" -#: config/rs6000/rs6000.c:15577 +#: config/rs6000/rs6000.c:15645 #, c-format msgid "invalid %%c value" msgstr "" -#: config/rs6000/rs6000.c:15605 +#: config/rs6000/rs6000.c:15673 #, c-format msgid "invalid %%f value" msgstr "" -#: config/rs6000/rs6000.c:15614 +#: config/rs6000/rs6000.c:15682 #, c-format msgid "invalid %%F value" msgstr "" -#: config/rs6000/rs6000.c:15623 +#: config/rs6000/rs6000.c:15691 #, c-format msgid "invalid %%G value" msgstr "" -#: config/rs6000/rs6000.c:15658 +#: config/rs6000/rs6000.c:15726 #, c-format msgid "invalid %%j code" msgstr "" -#: config/rs6000/rs6000.c:15668 +#: config/rs6000/rs6000.c:15736 #, c-format msgid "invalid %%J code" msgstr "" -#: config/rs6000/rs6000.c:15678 +#: config/rs6000/rs6000.c:15746 #, c-format msgid "invalid %%k value" msgstr "" -#: config/rs6000/rs6000.c:15693 config/xtensa/xtensa.c:2293 +#: config/rs6000/rs6000.c:15761 config/xtensa/xtensa.c:2342 #, c-format msgid "invalid %%K value" msgstr "" -#: config/rs6000/rs6000.c:15757 +#: config/rs6000/rs6000.c:15825 #, c-format msgid "invalid %%O value" msgstr "" -#: config/rs6000/rs6000.c:15804 +#: config/rs6000/rs6000.c:15872 #, c-format msgid "invalid %%q value" msgstr "" -#: config/rs6000/rs6000.c:15848 +#: config/rs6000/rs6000.c:15916 #, c-format msgid "invalid %%S value" msgstr "" -#: config/rs6000/rs6000.c:15888 +#: config/rs6000/rs6000.c:15956 #, c-format msgid "invalid %%T value" msgstr "" -#: config/rs6000/rs6000.c:15898 +#: config/rs6000/rs6000.c:15966 #, c-format msgid "invalid %%u value" msgstr "" -#: config/rs6000/rs6000.c:15907 config/xtensa/xtensa.c:2263 +#: config/rs6000/rs6000.c:15975 config/xtensa/xtensa.c:2312 #, c-format msgid "invalid %%v value" msgstr "" -#: config/rs6000/rs6000.c:16006 config/xtensa/xtensa.c:2314 +#: config/rs6000/rs6000.c:16074 config/xtensa/xtensa.c:2363 #, c-format msgid "invalid %%x value" msgstr "" -#: config/rs6000/rs6000.c:16152 +#: config/rs6000/rs6000.c:16220 #, c-format msgid "invalid %%y value, try using the 'Z' constraint" msgstr "" -#: config/rs6000/rs6000.c:27228 +#: config/rs6000/rs6000.c:27307 msgid "AltiVec argument passed to unprototyped function" msgstr "" -#: config/s390/s390.c:5144 +#: config/s390/s390.c:5169 +#, c-format +msgid "symbolic memory references are only supported on z10 or later" +msgstr "" + +#: config/s390/s390.c:5180 #, c-format msgid "cannot decompose address" msgstr "" +#: config/s390/s390.c:5239 +#, c-format +msgid "invalid comparison operator for 'E' output modifier" +msgstr "" + +#: config/s390/s390.c:5260 +#, c-format +msgid "invalid reference for 'J' output modifier" +msgstr "" + +#: config/s390/s390.c:5274 +#, c-format +msgid "memory reference expected for 'O' output modifier" +msgstr "" + +#: config/s390/s390.c:5285 +#, c-format +msgid "invalid address for 'O' output modifier" +msgstr "" + +#: config/s390/s390.c:5303 +#, c-format +msgid "memory reference expected for 'R' output modifier" +msgstr "" + +#: config/s390/s390.c:5314 +#, c-format +msgid "invalid address for 'R' output modifier" +msgstr "" + +#: config/s390/s390.c:5332 +#, c-format +msgid "memory reference expected for 'S' output modifier" +msgstr "" + +#: config/s390/s390.c:5342 +#, c-format +msgid "invalid address for 'S' output modifier" +msgstr "" + +#: config/s390/s390.c:5362 +#, c-format +msgid "register or memory expression expected for 'N' output modifier" +msgstr "" + +#: config/s390/s390.c:5372 +#, c-format +msgid "register or memory expression expected for 'M' output modifier" +msgstr "" + +#: config/s390/s390.c:5437 +#, c-format +msgid "invalid constant - try using an output modifier" +msgstr "" + +#: config/s390/s390.c:5440 +#, c-format +msgid "invalid constant for output modifier '%c'" +msgstr "" + +#: config/s390/s390.c:5447 +#, c-format +msgid "invalid expression - try using an output modifier" +msgstr "" + +#: config/s390/s390.c:5450 +#, c-format +msgid "invalid expression for output modifier '%c'" +msgstr "" + #: config/score/score3.c:1284 config/score/score3.c:1304 #: config/score/score7.c:1272 #, c-format msgid "invalid operand for code: '%c'" msgstr "" -#: config/sh/sh.c:1188 +#: config/sh/sh.c:1195 #, c-format msgid "invalid operand to %%R" msgstr "" -#: config/sh/sh.c:1215 +#: config/sh/sh.c:1222 #, c-format msgid "invalid operand to %%S" msgstr "" -#: config/sh/sh.c:9254 +#: config/sh/sh.c:9261 msgid "created and used with different architectures / ABIs" msgstr "" -#: config/sh/sh.c:9256 +#: config/sh/sh.c:9263 msgid "created and used with different ABIs" msgstr "" -#: config/sh/sh.c:9258 +#: config/sh/sh.c:9265 msgid "created and used with different endianness" msgstr "" -#: config/sparc/sparc.c:7424 config/sparc/sparc.c:7430 +#: config/sparc/sparc.c:7441 config/sparc/sparc.c:7447 #, c-format msgid "invalid %%Y operand" msgstr "" -#: config/sparc/sparc.c:7500 +#: config/sparc/sparc.c:7517 #, c-format msgid "invalid %%A operand" msgstr "" -#: config/sparc/sparc.c:7510 +#: config/sparc/sparc.c:7527 #, c-format msgid "invalid %%B operand" msgstr "" -#: config/sparc/sparc.c:7549 +#: config/sparc/sparc.c:7566 #, c-format msgid "invalid %%c operand" msgstr "" -#: config/sparc/sparc.c:7571 +#: config/sparc/sparc.c:7588 #, c-format msgid "invalid %%d operand" msgstr "" -#: config/sparc/sparc.c:7588 +#: config/sparc/sparc.c:7605 #, c-format msgid "invalid %%f operand" msgstr "" -#: config/sparc/sparc.c:7602 +#: config/sparc/sparc.c:7619 #, c-format msgid "invalid %%s operand" msgstr "" -#: config/sparc/sparc.c:7656 +#: config/sparc/sparc.c:7673 #, c-format msgid "long long constant not a valid immediate operand" msgstr "" -#: config/sparc/sparc.c:7659 +#: config/sparc/sparc.c:7676 #, c-format msgid "floating point constant not a valid immediate operand" msgstr "" -#: config/stormy16/stormy16.c:1748 config/stormy16/stormy16.c:1819 +#: config/stormy16/stormy16.c:1713 config/stormy16/stormy16.c:1784 #, c-format msgid "'B' operand is not constant" msgstr "" -#: config/stormy16/stormy16.c:1775 +#: config/stormy16/stormy16.c:1740 #, c-format msgid "'B' operand has multiple bits set" msgstr "" -#: config/stormy16/stormy16.c:1801 +#: config/stormy16/stormy16.c:1766 #, c-format msgid "'o' operand is not constant" msgstr "" -#: config/stormy16/stormy16.c:1833 +#: config/stormy16/stormy16.c:1798 #, c-format msgid "xstormy16_print_operand: unknown code" msgstr "" @@ -3647,47 +3726,47 @@ msgstr "" msgid "illegal operand detected" msgstr "" -#: config/xtensa/xtensa.c:740 config/xtensa/xtensa.c:772 -#: config/xtensa/xtensa.c:781 +#: config/xtensa/xtensa.c:774 config/xtensa/xtensa.c:806 +#: config/xtensa/xtensa.c:815 msgid "bad test" msgstr "" -#: config/xtensa/xtensa.c:2251 +#: config/xtensa/xtensa.c:2300 #, c-format msgid "invalid %%D value" msgstr "" -#: config/xtensa/xtensa.c:2288 +#: config/xtensa/xtensa.c:2337 msgid "invalid mask" msgstr "" -#: config/xtensa/xtensa.c:2321 +#: config/xtensa/xtensa.c:2370 #, c-format msgid "invalid %%d value" msgstr "" -#: config/xtensa/xtensa.c:2342 config/xtensa/xtensa.c:2352 +#: config/xtensa/xtensa.c:2391 config/xtensa/xtensa.c:2401 #, c-format msgid "invalid %%t/%%b value" msgstr "" -#: config/xtensa/xtensa.c:2419 +#: config/xtensa/xtensa.c:2468 msgid "no register in address" msgstr "" -#: config/xtensa/xtensa.c:2427 +#: config/xtensa/xtensa.c:2476 msgid "address offset not a constant" msgstr "" -#: cp/call.c:7841 +#: cp/call.c:7849 msgid "candidate 1:" msgstr "" -#: cp/call.c:7842 +#: cp/call.c:7850 msgid "candidate 2:" msgstr "" -#: cp/cxx-pretty-print.c:172 objc/objc-act.c:8958 +#: cp/cxx-pretty-print.c:172 objc/objc-act.c:5989 msgid "<unnamed>" msgstr "" @@ -3699,7 +3778,7 @@ msgstr "" msgid "candidates are: %+#D" msgstr "" -#: cp/decl2.c:727 cp/pt.c:1726 +#: cp/decl2.c:727 cp/pt.c:1728 #, gcc-internal-format msgid "candidate is: %+#D" msgstr "" @@ -3794,107 +3873,107 @@ msgstr "" msgid "<unknown operator>" msgstr "" -#: cp/error.c:2594 +#: cp/error.c:2598 msgid "<unknown>" msgstr "" -#: cp/error.c:2614 +#: cp/error.c:2618 msgid "{unknown}" msgstr "" -#: cp/error.c:2698 +#: cp/error.c:2702 msgid "At global scope:" msgstr "" -#: cp/error.c:2804 +#: cp/error.c:2808 #, c-format msgid "In static member function %qs" msgstr "" -#: cp/error.c:2806 +#: cp/error.c:2810 #, c-format msgid "In copy constructor %qs" msgstr "" -#: cp/error.c:2808 +#: cp/error.c:2812 #, c-format msgid "In constructor %qs" msgstr "" -#: cp/error.c:2810 +#: cp/error.c:2814 #, c-format msgid "In destructor %qs" msgstr "" -#: cp/error.c:2812 +#: cp/error.c:2816 msgid "In lambda function" msgstr "" -#: cp/error.c:2842 +#: cp/error.c:2846 #, c-format msgid "%s: In instantiation of %qs:\n" msgstr "" -#: cp/error.c:2874 +#: cp/error.c:2878 #, c-format msgid "%s:%d:%d: recursively instantiated from %qs\n" msgstr "" -#: cp/error.c:2875 +#: cp/error.c:2879 #, c-format msgid "%s:%d:%d: instantiated from %qs\n" msgstr "" -#: cp/error.c:2880 cp/error.c:2881 +#: cp/error.c:2884 cp/error.c:2885 #, c-format msgid "%s:%d: recursively instantiated from %qs\n" msgstr "" -#: cp/error.c:2889 +#: cp/error.c:2893 #, c-format msgid "%s:%d:%d: recursively instantiated from here" msgstr "" -#: cp/error.c:2890 +#: cp/error.c:2894 #, c-format msgid "%s:%d:%d: instantiated from here" msgstr "" -#: cp/error.c:2895 +#: cp/error.c:2899 #, c-format msgid "%s:%d: recursively instantiated from here" msgstr "" -#: cp/error.c:2896 +#: cp/error.c:2900 #, c-format msgid "%s:%d: instantiated from here" msgstr "" -#: cp/error.c:2939 +#: cp/error.c:2943 #, c-format msgid "%s:%d:%d: [ skipping %d instantiation contexts ]\n" msgstr "" -#: cp/error.c:2943 +#: cp/error.c:2947 #, c-format msgid "%s:%d: [ skipping %d instantiation contexts ]\n" msgstr "" -#: cp/error.c:3005 +#: cp/error.c:3009 #, c-format msgid "%s:%d:%d: in constexpr expansion of %qs" msgstr "" -#: cp/error.c:3009 +#: cp/error.c:3013 #, c-format msgid "%s:%d: in constexpr expansion of %qs" msgstr "" -#: cp/pt.c:1730 +#: cp/pt.c:1732 msgid "candidates are:" msgstr "" -#: cp/pt.c:16515 cp/call.c:3072 +#: cp/pt.c:16568 cp/call.c:3080 #, gcc-internal-format msgid "candidate is:" msgid_plural "candidates are:" @@ -4018,17 +4097,17 @@ msgstr "" msgid "elemental binary operation" msgstr "" -#: fortran/check.c:1473 fortran/check.c:2351 fortran/check.c:2405 +#: fortran/check.c:1502 fortran/check.c:2380 fortran/check.c:2434 #, c-format msgid "arguments '%s' and '%s' for intrinsic %s" msgstr "" -#: fortran/check.c:2157 +#: fortran/check.c:2186 #, c-format msgid "arguments 'a%d' and 'a%d' for intrinsic '%s'" msgstr "" -#: fortran/check.c:2633 fortran/intrinsic.c:3912 +#: fortran/check.c:2662 fortran/intrinsic.c:3914 #, c-format msgid "arguments '%s' and '%s' for intrinsic '%s'" msgstr "" @@ -4080,7 +4159,7 @@ msgstr "" msgid "Driving:" msgstr "" -#: fortran/interface.c:2238 fortran/intrinsic.c:3621 +#: fortran/interface.c:2284 fortran/intrinsic.c:3623 msgid "actual argument to INTENT = OUT/INOUT" msgstr "" @@ -4141,18 +4220,18 @@ msgstr "" msgid "Period required in format specifier" msgstr "" -#: fortran/io.c:1521 +#: fortran/io.c:1524 #, c-format msgid "%s tag" msgstr "" -#: fortran/io.c:2818 +#: fortran/io.c:2830 msgid "internal unit in WRITE" msgstr "" #. For INQUIRE, all tags except FILE, ID and UNIT are variable definition #. contexts. Thus, use an extended RESOLVE_TAG macro for that. -#: fortran/io.c:3999 +#: fortran/io.c:4025 #, c-format msgid "%s tag with INQUIRE" msgstr "" @@ -4198,7 +4277,7 @@ msgstr "" msgid "Expected integer" msgstr "" -#: fortran/module.c:1265 +#: fortran/module.c:1265 fortran/module.c:2151 msgid "Expected string" msgstr "" @@ -4206,214 +4285,214 @@ msgstr "" msgid "find_enum(): Enum not found" msgstr "" -#: fortran/module.c:1908 +#: fortran/module.c:1912 msgid "Expected attribute bit name" msgstr "" -#: fortran/module.c:2777 +#: fortran/module.c:2801 msgid "Expected integer string" msgstr "" -#: fortran/module.c:2781 +#: fortran/module.c:2805 msgid "Error converting integer" msgstr "" -#: fortran/module.c:2803 +#: fortran/module.c:2827 msgid "Expected real string" msgstr "" -#: fortran/module.c:3020 +#: fortran/module.c:3044 msgid "Expected expression type" msgstr "" -#: fortran/module.c:3074 +#: fortran/module.c:3098 msgid "Bad operator" msgstr "" -#: fortran/module.c:3163 +#: fortran/module.c:3187 msgid "Bad type in constant expression" msgstr "" -#: fortran/module.c:5669 +#: fortran/module.c:5714 msgid "Unexpected end of module" msgstr "" -#: fortran/parse.c:1166 +#: fortran/parse.c:1169 msgid "arithmetic IF" msgstr "" -#: fortran/parse.c:1175 +#: fortran/parse.c:1178 msgid "attribute declaration" msgstr "" -#: fortran/parse.c:1211 +#: fortran/parse.c:1214 msgid "data declaration" msgstr "" -#: fortran/parse.c:1220 +#: fortran/parse.c:1223 msgid "derived type declaration" msgstr "" -#: fortran/parse.c:1314 +#: fortran/parse.c:1317 msgid "block IF" msgstr "" -#: fortran/parse.c:1323 +#: fortran/parse.c:1326 msgid "implied END DO" msgstr "" -#: fortran/parse.c:1408 fortran/resolve.c:8930 +#: fortran/parse.c:1411 fortran/resolve.c:9067 msgid "assignment" msgstr "" -#: fortran/parse.c:1411 fortran/resolve.c:8969 fortran/resolve.c:8971 +#: fortran/parse.c:1414 fortran/resolve.c:9106 fortran/resolve.c:9108 msgid "pointer assignment" msgstr "" -#: fortran/parse.c:1429 +#: fortran/parse.c:1432 msgid "simple IF" msgstr "" -#: fortran/resolve.c:499 +#: fortran/resolve.c:532 msgid "module procedure" msgstr "" -#: fortran/resolve.c:500 +#: fortran/resolve.c:533 msgid "internal function" msgstr "" -#: fortran/resolve.c:1896 +#: fortran/resolve.c:1920 msgid "elemental procedure" msgstr "" -#: fortran/resolve.c:3654 +#: fortran/resolve.c:3720 #, c-format msgid "Invalid context for NULL() pointer at %%L" msgstr "" -#: fortran/resolve.c:3670 +#: fortran/resolve.c:3736 #, c-format msgid "Operand of unary numeric operator '%s' at %%L is %s" msgstr "" -#: fortran/resolve.c:3686 +#: fortran/resolve.c:3752 #, c-format msgid "Operands of binary numeric operator '%s' at %%L are %s/%s" msgstr "" -#: fortran/resolve.c:3701 +#: fortran/resolve.c:3767 #, c-format msgid "Operands of string concatenation operator at %%L are %s/%s" msgstr "" -#: fortran/resolve.c:3720 +#: fortran/resolve.c:3786 #, c-format msgid "Operands of logical operator '%s' at %%L are %s/%s" msgstr "" -#: fortran/resolve.c:3734 +#: fortran/resolve.c:3800 #, c-format msgid "Operand of .not. operator at %%L is %s" msgstr "" -#: fortran/resolve.c:3748 +#: fortran/resolve.c:3814 msgid "COMPLEX quantities cannot be compared at %L" msgstr "" -#: fortran/resolve.c:3777 +#: fortran/resolve.c:3843 #, c-format msgid "Logicals at %%L must be compared with %s instead of %s" msgstr "" -#: fortran/resolve.c:3783 +#: fortran/resolve.c:3849 #, c-format msgid "Operands of comparison operator '%s' at %%L are %s/%s" msgstr "" -#: fortran/resolve.c:3791 +#: fortran/resolve.c:3857 #, c-format msgid "Unknown operator '%s' at %%L" msgstr "" -#: fortran/resolve.c:3793 +#: fortran/resolve.c:3859 #, c-format msgid "Operand of user operator '%s' at %%L is %s" msgstr "" -#: fortran/resolve.c:3796 +#: fortran/resolve.c:3863 #, c-format msgid "Operands of user operator '%s' at %%L are %s/%s" msgstr "" -#: fortran/resolve.c:3882 +#: fortran/resolve.c:3951 #, c-format msgid "Inconsistent ranks for operator at %%L and %%L" msgstr "" -#: fortran/resolve.c:6148 +#: fortran/resolve.c:6219 msgid "Loop variable" msgstr "" -#: fortran/resolve.c:6152 +#: fortran/resolve.c:6223 msgid "iterator variable" msgstr "" -#: fortran/resolve.c:6157 +#: fortran/resolve.c:6228 msgid "Start expression in DO loop" msgstr "" -#: fortran/resolve.c:6161 +#: fortran/resolve.c:6232 msgid "End expression in DO loop" msgstr "" -#: fortran/resolve.c:6165 +#: fortran/resolve.c:6236 msgid "Step expression in DO loop" msgstr "" -#: fortran/resolve.c:6412 fortran/resolve.c:6414 +#: fortran/resolve.c:6483 fortran/resolve.c:6485 msgid "DEALLOCATE object" msgstr "" -#: fortran/resolve.c:6715 fortran/resolve.c:6717 +#: fortran/resolve.c:6780 fortran/resolve.c:6782 msgid "ALLOCATE object" msgstr "" -#: fortran/resolve.c:6896 +#: fortran/resolve.c:6955 msgid "STAT variable" msgstr "" -#: fortran/resolve.c:6939 +#: fortran/resolve.c:6998 msgid "ERRMSG variable" msgstr "" -#: fortran/resolve.c:7954 +#: fortran/resolve.c:8063 msgid "item in READ" msgstr "" -#: fortran/trans-array.c:1137 +#: fortran/trans-array.c:1138 #, c-format msgid "Different CHARACTER lengths (%ld/%ld) in array constructor" msgstr "" -#: fortran/trans-array.c:4303 +#: fortran/trans-array.c:4393 msgid "Integer overflow when calculating the amount of memory to allocate" msgstr "" -#: fortran/trans-decl.c:4120 +#: fortran/trans-decl.c:4356 #, c-format msgid "" "Actual string length does not match the declared one for dummy argument " "'%s' (%ld/%ld)" msgstr "" -#: fortran/trans-decl.c:4128 +#: fortran/trans-decl.c:4364 #, c-format msgid "" "Actual string length is shorter than the declared one for dummy argument " "'%s' (%ld/%ld)" msgstr "" -#: fortran/trans-expr.c:5135 +#: fortran/trans-expr.c:5212 #, c-format msgid "Target of rank remapping is too small (%ld < %ld)" msgstr "" @@ -4440,20 +4519,20 @@ msgstr "" msgid "Unit number in I/O statement too large" msgstr "" -#: fortran/trans-stmt.c:155 +#: fortran/trans-stmt.c:156 msgid "Assigned label is not a target label" msgstr "" -#: fortran/trans-stmt.c:655 +#: fortran/trans-stmt.c:656 #, c-format msgid "Invalid image number %d in SYNC IMAGES" msgstr "" -#: fortran/trans-stmt.c:1079 fortran/trans-stmt.c:1360 +#: fortran/trans-stmt.c:1090 fortran/trans-stmt.c:1371 msgid "Loop variable has been modified" msgstr "" -#: fortran/trans-stmt.c:1219 +#: fortran/trans-stmt.c:1230 msgid "DO step value is zero" msgstr "" @@ -4628,114 +4707,121 @@ msgstr "" msgid "%s: Failed to close output file %s\n" msgstr "" -#: java/lang-specs.h:33 -msgid "-fjni and -femit-class-files are incompatible" +#: config/arc/arc.h:62 config/mips/mips.h:1169 +msgid "may not use both -EB and -EL" msgstr "" -#: java/lang-specs.h:34 -msgid "-fjni and -femit-class-file are incompatible" +#: config/vax/netbsd-elf.h:51 +msgid "the -shared option is not currently supported for VAX ELF" msgstr "" -#: java/lang-specs.h:35 java/lang-specs.h:36 -msgid "-femit-class-file should used along with -fsyntax-only" +#: config/i386/mingw-w64.h:75 config/i386/mingw32.h:101 +#: config/i386/cygwin.h:116 +msgid "shared and mdll are not compatible" msgstr "" -#: config/i386/linux-unwind.h:186 -msgid "ax ; {int $0x80 | syscall" +#: ada/gcc-interface/lang-specs.h:33 java/jvspec.c:80 gcc.c:762 +msgid "-pg and -fomit-frame-pointer are incompatible" msgstr "" -#: config/s390/tpf.h:120 -msgid "static is not supported on TPF-OS" +#: ada/gcc-interface/lang-specs.h:34 +msgid "-c or -S required for Ada" msgstr "" #: config/mcore/mcore.h:54 msgid "the m210 does not have little endian support" msgstr "" -#: config/darwin.h:241 +#: config/darwin.h:251 msgid "-current_version only allowed with -dynamiclib" msgstr "" -#: config/darwin.h:243 +#: config/darwin.h:253 msgid "-install_name only allowed with -dynamiclib" msgstr "" -#: config/darwin.h:248 +#: config/darwin.h:258 msgid "-bundle not allowed with -dynamiclib" msgstr "" -#: config/darwin.h:249 +#: config/darwin.h:259 msgid "-bundle_loader not allowed with -dynamiclib" msgstr "" -#: config/darwin.h:250 +#: config/darwin.h:260 msgid "-client_name not allowed with -dynamiclib" msgstr "" -#: config/darwin.h:255 +#: config/darwin.h:265 msgid "-force_flat_namespace not allowed with -dynamiclib" msgstr "" -#: config/darwin.h:257 +#: config/darwin.h:267 msgid "-keep_private_externs not allowed with -dynamiclib" msgstr "" -#: config/darwin.h:258 +#: config/darwin.h:268 msgid "-private_bundle not allowed with -dynamiclib" msgstr "" -#: fortran/lang-specs.h:55 fortran/lang-specs.h:69 -msgid "gfortran does not support -E without -cpp" +#: config/vxworks.h:71 +msgid "-Xbind-now and -Xbind-lazy are incompatible" msgstr "" -#: config/sparc/freebsd.h:35 config/rs6000/sysv4.h:830 -#: config/i386/freebsd.h:98 config/ia64/freebsd.h:26 config/alpha/freebsd.h:34 -#: config/arm/freebsd.h:31 +#: config/sparc/freebsd.h:38 config/rs6000/sysv4.h:787 +#: config/ia64/freebsd.h:26 config/arm/freebsd.h:31 config/i386/freebsd.h:98 +#: config/alpha/freebsd.h:34 msgid "consider using '-pg' instead of '-p' with gprof(1)" msgstr "" -#: config/arc/arc.h:62 config/mips/mips.h:1172 -msgid "may not use both -EB and -EL" +#: config/sparc/linux64.h:151 config/sparc/linux64.h:158 +#: config/sparc/netbsd-elf.h:118 config/sparc/netbsd-elf.h:127 +#: config/sparc/sol2-bi.h:232 config/sparc/sol2-bi.h:238 +msgid "may not use both -m32 and -m64" msgstr "" -#: config/vax/netbsd-elf.h:51 -msgid "the -shared option is not currently supported for VAX ELF" +#: config/bfin/elf.h:54 +msgid "no processor type specified for linking" msgstr "" #: config/vax/vax.h:50 config/vax/vax.h:51 msgid "profiling not supported with -mg" msgstr "" -#: config/i386/mingw-w64.h:75 config/i386/mingw32.h:101 -#: config/i386/cygwin.h:116 -msgid "shared and mdll are not compatible" +#: objc/lang-specs.h:31 objc/lang-specs.h:42 +msgid "GNU Objective C no longer supports traditional compilation" msgstr "" -#: ada/gcc-interface/lang-specs.h:33 gcc.c:746 java/jvspec.c:80 -msgid "-pg and -fomit-frame-pointer are incompatible" +#: objc/lang-specs.h:56 +msgid "" +"objc-cpp-output is deprecated; please use objective-c-cpp-output instead" msgstr "" -#: ada/gcc-interface/lang-specs.h:34 -msgid "-c or -S required for Ada" +#: config/i386/nwld.h:34 +msgid "static linking is not supported" msgstr "" -#: config/vxworks.h:71 -msgid "-Xbind-now and -Xbind-lazy are incompatible" +#: config/pa/pa-hpux10.h:87 config/pa/pa-hpux10.h:90 config/pa/pa-hpux10.h:98 +#: config/pa/pa-hpux10.h:101 config/pa/pa-hpux11.h:108 +#: config/pa/pa-hpux11.h:111 config/pa/pa64-hpux.h:30 config/pa/pa64-hpux.h:33 +#: config/pa/pa64-hpux.h:42 config/pa/pa64-hpux.h:45 +msgid "warning: consider linking with '-static' as system libraries with" msgstr "" -#: config/sparc/linux64.h:157 config/sparc/linux64.h:168 -#: config/sparc/netbsd-elf.h:122 config/sparc/netbsd-elf.h:141 -#: config/sparc/sol2-bi.h:240 config/sparc/sol2-bi.h:250 -msgid "may not use both -m32 and -m64" +#: config/pa/pa-hpux10.h:88 config/pa/pa-hpux10.h:91 config/pa/pa-hpux10.h:99 +#: config/pa/pa-hpux10.h:102 config/pa/pa-hpux11.h:109 +#: config/pa/pa-hpux11.h:112 config/pa/pa64-hpux.h:31 config/pa/pa64-hpux.h:34 +#: config/pa/pa64-hpux.h:43 config/pa/pa64-hpux.h:46 +msgid " profiling support are only provided in archive format" msgstr "" -#: config/sparc/sol2-bi.h:212 config/sparc/sol2-bi.h:217 -#: config/sparc/sol2-gld-bi.h:50 config/sparc/sol2-gld-bi.h:55 -msgid "does not support multilib" +#: config/rs6000/darwin.h:99 +msgid " conflicting code gen style switches are used" msgstr "" -#: config/bfin/elf.h:54 -msgid "no processor type specified for linking" +#: config/sparc/sol2-bi.h:208 config/sparc/sol2-bi.h:213 +#: config/sparc/sol2-gld-bi.h:50 config/sparc/sol2-gld-bi.h:55 +msgid "does not support multilib" msgstr "" #: config/arm/arm.h:178 @@ -4746,13 +4832,8 @@ msgstr "" msgid "-mbig-endian and -mlittle-endian may not be used together" msgstr "" -#: objc/lang-specs.h:31 objc/lang-specs.h:42 -msgid "GNU Objective C no longer supports traditional compilation" -msgstr "" - -#: objc/lang-specs.h:56 -msgid "" -"objc-cpp-output is deprecated; please use objective-c-cpp-output instead" +#: config/cris/cris.h:196 +msgid "do not specify both -march=... and -mcpu=..." msgstr "" #: objcp/lang-specs.h:58 @@ -4760,62 +4841,52 @@ msgid "" "objc++-cpp-output is deprecated; please use objective-c++-cpp-output instead" msgstr "" -#: config/i386/nwld.h:34 -msgid "static linking is not supported" -msgstr "" - -#: config/pa/pa-hpux10.h:87 config/pa/pa-hpux10.h:90 config/pa/pa-hpux10.h:98 -#: config/pa/pa-hpux10.h:101 config/pa/pa-hpux11.h:108 -#: config/pa/pa-hpux11.h:111 config/pa/pa64-hpux.h:30 config/pa/pa64-hpux.h:33 -#: config/pa/pa64-hpux.h:42 config/pa/pa64-hpux.h:45 -msgid "warning: consider linking with '-static' as system libraries with" +#: config/sh/sh.h:423 +msgid "SH2a does not support little-endian" msgstr "" -#: config/pa/pa-hpux10.h:88 config/pa/pa-hpux10.h:91 config/pa/pa-hpux10.h:99 -#: config/pa/pa-hpux10.h:102 config/pa/pa-hpux11.h:109 -#: config/pa/pa-hpux11.h:112 config/pa/pa64-hpux.h:31 config/pa/pa64-hpux.h:34 -#: config/pa/pa64-hpux.h:43 config/pa/pa64-hpux.h:46 -msgid " profiling support are only provided in archive format" +#: config/rx/rx.h:66 +msgid "-mas100-syntax is incompatible with -gdwarf" msgstr "" -#: config/rs6000/darwin.h:99 -msgid " conflicting code gen style switches are used" +#: config/rx/rx.h:67 +msgid "rx200 cpu does not have FPU hardware" msgstr "" -#: config/mips/r3900.h:34 +#: config/mips/r3900.h:38 msgid "-mhard-float not supported" msgstr "" -#: config/mips/r3900.h:36 +#: config/mips/r3900.h:40 msgid "-msingle-float and -msoft-float cannot both be specified" msgstr "" -#: config/cris/cris.h:196 -msgid "do not specify both -march=... and -mcpu=..." -msgstr "" - -#: gcc.c:908 +#: gcc.c:924 msgid "GNU C no longer supports -traditional without -E" msgstr "" -#: gcc.c:917 +#: gcc.c:933 msgid "-E or -x required when input is from standard input" msgstr "" -#: config/i386/i386.h:557 -msgid "'-msse5' was removed" +#: java/lang-specs.h:33 +msgid "-fjni and -femit-class-files are incompatible" msgstr "" -#: config/sh/sh.h:424 -msgid "SH2a does not support little-endian" +#: java/lang-specs.h:34 +msgid "-fjni and -femit-class-file are incompatible" msgstr "" -#: config/rx/rx.h:66 -msgid "-mas100-syntax is incompatible with -gdwarf" +#: java/lang-specs.h:35 java/lang-specs.h:36 +msgid "-femit-class-file should used along with -fsyntax-only" msgstr "" -#: config/rx/rx.h:67 -msgid "rx200 cpu does not have FPU hardware" +#: config/i386/linux-unwind.h:186 +msgid "ax ; {int $0x80 | syscall" +msgstr "" + +#: config/s390/tpf.h:120 +msgid "static is not supported on TPF-OS" msgstr "" #: config/lynx.h:70 @@ -4826,6 +4897,10 @@ msgstr "" msgid "cannot use mshared and static together" msgstr "" +#: fortran/lang-specs.h:55 fortran/lang-specs.h:69 +msgid "gfortran does not support -E without -cpp" +msgstr "" + #: java/lang.opt:122 msgid "Warn if deprecated empty statements are found" msgstr "" @@ -5574,14 +5649,18 @@ msgstr "" msgid "Work around hardware multiply bug" msgstr "" -#: config/mn10300/mn10300.opt:44 +#: config/mn10300/mn10300.opt:48 msgid "Enable linker relaxations" msgstr "" -#: config/mn10300/mn10300.opt:48 +#: config/mn10300/mn10300.opt:52 msgid "Return pointers in both a0 and d0" msgstr "" +#: config/mn10300/mn10300.opt:56 +msgid "Allow gcc to generate LIW instructions" +msgstr "" + #: config/s390/tpf.opt:23 msgid "Enable TPF-OS tracing code" msgstr "" @@ -6365,150 +6444,160 @@ msgstr "" msgid "Do dispatch scheduling if processor is bdver1 and Haifa scheduling" msgstr "" -#: config/i386/i386.opt:273 -msgid "Generate 32bit i386 code" +#: config/i386/i386.opt:271 +msgid "" +"Use 128-bit AVX instructions instead of 256-bit AVX instructions in the auto-" +"vectorizer." msgstr "" #: config/i386/i386.opt:277 -msgid "Generate 64bit x86-64 code" +msgid "Generate 32bit i386 code" msgstr "" #: config/i386/i386.opt:281 -msgid "Support MMX built-in functions" +msgid "Generate 64bit x86-64 code" msgstr "" #: config/i386/i386.opt:285 -msgid "Support 3DNow! built-in functions" +msgid "Support MMX built-in functions" msgstr "" #: config/i386/i386.opt:289 -msgid "Support Athlon 3Dnow! built-in functions" +msgid "Support 3DNow! built-in functions" msgstr "" #: config/i386/i386.opt:293 -msgid "Support MMX and SSE built-in functions and code generation" +msgid "Support Athlon 3Dnow! built-in functions" msgstr "" #: config/i386/i386.opt:297 -msgid "Support MMX, SSE and SSE2 built-in functions and code generation" +msgid "Support MMX and SSE built-in functions and code generation" msgstr "" #: config/i386/i386.opt:301 -msgid "Support MMX, SSE, SSE2 and SSE3 built-in functions and code generation" +msgid "Support MMX, SSE and SSE2 built-in functions and code generation" msgstr "" #: config/i386/i386.opt:305 +msgid "Support MMX, SSE, SSE2 and SSE3 built-in functions and code generation" +msgstr "" + +#: config/i386/i386.opt:309 msgid "" "Support MMX, SSE, SSE2, SSE3 and SSSE3 built-in functions and code generation" msgstr "" -#: config/i386/i386.opt:309 +#: config/i386/i386.opt:313 msgid "" "Support MMX, SSE, SSE2, SSE3, SSSE3 and SSE4.1 built-in functions and code " "generation" msgstr "" -#: config/i386/i386.opt:313 config/i386/i386.opt:317 +#: config/i386/i386.opt:317 config/i386/i386.opt:321 msgid "" "Support MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1 and SSE4.2 built-in functions " "and code generation" msgstr "" -#: config/i386/i386.opt:321 +#: config/i386/i386.opt:325 msgid "Do not support SSE4.1 and SSE4.2 built-in functions and code generation" msgstr "" -#: config/i386/i386.opt:325 +#: config/i386/i386.opt:328 +msgid "%<-msse5%> was removed" +msgstr "" + +#: config/i386/i386.opt:333 msgid "" "Support MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2 and AVX built-in " "functions and code generation" msgstr "" -#: config/i386/i386.opt:329 +#: config/i386/i386.opt:337 msgid "" "Support MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AVX and FMA built-in " "functions and code generation" msgstr "" -#: config/i386/i386.opt:333 +#: config/i386/i386.opt:341 msgid "" "Support MMX, SSE, SSE2, SSE3 and SSE4A built-in functions and code generation" msgstr "" -#: config/i386/i386.opt:337 +#: config/i386/i386.opt:345 msgid "Support FMA4 built-in functions and code generation " msgstr "" -#: config/i386/i386.opt:341 +#: config/i386/i386.opt:349 msgid "Support XOP built-in functions and code generation " msgstr "" -#: config/i386/i386.opt:345 +#: config/i386/i386.opt:353 msgid "Support LWP built-in functions and code generation " msgstr "" -#: config/i386/i386.opt:349 +#: config/i386/i386.opt:357 msgid "" "Support code generation of Advanced Bit Manipulation (ABM) instructions." msgstr "" -#: config/i386/i386.opt:353 +#: config/i386/i386.opt:361 msgid "Support code generation of popcnt instruction." msgstr "" -#: config/i386/i386.opt:357 +#: config/i386/i386.opt:365 msgid "Support BMI built-in functions and code generation" msgstr "" -#: config/i386/i386.opt:361 +#: config/i386/i386.opt:369 msgid "Support TBM built-in functions and code generation" msgstr "" -#: config/i386/i386.opt:365 +#: config/i386/i386.opt:373 msgid "Support code generation of cmpxchg16b instruction." msgstr "" -#: config/i386/i386.opt:369 +#: config/i386/i386.opt:377 msgid "Support code generation of sahf instruction in 64bit x86-64 code." msgstr "" -#: config/i386/i386.opt:373 +#: config/i386/i386.opt:381 msgid "Support code generation of movbe instruction." msgstr "" -#: config/i386/i386.opt:377 +#: config/i386/i386.opt:385 msgid "Support code generation of crc32 instruction." msgstr "" -#: config/i386/i386.opt:381 +#: config/i386/i386.opt:389 msgid "Support AES built-in functions and code generation" msgstr "" -#: config/i386/i386.opt:385 +#: config/i386/i386.opt:393 msgid "Support PCLMUL built-in functions and code generation" msgstr "" -#: config/i386/i386.opt:389 +#: config/i386/i386.opt:397 msgid "Encode SSE instructions with VEX prefix" msgstr "" -#: config/i386/i386.opt:393 +#: config/i386/i386.opt:401 msgid "Support FSGSBASE built-in functions and code generation" msgstr "" -#: config/i386/i386.opt:397 +#: config/i386/i386.opt:405 msgid "Support RDRND built-in functions and code generation" msgstr "" -#: config/i386/i386.opt:401 +#: config/i386/i386.opt:409 msgid "Support F16C built-in functions and code generation" msgstr "" -#: config/i386/i386.opt:405 +#: config/i386/i386.opt:413 msgid "Emit profiling counter call at function entry before prologue." msgstr "" -#: config/i386/i386.opt:409 +#: config/i386/i386.opt:417 msgid "" "Expand 32bit/64bit integer divide into 8bit unsigned integer divide with run-" "time check" @@ -6552,10 +6641,6 @@ msgstr "" msgid "Use unicode startup and define UNICODE macro" msgstr "" -#: config/rs6000/aix.opt:24 config/rs6000/rs6000.opt:307 -msgid "Conform more closely to IBM XLC semantics" -msgstr "" - #: config/rs6000/darwin.opt:38 config/rs6000/sysv4.opt:129 msgid "Generate 64-bit code" msgstr "" @@ -6698,6 +6783,10 @@ msgstr "" msgid "Return small structures in registers (SVR4 default)" msgstr "" +#: config/rs6000/rs6000.opt:307 +msgid "Conform more closely to IBM XLC semantics" +msgstr "" + #: config/rs6000/rs6000.opt:311 config/rs6000/rs6000.opt:315 msgid "" "Generate software reciprocal divide and square root for better throughput." @@ -7075,23 +7164,23 @@ msgstr "" msgid "Always treat bitfields as int-sized" msgstr "" -#: config/arc/arc.opt:32 +#: config/arc/arc.opt:38 msgid "Prepend the name of the cpu to all public symbol names" msgstr "" -#: config/arc/arc.opt:42 +#: config/arc/arc.opt:48 msgid "-mcpu=CPU\tCompile code for ARC variant CPU" msgstr "" -#: config/arc/arc.opt:46 +#: config/arc/arc.opt:52 msgid "-mtext=SECTION\tPut functions in SECTION" msgstr "" -#: config/arc/arc.opt:50 +#: config/arc/arc.opt:56 msgid "-mdata=SECTION\tPut data in SECTION" msgstr "" -#: config/arc/arc.opt:54 +#: config/arc/arc.opt:60 msgid "-mrodata=SECTION\tPut read-only data in SECTION" msgstr "" @@ -7739,292 +7828,292 @@ msgstr "" msgid "Provide libraries for the simulator" msgstr "" -#: config/mips/mips.opt:23 +#: config/mips/mips.opt:29 msgid "-mabi=ABI\tGenerate code that conforms to the given ABI" msgstr "" -#: config/mips/mips.opt:27 +#: config/mips/mips.opt:33 msgid "Generate code that can be used in SVR4-style dynamic objects" msgstr "" -#: config/mips/mips.opt:31 +#: config/mips/mips.opt:37 msgid "Use PMC-style 'mad' instructions" msgstr "" -#: config/mips/mips.opt:35 +#: config/mips/mips.opt:41 msgid "-march=ISA\tGenerate code for the given ISA" msgstr "" -#: config/mips/mips.opt:39 +#: config/mips/mips.opt:45 msgid "" "-mbranch-cost=COST\tSet the cost of branches to roughly COST instructions" msgstr "" -#: config/mips/mips.opt:43 +#: config/mips/mips.opt:49 msgid "Use Branch Likely instructions, overriding the architecture default" msgstr "" -#: config/mips/mips.opt:47 +#: config/mips/mips.opt:53 msgid "Switch on/off MIPS16 ASE on alternating functions for compiler testing" msgstr "" -#: config/mips/mips.opt:51 +#: config/mips/mips.opt:57 msgid "Trap on integer divide by zero" msgstr "" -#: config/mips/mips.opt:55 +#: config/mips/mips.opt:61 msgid "" "-mcode-readable=SETTING\tSpecify when instructions are allowed to access code" msgstr "" -#: config/mips/mips.opt:59 +#: config/mips/mips.opt:65 msgid "Use branch-and-break sequences to check for integer divide by zero" msgstr "" -#: config/mips/mips.opt:63 +#: config/mips/mips.opt:69 msgid "Use trap instructions to check for integer divide by zero" msgstr "" -#: config/mips/mips.opt:67 +#: config/mips/mips.opt:73 msgid "Allow the use of MDMX instructions" msgstr "" -#: config/mips/mips.opt:71 +#: config/mips/mips.opt:77 msgid "" "Allow hardware floating-point instructions to cover both 32-bit and 64-bit " "operations" msgstr "" -#: config/mips/mips.opt:75 +#: config/mips/mips.opt:81 msgid "Use MIPS-DSP instructions" msgstr "" -#: config/mips/mips.opt:79 +#: config/mips/mips.opt:85 msgid "Use MIPS-DSP REV 2 instructions" msgstr "" -#: config/mips/mips.opt:89 config/mep/mep.opt:80 +#: config/mips/mips.opt:95 config/mep/mep.opt:80 msgid "Use big-endian byte order" msgstr "" -#: config/mips/mips.opt:93 config/mep/mep.opt:84 +#: config/mips/mips.opt:99 config/mep/mep.opt:84 msgid "Use little-endian byte order" msgstr "" -#: config/mips/mips.opt:97 config/iq2000/iq2000.opt:31 +#: config/mips/mips.opt:103 config/iq2000/iq2000.opt:31 msgid "Use ROM instead of RAM" msgstr "" -#: config/mips/mips.opt:101 +#: config/mips/mips.opt:107 msgid "Use NewABI-style %reloc() assembly operators" msgstr "" -#: config/mips/mips.opt:105 +#: config/mips/mips.opt:111 msgid "Use -G for data that is not defined by the current object" msgstr "" -#: config/mips/mips.opt:109 +#: config/mips/mips.opt:115 msgid "Work around certain R4000 errata" msgstr "" -#: config/mips/mips.opt:113 +#: config/mips/mips.opt:119 msgid "Work around certain R4400 errata" msgstr "" -#: config/mips/mips.opt:117 +#: config/mips/mips.opt:123 msgid "Work around certain R10000 errata" msgstr "" -#: config/mips/mips.opt:121 +#: config/mips/mips.opt:127 msgid "Work around errata for early SB-1 revision 2 cores" msgstr "" -#: config/mips/mips.opt:125 +#: config/mips/mips.opt:131 msgid "Work around certain VR4120 errata" msgstr "" -#: config/mips/mips.opt:129 +#: config/mips/mips.opt:135 msgid "Work around VR4130 mflo/mfhi errata" msgstr "" -#: config/mips/mips.opt:133 +#: config/mips/mips.opt:139 msgid "Work around an early 4300 hardware bug" msgstr "" -#: config/mips/mips.opt:137 +#: config/mips/mips.opt:143 msgid "FP exceptions are enabled" msgstr "" -#: config/mips/mips.opt:141 +#: config/mips/mips.opt:147 msgid "Use 32-bit floating-point registers" msgstr "" -#: config/mips/mips.opt:145 +#: config/mips/mips.opt:151 msgid "Use 64-bit floating-point registers" msgstr "" -#: config/mips/mips.opt:149 +#: config/mips/mips.opt:155 msgid "" "-mflush-func=FUNC\tUse FUNC to flush the cache before calling stack " "trampolines" msgstr "" -#: config/mips/mips.opt:153 +#: config/mips/mips.opt:159 msgid "Generate floating-point multiply-add instructions" msgstr "" -#: config/mips/mips.opt:157 +#: config/mips/mips.opt:163 msgid "Use 32-bit general registers" msgstr "" -#: config/mips/mips.opt:161 +#: config/mips/mips.opt:167 msgid "Use 64-bit general registers" msgstr "" -#: config/mips/mips.opt:165 +#: config/mips/mips.opt:171 msgid "Use GP-relative addressing to access small data" msgstr "" -#: config/mips/mips.opt:169 +#: config/mips/mips.opt:175 msgid "" "When generating -mabicalls code, allow executables to use PLTs and copy " "relocations" msgstr "" -#: config/mips/mips.opt:173 +#: config/mips/mips.opt:179 msgid "Allow the use of hardware floating-point ABI and instructions" msgstr "" -#: config/mips/mips.opt:177 +#: config/mips/mips.opt:183 msgid "Generate code that can be safely linked with MIPS16 code." msgstr "" -#: config/mips/mips.opt:181 +#: config/mips/mips.opt:187 msgid "-mipsN\tGenerate code for ISA level N" msgstr "" -#: config/mips/mips.opt:185 +#: config/mips/mips.opt:191 msgid "Generate MIPS16 code" msgstr "" -#: config/mips/mips.opt:189 +#: config/mips/mips.opt:195 msgid "Use MIPS-3D instructions" msgstr "" -#: config/mips/mips.opt:193 +#: config/mips/mips.opt:199 msgid "Use ll, sc and sync instructions" msgstr "" -#: config/mips/mips.opt:197 +#: config/mips/mips.opt:203 msgid "Use -G for object-local data" msgstr "" -#: config/mips/mips.opt:201 +#: config/mips/mips.opt:207 msgid "Use indirect calls" msgstr "" -#: config/mips/mips.opt:205 +#: config/mips/mips.opt:211 msgid "Use a 32-bit long type" msgstr "" -#: config/mips/mips.opt:209 +#: config/mips/mips.opt:215 msgid "Use a 64-bit long type" msgstr "" -#: config/mips/mips.opt:213 +#: config/mips/mips.opt:219 msgid "Pass the address of the ra save location to _mcount in $12" msgstr "" -#: config/mips/mips.opt:217 +#: config/mips/mips.opt:223 msgid "Don't optimize block moves" msgstr "" -#: config/mips/mips.opt:221 +#: config/mips/mips.opt:227 msgid "Use the mips-tfile postpass" msgstr "" -#: config/mips/mips.opt:225 +#: config/mips/mips.opt:231 msgid "Allow the use of MT instructions" msgstr "" -#: config/mips/mips.opt:229 +#: config/mips/mips.opt:235 msgid "Prevent the use of all floating-point operations" msgstr "" -#: config/mips/mips.opt:233 +#: config/mips/mips.opt:239 msgid "Do not use a cache-flushing function before calling stack trampolines" msgstr "" -#: config/mips/mips.opt:237 +#: config/mips/mips.opt:243 msgid "Do not use MDMX instructions" msgstr "" -#: config/mips/mips.opt:241 +#: config/mips/mips.opt:247 msgid "Generate normal-mode code" msgstr "" -#: config/mips/mips.opt:245 +#: config/mips/mips.opt:251 msgid "Do not use MIPS-3D instructions" msgstr "" -#: config/mips/mips.opt:249 +#: config/mips/mips.opt:255 msgid "Use paired-single floating-point instructions" msgstr "" -#: config/mips/mips.opt:253 +#: config/mips/mips.opt:259 msgid "" "-mr10k-cache-barrier=SETTING\tSpecify when r10k cache barriers should be " "inserted" msgstr "" -#: config/mips/mips.opt:257 +#: config/mips/mips.opt:263 msgid "Try to allow the linker to turn PIC calls into direct calls" msgstr "" -#: config/mips/mips.opt:261 +#: config/mips/mips.opt:267 msgid "" "When generating -mabicalls code, make the code suitable for use in shared " "libraries" msgstr "" -#: config/mips/mips.opt:265 +#: config/mips/mips.opt:271 msgid "" "Restrict the use of hardware floating-point instructions to 32-bit operations" msgstr "" -#: config/mips/mips.opt:269 +#: config/mips/mips.opt:275 msgid "Use SmartMIPS instructions" msgstr "" -#: config/mips/mips.opt:273 +#: config/mips/mips.opt:279 msgid "Prevent the use of all hardware floating-point instructions" msgstr "" -#: config/mips/mips.opt:277 +#: config/mips/mips.opt:283 msgid "Optimize lui/addiu address loads" msgstr "" -#: config/mips/mips.opt:281 +#: config/mips/mips.opt:287 msgid "Assume all symbols have 32-bit values" msgstr "" -#: config/mips/mips.opt:285 +#: config/mips/mips.opt:291 msgid "Use synci instruction to invalidate i-cache" msgstr "" -#: config/mips/mips.opt:289 +#: config/mips/mips.opt:295 msgid "-mtune=PROCESSOR\tOptimize the output for PROCESSOR" msgstr "" -#: config/mips/mips.opt:293 config/iq2000/iq2000.opt:44 +#: config/mips/mips.opt:299 config/iq2000/iq2000.opt:44 msgid "Put uninitialized constants in ROM (needs -membedded-data)" msgstr "" -#: config/mips/mips.opt:297 +#: config/mips/mips.opt:303 msgid "Perform VR4130-specific alignment optimizations" msgstr "" -#: config/mips/mips.opt:301 +#: config/mips/mips.opt:307 msgid "Lift restrictions on GOT size" msgstr "" @@ -8279,11 +8368,13 @@ msgid "Set the max size of data eligible for the TDA area" msgstr "" #: config/v850/v850.opt:71 -msgid "Enforce strict alignment" +msgid "Do not enforce strict alignment" msgstr "" #: config/v850/v850.opt:75 -msgid "Enforce table jump" +msgid "" +"Put jump tables for switch statements into the .data section rather than " +"the .code section" msgstr "" #: config/v850/v850.opt:82 @@ -8299,14 +8390,18 @@ msgid "Compile for the v850e1 processor" msgstr "" #: config/v850/v850.opt:94 -msgid "Compile for the v850e2 processor" +msgid "Compile for the v850es variant of the v850e1" msgstr "" #: config/v850/v850.opt:98 -msgid "Compile for the v850e2v3 processor" +msgid "Compile for the v850e2 processor" msgstr "" #: config/v850/v850.opt:102 +msgid "Compile for the v850e2v3 processor" +msgstr "" + +#: config/v850/v850.opt:106 msgid "Set the max size of data eligible for the ZDA area" msgstr "" @@ -8388,7 +8483,7 @@ msgstr "" msgid "Specify CPU for scheduling purposes" msgstr "" -#: config/iq2000/iq2000.opt:35 config/microblaze/microblaze.opt:65 +#: config/iq2000/iq2000.opt:35 config/microblaze/microblaze.opt:80 msgid "Use GP relative sdata/sbss sections" msgstr "" @@ -8486,18 +8581,18 @@ msgstr "" msgid "Generate warnings when inefficient code is known to be generated." msgstr "" -#: config/vxworks.opt:24 +#: config/vxworks.opt:36 msgid "Assume the VxWorks RTP environment" msgstr "" -#: config/vxworks.opt:31 +#: config/vxworks.opt:43 msgid "Assume the VxWorks vThreads environment" msgstr "" #: config/darwin.opt:50 c-family/c.opt:71 c-family/c.opt:74 c-family/c.opt:77 #: c-family/c.opt:80 c-family/c.opt:179 c-family/c.opt:182 c-family/c.opt:220 -#: c-family/c.opt:224 c-family/c.opt:236 c-family/c.opt:1053 -#: c-family/c.opt:1061 common.opt:285 common.opt:288 common.opt:2175 +#: c-family/c.opt:224 c-family/c.opt:236 c-family/c.opt:1065 +#: c-family/c.opt:1073 common.opt:290 common.opt:293 common.opt:2204 #, c-format msgid "missing filename after %qs" msgstr "" @@ -8522,23 +8617,23 @@ msgstr "" msgid "Generate code suitable for fast turn around debugging" msgstr "" -#: config/darwin.opt:226 +#: config/darwin.opt:227 msgid "The earliest MacOS X version on which this program will run" msgstr "" -#: config/darwin.opt:230 +#: config/darwin.opt:231 msgid "Set sizeof(bool) to 1" msgstr "" -#: config/darwin.opt:234 +#: config/darwin.opt:235 msgid "Generate code for darwin loadable kernel extensions" msgstr "" -#: config/darwin.opt:238 +#: config/darwin.opt:239 msgid "Generate code for the kernel or loadable kernel extensions" msgstr "" -#: config/darwin.opt:242 +#: config/darwin.opt:243 msgid "" "-iframework <dir>\tAdd <dir> to the end of the system framework include path" msgstr "" @@ -8711,11 +8806,11 @@ msgstr "" msgid "Variables this size and smaller go in the tiny section. (default 4)" msgstr "" -#: config/vms/vms.opt:21 +#: config/vms/vms.opt:24 msgid "Malloc data into P2 space" msgstr "" -#: config/vms/vms.opt:25 +#: config/vms/vms.opt:28 msgid "Set name of main routine for the debugger" msgstr "" @@ -8802,75 +8897,75 @@ msgstr "" msgid "Enable user-defined instructions" msgstr "" -#: config/microblaze/microblaze.opt:25 +#: config/microblaze/microblaze.opt:40 msgid "Use software emulation for floating point (default)" msgstr "" -#: config/microblaze/microblaze.opt:29 +#: config/microblaze/microblaze.opt:44 msgid "Use hardware floating point instructions" msgstr "" -#: config/microblaze/microblaze.opt:33 +#: config/microblaze/microblaze.opt:48 msgid "Use table lookup optimization for small signed integer divisions" msgstr "" -#: config/microblaze/microblaze.opt:37 +#: config/microblaze/microblaze.opt:52 msgid "-mcpu=PROCESSOR\t\tUse features of and schedule code for given CPU" msgstr "" -#: config/microblaze/microblaze.opt:41 +#: config/microblaze/microblaze.opt:56 msgid "Don't optimize block moves, use memcpy" msgstr "" -#: config/microblaze/microblaze.opt:45 +#: config/microblaze/microblaze.opt:60 msgid "Use the soft multiply emulation (default)" msgstr "" -#: config/microblaze/microblaze.opt:49 +#: config/microblaze/microblaze.opt:64 msgid "Use the software emulation for divides (default)" msgstr "" -#: config/microblaze/microblaze.opt:53 +#: config/microblaze/microblaze.opt:68 msgid "Use the hardware barrel shifter instead of emulation" msgstr "" -#: config/microblaze/microblaze.opt:57 +#: config/microblaze/microblaze.opt:72 msgid "Use pattern compare instructions" msgstr "" -#: config/microblaze/microblaze.opt:61 +#: config/microblaze/microblaze.opt:76 msgid "Check for stack overflow at runtime" msgstr "" -#: config/microblaze/microblaze.opt:69 +#: config/microblaze/microblaze.opt:84 msgid "Clear the BSS to zero and place zero initialized in BSS" msgstr "" -#: config/microblaze/microblaze.opt:73 +#: config/microblaze/microblaze.opt:88 msgid "Use multiply high instructions for high part of 32x32 multiply" msgstr "" -#: config/microblaze/microblaze.opt:77 -msgid "Use hardware floating point converstion instructions" +#: config/microblaze/microblaze.opt:92 +msgid "Use hardware floating point conversion instructions" msgstr "" -#: config/microblaze/microblaze.opt:81 +#: config/microblaze/microblaze.opt:96 msgid "Use hardware floating point square root instruction" msgstr "" -#: config/microblaze/microblaze.opt:85 +#: config/microblaze/microblaze.opt:100 msgid "Description for mxl-mode-executable" msgstr "" -#: config/microblaze/microblaze.opt:89 +#: config/microblaze/microblaze.opt:104 msgid "Description for mxl-mode-xmdstub" msgstr "" -#: config/microblaze/microblaze.opt:93 +#: config/microblaze/microblaze.opt:108 msgid "Description for mxl-mode-bootstrap" msgstr "" -#: config/microblaze/microblaze.opt:97 +#: config/microblaze/microblaze.opt:112 msgid "Description for mxl-mode-novectors" msgstr "" @@ -8884,7 +8979,7 @@ msgid "" "special section (on some targets)" msgstr "" -#: config/sol2.opt:23 +#: config/sol2.opt:35 msgid "Pass -z text to linker" msgstr "" @@ -8904,8 +8999,8 @@ msgid "macro name missing after %qs" msgstr "" #: c-family/c.opt:86 c-family/c.opt:89 c-family/c.opt:92 c-family/c.opt:95 -#: c-family/c.opt:204 c-family/c.opt:212 c-family/c.opt:1049 -#: c-family/c.opt:1069 c-family/c.opt:1073 c-family/c.opt:1077 +#: c-family/c.opt:204 c-family/c.opt:212 c-family/c.opt:1061 +#: c-family/c.opt:1081 c-family/c.opt:1085 c-family/c.opt:1089 #, c-format msgid "missing path after %qs" msgstr "" @@ -9435,16 +9530,16 @@ msgid "Enforce class member access control semantics" msgstr "" #: c-family/c.opt:689 c-family/c.opt:692 c-family/c.opt:746 c-family/c.opt:762 -#: c-family/c.opt:785 c-family/c.opt:791 c-family/c.opt:798 c-family/c.opt:818 -#: c-family/c.opt:829 c-family/c.opt:832 c-family/c.opt:846 c-family/c.opt:949 -#: c-family/c.opt:960 c-family/c.opt:974 c-family/c.opt:1005 -#: c-family/c.opt:1009 c-family/c.opt:1025 c-family/c-opts.c:561 +#: c-family/c.opt:785 c-family/c.opt:791 c-family/c.opt:798 c-family/c.opt:822 +#: c-family/c.opt:833 c-family/c.opt:836 c-family/c.opt:850 c-family/c.opt:961 +#: c-family/c.opt:972 c-family/c.opt:986 c-family/c.opt:1017 +#: c-family/c.opt:1021 c-family/c.opt:1037 c-family/c-opts.c:561 #, gcc-internal-format msgid "switch %qs is no longer supported" msgstr "" -#: c-family/c.opt:693 c-family/c.opt:799 c-family/c.opt:1006 -#: c-family/c.opt:1010 c-family/c.opt:1026 +#: c-family/c.opt:693 c-family/c.opt:799 c-family/c.opt:1018 +#: c-family/c.opt:1022 c-family/c.opt:1038 msgid "No longer supported" msgstr "" @@ -9483,9 +9578,9 @@ msgid "" "template type parameter from a brace-enclosed initializer-list" msgstr "" -#: c-family/c.opt:728 c-family/c.opt:891 common.opt:874 common.opt:1032 -#: common.opt:1303 common.opt:1569 common.opt:1605 common.opt:1690 -#: common.opt:1761 common.opt:1839 common.opt:1855 common.opt:1931 +#: c-family/c.opt:728 c-family/c.opt:903 common.opt:896 common.opt:1058 +#: common.opt:1329 common.opt:1595 common.opt:1631 common.opt:1716 +#: common.opt:1787 common.opt:1865 common.opt:1881 common.opt:1957 msgid "Does nothing. Preserved for backward compatibility." msgstr "" @@ -9561,333 +9656,349 @@ msgstr "" msgid "Inject friend functions into enclosing namespace" msgstr "" -#: c-family/c.opt:822 +#: c-family/c.opt:819 +msgid "Don't emit dllexported inline functions unless needed" +msgstr "" + +#: c-family/c.opt:826 msgid "" "Allow implicit conversions between vectors with differing numbers of " "subparts and/or differing element types." msgstr "" -#: c-family/c.opt:826 +#: c-family/c.opt:830 msgid "Don't warn about uses of Microsoft extensions" msgstr "" -#: c-family/c.opt:836 +#: c-family/c.opt:840 msgid "Generate code for NeXT (Apple Mac OS X) runtime environment" msgstr "" -#: c-family/c.opt:840 +#: c-family/c.opt:844 msgid "Assume that receivers of Objective-C messages may be nil" msgstr "" -#: c-family/c.opt:850 +#: c-family/c.opt:854 msgid "" "Treat a throw() exception specification as noexcept to improve code size" msgstr "" -#: c-family/c.opt:856 +#: c-family/c.opt:858 +msgid "" +"Specify which ABI to use for Objective-C family code and meta-data " +"generation." +msgstr "" + +#: c-family/c.opt:864 msgid "" "Generate special Objective-C methods to initialize/destroy non-POD C++ " "ivars, if needed" msgstr "" -#: c-family/c.opt:860 +#: c-family/c.opt:868 msgid "Allow fast jumps to the message dispatcher" msgstr "" -#: c-family/c.opt:866 +#: c-family/c.opt:874 msgid "Enable Objective-C exception and synchronization syntax" msgstr "" -#: c-family/c.opt:870 +#: c-family/c.opt:878 msgid "Enable garbage collection (GC) in Objective-C/Objective-C++ programs" msgstr "" -#: c-family/c.opt:875 +#: c-family/c.opt:882 +msgid "" +"Enable inline checks for nil receivers with the NeXT runtime and ABI version " +"2." +msgstr "" + +#: c-family/c.opt:887 msgid "Enable Objective-C setjmp exception handling runtime" msgstr "" -#: c-family/c.opt:879 +#: c-family/c.opt:891 msgid "Conform to the Objective-C 1.0 language as implemented in GCC 4.0" msgstr "" -#: c-family/c.opt:883 +#: c-family/c.opt:895 msgid "Enable OpenMP (implies -frecursive in Fortran)" msgstr "" -#: c-family/c.opt:887 +#: c-family/c.opt:899 msgid "Recognize C++ keywords like \"compl\" and \"xor\"" msgstr "" -#: c-family/c.opt:898 +#: c-family/c.opt:910 msgid "Look for and use PCH files even when preprocessing" msgstr "" -#: c-family/c.opt:902 +#: c-family/c.opt:914 msgid "Downgrade conformance errors to warnings" msgstr "" -#: c-family/c.opt:906 +#: c-family/c.opt:918 msgid "Enable Plan 9 language extensions" msgstr "" -#: c-family/c.opt:910 +#: c-family/c.opt:922 msgid "Treat the input file as already preprocessed" msgstr "" -#: c-family/c.opt:914 +#: c-family/c.opt:926 msgid "" "-fno-pretty-templates Do not pretty-print template specializations as the " "template signature followed by the arguments" msgstr "" -#: c-family/c.opt:918 +#: c-family/c.opt:930 msgid "" "Used in Fix-and-Continue mode to indicate that object files may be swapped " "in at runtime" msgstr "" -#: c-family/c.opt:922 +#: c-family/c.opt:934 msgid "Enable automatic template instantiation" msgstr "" -#: c-family/c.opt:926 +#: c-family/c.opt:938 msgid "Generate run time type descriptor information" msgstr "" -#: c-family/c.opt:930 +#: c-family/c.opt:942 msgid "Use the same size for double as for float" msgstr "" -#: c-family/c.opt:934 +#: c-family/c.opt:946 msgid "Use the narrowest integer type possible for enumeration types" msgstr "" -#: c-family/c.opt:938 +#: c-family/c.opt:950 msgid "Force the underlying type for \"wchar_t\" to be \"unsigned short\"" msgstr "" -#: c-family/c.opt:942 +#: c-family/c.opt:954 msgid "When \"signed\" or \"unsigned\" is not given make the bitfield signed" msgstr "" -#: c-family/c.opt:946 +#: c-family/c.opt:958 msgid "Make \"char\" signed by default" msgstr "" -#: c-family/c.opt:953 +#: c-family/c.opt:965 msgid "Display statistics accumulated during compilation" msgstr "" -#: c-family/c.opt:957 +#: c-family/c.opt:969 msgid "" "Assume that values of enumeration type are always within the minimum range " "of that type" msgstr "" -#: c-family/c.opt:964 +#: c-family/c.opt:976 msgid "-ftabstop=<number>\tDistance between tab stops for column reporting" msgstr "" -#: c-family/c.opt:971 +#: c-family/c.opt:983 msgid "-ftemplate-depth=<number>\tSpecify maximum template instantiation depth" msgstr "" -#: c-family/c.opt:978 +#: c-family/c.opt:990 msgid "" "-fno-threadsafe-statics\tDo not generate thread-safe code for initializing " "local statics" msgstr "" -#: c-family/c.opt:982 +#: c-family/c.opt:994 msgid "When \"signed\" or \"unsigned\" is not given make the bitfield unsigned" msgstr "" -#: c-family/c.opt:986 +#: c-family/c.opt:998 msgid "Make \"char\" unsigned by default" msgstr "" -#: c-family/c.opt:990 +#: c-family/c.opt:1002 msgid "Use __cxa_atexit to register destructors" msgstr "" -#: c-family/c.opt:994 +#: c-family/c.opt:1006 msgid "Use __cxa_get_exception_ptr in exception handling" msgstr "" -#: c-family/c.opt:998 +#: c-family/c.opt:1010 msgid "Marks all inlined methods as having hidden visibility" msgstr "" -#: c-family/c.opt:1002 +#: c-family/c.opt:1014 msgid "Changes visibility to match Microsoft Visual Studio by default" msgstr "" -#: c-family/c.opt:1014 +#: c-family/c.opt:1026 msgid "Emit common-like symbols as weak symbols" msgstr "" -#: c-family/c.opt:1018 +#: c-family/c.opt:1030 msgid "" "-fwide-exec-charset=<cset>\tConvert all wide strings and character constants " "to character set <cset>" msgstr "" -#: c-family/c.opt:1022 +#: c-family/c.opt:1034 msgid "Generate a #line directive pointing at the current working directory" msgstr "" -#: c-family/c.opt:1030 +#: c-family/c.opt:1042 msgid "" "Generate lazy class lookup (via objc_getClass()) for use in Zero-Link mode" msgstr "" -#: c-family/c.opt:1034 +#: c-family/c.opt:1046 msgid "Dump declarations to a .decl file" msgstr "" -#: c-family/c.opt:1038 +#: c-family/c.opt:1050 msgid "-femit-struct-debug-baseonly\tAggressive reduced debug info for structs" msgstr "" -#: c-family/c.opt:1042 +#: c-family/c.opt:1054 msgid "" "-femit-struct-debug-reduced\tConservative reduced debug info for structs" msgstr "" -#: c-family/c.opt:1046 +#: c-family/c.opt:1058 msgid "" "-femit-struct-debug-detailed=<spec-list>\tDetailed reduced debug info for " "structs" msgstr "" -#: c-family/c.opt:1050 +#: c-family/c.opt:1062 msgid "-idirafter <dir>\tAdd <dir> to the end of the system include path" msgstr "" -#: c-family/c.opt:1054 +#: c-family/c.opt:1066 msgid "-imacros <file>\tAccept definition of macros in <file>" msgstr "" -#: c-family/c.opt:1058 +#: c-family/c.opt:1070 msgid "-imultilib <dir>\tSet <dir> to be the multilib include subdirectory" msgstr "" -#: c-family/c.opt:1062 +#: c-family/c.opt:1074 msgid "-include <file>\tInclude the contents of <file> before other files" msgstr "" -#: c-family/c.opt:1066 +#: c-family/c.opt:1078 msgid "-iprefix <path>\tSpecify <path> as a prefix for next two options" msgstr "" -#: c-family/c.opt:1070 +#: c-family/c.opt:1082 msgid "-isysroot <dir>\tSet <dir> to be the system root directory" msgstr "" -#: c-family/c.opt:1074 +#: c-family/c.opt:1086 msgid "-isystem <dir>\tAdd <dir> to the start of the system include path" msgstr "" -#: c-family/c.opt:1078 +#: c-family/c.opt:1090 msgid "-iquote <dir>\tAdd <dir> to the end of the quote include path" msgstr "" -#: c-family/c.opt:1082 +#: c-family/c.opt:1094 msgid "-iwithprefix <dir>\tAdd <dir> to the end of the system include path" msgstr "" -#: c-family/c.opt:1086 +#: c-family/c.opt:1098 msgid "-iwithprefixbefore <dir>\tAdd <dir> to the end of the main include path" msgstr "" -#: c-family/c.opt:1096 +#: c-family/c.opt:1108 msgid "" "Do not search standard system include directories (those specified with -" "isystem will still be used)" msgstr "" -#: c-family/c.opt:1100 +#: c-family/c.opt:1112 msgid "Do not search standard system include directories for C++" msgstr "" -#: c-family/c.opt:1116 +#: c-family/c.opt:1128 msgid "Generate C header of platform-specific features" msgstr "" -#: c-family/c.opt:1120 +#: c-family/c.opt:1132 msgid "Remap file names when including files" msgstr "" -#: c-family/c.opt:1124 +#: c-family/c.opt:1136 msgid "Conform to the ISO 1998 C++ standard" msgstr "" -#: c-family/c.opt:1128 +#: c-family/c.opt:1140 msgid "" "Conform to the ISO 1998 C++ standard, with extensions that are likely to" msgstr "" -#: c-family/c.opt:1135 +#: c-family/c.opt:1147 msgid "" "Conform to the ISO 201X C standard draft (experimental and incomplete " "support)" msgstr "" -#: c-family/c.opt:1139 c-family/c.opt:1143 c-family/c.opt:1186 +#: c-family/c.opt:1151 c-family/c.opt:1155 c-family/c.opt:1198 msgid "Conform to the ISO 1990 C standard" msgstr "" -#: c-family/c.opt:1147 c-family/c.opt:1194 +#: c-family/c.opt:1159 c-family/c.opt:1206 msgid "Conform to the ISO 1999 C standard" msgstr "" -#: c-family/c.opt:1151 +#: c-family/c.opt:1163 msgid "Deprecated in favor of -std=c99" msgstr "" -#: c-family/c.opt:1155 +#: c-family/c.opt:1167 msgid "Conform to the ISO 1998 C++ standard with GNU extensions" msgstr "" -#: c-family/c.opt:1159 +#: c-family/c.opt:1171 msgid "Conform to the ISO 1998 C++ standard, with GNU extensions and" msgstr "" -#: c-family/c.opt:1166 +#: c-family/c.opt:1178 msgid "" "Conform to the ISO 201X C standard draft with GNU extensions (experimental " "and incomplete support)" msgstr "" -#: c-family/c.opt:1170 c-family/c.opt:1174 +#: c-family/c.opt:1182 c-family/c.opt:1186 msgid "Conform to the ISO 1990 C standard with GNU extensions" msgstr "" -#: c-family/c.opt:1178 +#: c-family/c.opt:1190 msgid "Conform to the ISO 1999 C standard with GNU extensions" msgstr "" -#: c-family/c.opt:1182 +#: c-family/c.opt:1194 msgid "Deprecated in favor of -std=gnu99" msgstr "" -#: c-family/c.opt:1190 +#: c-family/c.opt:1202 msgid "Conform to the ISO 1990 C standard as amended in 1994" msgstr "" -#: c-family/c.opt:1198 +#: c-family/c.opt:1210 msgid "Deprecated in favor of -std=iso9899:1999" msgstr "" -#: c-family/c.opt:1205 +#: c-family/c.opt:1217 msgid "Enable traditional preprocessing" msgstr "" -#: c-family/c.opt:1209 +#: c-family/c.opt:1221 msgid "-trigraphs\tSupport ISO C trigraphs" msgstr "" -#: c-family/c.opt:1213 +#: c-family/c.opt:1225 msgid "Do not predefine system-specific and GCC-specific macros" msgstr "" @@ -9919,1865 +10030,1878 @@ msgstr "" msgid "The resolution file" msgstr "" -#: common.opt:254 +#: common.opt:259 msgid "Display this information" msgstr "" -#: common.opt:258 +#: common.opt:263 msgid "" "--help=<class>\tDisplay descriptions of a specific class of options. " "<class> is one or more of optimizers, target, warnings, undocumented, params" msgstr "" -#: common.opt:370 +#: common.opt:375 msgid "Alias for --help=target" msgstr "" -#: common.opt:395 +#: common.opt:400 msgid "" "--param <param>=<value>\tSet parameter <param> to value. See below for a " "complete list of parameters" msgstr "" -#: common.opt:423 +#: common.opt:428 msgid "-O<number>\tSet optimization level to <number>" msgstr "" -#: common.opt:427 +#: common.opt:432 msgid "Optimize for space rather than speed" msgstr "" -#: common.opt:431 +#: common.opt:436 msgid "Optimize for speed disregarding exact standards compliance" msgstr "" -#: common.opt:462 +#: common.opt:467 msgid "This switch is deprecated; use -Wextra instead" msgstr "" -#: common.opt:475 +#: common.opt:480 msgid "Warn about returning structures, unions or arrays" msgstr "" -#: common.opt:479 +#: common.opt:484 msgid "Warn if an array is accessed out of bounds" msgstr "" -#: common.opt:483 +#: common.opt:488 msgid "Warn about inappropriate attribute usage" msgstr "" -#: common.opt:487 +#: common.opt:492 msgid "Warn about pointer casts which increase alignment" msgstr "" -#: common.opt:491 +#: common.opt:496 msgid "Warn when a #warning directive is encountered" msgstr "" -#: common.opt:495 +#: common.opt:500 msgid "Warn about uses of __attribute__((deprecated)) declarations" msgstr "" -#: common.opt:499 +#: common.opt:504 msgid "Warn when an optimization pass is disabled" msgstr "" -#: common.opt:503 +#: common.opt:508 msgid "Treat all warnings as errors" msgstr "" -#: common.opt:507 +#: common.opt:512 msgid "Treat specified warning as error" msgstr "" -#: common.opt:511 +#: common.opt:516 msgid "Print extra (possibly unwanted) warnings" msgstr "" -#: common.opt:515 +#: common.opt:520 msgid "Exit on the first error occurred" msgstr "" -#: common.opt:519 +#: common.opt:524 msgid "" "-Wframe-larger-than=<number>\tWarn if a function's stack frame requires more " "than <number> bytes" msgstr "" -#: common.opt:523 +#: common.opt:528 msgid "Warn when an inlined function cannot be inlined" msgstr "" -#: common.opt:530 +#: common.opt:535 msgid "-Wlarger-than=<number>\tWarn if an object is larger than <number> bytes" msgstr "" -#: common.opt:534 +#: common.opt:539 msgid "Warn if the loop cannot be optimized due to nontrivial assumptions." msgstr "" -#: common.opt:538 common.opt:590 +#: common.opt:543 common.opt:595 msgid "" "Warn about functions which might be candidates for __attribute__((noreturn))" msgstr "" -#: common.opt:542 +#: common.opt:547 msgid "Warn about constructs not instrumented by -fmudflap" msgstr "" -#: common.opt:546 +#: common.opt:551 msgid "Warn about overflow in arithmetic expressions" msgstr "" -#: common.opt:550 +#: common.opt:555 msgid "Warn when the packed attribute has no effect on struct layout" msgstr "" -#: common.opt:554 +#: common.opt:559 msgid "Warn when padding is required to align structure members" msgstr "" -#: common.opt:558 +#: common.opt:563 msgid "Warn when one local variable shadows another" msgstr "" -#: common.opt:562 +#: common.opt:567 msgid "Warn when not issuing stack smashing protection for some reason" msgstr "" -#: common.opt:566 common.opt:570 +#: common.opt:571 common.opt:575 msgid "Warn about code which might break strict aliasing rules" msgstr "" -#: common.opt:574 common.opt:578 +#: common.opt:579 common.opt:583 msgid "Warn about optimizations that assume that signed overflow is undefined" msgstr "" -#: common.opt:582 +#: common.opt:587 msgid "" "Warn about functions which might be candidates for __attribute__((const))" msgstr "" -#: common.opt:586 +#: common.opt:591 msgid "" "Warn about functions which might be candidates for __attribute__((pure))" msgstr "" -#: common.opt:594 +#: common.opt:599 msgid "Warn about enumerated switches, with no default, missing a case" msgstr "" -#: common.opt:598 +#: common.opt:603 msgid "Warn about enumerated switches missing a \"default:\" statement" msgstr "" -#: common.opt:602 +#: common.opt:607 msgid "Warn about all enumerated switches missing a specific case" msgstr "" -#: common.opt:606 +#: common.opt:611 msgid "Do not suppress warnings from system headers" msgstr "" -#: common.opt:610 +#: common.opt:615 msgid "Warn whenever a trampoline is generated" msgstr "" -#: common.opt:614 +#: common.opt:619 msgid "" "Warn if a comparison is always true or always false due to the limited range " "of the data type" msgstr "" -#: common.opt:618 +#: common.opt:623 msgid "Warn about uninitialized automatic variables" msgstr "" -#: common.opt:622 common.opt:767 common.opt:771 common.opt:775 common.opt:779 +#: common.opt:627 common.opt:785 common.opt:789 common.opt:793 common.opt:797 msgid "Does nothing. Preserved for backward compatibility." msgstr "" -#: common.opt:626 +#: common.opt:631 msgid "Enable all -Wunused- warnings" msgstr "" -#: common.opt:630 +#: common.opt:635 msgid "Warn when a function parameter is only set, otherwise unused" msgstr "" -#: common.opt:634 +#: common.opt:639 msgid "Warn when a variable is only set, otherwise unused" msgstr "" -#: common.opt:638 +#: common.opt:643 msgid "Warn when a function is unused" msgstr "" -#: common.opt:642 +#: common.opt:647 msgid "Warn when a label is unused" msgstr "" -#: common.opt:646 +#: common.opt:651 msgid "Warn when a function parameter is unused" msgstr "" -#: common.opt:650 +#: common.opt:655 msgid "Warn when an expression value is unused" msgstr "" -#: common.opt:654 +#: common.opt:659 msgid "Warn when a variable is unused" msgstr "" -#: common.opt:658 +#: common.opt:663 msgid "Warn in case profiles in -fprofile-use do not match" msgstr "" -#: common.opt:674 +#: common.opt:679 msgid "-aux-info <file>\tEmit declaration information into <file>" msgstr "" -#: common.opt:693 +#: common.opt:698 msgid "-d<letters>\tEnable dumps from specific passes of the compiler" msgstr "" -#: common.opt:697 +#: common.opt:702 msgid "-dumpbase <file>\tSet the file basename to be used for dumps" msgstr "" -#: common.opt:701 +#: common.opt:706 msgid "-dumpdir <dir>\tSet the directory name to be used for dumps" msgstr "" -#: common.opt:739 +#: common.opt:757 msgid "Align the start of functions" msgstr "" -#: common.opt:746 +#: common.opt:764 msgid "Align labels which are only reached by jumping" msgstr "" -#: common.opt:753 +#: common.opt:771 msgid "Align all labels" msgstr "" -#: common.opt:760 +#: common.opt:778 msgid "Align the start of loops" msgstr "" -#: common.opt:783 +#: common.opt:801 msgid "Generate unwind tables that are exact at each instruction boundary" msgstr "" -#: common.opt:787 +#: common.opt:805 msgid "Generate auto-inc/dec instructions" msgstr "" -#: common.opt:795 +#: common.opt:813 msgid "Generate code to check bounds before indexing arrays" msgstr "" -#: common.opt:799 +#: common.opt:817 msgid "Replace add, compare, branch with branch on count register" msgstr "" -#: common.opt:803 +#: common.opt:821 msgid "Use profiling information for branch probabilities" msgstr "" -#: common.opt:807 +#: common.opt:825 msgid "" "Perform branch target load optimization before prologue / epilogue threading" msgstr "" -#: common.opt:811 +#: common.opt:829 msgid "" "Perform branch target load optimization after prologue / epilogue threading" msgstr "" -#: common.opt:815 +#: common.opt:833 msgid "" "Restrict target load migration not to re-use registers in any basic block" msgstr "" -#: common.opt:819 +#: common.opt:837 msgid "" "-fcall-saved-<register>\tMark <register> as being preserved across functions" msgstr "" -#: common.opt:823 +#: common.opt:841 msgid "" "-fcall-used-<register>\tMark <register> as being corrupted by function calls" msgstr "" -#: common.opt:830 +#: common.opt:848 msgid "Save registers around function calls" msgstr "" -#: common.opt:834 +#: common.opt:852 msgid "Compare the results of several data dependence analyzers." msgstr "" -#: common.opt:838 +#: common.opt:856 msgid "" "Looks for opportunities to reduce stack adjustments and stack references." msgstr "" -#: common.opt:842 +#: common.opt:860 msgid "Do not put uninitialized globals in the common section" msgstr "" -#: common.opt:850 +#: common.opt:868 msgid "" "-fcompare-debug[=<opts>]\tCompile with and without e.g. -gtoggle, and " "compare the final-insns dump" msgstr "" -#: common.opt:854 +#: common.opt:872 msgid "Run only the second compilation of -fcompare-debug" msgstr "" -#: common.opt:858 +#: common.opt:876 +msgid "Perform comparison elimination after register allocation has finished" +msgstr "" + +#: common.opt:880 msgid "Do not perform optimizations increasing noticeably stack usage" msgstr "" -#: common.opt:862 +#: common.opt:884 msgid "Perform a register copy-propagation optimization pass" msgstr "" -#: common.opt:866 +#: common.opt:888 msgid "Perform cross-jumping optimization" msgstr "" -#: common.opt:870 +#: common.opt:892 msgid "When running CSE, follow jumps to their targets" msgstr "" -#: common.opt:878 +#: common.opt:900 msgid "Omit range reduction step when performing complex division" msgstr "" -#: common.opt:882 +#: common.opt:904 msgid "Complex multiplication and division follow Fortran rules" msgstr "" -#: common.opt:886 +#: common.opt:908 msgid "Place data items into their own section" msgstr "" -#: common.opt:890 +#: common.opt:912 msgid "List all available debugging counters with their limits and counts." msgstr "" -#: common.opt:894 +#: common.opt:916 msgid "" "-fdbg-cnt=<counter>:<limit>[,<counter>:<limit>,...]\tSet the debug counter " "limit. " msgstr "" -#: common.opt:898 +#: common.opt:920 msgid "Map one directory name to another in debug information" msgstr "" -#: common.opt:904 +#: common.opt:926 msgid "Defer popping functions args from stack until later" msgstr "" -#: common.opt:908 +#: common.opt:930 msgid "Attempt to fill delay slots of branch instructions" msgstr "" -#: common.opt:912 +#: common.opt:934 msgid "Delete useless null pointer checks" msgstr "" -#: common.opt:916 +#: common.opt:938 +msgid "Try to convert virtual calls to direct ones." +msgstr "" + +#: common.opt:942 msgid "" "-fdiagnostics-show-location=[once|every-line]\tHow often to emit source " "location at the beginning of line-wrapped diagnostics" msgstr "" -#: common.opt:933 +#: common.opt:959 msgid "" "Amend appropriate diagnostic messages with the command line option that " "controls them" msgstr "" -#: common.opt:937 +#: common.opt:963 msgid "-fdump-<type>\tDump various compiler internals to a file" msgstr "" -#: common.opt:944 +#: common.opt:970 msgid "" "-fdump-final-insns=filename\tDump to filename the insns at the end of " "translation" msgstr "" -#: common.opt:948 +#: common.opt:974 msgid "-fdump-go-spec=filename\tWrite all declarations to file as Go code" msgstr "" -#: common.opt:952 +#: common.opt:978 msgid "Suppress output of addresses in debugging dumps" msgstr "" -#: common.opt:956 +#: common.opt:982 msgid "" "Suppress output of instruction numbers, line number notes and addresses in " "debugging dumps" msgstr "" -#: common.opt:960 +#: common.opt:986 msgid "Suppress output of previous and next insn numbers in debugging dumps" msgstr "" -#: common.opt:964 +#: common.opt:990 msgid "Enable CFI tables via GAS assembler directives." msgstr "" -#: common.opt:968 +#: common.opt:994 msgid "Perform early inlining" msgstr "" -#: common.opt:972 +#: common.opt:998 msgid "Perform DWARF2 duplicate elimination" msgstr "" -#: common.opt:976 +#: common.opt:1002 msgid "Perform interprocedural reduction of aggregates" msgstr "" -#: common.opt:980 common.opt:984 +#: common.opt:1006 common.opt:1010 msgid "Perform unused type elimination in debug info" msgstr "" -#: common.opt:988 +#: common.opt:1014 msgid "Do not suppress C++ class debug information." msgstr "" -#: common.opt:992 +#: common.opt:1018 msgid "Generate debug information to support Identical Code Folding (ICF)" msgstr "" -#: common.opt:996 +#: common.opt:1022 msgid "Enable exception handling" msgstr "" -#: common.opt:1000 +#: common.opt:1026 msgid "Perform a number of minor, expensive optimizations" msgstr "" -#: common.opt:1004 +#: common.opt:1030 msgid "" "-fexcess-precision=[fast|standard]\tSpecify handling of excess floating-" "point precision" msgstr "" -#: common.opt:1007 +#: common.opt:1033 #, c-format msgid "unknown excess precision style %qs" msgstr "" -#: common.opt:1020 +#: common.opt:1046 msgid "Assume no NaNs or infinities are generated" msgstr "" -#: common.opt:1024 +#: common.opt:1050 msgid "" "-ffixed-<register>\tMark <register> as being unavailable to the compiler" msgstr "" -#: common.opt:1028 +#: common.opt:1054 msgid "Don't allocate floats and doubles in extended-precision registers" msgstr "" -#: common.opt:1036 +#: common.opt:1062 msgid "Perform a forward propagation pass on RTL" msgstr "" -#: common.opt:1040 +#: common.opt:1066 msgid "" "-ffp-contract=[off|on|fast] Perform floating-point expression contraction." msgstr "" -#: common.opt:1043 +#: common.opt:1069 #, c-format msgid "unknown floating point contraction style %qs" msgstr "" -#: common.opt:1060 +#: common.opt:1086 msgid "Allow function addresses to be held in registers" msgstr "" -#: common.opt:1064 +#: common.opt:1090 msgid "Place each function into its own section" msgstr "" -#: common.opt:1068 +#: common.opt:1094 msgid "Perform global common subexpression elimination" msgstr "" -#: common.opt:1072 +#: common.opt:1098 msgid "" "Perform enhanced load motion during global common subexpression elimination" msgstr "" -#: common.opt:1076 +#: common.opt:1102 msgid "Perform store motion after global common subexpression elimination" msgstr "" -#: common.opt:1080 +#: common.opt:1106 msgid "" "Perform redundant load after store elimination in global common subexpression" msgstr "" -#: common.opt:1085 +#: common.opt:1111 msgid "" "Perform global common subexpression elimination after register allocation" msgstr "" -#: common.opt:1091 +#: common.opt:1117 msgid "Enable in and out of Graphite representation" msgstr "" -#: common.opt:1095 +#: common.opt:1121 msgid "Enable Graphite Identity transformation" msgstr "" -#: common.opt:1099 +#: common.opt:1125 msgid "Mark all loops as parallel" msgstr "" -#: common.opt:1103 +#: common.opt:1129 msgid "Enable Loop Strip Mining transformation" msgstr "" -#: common.opt:1107 +#: common.opt:1133 msgid "Enable Loop Interchange transformation" msgstr "" -#: common.opt:1111 +#: common.opt:1137 msgid "Enable Loop Blocking transformation" msgstr "" -#: common.opt:1115 +#: common.opt:1141 msgid "Enable Loop Flattening transformation" msgstr "" -#: common.opt:1119 +#: common.opt:1145 msgid "Force bitfield accesses to match their type width" msgstr "" -#: common.opt:1123 +#: common.opt:1149 msgid "Enable guessing of branch probabilities" msgstr "" -#: common.opt:1131 +#: common.opt:1157 msgid "Process #ident directives" msgstr "" -#: common.opt:1135 +#: common.opt:1161 msgid "Perform conversion of conditional jumps to branchless equivalents" msgstr "" -#: common.opt:1139 +#: common.opt:1165 msgid "Perform conversion of conditional jumps to conditional execution" msgstr "" -#: common.opt:1143 +#: common.opt:1169 msgid "Convert conditional jumps in innermost loops to branchless equivalents" msgstr "" -#: common.opt:1147 +#: common.opt:1173 msgid "Also if-convert conditional jumps containing memory writes" msgstr "" -#: common.opt:1155 +#: common.opt:1181 msgid "Do not generate .size directives" msgstr "" -#: common.opt:1159 +#: common.opt:1185 msgid "Perform indirect inlining" msgstr "" -#: common.opt:1168 +#: common.opt:1194 msgid "Pay attention to the \"inline\" keyword" msgstr "" -#: common.opt:1172 +#: common.opt:1198 msgid "" "Integrate simple functions into their callers when code size is known to not " "growth" msgstr "" -#: common.opt:1176 +#: common.opt:1202 msgid "Integrate simple functions into their callers" msgstr "" -#: common.opt:1180 +#: common.opt:1206 msgid "Integrate functions called once into their callers" msgstr "" -#: common.opt:1187 +#: common.opt:1213 msgid "" "-finline-limit=<number>\tLimit the size of inlined functions to <number>" msgstr "" -#: common.opt:1191 +#: common.opt:1217 msgid "Instrument function entry and exit with profiling calls" msgstr "" -#: common.opt:1195 +#: common.opt:1221 msgid "" "-finstrument-functions-exclude-function-list=name,... Do not instrument " "listed functions" msgstr "" -#: common.opt:1199 +#: common.opt:1225 msgid "" "-finstrument-functions-exclude-file-list=filename,... Do not instrument " "functions listed in files" msgstr "" -#: common.opt:1203 +#: common.opt:1229 msgid "Perform Interprocedural constant propagation" msgstr "" -#: common.opt:1207 +#: common.opt:1233 msgid "Perform cloning to make Interprocedural constant propagation stronger" msgstr "" -#: common.opt:1211 +#: common.opt:1237 msgid "Perform interprocedural profile propagation" msgstr "" -#: common.opt:1215 +#: common.opt:1241 msgid "Perform interprocedural points-to analysis" msgstr "" -#: common.opt:1219 +#: common.opt:1245 msgid "Discover pure and const functions" msgstr "" -#: common.opt:1223 +#: common.opt:1249 msgid "Discover readonly and non addressable static variables" msgstr "" -#: common.opt:1227 +#: common.opt:1253 msgid "Perform matrix layout flattening and transposing based" msgstr "" -#: common.opt:1232 +#: common.opt:1258 msgid "Perform structure layout optimizations based" msgstr "" -#: common.opt:1237 +#: common.opt:1263 msgid "-fira-algorithm=[CB|priority] Set the used IRA algorithm" msgstr "" -#: common.opt:1240 +#: common.opt:1266 #, c-format msgid "unknown IRA algorithm %qs" msgstr "" -#: common.opt:1250 +#: common.opt:1276 msgid "-fira-region=[one|all|mixed] Set regions for IRA" msgstr "" -#: common.opt:1253 +#: common.opt:1279 #, c-format msgid "unknown IRA region %qs" msgstr "" -#: common.opt:1266 +#: common.opt:1292 msgid "Use IRA based register pressure calculation" msgstr "" -#: common.opt:1271 +#: common.opt:1297 msgid "Share slots for saving different hard registers." msgstr "" -#: common.opt:1275 +#: common.opt:1301 msgid "Share stack slots for spilled pseudo-registers." msgstr "" -#: common.opt:1279 +#: common.opt:1305 msgid "-fira-verbose=<number>\tControl IRA's level of diagnostic messages." msgstr "" -#: common.opt:1283 +#: common.opt:1309 msgid "Optimize induction variables on trees" msgstr "" -#: common.opt:1287 +#: common.opt:1313 msgid "Use jump tables for sufficiently large switch statements" msgstr "" -#: common.opt:1291 +#: common.opt:1317 msgid "Generate code for functions even if they are fully inlined" msgstr "" -#: common.opt:1295 +#: common.opt:1321 msgid "Emit static const variables even if they are not used" msgstr "" -#: common.opt:1299 +#: common.opt:1325 msgid "Give external symbols a leading underscore" msgstr "" -#: common.opt:1307 +#: common.opt:1333 msgid "Enable link-time optimization." msgstr "" -#: common.opt:1311 +#: common.opt:1337 msgid "Link-time optimization with number of parallel jobs or jobserver." msgstr "" -#: common.opt:1315 +#: common.opt:1341 msgid "" "Partition functions and vars at linktime based on object files they " "originate from" msgstr "" -#: common.opt:1319 +#: common.opt:1345 msgid "" "Partition functions and vars at linktime into approximately same sized " "buckets" msgstr "" -#: common.opt:1323 +#: common.opt:1349 msgid "Disable partioning and streaming" msgstr "" -#: common.opt:1328 +#: common.opt:1354 msgid "" "-flto-compression-level=<number>\tUse zlib compression level <number> for IL" msgstr "" -#: common.opt:1332 +#: common.opt:1358 msgid "Report various link-time optimization statistics" msgstr "" -#: common.opt:1336 +#: common.opt:1362 msgid "Set errno after built-in math functions" msgstr "" -#: common.opt:1340 +#: common.opt:1366 msgid "-fmax-errors=<number>\tMaximum number of errors to report" msgstr "" -#: common.opt:1344 +#: common.opt:1370 msgid "Report on permanent memory allocation" msgstr "" -#: common.opt:1351 +#: common.opt:1377 msgid "Attempt to merge identical constants and constant variables" msgstr "" -#: common.opt:1355 +#: common.opt:1381 msgid "Attempt to merge identical constants across compilation units" msgstr "" -#: common.opt:1359 +#: common.opt:1385 msgid "Attempt to merge identical debug strings across compilation units" msgstr "" -#: common.opt:1363 +#: common.opt:1389 msgid "" "-fmessage-length=<number>\tLimit diagnostics to <number> characters per " "line. 0 suppresses line-wrapping" msgstr "" -#: common.opt:1367 +#: common.opt:1393 msgid "Perform SMS based modulo scheduling before the first scheduling pass" msgstr "" -#: common.opt:1371 +#: common.opt:1397 msgid "Perform SMS based modulo scheduling with register moves allowed" msgstr "" -#: common.opt:1375 +#: common.opt:1401 msgid "Move loop invariant computations out of loops" msgstr "" -#: common.opt:1379 +#: common.opt:1405 msgid "Add mudflap bounds-checking instrumentation for single-threaded program" msgstr "" -#: common.opt:1383 +#: common.opt:1409 msgid "Add mudflap bounds-checking instrumentation for multi-threaded program" msgstr "" -#: common.opt:1387 +#: common.opt:1413 msgid "Ignore read operations when inserting mudflap instrumentation" msgstr "" -#: common.opt:1391 +#: common.opt:1417 msgid "Use the RTL dead code elimination pass" msgstr "" -#: common.opt:1395 +#: common.opt:1421 msgid "Use the RTL dead store elimination pass" msgstr "" -#: common.opt:1399 +#: common.opt:1425 msgid "" "Enable/Disable the traditional scheduling in loops that already passed " "modulo scheduling" msgstr "" -#: common.opt:1403 +#: common.opt:1429 msgid "Support synchronous non-call exceptions" msgstr "" -#: common.opt:1407 +#: common.opt:1433 msgid "When possible do not generate stack frames" msgstr "" -#: common.opt:1411 +#: common.opt:1437 msgid "Do the full register move optimization pass" msgstr "" -#: common.opt:1415 +#: common.opt:1441 msgid "Optimize sibling and tail recursive calls" msgstr "" -#: common.opt:1419 +#: common.opt:1445 msgid "Perform partial inlining" msgstr "" -#: common.opt:1423 common.opt:1427 +#: common.opt:1449 common.opt:1453 msgid "Report on memory allocation before interprocedural optimization" msgstr "" -#: common.opt:1431 +#: common.opt:1457 msgid "Pack structure members together without holes" msgstr "" -#: common.opt:1435 +#: common.opt:1461 msgid "-fpack-struct=<number>\tSet initial maximum structure member alignment" msgstr "" -#: common.opt:1439 +#: common.opt:1465 msgid "Return small aggregates in memory, not registers" msgstr "" -#: common.opt:1443 +#: common.opt:1469 msgid "Perform loop peeling" msgstr "" -#: common.opt:1447 +#: common.opt:1473 msgid "Enable machine specific peephole optimizations" msgstr "" -#: common.opt:1451 +#: common.opt:1477 msgid "Enable an RTL peephole pass before sched2" msgstr "" -#: common.opt:1455 +#: common.opt:1481 msgid "Generate position-independent code if possible (large mode)" msgstr "" -#: common.opt:1459 +#: common.opt:1485 msgid "" "Generate position-independent code for executables if possible (large mode)" msgstr "" -#: common.opt:1463 +#: common.opt:1489 msgid "Generate position-independent code if possible (small mode)" msgstr "" -#: common.opt:1467 +#: common.opt:1493 msgid "" "Generate position-independent code for executables if possible (small mode)" msgstr "" -#: common.opt:1471 +#: common.opt:1497 msgid "Specify a plugin to load" msgstr "" -#: common.opt:1475 +#: common.opt:1501 msgid "" "-fplugin-arg-<name>-<key>[=<value>]\tSpecify argument <key>=<value> for " "plugin <name>" msgstr "" -#: common.opt:1479 +#: common.opt:1505 msgid "Run predictive commoning optimization." msgstr "" -#: common.opt:1483 +#: common.opt:1509 msgid "Generate prefetch instructions, if available, for arrays in loops" msgstr "" -#: common.opt:1487 +#: common.opt:1513 msgid "Enable basic program profiling code" msgstr "" -#: common.opt:1491 +#: common.opt:1517 msgid "Insert arc-based program profiling code" msgstr "" -#: common.opt:1495 +#: common.opt:1521 msgid "Set the top-level directory for storing the profile data." msgstr "" -#: common.opt:1500 +#: common.opt:1526 msgid "Enable correction of flow inconsistent profile data input" msgstr "" -#: common.opt:1504 +#: common.opt:1530 msgid "" "Enable common options for generating profile info for profile feedback " "directed optimizations" msgstr "" -#: common.opt:1508 +#: common.opt:1534 msgid "" "Enable common options for generating profile info for profile feedback " "directed optimizations, and set -fprofile-dir=" msgstr "" -#: common.opt:1512 +#: common.opt:1538 msgid "" "Enable common options for performing profile feedback directed optimizations" msgstr "" -#: common.opt:1516 +#: common.opt:1542 msgid "" "Enable common options for performing profile feedback directed " "optimizations, and set -fprofile-dir=" msgstr "" -#: common.opt:1520 +#: common.opt:1546 msgid "Insert code to profile values of expressions" msgstr "" -#: common.opt:1527 +#: common.opt:1553 msgid "-frandom-seed=<string>\tMake compile reproducible using <string>" msgstr "" -#: common.opt:1537 +#: common.opt:1563 msgid "Record gcc command line switches in the object file." msgstr "" -#: common.opt:1541 +#: common.opt:1567 msgid "Return small aggregates in registers" msgstr "" -#: common.opt:1545 +#: common.opt:1571 msgid "Enables a register move optimization" msgstr "" -#: common.opt:1549 +#: common.opt:1575 msgid "Perform a register renaming optimization pass" msgstr "" -#: common.opt:1553 +#: common.opt:1579 msgid "Reorder basic blocks to improve code placement" msgstr "" -#: common.opt:1557 +#: common.opt:1583 msgid "Reorder basic blocks and partition into hot and cold sections" msgstr "" -#: common.opt:1561 +#: common.opt:1587 msgid "Reorder functions to improve code placement" msgstr "" -#: common.opt:1565 +#: common.opt:1591 msgid "Add a common subexpression elimination pass after loop optimizations" msgstr "" -#: common.opt:1573 +#: common.opt:1599 msgid "Disable optimizations that assume default FP rounding behavior" msgstr "" -#: common.opt:1577 +#: common.opt:1603 msgid "Enable scheduling across basic blocks" msgstr "" -#: common.opt:1581 +#: common.opt:1607 msgid "Enable register pressure sensitive insn scheduling" msgstr "" -#: common.opt:1585 +#: common.opt:1611 msgid "Allow speculative motion of non-loads" msgstr "" -#: common.opt:1589 +#: common.opt:1615 msgid "Allow speculative motion of some loads" msgstr "" -#: common.opt:1593 +#: common.opt:1619 msgid "Allow speculative motion of more loads" msgstr "" -#: common.opt:1597 +#: common.opt:1623 msgid "-fsched-verbose=<number>\tSet the verbosity level of the scheduler" msgstr "" -#: common.opt:1601 +#: common.opt:1627 msgid "If scheduling post reload, do superblock scheduling" msgstr "" -#: common.opt:1609 +#: common.opt:1635 msgid "Reschedule instructions before register allocation" msgstr "" -#: common.opt:1613 +#: common.opt:1639 msgid "Reschedule instructions after register allocation" msgstr "" -#: common.opt:1620 +#: common.opt:1646 msgid "Schedule instructions using selective scheduling algorithm" msgstr "" -#: common.opt:1624 +#: common.opt:1650 msgid "Run selective scheduling after reload" msgstr "" -#: common.opt:1628 +#: common.opt:1654 msgid "Perform software pipelining of inner loops during selective scheduling" msgstr "" -#: common.opt:1632 +#: common.opt:1658 msgid "Perform software pipelining of outer loops during selective scheduling" msgstr "" -#: common.opt:1636 +#: common.opt:1662 msgid "Reschedule pipelined regions without pipelining" msgstr "" -#: common.opt:1642 +#: common.opt:1668 msgid "Allow premature scheduling of queued insns" msgstr "" -#: common.opt:1646 +#: common.opt:1672 msgid "" "-fsched-stalled-insns=<number>\tSet number of queued insns that can be " "prematurely scheduled" msgstr "" -#: common.opt:1654 +#: common.opt:1680 msgid "" "Set dependence distance checking in premature scheduling of queued insns" msgstr "" -#: common.opt:1658 +#: common.opt:1684 msgid "" "-fsched-stalled-insns-dep=<number>\tSet dependence distance checking in " "premature scheduling of queued insns" msgstr "" -#: common.opt:1662 +#: common.opt:1688 msgid "Enable the group heuristic in the scheduler" msgstr "" -#: common.opt:1666 +#: common.opt:1692 msgid "Enable the critical path heuristic in the scheduler" msgstr "" -#: common.opt:1670 +#: common.opt:1696 msgid "Enable the speculative instruction heuristic in the scheduler" msgstr "" -#: common.opt:1674 +#: common.opt:1700 msgid "Enable the rank heuristic in the scheduler" msgstr "" -#: common.opt:1678 +#: common.opt:1704 msgid "Enable the last instruction heuristic in the scheduler" msgstr "" -#: common.opt:1682 +#: common.opt:1708 msgid "Enable the dependent count heuristic in the scheduler" msgstr "" -#: common.opt:1686 +#: common.opt:1712 msgid "Access data in the same section from shared anchor points" msgstr "" -#: common.opt:1694 +#: common.opt:1720 msgid "" "Eliminate redundant zero extensions on targets that support implicit " "extensions." msgstr "" -#: common.opt:1698 +#: common.opt:1724 msgid "Show column numbers in diagnostics, when available. Default on" msgstr "" -#: common.opt:1702 +#: common.opt:1728 msgid "Disable optimizations observable by IEEE signaling NaNs" msgstr "" -#: common.opt:1706 +#: common.opt:1732 msgid "" "Disable floating point optimizations that ignore the IEEE signedness of zero" msgstr "" -#: common.opt:1710 +#: common.opt:1736 msgid "Convert floating point constants to single precision constants" msgstr "" -#: common.opt:1714 +#: common.opt:1740 msgid "Split lifetimes of induction variables when loops are unrolled" msgstr "" -#: common.opt:1718 +#: common.opt:1744 msgid "Generate discontiguous stack frames" msgstr "" -#: common.opt:1722 +#: common.opt:1748 msgid "Split wide types into independent registers" msgstr "" -#: common.opt:1726 +#: common.opt:1752 msgid "Apply variable expansion when loops are unrolled" msgstr "" -#: common.opt:1730 +#: common.opt:1756 msgid "" "-fstack-check=[no|generic|specific]\tInsert stack checking code into the " "program" msgstr "" -#: common.opt:1734 +#: common.opt:1760 msgid "" "Insert stack checking code into the program. Same as -fstack-check=specific" msgstr "" -#: common.opt:1741 +#: common.opt:1767 msgid "" "-fstack-limit-register=<register>\tTrap if the stack goes past <register>" msgstr "" -#: common.opt:1745 +#: common.opt:1771 msgid "-fstack-limit-symbol=<name>\tTrap if the stack goes past symbol <name>" msgstr "" -#: common.opt:1749 +#: common.opt:1775 msgid "Use propolice as a stack protection method" msgstr "" -#: common.opt:1753 +#: common.opt:1779 msgid "Use a stack protection method for every function" msgstr "" -#: common.opt:1757 +#: common.opt:1783 msgid "Output stack usage information on a per-function basis" msgstr "" -#: common.opt:1769 +#: common.opt:1795 msgid "Assume strict aliasing rules apply" msgstr "" -#: common.opt:1773 +#: common.opt:1799 msgid "Treat signed overflow as undefined" msgstr "" -#: common.opt:1777 +#: common.opt:1803 msgid "Check for syntax errors, then stop" msgstr "" -#: common.opt:1781 +#: common.opt:1807 msgid "Create data files needed by \"gcov\"" msgstr "" -#: common.opt:1785 +#: common.opt:1811 msgid "Perform jump threading optimizations" msgstr "" -#: common.opt:1789 +#: common.opt:1815 msgid "Report the time taken by each compiler pass" msgstr "" -#: common.opt:1793 +#: common.opt:1819 msgid "" "-ftls-model=[global-dynamic|local-dynamic|initial-exec|local-exec]\tSet the " "default thread-local storage code generation model" msgstr "" -#: common.opt:1796 +#: common.opt:1822 #, c-format msgid "unknown TLS model %qs" msgstr "" -#: common.opt:1812 +#: common.opt:1838 msgid "Reorder top level functions, variables, and asms" msgstr "" -#: common.opt:1816 +#: common.opt:1842 msgid "Perform superblock formation via tail duplication" msgstr "" -#: common.opt:1823 +#: common.opt:1849 msgid "Assume floating-point operations can trap" msgstr "" -#: common.opt:1827 +#: common.opt:1853 msgid "Trap for signed overflow in addition, subtraction and multiplication" msgstr "" -#: common.opt:1831 +#: common.opt:1857 msgid "Enable SSA-CCP optimization on trees" msgstr "" -#: common.opt:1835 +#: common.opt:1861 msgid "Enable SSA-BIT-CCP optimization on trees" msgstr "" -#: common.opt:1843 +#: common.opt:1869 msgid "Enable loop header copying on trees" msgstr "" -#: common.opt:1847 +#: common.opt:1873 msgid "Replace SSA temporaries with better names in copies" msgstr "" -#: common.opt:1851 +#: common.opt:1877 msgid "Enable copy propagation on trees" msgstr "" -#: common.opt:1859 +#: common.opt:1885 msgid "Transform condition stores into unconditional ones" msgstr "" -#: common.opt:1863 +#: common.opt:1889 msgid "Perform conversions of switch initializations." msgstr "" -#: common.opt:1867 +#: common.opt:1893 msgid "Enable SSA dead code elimination optimization on trees" msgstr "" -#: common.opt:1871 +#: common.opt:1897 msgid "Enable dominator optimizations" msgstr "" -#: common.opt:1875 +#: common.opt:1901 msgid "Enable dead store elimination" msgstr "" -#: common.opt:1879 +#: common.opt:1905 msgid "Enable forward propagation on trees" msgstr "" -#: common.opt:1883 +#: common.opt:1909 msgid "Enable Full Redundancy Elimination (FRE) on trees" msgstr "" -#: common.opt:1887 +#: common.opt:1913 msgid "Enable loop distribution on trees" msgstr "" -#: common.opt:1891 +#: common.opt:1917 msgid "Enable loop distribution for patterns transformed into a library call" msgstr "" -#: common.opt:1895 +#: common.opt:1921 msgid "Enable loop invariant motion on trees" msgstr "" -#: common.opt:1899 -msgid "Enable linear loop transforms on trees" +#: common.opt:1925 +msgid "Enable loop interchange transforms. Same as -floop-interchange" msgstr "" -#: common.opt:1903 +#: common.opt:1929 msgid "Create canonical induction variables in loops" msgstr "" -#: common.opt:1907 +#: common.opt:1933 msgid "Enable loop optimizations on tree level" msgstr "" -#: common.opt:1911 +#: common.opt:1937 msgid "Enable automatic parallelization of loops" msgstr "" -#: common.opt:1915 +#: common.opt:1941 msgid "Enable hoisting loads from conditional pointers." msgstr "" -#: common.opt:1919 +#: common.opt:1945 msgid "Enable SSA-PRE optimization on trees" msgstr "" -#: common.opt:1923 +#: common.opt:1949 msgid "Perform function-local points-to analysis on trees." msgstr "" -#: common.opt:1927 +#: common.opt:1953 msgid "Enable reassociation on tree level" msgstr "" -#: common.opt:1935 +#: common.opt:1961 msgid "Enable SSA code sinking on trees" msgstr "" -#: common.opt:1939 +#: common.opt:1965 msgid "Perform scalar replacement of aggregates" msgstr "" -#: common.opt:1943 +#: common.opt:1969 msgid "Replace temporary expressions in the SSA->normal pass" msgstr "" -#: common.opt:1947 +#: common.opt:1973 msgid "Perform live range splitting during the SSA->normal pass" msgstr "" -#: common.opt:1951 +#: common.opt:1977 msgid "Perform Value Range Propagation on trees" msgstr "" -#: common.opt:1955 +#: common.opt:1981 msgid "Compile whole compilation unit at a time" msgstr "" -#: common.opt:1959 +#: common.opt:1985 msgid "Perform loop unrolling when iteration count is known" msgstr "" -#: common.opt:1963 +#: common.opt:1989 msgid "Perform loop unrolling for all loops" msgstr "" -#: common.opt:1970 +#: common.opt:1996 msgid "Allow loop optimizations to assume that the loops behave in normal way" msgstr "" -#: common.opt:1974 +#: common.opt:2000 msgid "Allow optimization for floating-point arithmetic which may change the" msgstr "" -#: common.opt:1979 +#: common.opt:2005 msgid "Same as -fassociative-math for expressions which include division." msgstr "" -#: common.opt:1987 +#: common.opt:2013 msgid "Allow math optimizations that may violate IEEE or ISO standards" msgstr "" -#: common.opt:1991 +#: common.opt:2017 msgid "Perform loop unswitching" msgstr "" -#: common.opt:1995 +#: common.opt:2021 msgid "Just generate unwind tables for exception handling" msgstr "" -#: common.opt:2007 +#: common.opt:2033 msgid "Perform variable tracking" msgstr "" -#: common.opt:2015 +#: common.opt:2041 msgid "Perform variable tracking by annotating assignments" msgstr "" -#: common.opt:2021 +#: common.opt:2047 msgid "Toggle -fvar-tracking-assignments" msgstr "" -#: common.opt:2025 +#: common.opt:2051 msgid "Perform variable tracking and also tag variables that are uninitialized" msgstr "" -#: common.opt:2029 +#: common.opt:2055 msgid "Enable loop vectorization on trees" msgstr "" -#: common.opt:2033 +#: common.opt:2059 msgid "Enable basic block vectorization (SLP) on trees" msgstr "" -#: common.opt:2037 +#: common.opt:2063 msgid "Enable use of cost model in vectorization" msgstr "" -#: common.opt:2041 +#: common.opt:2067 msgid "Enable loop versioning when doing loop vectorization on trees" msgstr "" -#: common.opt:2045 +#: common.opt:2071 msgid "" "-ftree-vectorizer-verbose=<number>\tSet the verbosity level of the vectorizer" msgstr "" -#: common.opt:2049 +#: common.opt:2075 msgid "Enable copy propagation of scalar-evolution information." msgstr "" -#: common.opt:2059 +#: common.opt:2085 msgid "Add extra commentary to assembler output" msgstr "" -#: common.opt:2063 +#: common.opt:2089 msgid "" "-fvisibility=[default|internal|hidden|protected]\tSet the default symbol " "visibility" msgstr "" -#: common.opt:2066 +#: common.opt:2092 #, c-format msgid "unrecognized visibility value %qs" msgstr "" -#: common.opt:2082 +#: common.opt:2108 msgid "Use expression value profiles in optimizations" msgstr "" -#: common.opt:2086 +#: common.opt:2112 msgid "Construct webs and split unrelated uses of single variable" msgstr "" -#: common.opt:2090 +#: common.opt:2116 msgid "Enable conditional dead code elimination for builtin calls" msgstr "" -#: common.opt:2094 +#: common.opt:2120 msgid "Perform whole program optimizations" msgstr "" -#: common.opt:2098 +#: common.opt:2124 msgid "Assume signed arithmetic overflow wraps around" msgstr "" -#: common.opt:2102 +#: common.opt:2128 msgid "Put zero initialized data in the bss section" msgstr "" -#: common.opt:2106 +#: common.opt:2132 msgid "Generate debug information in default format" msgstr "" -#: common.opt:2110 +#: common.opt:2136 msgid "Generate debug information in COFF format" msgstr "" -#: common.opt:2114 +#: common.opt:2140 msgid "Generate debug information in DWARF v2 (or later) format" msgstr "" -#: common.opt:2118 +#: common.opt:2144 msgid "Generate debug information in default extended format" msgstr "" -#: common.opt:2122 +#: common.opt:2148 msgid "Generate debug information in STABS format" msgstr "" -#: common.opt:2126 +#: common.opt:2152 msgid "Generate debug information in extended STABS format" msgstr "" -#: common.opt:2130 +#: common.opt:2156 msgid "Emit DWARF additions beyond selected version" msgstr "" -#: common.opt:2134 +#: common.opt:2160 msgid "Don't emit DWARF additions beyond selected version" msgstr "" -#: common.opt:2138 +#: common.opt:2164 msgid "Toggle debug information generation" msgstr "" -#: common.opt:2142 +#: common.opt:2168 msgid "Generate debug information in VMS format" msgstr "" -#: common.opt:2146 +#: common.opt:2172 msgid "Generate debug information in XCOFF format" msgstr "" -#: common.opt:2150 +#: common.opt:2176 msgid "Generate debug information in extended XCOFF format" msgstr "" -#: common.opt:2157 +#: common.opt:2183 msgid "-iplugindir=<dir>\tSet <dir> to be the default plugin directory" msgstr "" -#: common.opt:2176 +#: common.opt:2205 msgid "-o <file>\tPlace output into <file>" msgstr "" -#: common.opt:2180 +#: common.opt:2209 msgid "Enable function profiling" msgstr "" -#: common.opt:2187 +#: common.opt:2216 msgid "Issue warnings needed for strict compliance to the standard" msgstr "" -#: common.opt:2191 +#: common.opt:2220 msgid "Like -pedantic but issue them as errors" msgstr "" -#: common.opt:2228 +#: common.opt:2257 msgid "Do not display functions compiled or elapsed time" msgstr "" -#: common.opt:2260 +#: common.opt:2289 msgid "Enable verbose output" msgstr "" -#: common.opt:2264 +#: common.opt:2293 msgid "Display the compiler's version" msgstr "" -#: common.opt:2268 +#: common.opt:2297 msgid "Suppress warnings" msgstr "" -#: common.opt:2278 +#: common.opt:2307 msgid "Create a shared library" msgstr "" -#: common.opt:2311 +#: common.opt:2340 msgid "Create a position independent executable" msgstr "" -#: go/gofrontend/expressions.cc:876 +#: go/gofrontend/expressions.cc:882 msgid "invalid use of type" msgstr "" -#: go/gofrontend/expressions.cc:1974 go/gofrontend/expressions.cc:2628 +#: go/gofrontend/expressions.cc:2008 go/gofrontend/expressions.cc:2706 msgid "floating point constant truncated to integer" msgstr "" -#: go/gofrontend/expressions.cc:2533 go/gofrontend/expressions.cc:2606 +#: go/gofrontend/expressions.cc:2586 go/gofrontend/expressions.cc:2656 +#: go/gofrontend/expressions.cc:2672 msgid "constant refers to itself" msgstr "" -#: go/gofrontend/expressions.cc:3962 +#: go/gofrontend/expressions.cc:4063 msgid "expected numeric type" msgstr "" -#: go/gofrontend/expressions.cc:3969 +#: go/gofrontend/expressions.cc:4070 msgid "expected integer or boolean type" msgstr "" -#: go/gofrontend/expressions.cc:3974 +#: go/gofrontend/expressions.cc:4075 msgid "invalid operand for unary %<&%>" msgstr "" -#: go/gofrontend/expressions.cc:3982 +#: go/gofrontend/expressions.cc:4083 msgid "expected pointer" msgstr "" -#: go/gofrontend/expressions.cc:5608 go/gofrontend/expressions.cc:5624 +#: go/gofrontend/expressions.cc:5476 go/gofrontend/expressions.cc:5727 +#: go/gofrontend/expressions.cc:5743 msgid "incompatible types in binary expression" msgstr "" -#: go/gofrontend/expressions.cc:5637 +#: go/gofrontend/expressions.cc:5756 msgid "shift of non-integer operand" msgstr "" -#: go/gofrontend/expressions.cc:5642 +#: go/gofrontend/expressions.cc:5761 msgid "shift count not unsigned integer" msgstr "" -#: go/gofrontend/expressions.cc:5651 +#: go/gofrontend/expressions.cc:5770 msgid "negative shift count" msgstr "" -#: go/gofrontend/expressions.cc:6299 +#: go/gofrontend/expressions.cc:6453 msgid "object is not a method" msgstr "" -#: go/gofrontend/expressions.cc:6308 +#: go/gofrontend/expressions.cc:6462 msgid "method type does not match object type" msgstr "" -#: go/gofrontend/expressions.cc:6552 go/gofrontend/expressions.cc:6571 -#: go/gofrontend/expressions.cc:7192 go/gofrontend/expressions.cc:7331 -#: go/gofrontend/expressions.cc:7374 go/gofrontend/expressions.cc:7409 -#: go/gofrontend/expressions.cc:8468 go/gofrontend/expressions.cc:8489 +#: go/gofrontend/expressions.cc:6710 go/gofrontend/expressions.cc:6729 +#: go/gofrontend/expressions.cc:7368 go/gofrontend/expressions.cc:7507 +#: go/gofrontend/expressions.cc:7550 go/gofrontend/expressions.cc:7588 +#: go/gofrontend/expressions.cc:8623 go/gofrontend/expressions.cc:8644 msgid "not enough arguments" msgstr "" -#: go/gofrontend/expressions.cc:6554 go/gofrontend/expressions.cc:7197 -#: go/gofrontend/expressions.cc:7314 go/gofrontend/expressions.cc:7336 -#: go/gofrontend/expressions.cc:7411 go/gofrontend/expressions.cc:8157 -#: go/gofrontend/expressions.cc:8471 go/gofrontend/expressions.cc:8482 +#: go/gofrontend/expressions.cc:6712 go/gofrontend/expressions.cc:7373 +#: go/gofrontend/expressions.cc:7490 go/gofrontend/expressions.cc:7512 +#: go/gofrontend/expressions.cc:7555 go/gofrontend/expressions.cc:7590 +#: go/gofrontend/expressions.cc:8377 go/gofrontend/expressions.cc:8626 +#: go/gofrontend/expressions.cc:8637 msgid "too many arguments" msgstr "" -#: go/gofrontend/expressions.cc:7239 +#: go/gofrontend/expressions.cc:7415 msgid "argument must be array or slice or channel" msgstr "" -#: go/gofrontend/expressions.cc:7249 +#: go/gofrontend/expressions.cc:7425 msgid "argument must be string or array or slice or map or channel" msgstr "" -#: go/gofrontend/expressions.cc:7290 +#: go/gofrontend/expressions.cc:7466 msgid "unsupported argument type to builtin function" msgstr "" -#: go/gofrontend/expressions.cc:7302 +#: go/gofrontend/expressions.cc:7478 msgid "argument must be channel" msgstr "" -#: go/gofrontend/expressions.cc:7322 +#: go/gofrontend/expressions.cc:7498 msgid "argument must be a field reference" msgstr "" -#: go/gofrontend/expressions.cc:7349 +#: go/gofrontend/expressions.cc:7525 msgid "left argument must be a slice" msgstr "" -#: go/gofrontend/expressions.cc:7360 +#: go/gofrontend/expressions.cc:7536 msgid "right argument must be a slice or a string" msgstr "" -#: go/gofrontend/expressions.cc:7365 +#: go/gofrontend/expressions.cc:7541 msgid "element types must be the same" msgstr "" -#: go/gofrontend/expressions.cc:7384 +#: go/gofrontend/expressions.cc:7563 msgid "arguments 1 and 2 have different types" msgstr "" -#: go/gofrontend/expressions.cc:7401 +#: go/gofrontend/expressions.cc:7580 msgid "argument must have complex type" msgstr "" -#: go/gofrontend/expressions.cc:7419 -msgid "cmplx arguments must have identical types" +#: go/gofrontend/expressions.cc:7598 +msgid "complex arguments must have identical types" msgstr "" -#: go/gofrontend/expressions.cc:7421 -msgid "cmplx arguments must have floating-point type" +#: go/gofrontend/expressions.cc:7600 +msgid "complex arguments must have floating-point type" msgstr "" -#: go/gofrontend/expressions.cc:8425 +#: go/gofrontend/expressions.cc:8580 msgid "expected function" msgstr "" -#: go/gofrontend/expressions.cc:8436 +#: go/gofrontend/expressions.cc:8591 msgid "method call without object" msgstr "" -#: go/gofrontend/expressions.cc:8449 +#: go/gofrontend/expressions.cc:8604 msgid "incompatible type for receiver" msgstr "" -#: go/gofrontend/expressions.cc:8827 +#: go/gofrontend/expressions.cc:9002 go/gofrontend/expressions.cc:9015 msgid "number of results does not match number of values" msgstr "" -#: go/gofrontend/expressions.cc:9071 go/gofrontend/expressions.cc:9443 +#: go/gofrontend/expressions.cc:9266 go/gofrontend/expressions.cc:9645 msgid "index must be integer" msgstr "" -#: go/gofrontend/expressions.cc:9075 go/gofrontend/expressions.cc:9447 +#: go/gofrontend/expressions.cc:9270 go/gofrontend/expressions.cc:9649 msgid "slice end must be integer" msgstr "" -#: go/gofrontend/expressions.cc:9126 +#: go/gofrontend/expressions.cc:9325 msgid "array is not addressable" msgstr "" -#: go/gofrontend/expressions.cc:9654 +#: go/gofrontend/expressions.cc:9864 msgid "incompatible type for map index" msgstr "" -#: go/gofrontend/expressions.cc:9933 +#: go/gofrontend/expressions.cc:10183 msgid "expected interface or pointer to interface" msgstr "" -#: go/gofrontend/expressions.cc:10231 +#: go/gofrontend/expressions.cc:10488 msgid "invalid new of function type" msgstr "" -#: go/gofrontend/expressions.cc:10332 +#: go/gofrontend/expressions.cc:10593 msgid "invalid type for make function" msgstr "" -#: go/gofrontend/expressions.cc:10487 +#: go/gofrontend/expressions.cc:10752 msgid "too many expressions for struct" msgstr "" -#: go/gofrontend/expressions.cc:10500 +#: go/gofrontend/expressions.cc:10765 msgid "too few expressions for struct" msgstr "" -#: go/gofrontend/expressions.cc:10764 +#: go/gofrontend/expressions.cc:11029 msgid "too many elements in composite literal" msgstr "" -#: go/gofrontend/expressions.cc:11828 go/gofrontend/expressions.cc:11836 +#: go/gofrontend/expressions.cc:12141 go/gofrontend/expressions.cc:12149 msgid "invalid unsafe.Pointer conversion" msgstr "" -#: go/gofrontend/expressions.cc:11841 go/gofrontend/statements.cc:1312 +#: go/gofrontend/expressions.cc:12154 go/gofrontend/statements.cc:1349 msgid "type assertion only valid for interface types" msgstr "" -#: go/gofrontend/expressions.cc:11853 +#: go/gofrontend/expressions.cc:12166 msgid "impossible type assertion: type does not implement interface" msgstr "" -#: go/gofrontend/expressions.cc:12009 go/gofrontend/statements.cc:1163 +#: go/gofrontend/expressions.cc:12322 go/gofrontend/statements.cc:1200 msgid "expected channel" msgstr "" -#: go/gofrontend/expressions.cc:12014 go/gofrontend/statements.cc:1168 +#: go/gofrontend/expressions.cc:12327 go/gofrontend/statements.cc:1205 msgid "invalid receive on send-only channel" msgstr "" -#: go/gofrontend/expressions.cc:12101 +#: go/gofrontend/expressions.cc:12421 msgid "incompatible types in send" msgstr "" -#: go/gofrontend/expressions.cc:12106 +#: go/gofrontend/expressions.cc:12426 msgid "invalid send on receive-only channel" msgstr "" -#: go/gofrontend/statements.cc:488 +#: go/gofrontend/statements.cc:521 msgid "invalid left hand side of assignment" msgstr "" -#: go/gofrontend/statements.cc:897 +#: go/gofrontend/statements.cc:930 msgid "expected map index on right hand side" msgstr "" -#: go/gofrontend/statements.cc:1041 +#: go/gofrontend/statements.cc:1076 msgid "expected map index on left hand side" msgstr "" -#: go/gofrontend/statements.cc:1765 +#: go/gofrontend/statements.cc:1810 msgid "no object for method call" msgstr "" -#: go/gofrontend/statements.cc:2518 +#: go/gofrontend/statements.cc:2580 msgid "return with value in function with no return type" msgstr "" -#: go/gofrontend/statements.cc:2531 +#: go/gofrontend/statements.cc:2593 msgid "too many values in return statement" msgstr "" -#: go/gofrontend/statements.cc:2560 +#: go/gofrontend/statements.cc:2622 msgid "not enough values in return statement" msgstr "" -#: go/gofrontend/statements.cc:2932 +#: go/gofrontend/statements.cc:2998 msgid "expected boolean expression" msgstr "" -#: go/gofrontend/statements.cc:4517 +#: go/gofrontend/statements.cc:4612 msgid "too many variables for range clause with channel" msgstr "" -#: go/gofrontend/statements.cc:4524 +#: go/gofrontend/statements.cc:4619 msgid "range clause must have array, slice, setring, map, or channel type" msgstr "" -#: go/gofrontend/types.cc:559 +#: go/gofrontend/types.cc:575 msgid "need explicit conversion" msgstr "" -#: go/gofrontend/types.cc:561 +#: go/gofrontend/types.cc:577 msgid "multiple value function call in single value context" msgstr "" -#: go/gofrontend/types.cc:569 +#: go/gofrontend/types.cc:585 #, c-format msgid "cannot use type %s as type %s" msgstr "" -#: go/gofrontend/types.cc:2432 +#: go/gofrontend/types.cc:2479 msgid "different receiver types" msgstr "" -#: go/gofrontend/types.cc:2452 go/gofrontend/types.cc:2465 -#: go/gofrontend/types.cc:2480 +#: go/gofrontend/types.cc:2499 go/gofrontend/types.cc:2512 +#: go/gofrontend/types.cc:2527 msgid "different number of parameters" msgstr "" -#: go/gofrontend/types.cc:2473 +#: go/gofrontend/types.cc:2520 msgid "different parameter types" msgstr "" -#: go/gofrontend/types.cc:2488 +#: go/gofrontend/types.cc:2535 msgid "different varargs" msgstr "" -#: go/gofrontend/types.cc:2497 go/gofrontend/types.cc:2510 -#: go/gofrontend/types.cc:2525 +#: go/gofrontend/types.cc:2544 go/gofrontend/types.cc:2557 +#: go/gofrontend/types.cc:2572 msgid "different number of results" msgstr "" -#: go/gofrontend/types.cc:2518 +#: go/gofrontend/types.cc:2565 msgid "different result types" msgstr "" -#: go/gofrontend/types.cc:3500 +#: go/gofrontend/types.cc:3546 #, c-format msgid "implicit assignment of %s%s%s hidden field %s%s%s" msgstr "" -#: go/gofrontend/types.cc:4313 +#: go/gofrontend/types.cc:4386 msgid "bad length when making slice" msgstr "" -#: go/gofrontend/types.cc:4319 +#: go/gofrontend/types.cc:4392 msgid "bad capacity when making slice" msgstr "" -#: go/gofrontend/types.cc:4981 +#: go/gofrontend/types.cc:5090 msgid "bad size when making map" msgstr "" -#: go/gofrontend/types.cc:5266 +#: go/gofrontend/types.cc:5375 msgid "bad buffer size when making channel" msgstr "" -#: go/gofrontend/types.cc:5714 +#: go/gofrontend/types.cc:5870 #, c-format msgid "need explicit conversion; missing method %s%s%s" msgstr "" -#: go/gofrontend/types.cc:5731 go/gofrontend/types.cc:5866 +#: go/gofrontend/types.cc:5887 go/gofrontend/types.cc:6022 #, c-format msgid "incompatible type for method %s%s%s" msgstr "" -#: go/gofrontend/types.cc:5735 go/gofrontend/types.cc:5870 +#: go/gofrontend/types.cc:5891 go/gofrontend/types.cc:6026 #, c-format msgid "incompatible type for method %s%s%s (%s)" msgstr "" -#: go/gofrontend/types.cc:5807 go/gofrontend/types.cc:5820 +#: go/gofrontend/types.cc:5963 go/gofrontend/types.cc:5976 msgid "pointer to interface type has no methods" msgstr "" -#: go/gofrontend/types.cc:5809 go/gofrontend/types.cc:5822 +#: go/gofrontend/types.cc:5965 go/gofrontend/types.cc:5978 msgid "type has no methods" msgstr "" -#: go/gofrontend/types.cc:5843 +#: go/gofrontend/types.cc:5999 #, c-format msgid "ambiguous method %s%s%s" msgstr "" -#: go/gofrontend/types.cc:5846 +#: go/gofrontend/types.cc:6002 #, c-format msgid "missing method %s%s%s" msgstr "" -#: go/gofrontend/types.cc:5886 +#: go/gofrontend/types.cc:6042 #, c-format msgid "method %s%s%s requires a pointer" msgstr "" -#: attribs.c:306 objc/objc-act.c:7712 +#. Warn about and ignore all others for now, but store them. +#: attribs.c:306 objc/objc-act.c:4799 objc/objc-act.c:6692 +#: objc/objc-act.c:7878 objc/objc-act.c:7933 #, gcc-internal-format msgid "%qE attribute directive ignored" msgstr "" @@ -11813,135 +11937,135 @@ msgid "" "branch target register load optimization is not intended to be run twice" msgstr "" -#: builtins.c:554 +#: builtins.c:551 #, gcc-internal-format msgid "offset outside bounds of constant string" msgstr "" -#: builtins.c:1118 +#: builtins.c:1116 #, gcc-internal-format msgid "second argument to %<__builtin_prefetch%> must be a constant" msgstr "" -#: builtins.c:1125 +#: builtins.c:1123 #, gcc-internal-format msgid "invalid second argument to %<__builtin_prefetch%>; using zero" msgstr "" -#: builtins.c:1133 +#: builtins.c:1131 #, gcc-internal-format msgid "third argument to %<__builtin_prefetch%> must be a constant" msgstr "" -#: builtins.c:1140 +#: builtins.c:1138 #, gcc-internal-format msgid "invalid third argument to %<__builtin_prefetch%>; using zero" msgstr "" -#: builtins.c:4665 gimplify.c:2328 +#: builtins.c:4663 gimplify.c:2328 #, gcc-internal-format msgid "too few arguments to function %<va_start%>" msgstr "" -#: builtins.c:4827 +#: builtins.c:4825 #, gcc-internal-format msgid "first argument to %<va_arg%> not of type %<va_list%>" msgstr "" -#: builtins.c:4843 +#: builtins.c:4841 #, gcc-internal-format msgid "%qT is promoted to %qT when passed through %<...%>" msgstr "" -#: builtins.c:4848 +#: builtins.c:4846 #, gcc-internal-format msgid "(so you should pass %qT not %qT to %<va_arg%>)" msgstr "" #. We can, however, treat "undefined" any way we please. #. Call abort to encourage the user to fix the program. -#: builtins.c:4855 c-typeck.c:2775 +#: builtins.c:4853 c-typeck.c:2775 #, gcc-internal-format msgid "if this code is reached, the program will abort" msgstr "" -#: builtins.c:4982 +#: builtins.c:4980 #, gcc-internal-format msgid "invalid argument to %<__builtin_frame_address%>" msgstr "" -#: builtins.c:4984 +#: builtins.c:4982 #, gcc-internal-format msgid "invalid argument to %<__builtin_return_address%>" msgstr "" -#: builtins.c:4997 +#: builtins.c:4995 #, gcc-internal-format msgid "unsupported argument to %<__builtin_frame_address%>" msgstr "" -#: builtins.c:4999 +#: builtins.c:4997 #, gcc-internal-format msgid "unsupported argument to %<__builtin_return_address%>" msgstr "" -#: builtins.c:5234 +#: builtins.c:5232 #, gcc-internal-format msgid "both arguments to %<__builtin___clear_cache%> must be pointers" msgstr "" -#: builtins.c:5332 +#: builtins.c:5330 #, gcc-internal-format msgid "trampoline generated for nested function %qD" msgstr "" -#: builtins.c:5609 builtins.c:5623 +#: builtins.c:5607 builtins.c:5621 #, gcc-internal-format msgid "%qD changed semantics in GCC 4.4" msgstr "" #. All valid uses of __builtin_va_arg_pack () are removed during #. inlining. -#: builtins.c:6018 expr.c:9274 +#: builtins.c:6016 expr.c:9297 #, gcc-internal-format msgid "%Kinvalid use of %<__builtin_va_arg_pack ()%>" msgstr "" #. All valid uses of __builtin_va_arg_pack_len () are removed during #. inlining. -#: builtins.c:6024 +#: builtins.c:6022 #, gcc-internal-format msgid "%Kinvalid use of %<__builtin_va_arg_pack_len ()%>" msgstr "" -#: builtins.c:6254 +#: builtins.c:6252 #, gcc-internal-format msgid "%<__builtin_longjmp%> second argument must be 1" msgstr "" -#: builtins.c:6849 +#: builtins.c:6847 #, gcc-internal-format msgid "target format does not support infinity" msgstr "" -#: builtins.c:11753 +#: builtins.c:11751 #, gcc-internal-format msgid "%<va_start%> used in function with fixed args" msgstr "" -#: builtins.c:11761 +#: builtins.c:11759 #, gcc-internal-format msgid "wrong number of arguments to function %<va_start%>" msgstr "" #. Evidently an out of date version of <stdarg.h>; can't validate #. va_start's second argument, but can still work as intended. -#: builtins.c:11774 +#: builtins.c:11772 #, gcc-internal-format msgid "%<__builtin_next_arg%> called without an argument" msgstr "" -#: builtins.c:11779 +#: builtins.c:11777 #, gcc-internal-format msgid "wrong number of arguments to function %<__builtin_next_arg%>" msgstr "" @@ -11951,44 +12075,44 @@ msgstr "" #. argument. We just warn and set the arg to be the last #. argument so that we will get wrong-code because of #. it. -#: builtins.c:11809 +#: builtins.c:11807 #, gcc-internal-format msgid "second parameter of %<va_start%> not last named argument" msgstr "" -#: builtins.c:11819 +#: builtins.c:11817 #, gcc-internal-format msgid "" "undefined behaviour when second parameter of %<va_start%> is declared with " "%<register%> storage" msgstr "" -#: builtins.c:11935 +#: builtins.c:11933 #, gcc-internal-format msgid "%Kfirst argument of %D must be a pointer, second integer constant" msgstr "" -#: builtins.c:11948 +#: builtins.c:11946 #, gcc-internal-format msgid "%Klast argument of %D is not integer constant between 0 and 3" msgstr "" -#: builtins.c:11993 builtins.c:12145 builtins.c:12202 +#: builtins.c:11991 builtins.c:12143 builtins.c:12200 #, gcc-internal-format msgid "%Kcall to %D will always overflow destination buffer" msgstr "" -#: builtins.c:12135 +#: builtins.c:12133 #, gcc-internal-format msgid "%Kcall to %D might overflow destination buffer" msgstr "" -#: builtins.c:12223 +#: builtins.c:12221 #, gcc-internal-format msgid "%Kattempt to free a non-heap object %qD" msgstr "" -#: builtins.c:12226 +#: builtins.c:12224 #, gcc-internal-format msgid "%Kattempt to free a non-heap object" msgstr "" @@ -11998,142 +12122,142 @@ msgstr "" #. an unprototyped function, it is compile-time undefined; #. making it a constraint in that case was rejected in #. DR#252. -#: c-convert.c:101 c-typeck.c:1976 c-typeck.c:5222 cp/typeck.c:1826 -#: cp/typeck.c:6521 cp/typeck.c:7200 fortran/convert.c:88 +#: c-convert.c:101 c-typeck.c:1976 c-typeck.c:5224 c-typeck.c:10274 +#: cp/typeck.c:1826 cp/typeck.c:6521 cp/typeck.c:7200 fortran/convert.c:88 #, gcc-internal-format msgid "void value not ignored as it ought to be" msgstr "" -#: c-convert.c:155 fortran/convert.c:122 java/typeck.c:150 +#: c-convert.c:181 fortran/convert.c:122 java/typeck.c:150 #, gcc-internal-format msgid "conversion to non-scalar type requested" msgstr "" -#: c-decl.c:685 +#: c-decl.c:720 #, gcc-internal-format msgid "array %q+D assumed to have one element" msgstr "" -#: c-decl.c:726 +#: c-decl.c:761 #, gcc-internal-format msgid "%qD is static but used in inline function %qD which is not static" msgstr "" -#: c-decl.c:731 +#: c-decl.c:766 #, gcc-internal-format msgid "%q+D is static but declared in inline function %qD which is not static" msgstr "" -#: c-decl.c:943 +#: c-decl.c:953 #, gcc-internal-format, gfc-internal-format msgid "GCC supports only %u nested scopes" msgstr "" -#: c-decl.c:1086 cp/decl.c:372 +#: c-decl.c:1105 cp/decl.c:372 #, gcc-internal-format msgid "label %q+D used but not defined" msgstr "" -#: c-decl.c:1131 +#: c-decl.c:1150 #, gcc-internal-format msgid "nested function %q+D declared but never defined" msgstr "" -#: c-decl.c:1143 +#: c-decl.c:1162 #, gcc-internal-format msgid "inline function %q+D declared but never defined" msgstr "" -#: c-decl.c:1160 cp/decl.c:627 +#: c-decl.c:1179 cp/decl.c:627 #, gcc-internal-format msgid "unused variable %q+D" msgstr "" -#: c-decl.c:1164 +#: c-decl.c:1183 #, gcc-internal-format msgid "variable %qD set but not used" msgstr "" -#: c-decl.c:1169 +#: c-decl.c:1188 #, gcc-internal-format msgid "type of array %q+D completed incompatibly with implicit initialization" msgstr "" -#: c-decl.c:1448 c-decl.c:5756 c-decl.c:6553 c-decl.c:7260 +#: c-decl.c:1467 c-decl.c:5784 c-decl.c:6581 c-decl.c:7286 #, gcc-internal-format msgid "originally defined here" msgstr "" -#: c-decl.c:1519 +#: c-decl.c:1537 #, gcc-internal-format msgid "" "a parameter list with an ellipsis can%'t match an empty parameter name list " "declaration" msgstr "" -#: c-decl.c:1526 +#: c-decl.c:1544 #, gcc-internal-format msgid "" "an argument type that has a default promotion can%'t match an empty " "parameter name list declaration" msgstr "" -#: c-decl.c:1567 +#: c-decl.c:1585 #, gcc-internal-format msgid "" "prototype for %q+D declares more arguments than previous old-style definition" msgstr "" -#: c-decl.c:1573 +#: c-decl.c:1591 #, gcc-internal-format msgid "" "prototype for %q+D declares fewer arguments than previous old-style " "definition" msgstr "" -#: c-decl.c:1582 +#: c-decl.c:1600 #, gcc-internal-format msgid "prototype for %q+D declares argument %d with incompatible type" msgstr "" #. If we get here, no errors were found, but do issue a warning #. for this poor-style construct. -#: c-decl.c:1595 +#: c-decl.c:1613 #, gcc-internal-format msgid "prototype for %q+D follows non-prototype definition" msgstr "" -#: c-decl.c:1610 +#: c-decl.c:1628 #, gcc-internal-format msgid "previous definition of %q+D was here" msgstr "" -#: c-decl.c:1612 +#: c-decl.c:1630 #, gcc-internal-format msgid "previous implicit declaration of %q+D was here" msgstr "" -#: c-decl.c:1614 +#: c-decl.c:1632 #, gcc-internal-format msgid "previous declaration of %q+D was here" msgstr "" -#: c-decl.c:1654 +#: c-decl.c:1672 #, gcc-internal-format msgid "%q+D redeclared as different kind of symbol" msgstr "" -#: c-decl.c:1658 +#: c-decl.c:1676 #, gcc-internal-format msgid "built-in function %q+D declared as non-function" msgstr "" -#: c-decl.c:1661 c-decl.c:1838 c-decl.c:2528 +#: c-decl.c:1679 c-decl.c:1856 c-decl.c:2546 #, gcc-internal-format msgid "declaration of %q+D shadows a built-in function" msgstr "" -#: c-decl.c:1670 +#: c-decl.c:1688 #, gcc-internal-format msgid "redeclaration of enumerator %q+D" msgstr "" @@ -12141,42 +12265,42 @@ msgstr "" #. If types don't match for a built-in, throw away the #. built-in. No point in calling locate_old_decl here, it #. won't print anything. -#: c-decl.c:1691 +#: c-decl.c:1709 #, gcc-internal-format msgid "conflicting types for built-in function %q+D" msgstr "" -#: c-decl.c:1716 c-decl.c:1729 c-decl.c:1765 +#: c-decl.c:1734 c-decl.c:1747 c-decl.c:1783 #, gcc-internal-format msgid "conflicting types for %q+D" msgstr "" -#: c-decl.c:1745 +#: c-decl.c:1763 #, gcc-internal-format msgid "conflicting named address spaces (generic vs %s) for %q+D" msgstr "" -#: c-decl.c:1749 +#: c-decl.c:1767 #, gcc-internal-format msgid "conflicting named address spaces (%s vs generic) for %q+D" msgstr "" -#: c-decl.c:1753 +#: c-decl.c:1771 #, gcc-internal-format msgid "conflicting named address spaces (%s vs %s) for %q+D" msgstr "" -#: c-decl.c:1762 +#: c-decl.c:1780 #, gcc-internal-format msgid "conflicting type qualifiers for %q+D" msgstr "" -#: c-decl.c:1787 +#: c-decl.c:1805 #, gcc-internal-format msgid "redefinition of typedef %q+D with different type" msgstr "" -#: c-decl.c:1801 +#: c-decl.c:1819 #, gcc-internal-format msgid "redefinition of typedef %q+D" msgstr "" @@ -12185,283 +12309,283 @@ msgstr "" #. being the same cannot be determined at compile time; a #. warning that there may be one at runtime is considered #. appropriate (WG14 reflector message 11743, 8 May 2009). -#: c-decl.c:1810 +#: c-decl.c:1828 #, gcc-internal-format msgid "redefinition of typedef %q+D may be a constraint violation at runtime" msgstr "" -#: c-decl.c:1864 c-decl.c:1967 +#: c-decl.c:1882 c-decl.c:1985 #, gcc-internal-format msgid "redefinition of %q+D" msgstr "" -#: c-decl.c:1899 c-decl.c:2005 +#: c-decl.c:1917 c-decl.c:2023 #, gcc-internal-format msgid "static declaration of %q+D follows non-static declaration" msgstr "" -#: c-decl.c:1909 c-decl.c:1917 c-decl.c:1995 c-decl.c:2002 +#: c-decl.c:1927 c-decl.c:1935 c-decl.c:2013 c-decl.c:2020 #, gcc-internal-format msgid "non-static declaration of %q+D follows static declaration" msgstr "" -#: c-decl.c:1933 +#: c-decl.c:1951 #, gcc-internal-format msgid "%<gnu_inline%> attribute present on %q+D" msgstr "" -#: c-decl.c:1936 +#: c-decl.c:1954 #, gcc-internal-format msgid "but not here" msgstr "" -#: c-decl.c:1954 +#: c-decl.c:1972 #, gcc-internal-format msgid "thread-local declaration of %q+D follows non-thread-local declaration" msgstr "" -#: c-decl.c:1957 +#: c-decl.c:1975 #, gcc-internal-format msgid "non-thread-local declaration of %q+D follows thread-local declaration" msgstr "" -#: c-decl.c:1987 +#: c-decl.c:2005 #, gcc-internal-format msgid "extern declaration of %q+D follows declaration with no linkage" msgstr "" -#: c-decl.c:2023 +#: c-decl.c:2041 #, gcc-internal-format msgid "declaration of %q+D with no linkage follows extern declaration" msgstr "" -#: c-decl.c:2029 +#: c-decl.c:2047 #, gcc-internal-format msgid "redeclaration of %q+D with no linkage" msgstr "" -#: c-decl.c:2055 +#: c-decl.c:2073 #, gcc-internal-format msgid "" "redeclaration of %q+D with different visibility (old visibility preserved)" msgstr "" -#: c-decl.c:2066 +#: c-decl.c:2084 #, gcc-internal-format msgid "inline declaration of %qD follows declaration with attribute noinline" msgstr "" -#: c-decl.c:2073 +#: c-decl.c:2091 #, gcc-internal-format msgid "declaration of %q+D with attribute noinline follows inline declaration " msgstr "" -#: c-decl.c:2091 +#: c-decl.c:2109 #, gcc-internal-format msgid "redefinition of parameter %q+D" msgstr "" -#: c-decl.c:2118 +#: c-decl.c:2136 #, gcc-internal-format msgid "redundant redeclaration of %q+D" msgstr "" -#: c-decl.c:2515 +#: c-decl.c:2533 #, gcc-internal-format msgid "declaration of %q+D shadows previous non-variable" msgstr "" -#: c-decl.c:2520 +#: c-decl.c:2538 #, gcc-internal-format msgid "declaration of %q+D shadows a parameter" msgstr "" -#: c-decl.c:2523 +#: c-decl.c:2541 #, gcc-internal-format msgid "declaration of %q+D shadows a global declaration" msgstr "" -#: c-decl.c:2533 +#: c-decl.c:2551 #, gcc-internal-format msgid "declaration of %q+D shadows a previous local" msgstr "" -#: c-decl.c:2537 cp/name-lookup.c:1089 cp/name-lookup.c:1131 +#: c-decl.c:2555 cp/name-lookup.c:1089 cp/name-lookup.c:1131 #, gcc-internal-format msgid "shadowed declaration is here" msgstr "" -#: c-decl.c:2664 +#: c-decl.c:2682 #, gcc-internal-format msgid "nested extern declaration of %qD" msgstr "" -#: c-decl.c:2832 c-decl.c:2835 +#: c-decl.c:2850 c-decl.c:2853 #, gcc-internal-format msgid "implicit declaration of function %qE" msgstr "" -#: c-decl.c:2898 +#: c-decl.c:2916 #, gcc-internal-format msgid "incompatible implicit declaration of built-in function %qD" msgstr "" -#: c-decl.c:2907 +#: c-decl.c:2925 #, gcc-internal-format msgid "incompatible implicit declaration of function %qD" msgstr "" -#: c-decl.c:2960 +#: c-decl.c:2978 #, gcc-internal-format msgid "%qE undeclared here (not in a function)" msgstr "" -#: c-decl.c:2966 +#: c-decl.c:2984 #, gcc-internal-format msgid "%qE undeclared (first use in this function)" msgstr "" -#: c-decl.c:2969 +#: c-decl.c:2987 #, gcc-internal-format msgid "" "each undeclared identifier is reported only once for each function it " "appears in" msgstr "" -#: c-decl.c:3019 cp/decl.c:2529 +#: c-decl.c:3037 cp/decl.c:2533 #, gcc-internal-format msgid "label %qE referenced outside of any function" msgstr "" -#: c-decl.c:3055 +#: c-decl.c:3073 #, gcc-internal-format msgid "jump into scope of identifier with variably modified type" msgstr "" -#: c-decl.c:3058 +#: c-decl.c:3076 #, gcc-internal-format msgid "jump skips variable initialization" msgstr "" -#: c-decl.c:3059 c-decl.c:3115 c-decl.c:3198 +#: c-decl.c:3077 c-decl.c:3133 c-decl.c:3222 #, gcc-internal-format msgid "label %qD defined here" msgstr "" -#: c-decl.c:3060 c-decl.c:3322 +#: c-decl.c:3078 c-decl.c:3350 #, gcc-internal-format msgid "%qD declared here" msgstr "" -#: c-decl.c:3114 c-decl.c:3197 +#: c-decl.c:3132 c-decl.c:3221 #, gcc-internal-format msgid "jump into statement expression" msgstr "" -#: c-decl.c:3136 +#: c-decl.c:3154 #, gcc-internal-format msgid "duplicate label declaration %qE" msgstr "" -#: c-decl.c:3228 cp/decl.c:2839 +#: c-decl.c:3252 cp/decl.c:2843 #, gcc-internal-format msgid "duplicate label %qD" msgstr "" -#: c-decl.c:3259 +#: c-decl.c:3283 #, gcc-internal-format msgid "" "traditional C lacks a separate namespace for labels, identifier %qE conflicts" msgstr "" -#: c-decl.c:3320 +#: c-decl.c:3348 #, gcc-internal-format msgid "switch jumps over variable initialization" msgstr "" -#: c-decl.c:3321 c-decl.c:3332 +#: c-decl.c:3349 c-decl.c:3360 #, gcc-internal-format msgid "switch starts here" msgstr "" -#: c-decl.c:3331 +#: c-decl.c:3359 #, gcc-internal-format msgid "switch jumps into statement expression" msgstr "" -#: c-decl.c:3402 +#: c-decl.c:3430 #, gcc-internal-format msgid "%qE defined as wrong kind of tag" msgstr "" -#: c-decl.c:3624 c-typeck.c:10669 c-family/c-common.c:4025 +#: c-decl.c:3652 c-typeck.c:10675 c-family/c-common.c:4026 #, gcc-internal-format msgid "invalid use of %<restrict%>" msgstr "" -#: c-decl.c:3634 +#: c-decl.c:3662 #, gcc-internal-format msgid "unnamed struct/union that defines no instances" msgstr "" -#: c-decl.c:3644 +#: c-decl.c:3672 #, gcc-internal-format msgid "empty declaration with storage class specifier does not redeclare tag" msgstr "" -#: c-decl.c:3658 +#: c-decl.c:3686 #, gcc-internal-format msgid "empty declaration with type qualifier does not redeclare tag" msgstr "" -#: c-decl.c:3680 c-decl.c:3687 +#: c-decl.c:3708 c-decl.c:3715 #, gcc-internal-format msgid "useless type name in empty declaration" msgstr "" -#: c-decl.c:3695 +#: c-decl.c:3723 #, gcc-internal-format msgid "%<inline%> in empty declaration" msgstr "" -#: c-decl.c:3701 +#: c-decl.c:3729 #, gcc-internal-format msgid "%<auto%> in file-scope empty declaration" msgstr "" -#: c-decl.c:3707 +#: c-decl.c:3735 #, gcc-internal-format msgid "%<register%> in file-scope empty declaration" msgstr "" -#: c-decl.c:3713 +#: c-decl.c:3741 #, gcc-internal-format msgid "useless storage class specifier in empty declaration" msgstr "" -#: c-decl.c:3719 +#: c-decl.c:3747 #, gcc-internal-format msgid "useless %<__thread%> in empty declaration" msgstr "" -#: c-decl.c:3728 +#: c-decl.c:3756 #, gcc-internal-format msgid "useless type qualifier in empty declaration" msgstr "" -#: c-decl.c:3735 c-parser.c:1471 +#: c-decl.c:3763 c-parser.c:1467 #, gcc-internal-format msgid "empty declaration" msgstr "" -#: c-decl.c:3806 +#: c-decl.c:3834 #, gcc-internal-format msgid "" "ISO C90 does not support %<static%> or type qualifiers in parameter array " "declarators" msgstr "" -#: c-decl.c:3810 +#: c-decl.c:3838 #, gcc-internal-format msgid "ISO C90 does not support %<[*]%> array declarators" msgstr "" @@ -12469,28 +12593,28 @@ msgstr "" #. 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:3817 c-decl.c:6124 +#: c-decl.c:3845 c-decl.c:6152 #, gcc-internal-format msgid "%<[*]%> not allowed in other than function prototype scope" msgstr "" -#: c-decl.c:3930 +#: c-decl.c:3958 #, gcc-internal-format msgid "%q+D is usually a function" msgstr "" -#: c-decl.c:3939 +#: c-decl.c:3967 #, gcc-internal-format msgid "typedef %qD is initialized (use __typeof__ instead)" msgstr "" -#: c-decl.c:3944 +#: c-decl.c:3972 #, gcc-internal-format msgid "function %qD is initialized like a variable" msgstr "" #. DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. -#: c-decl.c:3950 +#: c-decl.c:3978 #, gcc-internal-format msgid "parameter %qD is initialized" msgstr "" @@ -12499,272 +12623,272 @@ msgstr "" #. of VLAs themselves count as VLAs, it does not make #. sense to permit them to be initialized given that #. ordinary VLAs may not be initialized. -#: c-decl.c:3969 c-decl.c:3984 c-typeck.c:6279 +#: c-decl.c:3997 c-decl.c:4012 c-typeck.c:6281 #, gcc-internal-format msgid "variable-sized object may not be initialized" msgstr "" -#: c-decl.c:3975 +#: c-decl.c:4003 #, gcc-internal-format msgid "variable %qD has initializer but incomplete type" msgstr "" -#: c-decl.c:4064 cp/decl.c:4282 cp/decl.c:12101 +#: c-decl.c:4092 cp/decl.c:4289 cp/decl.c:12113 #, gcc-internal-format msgid "inline function %q+D given attribute noinline" msgstr "" -#: c-decl.c:4115 +#: c-decl.c:4143 #, gcc-internal-format msgid "uninitialized const member in %qT is invalid in C++" msgstr "" -#: c-decl.c:4117 cp/init.c:1882 cp/init.c:1897 +#: c-decl.c:4145 cp/init.c:1883 cp/init.c:1898 #, gcc-internal-format msgid "%qD should be initialized" msgstr "" -#: c-decl.c:4195 +#: c-decl.c:4223 #, gcc-internal-format msgid "initializer fails to determine size of %q+D" msgstr "" -#: c-decl.c:4200 +#: c-decl.c:4228 #, gcc-internal-format msgid "array size missing in %q+D" msgstr "" -#: c-decl.c:4212 +#: c-decl.c:4240 #, gcc-internal-format msgid "zero or negative size array %q+D" msgstr "" -#: c-decl.c:4267 varasm.c:1934 +#: c-decl.c:4295 varasm.c:1964 #, gcc-internal-format msgid "storage size of %q+D isn%'t known" msgstr "" -#: c-decl.c:4278 +#: c-decl.c:4306 #, gcc-internal-format msgid "storage size of %q+D isn%'t constant" msgstr "" -#: c-decl.c:4328 +#: c-decl.c:4356 #, gcc-internal-format msgid "ignoring asm-specifier for non-static local variable %q+D" msgstr "" -#: c-decl.c:4356 +#: c-decl.c:4384 #, gcc-internal-format msgid "cannot put object with volatile field into register" msgstr "" -#: c-decl.c:4449 +#: c-decl.c:4477 #, gcc-internal-format msgid "uninitialized const %qD is invalid in C++" msgstr "" -#: c-decl.c:4500 +#: c-decl.c:4528 #, gcc-internal-format msgid "ISO C forbids forward parameter declarations" msgstr "" -#: c-decl.c:4590 +#: c-decl.c:4618 #, gcc-internal-format msgid "defining a type in a compound literal is invalid in C++" msgstr "" -#: c-decl.c:4642 c-decl.c:4657 +#: c-decl.c:4670 c-decl.c:4685 #, gcc-internal-format msgid "bit-field %qs width not an integer constant" msgstr "" -#: c-decl.c:4652 +#: c-decl.c:4680 #, gcc-internal-format msgid "bit-field %qs width not an integer constant expression" msgstr "" -#: c-decl.c:4663 +#: c-decl.c:4691 #, gcc-internal-format msgid "negative width in bit-field %qs" msgstr "" -#: c-decl.c:4668 +#: c-decl.c:4696 #, gcc-internal-format msgid "zero width for bit-field %qs" msgstr "" -#: c-decl.c:4678 +#: c-decl.c:4706 #, gcc-internal-format msgid "bit-field %qs has invalid type" msgstr "" -#: c-decl.c:4688 +#: c-decl.c:4716 #, gcc-internal-format msgid "type of bit-field %qs is a GCC extension" msgstr "" -#: c-decl.c:4694 +#: c-decl.c:4722 #, gcc-internal-format msgid "width of %qs exceeds its type" msgstr "" -#: c-decl.c:4707 +#: c-decl.c:4735 #, gcc-internal-format msgid "%qs is narrower than values of its type" msgstr "" -#: c-decl.c:4726 +#: c-decl.c:4754 #, gcc-internal-format msgid "ISO C90 forbids array %qE whose size can%'t be evaluated" msgstr "" -#: c-decl.c:4730 +#: c-decl.c:4758 #, gcc-internal-format msgid "ISO C90 forbids array whose size can%'t be evaluated" msgstr "" -#: c-decl.c:4737 +#: c-decl.c:4765 #, gcc-internal-format msgid "ISO C90 forbids variable length array %qE" msgstr "" -#: c-decl.c:4740 +#: c-decl.c:4768 #, gcc-internal-format msgid "ISO C90 forbids variable length array" msgstr "" -#: c-decl.c:4749 +#: c-decl.c:4777 #, gcc-internal-format msgid "the size of array %qE can%'t be evaluated" msgstr "" -#: c-decl.c:4753 +#: c-decl.c:4781 #, gcc-internal-format msgid "the size of array can %'t be evaluated" msgstr "" -#: c-decl.c:4759 +#: c-decl.c:4787 #, gcc-internal-format msgid "variable length array %qE is used" msgstr "" -#: c-decl.c:4763 cp/decl.c:7633 +#: c-decl.c:4791 cp/decl.c:7638 #, gcc-internal-format msgid "variable length array is used" msgstr "" -#: c-decl.c:4943 c-decl.c:5289 c-decl.c:5299 +#: c-decl.c:4971 c-decl.c:5317 c-decl.c:5327 #, gcc-internal-format msgid "variably modified %qE at file scope" msgstr "" -#: c-decl.c:4945 +#: c-decl.c:4973 #, gcc-internal-format msgid "variably modified field at file scope" msgstr "" -#: c-decl.c:4965 +#: c-decl.c:4993 #, gcc-internal-format msgid "type defaults to %<int%> in declaration of %qE" msgstr "" -#: c-decl.c:4969 +#: c-decl.c:4997 #, gcc-internal-format msgid "type defaults to %<int%> in type name" msgstr "" -#: c-decl.c:5002 +#: c-decl.c:5030 #, gcc-internal-format msgid "duplicate %<const%>" msgstr "" -#: c-decl.c:5004 +#: c-decl.c:5032 #, gcc-internal-format msgid "duplicate %<restrict%>" msgstr "" -#: c-decl.c:5006 +#: c-decl.c:5034 #, gcc-internal-format msgid "duplicate %<volatile%>" msgstr "" -#: c-decl.c:5010 +#: c-decl.c:5038 #, gcc-internal-format, gfc-internal-format msgid "conflicting named address spaces (%s vs %s)" msgstr "" -#: c-decl.c:5032 +#: c-decl.c:5060 #, gcc-internal-format msgid "function definition declared %<auto%>" msgstr "" -#: c-decl.c:5034 +#: c-decl.c:5062 #, gcc-internal-format msgid "function definition declared %<register%>" msgstr "" -#: c-decl.c:5036 +#: c-decl.c:5064 #, gcc-internal-format msgid "function definition declared %<typedef%>" msgstr "" -#: c-decl.c:5038 +#: c-decl.c:5066 #, gcc-internal-format msgid "function definition declared %<__thread%>" msgstr "" -#: c-decl.c:5055 +#: c-decl.c:5083 #, gcc-internal-format msgid "storage class specified for structure field %qE" msgstr "" -#: c-decl.c:5058 +#: c-decl.c:5086 #, gcc-internal-format msgid "storage class specified for structure field" msgstr "" -#: c-decl.c:5062 +#: c-decl.c:5090 #, gcc-internal-format msgid "storage class specified for parameter %qE" msgstr "" -#: c-decl.c:5065 +#: c-decl.c:5093 #, gcc-internal-format msgid "storage class specified for unnamed parameter" msgstr "" -#: c-decl.c:5068 cp/decl.c:8576 +#: c-decl.c:5096 cp/decl.c:8581 #, gcc-internal-format msgid "storage class specified for typename" msgstr "" -#: c-decl.c:5085 +#: c-decl.c:5113 #, gcc-internal-format msgid "%qE initialized and declared %<extern%>" msgstr "" -#: c-decl.c:5089 +#: c-decl.c:5117 #, gcc-internal-format msgid "%qE has both %<extern%> and initializer" msgstr "" -#: c-decl.c:5094 +#: c-decl.c:5122 #, gcc-internal-format msgid "file-scope declaration of %qE specifies %<auto%>" msgstr "" -#: c-decl.c:5098 +#: c-decl.c:5126 #, gcc-internal-format msgid "file-scope declaration of %qE specifies %<register%>" msgstr "" -#: c-decl.c:5103 +#: c-decl.c:5131 #, gcc-internal-format msgid "nested function %qE declared %<extern%>" msgstr "" -#: c-decl.c:5106 +#: c-decl.c:5134 #, gcc-internal-format msgid "function-scope %qE implicitly auto and declared %<__thread%>" msgstr "" @@ -12772,584 +12896,584 @@ msgstr "" #. Only the innermost declarator (making a parameter be of #. array type which is converted to pointer type) #. may have static or type qualifiers. -#: c-decl.c:5153 c-decl.c:5485 +#: c-decl.c:5181 c-decl.c:5513 #, gcc-internal-format msgid "static or type qualifiers in non-parameter array declarator" msgstr "" -#: c-decl.c:5201 +#: c-decl.c:5229 #, gcc-internal-format msgid "declaration of %qE as array of voids" msgstr "" -#: c-decl.c:5203 +#: c-decl.c:5231 #, gcc-internal-format msgid "declaration of type name as array of voids" msgstr "" -#: c-decl.c:5210 +#: c-decl.c:5238 #, gcc-internal-format msgid "declaration of %qE as array of functions" msgstr "" -#: c-decl.c:5213 +#: c-decl.c:5241 #, gcc-internal-format msgid "declaration of type name as array of functions" msgstr "" -#: c-decl.c:5220 c-decl.c:7044 +#: c-decl.c:5248 c-decl.c:7070 #, gcc-internal-format msgid "invalid use of structure with flexible array member" msgstr "" -#: c-decl.c:5246 +#: c-decl.c:5274 #, gcc-internal-format msgid "size of array %qE has non-integer type" msgstr "" -#: c-decl.c:5250 +#: c-decl.c:5278 #, gcc-internal-format msgid "size of unnamed array has non-integer type" msgstr "" -#: c-decl.c:5260 +#: c-decl.c:5288 #, gcc-internal-format msgid "ISO C forbids zero-size array %qE" msgstr "" -#: c-decl.c:5263 +#: c-decl.c:5291 #, gcc-internal-format msgid "ISO C forbids zero-size array" msgstr "" -#: c-decl.c:5272 +#: c-decl.c:5300 #, gcc-internal-format msgid "size of array %qE is negative" msgstr "" -#: c-decl.c:5274 +#: c-decl.c:5302 #, gcc-internal-format msgid "size of unnamed array is negative" msgstr "" -#: c-decl.c:5350 c-decl.c:5715 +#: c-decl.c:5378 c-decl.c:5743 #, gcc-internal-format msgid "size of array %qE is too large" msgstr "" -#: c-decl.c:5353 c-decl.c:5717 +#: c-decl.c:5381 c-decl.c:5745 #, gcc-internal-format msgid "size of unnamed array is too large" msgstr "" -#: c-decl.c:5390 +#: c-decl.c:5418 #, gcc-internal-format msgid "ISO C90 does not support flexible array members" msgstr "" #. C99 6.7.5.2p4 -#: c-decl.c:5411 +#: c-decl.c:5439 #, gcc-internal-format msgid "%<[*]%> not in a declaration" msgstr "" -#: c-decl.c:5424 +#: c-decl.c:5452 #, gcc-internal-format msgid "array type has incomplete element type" msgstr "" -#: c-decl.c:5518 +#: c-decl.c:5546 #, gcc-internal-format msgid "%qE declared as function returning a function" msgstr "" -#: c-decl.c:5521 +#: c-decl.c:5549 #, gcc-internal-format msgid "type name declared as function returning a function" msgstr "" -#: c-decl.c:5528 +#: c-decl.c:5556 #, gcc-internal-format msgid "%qE declared as function returning an array" msgstr "" -#: c-decl.c:5531 +#: c-decl.c:5559 #, gcc-internal-format msgid "type name declared as function returning an array" msgstr "" -#: c-decl.c:5561 +#: c-decl.c:5589 #, gcc-internal-format msgid "function definition has qualified void return type" msgstr "" -#: c-decl.c:5564 cp/decl.c:8682 +#: c-decl.c:5592 cp/decl.c:8687 #, gcc-internal-format msgid "type qualifiers ignored on function return type" msgstr "" -#: c-decl.c:5593 c-decl.c:5731 c-decl.c:5841 c-decl.c:5934 +#: c-decl.c:5621 c-decl.c:5759 c-decl.c:5869 c-decl.c:5962 #, gcc-internal-format msgid "ISO C forbids qualified function types" msgstr "" -#: c-decl.c:5660 +#: c-decl.c:5688 #, gcc-internal-format msgid "%qs combined with %<auto%> qualifier for %qE" msgstr "" -#: c-decl.c:5664 +#: c-decl.c:5692 #, gcc-internal-format msgid "%qs combined with %<register%> qualifier for %qE" msgstr "" -#: c-decl.c:5670 +#: c-decl.c:5698 #, gcc-internal-format msgid "%qs specified for auto variable %qE" msgstr "" -#: c-decl.c:5686 +#: c-decl.c:5714 #, gcc-internal-format msgid "%qs specified for parameter %qE" msgstr "" -#: c-decl.c:5689 +#: c-decl.c:5717 #, gcc-internal-format msgid "%qs specified for unnamed parameter" msgstr "" -#: c-decl.c:5695 +#: c-decl.c:5723 #, gcc-internal-format msgid "%qs specified for structure field %qE" msgstr "" -#: c-decl.c:5698 +#: c-decl.c:5726 #, gcc-internal-format msgid "%qs specified for structure field" msgstr "" -#: c-decl.c:5739 +#: c-decl.c:5767 #, gcc-internal-format msgid "typedef %q+D declared %<inline%>" msgstr "" -#: c-decl.c:5775 +#: c-decl.c:5803 #, gcc-internal-format msgid "ISO C forbids const or volatile function types" msgstr "" #. C99 6.7.2.1p8 -#: c-decl.c:5785 +#: c-decl.c:5813 #, gcc-internal-format msgid "a member of a structure or union cannot have a variably modified type" msgstr "" -#: c-decl.c:5802 cp/decl.c:7855 +#: c-decl.c:5830 cp/decl.c:7860 #, gcc-internal-format msgid "variable or field %qE declared void" msgstr "" -#: c-decl.c:5833 +#: c-decl.c:5861 #, gcc-internal-format msgid "attributes in parameter array declarator ignored" msgstr "" -#: c-decl.c:5867 +#: c-decl.c:5895 #, gcc-internal-format msgid "parameter %q+D declared %<inline%>" msgstr "" -#: c-decl.c:5880 +#: c-decl.c:5908 #, gcc-internal-format msgid "field %qE declared as a function" msgstr "" -#: c-decl.c:5887 +#: c-decl.c:5915 #, gcc-internal-format msgid "field %qE has incomplete type" msgstr "" -#: c-decl.c:5889 +#: c-decl.c:5917 #, gcc-internal-format msgid "unnamed field has incomplete type" msgstr "" -#: c-decl.c:5906 c-decl.c:5917 c-decl.c:5920 +#: c-decl.c:5934 c-decl.c:5945 c-decl.c:5948 #, gcc-internal-format msgid "invalid storage class for function %qE" msgstr "" -#: c-decl.c:5970 +#: c-decl.c:5998 #, gcc-internal-format msgid "cannot inline function %<main%>" msgstr "" -#: c-decl.c:5999 +#: c-decl.c:6027 #, gcc-internal-format msgid "variable previously declared %<static%> redeclared %<extern%>" msgstr "" -#: c-decl.c:6009 +#: c-decl.c:6037 #, gcc-internal-format msgid "variable %q+D declared %<inline%>" msgstr "" -#: c-decl.c:6044 +#: c-decl.c:6072 #, gcc-internal-format msgid "non-nested function with variably modified type" msgstr "" -#: c-decl.c:6046 +#: c-decl.c:6074 #, gcc-internal-format msgid "object with variably modified type must have no linkage" msgstr "" -#: c-decl.c:6129 c-decl.c:7680 +#: c-decl.c:6157 c-decl.c:7706 #, gcc-internal-format msgid "function declaration isn%'t a prototype" msgstr "" -#: c-decl.c:6138 +#: c-decl.c:6166 #, gcc-internal-format msgid "parameter names (without types) in function declaration" msgstr "" -#: c-decl.c:6176 +#: c-decl.c:6204 #, gcc-internal-format msgid "parameter %u (%q+D) has incomplete type" msgstr "" -#: c-decl.c:6180 +#: c-decl.c:6208 #, gcc-internal-format, gfc-internal-format msgid "parameter %u has incomplete type" msgstr "" -#: c-decl.c:6191 +#: c-decl.c:6219 #, gcc-internal-format msgid "parameter %u (%q+D) has void type" msgstr "" -#: c-decl.c:6195 +#: c-decl.c:6223 #, gcc-internal-format, gfc-internal-format msgid "parameter %u has void type" msgstr "" -#: c-decl.c:6277 +#: c-decl.c:6305 #, gcc-internal-format msgid "%<void%> as only parameter may not be qualified" msgstr "" -#: c-decl.c:6281 c-decl.c:6316 +#: c-decl.c:6309 c-decl.c:6344 #, gcc-internal-format msgid "%<void%> must be the only parameter" msgstr "" -#: c-decl.c:6310 +#: c-decl.c:6338 #, gcc-internal-format msgid "parameter %q+D has just a forward declaration" msgstr "" #. The %s will be one of 'struct', 'union', or 'enum'. -#: c-decl.c:6355 +#: c-decl.c:6383 #, gcc-internal-format msgid "%<%s %E%> declared inside parameter list" msgstr "" #. The %s will be one of 'struct', 'union', or 'enum'. -#: c-decl.c:6359 +#: c-decl.c:6387 #, gcc-internal-format, gfc-internal-format msgid "anonymous %s declared inside parameter list" msgstr "" -#: c-decl.c:6364 +#: c-decl.c:6392 #, gcc-internal-format msgid "" "its scope is only this definition or declaration, which is probably not what " "you want" msgstr "" -#: c-decl.c:6464 +#: c-decl.c:6492 #, gcc-internal-format msgid "enum type defined here" msgstr "" -#: c-decl.c:6470 +#: c-decl.c:6498 #, gcc-internal-format msgid "struct defined here" msgstr "" -#: c-decl.c:6476 +#: c-decl.c:6504 #, gcc-internal-format msgid "union defined here" msgstr "" -#: c-decl.c:6549 +#: c-decl.c:6577 #, gcc-internal-format msgid "redefinition of %<union %E%>" msgstr "" -#: c-decl.c:6551 +#: c-decl.c:6579 #, gcc-internal-format msgid "redefinition of %<struct %E%>" msgstr "" -#: c-decl.c:6560 +#: c-decl.c:6588 #, gcc-internal-format msgid "nested redefinition of %<union %E%>" msgstr "" -#: c-decl.c:6562 +#: c-decl.c:6590 #, gcc-internal-format msgid "nested redefinition of %<struct %E%>" msgstr "" -#: c-decl.c:6594 c-decl.c:7278 +#: c-decl.c:6622 c-decl.c:7304 #, gcc-internal-format msgid "defining type in %qs expression is invalid in C++" msgstr "" -#: c-decl.c:6660 cp/decl.c:4020 +#: c-decl.c:6688 cp/decl.c:4027 #, gcc-internal-format msgid "declaration does not declare anything" msgstr "" -#: c-decl.c:6667 +#: c-decl.c:6695 #, gcc-internal-format msgid "ISO C99 doesn%'t support unnamed structs/unions" msgstr "" -#: c-decl.c:6670 +#: c-decl.c:6698 #, gcc-internal-format msgid "ISO C90 doesn%'t support unnamed structs/unions" msgstr "" -#: c-decl.c:6762 c-decl.c:6781 c-decl.c:6842 objcp/objcp-decl.c:91 +#: c-decl.c:6790 c-decl.c:6809 c-decl.c:6868 objcp/objcp-decl.c:91 #, gcc-internal-format msgid "duplicate member %q+D" msgstr "" -#: c-decl.c:6952 +#: c-decl.c:6978 #, gcc-internal-format msgid "union has no named members" msgstr "" -#: c-decl.c:6954 +#: c-decl.c:6980 #, gcc-internal-format msgid "union has no members" msgstr "" -#: c-decl.c:6959 +#: c-decl.c:6985 #, gcc-internal-format msgid "struct has no named members" msgstr "" -#: c-decl.c:6961 +#: c-decl.c:6987 #, gcc-internal-format msgid "struct has no members" msgstr "" -#: c-decl.c:7024 +#: c-decl.c:7050 #, gcc-internal-format msgid "flexible array member in union" msgstr "" -#: c-decl.c:7030 +#: c-decl.c:7056 #, gcc-internal-format msgid "flexible array member not at end of struct" msgstr "" -#: c-decl.c:7036 +#: c-decl.c:7062 #, gcc-internal-format msgid "flexible array member in otherwise empty struct" msgstr "" -#: c-decl.c:7155 +#: c-decl.c:7181 #, gcc-internal-format msgid "union cannot be made transparent" msgstr "" -#: c-decl.c:7251 +#: c-decl.c:7277 #, gcc-internal-format msgid "nested redefinition of %<enum %E%>" msgstr "" #. This enum is a named one that has been declared already. -#: c-decl.c:7258 +#: c-decl.c:7284 #, gcc-internal-format msgid "redeclaration of %<enum %E%>" msgstr "" -#: c-decl.c:7333 +#: c-decl.c:7359 #, gcc-internal-format msgid "enumeration values exceed range of largest integer" msgstr "" -#: c-decl.c:7350 +#: c-decl.c:7376 #, gcc-internal-format msgid "specified mode too small for enumeral values" msgstr "" -#: c-decl.c:7455 c-decl.c:7471 +#: c-decl.c:7481 c-decl.c:7497 #, gcc-internal-format msgid "enumerator value for %qE is not an integer constant" msgstr "" -#: c-decl.c:7466 +#: c-decl.c:7492 #, gcc-internal-format msgid "enumerator value for %qE is not an integer constant expression" msgstr "" -#: c-decl.c:7490 +#: c-decl.c:7516 #, gcc-internal-format msgid "overflow in enumeration values" msgstr "" -#: c-decl.c:7498 +#: c-decl.c:7524 #, gcc-internal-format msgid "ISO C restricts enumerator values to range of %<int%>" msgstr "" -#: c-decl.c:7582 +#: c-decl.c:7608 #, gcc-internal-format msgid "inline function %qD given attribute noinline" msgstr "" -#: c-decl.c:7600 +#: c-decl.c:7626 #, gcc-internal-format msgid "return type is an incomplete type" msgstr "" -#: c-decl.c:7610 +#: c-decl.c:7636 #, gcc-internal-format msgid "return type defaults to %<int%>" msgstr "" -#: c-decl.c:7688 +#: c-decl.c:7714 #, gcc-internal-format msgid "no previous prototype for %qD" msgstr "" -#: c-decl.c:7697 +#: c-decl.c:7723 #, gcc-internal-format msgid "%qD was used with no prototype before its definition" msgstr "" -#: c-decl.c:7704 +#: c-decl.c:7730 #, gcc-internal-format msgid "no previous declaration for %qD" msgstr "" -#: c-decl.c:7714 +#: c-decl.c:7740 #, gcc-internal-format msgid "%qD was used with no declaration before its definition" msgstr "" -#: c-decl.c:7733 +#: c-decl.c:7759 #, gcc-internal-format msgid "return type of %qD is not %<int%>" msgstr "" -#: c-decl.c:7739 +#: c-decl.c:7765 #, gcc-internal-format msgid "%qD is normally a non-static function" msgstr "" -#: c-decl.c:7776 +#: c-decl.c:7802 #, gcc-internal-format msgid "old-style parameter declarations in prototyped function definition" msgstr "" -#: c-decl.c:7790 +#: c-decl.c:7816 #, gcc-internal-format msgid "traditional C rejects ISO C style function definitions" msgstr "" -#: c-decl.c:7806 +#: c-decl.c:7832 #, gcc-internal-format msgid "parameter name omitted" msgstr "" -#: c-decl.c:7843 +#: c-decl.c:7869 #, gcc-internal-format msgid "old-style function definition" msgstr "" -#: c-decl.c:7852 +#: c-decl.c:7878 #, gcc-internal-format msgid "parameter name missing from parameter list" msgstr "" -#: c-decl.c:7867 +#: c-decl.c:7893 #, gcc-internal-format msgid "%qD declared as a non-parameter" msgstr "" -#: c-decl.c:7873 +#: c-decl.c:7899 #, gcc-internal-format msgid "multiple parameters named %qD" msgstr "" -#: c-decl.c:7882 +#: c-decl.c:7908 #, gcc-internal-format msgid "parameter %qD declared with void type" msgstr "" -#: c-decl.c:7911 c-decl.c:7915 +#: c-decl.c:7937 c-decl.c:7941 #, gcc-internal-format msgid "type of %qD defaults to %<int%>" msgstr "" -#: c-decl.c:7935 +#: c-decl.c:7961 #, gcc-internal-format msgid "parameter %qD has incomplete type" msgstr "" -#: c-decl.c:7942 +#: c-decl.c:7968 #, gcc-internal-format msgid "declaration for parameter %qD but no such parameter" msgstr "" -#: c-decl.c:7994 +#: c-decl.c:8020 #, gcc-internal-format msgid "number of arguments doesn%'t match built-in prototype" msgstr "" -#: c-decl.c:8005 +#: c-decl.c:8031 #, gcc-internal-format msgid "number of arguments doesn%'t match prototype" msgstr "" -#: c-decl.c:8008 c-decl.c:8050 c-decl.c:8064 +#: c-decl.c:8034 c-decl.c:8076 c-decl.c:8090 #, gcc-internal-format msgid "prototype declaration" msgstr "" -#: c-decl.c:8042 +#: c-decl.c:8068 #, gcc-internal-format msgid "promoted argument %qD doesn%'t match built-in prototype" msgstr "" -#: c-decl.c:8047 +#: c-decl.c:8073 #, gcc-internal-format msgid "promoted argument %qD doesn%'t match prototype" msgstr "" -#: c-decl.c:8057 +#: c-decl.c:8083 #, gcc-internal-format msgid "argument %qD doesn%'t match built-in prototype" msgstr "" -#: c-decl.c:8062 +#: c-decl.c:8088 #, gcc-internal-format msgid "argument %qD doesn%'t match prototype" msgstr "" -#: c-decl.c:8254 cp/decl.c:12978 +#: c-decl.c:8280 cp/decl.c:12990 #, gcc-internal-format msgid "no return statement in function returning non-void" msgstr "" -#: c-decl.c:8274 +#: c-decl.c:8300 #, gcc-internal-format msgid "parameter %qD set but not used" msgstr "" @@ -13357,173 +13481,173 @@ msgstr "" #. If we get here, declarations have been used in a for loop without #. the C99 for loop scope. This doesn't make much sense, so don't #. allow it. -#: c-decl.c:8353 +#: c-decl.c:8379 #, gcc-internal-format msgid "%<for%> loop initial declarations are only allowed in C99 mode" msgstr "" -#: c-decl.c:8358 +#: c-decl.c:8384 #, gcc-internal-format msgid "use option -std=c99 or -std=gnu99 to compile your code" msgstr "" -#: c-decl.c:8392 +#: c-decl.c:8418 #, gcc-internal-format msgid "declaration of static variable %qD in %<for%> loop initial declaration" msgstr "" -#: c-decl.c:8396 +#: c-decl.c:8422 #, gcc-internal-format msgid "" "declaration of %<extern%> variable %qD in %<for%> loop initial declaration" msgstr "" -#: c-decl.c:8403 +#: c-decl.c:8429 #, gcc-internal-format msgid "%<struct %E%> declared in %<for%> loop initial declaration" msgstr "" -#: c-decl.c:8408 +#: c-decl.c:8434 #, gcc-internal-format msgid "%<union %E%> declared in %<for%> loop initial declaration" msgstr "" -#: c-decl.c:8412 +#: c-decl.c:8438 #, gcc-internal-format msgid "%<enum %E%> declared in %<for%> loop initial declaration" msgstr "" -#: c-decl.c:8416 +#: c-decl.c:8442 #, gcc-internal-format msgid "declaration of non-variable %qD in %<for%> loop initial declaration" msgstr "" -#: c-decl.c:8666 +#: c-decl.c:8692 #, gcc-internal-format msgid "incompatible address space qualifiers %qs and %qs" msgstr "" -#: c-decl.c:8705 c-decl.c:9016 c-decl.c:9405 +#: c-decl.c:8731 c-decl.c:9042 c-decl.c:9431 #, gcc-internal-format msgid "duplicate %qE" msgstr "" -#: c-decl.c:8731 c-decl.c:9027 c-decl.c:9284 +#: c-decl.c:8757 c-decl.c:9053 c-decl.c:9310 #, gcc-internal-format msgid "two or more data types in declaration specifiers" msgstr "" -#: c-decl.c:8743 cp/parser.c:2459 +#: c-decl.c:8769 cp/parser.c:2461 #, gcc-internal-format msgid "%<long long long%> is too long for GCC" msgstr "" -#: c-decl.c:8756 +#: c-decl.c:8782 #, gcc-internal-format msgid "ISO C90 does not support %<long long%>" msgstr "" -#: c-decl.c:8922 +#: c-decl.c:8948 #, gcc-internal-format msgid "ISO C90 does not support complex types" msgstr "" -#: c-decl.c:8961 +#: c-decl.c:8987 #, gcc-internal-format msgid "ISO C does not support saturating types" msgstr "" -#: c-decl.c:9035 +#: c-decl.c:9061 #, gcc-internal-format msgid "%<__int128%> is not supported for this target" msgstr "" -#: c-decl.c:9040 +#: c-decl.c:9066 #, gcc-internal-format msgid "ISO C does not support %<__int128%> type" msgstr "" -#: c-decl.c:9243 +#: c-decl.c:9269 #, gcc-internal-format msgid "ISO C does not support decimal floating point" msgstr "" -#: c-decl.c:9265 c-decl.c:9470 c-parser.c:6032 +#: c-decl.c:9291 c-decl.c:9496 c-parser.c:6029 #, gcc-internal-format msgid "fixed-point types not supported for this target" msgstr "" -#: c-decl.c:9267 +#: c-decl.c:9293 #, gcc-internal-format msgid "ISO C does not support fixed-point types" msgstr "" -#: c-decl.c:9301 +#: c-decl.c:9327 #, gcc-internal-format msgid "C++ lookup of %qD would return a field, not a type" msgstr "" -#: c-decl.c:9314 +#: c-decl.c:9340 #, gcc-internal-format msgid "%qE fails to be a typedef or built in type" msgstr "" -#: c-decl.c:9356 +#: c-decl.c:9382 #, gcc-internal-format msgid "%qE is not at beginning of declaration" msgstr "" -#: c-decl.c:9370 +#: c-decl.c:9396 #, gcc-internal-format msgid "%<__thread%> used with %<auto%>" msgstr "" -#: c-decl.c:9372 +#: c-decl.c:9398 #, gcc-internal-format msgid "%<__thread%> used with %<register%>" msgstr "" -#: c-decl.c:9374 +#: c-decl.c:9400 #, gcc-internal-format msgid "%<__thread%> used with %<typedef%>" msgstr "" -#: c-decl.c:9385 +#: c-decl.c:9411 #, gcc-internal-format msgid "%<__thread%> before %<extern%>" msgstr "" -#: c-decl.c:9394 +#: c-decl.c:9420 #, gcc-internal-format msgid "%<__thread%> before %<static%>" msgstr "" -#: c-decl.c:9410 +#: c-decl.c:9436 #, gcc-internal-format msgid "multiple storage classes in declaration specifiers" msgstr "" -#: c-decl.c:9417 +#: c-decl.c:9443 #, gcc-internal-format msgid "%<__thread%> used with %qE" msgstr "" -#: c-decl.c:9468 +#: c-decl.c:9494 #, gcc-internal-format msgid "%<_Sat%> is used without %<_Fract%> or %<_Accum%>" msgstr "" -#: c-decl.c:9482 +#: c-decl.c:9508 #, gcc-internal-format msgid "ISO C does not support plain %<complex%> meaning %<double complex%>" msgstr "" -#: c-decl.c:9527 c-decl.c:9540 c-decl.c:9566 +#: c-decl.c:9553 c-decl.c:9566 c-decl.c:9592 #, gcc-internal-format msgid "ISO C does not support complex integer types" msgstr "" -#: c-decl.c:9720 toplev.c:497 +#: c-decl.c:9746 toplev.c:497 #, gcc-internal-format msgid "%q+F used but never defined" msgstr "" @@ -13533,52 +13657,52 @@ msgstr "" msgid "identifier %qE conflicts with C++ keyword" msgstr "" -#: c-parser.c:1215 +#: c-parser.c:1211 #, gcc-internal-format msgid "ISO C forbids an empty translation unit" msgstr "" -#: c-parser.c:1313 c-parser.c:7215 +#: c-parser.c:1309 c-parser.c:7212 #, gcc-internal-format msgid "ISO C does not allow extra %<;%> outside of a function" msgstr "" -#: c-parser.c:1439 c-parser.c:2005 c-parser.c:3218 +#: c-parser.c:1435 c-parser.c:2000 c-parser.c:3213 #, gcc-internal-format msgid "unknown type name %qE" msgstr "" -#: c-parser.c:1459 c-parser.c:8219 cp/parser.c:25145 +#: c-parser.c:1455 c-parser.c:8230 cp/parser.c:25235 #, gcc-internal-format msgid "expected declaration specifiers" msgstr "" -#: c-parser.c:1484 c-parser.c:2578 +#: c-parser.c:1480 c-parser.c:2573 #, gcc-internal-format msgid "expected %<;%>, identifier or %<(%>" msgstr "" -#: c-parser.c:1502 cp/parser.c:22213 cp/parser.c:22286 +#: c-parser.c:1498 cp/parser.c:22293 cp/parser.c:22366 #, gcc-internal-format msgid "prefix attributes are ignored for methods" msgstr "" -#: c-parser.c:1537 +#: c-parser.c:1533 #, gcc-internal-format msgid "prefix attributes are ignored for implementations" msgstr "" -#: c-parser.c:1559 +#: c-parser.c:1554 #, gcc-internal-format -msgid "attributes may not be specified before" +msgid "unexpected attribute" msgstr "" -#: c-parser.c:1601 +#: c-parser.c:1596 #, gcc-internal-format msgid "data definition has no type or storage class" msgstr "" -#: c-parser.c:1676 cp/parser.c:9727 +#: c-parser.c:1671 cp/parser.c:9762 #, gcc-internal-format msgid "expected %<,%> or %<;%>" msgstr "" @@ -13586,207 +13710,207 @@ 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:1683 c-parser.c:1699 +#: c-parser.c:1678 c-parser.c:1694 #, gcc-internal-format msgid "expected %<=%>, %<,%>, %<;%>, %<asm%> or %<__attribute__%>" msgstr "" -#: c-parser.c:1691 +#: c-parser.c:1686 #, gcc-internal-format msgid "ISO C forbids nested functions" msgstr "" -#: c-parser.c:1798 +#: c-parser.c:1793 #, gcc-internal-format msgid "ISO C99 does not support %<_Static_assert%>" msgstr "" -#: c-parser.c:1801 +#: c-parser.c:1796 #, gcc-internal-format msgid "ISO C90 does not support %<_Static_assert%>" msgstr "" -#: c-parser.c:1826 c-parser.c:3283 c-parser.c:8274 cp/parser.c:25032 +#: c-parser.c:1821 c-parser.c:3278 c-parser.c:8285 cp/parser.c:25122 #, gcc-internal-format msgid "expected string literal" msgstr "" -#: c-parser.c:1834 +#: c-parser.c:1829 #, gcc-internal-format msgid "expression in static assertion is not an integer" msgstr "" -#: c-parser.c:1841 +#: c-parser.c:1836 #, gcc-internal-format msgid "expression in static assertion is not an integer constant expression" msgstr "" -#: c-parser.c:1846 +#: c-parser.c:1841 #, gcc-internal-format msgid "expression in static assertion is not constant" msgstr "" #. Report the error. -#: c-parser.c:1851 cp/semantics.c:4628 +#: c-parser.c:1846 cp/semantics.c:4681 #, gcc-internal-format msgid "static assertion failed: %E" msgstr "" -#: c-parser.c:2212 c-parser.c:3068 c-parser.c:3714 c-parser.c:3988 -#: c-parser.c:5087 c-parser.c:5178 c-parser.c:5803 c-parser.c:6086 -#: c-parser.c:6275 c-parser.c:6297 c-parser.c:6405 c-parser.c:6603 -#: c-parser.c:6632 c-parser.c:6817 c-parser.c:6866 c-parser.c:7006 -#: c-parser.c:7037 c-parser.c:7045 c-parser.c:7074 c-parser.c:7088 -#: c-parser.c:7391 c-parser.c:7507 c-parser.c:7932 c-parser.c:7963 -#: c-parser.c:8016 c-parser.c:8069 c-parser.c:8085 c-parser.c:8131 -#: c-parser.c:8393 c-parser.c:9157 cp/parser.c:20891 cp/parser.c:23040 -#: cp/parser.c:23066 cp/parser.c:23128 +#: c-parser.c:2207 c-parser.c:3063 c-parser.c:3709 c-parser.c:3983 +#: c-parser.c:5084 c-parser.c:5175 c-parser.c:5800 c-parser.c:6083 +#: c-parser.c:6272 c-parser.c:6294 c-parser.c:6402 c-parser.c:6600 +#: c-parser.c:6629 c-parser.c:6814 c-parser.c:6863 c-parser.c:7003 +#: c-parser.c:7034 c-parser.c:7042 c-parser.c:7071 c-parser.c:7085 +#: c-parser.c:7388 c-parser.c:7512 c-parser.c:7939 c-parser.c:7974 +#: c-parser.c:8027 c-parser.c:8080 c-parser.c:8096 c-parser.c:8142 +#: c-parser.c:8404 c-parser.c:9171 cp/parser.c:20953 cp/parser.c:23122 +#: cp/parser.c:23152 cp/parser.c:23218 #, gcc-internal-format msgid "expected identifier" msgstr "" -#: c-parser.c:2245 cp/parser.c:13692 +#: c-parser.c:2240 cp/parser.c:13730 #, gcc-internal-format msgid "comma at end of enumerator list" msgstr "" -#: c-parser.c:2251 +#: c-parser.c:2246 #, gcc-internal-format msgid "expected %<,%> or %<}%>" msgstr "" -#: c-parser.c:2281 +#: c-parser.c:2276 #, gcc-internal-format msgid "ISO C forbids forward references to %<enum%> types" msgstr "" -#: c-parser.c:2395 +#: c-parser.c:2390 #, gcc-internal-format msgid "expected class name" msgstr "" -#: c-parser.c:2414 c-parser.c:6933 +#: c-parser.c:2409 c-parser.c:6930 #, gcc-internal-format msgid "extra semicolon in struct or union specified" msgstr "" -#: c-parser.c:2443 +#: c-parser.c:2438 #, gcc-internal-format msgid "no semicolon at end of struct or union" msgstr "" -#: c-parser.c:2540 c-parser.c:3528 +#: c-parser.c:2535 c-parser.c:3523 #, gcc-internal-format msgid "expected specifier-qualifier-list" msgstr "" -#: c-parser.c:2551 +#: c-parser.c:2546 #, gcc-internal-format msgid "ISO C forbids member declarations with no members" msgstr "" -#: c-parser.c:2641 +#: c-parser.c:2636 #, gcc-internal-format msgid "expected %<,%>, %<;%> or %<}%>" msgstr "" -#: c-parser.c:2648 +#: c-parser.c:2643 #, gcc-internal-format msgid "expected %<:%>, %<,%>, %<;%>, %<}%> or %<__attribute__%>" msgstr "" -#: c-parser.c:2701 +#: c-parser.c:2696 #, gcc-internal-format msgid "%<typeof%> applied to a bit-field" msgstr "" -#: c-parser.c:2927 +#: c-parser.c:2922 #, gcc-internal-format msgid "expected identifier or %<(%>" msgstr "" -#: c-parser.c:3122 +#: c-parser.c:3117 #, gcc-internal-format msgid "ISO C requires a named argument before %<...%>" msgstr "" -#: c-parser.c:3225 +#: c-parser.c:3220 #, gcc-internal-format msgid "expected declaration specifiers or %<...%>" msgstr "" -#: c-parser.c:3277 +#: c-parser.c:3272 #, gcc-internal-format msgid "wide string literal in %<asm%>" msgstr "" -#: c-parser.c:3628 +#: c-parser.c:3623 #, gcc-internal-format msgid "ISO C forbids empty initializer braces" msgstr "" -#: c-parser.c:3679 +#: c-parser.c:3674 #, gcc-internal-format msgid "obsolete use of designated initializer with %<:%>" msgstr "" -#: c-parser.c:3819 +#: c-parser.c:3814 #, gcc-internal-format msgid "ISO C forbids specifying range of elements to initialize" msgstr "" -#: c-parser.c:3832 +#: c-parser.c:3827 #, gcc-internal-format msgid "ISO C90 forbids specifying subobject to initialize" msgstr "" -#: c-parser.c:3839 +#: c-parser.c:3834 #, gcc-internal-format msgid "obsolete use of designated initializer without %<=%>" msgstr "" -#: c-parser.c:4003 +#: c-parser.c:3998 #, gcc-internal-format msgid "ISO C forbids label declarations" msgstr "" -#: c-parser.c:4009 c-parser.c:4090 +#: c-parser.c:4004 c-parser.c:4085 #, gcc-internal-format msgid "expected declaration or statement" msgstr "" -#: c-parser.c:4041 c-parser.c:4071 +#: c-parser.c:4036 c-parser.c:4066 #, gcc-internal-format msgid "ISO C90 forbids mixed declarations and code" msgstr "" -#: c-parser.c:4098 +#: c-parser.c:4093 #, gcc-internal-format msgid "expected %<}%> before %<else%>" msgstr "" -#: c-parser.c:4103 cp/parser.c:8397 +#: c-parser.c:4098 cp/parser.c:8426 #, gcc-internal-format msgid "%<else%> without a previous %<if%>" msgstr "" -#: c-parser.c:4120 +#: c-parser.c:4115 #, gcc-internal-format msgid "label at end of compound statement" msgstr "" -#: c-parser.c:4165 +#: c-parser.c:4160 #, gcc-internal-format msgid "expected %<:%> or %<...%>" msgstr "" -#: c-parser.c:4196 +#: c-parser.c:4191 #, gcc-internal-format msgid "" "a label can only be part of a statement and a declaration is not a statement" msgstr "" -#: c-parser.c:4364 +#: c-parser.c:4359 #, gcc-internal-format msgid "expected identifier or %<*%>" msgstr "" @@ -13795,284 +13919,289 @@ msgstr "" #. c_parser_skip_until_found stops at a closing nesting #. delimiter without consuming it, but here we need to consume #. it to proceed further. -#: c-parser.c:4429 cp/parser.c:8129 +#: c-parser.c:4424 cp/parser.c:8158 #, gcc-internal-format msgid "expected statement" msgstr "" -#: c-parser.c:4527 cp/parser.c:8479 +#: c-parser.c:4522 cp/parser.c:8508 #, gcc-internal-format msgid "suggest braces around empty body in an %<if%> statement" msgstr "" -#: c-parser.c:4555 cp/parser.c:8502 +#: c-parser.c:4550 cp/parser.c:8531 #, gcc-internal-format msgid "suggest braces around empty body in an %<else%> statement" msgstr "" -#: c-parser.c:4686 +#: c-parser.c:4681 #, gcc-internal-format msgid "suggest braces around empty body in %<do%> statement" msgstr "" -#: c-parser.c:4800 c-parser.c:4830 +#: c-parser.c:4797 c-parser.c:4827 #, gcc-internal-format msgid "multiple iterating variables in fast enumeration" msgstr "" -#: c-parser.c:4850 +#: c-parser.c:4847 #, gcc-internal-format msgid "invalid iterating variable in fast enumeration" msgstr "" -#: c-parser.c:4883 +#: c-parser.c:4880 #, gcc-internal-format msgid "missing collection in fast enumeration" msgstr "" -#: c-parser.c:4954 +#: c-parser.c:4951 #, gcc-internal-format msgid "%E qualifier ignored on asm" msgstr "" -#: c-parser.c:5308 +#: c-parser.c:5305 #, gcc-internal-format msgid "ISO C forbids omitting the middle term of a ?: expression" msgstr "" -#: c-parser.c:5768 +#: c-parser.c:5765 #, gcc-internal-format msgid "traditional C rejects the unary plus operator" msgstr "" -#: c-parser.c:5893 +#: c-parser.c:5890 #, gcc-internal-format msgid "%<sizeof%> applied to a bit-field" msgstr "" -#: c-parser.c:6097 c-parser.c:6442 c-parser.c:6462 +#: c-parser.c:6094 c-parser.c:6439 c-parser.c:6459 #, gcc-internal-format msgid "expected expression" msgstr "" -#: c-parser.c:6115 +#: c-parser.c:6112 #, gcc-internal-format msgid "braced-group within expression allowed only inside a function" msgstr "" -#: c-parser.c:6128 +#: c-parser.c:6125 #, gcc-internal-format msgid "ISO C forbids braced-groups within expressions" msgstr "" -#: c-parser.c:6337 +#: c-parser.c:6334 #, gcc-internal-format msgid "first argument to %<__builtin_choose_expr%> not a constant" msgstr "" -#: c-parser.c:6497 +#: c-parser.c:6494 #, gcc-internal-format msgid "compound literal has variable size" msgstr "" -#: c-parser.c:6508 +#: c-parser.c:6505 #, gcc-internal-format msgid "compound literal qualified by address-space qualifier" msgstr "" -#: c-parser.c:6513 +#: c-parser.c:6510 #, gcc-internal-format msgid "ISO C90 forbids compound literals" msgstr "" -#: c-parser.c:6837 +#: c-parser.c:6834 #, gcc-internal-format msgid "expected identifier or %<)%>" msgstr "" -#: c-parser.c:7163 +#: c-parser.c:7160 #, gcc-internal-format msgid "extra semicolon in method definition specified" msgstr "" -#: c-parser.c:7294 +#: c-parser.c:7291 #, gcc-internal-format msgid "method attributes must be specified at the end only" msgstr "" -#: c-parser.c:7314 +#: c-parser.c:7311 #, gcc-internal-format msgid "expected %<;%> or %<{%> after method attribute definition" msgstr "" -#: c-parser.c:7434 +#: c-parser.c:7431 #, gcc-internal-format msgid "objective-c method declaration is expected" msgstr "" -#: c-parser.c:7846 +#: c-parser.c:7853 #, gcc-internal-format msgid "no type or storage class may be specified here," msgstr "" -#: c-parser.c:7936 c-parser.c:7989 cp/parser.c:23092 +#: c-parser.c:7943 c-parser.c:8000 cp/parser.c:23178 #, gcc-internal-format msgid "unknown property attribute" msgstr "" -#: c-parser.c:7956 +#: c-parser.c:7964 cp/parser.c:23142 #, gcc-internal-format -msgid "getter/setter attribute must be followed by %<=%>" +msgid "missing %<=%> (after %<getter%> attribute)" msgstr "" -#: c-parser.c:7970 cp/parser.c:23073 +#: c-parser.c:7967 cp/parser.c:23145 +#, gcc-internal-format +msgid "missing %<=%> (after %<setter%> attribute)" +msgstr "" + +#: c-parser.c:7981 cp/parser.c:23159 #, gcc-internal-format msgid "the %<setter%> attribute may only be specified once" msgstr "" -#: c-parser.c:7975 cp/parser.c:23078 +#: c-parser.c:7986 cp/parser.c:23164 #, gcc-internal-format msgid "setter name must terminate with %<:%>" msgstr "" -#: c-parser.c:7982 cp/parser.c:23085 +#: c-parser.c:7993 cp/parser.c:23171 #, gcc-internal-format msgid "the %<getter%> attribute may only be specified once" msgstr "" -#: c-parser.c:8168 cp/parser.c:25076 +#: c-parser.c:8179 cp/parser.c:25166 #, gcc-internal-format msgid "%<#pragma omp barrier%> may only be used in compound statements" msgstr "" -#: c-parser.c:8179 cp/parser.c:25091 +#: c-parser.c:8190 cp/parser.c:25181 #, gcc-internal-format msgid "%<#pragma omp flush%> may only be used in compound statements" msgstr "" -#: c-parser.c:8190 cp/parser.c:25107 +#: c-parser.c:8201 cp/parser.c:25197 #, gcc-internal-format msgid "%<#pragma omp taskwait%> may only be used in compound statements" msgstr "" -#: c-parser.c:8203 cp/parser.c:25135 +#: c-parser.c:8214 cp/parser.c:25225 #, gcc-internal-format msgid "" "%<#pragma omp section%> may only be used in %<#pragma omp sections%> " "construct" msgstr "" -#: c-parser.c:8209 cp/parser.c:25066 +#: c-parser.c:8220 cp/parser.c:25156 #, gcc-internal-format msgid "%<#pragma GCC pch_preprocess%> must be first" msgstr "" -#: c-parser.c:8368 cp/parser.c:23330 +#: c-parser.c:8379 cp/parser.c:23420 #, gcc-internal-format msgid "too many %qs clauses" msgstr "" -#: c-parser.c:8470 cp/parser.c:23445 +#: c-parser.c:8481 cp/parser.c:23535 #, gcc-internal-format msgid "collapse argument needs positive constant integer expression" msgstr "" -#: c-parser.c:8536 cp/parser.c:23496 +#: c-parser.c:8547 cp/parser.c:23586 #, gcc-internal-format msgid "expected %<none%> or %<shared%>" msgstr "" -#: c-parser.c:8627 c-parser.c:8819 +#: c-parser.c:8638 c-parser.c:8830 #, gcc-internal-format msgid "expected integer expression" msgstr "" -#: c-parser.c:8639 +#: c-parser.c:8650 #, gcc-internal-format msgid "%<num_threads%> value must be positive" msgstr "" -#: c-parser.c:8722 cp/parser.c:23648 +#: c-parser.c:8733 cp/parser.c:23738 #, gcc-internal-format msgid "expected %<+%>, %<*%>, %<-%>, %<&%>, %<^%>, %<|%>, %<&&%>, or %<||%>" msgstr "" -#: c-parser.c:8810 cp/parser.c:23733 +#: c-parser.c:8821 cp/parser.c:23823 #, gcc-internal-format msgid "schedule %<runtime%> does not take a %<chunk_size%> parameter" msgstr "" -#: c-parser.c:8814 cp/parser.c:23736 +#: c-parser.c:8825 cp/parser.c:23826 #, gcc-internal-format msgid "schedule %<auto%> does not take a %<chunk_size%> parameter" msgstr "" -#: c-parser.c:8832 cp/parser.c:23752 +#: c-parser.c:8843 cp/parser.c:23842 #, gcc-internal-format msgid "invalid schedule kind" msgstr "" -#: c-parser.c:8952 cp/parser.c:23875 +#: c-parser.c:8963 cp/parser.c:23965 #, gcc-internal-format msgid "expected %<#pragma omp%> clause" msgstr "" -#: c-parser.c:8961 cp/parser.c:23884 +#: c-parser.c:8972 cp/parser.c:23974 #, gcc-internal-format msgid "%qs is not valid for %qs" msgstr "" -#: c-parser.c:9101 cp/parser.c:24035 +#: c-parser.c:9112 cp/parser.c:24125 #, gcc-internal-format msgid "invalid operator for %<#pragma omp atomic%>" msgstr "" -#: c-parser.c:9160 c-parser.c:9181 +#: c-parser.c:9174 c-parser.c:9195 #, gcc-internal-format msgid "expected %<(%> or end of line" msgstr "" -#: c-parser.c:9216 cp/parser.c:24274 +#: c-parser.c:9230 cp/parser.c:24364 #, gcc-internal-format msgid "for statement expected" msgstr "" -#: c-parser.c:9269 cp/semantics.c:4324 cp/semantics.c:4394 +#: c-parser.c:9283 cp/semantics.c:4377 cp/semantics.c:4447 #, gcc-internal-format msgid "expected iteration declaration or initialization" msgstr "" -#: c-parser.c:9349 +#: c-parser.c:9363 #, gcc-internal-format msgid "not enough perfectly nested loops" msgstr "" -#: c-parser.c:9402 cp/parser.c:24615 +#: c-parser.c:9416 cp/parser.c:24705 #, gcc-internal-format msgid "collapsed loops not perfectly nested" msgstr "" -#: c-parser.c:9440 cp/parser.c:24459 cp/parser.c:24497 cp/pt.c:11830 +#: c-parser.c:9454 cp/parser.c:24549 cp/parser.c:24587 cp/pt.c:11880 #, gcc-internal-format msgid "iteration variable %qD should not be firstprivate" msgstr "" -#: c-parser.c:9885 +#: c-parser.c:9899 #, gcc-internal-format msgid "%qD is not a variable" msgstr "" -#: c-parser.c:9887 cp/semantics.c:3949 +#: c-parser.c:9901 cp/semantics.c:4002 #, gcc-internal-format msgid "%qE declared %<threadprivate%> after first use" msgstr "" -#: c-parser.c:9889 cp/semantics.c:3951 +#: c-parser.c:9903 cp/semantics.c:4004 #, gcc-internal-format msgid "automatic variable %qE cannot be %<threadprivate%>" msgstr "" -#: c-parser.c:9893 cp/semantics.c:3953 +#: c-parser.c:9907 cp/semantics.c:4006 #, gcc-internal-format msgid "%<threadprivate%> %qE has incomplete type" msgstr "" @@ -14082,7 +14211,7 @@ msgstr "" msgid "%qD has an incomplete type" msgstr "" -#: c-typeck.c:227 cp/call.c:3476 +#: c-typeck.c:227 cp/call.c:3484 #, gcc-internal-format msgid "invalid use of void expression" msgstr "" @@ -14231,12 +14360,12 @@ msgstr "" msgid "too many arguments to method %qE" msgstr "" -#: c-typeck.c:2933 c-family/c-common.c:8032 +#: c-typeck.c:2933 c-family/c-common.c:8033 #, gcc-internal-format msgid "too many arguments to function %qE" msgstr "" -#: c-typeck.c:2936 c-typeck.c:3170 cp/decl2.c:4164 cp/typeck.c:3304 +#: c-typeck.c:2936 c-typeck.c:3170 cp/decl2.c:4169 cp/typeck.c:3304 #, gcc-internal-format msgid "declared here" msgstr "" @@ -14309,12 +14438,12 @@ msgstr "" msgid "passing argument %d of %qE as signed due to prototype" msgstr "" -#: c-typeck.c:3135 cp/call.c:5652 +#: c-typeck.c:3135 cp/call.c:5660 #, gcc-internal-format msgid "implicit conversion from %qT to %qT when passing argument to function" msgstr "" -#: c-typeck.c:3168 c-family/c-common.c:8869 c-family/c-common.c:8918 +#: c-typeck.c:3168 c-family/c-common.c:8871 c-family/c-common.c:8920 #, gcc-internal-format msgid "too few arguments to function %qE" msgstr "" @@ -14349,225 +14478,225 @@ msgstr "" msgid "wrong type argument to unary exclamation mark" msgstr "" -#: c-typeck.c:3577 +#: c-typeck.c:3578 #, gcc-internal-format msgid "increment of enumeration value is invalid in C++" msgstr "" -#: c-typeck.c:3580 +#: c-typeck.c:3581 #, gcc-internal-format msgid "decrement of enumeration value is invalid in C++" msgstr "" -#: c-typeck.c:3593 +#: c-typeck.c:3594 #, gcc-internal-format msgid "ISO C does not support %<++%> and %<--%> on complex types" msgstr "" -#: c-typeck.c:3612 c-typeck.c:3644 +#: c-typeck.c:3613 c-typeck.c:3645 #, gcc-internal-format msgid "wrong type argument to increment" msgstr "" -#: c-typeck.c:3614 c-typeck.c:3647 +#: c-typeck.c:3615 c-typeck.c:3648 #, gcc-internal-format msgid "wrong type argument to decrement" msgstr "" -#: c-typeck.c:3634 +#: c-typeck.c:3635 #, gcc-internal-format msgid "increment of pointer to unknown structure" msgstr "" -#: c-typeck.c:3637 +#: c-typeck.c:3638 #, gcc-internal-format msgid "decrement of pointer to unknown structure" msgstr "" -#: c-typeck.c:3721 +#: c-typeck.c:3722 #, gcc-internal-format msgid "taking address of expression of type %<void%>" msgstr "" -#: c-typeck.c:3891 c-family/c-common.c:8626 +#: c-typeck.c:3892 c-family/c-common.c:8627 #, gcc-internal-format msgid "assignment of read-only location %qE" msgstr "" -#: c-typeck.c:3894 c-family/c-common.c:8627 +#: c-typeck.c:3895 c-family/c-common.c:8628 #, gcc-internal-format msgid "increment of read-only location %qE" msgstr "" -#: c-typeck.c:3897 c-family/c-common.c:8628 +#: c-typeck.c:3898 c-family/c-common.c:8629 #, gcc-internal-format msgid "decrement of read-only location %qE" msgstr "" -#: c-typeck.c:3937 +#: c-typeck.c:3939 #, gcc-internal-format msgid "cannot take address of bit-field %qD" msgstr "" -#: c-typeck.c:3965 +#: c-typeck.c:3967 #, gcc-internal-format msgid "global register variable %qD used in nested function" msgstr "" -#: c-typeck.c:3968 +#: c-typeck.c:3970 #, gcc-internal-format msgid "register variable %qD used in nested function" msgstr "" -#: c-typeck.c:3973 +#: c-typeck.c:3975 #, gcc-internal-format msgid "address of global register variable %qD requested" msgstr "" -#: c-typeck.c:3975 +#: c-typeck.c:3977 #, gcc-internal-format msgid "address of register variable %qD requested" msgstr "" -#: c-typeck.c:4069 +#: c-typeck.c:4071 #, gcc-internal-format msgid "non-lvalue array in conditional expression" msgstr "" -#: c-typeck.c:4125 cp/call.c:4325 +#: c-typeck.c:4127 cp/call.c:4333 #, gcc-internal-format msgid "" "implicit conversion from %qT to %qT to match other result of conditional" msgstr "" -#: c-typeck.c:4199 +#: c-typeck.c:4201 #, gcc-internal-format msgid "ISO C forbids conditional expr with only one void side" msgstr "" -#: c-typeck.c:4216 +#: c-typeck.c:4218 #, gcc-internal-format msgid "pointers to disjoint address spaces used in conditional expression" msgstr "" -#: c-typeck.c:4224 c-typeck.c:4233 +#: c-typeck.c:4226 c-typeck.c:4235 #, gcc-internal-format msgid "ISO C forbids conditional expr between %<void *%> and function pointer" msgstr "" -#: c-typeck.c:4246 +#: c-typeck.c:4248 #, gcc-internal-format msgid "pointer type mismatch in conditional expression" msgstr "" -#: c-typeck.c:4255 c-typeck.c:4266 +#: c-typeck.c:4257 c-typeck.c:4268 #, gcc-internal-format msgid "pointer/integer type mismatch in conditional expression" msgstr "" -#: c-typeck.c:4280 +#: c-typeck.c:4282 #, gcc-internal-format msgid "type mismatch in conditional expression" msgstr "" -#: c-typeck.c:4374 +#: c-typeck.c:4376 #, gcc-internal-format msgid "left-hand operand of comma expression has no effect" msgstr "" -#: c-typeck.c:4444 +#: c-typeck.c:4446 msgid "cast adds %q#v qualifier to function type" msgstr "" -#: c-typeck.c:4450 +#: c-typeck.c:4452 msgid "cast discards %q#v qualifier from pointer target type" msgstr "" -#: c-typeck.c:4485 +#: c-typeck.c:4487 #, gcc-internal-format msgid "" "to be safe all intermediate pointers in cast from %qT to %qT must be %<const" "%> qualified" msgstr "" -#: c-typeck.c:4522 +#: c-typeck.c:4524 #, gcc-internal-format msgid "cast specifies array type" msgstr "" -#: c-typeck.c:4528 +#: c-typeck.c:4530 #, gcc-internal-format msgid "cast specifies function type" msgstr "" -#: c-typeck.c:4544 +#: c-typeck.c:4546 #, gcc-internal-format msgid "ISO C forbids casting nonscalar to the same type" msgstr "" -#: c-typeck.c:4561 +#: c-typeck.c:4563 #, gcc-internal-format msgid "ISO C forbids casts to union type" msgstr "" -#: c-typeck.c:4571 +#: c-typeck.c:4573 #, gcc-internal-format msgid "cast to union type from type not present in union" msgstr "" -#: c-typeck.c:4606 +#: c-typeck.c:4608 #, gcc-internal-format, gfc-internal-format msgid "" "cast to %s address space pointer from disjoint generic address space pointer" msgstr "" -#: c-typeck.c:4611 +#: c-typeck.c:4613 #, gcc-internal-format, gfc-internal-format msgid "" "cast to generic address space pointer from disjoint %s address space pointer" msgstr "" -#: c-typeck.c:4616 +#: c-typeck.c:4618 #, gcc-internal-format, gfc-internal-format msgid "cast to %s address space pointer from disjoint %s address space pointer" msgstr "" -#: c-typeck.c:4636 +#: c-typeck.c:4638 #, gcc-internal-format msgid "cast increases required alignment of target type" msgstr "" -#: c-typeck.c:4647 +#: c-typeck.c:4649 #, gcc-internal-format msgid "cast from pointer to integer of different size" msgstr "" -#: c-typeck.c:4652 +#: c-typeck.c:4654 #, gcc-internal-format msgid "cast from function call of type %qT to non-matching type %qT" msgstr "" -#: c-typeck.c:4661 cp/typeck.c:6376 +#: c-typeck.c:4663 cp/typeck.c:6376 #, gcc-internal-format msgid "cast to pointer from integer of different size" msgstr "" -#: c-typeck.c:4675 +#: c-typeck.c:4677 #, gcc-internal-format msgid "ISO C forbids conversion of function pointer to object pointer type" msgstr "" -#: c-typeck.c:4684 +#: c-typeck.c:4686 #, gcc-internal-format msgid "ISO C forbids conversion of object pointer to function pointer type" msgstr "" -#: c-typeck.c:4767 +#: c-typeck.c:4769 #, gcc-internal-format msgid "defining a type in a cast is invalid in C++" msgstr "" -#: c-typeck.c:4906 c-typeck.c:5203 +#: c-typeck.c:4908 c-typeck.c:5205 #, gcc-internal-format msgid "enum conversion in assignment is invalid in C++" msgstr "" @@ -14579,674 +14708,674 @@ msgstr "" #. strings are complete sentences, visible to gettext and checked at #. compile time. It is the same as WARN_FOR_ASSIGNMENT but with an #. extra parameter to enumerate qualifiers. -#: c-typeck.c:5111 c-typeck.c:5141 c-typeck.c:5668 +#: c-typeck.c:5113 c-typeck.c:5143 c-typeck.c:5670 #, gcc-internal-format msgid "expected %qT but argument is of type %qT" msgstr "" -#: c-typeck.c:5201 +#: c-typeck.c:5203 #, gcc-internal-format msgid "enum conversion when passing argument %d of %qE is invalid in C++" msgstr "" -#: c-typeck.c:5205 c-typeck.c:7760 +#: c-typeck.c:5207 c-typeck.c:7762 #, gcc-internal-format msgid "enum conversion in initialization is invalid in C++" msgstr "" -#: c-typeck.c:5207 +#: c-typeck.c:5209 #, gcc-internal-format msgid "enum conversion in return is invalid in C++" msgstr "" -#: c-typeck.c:5236 +#: c-typeck.c:5238 #, gcc-internal-format msgid "cannot pass rvalue to reference parameter" msgstr "" -#: c-typeck.c:5366 c-typeck.c:5589 +#: c-typeck.c:5368 c-typeck.c:5591 msgid "" "passing argument %d of %qE makes %q#v qualified function pointer from " "unqualified" msgstr "" -#: c-typeck.c:5369 c-typeck.c:5592 +#: c-typeck.c:5371 c-typeck.c:5594 msgid "assignment makes %q#v qualified function pointer from unqualified" msgstr "" -#: c-typeck.c:5372 c-typeck.c:5594 +#: c-typeck.c:5374 c-typeck.c:5596 msgid "initialization makes %q#v qualified function pointer from unqualified" msgstr "" -#: c-typeck.c:5375 c-typeck.c:5596 +#: c-typeck.c:5377 c-typeck.c:5598 msgid "return makes %q#v qualified function pointer from unqualified" msgstr "" -#: c-typeck.c:5382 c-typeck.c:5552 +#: c-typeck.c:5384 c-typeck.c:5554 msgid "" "passing argument %d of %qE discards %qv qualifier from pointer target type" msgstr "" -#: c-typeck.c:5384 c-typeck.c:5554 +#: c-typeck.c:5386 c-typeck.c:5556 msgid "assignment discards %qv qualifier from pointer target type" msgstr "" -#: c-typeck.c:5386 c-typeck.c:5556 +#: c-typeck.c:5388 c-typeck.c:5558 msgid "initialization discards %qv qualifier from pointer target type" msgstr "" -#: c-typeck.c:5388 c-typeck.c:5558 +#: c-typeck.c:5390 c-typeck.c:5560 msgid "return discards %qv qualifier from pointer target type" msgstr "" -#: c-typeck.c:5397 +#: c-typeck.c:5399 #, gcc-internal-format msgid "ISO C prohibits argument conversion to union type" msgstr "" -#: c-typeck.c:5452 +#: c-typeck.c:5454 #, gcc-internal-format msgid "request for implicit conversion from %qT to %qT not permitted in C++" msgstr "" -#: c-typeck.c:5464 +#: c-typeck.c:5466 #, gcc-internal-format msgid "passing argument %d of %qE from pointer to non-enclosed address space" msgstr "" -#: c-typeck.c:5468 +#: c-typeck.c:5470 #, gcc-internal-format msgid "assignment from pointer to non-enclosed address space" msgstr "" -#: c-typeck.c:5472 +#: c-typeck.c:5474 #, gcc-internal-format msgid "initialization from pointer to non-enclosed address space" msgstr "" -#: c-typeck.c:5476 +#: c-typeck.c:5478 #, gcc-internal-format msgid "return from pointer to non-enclosed address space" msgstr "" -#: c-typeck.c:5494 +#: c-typeck.c:5496 #, gcc-internal-format msgid "argument %d of %qE might be a candidate for a format attribute" msgstr "" -#: c-typeck.c:5500 +#: c-typeck.c:5502 #, gcc-internal-format msgid "assignment left-hand side might be a candidate for a format attribute" msgstr "" -#: c-typeck.c:5505 +#: c-typeck.c:5507 #, gcc-internal-format msgid "" "initialization left-hand side might be a candidate for a format attribute" msgstr "" -#: c-typeck.c:5510 cp/typeck.c:7334 +#: c-typeck.c:5512 cp/typeck.c:7334 #, gcc-internal-format msgid "return type might be a candidate for a format attribute" msgstr "" -#: c-typeck.c:5534 +#: c-typeck.c:5536 #, gcc-internal-format msgid "" "ISO C forbids passing argument %d of %qE between function pointer and %<void " "*%>" msgstr "" -#: c-typeck.c:5537 +#: c-typeck.c:5539 #, gcc-internal-format msgid "ISO C forbids assignment between function pointer and %<void *%>" msgstr "" -#: c-typeck.c:5539 +#: c-typeck.c:5541 #, gcc-internal-format msgid "ISO C forbids initialization between function pointer and %<void *%>" msgstr "" -#: c-typeck.c:5541 +#: c-typeck.c:5543 #, gcc-internal-format msgid "ISO C forbids return between function pointer and %<void *%>" msgstr "" -#: c-typeck.c:5570 +#: c-typeck.c:5572 #, gcc-internal-format msgid "pointer targets in passing argument %d of %qE differ in signedness" msgstr "" -#: c-typeck.c:5572 +#: c-typeck.c:5574 #, gcc-internal-format msgid "pointer targets in assignment differ in signedness" msgstr "" -#: c-typeck.c:5574 +#: c-typeck.c:5576 #, gcc-internal-format msgid "pointer targets in initialization differ in signedness" msgstr "" -#: c-typeck.c:5576 +#: c-typeck.c:5578 #, gcc-internal-format msgid "pointer targets in return differ in signedness" msgstr "" -#: c-typeck.c:5605 +#: c-typeck.c:5607 #, gcc-internal-format msgid "passing argument %d of %qE from incompatible pointer type" msgstr "" -#: c-typeck.c:5607 +#: c-typeck.c:5609 #, gcc-internal-format msgid "assignment from incompatible pointer type" msgstr "" -#: c-typeck.c:5608 +#: c-typeck.c:5610 #, gcc-internal-format msgid "initialization from incompatible pointer type" msgstr "" -#: c-typeck.c:5610 +#: c-typeck.c:5612 #, gcc-internal-format msgid "return from incompatible pointer type" msgstr "" #. ??? This should not be an error when inlining calls to #. unprototyped functions. -#: c-typeck.c:5618 c-typeck.c:6168 cp/typeck.c:1852 +#: c-typeck.c:5620 c-typeck.c:6170 cp/typeck.c:1852 #, gcc-internal-format msgid "invalid use of non-lvalue array" msgstr "" -#: c-typeck.c:5628 +#: c-typeck.c:5630 #, gcc-internal-format msgid "passing argument %d of %qE makes pointer from integer without a cast" msgstr "" -#: c-typeck.c:5630 +#: c-typeck.c:5632 #, gcc-internal-format msgid "assignment makes pointer from integer without a cast" msgstr "" -#: c-typeck.c:5632 +#: c-typeck.c:5634 #, gcc-internal-format msgid "initialization makes pointer from integer without a cast" msgstr "" -#: c-typeck.c:5634 +#: c-typeck.c:5636 #, gcc-internal-format msgid "return makes pointer from integer without a cast" msgstr "" -#: c-typeck.c:5642 +#: c-typeck.c:5644 #, gcc-internal-format msgid "passing argument %d of %qE makes integer from pointer without a cast" msgstr "" -#: c-typeck.c:5644 +#: c-typeck.c:5646 #, gcc-internal-format msgid "assignment makes integer from pointer without a cast" msgstr "" -#: c-typeck.c:5646 +#: c-typeck.c:5648 #, gcc-internal-format msgid "initialization makes integer from pointer without a cast" msgstr "" -#: c-typeck.c:5648 +#: c-typeck.c:5650 #, gcc-internal-format msgid "return makes integer from pointer without a cast" msgstr "" -#: c-typeck.c:5665 c-family/c-common.c:8886 config/mep/mep.c:6276 +#: c-typeck.c:5667 c-family/c-common.c:8888 config/mep/mep.c:6276 #, gcc-internal-format msgid "incompatible type for argument %d of %qE" msgstr "" -#: c-typeck.c:5671 +#: c-typeck.c:5673 #, gcc-internal-format msgid "incompatible types when assigning to type %qT from type %qT" msgstr "" -#: c-typeck.c:5676 +#: c-typeck.c:5678 #, gcc-internal-format msgid "incompatible types when initializing type %qT using type %qT" msgstr "" -#: c-typeck.c:5681 +#: c-typeck.c:5683 #, gcc-internal-format msgid "incompatible types when returning type %qT but %qT was expected" msgstr "" -#: c-typeck.c:5745 +#: c-typeck.c:5747 #, gcc-internal-format msgid "traditional C rejects automatic aggregate initialization" msgstr "" -#: c-typeck.c:5919 c-typeck.c:5936 c-typeck.c:5954 +#: c-typeck.c:5921 c-typeck.c:5938 c-typeck.c:5956 #, gcc-internal-format msgid "(near initialization for %qs)" msgstr "" -#: c-typeck.c:5969 +#: c-typeck.c:5971 #, gcc-internal-format msgid "array initialized from parenthesized string constant" msgstr "" -#: c-typeck.c:6042 c-typeck.c:6917 +#: c-typeck.c:6044 c-typeck.c:6919 #, gcc-internal-format msgid "initialization of a flexible array member" msgstr "" -#: c-typeck.c:6052 cp/typeck2.c:815 +#: c-typeck.c:6054 cp/typeck2.c:818 #, gcc-internal-format msgid "char-array initialized from wide string" msgstr "" -#: c-typeck.c:6060 +#: c-typeck.c:6062 #, gcc-internal-format msgid "wide character array initialized from non-wide string" msgstr "" -#: c-typeck.c:6066 +#: c-typeck.c:6068 #, gcc-internal-format msgid "wide character array initialized from incompatible wide string" msgstr "" -#: c-typeck.c:6100 +#: c-typeck.c:6102 #, gcc-internal-format msgid "array of inappropriate type initialized from string constant" msgstr "" -#: c-typeck.c:6194 +#: c-typeck.c:6196 #, gcc-internal-format msgid "array initialized from non-constant array expression" msgstr "" -#: c-typeck.c:6208 c-typeck.c:6211 c-typeck.c:6219 c-typeck.c:6258 -#: c-typeck.c:7733 +#: c-typeck.c:6210 c-typeck.c:6213 c-typeck.c:6221 c-typeck.c:6260 +#: c-typeck.c:7735 #, gcc-internal-format msgid "initializer element is not constant" msgstr "" -#: c-typeck.c:6224 c-typeck.c:6270 c-typeck.c:7743 +#: c-typeck.c:6226 c-typeck.c:6272 c-typeck.c:7745 #, gcc-internal-format msgid "initializer element is not a constant expression" msgstr "" -#: c-typeck.c:6265 c-typeck.c:7738 +#: c-typeck.c:6267 c-typeck.c:7740 #, gcc-internal-format msgid "initializer element is not computable at load time" msgstr "" -#: c-typeck.c:6283 +#: c-typeck.c:6285 #, gcc-internal-format msgid "invalid initializer" msgstr "" -#: c-typeck.c:6557 cp/decl.c:5345 +#: c-typeck.c:6559 cp/decl.c:5352 #, gcc-internal-format msgid "opaque vector types cannot be initialized" msgstr "" -#: c-typeck.c:6772 +#: c-typeck.c:6774 #, gcc-internal-format msgid "extra brace group at end of initializer" msgstr "" -#: c-typeck.c:6793 +#: c-typeck.c:6795 #, gcc-internal-format msgid "missing braces around initializer" msgstr "" -#: c-typeck.c:6854 +#: c-typeck.c:6856 #, gcc-internal-format msgid "braces around scalar initializer" msgstr "" -#: c-typeck.c:6914 +#: c-typeck.c:6916 #, gcc-internal-format msgid "initialization of flexible array member in a nested context" msgstr "" -#: c-typeck.c:6945 +#: c-typeck.c:6947 #, gcc-internal-format msgid "missing initializer" msgstr "" -#: c-typeck.c:6967 +#: c-typeck.c:6969 #, gcc-internal-format msgid "empty scalar initializer" msgstr "" -#: c-typeck.c:6972 +#: c-typeck.c:6974 #, gcc-internal-format msgid "extra elements in scalar initializer" msgstr "" -#: c-typeck.c:7083 c-typeck.c:7164 +#: c-typeck.c:7085 c-typeck.c:7166 #, gcc-internal-format msgid "array index in non-array initializer" msgstr "" -#: c-typeck.c:7088 c-typeck.c:7220 +#: c-typeck.c:7090 c-typeck.c:7222 #, gcc-internal-format msgid "field name not in record or union initializer" msgstr "" -#: c-typeck.c:7137 +#: c-typeck.c:7139 #, gcc-internal-format msgid "array index in initializer not of integer type" msgstr "" -#: c-typeck.c:7146 c-typeck.c:7155 +#: c-typeck.c:7148 c-typeck.c:7157 #, gcc-internal-format msgid "array index in initializer is not an integer constant expression" msgstr "" -#: c-typeck.c:7160 c-typeck.c:7162 +#: c-typeck.c:7162 c-typeck.c:7164 #, gcc-internal-format msgid "nonconstant array index in initializer" msgstr "" -#: c-typeck.c:7166 c-typeck.c:7169 +#: c-typeck.c:7168 c-typeck.c:7171 #, gcc-internal-format msgid "array index in initializer exceeds array bounds" msgstr "" -#: c-typeck.c:7183 +#: c-typeck.c:7185 #, gcc-internal-format msgid "empty index range in initializer" msgstr "" -#: c-typeck.c:7192 +#: c-typeck.c:7194 #, gcc-internal-format msgid "array index range in initializer exceeds array bounds" msgstr "" -#: c-typeck.c:7227 +#: c-typeck.c:7229 #, gcc-internal-format msgid "unknown field %qE specified in initializer" msgstr "" -#: c-typeck.c:7279 c-typeck.c:7306 c-typeck.c:7834 +#: c-typeck.c:7281 c-typeck.c:7308 c-typeck.c:7836 #, gcc-internal-format msgid "initialized field with side-effects overwritten" msgstr "" -#: c-typeck.c:7281 c-typeck.c:7308 c-typeck.c:7836 +#: c-typeck.c:7283 c-typeck.c:7310 c-typeck.c:7838 #, gcc-internal-format msgid "initialized field overwritten" msgstr "" -#: c-typeck.c:8053 +#: c-typeck.c:8055 #, gcc-internal-format msgid "excess elements in char array initializer" msgstr "" -#: c-typeck.c:8060 c-typeck.c:8121 +#: c-typeck.c:8062 c-typeck.c:8123 #, gcc-internal-format msgid "excess elements in struct initializer" msgstr "" -#: c-typeck.c:8136 +#: c-typeck.c:8138 #, gcc-internal-format msgid "non-static initialization of a flexible array member" msgstr "" -#: c-typeck.c:8207 +#: c-typeck.c:8209 #, gcc-internal-format msgid "excess elements in union initializer" msgstr "" -#: c-typeck.c:8229 +#: c-typeck.c:8231 #, gcc-internal-format msgid "traditional C rejects initialization of unions" msgstr "" -#: c-typeck.c:8297 +#: c-typeck.c:8299 #, gcc-internal-format msgid "excess elements in array initializer" msgstr "" -#: c-typeck.c:8331 +#: c-typeck.c:8333 #, gcc-internal-format msgid "excess elements in vector initializer" msgstr "" -#: c-typeck.c:8363 +#: c-typeck.c:8365 #, gcc-internal-format msgid "excess elements in scalar initializer" msgstr "" -#: c-typeck.c:8575 +#: c-typeck.c:8577 #, gcc-internal-format msgid "ISO C forbids %<goto *expr;%>" msgstr "" -#: c-typeck.c:8597 cp/typeck.c:7547 +#: c-typeck.c:8599 cp/typeck.c:7547 #, gcc-internal-format msgid "function declared %<noreturn%> has a %<return%> statement" msgstr "" -#: c-typeck.c:8620 +#: c-typeck.c:8622 #, gcc-internal-format msgid "%<return%> with no value, in function returning non-void" msgstr "" -#: c-typeck.c:8630 +#: c-typeck.c:8632 #, gcc-internal-format msgid "%<return%> with a value, in function returning void" msgstr "" -#: c-typeck.c:8632 +#: c-typeck.c:8634 #, gcc-internal-format msgid "ISO C forbids %<return%> with expression, in function returning void" msgstr "" -#: c-typeck.c:8693 +#: c-typeck.c:8695 #, gcc-internal-format msgid "function returns address of local variable" msgstr "" -#: c-typeck.c:8766 cp/semantics.c:1002 +#: c-typeck.c:8768 cp/semantics.c:1038 #, gcc-internal-format msgid "switch quantity not an integer" msgstr "" -#: c-typeck.c:8779 +#: c-typeck.c:8781 #, gcc-internal-format msgid "%<long%> switch expression not converted to %<int%> in ISO C" msgstr "" -#: c-typeck.c:8815 c-typeck.c:8823 +#: c-typeck.c:8817 c-typeck.c:8825 #, gcc-internal-format msgid "case label is not an integer constant expression" msgstr "" -#: c-typeck.c:8829 cp/parser.c:8232 +#: c-typeck.c:8831 cp/parser.c:8261 #, gcc-internal-format msgid "case label not within a switch statement" msgstr "" -#: c-typeck.c:8831 +#: c-typeck.c:8833 #, gcc-internal-format msgid "%<default%> label not within a switch statement" msgstr "" -#: c-typeck.c:8914 cp/parser.c:8528 +#: c-typeck.c:8916 cp/parser.c:8557 #, gcc-internal-format msgid "suggest explicit braces to avoid ambiguous %<else%>" msgstr "" -#: c-typeck.c:9023 cp/cp-gimplify.c:91 cp/parser.c:9129 +#: c-typeck.c:9025 cp/cp-gimplify.c:91 cp/parser.c:9149 #, gcc-internal-format msgid "break statement not within loop or switch" msgstr "" -#: c-typeck.c:9025 cp/parser.c:9150 +#: c-typeck.c:9027 cp/parser.c:9170 #, gcc-internal-format msgid "continue statement not within a loop" msgstr "" -#: c-typeck.c:9030 cp/parser.c:9140 +#: c-typeck.c:9032 cp/parser.c:9160 #, gcc-internal-format msgid "break statement used with OpenMP for loop" msgstr "" -#: c-typeck.c:9056 cp/cp-gimplify.c:411 +#: c-typeck.c:9058 cp/cp-gimplify.c:411 #, gcc-internal-format msgid "statement with no effect" msgstr "" -#: c-typeck.c:9082 +#: c-typeck.c:9084 #, gcc-internal-format msgid "expression statement has incomplete type" msgstr "" -#: c-typeck.c:9684 cp/typeck.c:3857 +#: c-typeck.c:9686 cp/typeck.c:3857 #, gcc-internal-format msgid "right shift count is negative" msgstr "" -#: c-typeck.c:9695 cp/typeck.c:3864 +#: c-typeck.c:9697 cp/typeck.c:3864 #, gcc-internal-format msgid "right shift count >= width of type" msgstr "" -#: c-typeck.c:9736 cp/typeck.c:3886 +#: c-typeck.c:9738 cp/typeck.c:3886 #, gcc-internal-format msgid "left shift count is negative" msgstr "" -#: c-typeck.c:9743 cp/typeck.c:3892 +#: c-typeck.c:9745 cp/typeck.c:3892 #, gcc-internal-format msgid "left shift count >= width of type" msgstr "" -#: c-typeck.c:9764 cp/typeck.c:3938 +#: c-typeck.c:9766 cp/typeck.c:3938 #, gcc-internal-format msgid "comparing floating point with == or != is unsafe" msgstr "" -#: c-typeck.c:9781 c-typeck.c:9801 +#: c-typeck.c:9783 c-typeck.c:9803 #, gcc-internal-format msgid "" "the comparison will always evaluate as %<false%> for the address of %qD will " "never be NULL" msgstr "" -#: c-typeck.c:9787 c-typeck.c:9807 +#: c-typeck.c:9789 c-typeck.c:9809 #, gcc-internal-format msgid "" "the comparison will always evaluate as %<true%> for the address of %qD will " "never be NULL" msgstr "" -#: c-typeck.c:9828 c-typeck.c:9903 +#: c-typeck.c:9830 c-typeck.c:9905 #, gcc-internal-format msgid "comparison of pointers to disjoint address spaces" msgstr "" -#: c-typeck.c:9835 c-typeck.c:9841 +#: c-typeck.c:9837 c-typeck.c:9843 #, gcc-internal-format msgid "ISO C forbids comparison of %<void *%> with function pointer" msgstr "" -#: c-typeck.c:9848 c-typeck.c:9913 +#: c-typeck.c:9850 c-typeck.c:9915 #, gcc-internal-format msgid "comparison of distinct pointer types lacks a cast" msgstr "" -#: c-typeck.c:9860 c-typeck.c:9865 c-typeck.c:9939 c-typeck.c:9944 +#: c-typeck.c:9862 c-typeck.c:9867 c-typeck.c:9941 c-typeck.c:9946 #, gcc-internal-format msgid "comparison between pointer and integer" msgstr "" -#: c-typeck.c:9891 +#: c-typeck.c:9893 #, gcc-internal-format msgid "comparison of complete and incomplete pointers" msgstr "" -#: c-typeck.c:9893 +#: c-typeck.c:9895 #, gcc-internal-format msgid "ISO C forbids ordered comparisons of pointers to functions" msgstr "" -#: c-typeck.c:9898 +#: c-typeck.c:9900 #, gcc-internal-format msgid "ordered comparison of pointer with null pointer" msgstr "" -#: c-typeck.c:9921 c-typeck.c:9924 c-typeck.c:9931 c-typeck.c:9934 +#: c-typeck.c:9923 c-typeck.c:9926 c-typeck.c:9933 c-typeck.c:9936 #, gcc-internal-format msgid "ordered comparison of pointer with integer zero" msgstr "" -#: c-typeck.c:9978 cp/typeck.c:4251 +#: c-typeck.c:9980 cp/typeck.c:4251 #, gcc-internal-format msgid "" "implicit conversion from %qT to %qT to match other operand of binary " "expression" msgstr "" -#: c-typeck.c:10260 +#: c-typeck.c:10262 #, gcc-internal-format msgid "used array that cannot be converted to pointer where scalar is required" msgstr "" -#: c-typeck.c:10264 +#: c-typeck.c:10266 #, gcc-internal-format msgid "used struct type value where scalar is required" msgstr "" -#: c-typeck.c:10268 +#: c-typeck.c:10270 #, gcc-internal-format msgid "used union type value where scalar is required" msgstr "" -#: c-typeck.c:10425 cp/semantics.c:3832 +#: c-typeck.c:10431 cp/semantics.c:3885 #, gcc-internal-format msgid "%qE has invalid type for %<reduction%>" msgstr "" -#: c-typeck.c:10460 cp/semantics.c:3845 +#: c-typeck.c:10466 cp/semantics.c:3898 #, gcc-internal-format msgid "%qE has invalid type for %<reduction(%s)%>" msgstr "" -#: c-typeck.c:10477 cp/semantics.c:3855 +#: c-typeck.c:10483 cp/semantics.c:3908 #, gcc-internal-format msgid "%qE must be %<threadprivate%> for %<copyin%>" msgstr "" -#: c-typeck.c:10487 cp/semantics.c:3652 +#: c-typeck.c:10493 cp/semantics.c:3705 #, gcc-internal-format msgid "%qE is not a variable in clause %qs" msgstr "" -#: c-typeck.c:10495 c-typeck.c:10517 c-typeck.c:10539 +#: c-typeck.c:10501 c-typeck.c:10523 c-typeck.c:10545 #, gcc-internal-format msgid "%qE appears more than once in data clauses" msgstr "" -#: c-typeck.c:10510 cp/semantics.c:3675 +#: c-typeck.c:10516 cp/semantics.c:3728 #, gcc-internal-format msgid "%qE is not a variable in clause %<firstprivate%>" msgstr "" -#: c-typeck.c:10532 cp/semantics.c:3697 +#: c-typeck.c:10538 cp/semantics.c:3750 #, gcc-internal-format msgid "%qE is not a variable in clause %<lastprivate%>" msgstr "" -#: c-typeck.c:10594 cp/semantics.c:3896 +#: c-typeck.c:10600 cp/semantics.c:3949 #, gcc-internal-format msgid "%qE is predetermined %qs for %qs" msgstr "" -#: c-typeck.c:10683 +#: c-typeck.c:10689 #, gcc-internal-format msgid "C++ requires promoted type, not enum type, in %<va_arg%>" msgstr "" @@ -15256,17 +15385,17 @@ msgstr "" msgid "function call has aggregate value" msgstr "" -#: cfgexpand.c:1106 function.c:1001 varasm.c:1960 +#: cfgexpand.c:1106 function.c:1015 varasm.c:1990 #, gcc-internal-format msgid "size of variable %q+D is too large" msgstr "" -#: cfgexpand.c:3974 +#: cfgexpand.c:4025 #, gcc-internal-format msgid "stack protector not protecting local variables: variable length buffer" msgstr "" -#: cfgexpand.c:3978 +#: cfgexpand.c:4029 #, gcc-internal-format, gfc-internal-format msgid "" "stack protector not protecting function: all local arrays are less than %d " @@ -15673,211 +15802,231 @@ msgstr "" msgid "number of bb notes in insn chain (%d) != n_basic_blocks (%d)" msgstr "" -#: cgraph.c:2041 +#: cgraph.c:2052 #, gcc-internal-format msgid "%D renamed after being referenced in assembly" msgstr "" -#: cgraphunit.c:415 +#: cgraphunit.c:416 #, gcc-internal-format msgid "caller edge count is negative" msgstr "" -#: cgraphunit.c:420 +#: cgraphunit.c:421 #, gcc-internal-format msgid "caller edge frequency is negative" msgstr "" -#: cgraphunit.c:425 +#: cgraphunit.c:426 #, gcc-internal-format msgid "caller edge frequency is too large" msgstr "" -#: cgraphunit.c:434 +#: cgraphunit.c:435 #, gcc-internal-format, gfc-internal-format -msgid "caller edge frequency %i does not match BB freqency %i" +msgid "caller edge frequency %i does not match BB frequency %i" msgstr "" -#: cgraphunit.c:463 +#: cgraphunit.c:471 #, gcc-internal-format, gfc-internal-format msgid "aux field set for edge %s->%s" msgstr "" -#: cgraphunit.c:470 +#: cgraphunit.c:478 #, gcc-internal-format msgid "execution count is negative" msgstr "" -#: cgraphunit.c:475 +#: cgraphunit.c:483 #, gcc-internal-format msgid "externally visible inline clone" msgstr "" -#: cgraphunit.c:480 +#: cgraphunit.c:488 #, gcc-internal-format msgid "inline clone with address taken" msgstr "" -#: cgraphunit.c:485 +#: cgraphunit.c:493 #, gcc-internal-format msgid "inline clone is needed" msgstr "" -#: cgraphunit.c:492 +#: cgraphunit.c:500 #, gcc-internal-format, gfc-internal-format msgid "aux field set for indirect edge from %s" msgstr "" -#: cgraphunit.c:499 +#: cgraphunit.c:507 #, gcc-internal-format, gfc-internal-format msgid "" "An indirect edge from %s is not marked as indirect or has associated " "indirect_info, the corresponding statement is: " msgstr "" -#: cgraphunit.c:516 +#: cgraphunit.c:524 #, gcc-internal-format msgid "inlined_to pointer is wrong" msgstr "" -#: cgraphunit.c:521 +#: cgraphunit.c:529 #, gcc-internal-format msgid "multiple inline callers" msgstr "" -#: cgraphunit.c:528 +#: cgraphunit.c:536 #, gcc-internal-format msgid "inlined_to pointer set for noninline callers" msgstr "" -#: cgraphunit.c:537 +#: cgraphunit.c:545 #, gcc-internal-format msgid "inlined_to pointer is set but no predecessors found" msgstr "" -#: cgraphunit.c:542 +#: cgraphunit.c:550 #, gcc-internal-format msgid "inlined_to pointer refers to itself" msgstr "" -#: cgraphunit.c:548 +#: cgraphunit.c:556 #, gcc-internal-format msgid "node not found in cgraph_hash" msgstr "" -#: cgraphunit.c:560 +#: cgraphunit.c:568 #, gcc-internal-format msgid "node has wrong clone_of" msgstr "" -#: cgraphunit.c:572 +#: cgraphunit.c:580 #, gcc-internal-format msgid "node has wrong clone list" msgstr "" -#: cgraphunit.c:578 +#: cgraphunit.c:586 #, gcc-internal-format msgid "node is in clone list but it is not clone" msgstr "" -#: cgraphunit.c:583 +#: cgraphunit.c:591 #, gcc-internal-format msgid "node has wrong prev_clone pointer" msgstr "" -#: cgraphunit.c:588 +#: cgraphunit.c:596 #, gcc-internal-format msgid "double linked list of clones corrupted" msgstr "" -#: cgraphunit.c:597 +#: cgraphunit.c:605 #, gcc-internal-format msgid "non-DECL_ONE_ONLY node in a same_comdat_group list" msgstr "" -#: cgraphunit.c:602 +#: cgraphunit.c:610 #, gcc-internal-format msgid "node is alone in a comdat group" msgstr "" -#: cgraphunit.c:609 +#: cgraphunit.c:617 #, gcc-internal-format msgid "same_comdat_group is not a circular list" msgstr "" -#: cgraphunit.c:644 +#: cgraphunit.c:652 #, gcc-internal-format msgid "shared call_stmt:" msgstr "" -#: cgraphunit.c:652 +#: cgraphunit.c:662 #, gcc-internal-format msgid "edge points to same body alias:" msgstr "" -#: cgraphunit.c:664 +#: cgraphunit.c:674 #, gcc-internal-format msgid "edge points to wrong declaration:" msgstr "" -#: cgraphunit.c:673 +#: cgraphunit.c:685 +#, gcc-internal-format +msgid "a call to thunk improperly represented in the call graph:" +msgstr "" + +#: cgraphunit.c:693 #, gcc-internal-format msgid "" "an indirect edge with unknown callee corresponding to a call_stmt with a " "known declaration:" msgstr "" -#: cgraphunit.c:683 +#: cgraphunit.c:703 #, gcc-internal-format msgid "missing callgraph edge for call stmt:" msgstr "" -#: cgraphunit.c:699 +#: cgraphunit.c:719 #, gcc-internal-format, gfc-internal-format msgid "edge %s->%s has no corresponding call_stmt" msgstr "" -#: cgraphunit.c:711 +#: cgraphunit.c:731 #, gcc-internal-format, gfc-internal-format msgid "an indirect edge from %s has no corresponding call_stmt" msgstr "" -#: cgraphunit.c:722 +#: cgraphunit.c:742 #, gcc-internal-format msgid "verify_cgraph_node failed" msgstr "" -#: cgraphunit.c:830 cgraphunit.c:856 +#: cgraphunit.c:817 +#, gcc-internal-format +msgid "%<weakref%> attribute should be accompanied with an %<alias%> attribute" +msgstr "" + +#: cgraphunit.c:872 cgraphunit.c:909 #, gcc-internal-format msgid "%<externally_visible%> attribute have effect only on public objects" msgstr "" -#: cgraphunit.c:1102 cgraphunit.c:1128 +#: cgraphunit.c:881 +#, gcc-internal-format +msgid "%<weakref%> attribute ignored because function is defined" +msgstr "" + +#: cgraphunit.c:919 +#, gcc-internal-format +msgid "%<weakref%> attribute ignored because variable is initialized" +msgstr "" + +#: cgraphunit.c:1167 cgraphunit.c:1193 #, gcc-internal-format msgid "failed to reclaim unneeded function" msgstr "" -#: cgraphunit.c:1859 +#: cgraphunit.c:1931 #, gcc-internal-format msgid "nodes with unreleased memory found" msgstr "" -#: collect2.c:1487 opts.c:795 +#: collect2.c:1489 opts.c:801 #, gcc-internal-format msgid "LTO support has not been enabled in this configuration" msgstr "" -#: collect2.c:1575 +#: collect2.c:1577 #, gcc-internal-format, gfc-internal-format msgid "unknown demangling style '%s'" msgstr "" -#: collect2.c:1970 +#: collect2.c:1972 #, gcc-internal-format, gfc-internal-format msgid "%s terminated with signal %d [%s]%s" msgstr "" -#: collect2.c:2790 +#: collect2.c:2792 #, gcc-internal-format msgid "cannot find 'ldd'" msgstr "" @@ -16059,32 +16208,32 @@ msgid "" "cfi_personality directive" msgstr "" -#: dwarf2out.c:5654 +#: dwarf2out.c:5730 #, gcc-internal-format, gfc-internal-format msgid "DW_LOC_OP %s not implemented" msgstr "" -#: dwarf2out.c:13630 +#: dwarf2out.c:13716 #, gcc-internal-format, gfc-internal-format msgid "non-delegitimized UNSPEC %d found in variable location" msgstr "" -#: emit-rtl.c:2473 +#: emit-rtl.c:2480 #, gcc-internal-format msgid "invalid rtl sharing found in the insn" msgstr "" -#: emit-rtl.c:2475 +#: emit-rtl.c:2482 #, gcc-internal-format msgid "shared rtx" msgstr "" -#: emit-rtl.c:2477 +#: emit-rtl.c:2484 #, gcc-internal-format msgid "internal consistency failure" msgstr "" -#: emit-rtl.c:3584 +#: emit-rtl.c:3591 #, gcc-internal-format msgid "ICE: emit_insn used where emit_jump_insn needed:\n" msgstr "" @@ -16094,89 +16243,89 @@ msgstr "" msgid "abort in %s, at %s:%d" msgstr "" -#: except.c:2000 +#: except.c:2021 #, gcc-internal-format msgid "argument of %<__builtin_eh_return_regno%> must be constant" msgstr "" -#: except.c:2137 +#: except.c:2158 #, gcc-internal-format msgid "__builtin_eh_return not supported on this target" msgstr "" -#: except.c:3305 except.c:3330 +#: except.c:3329 except.c:3354 #, gcc-internal-format, gfc-internal-format msgid "region_array is corrupted for region %i" msgstr "" -#: except.c:3318 except.c:3349 +#: except.c:3342 except.c:3373 #, gcc-internal-format, gfc-internal-format msgid "lp_array is corrupted for lp %i" msgstr "" -#: except.c:3335 +#: except.c:3359 #, gcc-internal-format, gfc-internal-format msgid "outer block of region %i is wrong" msgstr "" -#: except.c:3340 +#: except.c:3364 #, gcc-internal-format, gfc-internal-format msgid "negative nesting depth of region %i" msgstr "" -#: except.c:3354 +#: except.c:3378 #, gcc-internal-format, gfc-internal-format msgid "region of lp %i is wrong" msgstr "" -#: except.c:3381 +#: except.c:3405 #, gcc-internal-format, gfc-internal-format msgid "tree list ends on depth %i" msgstr "" -#: except.c:3386 +#: except.c:3410 #, gcc-internal-format msgid "region_array does not match region_tree" msgstr "" -#: except.c:3391 +#: except.c:3415 #, gcc-internal-format msgid "lp_array does not match region_tree" msgstr "" -#: except.c:3398 +#: except.c:3422 #, gcc-internal-format msgid "verify_eh_tree failed" msgstr "" -#: explow.c:1458 +#: explow.c:1428 #, gcc-internal-format msgid "stack limits not supported on this target" msgstr "" -#: expmed.c:1779 +#: expmed.c:1778 #, gcc-internal-format msgid "" "multiple accesses to volatile structure member because of packed attribute" msgstr "" -#: expmed.c:1783 +#: expmed.c:1782 #, gcc-internal-format msgid "" "multiple accesses to volatile structure bitfield because of packed attribute" msgstr "" -#: expmed.c:1793 +#: expmed.c:1792 #, gcc-internal-format msgid "mis-aligned access used for structure member" msgstr "" -#: expmed.c:1796 +#: expmed.c:1795 #, gcc-internal-format msgid "mis-aligned access used for structure bitfield" msgstr "" -#: expmed.c:1802 +#: expmed.c:1801 #, gcc-internal-format msgid "" "when a volatile object spans multiple type-sized locations, the compiler " @@ -16185,32 +16334,32 @@ msgid "" "code may fail at runtime if the hardware does not allow this access" msgstr "" -#: expr.c:9281 +#: expr.c:9304 #, gcc-internal-format msgid "%Kcall to %qs declared with attribute error: %s" msgstr "" -#: expr.c:9288 +#: expr.c:9311 #, gcc-internal-format msgid "%Kcall to %qs declared with attribute warning: %s" msgstr "" -#: final.c:1463 +#: final.c:1470 #, gcc-internal-format msgid "invalid argument %qs to -fdebug-prefix-map" msgstr "" -#: final.c:1576 +#: final.c:1583 #, gcc-internal-format msgid "the frame size of %wd bytes is larger than %wd bytes" msgstr "" -#: final.c:4366 toplev.c:1403 tree-optimize.c:171 +#: final.c:4376 toplev.c:1407 tree-optimize.c:171 #, gcc-internal-format msgid "could not open final insn dump file %qs: %m" msgstr "" -#: final.c:4427 tree-optimize.c:187 +#: final.c:4440 tree-optimize.c:187 #, gcc-internal-format msgid "could not close final insn dump file %qs: %m" msgstr "" @@ -16280,162 +16429,162 @@ msgstr "" msgid "total size of local objects too large" msgstr "" -#: function.c:1732 gimplify.c:5061 +#: function.c:1746 gimplify.c:5061 #, gcc-internal-format msgid "impossible constraint in %<asm%>" msgstr "" -#: function.c:3936 +#: function.c:3985 #, gcc-internal-format msgid "variable %q+D might be clobbered by %<longjmp%> or %<vfork%>" msgstr "" -#: function.c:3957 +#: function.c:4006 #, gcc-internal-format msgid "argument %q+D might be clobbered by %<longjmp%> or %<vfork%>" msgstr "" -#: function.c:4443 +#: function.c:4492 #, gcc-internal-format msgid "function returns an aggregate" msgstr "" -#: function.c:4837 +#: function.c:4886 #, gcc-internal-format msgid "unused parameter %q+D" msgstr "" -#: gcc.c:1682 gcc.c:1702 +#: gcc.c:1699 gcc.c:1719 #, gcc-internal-format, gfc-internal-format msgid "specs %%include syntax malformed after %ld characters" msgstr "" -#: gcc.c:1728 gcc.c:1737 gcc.c:1747 gcc.c:1757 +#: gcc.c:1745 gcc.c:1754 gcc.c:1764 gcc.c:1774 #, gcc-internal-format, gfc-internal-format msgid "specs %%rename syntax malformed after %ld characters" msgstr "" -#: gcc.c:1767 +#: gcc.c:1784 #, gcc-internal-format, gfc-internal-format msgid "specs %s spec was not found to be renamed" msgstr "" -#: gcc.c:1774 +#: gcc.c:1791 #, gcc-internal-format msgid "%s: attempt to rename spec %qs to already defined spec %qs" msgstr "" -#: gcc.c:1795 +#: gcc.c:1812 #, gcc-internal-format, gfc-internal-format msgid "specs unknown %% command after %ld characters" msgstr "" -#: gcc.c:1806 gcc.c:1819 +#: gcc.c:1823 gcc.c:1836 #, gcc-internal-format, gfc-internal-format msgid "specs file malformed after %ld characters" msgstr "" -#: gcc.c:1871 +#: gcc.c:1888 #, gcc-internal-format msgid "spec file has no spec for linking" msgstr "" -#: gcc.c:2400 +#: gcc.c:2417 #, gcc-internal-format msgid "system path %qs is not absolute" msgstr "" -#: gcc.c:2477 +#: gcc.c:2494 #, gcc-internal-format msgid "-pipe not supported" msgstr "" -#: gcc.c:2593 +#: gcc.c:2617 #, gcc-internal-format msgid "pex_init failed: %m" msgstr "" -#: gcc.c:2632 +#: gcc.c:2656 #, gcc-internal-format msgid "failed to get exit status: %m" msgstr "" -#: gcc.c:2638 +#: gcc.c:2662 #, gcc-internal-format msgid "failed to get process times: %m" msgstr "" -#: gcc.c:2664 +#: gcc.c:2688 #, gcc-internal-format, gfc-internal-format msgid "%s (program %s)" msgstr "" -#: gcc.c:3072 opts-common.c:947 opts-common.c:1019 +#: gcc.c:3097 opts-common.c:958 opts-common.c:1030 #, gcc-internal-format msgid "unrecognized command line option %qs" msgstr "" -#: gcc.c:3328 +#: gcc.c:3358 #, gcc-internal-format msgid "%qs is an unknown -save-temps option" msgstr "" -#: gcc.c:3786 +#: gcc.c:3816 #, gcc-internal-format msgid "-pipe ignored because -save-temps specified" msgstr "" -#: gcc.c:3872 +#: gcc.c:3902 #, gcc-internal-format msgid "%<-x %s%> after last input file has no effect" msgstr "" -#: gcc.c:4037 +#: gcc.c:4069 #, gcc-internal-format msgid "unable to locate default linker script %qs in the library search paths" msgstr "" -#: gcc.c:4240 +#: gcc.c:4272 #, gcc-internal-format msgid "switch %qs does not start with %<-%>" msgstr "" -#: gcc.c:4243 +#: gcc.c:4275 #, gcc-internal-format msgid "spec-generated switch is just %<-%>" msgstr "" -#: gcc.c:4334 +#: gcc.c:4366 #, gcc-internal-format, gfc-internal-format msgid "could not open temporary response file %s" msgstr "" -#: gcc.c:4340 +#: gcc.c:4372 #, gcc-internal-format, gfc-internal-format msgid "could not write to temporary response file %s" msgstr "" -#: gcc.c:4346 +#: gcc.c:4378 #, gcc-internal-format, gfc-internal-format msgid "could not close temporary response file %s" msgstr "" -#: gcc.c:4465 +#: gcc.c:4501 #, gcc-internal-format msgid "spec %qs invalid" msgstr "" -#: gcc.c:4614 +#: gcc.c:4650 #, gcc-internal-format msgid "spec %qs has invalid %<%%0%c%>" msgstr "" -#: gcc.c:4925 +#: gcc.c:4961 #, gcc-internal-format msgid "spec %qs has invalid %<%%W%c%>" msgstr "" -#: gcc.c:4947 +#: gcc.c:4983 #, gcc-internal-format msgid "spec %qs has invalid %<%%x%c%>" msgstr "" @@ -16443,230 +16592,230 @@ msgstr "" #. Catch the case where a spec string contains something like #. '%{foo:%*}'. i.e. there is no * in the pattern on the left #. hand side of the :. -#: gcc.c:5127 +#: gcc.c:5171 #, gcc-internal-format msgid "spec failure: %<%%*%> has not been initialized by pattern match" msgstr "" -#: gcc.c:5136 +#: gcc.c:5180 #, gcc-internal-format, gfc-internal-format msgid "use of obsolete %%[ operator in specs" msgstr "" -#: gcc.c:5217 +#: gcc.c:5261 #, gcc-internal-format msgid "spec failure: unrecognized spec option %qc" msgstr "" -#: gcc.c:5277 +#: gcc.c:5321 #, gcc-internal-format msgid "unknown spec function %qs" msgstr "" -#: gcc.c:5295 +#: gcc.c:5339 #, gcc-internal-format msgid "error in args to spec function %qs" msgstr "" -#: gcc.c:5343 +#: gcc.c:5387 #, gcc-internal-format msgid "malformed spec function name" msgstr "" #. ) -#: gcc.c:5346 +#: gcc.c:5390 #, gcc-internal-format msgid "no arguments for spec function" msgstr "" -#: gcc.c:5365 +#: gcc.c:5409 #, gcc-internal-format msgid "malformed spec function arguments" msgstr "" -#: gcc.c:5611 +#: gcc.c:5655 #, gcc-internal-format msgid "braced spec %qs is invalid at %qc" msgstr "" -#: gcc.c:5699 +#: gcc.c:5743 #, gcc-internal-format msgid "braced spec body %qs is invalid" msgstr "" -#: gcc.c:5948 +#: gcc.c:5992 #, gcc-internal-format, gfc-internal-format msgid "%s: could not determine length of compare-debug file %s" msgstr "" -#: gcc.c:5959 +#: gcc.c:6003 #, gcc-internal-format, gfc-internal-format msgid "%s: -fcompare-debug failure (length)" msgstr "" -#: gcc.c:5969 gcc.c:6010 +#: gcc.c:6013 gcc.c:6054 #, gcc-internal-format, gfc-internal-format msgid "%s: could not open compare-debug file %s" msgstr "" -#: gcc.c:5989 gcc.c:6026 +#: gcc.c:6033 gcc.c:6070 #, gcc-internal-format, gfc-internal-format msgid "%s: -fcompare-debug failure" msgstr "" -#: gcc.c:6100 +#: gcc.c:6144 #, gcc-internal-format msgid "atexit failed" msgstr "" -#: gcc.c:6279 +#: gcc.c:6323 #, gcc-internal-format msgid "spec failure: more than one arg to SYSROOT_SUFFIX_SPEC" msgstr "" -#: gcc.c:6302 +#: gcc.c:6346 #, gcc-internal-format msgid "spec failure: more than one arg to SYSROOT_HEADERS_SUFFIX_SPEC" msgstr "" -#: gcc.c:6412 +#: gcc.c:6456 #, gcc-internal-format msgid "unrecognized option %<-%s%>" msgstr "" #. The error status indicates that only one set of fixed #. headers should be built. -#: gcc.c:6489 +#: gcc.c:6533 #, gcc-internal-format msgid "not configured with sysroot headers suffix" msgstr "" -#: gcc.c:6572 +#: gcc.c:6616 #, gcc-internal-format msgid "no input files" msgstr "" -#: gcc.c:6618 +#: gcc.c:6665 #, gcc-internal-format msgid "cannot specify -o with -c, -S or -E with multiple files" msgstr "" -#: gcc.c:6648 +#: gcc.c:6695 #, gcc-internal-format, gfc-internal-format msgid "%s: %s compiler not installed on this system" msgstr "" -#: gcc.c:6672 +#: gcc.c:6719 #, gcc-internal-format msgid "recompiling with -fcompare-debug" msgstr "" -#: gcc.c:6688 +#: gcc.c:6735 #, gcc-internal-format msgid "during -fcompare-debug recompilation" msgstr "" -#: gcc.c:6697 +#: gcc.c:6744 #, gcc-internal-format msgid "comparing final insns dumps" msgstr "" -#: gcc.c:6788 +#: gcc.c:6844 #, gcc-internal-format msgid "-fuse-linker-plugin, but " msgstr "" -#: gcc.c:6817 +#: gcc.c:6873 #, gcc-internal-format, gfc-internal-format msgid "%s: linker input file unused because linking not done" msgstr "" -#: gcc.c:6857 +#: gcc.c:6914 #, gcc-internal-format, gfc-internal-format msgid "language %s not recognized" msgstr "" -#: gcc.c:6928 +#: gcc.c:6985 #, gcc-internal-format msgid "%s: %m" msgstr "" -#: gcc.c:7083 +#: gcc.c:7140 #, gcc-internal-format msgid "multilib spec %qs is invalid" msgstr "" -#: gcc.c:7275 +#: gcc.c:7332 #, gcc-internal-format msgid "multilib exclusions %qs is invalid" msgstr "" -#: gcc.c:7333 gcc.c:7474 +#: gcc.c:7390 gcc.c:7531 #, gcc-internal-format msgid "multilib select %qs is invalid" msgstr "" -#: gcc.c:7512 +#: gcc.c:7569 #, gcc-internal-format msgid "multilib exclusion %qs is invalid" msgstr "" -#: gcc.c:7718 +#: gcc.c:7775 #, gcc-internal-format msgid "environment variable %qs not defined" msgstr "" -#: gcc.c:7830 gcc.c:7835 +#: gcc.c:7887 gcc.c:7892 #, gcc-internal-format msgid "invalid version number %qs" msgstr "" -#: gcc.c:7878 +#: gcc.c:7935 #, gcc-internal-format, gfc-internal-format msgid "too few arguments to %%:version-compare" msgstr "" -#: gcc.c:7884 +#: gcc.c:7941 #, gcc-internal-format, gfc-internal-format msgid "too many arguments to %%:version-compare" msgstr "" -#: gcc.c:7925 +#: gcc.c:7982 #, gcc-internal-format msgid "unknown operator %qs in %%:version-compare" msgstr "" -#: gcc.c:8038 +#: gcc.c:8095 #, gcc-internal-format, gfc-internal-format msgid "too many arguments to %%:compare-debug-dump-opt" msgstr "" -#: gcc.c:8106 +#: gcc.c:8163 #, gcc-internal-format, gfc-internal-format msgid "too many arguments to %%:compare-debug-self-opt" msgstr "" -#: gcc.c:8141 +#: gcc.c:8198 #, gcc-internal-format, gfc-internal-format msgid "too few arguments to %%:compare-debug-auxbase-opt" msgstr "" -#: gcc.c:8144 +#: gcc.c:8201 #, gcc-internal-format, gfc-internal-format msgid "too many arguments to %%:compare-debug-auxbase-opt" msgstr "" -#: gcc.c:8151 +#: gcc.c:8208 #, gcc-internal-format, gfc-internal-format msgid "argument to %%:compare-debug-auxbase-opt does not end in .gk" msgstr "" -#: gcse.c:5105 +#: gcse.c:5176 #, gcc-internal-format, gfc-internal-format msgid "%s: %d basic blocks and %d edges/basic block" msgstr "" -#: gcse.c:5118 +#: gcse.c:5189 #, gcc-internal-format, gfc-internal-format msgid "%s: %d basic blocks and %d registers" msgstr "" @@ -16739,108 +16888,108 @@ msgstr "" msgid "memory input %d is not directly addressable" msgstr "" -#: gimplify.c:5551 +#: gimplify.c:5552 #, gcc-internal-format msgid "threadprivate variable %qE used in untied task" msgstr "" -#: gimplify.c:5552 gimplify.c:5614 +#: gimplify.c:5553 gimplify.c:5615 #, gcc-internal-format msgid "enclosing task" msgstr "" -#: gimplify.c:5611 +#: gimplify.c:5612 #, gcc-internal-format msgid "%qE not specified in enclosing parallel" msgstr "" -#: gimplify.c:5616 +#: gimplify.c:5617 #, gcc-internal-format msgid "enclosing parallel" msgstr "" -#: gimplify.c:5721 +#: gimplify.c:5722 #, gcc-internal-format msgid "iteration variable %qE should be private" msgstr "" -#: gimplify.c:5735 +#: gimplify.c:5736 #, gcc-internal-format msgid "iteration variable %qE should not be firstprivate" msgstr "" -#: gimplify.c:5738 +#: gimplify.c:5739 #, gcc-internal-format msgid "iteration variable %qE should not be reduction" msgstr "" -#: gimplify.c:5901 +#: gimplify.c:5902 #, gcc-internal-format msgid "%s variable %qE is private in outer context" msgstr "" -#: gimplify.c:7494 +#: gimplify.c:7495 #, gcc-internal-format msgid "gimplification failed" msgstr "" -#: godump.c:843 +#: godump.c:1040 #, gcc-internal-format msgid "could not close Go dump file: %m" msgstr "" -#: godump.c:855 +#: godump.c:1052 #, gcc-internal-format msgid "could not open Go dump file %qs: %m" msgstr "" -#: graph.c:411 toplev.c:1513 java/jcf-parse.c:1751 java/jcf-parse.c:1890 -#: objc/objc-act.c:591 +#: graph.c:411 toplev.c:1517 java/jcf-parse.c:1751 java/jcf-parse.c:1890 +#: objc/objc-act.c:477 #, gcc-internal-format msgid "can%'t open %s: %m" msgstr "" -#: graphite-clast-to-gimple.c:1242 graphite-poly.c:706 toplev.c:928 +#: graphite-clast-to-gimple.c:1228 graphite-poly.c:691 toplev.c:928 #: toplev.c:1115 #, gcc-internal-format msgid "can%'t open %s for writing: %m" msgstr "" -#: graphite-poly.c:608 +#: graphite-poly.c:593 #, gcc-internal-format msgid "the file is not in OpenScop format" msgstr "" -#: graphite-poly.c:619 +#: graphite-poly.c:604 #, gcc-internal-format msgid "the language is not recognized" msgstr "" -#: graphite-poly.c:630 +#: graphite-poly.c:615 #, gcc-internal-format msgid "" "parameters number in the scop file is different from the internal scop " "parameter number" msgstr "" -#: graphite-poly.c:643 +#: graphite-poly.c:628 #, gcc-internal-format msgid "" "number of statements in the OpenScop file does not match the graphite " "internal statements number" msgstr "" -#: graphite-poly.c:734 +#: graphite-poly.c:719 #, gcc-internal-format msgid "can%'t open %s for reading: %m" msgstr "" -#: graphite-poly.c:757 +#: graphite-poly.c:742 #, gcc-internal-format, gfc-internal-format msgid "the graphite file read for scop %d does not contain a legal transform" msgstr "" -#: graphite.c:300 toplev.c:1322 +#: graphite.c:286 #, gcc-internal-format msgid "Graphite loop optimizations cannot be used" msgstr "" @@ -16853,12 +17002,12 @@ msgstr "" msgid "ipa reference summary is missing in ltrans unit" msgstr "" -#: ira.c:1385 ira.c:1398 ira.c:1412 +#: ira.c:1377 ira.c:1390 ira.c:1404 #, gcc-internal-format, gfc-internal-format msgid "%s cannot be used in asm here" msgstr "" -#: lto-cgraph.c:1070 +#: lto-cgraph.c:1069 #, gcc-internal-format, gfc-internal-format msgid "bytecode stream: found multiple instances of cgraph node %d" msgstr "" @@ -16878,32 +17027,27 @@ msgstr "" msgid "bytecode stream: found empty cgraph node" msgstr "" -#: lto-cgraph.c:1439 -#, gcc-internal-format, gfc-internal-format -msgid "Corrupted profile info in %s: sum_max is smaller than runs" -msgstr "" - -#: lto-cgraph.c:1470 +#: lto-cgraph.c:1467 #, gcc-internal-format, gfc-internal-format msgid "At most %i profile runs is supported. Perhaps corrupted profile?" msgstr "" -#: lto-cgraph.c:1517 +#: lto-cgraph.c:1514 #, gcc-internal-format, gfc-internal-format msgid "Profile information in %s corrupted" msgstr "" -#: lto-cgraph.c:1552 +#: lto-cgraph.c:1549 #, gcc-internal-format, gfc-internal-format msgid "cannot find LTO cgraph in %s" msgstr "" -#: lto-cgraph.c:1562 +#: lto-cgraph.c:1559 #, gcc-internal-format, gfc-internal-format msgid "cannot find LTO varpool in %s" msgstr "" -#: lto-cgraph.c:1570 +#: lto-cgraph.c:1567 #, gcc-internal-format, gfc-internal-format msgid "cannot find LTO section refs in %s" msgstr "" @@ -16975,37 +17119,37 @@ msgstr "" msgid "bytecode stream: unknown GIMPLE statement tag %s" msgstr "" -#: lto-streamer-in.c:2298 +#: lto-streamer-in.c:2300 #, gcc-internal-format msgid "cl_target_option size mismatch in LTO reader and writer" msgstr "" -#: lto-streamer-in.c:2392 +#: lto-streamer-in.c:2394 #, gcc-internal-format msgid "optimization options not supported yet" msgstr "" -#: lto-streamer-in.c:2540 +#: lto-streamer-in.c:2544 #, gcc-internal-format msgid "bytecode stream: tried to jump backwards in the stream" msgstr "" -#: lto-streamer-in.c:2584 +#: lto-streamer-in.c:2588 #, gcc-internal-format msgid "target specific builtin not available" msgstr "" -#: lto-streamer-out.c:1237 +#: lto-streamer-out.c:1239 #, gcc-internal-format msgid "gimple bytecode streams do not support the optimization attribute" msgstr "" -#: lto-streamer-out.c:1261 +#: lto-streamer-out.c:1263 #, gcc-internal-format msgid "tree code %qs is not supported in gimple streams" msgstr "" -#: lto-streamer-out.c:1305 +#: lto-streamer-out.c:1307 #, gcc-internal-format msgid "" "gimple bytecode streams do not support machine specific builtin functions on " @@ -17017,49 +17161,49 @@ msgstr "" msgid "bytecode stream: unexpected LTO section %s" msgstr "" -#: lto-streamer.c:793 +#: lto-streamer.c:795 #, gcc-internal-format, gfc-internal-format msgid "" "bytecode stream generated with LTO version %d.%d instead of the expected %d." "%d" msgstr "" -#: lto-symtab.c:544 +#: lto-symtab.c:542 #, gcc-internal-format msgid "%qD has already been defined" msgstr "" -#: lto-symtab.c:546 +#: lto-symtab.c:544 #, gcc-internal-format msgid "previously defined here" msgstr "" -#: lto-symtab.c:628 +#: lto-symtab.c:626 #, gcc-internal-format msgid "type of %qD does not match original declaration" msgstr "" -#: lto-symtab.c:635 +#: lto-symtab.c:633 #, gcc-internal-format msgid "alignment of %qD is bigger than original declaration" msgstr "" -#: lto-symtab.c:641 lto-symtab.c:747 +#: lto-symtab.c:639 lto-symtab.c:745 #, gcc-internal-format msgid "previously declared here" msgstr "" -#: lto-symtab.c:672 +#: lto-symtab.c:670 #, gcc-internal-format msgid "multiple prevailing defs for %qE" msgstr "" -#: lto-symtab.c:730 +#: lto-symtab.c:728 #, gcc-internal-format msgid "variable %qD redeclared as function" msgstr "" -#: lto-symtab.c:736 +#: lto-symtab.c:734 #, gcc-internal-format msgid "function %qD redeclared as variable" msgstr "" @@ -17105,7 +17249,7 @@ msgid "" "critical region may not be nested inside a critical region with the same name" msgstr "" -#: omp-low.c:6781 cp/decl.c:2803 cp/parser.c:9137 cp/parser.c:9157 +#: omp-low.c:6781 cp/decl.c:2807 cp/parser.c:9157 cp/parser.c:9177 #, gcc-internal-format msgid "invalid exit from OpenMP structured block" msgstr "" @@ -17121,27 +17265,27 @@ msgstr "" msgid "invalid branch to/from an OpenMP structured block" msgstr "" -#: opts-common.c:958 +#: opts-common.c:969 #, gcc-internal-format msgid "command line option %qs is not supported by this configuration" msgstr "" -#: opts-common.c:974 +#: opts-common.c:979 #, gcc-internal-format msgid "missing argument to %qs" msgstr "" -#: opts-common.c:980 opts.c:546 +#: opts-common.c:985 opts.c:547 #, gcc-internal-format msgid "argument to %qs should be a non-negative integer" msgstr "" -#: opts-common.c:995 +#: opts-common.c:1000 #, gcc-internal-format msgid "unrecognized argument in option %qs" msgstr "" -#: opts-common.c:1011 +#: opts-common.c:1016 #, gcc-internal-format msgid "valid arguments to %qs are: %s" msgstr "" @@ -17194,131 +17338,131 @@ msgid "" "femit-struct-debug-detailed=ind:...%>" msgstr "" -#: opts.c:659 +#: opts.c:661 #, gcc-internal-format msgid "section anchors must be disabled when unit-at-a-time is disabled" msgstr "" -#: opts.c:663 +#: opts.c:665 #, gcc-internal-format msgid "toplevel reorder must be disabled when unit-at-a-time is disabled" msgstr "" -#: opts.c:685 +#: opts.c:687 #, gcc-internal-format msgid "section anchors must be disabled when toplevel reorder is disabled" msgstr "" -#: opts.c:720 config/darwin.c:2567 config/sh/sh.c:966 +#: opts.c:722 config/darwin.c:2900 config/sh/sh.c:973 #, gcc-internal-format msgid "" "-freorder-blocks-and-partition does not work with exceptions on this " "architecture" msgstr "" -#: opts.c:735 config/sh/sh.c:974 +#: opts.c:737 config/sh/sh.c:981 #, gcc-internal-format msgid "" "-freorder-blocks-and-partition does not support unwind info on this " "architecture" msgstr "" -#: opts.c:752 config/pa/pa.c:580 +#: opts.c:754 config/pa/pa.c:588 #, gcc-internal-format msgid "-freorder-blocks-and-partition does not work on this architecture" msgstr "" -#: opts.c:767 +#: opts.c:773 #, gcc-internal-format msgid "-fira-algorithm=CB does not work on this architecture" msgstr "" -#: opts.c:804 +#: opts.c:810 #, gcc-internal-format msgid "only one -flto-partition value can be specified" msgstr "" -#: opts.c:815 +#: opts.c:821 #, gcc-internal-format msgid "%<-fsplit-stack%> is not supported by this compiler configuration" msgstr "" -#: opts.c:1182 +#: opts.c:1188 #, gcc-internal-format msgid "unrecognized include_flags 0x%x passed to print_specific_help" msgstr "" -#: opts.c:1357 +#: opts.c:1363 #, gcc-internal-format msgid "--help argument %q.*s is ambiguous, please be more specific" msgstr "" -#: opts.c:1366 +#: opts.c:1372 #, gcc-internal-format msgid "unrecognized argument to --help= option: %q.*s" msgstr "" -#: opts.c:1503 +#: opts.c:1509 #, gcc-internal-format, gfc-internal-format msgid "structure alignment must be a small power of two, not %d" msgstr "" -#: opts.c:1611 +#: opts.c:1622 #, gcc-internal-format, gfc-internal-format msgid "unknown stack check parameter \"%s\"" msgstr "" -#: opts.c:1641 +#: opts.c:1652 #, gcc-internal-format, gfc-internal-format msgid "dwarf version %d is not supported" msgstr "" -#: opts.c:1709 +#: opts.c:1720 #, gcc-internal-format, gfc-internal-format msgid "%s: --param arguments should be of the form NAME=VALUE" msgstr "" -#: opts.c:1715 +#: opts.c:1726 #, gcc-internal-format msgid "invalid --param value %qs" msgstr "" -#: opts.c:1821 +#: opts.c:1844 #, gcc-internal-format msgid "target system does not support debug output" msgstr "" -#: opts.c:1830 +#: opts.c:1853 #, gcc-internal-format, gfc-internal-format msgid "debug format \"%s\" conflicts with prior selection" msgstr "" -#: opts.c:1846 +#: opts.c:1869 #, gcc-internal-format, gfc-internal-format msgid "unrecognised debug output level \"%s\"" msgstr "" -#: opts.c:1848 +#: opts.c:1871 #, gcc-internal-format, gfc-internal-format msgid "debug output level %s is too high" msgstr "" -#: opts.c:1868 +#: opts.c:1891 #, gcc-internal-format msgid "getting core file size maximum limit: %m" msgstr "" -#: opts.c:1871 +#: opts.c:1894 #, gcc-internal-format msgid "setting core file size limit to maximum: %m" msgstr "" -#: opts.c:1919 +#: opts.c:1942 #, gcc-internal-format, gfc-internal-format msgid "unrecognized gcc debugging option: %c" msgstr "" -#: opts.c:1945 +#: opts.c:1968 #, gcc-internal-format, gfc-internal-format msgid "-Werror=%s: no option -%s" msgstr "" @@ -17339,37 +17483,37 @@ msgstr "" msgid "invalid parameter %qs" msgstr "" -#: passes.c:591 +#: passes.c:592 #, gcc-internal-format msgid "invalid pass positioning operation" msgstr "" -#: passes.c:633 +#: passes.c:634 #, gcc-internal-format msgid "plugin cannot register a missing pass" msgstr "" -#: passes.c:636 +#: passes.c:637 #, gcc-internal-format msgid "plugin cannot register an unnamed pass" msgstr "" -#: passes.c:640 +#: passes.c:641 #, gcc-internal-format msgid "plugin cannot register pass %qs without reference pass name" msgstr "" -#: passes.c:658 +#: passes.c:659 #, gcc-internal-format msgid "pass %qs not found but is referenced by new pass %qs" msgstr "" -#: plugin.c:161 +#: plugin.c:152 #, gcc-internal-format msgid "inacessible plugin file %s expanded from short plugin name %s: %m" msgstr "" -#: plugin.c:182 +#: plugin.c:173 #, gcc-internal-format, gfc-internal-format msgid "" "plugin %s was specified with different paths:\n" @@ -17377,96 +17521,101 @@ msgid "" "%s" msgstr "" -#: plugin.c:228 +#: plugin.c:219 #, gcc-internal-format, gfc-internal-format msgid "malformed option -fplugin-arg-%s (multiple '=' signs)" msgstr "" -#: plugin.c:244 +#: plugin.c:235 #, gcc-internal-format, gfc-internal-format msgid "malformed option -fplugin-arg-%s (missing -<key>[=<value>])" msgstr "" -#: plugin.c:306 +#: plugin.c:297 #, gcc-internal-format, gfc-internal-format msgid "" "plugin %s should be specified before -fplugin-arg-%s in the command line" msgstr "" -#: plugin.c:426 +#: plugin.c:417 #, gcc-internal-format, gfc-internal-format msgid "unknown callback event registered by plugin %s" msgstr "" -#: plugin.c:454 +#: plugin.c:445 #, gcc-internal-format, gfc-internal-format msgid "plugin %s registered a null callback function for event %s" msgstr "" -#: plugin.c:574 +#: plugin.c:565 #, gcc-internal-format, gfc-internal-format msgid "" "cannot load plugin %s\n" "%s" msgstr "" -#: plugin.c:583 +#: plugin.c:574 #, gcc-internal-format, gfc-internal-format msgid "" "plugin %s is not licensed under a GPL-compatible license\n" "%s" msgstr "" -#: plugin.c:592 +#: plugin.c:583 #, gcc-internal-format, gfc-internal-format msgid "" "cannot find %s in plugin %s\n" "%s" msgstr "" -#: plugin.c:600 +#: plugin.c:591 #, gcc-internal-format, gfc-internal-format msgid "fail to initialize plugin %s" msgstr "" -#: plugin.c:881 +#: plugin.c:872 #, gcc-internal-format msgid "-iplugindir <dir> option not passed from the gcc driver" msgstr "" -#: profile.c:415 +#: profile.c:417 +#, gcc-internal-format +msgid "corrupted profile info: edge count exceeds maximal count" +msgstr "" + +#: profile.c:421 #, gcc-internal-format, gfc-internal-format msgid "corrupted profile info: edge from %i to %i exceeds maximal count" msgstr "" -#: profile.c:459 +#: profile.c:465 #, gcc-internal-format msgid "corrupted profile info: run_max * runs < sum_max" msgstr "" -#: profile.c:465 +#: profile.c:471 #, gcc-internal-format msgid "corrupted profile info: sum_all is smaller than sum_max" msgstr "" -#: profile.c:631 +#: profile.c:637 #, gcc-internal-format msgid "correcting inconsistent profile data" msgstr "" -#: profile.c:641 +#: profile.c:647 #, gcc-internal-format msgid "corrupted profile info: profile data is not flow-consistent" msgstr "" -#: profile.c:658 +#: profile.c:664 #, gcc-internal-format, gfc-internal-format msgid "" "corrupted profile info: number of iterations for basic block %d thought to " "be %i" msgstr "" -#: profile.c:679 +#: profile.c:685 #, gcc-internal-format, gfc-internal-format msgid "" "corrupted profile info: number of executions for edge %d-%d thought to be %i" @@ -17532,9 +17681,9 @@ msgstr "" msgid "can%'t use %qs as a fixed register" msgstr "" -#: reginfo.c:821 config/ia64/ia64.c:5667 config/ia64/ia64.c:5674 -#: config/pa/pa.c:432 config/pa/pa.c:439 config/sh/sh.c:8861 -#: config/sh/sh.c:8868 config/spu/spu.c:5090 config/spu/spu.c:5097 +#: reginfo.c:821 config/ia64/ia64.c:5622 config/ia64/ia64.c:5629 +#: config/pa/pa.c:440 config/pa/pa.c:447 config/sh/sh.c:8868 +#: config/sh/sh.c:8875 config/spu/spu.c:5119 config/spu/spu.c:5126 #, gcc-internal-format, gfc-internal-format msgid "unknown register name: %s" msgstr "" @@ -17614,52 +17763,52 @@ msgstr "" msgid "%<asm%> operand constraint incompatible with operand size" msgstr "" -#: reload1.c:7864 +#: reload1.c:7853 #, gcc-internal-format msgid "output operand is constant in %<asm%>" msgstr "" -#: rtl.c:730 +#: rtl.c:731 #, gcc-internal-format, gfc-internal-format msgid "RTL check: access of elt %d of '%s' with last elt %d in %s, at %s:%d" msgstr "" -#: rtl.c:740 +#: rtl.c:741 #, gcc-internal-format, gfc-internal-format msgid "" "RTL check: expected elt %d type '%c', have '%c' (rtx %s) in %s, at %s:%d" msgstr "" -#: rtl.c:750 +#: rtl.c:751 #, gcc-internal-format, gfc-internal-format msgid "" "RTL check: expected elt %d type '%c' or '%c', have '%c' (rtx %s) in %s, at " "%s:%d" msgstr "" -#: rtl.c:759 +#: rtl.c:760 #, gcc-internal-format, gfc-internal-format msgid "RTL check: expected code '%s', have '%s' in %s, at %s:%d" msgstr "" -#: rtl.c:769 +#: rtl.c:770 #, gcc-internal-format, gfc-internal-format msgid "RTL check: expected code '%s' or '%s', have '%s' in %s, at %s:%d" msgstr "" -#: rtl.c:796 +#: rtl.c:797 #, gcc-internal-format, gfc-internal-format msgid "" "RTL check: attempt to treat non-block symbol as a block symbol in %s, at %s:" "%d" msgstr "" -#: rtl.c:806 +#: rtl.c:807 #, gcc-internal-format, gfc-internal-format msgid "RTL check: access of elt %d of vector with last elt %d in %s, at %s:%d" msgstr "" -#: rtl.c:817 +#: rtl.c:818 #, gcc-internal-format, gfc-internal-format msgid "RTL flag check: %s used with unexpected rtx code '%s' in %s, at %s:%d" msgstr "" @@ -17779,7 +17928,7 @@ msgstr "" msgid "undefined named operand %qs" msgstr "" -#: stmt.c:1566 cp/cvt.c:1093 cp/cvt.c:1337 +#: stmt.c:1566 cp/cvt.c:1098 cp/cvt.c:1342 #, gcc-internal-format msgid "value computed is not used" msgstr "" @@ -17854,27 +18003,27 @@ msgstr "" msgid "alignment of array elements is greater than element size" msgstr "" -#: targhooks.c:166 +#: targhooks.c:168 #, gcc-internal-format msgid "__builtin_saveregs not supported by this target" msgstr "" -#: targhooks.c:826 +#: targhooks.c:828 #, gcc-internal-format msgid "nested functions not supported on this target" msgstr "" -#: targhooks.c:839 +#: targhooks.c:841 #, gcc-internal-format msgid "nested function trampolines not supported on this target" msgstr "" -#: targhooks.c:1164 +#: targhooks.c:1193 #, gcc-internal-format msgid "target attribute is not supported on this machine" msgstr "" -#: targhooks.c:1174 +#: targhooks.c:1203 #, gcc-internal-format msgid "#pragma GCC target is not supported for this machine" msgstr "" @@ -17921,98 +18070,106 @@ msgstr "" msgid "this target does not support %qs" msgstr "" -#: toplev.c:1348 +#: toplev.c:1323 #, gcc-internal-format -msgid "instruction scheduling not supported on this target machine" +msgid "" +"Graphite loop optimizations cannot be used (-fgraphite, -fgraphite-identity, " +"-floop-block, -floop-flatten, -floop-interchange, -floop-strip-mine, -floop-" +"parallelize-all, and -ftree-loop-linear)" msgstr "" #: toplev.c:1352 #, gcc-internal-format +msgid "instruction scheduling not supported on this target machine" +msgstr "" + +#: toplev.c:1356 +#, gcc-internal-format msgid "this target machine does not have delayed branches" msgstr "" -#: toplev.c:1366 +#: toplev.c:1370 #, gcc-internal-format, gfc-internal-format msgid "-f%sleading-underscore not supported on this target machine" msgstr "" -#: toplev.c:1409 +#: toplev.c:1413 #, gcc-internal-format msgid "could not close zeroed insn dump file %qs: %m" msgstr "" -#: toplev.c:1448 +#: toplev.c:1452 #, gcc-internal-format, gfc-internal-format msgid "target system does not support the \"%s\" debug format" msgstr "" -#: toplev.c:1460 +#: toplev.c:1464 #, gcc-internal-format msgid "variable tracking requested, but useless unless producing debug info" msgstr "" -#: toplev.c:1463 +#: toplev.c:1467 #, gcc-internal-format msgid "variable tracking requested, but not supported by this debug format" msgstr "" -#: toplev.c:1497 +#: toplev.c:1501 #, gcc-internal-format msgid "var-tracking-assignments changes selective scheduling" msgstr "" -#: toplev.c:1520 +#: toplev.c:1524 #, gcc-internal-format msgid "-ffunction-sections not supported for this target" msgstr "" -#: toplev.c:1525 +#: toplev.c:1529 #, gcc-internal-format msgid "-fdata-sections not supported for this target" msgstr "" -#: toplev.c:1532 +#: toplev.c:1536 #, gcc-internal-format msgid "-ffunction-sections disabled; it makes profiling impossible" msgstr "" -#: toplev.c:1539 +#: toplev.c:1543 #, gcc-internal-format msgid "-fprefetch-loop-arrays not supported for this target" msgstr "" -#: toplev.c:1545 +#: toplev.c:1549 #, gcc-internal-format msgid "" "-fprefetch-loop-arrays not supported for this target (try -march switches)" msgstr "" -#: toplev.c:1554 +#: toplev.c:1558 #, gcc-internal-format msgid "-fprefetch-loop-arrays is not supported with -Os" msgstr "" -#: toplev.c:1565 +#: toplev.c:1569 #, gcc-internal-format msgid "-fassociative-math disabled; other options take precedence" msgstr "" -#: toplev.c:1581 +#: toplev.c:1585 #, gcc-internal-format msgid "-fstack-protector not supported for this target" msgstr "" -#: toplev.c:1594 +#: toplev.c:1598 #, gcc-internal-format msgid "unwind tables currently require a frame pointer for correctness" msgstr "" -#: toplev.c:1822 +#: toplev.c:1848 #, gcc-internal-format msgid "error writing to %s: %m" msgstr "" -#: toplev.c:1824 java/jcf-parse.c:1770 +#: toplev.c:1850 java/jcf-parse.c:1770 #, gcc-internal-format msgid "error closing %s: %m" msgstr "" @@ -18037,7 +18194,7 @@ msgstr "" msgid "SSA name in freelist but still referenced" msgstr "" -#: tree-cfg.c:2605 tree-cfg.c:3734 +#: tree-cfg.c:2605 tree-cfg.c:3735 #, gcc-internal-format msgid "INDIRECT_REF in gimple IL" msgstr "" @@ -18227,511 +18384,511 @@ msgstr "" msgid "invalid argument to gimple call" msgstr "" -#: tree-cfg.c:3155 +#: tree-cfg.c:3156 #, gcc-internal-format msgid "invalid operands in gimple comparison" msgstr "" -#: tree-cfg.c:3173 +#: tree-cfg.c:3174 #, gcc-internal-format msgid "type mismatch in comparison expression" msgstr "" -#: tree-cfg.c:3199 +#: tree-cfg.c:3200 #, gcc-internal-format msgid "non-register as LHS of unary operation" msgstr "" -#: tree-cfg.c:3205 +#: tree-cfg.c:3206 #, gcc-internal-format msgid "invalid operand in unary operation" msgstr "" -#: tree-cfg.c:3240 +#: tree-cfg.c:3241 #, gcc-internal-format msgid "invalid types in nop conversion" msgstr "" -#: tree-cfg.c:3255 +#: tree-cfg.c:3256 #, gcc-internal-format msgid "invalid types in address space conversion" msgstr "" -#: tree-cfg.c:3269 +#: tree-cfg.c:3270 #, gcc-internal-format msgid "invalid types in fixed-point conversion" msgstr "" -#: tree-cfg.c:3282 +#: tree-cfg.c:3283 #, gcc-internal-format msgid "invalid types in conversion to floating point" msgstr "" -#: tree-cfg.c:3295 +#: tree-cfg.c:3296 #, gcc-internal-format msgid "invalid types in conversion to integer" msgstr "" -#: tree-cfg.c:3330 +#: tree-cfg.c:3331 #, gcc-internal-format msgid "non-trivial conversion in unary operation" msgstr "" -#: tree-cfg.c:3357 +#: tree-cfg.c:3358 #, gcc-internal-format msgid "non-register as LHS of binary operation" msgstr "" -#: tree-cfg.c:3364 +#: tree-cfg.c:3365 #, gcc-internal-format msgid "invalid operands in binary operation" msgstr "" -#: tree-cfg.c:3379 +#: tree-cfg.c:3380 #, gcc-internal-format msgid "type mismatch in complex expression" msgstr "" -#: tree-cfg.c:3408 +#: tree-cfg.c:3409 #, gcc-internal-format msgid "type mismatch in shift expression" msgstr "" -#: tree-cfg.c:3431 +#: tree-cfg.c:3432 #, gcc-internal-format msgid "type mismatch in vector shift expression" msgstr "" -#: tree-cfg.c:3444 +#: tree-cfg.c:3445 #, gcc-internal-format msgid "non-element sized vector shift of floating point vector" msgstr "" -#: tree-cfg.c:3463 +#: tree-cfg.c:3464 #, gcc-internal-format msgid "invalid non-vector operands to vector valued plus" msgstr "" -#: tree-cfg.c:3483 +#: tree-cfg.c:3484 #, gcc-internal-format msgid "invalid (pointer) operands to plus/minus" msgstr "" -#: tree-cfg.c:3498 +#: tree-cfg.c:3499 #, gcc-internal-format msgid "type mismatch in pointer plus expression" msgstr "" -#: tree-cfg.c:3521 +#: tree-cfg.c:3522 #, gcc-internal-format msgid "type mismatch in binary truth expression" msgstr "" -#: tree-cfg.c:3594 +#: tree-cfg.c:3595 #, gcc-internal-format msgid "type mismatch in binary expression" msgstr "" -#: tree-cfg.c:3624 +#: tree-cfg.c:3625 #, gcc-internal-format msgid "non-register as LHS of ternary operation" msgstr "" -#: tree-cfg.c:3632 +#: tree-cfg.c:3633 #, gcc-internal-format msgid "invalid operands in ternary operation" msgstr "" -#: tree-cfg.c:3648 +#: tree-cfg.c:3649 #, gcc-internal-format msgid "type mismatch in widening multiply-accumulate expression" msgstr "" -#: tree-cfg.c:3662 +#: tree-cfg.c:3663 #, gcc-internal-format msgid "type mismatch in fused multiply-add expression" msgstr "" -#: tree-cfg.c:3692 +#: tree-cfg.c:3693 #, gcc-internal-format msgid "non-trivial conversion at assignment" msgstr "" -#: tree-cfg.c:3709 +#: tree-cfg.c:3710 #, gcc-internal-format msgid "invalid operand in unary expression" msgstr "" -#: tree-cfg.c:3723 +#: tree-cfg.c:3724 #, gcc-internal-format msgid "type mismatch in address expression" msgstr "" -#: tree-cfg.c:3749 tree-cfg.c:3775 +#: tree-cfg.c:3750 tree-cfg.c:3776 #, gcc-internal-format msgid "invalid rhs for gimple memory store" msgstr "" -#: tree-cfg.c:3791 +#: tree-cfg.c:3792 #, gcc-internal-format msgid "invalid COND_EXPR in gimple assignment" msgstr "" -#: tree-cfg.c:3856 +#: tree-cfg.c:3857 #, gcc-internal-format msgid "invalid operand in return statement" msgstr "" -#: tree-cfg.c:3870 +#: tree-cfg.c:3871 #, gcc-internal-format msgid "invalid conversion in return statement" msgstr "" -#: tree-cfg.c:3894 +#: tree-cfg.c:3895 #, gcc-internal-format msgid "goto destination is neither a label nor a pointer" msgstr "" -#: tree-cfg.c:3909 +#: tree-cfg.c:3910 #, gcc-internal-format msgid "invalid operand to switch statement" msgstr "" -#: tree-cfg.c:3929 +#: tree-cfg.c:3930 #, gcc-internal-format msgid "invalid PHI result" msgstr "" -#: tree-cfg.c:3941 +#: tree-cfg.c:3942 #, gcc-internal-format msgid "invalid PHI argument" msgstr "" -#: tree-cfg.c:3947 +#: tree-cfg.c:3948 #, gcc-internal-format, gfc-internal-format msgid "incompatible types in PHI argument %u" msgstr "" -#: tree-cfg.c:3994 +#: tree-cfg.c:3995 #, gcc-internal-format msgid "invalid comparison code in gimple cond" msgstr "" -#: tree-cfg.c:4002 +#: tree-cfg.c:4003 #, gcc-internal-format msgid "invalid labels in gimple cond" msgstr "" -#: tree-cfg.c:4101 +#: tree-cfg.c:4102 #, gcc-internal-format msgid "verify_gimple failed" msgstr "" -#: tree-cfg.c:4136 +#: tree-cfg.c:4137 #, gcc-internal-format msgid "invalid function in call statement" msgstr "" -#: tree-cfg.c:4147 +#: tree-cfg.c:4148 #, gcc-internal-format msgid "invalid pure const state for function" msgstr "" -#: tree-cfg.c:4160 tree-ssa.c:1007 tree-ssa.c:1017 +#: tree-cfg.c:4161 tree-ssa.c:1007 tree-ssa.c:1017 #, gcc-internal-format msgid "in statement" msgstr "" -#: tree-cfg.c:4175 +#: tree-cfg.c:4176 #, gcc-internal-format msgid "statement marked for throw, but doesn%'t" msgstr "" -#: tree-cfg.c:4180 +#: tree-cfg.c:4181 #, gcc-internal-format msgid "statement marked for throw in middle of block" msgstr "" -#: tree-cfg.c:4252 +#: tree-cfg.c:4253 #, gcc-internal-format msgid "dead STMT in EH table" msgstr "" -#: tree-cfg.c:4290 +#: tree-cfg.c:4291 #, gcc-internal-format msgid "gimple_bb (phi) is set to a wrong basic block" msgstr "" -#: tree-cfg.c:4301 +#: tree-cfg.c:4302 #, gcc-internal-format msgid "missing PHI def" msgstr "" -#: tree-cfg.c:4312 +#: tree-cfg.c:4313 #, gcc-internal-format msgid "PHI argument is not a GIMPLE value" msgstr "" -#: tree-cfg.c:4321 tree-cfg.c:4394 +#: tree-cfg.c:4322 tree-cfg.c:4395 #, gcc-internal-format msgid "incorrect sharing of tree nodes" msgstr "" -#: tree-cfg.c:4344 +#: tree-cfg.c:4345 #, gcc-internal-format msgid "invalid GIMPLE statement" msgstr "" -#: tree-cfg.c:4353 +#: tree-cfg.c:4354 #, gcc-internal-format msgid "gimple_bb (stmt) is set to a wrong basic block" msgstr "" -#: tree-cfg.c:4366 +#: tree-cfg.c:4367 #, gcc-internal-format msgid "incorrect entry in label_to_block_map" msgstr "" -#: tree-cfg.c:4376 +#: tree-cfg.c:4377 #, gcc-internal-format msgid "incorrect setting of landing pad number" msgstr "" -#: tree-cfg.c:4410 +#: tree-cfg.c:4411 #, gcc-internal-format msgid "verify_stmts failed" msgstr "" -#: tree-cfg.c:4433 +#: tree-cfg.c:4434 #, gcc-internal-format msgid "ENTRY_BLOCK has IL associated with it" msgstr "" -#: tree-cfg.c:4439 +#: tree-cfg.c:4440 #, gcc-internal-format msgid "EXIT_BLOCK has IL associated with it" msgstr "" -#: tree-cfg.c:4446 +#: tree-cfg.c:4447 #, gcc-internal-format, gfc-internal-format msgid "fallthru to exit from bb %d" msgstr "" -#: tree-cfg.c:4470 +#: tree-cfg.c:4471 #, gcc-internal-format msgid "nonlocal label " msgstr "" -#: tree-cfg.c:4479 +#: tree-cfg.c:4480 #, gcc-internal-format msgid "EH landing pad label " msgstr "" -#: tree-cfg.c:4488 tree-cfg.c:4497 tree-cfg.c:4522 +#: tree-cfg.c:4489 tree-cfg.c:4498 tree-cfg.c:4523 #, gcc-internal-format msgid "label " msgstr "" -#: tree-cfg.c:4512 +#: tree-cfg.c:4513 #, gcc-internal-format, gfc-internal-format msgid "control flow in the middle of basic block %d" msgstr "" -#: tree-cfg.c:4545 +#: tree-cfg.c:4546 #, gcc-internal-format, gfc-internal-format msgid "fallthru edge after a control statement in bb %d" msgstr "" -#: tree-cfg.c:4558 +#: tree-cfg.c:4559 #, gcc-internal-format, gfc-internal-format msgid "true/false edge after a non-GIMPLE_COND in bb %d" msgstr "" -#: tree-cfg.c:4581 tree-cfg.c:4603 tree-cfg.c:4620 tree-cfg.c:4689 +#: tree-cfg.c:4582 tree-cfg.c:4604 tree-cfg.c:4621 tree-cfg.c:4690 #, gcc-internal-format, gfc-internal-format msgid "wrong outgoing edge flags at end of bb %d" msgstr "" -#: tree-cfg.c:4591 +#: tree-cfg.c:4592 #, gcc-internal-format, gfc-internal-format msgid "explicit goto at end of bb %d" msgstr "" -#: tree-cfg.c:4625 +#: tree-cfg.c:4626 #, gcc-internal-format, gfc-internal-format msgid "return edge does not point to exit in bb %d" msgstr "" -#: tree-cfg.c:4655 +#: tree-cfg.c:4656 #, gcc-internal-format msgid "found default case not at the start of case vector" msgstr "" -#: tree-cfg.c:4663 +#: tree-cfg.c:4664 #, gcc-internal-format msgid "case labels not sorted: " msgstr "" -#: tree-cfg.c:4680 +#: tree-cfg.c:4681 #, gcc-internal-format, gfc-internal-format msgid "extra outgoing edge %d->%d" msgstr "" -#: tree-cfg.c:4703 +#: tree-cfg.c:4704 #, gcc-internal-format, gfc-internal-format msgid "missing edge %i->%i" msgstr "" -#: tree-cfg.c:7343 +#: tree-cfg.c:7344 #, gcc-internal-format msgid "%<noreturn%> function does return" msgstr "" -#: tree-cfg.c:7363 +#: tree-cfg.c:7364 #, gcc-internal-format msgid "control reaches end of non-void function" msgstr "" -#: tree-cfg.c:7499 +#: tree-cfg.c:7500 #, gcc-internal-format msgid "" "ignoring return value of %qD, declared with attribute warn_unused_result" msgstr "" -#: tree-cfg.c:7504 +#: tree-cfg.c:7505 #, gcc-internal-format msgid "" "ignoring return value of function declared with attribute warn_unused_result" msgstr "" -#: tree-dump.c:934 +#: tree-dump.c:935 #, gcc-internal-format msgid "could not open dump file %qs: %m" msgstr "" -#: tree-dump.c:1067 +#: tree-dump.c:1068 #, gcc-internal-format msgid "ignoring unknown option %q.*s in %<-fdump-%s%>" msgstr "" -#: tree-eh.c:3985 +#: tree-eh.c:4035 #, gcc-internal-format, gfc-internal-format msgid "BB %i has multiple EH edges" msgstr "" -#: tree-eh.c:3997 +#: tree-eh.c:4047 #, gcc-internal-format, gfc-internal-format msgid "BB %i can not throw but has an EH edge" msgstr "" -#: tree-eh.c:4005 +#: tree-eh.c:4055 #, gcc-internal-format, gfc-internal-format msgid "BB %i last statement has incorrectly set lp" msgstr "" -#: tree-eh.c:4011 +#: tree-eh.c:4061 #, gcc-internal-format, gfc-internal-format msgid "BB %i is missing an EH edge" msgstr "" -#: tree-eh.c:4017 +#: tree-eh.c:4067 #, gcc-internal-format, gfc-internal-format msgid "Incorrect EH edge %i->%i" msgstr "" -#: tree-eh.c:4051 tree-eh.c:4070 +#: tree-eh.c:4101 tree-eh.c:4120 #, gcc-internal-format, gfc-internal-format msgid "BB %i is missing an edge" msgstr "" -#: tree-eh.c:4087 +#: tree-eh.c:4137 #, gcc-internal-format, gfc-internal-format msgid "BB %i too many fallthru edges" msgstr "" -#: tree-eh.c:4096 +#: tree-eh.c:4146 #, gcc-internal-format, gfc-internal-format msgid "BB %i has incorrect edge" msgstr "" -#: tree-eh.c:4102 +#: tree-eh.c:4152 #, gcc-internal-format, gfc-internal-format msgid "BB %i has incorrect fallthru edge" msgstr "" -#: tree-inline.c:2971 +#: tree-inline.c:2954 #, gcc-internal-format msgid "function %q+F can never be copied because it receives a non-local goto" msgstr "" -#: tree-inline.c:2985 +#: tree-inline.c:2968 #, gcc-internal-format msgid "" "function %q+F can never be copied because it saves address of local label in " "a static variable" msgstr "" -#: tree-inline.c:3022 +#: tree-inline.c:3005 #, 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:3036 +#: tree-inline.c:3019 #, gcc-internal-format msgid "function %q+F can never be inlined because it uses setjmp" msgstr "" -#: tree-inline.c:3050 +#: tree-inline.c:3033 #, gcc-internal-format msgid "" "function %q+F can never be inlined because it uses variable argument lists" msgstr "" -#: tree-inline.c:3062 +#: tree-inline.c:3045 #, gcc-internal-format msgid "" "function %q+F can never be inlined because it uses setjmp-longjmp exception " "handling" msgstr "" -#: tree-inline.c:3070 +#: tree-inline.c:3053 #, gcc-internal-format msgid "function %q+F can never be inlined because it uses non-local goto" msgstr "" -#: tree-inline.c:3082 +#: tree-inline.c:3065 #, gcc-internal-format msgid "" "function %q+F can never be inlined because it uses __builtin_return or " "__builtin_apply_args" msgstr "" -#: tree-inline.c:3102 +#: tree-inline.c:3085 #, gcc-internal-format msgid "function %q+F can never be inlined because it contains a computed goto" msgstr "" -#: tree-inline.c:3205 +#: tree-inline.c:3188 #, gcc-internal-format msgid "" "function %q+F can never be inlined because it is suppressed using -fno-inline" msgstr "" -#: tree-inline.c:3213 +#: tree-inline.c:3196 #, gcc-internal-format msgid "" "function %q+F can never be inlined because it uses attributes conflicting " "with inlining" msgstr "" -#: tree-inline.c:3830 tree-inline.c:3841 +#: tree-inline.c:3812 tree-inline.c:3823 #, gcc-internal-format msgid "inlining failed in call to %q+F: %s" msgstr "" -#: tree-inline.c:3832 tree-inline.c:3843 +#: tree-inline.c:3814 tree-inline.c:3825 #, gcc-internal-format msgid "called from here" msgstr "" @@ -18767,7 +18924,7 @@ msgid "size of return value of %q+D is larger than %wd bytes" msgstr "" #: tree-outof-ssa.c:783 tree-outof-ssa.c:840 tree-ssa-coalesce.c:952 -#: tree-ssa-coalesce.c:967 tree-ssa-coalesce.c:1189 tree-ssa-live.c:1296 +#: tree-ssa-coalesce.c:967 tree-ssa-coalesce.c:1189 tree-ssa-live.c:1302 #, gcc-internal-format msgid "SSA corruption" msgstr "" @@ -18937,51 +19094,51 @@ msgstr "" msgid "%qD is used uninitialized in this function" msgstr "" -#: tree-vrp.c:5268 +#: tree-vrp.c:5270 #, gcc-internal-format msgid "array subscript is outside array bounds" msgstr "" -#: tree-vrp.c:5280 tree-vrp.c:5367 +#: tree-vrp.c:5282 tree-vrp.c:5369 #, gcc-internal-format msgid "array subscript is above array bounds" msgstr "" -#: tree-vrp.c:5287 tree-vrp.c:5355 +#: tree-vrp.c:5289 tree-vrp.c:5357 #, gcc-internal-format msgid "array subscript is below array bounds" msgstr "" -#: tree-vrp.c:5974 +#: tree-vrp.c:5976 #, gcc-internal-format msgid "" "assuming signed overflow does not occur when simplifying conditional to " "constant" msgstr "" -#: tree-vrp.c:5980 +#: tree-vrp.c:5982 #, gcc-internal-format msgid "assuming signed overflow does not occur when simplifying conditional" msgstr "" -#: tree-vrp.c:6024 +#: tree-vrp.c:6026 #, gcc-internal-format msgid "comparison always false due to limited range of data type" msgstr "" -#: tree-vrp.c:6026 +#: tree-vrp.c:6028 #, gcc-internal-format msgid "comparison always true due to limited range of data type" msgstr "" -#: tree-vrp.c:6878 +#: tree-vrp.c:6880 #, gcc-internal-format msgid "" "assuming signed overflow does not occur when simplifying %</%> or %<%%%> to " "%<>>%> or %<&%>" msgstr "" -#: tree-vrp.c:6960 +#: tree-vrp.c:6962 #, gcc-internal-format msgid "" "assuming signed overflow does not occur when simplifying %<abs (X)%> to %<X" @@ -18993,380 +19150,369 @@ msgstr "" msgid "ignoring attributes applied to %qT after definition" msgstr "" -#: tree.c:5351 +#: tree.c:5370 #, gcc-internal-format msgid "%q+D already declared with dllexport attribute: dllimport ignored" msgstr "" -#: tree.c:5363 +#: tree.c:5382 #, gcc-internal-format msgid "" "%q+D redeclared without dllimport attribute after being referenced with dll " "linkage" msgstr "" -#: tree.c:5378 +#: tree.c:5397 #, gcc-internal-format msgid "%q+D redeclared without dllimport attribute: previous dllimport ignored" msgstr "" -#: tree.c:5438 tree.c:5450 tree.c:5460 c-family/c-common.c:5706 -#: c-family/c-common.c:5725 c-family/c-common.c:5743 c-family/c-common.c:5771 -#: c-family/c-common.c:5798 c-family/c-common.c:5824 c-family/c-common.c:5843 -#: c-family/c-common.c:5860 c-family/c-common.c:5884 c-family/c-common.c:5907 -#: c-family/c-common.c:5924 c-family/c-common.c:5952 c-family/c-common.c:5973 -#: c-family/c-common.c:5994 c-family/c-common.c:6020 c-family/c-common.c:6051 -#: c-family/c-common.c:6088 c-family/c-common.c:6115 c-family/c-common.c:6158 -#: c-family/c-common.c:6242 c-family/c-common.c:6272 c-family/c-common.c:6326 -#: c-family/c-common.c:6672 c-family/c-common.c:6690 c-family/c-common.c:6752 -#: c-family/c-common.c:6795 c-family/c-common.c:6866 c-family/c-common.c:6994 -#: c-family/c-common.c:7062 c-family/c-common.c:7120 c-family/c-common.c:7168 -#: c-family/c-common.c:7247 c-family/c-common.c:7271 c-family/c-common.c:7557 -#: c-family/c-common.c:7580 c-family/c-common.c:7619 c-family/c-common.c:7708 -#: c-family/c-common.c:7857 config/darwin.c:1669 config/arm/arm.c:4807 -#: config/arm/arm.c:4835 config/arm/arm.c:4852 config/avr/avr.c:4847 -#: config/h8300/h8300.c:5416 config/h8300/h8300.c:5440 config/i386/i386.c:5179 -#: config/i386/i386.c:29195 config/ia64/ia64.c:728 -#: config/m68hc11/m68hc11.c:1197 config/rs6000/rs6000.c:24988 -#: config/spu/spu.c:3933 ada/gcc-interface/utils.c:5214 lto/lto-lang.c:200 +#: tree.c:5457 tree.c:5469 tree.c:5479 c-family/c-common.c:5707 +#: c-family/c-common.c:5726 c-family/c-common.c:5744 c-family/c-common.c:5772 +#: c-family/c-common.c:5799 c-family/c-common.c:5825 c-family/c-common.c:5844 +#: c-family/c-common.c:5861 c-family/c-common.c:5885 c-family/c-common.c:5908 +#: c-family/c-common.c:5925 c-family/c-common.c:5953 c-family/c-common.c:5974 +#: c-family/c-common.c:5995 c-family/c-common.c:6021 c-family/c-common.c:6052 +#: c-family/c-common.c:6089 c-family/c-common.c:6116 c-family/c-common.c:6159 +#: c-family/c-common.c:6243 c-family/c-common.c:6273 c-family/c-common.c:6327 +#: c-family/c-common.c:6673 c-family/c-common.c:6691 c-family/c-common.c:6753 +#: c-family/c-common.c:6796 c-family/c-common.c:6867 c-family/c-common.c:6995 +#: c-family/c-common.c:7063 c-family/c-common.c:7121 c-family/c-common.c:7169 +#: c-family/c-common.c:7248 c-family/c-common.c:7272 c-family/c-common.c:7558 +#: c-family/c-common.c:7581 c-family/c-common.c:7620 c-family/c-common.c:7709 +#: c-family/c-common.c:7858 config/darwin.c:1897 config/arm/arm.c:4816 +#: config/arm/arm.c:4844 config/arm/arm.c:4861 config/avr/avr.c:4910 +#: config/h8300/h8300.c:5416 config/h8300/h8300.c:5440 config/i386/i386.c:5336 +#: config/i386/i386.c:29471 config/ia64/ia64.c:729 +#: config/m68hc11/m68hc11.c:1197 config/rs6000/rs6000.c:25067 +#: config/spu/spu.c:3956 ada/gcc-interface/utils.c:5242 lto/lto-lang.c:201 #, gcc-internal-format msgid "%qE attribute ignored" msgstr "" -#: tree.c:5478 +#: tree.c:5497 #, gcc-internal-format msgid "inline function %q+D declared as dllimport: attribute ignored" msgstr "" -#: tree.c:5486 +#: tree.c:5505 #, gcc-internal-format msgid "function %q+D definition is marked dllimport" msgstr "" -#: tree.c:5494 config/sh/symbian-c.c:144 config/sh/symbian-cxx.c:576 +#: tree.c:5513 config/sh/symbian-c.c:144 config/sh/symbian-cxx.c:576 #, gcc-internal-format msgid "variable %q+D definition is marked dllimport" msgstr "" -#: tree.c:5521 config/sh/symbian-c.c:164 config/sh/symbian-cxx.c:651 +#: tree.c:5541 config/sh/symbian-c.c:164 config/sh/symbian-cxx.c:651 #, gcc-internal-format msgid "external linkage required for symbol %q+D because of %qE attribute" msgstr "" -#: tree.c:5535 +#: tree.c:5555 #, gcc-internal-format msgid "" "%qE implies default visibility, but %qD has already been declared with a " "different visibility" msgstr "" -#: tree.c:7228 +#: tree.c:7249 #, gcc-internal-format msgid "arrays of functions are not meaningful" msgstr "" -#: tree.c:7386 +#: tree.c:7407 #, gcc-internal-format msgid "function return type cannot be function" msgstr "" -#: tree.c:8618 tree.c:8703 tree.c:8764 +#: tree.c:8639 tree.c:8724 tree.c:8785 #, gcc-internal-format, gfc-internal-format msgid "tree check: %s, have %s in %s, at %s:%d" msgstr "" -#: tree.c:8655 +#: tree.c:8676 #, gcc-internal-format, gfc-internal-format msgid "tree check: expected none of %s, have %s in %s, at %s:%d" msgstr "" -#: tree.c:8668 +#: tree.c:8689 #, gcc-internal-format msgid "tree check: expected class %qs, have %qs (%s) in %s, at %s:%d" msgstr "" -#: tree.c:8717 +#: tree.c:8738 #, gcc-internal-format msgid "tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d" msgstr "" -#: tree.c:8730 +#: tree.c:8751 #, gcc-internal-format, gfc-internal-format msgid "tree check: expected omp_clause %s, have %s in %s, at %s:%d" msgstr "" -#: tree.c:8790 +#: tree.c:8811 #, gcc-internal-format msgid "" "tree check: expected tree that contains %qs structure, have %qs in %s, at %s:" "%d" msgstr "" -#: tree.c:8804 +#: tree.c:8825 #, gcc-internal-format, gfc-internal-format msgid "tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d" msgstr "" -#: tree.c:8817 +#: tree.c:8838 #, gcc-internal-format, gfc-internal-format msgid "tree check: accessed operand %d of %s with %d operands in %s, at %s:%d" msgstr "" -#: tree.c:8830 +#: tree.c:8851 #, gcc-internal-format, gfc-internal-format msgid "" "tree check: accessed operand %d of omp_clause %s with %d operands in %s, at " "%s:%d" msgstr "" -#: tree.c:11042 +#: tree.c:11068 #, gcc-internal-format msgid "%qD is deprecated (declared at %s:%d): %s" msgstr "" -#: tree.c:11046 +#: tree.c:11072 #, gcc-internal-format msgid "%qD is deprecated (declared at %s:%d)" msgstr "" -#: tree.c:11071 +#: tree.c:11097 #, gcc-internal-format msgid "%qE is deprecated (declared at %s:%d): %s" msgstr "" -#: tree.c:11075 +#: tree.c:11101 #, gcc-internal-format msgid "%qE is deprecated (declared at %s:%d)" msgstr "" -#: tree.c:11082 +#: tree.c:11108 #, gcc-internal-format, gfc-internal-format msgid "type is deprecated (declared at %s:%d): %s" msgstr "" -#: tree.c:11086 +#: tree.c:11112 #, gcc-internal-format, gfc-internal-format msgid "type is deprecated (declared at %s:%d)" msgstr "" -#: tree.c:11095 +#: tree.c:11121 #, gcc-internal-format msgid "%qE is deprecated: %s" msgstr "" -#: tree.c:11098 +#: tree.c:11124 #, gcc-internal-format msgid "%qE is deprecated" msgstr "" -#: tree.c:11103 +#: tree.c:11129 #, gcc-internal-format, gfc-internal-format msgid "type is deprecated: %s" msgstr "" -#: tree.c:11106 +#: tree.c:11132 #, gcc-internal-format msgid "type is deprecated" msgstr "" -#: value-prof.c:377 +#: value-prof.c:375 #, gcc-internal-format msgid "dead histogram" msgstr "" -#: value-prof.c:408 +#: value-prof.c:406 #, gcc-internal-format msgid "" "Histogram value statement does not correspond to the statement it is " "associated with" msgstr "" -#: value-prof.c:421 +#: value-prof.c:419 #, gcc-internal-format msgid "verify_histograms failed" msgstr "" -#: value-prof.c:468 +#: value-prof.c:466 #, gcc-internal-format, gfc-internal-format msgid "" "correcting inconsistent value profile: %s profiler overall count (%d) does " "not match BB count (%d)" msgstr "" -#: value-prof.c:478 +#: value-prof.c:476 #, gcc-internal-format, gfc-internal-format msgid "" -"corrupted value profile: %s profiler overall count (%d) does not match BB " -"count (%d)" +"corrupted value profile: %s profile counter (%d out of %d) inconsistent with " +"basic-block count (%d)" msgstr "" -#: var-tracking.c:6140 +#: var-tracking.c:6152 #, gcc-internal-format msgid "" "variable tracking size limit exceeded with -fvar-tracking-assignments, " "retrying without" msgstr "" -#: var-tracking.c:6144 +#: var-tracking.c:6156 #, gcc-internal-format msgid "variable tracking size limit exceeded" msgstr "" -#: varasm.c:301 +#: varasm.c:320 #, gcc-internal-format msgid "%+D causes a section type conflict" msgstr "" -#: varasm.c:950 +#: varasm.c:980 #, gcc-internal-format msgid "" "alignment of %q+D is greater than maximum object file alignment. Using %d" msgstr "" -#: varasm.c:1188 varasm.c:1196 +#: varasm.c:1218 varasm.c:1226 #, gcc-internal-format msgid "register name not specified for %q+D" msgstr "" -#: varasm.c:1198 +#: varasm.c:1228 #, gcc-internal-format msgid "invalid register name for %q+D" msgstr "" -#: varasm.c:1200 +#: varasm.c:1230 #, gcc-internal-format msgid "data type of %q+D isn%'t suitable for a register" msgstr "" -#: varasm.c:1203 +#: varasm.c:1233 #, gcc-internal-format msgid "register specified for %q+D isn%'t suitable for data type" msgstr "" -#: varasm.c:1213 +#: varasm.c:1243 #, gcc-internal-format msgid "global register variable has initial value" msgstr "" -#: varasm.c:1217 +#: varasm.c:1247 #, gcc-internal-format msgid "optimization may eliminate reads and/or writes to register variables" msgstr "" -#: varasm.c:1255 +#: varasm.c:1285 #, gcc-internal-format msgid "register name given for non-register variable %q+D" msgstr "" -#: varasm.c:1372 +#: varasm.c:1402 #, gcc-internal-format msgid "global destructors not supported on this target" msgstr "" -#: varasm.c:1438 +#: varasm.c:1468 #, gcc-internal-format msgid "global constructors not supported on this target" msgstr "" -#: varasm.c:1818 +#: varasm.c:1848 #, gcc-internal-format msgid "thread-local COMMON data not implemented" msgstr "" -#: varasm.c:1847 +#: varasm.c:1877 #, gcc-internal-format msgid "" "requested alignment for %q+D is greater than implemented alignment of %wu" msgstr "" -#: varasm.c:4526 +#: varasm.c:4556 #, gcc-internal-format msgid "initializer for integer/fixed-point value is too complicated" msgstr "" -#: varasm.c:4531 +#: varasm.c:4561 #, gcc-internal-format msgid "initializer for floating value is not a floating constant" msgstr "" -#: varasm.c:4837 +#: varasm.c:4867 #, gcc-internal-format msgid "invalid initial value for member %qE" msgstr "" -#: varasm.c:5146 varasm.c:5190 -#, gcc-internal-format -msgid "weak declaration of %q+D must precede definition" -msgstr "" - -#: varasm.c:5154 -#, gcc-internal-format -msgid "" -"weak declaration of %q+D after first use results in unspecified behavior" -msgstr "" - -#: varasm.c:5188 +#: varasm.c:5215 #, gcc-internal-format msgid "weak declaration of %q+D must be public" msgstr "" -#: varasm.c:5192 +#: varasm.c:5217 #, gcc-internal-format msgid "weak declaration of %q+D not supported" msgstr "" -#: varasm.c:5221 varasm.c:5706 +#: varasm.c:5246 varasm.c:5825 #, gcc-internal-format msgid "only weak aliases are supported in this configuration" msgstr "" -#: varasm.c:5440 +#: varasm.c:5465 #, gcc-internal-format msgid "weakref is not supported in this configuration" msgstr "" -#: varasm.c:5463 varasm.c:5703 +#: varasm.c:5488 varasm.c:5822 #, gcc-internal-format msgid "ifunc is not supported in this configuration" msgstr "" -#: varasm.c:5623 +#: varasm.c:5742 #, gcc-internal-format msgid "%q+D aliased to undefined symbol %qE" msgstr "" -#: varasm.c:5637 +#: varasm.c:5756 #, gcc-internal-format msgid "%q+D aliased to external symbol %qE" msgstr "" -#: varasm.c:5680 +#: varasm.c:5799 #, gcc-internal-format msgid "weakref %q+D ultimately targets itself" msgstr "" -#: varasm.c:5689 +#: varasm.c:5808 #, gcc-internal-format msgid "weakref %q+D must have static linkage" msgstr "" -#: varasm.c:5696 +#: varasm.c:5815 #, gcc-internal-format msgid "alias definitions not supported in this configuration" msgstr "" -#: varasm.c:5764 config/sol2.c:155 +#: varasm.c:5883 config/sol2.c:155 config/i386/winnt.c:247 #, gcc-internal-format msgid "visibility attribute not supported in this configuration; ignored" msgstr "" -#: vec.c:523 +#: vec.c:524 #, gcc-internal-format, gfc-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 +#: xcoffout.c:194 #, gcc-internal-format msgid "no sclass for %s stab (0x%x)" msgstr "" @@ -19383,1049 +19529,1049 @@ msgid "" "required to support" msgstr "" -#: c-family/c-common.c:1420 c-family/c-common.c:1432 cp/semantics.c:6053 +#: c-family/c-common.c:1421 c-family/c-common.c:1433 cp/semantics.c:6128 #, gcc-internal-format msgid "overflow in constant expression" msgstr "" -#: c-family/c-common.c:1455 +#: c-family/c-common.c:1456 #, gcc-internal-format msgid "integer overflow in expression" msgstr "" -#: c-family/c-common.c:1460 +#: c-family/c-common.c:1461 #, gcc-internal-format msgid "floating point overflow in expression" msgstr "" -#: c-family/c-common.c:1464 +#: c-family/c-common.c:1465 #, gcc-internal-format msgid "fixed-point overflow in expression" msgstr "" -#: c-family/c-common.c:1468 +#: c-family/c-common.c:1469 #, gcc-internal-format msgid "vector overflow in expression" msgstr "" -#: c-family/c-common.c:1474 +#: c-family/c-common.c:1475 #, gcc-internal-format msgid "complex integer overflow in expression" msgstr "" -#: c-family/c-common.c:1477 +#: c-family/c-common.c:1478 #, gcc-internal-format msgid "complex floating point overflow in expression" msgstr "" -#: c-family/c-common.c:1520 +#: c-family/c-common.c:1521 #, gcc-internal-format msgid "logical %<or%> applied to non-boolean constant" msgstr "" -#: c-family/c-common.c:1523 +#: c-family/c-common.c:1524 #, gcc-internal-format msgid "logical %<and%> applied to non-boolean constant" msgstr "" -#: c-family/c-common.c:1568 +#: c-family/c-common.c:1569 #, gcc-internal-format msgid "logical %<or%> of collectively exhaustive tests is always true" msgstr "" -#: c-family/c-common.c:1572 +#: c-family/c-common.c:1573 #, gcc-internal-format msgid "logical %<and%> of mutually exclusive tests is always false" msgstr "" -#: c-family/c-common.c:1607 +#: c-family/c-common.c:1608 #, gcc-internal-format msgid "type-punning to incomplete type might break strict-aliasing rules" msgstr "" -#: c-family/c-common.c:1622 +#: c-family/c-common.c:1623 #, gcc-internal-format msgid "dereferencing type-punned pointer will break strict-aliasing rules" msgstr "" -#: c-family/c-common.c:1629 c-family/c-common.c:1647 +#: c-family/c-common.c:1630 c-family/c-common.c:1648 #, gcc-internal-format msgid "dereferencing type-punned pointer might break strict-aliasing rules" msgstr "" -#: c-family/c-common.c:1678 +#: c-family/c-common.c:1679 #, gcc-internal-format msgid "first argument of %q+D should be %<int%>" msgstr "" -#: c-family/c-common.c:1687 +#: c-family/c-common.c:1688 #, gcc-internal-format msgid "second argument of %q+D should be %<char **%>" msgstr "" -#: c-family/c-common.c:1696 +#: c-family/c-common.c:1697 #, gcc-internal-format msgid "third argument of %q+D should probably be %<char **%>" msgstr "" -#: c-family/c-common.c:1706 +#: c-family/c-common.c:1707 #, gcc-internal-format msgid "%q+D takes only zero or two arguments" msgstr "" -#: c-family/c-common.c:1755 +#: c-family/c-common.c:1756 #, gcc-internal-format msgid "" "use -flax-vector-conversions to permit conversions between vectors with " "differing element types or numbers of subparts" msgstr "" -#: c-family/c-common.c:1911 +#: c-family/c-common.c:1912 #, gcc-internal-format msgid "conversion to %qT from boolean expression" msgstr "" -#: c-family/c-common.c:1932 +#: c-family/c-common.c:1933 #, gcc-internal-format msgid "negative integer implicitly converted to unsigned type" msgstr "" -#: c-family/c-common.c:1935 +#: c-family/c-common.c:1936 #, gcc-internal-format msgid "conversion of unsigned constant value to negative integer" msgstr "" -#: c-family/c-common.c:1962 +#: c-family/c-common.c:1963 #, gcc-internal-format msgid "conversion to %qT alters %qT constant value" msgstr "" -#: c-family/c-common.c:2054 +#: c-family/c-common.c:2055 #, gcc-internal-format msgid "conversion to %qT from %qT may change the sign of the result" msgstr "" -#: c-family/c-common.c:2091 +#: c-family/c-common.c:2092 #, gcc-internal-format msgid "conversion to %qT from %qT may alter its value" msgstr "" -#: c-family/c-common.c:2119 +#: c-family/c-common.c:2120 #, gcc-internal-format msgid "large integer implicitly truncated to unsigned type" msgstr "" -#: c-family/c-common.c:2125 c-family/c-common.c:2132 c-family/c-common.c:2140 +#: c-family/c-common.c:2126 c-family/c-common.c:2133 c-family/c-common.c:2141 #, gcc-internal-format msgid "overflow in implicit constant conversion" msgstr "" -#: c-family/c-common.c:2312 +#: c-family/c-common.c:2313 #, gcc-internal-format msgid "operation on %qE may be undefined" msgstr "" -#: c-family/c-common.c:2620 +#: c-family/c-common.c:2621 #, gcc-internal-format msgid "case label does not reduce to an integer constant" msgstr "" -#: c-family/c-common.c:2660 +#: c-family/c-common.c:2661 #, gcc-internal-format msgid "case label value is less than minimum value for type" msgstr "" -#: c-family/c-common.c:2668 +#: c-family/c-common.c:2669 #, gcc-internal-format msgid "case label value exceeds maximum value for type" msgstr "" -#: c-family/c-common.c:2676 +#: c-family/c-common.c:2677 #, gcc-internal-format msgid "lower value in case label range less than minimum value for type" msgstr "" -#: c-family/c-common.c:2685 +#: c-family/c-common.c:2686 #, gcc-internal-format msgid "upper value in case label range exceeds maximum value for type" msgstr "" -#: c-family/c-common.c:2764 +#: c-family/c-common.c:2765 #, 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-family/c-common.c:3266 +#: c-family/c-common.c:3267 #, gcc-internal-format msgid "invalid operands to binary %s (have %qT and %qT)" msgstr "" -#: c-family/c-common.c:3501 +#: c-family/c-common.c:3502 #, gcc-internal-format msgid "comparison is always false due to limited range of data type" msgstr "" -#: c-family/c-common.c:3503 +#: c-family/c-common.c:3504 #, gcc-internal-format msgid "comparison is always true due to limited range of data type" msgstr "" -#: c-family/c-common.c:3582 +#: c-family/c-common.c:3583 #, gcc-internal-format msgid "comparison of unsigned expression >= 0 is always true" msgstr "" -#: c-family/c-common.c:3592 +#: c-family/c-common.c:3593 #, gcc-internal-format msgid "comparison of unsigned expression < 0 is always false" msgstr "" -#: c-family/c-common.c:3634 +#: c-family/c-common.c:3635 #, gcc-internal-format msgid "pointer of type %<void *%> used in arithmetic" msgstr "" -#: c-family/c-common.c:3640 +#: c-family/c-common.c:3641 #, gcc-internal-format msgid "pointer to a function used in arithmetic" msgstr "" -#: c-family/c-common.c:3646 +#: c-family/c-common.c:3647 #, gcc-internal-format msgid "pointer to member function used in arithmetic" msgstr "" -#: c-family/c-common.c:3858 +#: c-family/c-common.c:3859 #, gcc-internal-format msgid "the address of %qD will always evaluate as %<true%>" msgstr "" -#: c-family/c-common.c:3943 cp/semantics.c:610 cp/typeck.c:7359 +#: c-family/c-common.c:3944 cp/semantics.c:610 cp/typeck.c:7359 #, gcc-internal-format msgid "suggest parentheses around assignment used as truth value" msgstr "" -#: c-family/c-common.c:4217 +#: c-family/c-common.c:4218 #, gcc-internal-format msgid "invalid application of %<sizeof%> to a function type" msgstr "" -#: c-family/c-common.c:4230 +#: c-family/c-common.c:4231 #, gcc-internal-format msgid "invalid application of %qs to a void type" msgstr "" -#: c-family/c-common.c:4238 +#: c-family/c-common.c:4239 #, gcc-internal-format msgid "invalid application of %qs to incomplete type %qT " msgstr "" -#: c-family/c-common.c:4280 +#: c-family/c-common.c:4281 #, gcc-internal-format msgid "%<__alignof%> applied to a bit-field" msgstr "" -#: c-family/c-common.c:4996 +#: c-family/c-common.c:4997 #, gcc-internal-format msgid "cannot disable built-in function %qs" msgstr "" -#: c-family/c-common.c:5188 +#: c-family/c-common.c:5189 #, gcc-internal-format msgid "pointers are not permitted as case values" msgstr "" -#: c-family/c-common.c:5195 +#: c-family/c-common.c:5196 #, gcc-internal-format msgid "range expressions in switch statements are non-standard" msgstr "" -#: c-family/c-common.c:5221 +#: c-family/c-common.c:5222 #, gcc-internal-format msgid "empty range specified" msgstr "" -#: c-family/c-common.c:5281 +#: c-family/c-common.c:5282 #, gcc-internal-format msgid "duplicate (or overlapping) case value" msgstr "" -#: c-family/c-common.c:5283 +#: c-family/c-common.c:5284 #, gcc-internal-format msgid "this is the first entry overlapping that value" msgstr "" -#: c-family/c-common.c:5287 +#: c-family/c-common.c:5288 #, gcc-internal-format msgid "duplicate case value" msgstr "" -#: c-family/c-common.c:5288 +#: c-family/c-common.c:5289 #, gcc-internal-format msgid "previously used here" msgstr "" -#: c-family/c-common.c:5292 +#: c-family/c-common.c:5293 #, gcc-internal-format msgid "multiple default labels in one switch" msgstr "" -#: c-family/c-common.c:5294 +#: c-family/c-common.c:5295 #, gcc-internal-format msgid "this is the first default label" msgstr "" -#: c-family/c-common.c:5346 +#: c-family/c-common.c:5347 #, gcc-internal-format msgid "case value %qs not in enumerated type" msgstr "" -#: c-family/c-common.c:5351 +#: c-family/c-common.c:5352 #, gcc-internal-format msgid "case value %qs not in enumerated type %qT" msgstr "" -#: c-family/c-common.c:5410 +#: c-family/c-common.c:5411 #, gcc-internal-format msgid "switch missing default case" msgstr "" -#: c-family/c-common.c:5482 +#: c-family/c-common.c:5483 #, gcc-internal-format msgid "enumeration value %qE not handled in switch" msgstr "" -#: c-family/c-common.c:5508 +#: c-family/c-common.c:5509 #, gcc-internal-format msgid "taking the address of a label is non-standard" msgstr "" -#: c-family/c-common.c:5695 +#: c-family/c-common.c:5696 #, gcc-internal-format msgid "%qE attribute ignored for field of type %qT" msgstr "" -#: c-family/c-common.c:5789 c-family/c-common.c:5815 +#: c-family/c-common.c:5790 c-family/c-common.c:5816 #, gcc-internal-format msgid "%qE attribute conflicts with attribute %s" msgstr "" -#: c-family/c-common.c:5929 lto/lto-lang.c:205 +#: c-family/c-common.c:5930 lto/lto-lang.c:206 #, gcc-internal-format msgid "%qE attribute has no effect on unit local functions" msgstr "" -#: c-family/c-common.c:6082 +#: c-family/c-common.c:6083 #, gcc-internal-format msgid "%qE attribute have effect only on public objects" msgstr "" -#: c-family/c-common.c:6179 +#: c-family/c-common.c:6180 #, gcc-internal-format msgid "destructor priorities are not supported" msgstr "" -#: c-family/c-common.c:6181 +#: c-family/c-common.c:6182 #, gcc-internal-format msgid "constructor priorities are not supported" msgstr "" -#: c-family/c-common.c:6198 +#: c-family/c-common.c:6199 #, gcc-internal-format, gfc-internal-format msgid "destructor priorities from 0 to %d are reserved for the implementation" msgstr "" -#: c-family/c-common.c:6203 +#: c-family/c-common.c:6204 #, gcc-internal-format, gfc-internal-format msgid "constructor priorities from 0 to %d are reserved for the implementation" msgstr "" -#: c-family/c-common.c:6211 +#: c-family/c-common.c:6212 #, gcc-internal-format, gfc-internal-format msgid "destructor priorities must be integers from 0 to %d inclusive" msgstr "" -#: c-family/c-common.c:6214 +#: c-family/c-common.c:6215 #, gcc-internal-format, gfc-internal-format msgid "constructor priorities must be integers from 0 to %d inclusive" msgstr "" -#: c-family/c-common.c:6370 +#: c-family/c-common.c:6371 #, gcc-internal-format msgid "unknown machine mode %qE" msgstr "" -#: c-family/c-common.c:6399 +#: c-family/c-common.c:6400 #, gcc-internal-format msgid "specifying vector types with __attribute__ ((mode)) is deprecated" msgstr "" -#: c-family/c-common.c:6402 +#: c-family/c-common.c:6403 #, gcc-internal-format msgid "use __attribute__ ((vector_size)) instead" msgstr "" -#: c-family/c-common.c:6411 +#: c-family/c-common.c:6412 #, gcc-internal-format msgid "unable to emulate %qs" msgstr "" -#: c-family/c-common.c:6422 +#: c-family/c-common.c:6423 #, gcc-internal-format msgid "invalid pointer mode %qs" msgstr "" -#: c-family/c-common.c:6439 +#: c-family/c-common.c:6440 #, gcc-internal-format msgid "signedness of type and machine mode %qs don%'t match" msgstr "" -#: c-family/c-common.c:6450 +#: c-family/c-common.c:6451 #, gcc-internal-format msgid "no data type for mode %qs" msgstr "" -#: c-family/c-common.c:6460 +#: c-family/c-common.c:6461 #, gcc-internal-format msgid "cannot use mode %qs for enumeral types" msgstr "" -#: c-family/c-common.c:6487 +#: c-family/c-common.c:6488 #, gcc-internal-format msgid "mode %qs applied to inappropriate type" msgstr "" -#: c-family/c-common.c:6519 +#: c-family/c-common.c:6520 #, gcc-internal-format msgid "section attribute cannot be specified for local variables" msgstr "" -#: c-family/c-common.c:6530 config/bfin/bfin.c:5663 config/bfin/bfin.c:5714 +#: c-family/c-common.c:6531 config/bfin/bfin.c:5663 config/bfin/bfin.c:5714 #: config/bfin/bfin.c:5741 config/bfin/bfin.c:5754 #, gcc-internal-format msgid "section of %q+D conflicts with previous declaration" msgstr "" -#: c-family/c-common.c:6538 +#: c-family/c-common.c:6539 #, gcc-internal-format msgid "section of %q+D cannot be overridden" msgstr "" -#: c-family/c-common.c:6546 +#: c-family/c-common.c:6547 #, gcc-internal-format msgid "section attribute not allowed for %q+D" msgstr "" -#: c-family/c-common.c:6553 +#: c-family/c-common.c:6554 #, gcc-internal-format msgid "section attributes are not supported for this target" msgstr "" -#: c-family/c-common.c:6585 +#: c-family/c-common.c:6586 #, gcc-internal-format msgid "requested alignment is not a constant" msgstr "" -#: c-family/c-common.c:6590 +#: c-family/c-common.c:6591 #, gcc-internal-format msgid "requested alignment is not a power of 2" msgstr "" -#: c-family/c-common.c:6595 +#: c-family/c-common.c:6596 #, gcc-internal-format msgid "requested alignment is too large" msgstr "" -#: c-family/c-common.c:6623 +#: c-family/c-common.c:6624 #, gcc-internal-format msgid "alignment may not be specified for %q+D" msgstr "" -#: c-family/c-common.c:6630 +#: c-family/c-common.c:6631 #, gcc-internal-format msgid "" "alignment for %q+D was previously specified as %d and may not be decreased" msgstr "" -#: c-family/c-common.c:6634 +#: c-family/c-common.c:6635 #, gcc-internal-format msgid "alignment for %q+D must be at least %d" msgstr "" -#: c-family/c-common.c:6659 +#: c-family/c-common.c:6660 #, gcc-internal-format -msgid "inline function %q+D cannot be declared weak" +msgid "inline function %q+D declared weak" msgstr "" -#: c-family/c-common.c:6664 +#: c-family/c-common.c:6665 #, gcc-internal-format msgid "indirect function %q+D cannot be declared weak" msgstr "" -#: c-family/c-common.c:6701 +#: c-family/c-common.c:6702 #, gcc-internal-format msgid "%q+D defined both normally and as %qE attribute" msgstr "" -#: c-family/c-common.c:6709 +#: c-family/c-common.c:6710 #, gcc-internal-format msgid "weak %q+D cannot be defined %qE" msgstr "" -#: c-family/c-common.c:6726 +#: c-family/c-common.c:6727 #, gcc-internal-format msgid "attribute %qE argument not a string" msgstr "" -#: c-family/c-common.c:6802 +#: c-family/c-common.c:6803 #, gcc-internal-format msgid "indirect function %q+D cannot be declared weakref" msgstr "" -#: c-family/c-common.c:6824 +#: c-family/c-common.c:6825 #, gcc-internal-format msgid "weakref attribute must appear before alias attribute" msgstr "" -#: c-family/c-common.c:6853 +#: c-family/c-common.c:6854 #, gcc-internal-format msgid "%qE attribute ignored on non-class types" msgstr "" -#: c-family/c-common.c:6859 +#: c-family/c-common.c:6860 #, gcc-internal-format msgid "%qE attribute ignored because %qT is already defined" msgstr "" -#: c-family/c-common.c:6872 +#: c-family/c-common.c:6873 #, gcc-internal-format msgid "visibility argument not a string" msgstr "" -#: c-family/c-common.c:6884 +#: c-family/c-common.c:6885 #, gcc-internal-format msgid "%qE attribute ignored on types" msgstr "" -#: c-family/c-common.c:6900 +#: c-family/c-common.c:6901 #, gcc-internal-format msgid "" "visibility argument must be one of \"default\", \"hidden\", \"protected\" or " "\"internal\"" msgstr "" -#: c-family/c-common.c:6911 +#: c-family/c-common.c:6912 #, gcc-internal-format msgid "%qD redeclared with different visibility" msgstr "" -#: c-family/c-common.c:6914 c-family/c-common.c:6918 +#: c-family/c-common.c:6915 c-family/c-common.c:6919 #, gcc-internal-format msgid "%qD was declared %qs which implies default visibility" msgstr "" -#: c-family/c-common.c:7002 +#: c-family/c-common.c:7003 #, gcc-internal-format msgid "tls_model argument not a string" msgstr "" -#: c-family/c-common.c:7015 +#: c-family/c-common.c:7016 #, gcc-internal-format msgid "" "tls_model argument must be one of \"local-exec\", \"initial-exec\", \"local-" "dynamic\" or \"global-dynamic\"" msgstr "" -#: c-family/c-common.c:7035 c-family/c-common.c:7141 c-family/c-common.c:7899 -#: config/m32c/m32c.c:3168 +#: c-family/c-common.c:7036 c-family/c-common.c:7142 c-family/c-common.c:7900 +#: config/m32c/m32c.c:3174 #, gcc-internal-format msgid "%qE attribute applies only to functions" msgstr "" -#: c-family/c-common.c:7041 c-family/c-common.c:7147 c-family/c-common.c:7905 +#: c-family/c-common.c:7042 c-family/c-common.c:7148 c-family/c-common.c:7906 #, gcc-internal-format msgid "can%'t set %qE attribute after definition" msgstr "" -#: c-family/c-common.c:7087 +#: c-family/c-common.c:7088 #, gcc-internal-format msgid "alloc_size parameter outside range" msgstr "" -#: c-family/c-common.c:7204 +#: c-family/c-common.c:7205 #, gcc-internal-format msgid "deprecated message is not a string" msgstr "" -#: c-family/c-common.c:7245 +#: c-family/c-common.c:7246 #, gcc-internal-format msgid "%qE attribute ignored for %qE" msgstr "" -#: c-family/c-common.c:7305 +#: c-family/c-common.c:7306 #, gcc-internal-format msgid "invalid vector type for attribute %qE" msgstr "" -#: c-family/c-common.c:7311 ada/gcc-interface/utils.c:5340 -#: ada/gcc-interface/utils.c:5434 +#: c-family/c-common.c:7312 ada/gcc-interface/utils.c:5366 +#: ada/gcc-interface/utils.c:5460 #, gcc-internal-format msgid "vector size not an integral multiple of component size" msgstr "" -#: c-family/c-common.c:7317 ada/gcc-interface/utils.c:5346 -#: ada/gcc-interface/utils.c:5440 +#: c-family/c-common.c:7318 ada/gcc-interface/utils.c:5372 +#: ada/gcc-interface/utils.c:5466 #, gcc-internal-format msgid "zero vector size" msgstr "" -#: c-family/c-common.c:7325 ada/gcc-interface/utils.c:5354 -#: ada/gcc-interface/utils.c:5447 +#: c-family/c-common.c:7326 ada/gcc-interface/utils.c:5380 +#: ada/gcc-interface/utils.c:5473 #, gcc-internal-format msgid "number of components of the vector not a power of two" msgstr "" -#: c-family/c-common.c:7353 ada/gcc-interface/utils.c:5070 +#: c-family/c-common.c:7354 ada/gcc-interface/utils.c:5098 #, gcc-internal-format msgid "nonnull attribute without arguments on a non-prototype" msgstr "" -#: c-family/c-common.c:7368 ada/gcc-interface/utils.c:5085 +#: c-family/c-common.c:7369 ada/gcc-interface/utils.c:5113 #, gcc-internal-format, gfc-internal-format msgid "nonnull argument has invalid operand number (argument %lu)" msgstr "" -#: c-family/c-common.c:7387 ada/gcc-interface/utils.c:5104 +#: c-family/c-common.c:7388 ada/gcc-interface/utils.c:5132 #, gcc-internal-format, gfc-internal-format msgid "" "nonnull argument with out-of-range operand number (argument %lu, operand %lu)" msgstr "" -#: c-family/c-common.c:7395 ada/gcc-interface/utils.c:5113 +#: c-family/c-common.c:7396 ada/gcc-interface/utils.c:5141 #, gcc-internal-format, gfc-internal-format msgid "" "nonnull argument references non-pointer operand (argument %lu, operand %lu)" msgstr "" -#: c-family/c-common.c:7471 +#: c-family/c-common.c:7472 #, gcc-internal-format msgid "not enough variable arguments to fit a sentinel" msgstr "" -#: c-family/c-common.c:7485 +#: c-family/c-common.c:7486 #, gcc-internal-format msgid "missing sentinel in function call" msgstr "" -#: c-family/c-common.c:7526 +#: c-family/c-common.c:7527 #, gcc-internal-format, gfc-internal-format msgid "null argument where non-null required (argument %lu)" msgstr "" -#: c-family/c-common.c:7591 +#: c-family/c-common.c:7592 #, gcc-internal-format msgid "cleanup argument not an identifier" msgstr "" -#: c-family/c-common.c:7598 +#: c-family/c-common.c:7599 #, gcc-internal-format msgid "cleanup argument not a function" msgstr "" -#: c-family/c-common.c:7637 +#: c-family/c-common.c:7638 #, gcc-internal-format msgid "%qE attribute requires prototypes with named arguments" msgstr "" -#: c-family/c-common.c:7648 +#: c-family/c-common.c:7649 #, gcc-internal-format msgid "%qE attribute only applies to variadic functions" msgstr "" -#: c-family/c-common.c:7660 ada/gcc-interface/utils.c:5160 +#: c-family/c-common.c:7661 ada/gcc-interface/utils.c:5188 #, gcc-internal-format msgid "requested position is not an integer constant" msgstr "" -#: c-family/c-common.c:7668 ada/gcc-interface/utils.c:5167 +#: c-family/c-common.c:7669 ada/gcc-interface/utils.c:5195 #, gcc-internal-format msgid "requested position is less than zero" msgstr "" -#: c-family/c-common.c:7794 +#: c-family/c-common.c:7795 #, gcc-internal-format, gfc-internal-format msgid "bad option %s to optimize attribute" msgstr "" -#: c-family/c-common.c:7797 +#: c-family/c-common.c:7798 #, gcc-internal-format, gfc-internal-format msgid "bad option %s to pragma attribute" msgstr "" -#: c-family/c-common.c:8026 +#: c-family/c-common.c:8027 #, gcc-internal-format msgid "not enough arguments to function %qE" msgstr "" -#: c-family/c-common.c:8062 c-family/c-common.c:8108 +#: c-family/c-common.c:8063 c-family/c-common.c:8109 #, gcc-internal-format msgid "non-floating-point argument in call to function %qE" msgstr "" -#: c-family/c-common.c:8085 +#: c-family/c-common.c:8086 #, gcc-internal-format msgid "non-floating-point arguments in call to function %qE" msgstr "" -#: c-family/c-common.c:8101 +#: c-family/c-common.c:8102 #, gcc-internal-format msgid "non-const integer argument %u in call to function %qE" msgstr "" -#: c-family/c-common.c:8437 +#: c-family/c-common.c:8438 #, gcc-internal-format msgid "cannot apply %<offsetof%> to static data member %qD" msgstr "" -#: c-family/c-common.c:8442 +#: c-family/c-common.c:8443 #, gcc-internal-format msgid "cannot apply %<offsetof%> when %<operator[]%> is overloaded" msgstr "" -#: c-family/c-common.c:8449 +#: c-family/c-common.c:8450 #, gcc-internal-format msgid "cannot apply %<offsetof%> to a non constant address" msgstr "" -#: c-family/c-common.c:8462 cp/typeck.c:4915 +#: c-family/c-common.c:8463 cp/typeck.c:4915 #, gcc-internal-format msgid "attempt to take address of bit-field structure member %qD" msgstr "" -#: c-family/c-common.c:8521 +#: c-family/c-common.c:8522 #, gcc-internal-format msgid "index %E denotes an offset greater than size of %qT" msgstr "" -#: c-family/c-common.c:8557 +#: c-family/c-common.c:8558 #, gcc-internal-format msgid "" "the omitted middle operand in ?: will always be %<true%>, suggest explicit " "middle operand" msgstr "" -#: c-family/c-common.c:8578 +#: c-family/c-common.c:8579 #, gcc-internal-format msgid "assignment of member %qD in read-only object" msgstr "" -#: c-family/c-common.c:8580 +#: c-family/c-common.c:8581 #, gcc-internal-format msgid "increment of member %qD in read-only object" msgstr "" -#: c-family/c-common.c:8582 +#: c-family/c-common.c:8583 #, gcc-internal-format msgid "decrement of member %qD in read-only object" msgstr "" -#: c-family/c-common.c:8584 +#: c-family/c-common.c:8585 #, gcc-internal-format msgid "member %qD in read-only object used as %<asm%> output" msgstr "" -#: c-family/c-common.c:8588 +#: c-family/c-common.c:8589 #, gcc-internal-format msgid "assignment of read-only member %qD" msgstr "" -#: c-family/c-common.c:8589 +#: c-family/c-common.c:8590 #, gcc-internal-format msgid "increment of read-only member %qD" msgstr "" -#: c-family/c-common.c:8590 +#: c-family/c-common.c:8591 #, gcc-internal-format msgid "decrement of read-only member %qD" msgstr "" -#: c-family/c-common.c:8591 +#: c-family/c-common.c:8592 #, gcc-internal-format msgid "read-only member %qD used as %<asm%> output" msgstr "" -#: c-family/c-common.c:8595 +#: c-family/c-common.c:8596 #, gcc-internal-format msgid "assignment of read-only variable %qD" msgstr "" -#: c-family/c-common.c:8596 +#: c-family/c-common.c:8597 #, gcc-internal-format msgid "increment of read-only variable %qD" msgstr "" -#: c-family/c-common.c:8597 +#: c-family/c-common.c:8598 #, gcc-internal-format msgid "decrement of read-only variable %qD" msgstr "" -#: c-family/c-common.c:8598 +#: c-family/c-common.c:8599 #, gcc-internal-format msgid "read-only variable %qD used as %<asm%> output" msgstr "" -#: c-family/c-common.c:8601 +#: c-family/c-common.c:8602 #, gcc-internal-format msgid "assignment of read-only parameter %qD" msgstr "" -#: c-family/c-common.c:8602 +#: c-family/c-common.c:8603 #, gcc-internal-format msgid "increment of read-only parameter %qD" msgstr "" -#: c-family/c-common.c:8603 +#: c-family/c-common.c:8604 #, gcc-internal-format msgid "decrement of read-only parameter %qD" msgstr "" -#: c-family/c-common.c:8604 +#: c-family/c-common.c:8605 #, gcc-internal-format msgid "read-only parameter %qD use as %<asm%> output" msgstr "" -#: c-family/c-common.c:8609 +#: c-family/c-common.c:8610 #, gcc-internal-format msgid "assignment of read-only named return value %qD" msgstr "" -#: c-family/c-common.c:8611 +#: c-family/c-common.c:8612 #, gcc-internal-format msgid "increment of read-only named return value %qD" msgstr "" -#: c-family/c-common.c:8613 +#: c-family/c-common.c:8614 #, gcc-internal-format msgid "decrement of read-only named return value %qD" msgstr "" -#: c-family/c-common.c:8615 +#: c-family/c-common.c:8616 #, gcc-internal-format msgid "read-only named return value %qD used as %<asm%>output" msgstr "" -#: c-family/c-common.c:8620 +#: c-family/c-common.c:8621 #, gcc-internal-format msgid "assignment of function %qD" msgstr "" -#: c-family/c-common.c:8621 +#: c-family/c-common.c:8622 #, gcc-internal-format msgid "increment of function %qD" msgstr "" -#: c-family/c-common.c:8622 +#: c-family/c-common.c:8623 #, gcc-internal-format msgid "decrement of function %qD" msgstr "" -#: c-family/c-common.c:8623 +#: c-family/c-common.c:8624 #, gcc-internal-format msgid "function %qD used as %<asm%> output" msgstr "" -#: c-family/c-common.c:8629 +#: c-family/c-common.c:8630 #, gcc-internal-format msgid "read-only location %qE used as %<asm%> output" msgstr "" -#: c-family/c-common.c:8642 +#: c-family/c-common.c:8644 #, gcc-internal-format msgid "lvalue required as left operand of assignment" msgstr "" -#: c-family/c-common.c:8645 +#: c-family/c-common.c:8647 #, gcc-internal-format msgid "lvalue required as increment operand" msgstr "" -#: c-family/c-common.c:8648 +#: c-family/c-common.c:8650 #, gcc-internal-format msgid "lvalue required as decrement operand" msgstr "" -#: c-family/c-common.c:8651 +#: c-family/c-common.c:8653 #, gcc-internal-format msgid "lvalue required as unary %<&%> operand" msgstr "" -#: c-family/c-common.c:8654 +#: c-family/c-common.c:8656 #, gcc-internal-format msgid "lvalue required in asm statement" msgstr "" -#: c-family/c-common.c:8671 +#: c-family/c-common.c:8673 #, gcc-internal-format msgid "invalid type argument (have %qT)" msgstr "" -#: c-family/c-common.c:8675 +#: c-family/c-common.c:8677 #, gcc-internal-format msgid "invalid type argument of array indexing (have %qT)" msgstr "" -#: c-family/c-common.c:8680 +#: c-family/c-common.c:8682 #, gcc-internal-format msgid "invalid type argument of unary %<*%> (have %qT)" msgstr "" -#: c-family/c-common.c:8685 +#: c-family/c-common.c:8687 #, gcc-internal-format msgid "invalid type argument of %<->%> (have %qT)" msgstr "" -#: c-family/c-common.c:8690 +#: c-family/c-common.c:8692 #, gcc-internal-format msgid "invalid type argument of implicit conversion (have %qT)" msgstr "" -#: c-family/c-common.c:8821 +#: c-family/c-common.c:8823 #, gcc-internal-format msgid "size of array is too large" msgstr "" -#: c-family/c-common.c:9080 +#: c-family/c-common.c:9082 #, gcc-internal-format msgid "array subscript has type %<char%>" msgstr "" -#: c-family/c-common.c:9115 +#: c-family/c-common.c:9117 #, gcc-internal-format msgid "suggest parentheses around %<+%> inside %<<<%>" msgstr "" -#: c-family/c-common.c:9118 +#: c-family/c-common.c:9120 #, gcc-internal-format msgid "suggest parentheses around %<-%> inside %<<<%>" msgstr "" -#: c-family/c-common.c:9124 +#: c-family/c-common.c:9126 #, gcc-internal-format msgid "suggest parentheses around %<+%> inside %<>>%>" msgstr "" -#: c-family/c-common.c:9127 +#: c-family/c-common.c:9129 #, gcc-internal-format msgid "suggest parentheses around %<-%> inside %<>>%>" msgstr "" -#: c-family/c-common.c:9133 +#: c-family/c-common.c:9135 #, gcc-internal-format msgid "suggest parentheses around %<&&%> within %<||%>" msgstr "" -#: c-family/c-common.c:9142 +#: c-family/c-common.c:9144 #, gcc-internal-format msgid "suggest parentheses around arithmetic in operand of %<|%>" msgstr "" -#: c-family/c-common.c:9147 +#: c-family/c-common.c:9149 #, gcc-internal-format msgid "suggest parentheses around comparison in operand of %<|%>" msgstr "" -#: c-family/c-common.c:9151 +#: c-family/c-common.c:9153 #, gcc-internal-format msgid "" "suggest parentheses around operand of %<!%> or change %<|%> to %<||%> or %<!" "%> to %<~%>" msgstr "" -#: c-family/c-common.c:9161 +#: c-family/c-common.c:9163 #, gcc-internal-format msgid "suggest parentheses around arithmetic in operand of %<^%>" msgstr "" -#: c-family/c-common.c:9166 +#: c-family/c-common.c:9168 #, gcc-internal-format msgid "suggest parentheses around comparison in operand of %<^%>" msgstr "" -#: c-family/c-common.c:9172 +#: c-family/c-common.c:9174 #, gcc-internal-format msgid "suggest parentheses around %<+%> in operand of %<&%>" msgstr "" -#: c-family/c-common.c:9175 +#: c-family/c-common.c:9177 #, gcc-internal-format msgid "suggest parentheses around %<-%> in operand of %<&%>" msgstr "" -#: c-family/c-common.c:9180 +#: c-family/c-common.c:9182 #, gcc-internal-format msgid "suggest parentheses around comparison in operand of %<&%>" msgstr "" -#: c-family/c-common.c:9184 +#: c-family/c-common.c:9186 #, gcc-internal-format msgid "" "suggest parentheses around operand of %<!%> or change %<&%> to %<&&%> or %<!" "%> to %<~%>" msgstr "" -#: c-family/c-common.c:9192 +#: c-family/c-common.c:9194 #, gcc-internal-format msgid "suggest parentheses around comparison in operand of %<==%>" msgstr "" -#: c-family/c-common.c:9198 +#: c-family/c-common.c:9200 #, gcc-internal-format msgid "suggest parentheses around comparison in operand of %<!=%>" msgstr "" -#: c-family/c-common.c:9209 +#: c-family/c-common.c:9211 #, gcc-internal-format msgid "comparisons like %<X<=Y<=Z%> do not have their mathematical meaning" msgstr "" -#: c-family/c-common.c:9224 +#: c-family/c-common.c:9226 #, gcc-internal-format msgid "label %q+D defined but not used" msgstr "" -#: c-family/c-common.c:9226 +#: c-family/c-common.c:9228 #, gcc-internal-format msgid "label %q+D declared but not defined" msgstr "" -#: c-family/c-common.c:9246 +#: c-family/c-common.c:9248 #, gcc-internal-format msgid "division by zero" msgstr "" -#: c-family/c-common.c:9278 +#: c-family/c-common.c:9280 #, gcc-internal-format msgid "comparison between types %qT and %qT" msgstr "" -#: c-family/c-common.c:9329 +#: c-family/c-common.c:9331 #, gcc-internal-format msgid "comparison between signed and unsigned integer expressions" msgstr "" -#: c-family/c-common.c:9380 +#: c-family/c-common.c:9382 #, gcc-internal-format msgid "promoted ~unsigned is always non-zero" msgstr "" -#: c-family/c-common.c:9383 +#: c-family/c-common.c:9385 #, gcc-internal-format msgid "comparison of promoted ~unsigned with constant" msgstr "" -#: c-family/c-common.c:9393 +#: c-family/c-common.c:9395 #, gcc-internal-format msgid "comparison of promoted ~unsigned with unsigned" msgstr "" @@ -20789,7 +20935,7 @@ msgid "ignoring #pragma %s %s" msgstr "" #. ... or not. -#: c-family/c-lex.c:385 c-family/c-lex.c:976 +#: c-family/c-lex.c:385 c-family/c-lex.c:983 #, gcc-internal-format msgid "stray %<@%> in program" msgstr "" @@ -20854,17 +21000,17 @@ msgstr "" msgid "floating constant truncated to zero" msgstr "" -#: c-family/c-lex.c:938 +#: c-family/c-lex.c:945 #, gcc-internal-format msgid "repeated %<@%> before Objective-C string" msgstr "" -#: c-family/c-lex.c:957 cp/parser.c:3375 +#: c-family/c-lex.c:964 cp/parser.c:3377 #, gcc-internal-format msgid "unsupported non-standard concatenation of string literals" msgstr "" -#: c-family/c-lex.c:985 +#: c-family/c-lex.c:992 #, gcc-internal-format msgid "traditional C rejects string constant concatenation" msgstr "" @@ -20874,7 +21020,7 @@ msgstr "" msgid "invalid expression type for %<#pragma omp atomic%>" msgstr "" -#: c-family/c-omp.c:256 cp/semantics.c:4419 +#: c-family/c-omp.c:256 cp/semantics.c:4472 #, gcc-internal-format msgid "invalid type for iteration variable %qE" msgstr "" @@ -20884,22 +21030,22 @@ msgstr "" msgid "%qE is not initialized" msgstr "" -#: c-family/c-omp.c:286 cp/semantics.c:4334 +#: c-family/c-omp.c:286 cp/semantics.c:4387 #, gcc-internal-format msgid "missing controlling predicate" msgstr "" -#: c-family/c-omp.c:368 cp/semantics.c:4091 +#: c-family/c-omp.c:368 cp/semantics.c:4144 #, gcc-internal-format msgid "invalid controlling predicate" msgstr "" -#: c-family/c-omp.c:375 cp/semantics.c:4340 +#: c-family/c-omp.c:375 cp/semantics.c:4393 #, gcc-internal-format msgid "missing increment expression" msgstr "" -#: c-family/c-omp.c:444 cp/semantics.c:4196 +#: c-family/c-omp.c:444 cp/semantics.c:4249 #, gcc-internal-format msgid "invalid increment expression" msgstr "" @@ -20979,42 +21125,42 @@ msgstr "" msgid "too many filenames given. Type %s --help for usage" msgstr "" -#: c-family/c-opts.c:1106 +#: c-family/c-opts.c:1112 #, gcc-internal-format msgid "opening dependency file %s: %m" msgstr "" -#: c-family/c-opts.c:1116 +#: c-family/c-opts.c:1122 #, gcc-internal-format msgid "closing dependency file %s: %m" msgstr "" -#: c-family/c-opts.c:1119 +#: c-family/c-opts.c:1125 #, gcc-internal-format msgid "when writing output to %s: %m" msgstr "" -#: c-family/c-opts.c:1199 +#: c-family/c-opts.c:1205 #, gcc-internal-format msgid "to generate dependencies you must specify either -M or -MM" msgstr "" -#: c-family/c-opts.c:1222 +#: c-family/c-opts.c:1228 #, gcc-internal-format msgid "-MG may only be used with -M or -MM" msgstr "" -#: c-family/c-opts.c:1252 +#: c-family/c-opts.c:1258 #, gcc-internal-format msgid "-fdirectives-only is incompatible with -Wunused_macros" msgstr "" -#: c-family/c-opts.c:1254 +#: c-family/c-opts.c:1260 #, gcc-internal-format msgid "-fdirectives-only is incompatible with -traditional" msgstr "" -#: c-family/c-opts.c:1405 +#: c-family/c-opts.c:1411 #, gcc-internal-format msgid "too late for # directive to set debug directory" msgstr "" @@ -21438,60 +21584,67 @@ msgstr "" msgid "couldn%'t understand kern.osversion %q.*s" msgstr "" -#: config/darwin.c:1554 +#: config/darwin.c:1608 +#, gcc-internal-format +msgid "" +"the use of _OBJC_-prefixed variable names to select meta-data sections is " +"deprecated at 4.6 and will be removed in 4.7" +msgstr "" + +#: config/darwin.c:1782 #, gcc-internal-format, gfc-internal-format msgid "failed to open temporary file %s for LTO output" msgstr "" -#: config/darwin.c:1642 +#: config/darwin.c:1870 #, gcc-internal-format msgid "" "%qE 2.95 vtable-compatibility attribute applies only when compiling a kext" msgstr "" -#: config/darwin.c:1649 +#: config/darwin.c:1877 #, gcc-internal-format msgid "%qE 2.95 vtable-compatibility attribute applies only to C++ classes" msgstr "" -#: config/darwin.c:2284 +#: config/darwin.c:2589 #, gcc-internal-format msgid "" "internal and protected visibility attributes not supported in this " "configuration; ignored" msgstr "" -#: config/darwin.c:2446 +#: config/darwin.c:2751 #, gcc-internal-format, gfc-internal-format msgid "failed to open temporary file %s with LTO output" msgstr "" -#: config/darwin.c:2601 +#: config/darwin.c:2935 #, gcc-internal-format msgid "-mdynamic-no-pic overrides -fpic or -fPIC" msgstr "" -#: config/darwin.c:2781 +#: config/darwin.c:3117 #, gcc-internal-format msgid "built-in function %qD requires the %<-mconstant-cfstrings%> flag" msgstr "" -#: config/darwin.c:2788 +#: config/darwin.c:3124 #, gcc-internal-format msgid "built-in function %qD takes one argument only" msgstr "" -#: config/darwin.c:2833 +#: config/darwin.c:3197 #, gcc-internal-format msgid "CFString literal is missing" msgstr "" -#: config/darwin.c:2844 +#: config/darwin.c:3208 #, gcc-internal-format msgid "CFString literal expression is not a string constant" msgstr "" -#: config/darwin.c:2867 +#: config/darwin.c:3231 #, gcc-internal-format, gfc-internal-format msgid "%s in CFString literal" msgstr "" @@ -21566,12 +21719,21 @@ msgstr "" msgid "PIC is only supported for RTPs" msgstr "" +#. Unless set, force ABI=2 for NeXT and m64, 0 otherwise. +#. Objective-C family ABI 2 is only valid for next/m64 at present. +#: config/darwin.h:150 +#, gcc-internal-format +msgid "" +"%<-fobjc-abi-version%> >= 2 is only supported on %<-m64%> targets for %<-" +"fnext-runtime%>" +msgstr "" + #. Mach-O supports 'weak imports', and 'weak definitions' in coalesced #. sections. machopic_select_section ensures that weak variables go in #. coalesced sections. Weak aliases (or any other kind of aliases) are #. not supported. Weak symbols that aren't visible outside the .s file #. are not supported. -#: config/darwin.h:430 +#: config/darwin.h:440 #, gcc-internal-format msgid "alias definitions not supported in Mach-O; ignored" msgstr "" @@ -21582,7 +21744,7 @@ msgstr "" msgid "profiler support for VxWorks" msgstr "" -#: config/alpha/alpha.c:236 config/rs6000/rs6000.c:4401 +#: config/alpha/alpha.c:236 config/rs6000/rs6000.c:4404 #, gcc-internal-format msgid "bad value %qs for -mtls-size switch" msgstr "" @@ -21662,8 +21824,8 @@ msgstr "" msgid "bad value %qs for -mmemory-latency" msgstr "" -#: config/alpha/alpha.c:6720 config/alpha/alpha.c:6723 config/s390/s390.c:9082 -#: config/s390/s390.c:9085 +#: config/alpha/alpha.c:6720 config/alpha/alpha.c:6723 config/s390/s390.c:9159 +#: config/s390/s390.c:9162 #, gcc-internal-format msgid "bad builtin fcode" msgstr "" @@ -21678,251 +21840,251 @@ msgstr "" msgid "argument of %qE attribute is not \"ilink1\" or \"ilink2\"" msgstr "" -#: config/arm/arm.c:1320 config/sparc/sparc.c:862 +#: config/arm/arm.c:1329 config/sparc/sparc.c:856 #, gcc-internal-format, gfc-internal-format msgid "bad value (%s) for %s switch" msgstr "" -#: config/arm/arm.c:1459 +#: config/arm/arm.c:1468 #, gcc-internal-format, gfc-internal-format msgid "switch -mcpu=%s conflicts with -march=%s switch" msgstr "" -#: config/arm/arm.c:1584 +#: config/arm/arm.c:1593 #, gcc-internal-format, gfc-internal-format msgid "invalid __fp16 format option: -mfp16-format=%s" msgstr "" -#: config/arm/arm.c:1601 +#: config/arm/arm.c:1610 #, gcc-internal-format, gfc-internal-format msgid "invalid ABI option: -mabi=%s" msgstr "" -#: config/arm/arm.c:1609 +#: config/arm/arm.c:1618 #, gcc-internal-format msgid "target CPU does not support ARM mode" msgstr "" -#: config/arm/arm.c:1615 +#: config/arm/arm.c:1624 #, gcc-internal-format msgid "target CPU does not support interworking" msgstr "" -#: config/arm/arm.c:1621 +#: config/arm/arm.c:1630 #, gcc-internal-format msgid "target CPU does not support THUMB instructions" msgstr "" -#: config/arm/arm.c:1639 +#: config/arm/arm.c:1648 #, gcc-internal-format msgid "" "enabling backtrace support is only meaningful when compiling for the Thumb" msgstr "" -#: config/arm/arm.c:1642 +#: config/arm/arm.c:1651 #, gcc-internal-format msgid "" "enabling callee interworking support is only meaningful when compiling for " "the Thumb" msgstr "" -#: config/arm/arm.c:1646 +#: config/arm/arm.c:1655 #, gcc-internal-format msgid "-mapcs-stack-check incompatible with -mno-apcs-frame" msgstr "" -#: config/arm/arm.c:1654 +#: config/arm/arm.c:1663 #, gcc-internal-format msgid "-fpic and -mapcs-reent are incompatible" msgstr "" -#: config/arm/arm.c:1657 +#: config/arm/arm.c:1666 #, gcc-internal-format msgid "APCS reentrant code not supported. Ignored" msgstr "" -#: config/arm/arm.c:1665 +#: config/arm/arm.c:1674 #, gcc-internal-format msgid "-g with -mno-apcs-frame may not give sensible debugging" msgstr "" -#: config/arm/arm.c:1668 +#: config/arm/arm.c:1677 #, gcc-internal-format msgid "passing floating point arguments in fp regs not yet supported" msgstr "" -#: config/arm/arm.c:1728 +#: config/arm/arm.c:1737 #, gcc-internal-format msgid "iwmmxt requires an AAPCS compatible ABI for proper operation" msgstr "" -#: config/arm/arm.c:1731 +#: config/arm/arm.c:1740 #, gcc-internal-format msgid "iwmmxt abi requires an iwmmxt capable cpu" msgstr "" -#: config/arm/arm.c:1740 +#: config/arm/arm.c:1749 #, gcc-internal-format, gfc-internal-format msgid "invalid floating point emulation option: -mfpe=%s" msgstr "" -#: config/arm/arm.c:1768 +#: config/arm/arm.c:1777 #, gcc-internal-format, gfc-internal-format msgid "invalid floating point option: -mfpu=%s" msgstr "" -#: config/arm/arm.c:1807 +#: config/arm/arm.c:1816 #, gcc-internal-format, gfc-internal-format msgid "invalid floating point abi: -mfloat-abi=%s" msgstr "" -#: config/arm/arm.c:1815 +#: config/arm/arm.c:1824 #, gcc-internal-format msgid "FPA is unsupported in the AAPCS" msgstr "" -#: config/arm/arm.c:1820 +#: config/arm/arm.c:1829 #, gcc-internal-format msgid "AAPCS does not support -mcaller-super-interworking" msgstr "" -#: config/arm/arm.c:1823 +#: config/arm/arm.c:1832 #, gcc-internal-format msgid "AAPCS does not support -mcallee-super-interworking" msgstr "" -#: config/arm/arm.c:1830 +#: config/arm/arm.c:1839 #, gcc-internal-format msgid "iWMMXt and hardware floating point" msgstr "" -#: config/arm/arm.c:1834 +#: config/arm/arm.c:1843 #, gcc-internal-format msgid "Thumb-2 iWMMXt" msgstr "" -#: config/arm/arm.c:1838 +#: config/arm/arm.c:1847 #, gcc-internal-format msgid "__fp16 and no ldrh" msgstr "" -#: config/arm/arm.c:1858 +#: config/arm/arm.c:1867 #, gcc-internal-format msgid "-mfloat-abi=hard and VFP" msgstr "" -#: config/arm/arm.c:1882 +#: config/arm/arm.c:1891 #, gcc-internal-format, gfc-internal-format msgid "invalid thread pointer option: -mtp=%s" msgstr "" -#: config/arm/arm.c:1895 +#: config/arm/arm.c:1904 #, gcc-internal-format msgid "can not use -mtp=cp15 with 16-bit Thumb" msgstr "" -#: config/arm/arm.c:1909 +#: config/arm/arm.c:1918 #, gcc-internal-format, gfc-internal-format msgid "structure size boundary can only be set to %s" msgstr "" -#: config/arm/arm.c:1915 +#: config/arm/arm.c:1924 #, gcc-internal-format msgid "RTP PIC is incompatible with Thumb" msgstr "" -#: config/arm/arm.c:1924 +#: config/arm/arm.c:1933 #, gcc-internal-format msgid "RTP PIC is incompatible with -msingle-pic-base" msgstr "" -#: config/arm/arm.c:1936 +#: config/arm/arm.c:1945 #, gcc-internal-format msgid "-mpic-register= is useless without -fpic" msgstr "" -#: config/arm/arm.c:1945 +#: config/arm/arm.c:1954 #, gcc-internal-format, gfc-internal-format msgid "unable to use '%s' for PIC register" msgstr "" -#: config/arm/arm.c:1984 +#: config/arm/arm.c:1993 #, gcc-internal-format msgid "-freorder-blocks-and-partition not supported on this architecture" msgstr "" -#: config/arm/arm.c:3851 +#: config/arm/arm.c:3860 #, gcc-internal-format msgid "non-AAPCS derived PCS variant" msgstr "" -#: config/arm/arm.c:3853 +#: config/arm/arm.c:3862 #, gcc-internal-format msgid "variadic functions must use the base AAPCS variant" msgstr "" -#: config/arm/arm.c:3872 +#: config/arm/arm.c:3881 #, gcc-internal-format msgid "PCS variant" msgstr "" -#: config/arm/arm.c:4067 +#: config/arm/arm.c:4076 #, gcc-internal-format msgid "Thumb-1 hard-float VFP ABI" msgstr "" -#: config/arm/arm.c:4775 config/arm/arm.c:4793 config/avr/avr.c:4867 -#: config/avr/avr.c:4883 config/bfin/bfin.c:5562 config/bfin/bfin.c:5623 -#: config/bfin/bfin.c:5652 config/h8300/h8300.c:5392 config/i386/i386.c:5134 -#: config/i386/i386.c:29089 config/i386/i386.c:29140 config/i386/i386.c:29220 +#: config/arm/arm.c:4784 config/arm/arm.c:4802 config/avr/avr.c:4930 +#: config/avr/avr.c:4946 config/bfin/bfin.c:5562 config/bfin/bfin.c:5623 +#: config/bfin/bfin.c:5652 config/h8300/h8300.c:5392 config/i386/i386.c:5291 +#: config/i386/i386.c:29365 config/i386/i386.c:29416 config/i386/i386.c:29496 #: config/m68hc11/m68hc11.c:1223 config/m68k/m68k.c:820 -#: config/mcore/mcore.c:3103 config/mep/mep.c:3976 config/mep/mep.c:3990 -#: config/mep/mep.c:4064 config/rs6000/rs6000.c:24914 config/rx/rx.c:2147 -#: config/sh/sh.c:9002 config/sh/sh.c:9020 config/sh/sh.c:9049 -#: config/sh/sh.c:9131 config/sh/sh.c:9154 config/spu/spu.c:3875 -#: config/stormy16/stormy16.c:2222 config/v850/v850.c:2134 +#: config/mcore/mcore.c:3090 config/mep/mep.c:3976 config/mep/mep.c:3990 +#: config/mep/mep.c:4064 config/rs6000/rs6000.c:24993 config/rx/rx.c:2225 +#: config/sh/sh.c:9009 config/sh/sh.c:9027 config/sh/sh.c:9056 +#: config/sh/sh.c:9138 config/sh/sh.c:9161 config/spu/spu.c:3898 +#: config/stormy16/stormy16.c:2187 config/v850/v850.c:2134 #, gcc-internal-format msgid "%qE attribute only applies to functions" msgstr "" -#: config/arm/arm.c:17651 +#: config/arm/arm.c:17779 #, gcc-internal-format msgid "unable to compute real location of stacked parameter" msgstr "" -#: config/arm/arm.c:19233 +#: config/arm/arm.c:19361 #, gcc-internal-format msgid "argument must be a constant" msgstr "" #. @@@ better error message -#: config/arm/arm.c:19541 config/arm/arm.c:19578 +#: config/arm/arm.c:19669 config/arm/arm.c:19706 #, gcc-internal-format msgid "selector must be an immediate" msgstr "" #. @@@ better error message -#: config/arm/arm.c:19621 +#: config/arm/arm.c:19749 #, gcc-internal-format msgid "mask must be an immediate" msgstr "" -#: config/arm/arm.c:20397 +#: config/arm/arm.c:20525 #, gcc-internal-format msgid "no low registers available for popping high registers" msgstr "" -#: config/arm/arm.c:20622 +#: config/arm/arm.c:20750 #, gcc-internal-format msgid "interrupt Service Routines cannot be coded in Thumb mode" msgstr "" -#: config/arm/arm.c:22902 +#: config/arm/arm.c:23031 #, gcc-internal-format msgid "the mangling of %<va_list%> has changed in GCC 4.4" msgstr "" -#: config/arm/pe.c:158 config/mcore/mcore.c:2978 +#: config/arm/pe.c:158 config/mcore/mcore.c:2965 #, gcc-internal-format msgid "initialized variable %q+D is marked dllimport" msgstr "" @@ -21932,47 +22094,57 @@ msgstr "" msgid "static variable %q+D is marked dllimport" msgstr "" -#: config/avr/avr.c:449 +#: config/avr/avr.c:243 +#, gcc-internal-format +msgid "unrecognized argument to -mmcu= option: %qs" +msgstr "" + +#: config/avr/avr.c:244 +#, gcc-internal-format +msgid "See --target-help for supported MCUs" +msgstr "" + +#: config/avr/avr.c:491 #, gcc-internal-format msgid "'builtin_return_address' contains only 2 bytes of address" msgstr "" -#: config/avr/avr.c:1168 +#: config/avr/avr.c:1231 #, gcc-internal-format msgid "pointer offset from symbol maybe incorrect" msgstr "" -#: config/avr/avr.c:1225 +#: config/avr/avr.c:1288 #, gcc-internal-format msgid "accessing data memory with program memory address" msgstr "" -#: config/avr/avr.c:1265 +#: config/avr/avr.c:1328 #, gcc-internal-format msgid "accessing program memory with data memory address" msgstr "" -#: config/avr/avr.c:4681 +#: config/avr/avr.c:4744 #, gcc-internal-format msgid "%qs appears to be a misspelled interrupt handler" msgstr "" -#: config/avr/avr.c:4690 +#: config/avr/avr.c:4753 #, gcc-internal-format msgid "%qs appears to be a misspelled signal handler" msgstr "" -#: config/avr/avr.c:4840 +#: config/avr/avr.c:4903 #, gcc-internal-format msgid "only initialized variables can be placed into program memory area" msgstr "" -#: config/avr/avr.c:4974 +#: config/avr/avr.c:5037 #, gcc-internal-format msgid "only uninitialized variables can be placed in the .noinit section" msgstr "" -#: config/avr/avr.c:4988 +#: config/avr/avr.c:5051 #, gcc-internal-format msgid "MCU %qs supported for assembler only" msgstr "" @@ -22141,7 +22313,7 @@ msgstr "" #. Definitions for GCC. Part of the machine description for CRIS. #. Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008, -#. 2009, 2010 Free Software Foundation, Inc. +#. 2009, 2010, 2011 Free Software Foundation, Inc. #. Contributed by Axis Communications. Written by Hans-Peter Nilsson. #. #. This file is part of GCC. @@ -22188,7 +22360,7 @@ msgstr "" #. See cris.c for TARGET_ASM_FUNCTION_PROLOGUE and #. TARGET_ASM_FUNCTION_EPILOGUE. #. Node: Profiling -#: config/cris/cris.h:881 +#: config/cris/cris.h:878 #, gcc-internal-format msgid "no FUNCTION_PROFILER for CRIS" msgstr "" @@ -22198,62 +22370,62 @@ msgstr "" msgid "profiler support for CRX" msgstr "" -#: config/frv/frv.c:8753 +#: config/frv/frv.c:8708 #, gcc-internal-format msgid "accumulator is not a constant integer" msgstr "" -#: config/frv/frv.c:8758 +#: config/frv/frv.c:8713 #, gcc-internal-format msgid "accumulator number is out of bounds" msgstr "" -#: config/frv/frv.c:8769 +#: config/frv/frv.c:8724 #, gcc-internal-format msgid "inappropriate accumulator for %qs" msgstr "" -#: config/frv/frv.c:8845 +#: config/frv/frv.c:8800 #, gcc-internal-format msgid "invalid IACC argument" msgstr "" -#: config/frv/frv.c:8868 +#: config/frv/frv.c:8823 #, gcc-internal-format msgid "%qs expects a constant argument" msgstr "" -#: config/frv/frv.c:8873 +#: config/frv/frv.c:8828 #, gcc-internal-format msgid "constant argument out of range for %qs" msgstr "" -#: config/frv/frv.c:9354 +#: config/frv/frv.c:9309 #, gcc-internal-format msgid "media functions are not available unless -mmedia is used" msgstr "" -#: config/frv/frv.c:9366 +#: config/frv/frv.c:9321 #, gcc-internal-format msgid "this media function is only available on the fr500" msgstr "" -#: config/frv/frv.c:9394 +#: config/frv/frv.c:9349 #, gcc-internal-format msgid "this media function is only available on the fr400 and fr550" msgstr "" -#: config/frv/frv.c:9413 +#: config/frv/frv.c:9368 #, gcc-internal-format msgid "this builtin function is only available on the fr405 and fr450" msgstr "" -#: config/frv/frv.c:9422 +#: config/frv/frv.c:9377 #, gcc-internal-format msgid "this builtin function is only available on the fr500 and fr550" msgstr "" -#: config/frv/frv.c:9434 +#: config/frv/frv.c:9389 #, gcc-internal-format msgid "this builtin function is only available on the fr450" msgstr "" @@ -22278,361 +22450,361 @@ msgstr "" msgid "can%'t set position in PCH file: %m" msgstr "" -#: config/i386/i386.c:3357 config/i386/i386.c:3646 +#: config/i386/i386.c:3514 config/i386/i386.c:3803 #, gcc-internal-format, gfc-internal-format msgid "bad value (%s) for %stune=%s %s" msgstr "" -#: config/i386/i386.c:3360 +#: config/i386/i386.c:3517 #, gcc-internal-format, gfc-internal-format msgid "" "%stune=x86-64%s is deprecated; use %stune=k8%s or %stune=generic%s instead " "as appropriate" msgstr "" -#: config/i386/i386.c:3406 +#: config/i386/i386.c:3563 #, gcc-internal-format, gfc-internal-format msgid "bad value (%s) for %sstringop-strategy=%s %s" msgstr "" -#: config/i386/i386.c:3423 +#: config/i386/i386.c:3580 #, gcc-internal-format, gfc-internal-format msgid "unknown ABI (%s) for %sabi=%s %s" msgstr "" -#: config/i386/i386.c:3438 +#: config/i386/i386.c:3595 #, gcc-internal-format, gfc-internal-format msgid "code model %s does not support PIC mode" msgstr "" -#: config/i386/i386.c:3444 +#: config/i386/i386.c:3601 #, gcc-internal-format, gfc-internal-format msgid "bad value (%s) for %scmodel=%s %s" msgstr "" -#: config/i386/i386.c:3468 +#: config/i386/i386.c:3625 #, gcc-internal-format, gfc-internal-format msgid "bad value (%s) for %sasm=%s %s" msgstr "" -#: config/i386/i386.c:3472 +#: config/i386/i386.c:3629 #, gcc-internal-format msgid "code model %qs not supported in the %s bit mode" msgstr "" -#: config/i386/i386.c:3475 +#: config/i386/i386.c:3632 #, gcc-internal-format, gfc-internal-format msgid "%i-bit mode not compiled in" msgstr "" -#: config/i386/i386.c:3487 config/i386/i386.c:3608 +#: config/i386/i386.c:3644 config/i386/i386.c:3765 #, gcc-internal-format msgid "CPU you selected does not support x86-64 instruction set" msgstr "" -#: config/i386/i386.c:3578 +#: config/i386/i386.c:3735 #, gcc-internal-format, gfc-internal-format msgid "generic CPU can be used only for %stune=%s %s" msgstr "" -#: config/i386/i386.c:3581 +#: config/i386/i386.c:3738 #, gcc-internal-format, gfc-internal-format msgid "bad value (%s) for %sarch=%s %s" msgstr "" -#: config/i386/i386.c:3696 +#: config/i386/i386.c:3853 #, gcc-internal-format, gfc-internal-format msgid "%sregparm%s is ignored in 64-bit mode" msgstr "" -#: config/i386/i386.c:3699 +#: config/i386/i386.c:3856 #, gcc-internal-format, gfc-internal-format msgid "%sregparm=%d%s is not between 0 and %d" msgstr "" -#: config/i386/i386.c:3712 +#: config/i386/i386.c:3869 #, gcc-internal-format, gfc-internal-format msgid "%salign-loops%s is obsolete, use -falign-loops%s" msgstr "" -#: config/i386/i386.c:3718 config/i386/i386.c:3733 config/i386/i386.c:3748 +#: config/i386/i386.c:3875 config/i386/i386.c:3890 config/i386/i386.c:3905 #, gcc-internal-format, gfc-internal-format msgid "%salign-loops=%d%s is not between 0 and %d" msgstr "" -#: config/i386/i386.c:3727 +#: config/i386/i386.c:3884 #, gcc-internal-format, gfc-internal-format msgid "%salign-jumps%s is obsolete, use -falign-jumps%s" msgstr "" -#: config/i386/i386.c:3742 +#: config/i386/i386.c:3899 #, gcc-internal-format, gfc-internal-format msgid "%salign-functions%s is obsolete, use -falign-functions%s" msgstr "" -#: config/i386/i386.c:3777 +#: config/i386/i386.c:3934 #, gcc-internal-format, gfc-internal-format msgid "%sbranch-cost=%d%s is not between 0 and 5" msgstr "" -#: config/i386/i386.c:3785 +#: config/i386/i386.c:3942 #, gcc-internal-format, gfc-internal-format msgid "%slarge-data-threshold=%d%s is negative" msgstr "" -#: config/i386/i386.c:3797 +#: config/i386/i386.c:3954 #, gcc-internal-format, gfc-internal-format msgid "bad value (%s) for %stls-dialect=%s %s" msgstr "" -#: config/i386/i386.c:3805 +#: config/i386/i386.c:3962 #, gcc-internal-format, gfc-internal-format msgid "pc%d is not valid precision setting (32, 64 or 80)" msgstr "" -#: config/i386/i386.c:3821 +#: config/i386/i386.c:3978 #, gcc-internal-format, gfc-internal-format msgid "%srtd%s is ignored in 64bit mode" msgstr "" -#: config/i386/i386.c:3881 +#: config/i386/i386.c:4038 #, gcc-internal-format, gfc-internal-format msgid "%spreferred-stack-boundary%s is not supported for this target" msgstr "" -#: config/i386/i386.c:3884 +#: config/i386/i386.c:4041 #, gcc-internal-format, gfc-internal-format msgid "%spreferred-stack-boundary=%d%s is not between %d and %d" msgstr "" -#: config/i386/i386.c:3904 +#: config/i386/i386.c:4061 #, gcc-internal-format, gfc-internal-format msgid "-mincoming-stack-boundary=%d is not between %d and 12" msgstr "" -#: config/i386/i386.c:3917 +#: config/i386/i386.c:4074 #, gcc-internal-format, gfc-internal-format msgid "%ssseregparm%s used without SSE enabled" msgstr "" -#: config/i386/i386.c:3928 config/i386/i386.c:3942 +#: config/i386/i386.c:4085 config/i386/i386.c:4099 #, gcc-internal-format msgid "SSE instruction set disabled, using 387 arithmetics" msgstr "" -#: config/i386/i386.c:3947 +#: config/i386/i386.c:4104 #, gcc-internal-format msgid "387 instruction set disabled, using SSE arithmetics" msgstr "" -#: config/i386/i386.c:3954 +#: config/i386/i386.c:4111 #, gcc-internal-format, gfc-internal-format msgid "bad value (%s) for %sfpmath=%s %s" msgstr "" -#: config/i386/i386.c:3970 +#: config/i386/i386.c:4127 #, gcc-internal-format, gfc-internal-format msgid "unknown vectorization library ABI type (%s) for %sveclibabi=%s %s" msgstr "" -#: config/i386/i386.c:3991 +#: config/i386/i386.c:4148 #, gcc-internal-format, gfc-internal-format msgid "" "unwind tables currently require either a frame pointer or %saccumulate-" "outgoing-args%s for correctness" msgstr "" -#: config/i386/i386.c:4004 +#: config/i386/i386.c:4161 #, gcc-internal-format, gfc-internal-format msgid "stack probing requires %saccumulate-outgoing-args%s for correctness" msgstr "" -#: config/i386/i386.c:4090 +#: config/i386/i386.c:4247 #, gcc-internal-format msgid "-mfentry isn%'t supported for 32-bit in combination with -fpic" msgstr "" -#: config/i386/i386.c:4097 +#: config/i386/i386.c:4254 #, gcc-internal-format msgid "-mno-fentry isn%'t compatible with SEH" msgstr "" -#: config/i386/i386.c:4511 +#: config/i386/i386.c:4668 #, gcc-internal-format, gfc-internal-format msgid "attribute(target(\"%s\")) is unknown" msgstr "" -#: config/i386/i386.c:4533 +#: config/i386/i386.c:4690 #, gcc-internal-format, gfc-internal-format msgid "option(\"%s\") was already specified" msgstr "" -#: config/i386/i386.c:5147 config/i386/i386.c:5198 +#: config/i386/i386.c:5304 config/i386/i386.c:5355 #, gcc-internal-format msgid "fastcall and regparm attributes are not compatible" msgstr "" -#: config/i386/i386.c:5152 +#: config/i386/i386.c:5309 #, gcc-internal-format msgid "regparam and thiscall attributes are not compatible" msgstr "" -#: config/i386/i386.c:5159 config/i386/i386.c:29109 +#: config/i386/i386.c:5316 config/i386/i386.c:29385 #, gcc-internal-format msgid "%qE attribute requires an integer constant argument" msgstr "" -#: config/i386/i386.c:5165 +#: config/i386/i386.c:5322 #, gcc-internal-format msgid "argument to %qE attribute larger than %d" msgstr "" -#: config/i386/i386.c:5190 config/i386/i386.c:5233 +#: config/i386/i386.c:5347 config/i386/i386.c:5390 #, gcc-internal-format msgid "fastcall and cdecl attributes are not compatible" msgstr "" -#: config/i386/i386.c:5194 +#: config/i386/i386.c:5351 #, gcc-internal-format msgid "fastcall and stdcall attributes are not compatible" msgstr "" -#: config/i386/i386.c:5202 config/i386/i386.c:5251 +#: config/i386/i386.c:5359 config/i386/i386.c:5408 #, gcc-internal-format msgid "fastcall and thiscall attributes are not compatible" msgstr "" -#: config/i386/i386.c:5212 config/i386/i386.c:5229 +#: config/i386/i386.c:5369 config/i386/i386.c:5386 #, gcc-internal-format msgid "stdcall and cdecl attributes are not compatible" msgstr "" -#: config/i386/i386.c:5216 +#: config/i386/i386.c:5373 #, gcc-internal-format msgid "stdcall and fastcall attributes are not compatible" msgstr "" -#: config/i386/i386.c:5220 config/i386/i386.c:5247 +#: config/i386/i386.c:5377 config/i386/i386.c:5404 #, gcc-internal-format msgid "stdcall and thiscall attributes are not compatible" msgstr "" -#: config/i386/i386.c:5237 config/i386/i386.c:5255 +#: config/i386/i386.c:5394 config/i386/i386.c:5412 #, gcc-internal-format msgid "cdecl and thiscall attributes are not compatible" msgstr "" -#: config/i386/i386.c:5243 +#: config/i386/i386.c:5400 #, gcc-internal-format msgid "%qE attribute is used for none class-method" msgstr "" -#: config/i386/i386.c:5397 +#: config/i386/i386.c:5554 #, gcc-internal-format msgid "calling %qD with attribute sseregparm without SSE/SSE2 enabled" msgstr "" -#: config/i386/i386.c:5400 +#: config/i386/i386.c:5557 #, gcc-internal-format msgid "calling %qT with attribute sseregparm without SSE/SSE2 enabled" msgstr "" -#: config/i386/i386.c:5617 +#: config/i386/i386.c:5774 #, gcc-internal-format msgid "ms_hook_prologue is not compatible with nested function" msgstr "" -#: config/i386/i386.c:5769 +#: config/i386/i386.c:5926 #, gcc-internal-format msgid "" "ms_abi attribute requires -maccumulate-outgoing-args or subtarget " "optimization implying it" msgstr "" -#: config/i386/i386.c:5892 +#: config/i386/i386.c:6049 #, gcc-internal-format msgid "AVX vector argument without AVX enabled changes the ABI" msgstr "" -#: config/i386/i386.c:6074 +#: config/i386/i386.c:6231 #, gcc-internal-format msgid "" "the ABI of passing struct with a flexible array member has changed in GCC 4.4" msgstr "" -#: config/i386/i386.c:6190 +#: config/i386/i386.c:6347 #, gcc-internal-format msgid "the ABI of passing union with long double has changed in GCC 4.4" msgstr "" -#: config/i386/i386.c:6305 +#: config/i386/i386.c:6462 #, gcc-internal-format msgid "" "the ABI of passing structure with complex float member has changed in GCC 4.4" msgstr "" -#: config/i386/i386.c:6451 +#: config/i386/i386.c:6608 #, gcc-internal-format msgid "SSE register return with SSE disabled" msgstr "" -#: config/i386/i386.c:6457 +#: config/i386/i386.c:6614 #, gcc-internal-format msgid "SSE register argument with SSE disabled" msgstr "" -#: config/i386/i386.c:6473 +#: config/i386/i386.c:6630 #, gcc-internal-format msgid "x87 register return with x87 disabled" msgstr "" -#: config/i386/i386.c:6851 +#: config/i386/i386.c:7008 #, gcc-internal-format msgid "SSE vector argument without SSE enabled changes the ABI" msgstr "" -#: config/i386/i386.c:6889 +#: config/i386/i386.c:7046 #, gcc-internal-format msgid "MMX vector argument without MMX enabled changes the ABI" msgstr "" -#: config/i386/i386.c:7261 +#: config/i386/i386.c:7418 #, gcc-internal-format, gfc-internal-format msgid "" "The ABI for passing parameters with %d-byte alignment has changed in GCC 4.6" msgstr "" -#: config/i386/i386.c:7570 +#: config/i386/i386.c:7727 #, gcc-internal-format msgid "SSE vector return without SSE enabled changes the ABI" msgstr "" -#: config/i386/i386.c:7580 +#: config/i386/i386.c:7737 #, gcc-internal-format msgid "MMX vector return without MMX enabled changes the ABI" msgstr "" -#: config/i386/i386.c:9006 +#: config/i386/i386.c:9163 #, gcc-internal-format msgid "%<-fsplit-stack%> currently only supported on GNU/Linux" msgstr "" -#: config/i386/i386.c:9012 +#: config/i386/i386.c:9169 #, gcc-internal-format msgid "%<-fsplit-stack%> requires assembler support for CFI directives" msgstr "" -#: config/i386/i386.c:10167 +#: config/i386/i386.c:10330 #, gcc-internal-format msgid "ms_hook_prologue attribute isn%'t compatible with -mfentry for 32-bit" msgstr "" -#: config/i386/i386.c:11135 +#: config/i386/i386.c:11298 #, gcc-internal-format msgid "-fsplit-stack does not support fastcall with nested function" msgstr "" -#: config/i386/i386.c:11149 +#: config/i386/i386.c:11312 #, gcc-internal-format msgid "" "-fsplit-stack does not support 2 register parameters for a nested function" @@ -22640,142 +22812,142 @@ msgstr "" #. FIXME: We could make this work by pushing a register #. around the addition and comparison. -#: config/i386/i386.c:11160 +#: config/i386/i386.c:11323 #, gcc-internal-format msgid "-fsplit-stack does not support 3 register parameters" msgstr "" -#: config/i386/i386.c:13502 +#: config/i386/i386.c:13684 #, gcc-internal-format msgid "extended registers have no high halves" msgstr "" -#: config/i386/i386.c:13517 +#: config/i386/i386.c:13699 #, gcc-internal-format msgid "unsupported operand size for extended register" msgstr "" -#: config/i386/i386.c:13762 +#: config/i386/i386.c:13944 #, gcc-internal-format, gfc-internal-format msgid "non-integer operand used with operand code '%c'" msgstr "" -#: config/i386/i386.c:25819 config/i386/i386.c:27203 +#: config/i386/i386.c:26011 config/i386/i386.c:27394 #, gcc-internal-format msgid "last argument must be an immediate" msgstr "" -#: config/i386/i386.c:26116 +#: config/i386/i386.c:26308 #, gcc-internal-format msgid "the fifth argument must be a 8-bit immediate" msgstr "" -#: config/i386/i386.c:26211 +#: config/i386/i386.c:26403 #, gcc-internal-format msgid "the third argument must be a 8-bit immediate" msgstr "" -#: config/i386/i386.c:26568 +#: config/i386/i386.c:26760 #, gcc-internal-format msgid "the last argument must be a 4-bit immediate" msgstr "" -#: config/i386/i386.c:26577 +#: config/i386/i386.c:26769 #, gcc-internal-format msgid "the last argument must be a 2-bit immediate" msgstr "" -#: config/i386/i386.c:26586 +#: config/i386/i386.c:26778 #, gcc-internal-format msgid "the last argument must be a 1-bit immediate" msgstr "" -#: config/i386/i386.c:26595 +#: config/i386/i386.c:26787 #, gcc-internal-format msgid "the last argument must be a 5-bit immediate" msgstr "" -#: config/i386/i386.c:26604 +#: config/i386/i386.c:26796 #, gcc-internal-format msgid "the next to last argument must be an 8-bit immediate" msgstr "" -#: config/i386/i386.c:26608 config/i386/i386.c:26820 +#: config/i386/i386.c:26800 config/i386/i386.c:27011 #, gcc-internal-format msgid "the last argument must be an 8-bit immediate" msgstr "" -#: config/i386/i386.c:26818 +#: config/i386/i386.c:27009 #, gcc-internal-format msgid "the last argument must be a 32-bit immediate" msgstr "" -#: config/i386/i386.c:26884 config/rs6000/rs6000.c:11450 +#: config/i386/i386.c:27075 config/rs6000/rs6000.c:11471 #, gcc-internal-format msgid "selector must be an integer constant in the range 0..%wi" msgstr "" -#: config/i386/i386.c:27027 +#: config/i386/i386.c:27218 #, gcc-internal-format msgid "%qE needs unknown isa option" msgstr "" -#: config/i386/i386.c:27031 +#: config/i386/i386.c:27222 #, gcc-internal-format msgid "%qE needs isa option %s" msgstr "" -#: config/i386/i386.c:29096 +#: config/i386/i386.c:29372 #, gcc-internal-format msgid "%qE attribute only available for 32-bit" msgstr "" -#: config/i386/i386.c:29117 +#: config/i386/i386.c:29393 #, gcc-internal-format msgid "argument to %qE attribute is neither zero, nor one" msgstr "" -#: config/i386/i386.c:29147 +#: config/i386/i386.c:29423 #, gcc-internal-format msgid "%qE attribute only available for 64-bit" msgstr "" -#: config/i386/i386.c:29158 config/i386/i386.c:29167 +#: config/i386/i386.c:29434 config/i386/i386.c:29443 #, gcc-internal-format msgid "ms_abi and sysv_abi attributes are not compatible" msgstr "" -#: config/i386/i386.c:29205 config/rs6000/rs6000.c:24997 +#: config/i386/i386.c:29481 config/rs6000/rs6000.c:25076 #, gcc-internal-format msgid "%qE incompatible attribute ignored" msgstr "" -#: config/i386/i386.c:33370 +#: config/i386/i386.c:33646 #, gcc-internal-format msgid "vector permutation requires vector constant" msgstr "" -#: config/i386/i386.c:33380 +#: config/i386/i386.c:33656 #, gcc-internal-format msgid "invalid vector permutation constant" msgstr "" -#: config/i386/i386.c:33428 +#: config/i386/i386.c:33704 #, gcc-internal-format, gfc-internal-format msgid "vector permutation (%d %d)" msgstr "" -#: config/i386/i386.c:33431 +#: config/i386/i386.c:33707 #, gcc-internal-format, gfc-internal-format msgid "vector permutation (%d %d %d %d)" msgstr "" -#: config/i386/i386.c:33435 +#: config/i386/i386.c:33711 #, gcc-internal-format, gfc-internal-format msgid "vector permutation (%d %d %d %d %d %d %d %d)" msgstr "" -#: config/i386/i386.c:33440 +#: config/i386/i386.c:33716 #, gcc-internal-format, gfc-internal-format msgid "vector permutation (%d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d)" msgstr "" @@ -22792,12 +22964,12 @@ msgstr "" msgid "definition of static data member %q+D of dllimport%'d class" msgstr "" -#: config/i386/winnt.c:308 +#: config/i386/winnt.c:324 #, gcc-internal-format msgid "%q+D:'selectany' attribute applies only to initialized objects" msgstr "" -#: config/i386/winnt.c:452 +#: config/i386/winnt.c:468 #, gcc-internal-format msgid "%q+D causes a section type conflict" msgstr "" @@ -22824,7 +22996,7 @@ msgstr "" #. Don't allow flag_pic to propagate since invalid relocations will #. result otherwise. -#: config/i386/netware.h:84 +#: config/i386/netware.h:83 #, gcc-internal-format msgid "-fPIC and -fpic are not supported for this target" msgstr "" @@ -22834,54 +23006,54 @@ msgstr "" msgid "malformed #pragma builtin" msgstr "" -#: config/ia64/ia64.c:694 +#: config/ia64/ia64.c:695 #, gcc-internal-format msgid "invalid argument of %qE attribute" msgstr "" -#: config/ia64/ia64.c:707 +#: config/ia64/ia64.c:708 #, gcc-internal-format msgid "an address area attribute cannot be specified for local variables" msgstr "" -#: config/ia64/ia64.c:714 +#: config/ia64/ia64.c:715 #, gcc-internal-format msgid "address area of %q+D conflicts with previous declaration" msgstr "" -#: config/ia64/ia64.c:722 +#: config/ia64/ia64.c:723 #, gcc-internal-format msgid "address area attribute cannot be specified for functions" msgstr "" -#: config/ia64/ia64.c:763 +#: config/ia64/ia64.c:764 #, gcc-internal-format msgid "%qE attribute requires a string constant argument" msgstr "" -#: config/ia64/ia64.c:5655 config/pa/pa.c:420 config/sh/sh.c:8850 -#: config/spu/spu.c:5079 +#: config/ia64/ia64.c:5610 config/pa/pa.c:428 config/sh/sh.c:8857 +#: config/spu/spu.c:5108 #, gcc-internal-format msgid "value of -mfixed-range must have form REG1-REG2" msgstr "" -#: config/ia64/ia64.c:5682 config/pa/pa.c:447 config/sh/sh.c:8876 -#: config/spu/spu.c:5105 +#: config/ia64/ia64.c:5637 config/pa/pa.c:455 config/sh/sh.c:8883 +#: config/spu/spu.c:5134 #, gcc-internal-format, gfc-internal-format msgid "%s-%s is an empty range" msgstr "" -#: config/ia64/ia64.c:5710 +#: config/ia64/ia64.c:5665 #, gcc-internal-format msgid "bad value %<%s%> for -mtls-size= switch" msgstr "" -#: config/ia64/ia64.c:5735 +#: config/ia64/ia64.c:5690 #, gcc-internal-format msgid "bad value %<%s%> for -mtune= switch" msgstr "" -#: config/ia64/ia64.c:11007 +#: config/ia64/ia64.c:10962 #, gcc-internal-format msgid "version attribute is not a string" msgstr "" @@ -22896,7 +23068,7 @@ msgstr "" msgid "argument %qd is not a constant" msgstr "" -#: config/iq2000/iq2000.c:2951 config/xtensa/xtensa.c:2389 +#: config/iq2000/iq2000.c:2951 config/xtensa/xtensa.c:2438 #, gcc-internal-format msgid "PRINT_OPERAND_ADDRESS, null pointer" msgstr "" @@ -22906,7 +23078,7 @@ msgstr "" msgid "PRINT_OPERAND: Unknown punctuation '%c'" msgstr "" -#: config/iq2000/iq2000.c:3115 config/xtensa/xtensa.c:2243 +#: config/iq2000/iq2000.c:3115 config/xtensa/xtensa.c:2292 #, gcc-internal-format msgid "PRINT_OPERAND null pointer" msgstr "" @@ -22941,33 +23113,33 @@ msgstr "" msgid "invalid target memregs value '%d'" msgstr "" -#: config/m32c/m32c.c:3160 +#: config/m32c/m32c.c:3166 #, gcc-internal-format msgid "%qE attribute is not supported for R8C target" msgstr "" #. The argument must be a constant integer. -#: config/m32c/m32c.c:3176 config/sh/sh.c:9057 config/sh/sh.c:9163 +#: config/m32c/m32c.c:3182 config/sh/sh.c:9064 config/sh/sh.c:9170 #, gcc-internal-format msgid "%qE attribute argument not an integer constant" msgstr "" -#: config/m32c/m32c.c:3185 +#: config/m32c/m32c.c:3191 #, gcc-internal-format msgid "%qE attribute argument should be between 18 to 255" msgstr "" -#: config/m32c/m32c.c:4443 +#: config/m32c/m32c.c:4449 #, gcc-internal-format msgid "%<bank_switch%> has no effect on non-interrupt functions" msgstr "" -#: config/m32c/m32c.c:4544 +#: config/m32c/m32c.c:4550 #, gcc-internal-format msgid "%<fast_interrupt%> attribute directive ignored" msgstr "" -#: config/m32r/m32r.c:442 +#: config/m32r/m32r.c:448 #, gcc-internal-format msgid "invalid argument of %qs attribute" msgstr "" @@ -23017,7 +23189,7 @@ msgstr "" msgid "interrupt_thread is available only on fido" msgstr "" -#: config/m68k/m68k.c:1163 config/rs6000/rs6000.c:19380 +#: config/m68k/m68k.c:1163 config/rs6000/rs6000.c:19459 #, gcc-internal-format msgid "stack limit expression is not supported" msgstr "" @@ -23337,156 +23509,156 @@ msgstr "" msgid "%qE redeclared with conflicting %qs attributes" msgstr "" -#: config/mips/mips.c:2917 +#: config/mips/mips.c:2920 #, gcc-internal-format msgid "MIPS16 TLS" msgstr "" -#: config/mips/mips.c:6408 +#: config/mips/mips.c:6411 #, gcc-internal-format msgid "cannot handle inconsistent calls to %qs" msgstr "" -#: config/mips/mips.c:9223 +#: config/mips/mips.c:9226 #, gcc-internal-format msgid "the %<interrupt%> attribute requires a MIPS32r2 processor" msgstr "" -#: config/mips/mips.c:9225 +#: config/mips/mips.c:9228 #, gcc-internal-format msgid "the %<interrupt%> attribute requires %<-msoft-float%>" msgstr "" -#: config/mips/mips.c:9227 +#: config/mips/mips.c:9230 #, gcc-internal-format msgid "interrupt handlers cannot be MIPS16 functions" msgstr "" -#: config/mips/mips.c:13210 +#: config/mips/mips.c:13213 #, gcc-internal-format msgid "invalid argument to built-in function" msgstr "" -#: config/mips/mips.c:13451 +#: config/mips/mips.c:13454 #, gcc-internal-format msgid "built-in function %qE not supported for MIPS16" msgstr "" -#: config/mips/mips.c:14041 +#: config/mips/mips.c:14044 #, gcc-internal-format msgid "%qs does not support MIPS16 code" msgstr "" -#: config/mips/mips.c:15262 +#: config/mips/mips.c:15265 #, gcc-internal-format msgid "MIPS16 PIC for ABIs other than o32 and o64" msgstr "" -#: config/mips/mips.c:15265 +#: config/mips/mips.c:15268 #, gcc-internal-format msgid "MIPS16 -mxgot code" msgstr "" -#: config/mips/mips.c:15268 +#: config/mips/mips.c:15271 #, gcc-internal-format msgid "hard-float MIPS16 code for ABIs other than o32 and o64" msgstr "" -#: config/mips/mips.c:15404 +#: config/mips/mips.c:15407 #, gcc-internal-format msgid "CPU names must be lower case" msgstr "" -#: config/mips/mips.c:15557 +#: config/mips/mips.c:15560 #, gcc-internal-format msgid "" "%<-%s%> conflicts with the other architecture options, which specify a %s " "processor" msgstr "" -#: config/mips/mips.c:15573 +#: config/mips/mips.c:15576 #, gcc-internal-format msgid "%<-march=%s%> is not compatible with the selected ABI" msgstr "" -#: config/mips/mips.c:15588 +#: config/mips/mips.c:15591 #, gcc-internal-format msgid "%<-mgp64%> used with a 32-bit processor" msgstr "" -#: config/mips/mips.c:15590 +#: config/mips/mips.c:15593 #, gcc-internal-format msgid "%<-mgp32%> used with a 64-bit ABI" msgstr "" -#: config/mips/mips.c:15592 +#: config/mips/mips.c:15595 #, gcc-internal-format msgid "%<-mgp64%> used with a 32-bit ABI" msgstr "" -#: config/mips/mips.c:15608 config/mips/mips.c:15610 config/mips/mips.c:15677 +#: config/mips/mips.c:15611 config/mips/mips.c:15613 config/mips/mips.c:15680 #, gcc-internal-format, gfc-internal-format msgid "unsupported combination: %s" msgstr "" -#: config/mips/mips.c:15614 +#: config/mips/mips.c:15617 #, 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:15617 +#: config/mips/mips.c:15620 #, gcc-internal-format msgid "%<-mgp32%> and %<-mfp64%> can only be combined when using the o32 ABI" msgstr "" -#: config/mips/mips.c:15671 +#: config/mips/mips.c:15674 #, gcc-internal-format msgid "the %qs architecture does not support branch-likely instructions" msgstr "" -#: config/mips/mips.c:15711 +#: config/mips/mips.c:15714 #, gcc-internal-format msgid "%<-mno-gpopt%> needs %<-mexplicit-relocs%>" msgstr "" -#: config/mips/mips.c:15719 config/mips/mips.c:15722 +#: config/mips/mips.c:15722 config/mips/mips.c:15725 #, gcc-internal-format msgid "cannot use small-data accesses for %qs" msgstr "" -#: config/mips/mips.c:15736 +#: config/mips/mips.c:15739 #, gcc-internal-format msgid "%<-mips3d%> requires %<-mpaired-single%>" msgstr "" -#: config/mips/mips.c:15745 +#: config/mips/mips.c:15748 #, gcc-internal-format msgid "%qs must be used with %qs" msgstr "" -#: config/mips/mips.c:15752 +#: config/mips/mips.c:15755 #, gcc-internal-format msgid "the %qs architecture does not support paired-single instructions" msgstr "" -#: config/mips/mips.c:15758 +#: config/mips/mips.c:15761 #, gcc-internal-format msgid "%qs requires a target that provides the %qs instruction" msgstr "" -#: config/mips/mips.c:15863 +#: config/mips/mips.c:15866 #, gcc-internal-format msgid "%qs requires branch-likely instructions" msgstr "" -#: config/mips/mips.c:15867 +#: config/mips/mips.c:15870 #, gcc-internal-format msgid "the %qs architecture does not support the synci instruction" msgstr "" -#: config/mips/mips.c:16339 +#: config/mips/mips.c:16342 #, gcc-internal-format msgid "mips16 function profiling" msgstr "" @@ -23544,32 +23716,32 @@ msgstr "" msgid "MMIX Internal: %s is not a shiftable int" msgstr "" -#: config/mn10300/mn10300.c:145 +#: config/mn10300/mn10300.c:154 #, gcc-internal-format msgid "-mtune= expects mn10300, am33, am33-2, or am34" msgstr "" -#: config/pa/pa.c:555 +#: config/pa/pa.c:563 #, gcc-internal-format msgid "PIC code generation is not supported in the portable runtime model" msgstr "" -#: config/pa/pa.c:560 +#: config/pa/pa.c:568 #, gcc-internal-format msgid "PIC code generation is not compatible with fast indirect calls" msgstr "" -#: config/pa/pa.c:565 +#: config/pa/pa.c:573 #, gcc-internal-format msgid "-g is only supported when using GAS on this processor," msgstr "" -#: config/pa/pa.c:566 +#: config/pa/pa.c:574 #, gcc-internal-format msgid "-g option disabled" msgstr "" -#: config/pa/pa.c:8579 +#: config/pa/pa.c:8678 #, gcc-internal-format, gfc-internal-format msgid "" "alignment (%u) for %s exceeds maximum alignment for global common data. " @@ -23736,37 +23908,37 @@ msgstr "" msgid "junk at end of #pragma longcall" msgstr "" -#: config/rs6000/rs6000-c.c:3267 +#: config/rs6000/rs6000-c.c:3473 #, gcc-internal-format, gfc-internal-format msgid "%s only accepts %d arguments" msgstr "" -#: config/rs6000/rs6000-c.c:3272 +#: config/rs6000/rs6000-c.c:3478 #, gcc-internal-format, gfc-internal-format msgid "%s only accepts 1 argument" msgstr "" -#: config/rs6000/rs6000-c.c:3277 +#: config/rs6000/rs6000-c.c:3483 #, gcc-internal-format, gfc-internal-format msgid "%s only accepts 2 arguments" msgstr "" -#: config/rs6000/rs6000-c.c:3342 +#: config/rs6000/rs6000-c.c:3548 #, gcc-internal-format msgid "vec_extract only accepts 2 arguments" msgstr "" -#: config/rs6000/rs6000-c.c:3418 +#: config/rs6000/rs6000-c.c:3624 #, gcc-internal-format msgid "vec_insert only accepts 3 arguments" msgstr "" -#: config/rs6000/rs6000-c.c:3521 +#: config/rs6000/rs6000-c.c:3727 #, gcc-internal-format msgid "passing arg %d of %qE discards qualifiers frompointer target type" msgstr "" -#: config/rs6000/rs6000-c.c:3564 +#: config/rs6000/rs6000-c.c:3770 #, gcc-internal-format msgid "invalid parameter combination for AltiVec intrinsic" msgstr "" @@ -23846,306 +24018,306 @@ msgstr "" msgid "target attribute or pragma changes double precision floating point" msgstr "" -#: config/rs6000/rs6000.c:3356 +#: config/rs6000/rs6000.c:3359 #, gcc-internal-format, gfc-internal-format msgid "unknown option for -mrecip=%s" msgstr "" -#: config/rs6000/rs6000.c:3823 +#: config/rs6000/rs6000.c:3826 #, gcc-internal-format, gfc-internal-format msgid "unknown -m%s= option specified: '%s'" msgstr "" -#: config/rs6000/rs6000.c:3858 +#: config/rs6000/rs6000.c:3861 #, gcc-internal-format, gfc-internal-format msgid "unknown value %s for -mfpu" msgstr "" -#: config/rs6000/rs6000.c:4245 +#: config/rs6000/rs6000.c:4248 #, gcc-internal-format, gfc-internal-format msgid "invalid option for -mcmodel: '%s'" msgstr "" -#: config/rs6000/rs6000.c:4375 +#: config/rs6000/rs6000.c:4378 #, gcc-internal-format, gfc-internal-format msgid "unknown -mdebug-%s switch" msgstr "" -#: config/rs6000/rs6000.c:4448 +#: config/rs6000/rs6000.c:4451 #, gcc-internal-format, gfc-internal-format msgid "not configured for ABI: '%s'" msgstr "" -#: config/rs6000/rs6000.c:4461 +#: config/rs6000/rs6000.c:4464 #, gcc-internal-format msgid "using darwin64 ABI" msgstr "" -#: config/rs6000/rs6000.c:4466 +#: config/rs6000/rs6000.c:4469 #, gcc-internal-format msgid "using old darwin ABI" msgstr "" -#: config/rs6000/rs6000.c:4473 +#: config/rs6000/rs6000.c:4476 #, gcc-internal-format msgid "using IBM extended precision long double" msgstr "" -#: config/rs6000/rs6000.c:4479 +#: config/rs6000/rs6000.c:4482 #, gcc-internal-format msgid "using IEEE extended precision long double" msgstr "" -#: config/rs6000/rs6000.c:4484 +#: config/rs6000/rs6000.c:4487 #, gcc-internal-format, gfc-internal-format msgid "unknown ABI specified: '%s'" msgstr "" -#: config/rs6000/rs6000.c:4493 +#: config/rs6000/rs6000.c:4496 #, gcc-internal-format, gfc-internal-format msgid "bad value (%s) for -mcpu" msgstr "" -#: config/rs6000/rs6000.c:4500 +#: config/rs6000/rs6000.c:4503 #, gcc-internal-format, gfc-internal-format msgid "bad value (%s) for -mtune" msgstr "" -#: config/rs6000/rs6000.c:4511 +#: config/rs6000/rs6000.c:4514 #, gcc-internal-format msgid "" "unknown -mtraceback arg %qs; expecting %<full%>, %<partial%> or %<none%>" msgstr "" -#: config/rs6000/rs6000.c:4525 +#: config/rs6000/rs6000.c:4528 #, gcc-internal-format, gfc-internal-format msgid "invalid option for -mfloat-gprs: '%s'" msgstr "" -#: config/rs6000/rs6000.c:4535 +#: config/rs6000/rs6000.c:4538 #, gcc-internal-format, gfc-internal-format msgid "unknown switch -mlong-double-%s" msgstr "" -#: config/rs6000/rs6000.c:4556 +#: config/rs6000/rs6000.c:4559 #, 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:4564 +#: config/rs6000/rs6000.c:4567 #, gcc-internal-format, gfc-internal-format msgid "unknown -malign-XXXXX option specified: '%s'" msgstr "" -#: config/rs6000/rs6000.c:4571 +#: config/rs6000/rs6000.c:4574 #, gcc-internal-format msgid "-msingle-float option equivalent to -mhard-float" msgstr "" -#: config/rs6000/rs6000.c:4587 +#: config/rs6000/rs6000.c:4590 #, gcc-internal-format msgid "-msimple-fpu option ignored" msgstr "" -#: config/rs6000/rs6000.c:7846 +#: config/rs6000/rs6000.c:7855 #, gcc-internal-format msgid "" "GCC vector returned by reference: non-standard ABI extension with no " "compatibility guarantee" msgstr "" -#: config/rs6000/rs6000.c:7916 +#: config/rs6000/rs6000.c:7925 #, 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:8246 +#: config/rs6000/rs6000.c:8255 #, 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:9170 +#: config/rs6000/rs6000.c:9179 #, gcc-internal-format msgid "" "GCC vector passed by reference: non-standard ABI extension with no " "compatibility guarantee" msgstr "" -#: config/rs6000/rs6000.c:9796 +#: config/rs6000/rs6000.c:9805 #, gcc-internal-format, gfc-internal-format msgid "internal error: builtin function to %s already processed" msgstr "" -#: config/rs6000/rs6000.c:10743 +#: config/rs6000/rs6000.c:10752 #, gcc-internal-format msgid "argument 1 must be a 5-bit signed literal" msgstr "" -#: config/rs6000/rs6000.c:10846 config/rs6000/rs6000.c:11820 +#: config/rs6000/rs6000.c:10855 config/rs6000/rs6000.c:11873 #, gcc-internal-format msgid "argument 2 must be a 5-bit unsigned literal" msgstr "" -#: config/rs6000/rs6000.c:10885 +#: config/rs6000/rs6000.c:10894 #, gcc-internal-format msgid "argument 1 of __builtin_altivec_predicate must be a constant" msgstr "" -#: config/rs6000/rs6000.c:10937 +#: config/rs6000/rs6000.c:10946 #, gcc-internal-format msgid "argument 1 of __builtin_altivec_predicate is out of range" msgstr "" -#: config/rs6000/rs6000.c:11194 +#: config/rs6000/rs6000.c:11203 #, gcc-internal-format msgid "argument 3 must be a 4-bit unsigned literal" msgstr "" -#: config/rs6000/rs6000.c:11212 +#: config/rs6000/rs6000.c:11221 #, gcc-internal-format msgid "argument 3 must be a 2-bit unsigned literal" msgstr "" -#: config/rs6000/rs6000.c:11224 +#: config/rs6000/rs6000.c:11233 #, gcc-internal-format msgid "argument 3 must be a 1-bit unsigned literal" msgstr "" -#: config/rs6000/rs6000.c:11395 +#: config/rs6000/rs6000.c:11416 #, gcc-internal-format msgid "argument to %qs must be a 2-bit unsigned literal" msgstr "" -#: config/rs6000/rs6000.c:11539 +#: config/rs6000/rs6000.c:11560 #, gcc-internal-format msgid "unresolved overload for Altivec builtin %qF" msgstr "" -#: config/rs6000/rs6000.c:11630 +#: config/rs6000/rs6000.c:11664 #, gcc-internal-format msgid "argument to dss must be a 2-bit unsigned literal" msgstr "" -#: config/rs6000/rs6000.c:11940 +#: config/rs6000/rs6000.c:11993 #, gcc-internal-format msgid "argument 1 of __builtin_paired_predicate must be a constant" msgstr "" -#: config/rs6000/rs6000.c:11987 +#: config/rs6000/rs6000.c:12040 #, gcc-internal-format msgid "argument 1 of __builtin_paired_predicate is out of range" msgstr "" -#: config/rs6000/rs6000.c:12012 +#: config/rs6000/rs6000.c:12065 #, gcc-internal-format msgid "argument 1 of __builtin_spe_predicate must be a constant" msgstr "" -#: config/rs6000/rs6000.c:12084 +#: config/rs6000/rs6000.c:12137 #, gcc-internal-format msgid "argument 1 of __builtin_spe_predicate is out of range" msgstr "" -#: config/rs6000/rs6000.c:13450 +#: config/rs6000/rs6000.c:13518 #, gcc-internal-format, gfc-internal-format msgid "internal error: builtin function %s had no type" msgstr "" -#: config/rs6000/rs6000.c:13457 +#: config/rs6000/rs6000.c:13525 #, gcc-internal-format, gfc-internal-format msgid "internal error: builtin function %s had an unexpected return type %s" msgstr "" -#: config/rs6000/rs6000.c:13470 +#: config/rs6000/rs6000.c:13538 #, gcc-internal-format, gfc-internal-format msgid "" "internal error: builtin function %s, argument %d had unexpected argument " "type %s" msgstr "" -#: config/rs6000/rs6000.c:19350 +#: config/rs6000/rs6000.c:19429 #, gcc-internal-format msgid "stack frame too large" msgstr "" -#: config/rs6000/rs6000.c:19874 +#: config/rs6000/rs6000.c:19953 #, gcc-internal-format msgid "out-of-line save/restore routines not supported on Darwin" msgstr "" -#: config/rs6000/rs6000.c:22746 +#: config/rs6000/rs6000.c:22825 #, gcc-internal-format msgid "no profiling of 64-bit code for this ABI" msgstr "" -#: config/rs6000/rs6000.c:24784 +#: config/rs6000/rs6000.c:24863 #, gcc-internal-format msgid "use of %<long double%> in AltiVec types is invalid" msgstr "" -#: config/rs6000/rs6000.c:24786 +#: config/rs6000/rs6000.c:24865 #, gcc-internal-format msgid "use of boolean types in AltiVec types is invalid" msgstr "" -#: config/rs6000/rs6000.c:24788 +#: config/rs6000/rs6000.c:24867 #, gcc-internal-format msgid "use of %<complex%> in AltiVec types is invalid" msgstr "" -#: config/rs6000/rs6000.c:24790 +#: config/rs6000/rs6000.c:24869 #, gcc-internal-format msgid "use of decimal floating point types in AltiVec types is invalid" msgstr "" -#: config/rs6000/rs6000.c:24796 +#: config/rs6000/rs6000.c:24875 #, gcc-internal-format msgid "" "use of %<long%> in AltiVec types is invalid for 64-bit code without -mvsx" msgstr "" -#: config/rs6000/rs6000.c:24799 +#: config/rs6000/rs6000.c:24878 #, gcc-internal-format msgid "use of %<long%> in AltiVec types is deprecated; use %<int%>" msgstr "" -#: config/rs6000/rs6000.c:24804 +#: config/rs6000/rs6000.c:24883 #, gcc-internal-format msgid "use of %<long long%> in AltiVec types is invalid without -mvsx" msgstr "" -#: config/rs6000/rs6000.c:24807 +#: config/rs6000/rs6000.c:24886 #, gcc-internal-format msgid "use of %<double%> in AltiVec types is invalid without -mvsx" msgstr "" -#: config/rs6000/rs6000.c:27263 +#: config/rs6000/rs6000.c:27342 #, gcc-internal-format, gfc-internal-format msgid "emitting microcode insn %s\t[%s] #%d" msgstr "" -#: config/rs6000/rs6000.c:27267 +#: config/rs6000/rs6000.c:27346 #, gcc-internal-format, gfc-internal-format msgid "emitting conditional microcode insn %s\t[%s] #%d" msgstr "" -#: config/rs6000/rs6000.c:27470 +#: config/rs6000/rs6000.c:27549 #, gcc-internal-format, gfc-internal-format msgid "invalid cpu \"%s\" for %s\"%s\"%s" msgstr "" -#: config/rs6000/rs6000.c:27473 +#: config/rs6000/rs6000.c:27552 #, gcc-internal-format, gfc-internal-format msgid "%s\"%s\"%s is not allowed" msgstr "" -#: config/rs6000/rs6000.c:27475 +#: config/rs6000/rs6000.c:27554 #, gcc-internal-format, gfc-internal-format msgid "%s\"%s\"%s is invalid" msgstr "" @@ -24229,92 +24401,92 @@ msgstr "" #. The macro SUBTARGET_OVERRIDE_OPTIONS is provided for subtargets, to #. get control in TARGET_OPTION_OVERRIDE. -#: config/rs6000/sysv4.h:116 +#: config/rs6000/sysv4.h:117 #, gcc-internal-format, gfc-internal-format msgid "bad value for -mcall-%s" msgstr "" -#: config/rs6000/sysv4.h:132 +#: config/rs6000/sysv4.h:133 #, gcc-internal-format, gfc-internal-format msgid "bad value for -msdata=%s" msgstr "" -#: config/rs6000/sysv4.h:149 +#: config/rs6000/sysv4.h:150 #, gcc-internal-format, gfc-internal-format msgid "-mrelocatable and -msdata=%s are incompatible" msgstr "" -#: config/rs6000/sysv4.h:158 +#: config/rs6000/sysv4.h:159 #, gcc-internal-format, gfc-internal-format msgid "-f%s and -msdata=%s are incompatible" msgstr "" -#: config/rs6000/sysv4.h:167 +#: config/rs6000/sysv4.h:168 #, gcc-internal-format, gfc-internal-format msgid "-msdata=%s and -mcall-%s are incompatible" msgstr "" -#: config/rs6000/sysv4.h:176 +#: config/rs6000/sysv4.h:177 #, gcc-internal-format msgid "-mrelocatable and -mno-minimal-toc are incompatible" msgstr "" -#: config/rs6000/sysv4.h:182 +#: config/rs6000/sysv4.h:183 #, gcc-internal-format, gfc-internal-format msgid "-mrelocatable and -mcall-%s are incompatible" msgstr "" -#: config/rs6000/sysv4.h:189 +#: config/rs6000/sysv4.h:190 #, gcc-internal-format, gfc-internal-format msgid "-fPIC and -mcall-%s are incompatible" msgstr "" -#: config/rs6000/sysv4.h:196 +#: config/rs6000/sysv4.h:197 #, gcc-internal-format msgid "-mcall-aixdesc must be big endian" msgstr "" -#: config/rs6000/sysv4.h:201 +#: config/rs6000/sysv4.h:202 #, gcc-internal-format msgid "-msecure-plt not supported by your assembler" msgstr "" -#: config/rs6000/sysv4.h:220 +#: config/rs6000/sysv4.h:221 #, gcc-internal-format, gfc-internal-format msgid "-m%s not supported in this configuration" msgstr "" -#: config/rx/rx.c:428 +#: config/rx/rx.c:508 #, gcc-internal-format, gfc-internal-format msgid "unreocgnized control register number: %d - using 'psw'" msgstr "" -#: config/rx/rx.c:2026 +#: config/rx/rx.c:2106 #, gcc-internal-format, gfc-internal-format msgid "__builtin_rx_%s takes 'C', 'Z', 'S', 'O', 'I', or 'U'" msgstr "" -#: config/rx/rx.c:2028 +#: config/rx/rx.c:2108 #, gcc-internal-format msgid "use __builtin_rx_mvtc (0, ... ) to write arbitrary values to PSW" msgstr "" -#: config/rx/rx.c:2085 config/xtensa/xtensa.c:3079 config/xtensa/xtensa.c:3119 +#: config/rx/rx.c:2163 config/xtensa/xtensa.c:3129 config/xtensa/xtensa.c:3169 #, gcc-internal-format msgid "bad builtin code" msgstr "" -#: config/rx/rx.c:2211 +#: config/rx/rx.c:2289 #, gcc-internal-format, gfc-internal-format msgid "unrecognized argument '%s' to -mcpu= option" msgstr "" -#: config/rx/rx.c:2216 +#: config/rx/rx.c:2294 #, gcc-internal-format msgid "the RX200 cpu does not have FPU hardware" msgstr "" -#: config/rx/rx.c:2249 +#: config/rx/rx.c:2327 #, gcc-internal-format msgid "RX FPU instructions do not support NaNs and infinities" msgstr "" @@ -24376,97 +24548,22 @@ msgstr "" msgid "-mstack-guard implies use of -mstack-size" msgstr "" -#: config/s390/s390.c:5134 -#, gcc-internal-format -msgid "symbolic memory references are only supported on z10 or later" -msgstr "" - -#: config/s390/s390.c:5203 -#, gcc-internal-format -msgid "invalid comparison operator for 'E' output modifier" -msgstr "" - -#: config/s390/s390.c:5223 -#, gcc-internal-format -msgid "invalid reference for 'J' output modifier" -msgstr "" - -#: config/s390/s390.c:5237 -#, gcc-internal-format -msgid "memory reference expected for 'O' output modifier" -msgstr "" - -#: config/s390/s390.c:5247 -#, gcc-internal-format -msgid "invalid address for 'O' output modifier" -msgstr "" - -#: config/s390/s390.c:5265 -#, gcc-internal-format -msgid "memory reference expected for 'R' output modifier" -msgstr "" - -#: config/s390/s390.c:5275 -#, gcc-internal-format -msgid "invalid address for 'R' output modifier" -msgstr "" - -#: config/s390/s390.c:5293 -#, gcc-internal-format -msgid "memory reference expected for 'S' output modifier" -msgstr "" - -#: config/s390/s390.c:5302 -#, gcc-internal-format -msgid "invalid address for 'S' output modifier" -msgstr "" - -#: config/s390/s390.c:5322 -#, gcc-internal-format -msgid "register or memory expression expected for 'N' output modifier" -msgstr "" - -#: config/s390/s390.c:5331 -#, gcc-internal-format -msgid "register or memory expression expected for 'M' output modifier" -msgstr "" - -#: config/s390/s390.c:5394 -#, gcc-internal-format -msgid "invalid constant - try using an output modifier" -msgstr "" - -#: config/s390/s390.c:5396 -#, gcc-internal-format, gfc-internal-format -msgid "invalid constant for output modifier '%c'" -msgstr "" - -#: config/s390/s390.c:5402 -#, gcc-internal-format -msgid "invalid expression - try using an output modifier" -msgstr "" - -#: config/s390/s390.c:5404 -#, gcc-internal-format, gfc-internal-format -msgid "invalid expression for output modifier '%c'" -msgstr "" - -#: config/s390/s390.c:7324 +#: config/s390/s390.c:7371 #, gcc-internal-format msgid "total size of local variables exceeds architecture limit" msgstr "" -#: config/s390/s390.c:8025 config/s390/s390.c:8041 +#: config/s390/s390.c:8072 config/s390/s390.c:8088 #, gcc-internal-format msgid "frame size of function %qs is " msgstr "" -#: config/s390/s390.c:8070 +#: config/s390/s390.c:8117 #, gcc-internal-format msgid "frame size of %qs is " msgstr "" -#: config/s390/s390.c:8074 +#: config/s390/s390.c:8121 #, gcc-internal-format msgid "%qs uses dynamic stack allocation" msgstr "" @@ -24476,65 +24573,65 @@ msgstr "" msgid "-fPIC and -G are incompatible" msgstr "" -#: config/sh/sh.c:932 +#: config/sh/sh.c:939 #, gcc-internal-format msgid "ignoring -fschedule-insns because of exception handling bug" msgstr "" -#: config/sh/sh.c:953 +#: config/sh/sh.c:960 #, gcc-internal-format msgid "" "unwind tables currently require either a frame pointer or -maccumulate-" "outgoing-args for correctness" msgstr "" -#: config/sh/sh.c:7781 +#: config/sh/sh.c:7788 #, gcc-internal-format msgid "__builtin_saveregs not supported by this subtarget" msgstr "" -#: config/sh/sh.c:8938 +#: config/sh/sh.c:8945 #, gcc-internal-format msgid "%qE attribute only applies to interrupt functions" msgstr "" -#: config/sh/sh.c:8996 +#: config/sh/sh.c:9003 #, gcc-internal-format msgid "%qE attribute is supported only for SH2A" msgstr "" -#: config/sh/sh.c:9026 +#: config/sh/sh.c:9033 #, gcc-internal-format msgid "attribute interrupt_handler is not compatible with -m5-compact" msgstr "" -#: config/sh/sh.c:9043 +#: config/sh/sh.c:9050 #, gcc-internal-format msgid "%qE attribute only applies to SH2A" msgstr "" -#: config/sh/sh.c:9065 +#: config/sh/sh.c:9072 #, gcc-internal-format msgid "%qE attribute argument should be between 0 to 255" msgstr "" #. The argument must be a constant string. -#: config/sh/sh.c:9138 +#: config/sh/sh.c:9145 #, gcc-internal-format msgid "%qE attribute argument not a string constant" msgstr "" -#: config/sh/sh.c:11702 +#: config/sh/sh.c:11709 #, gcc-internal-format msgid "r0 needs to be available as a call-clobbered register" msgstr "" -#: config/sh/sh.c:11723 +#: config/sh/sh.c:11730 #, gcc-internal-format msgid "need a second call-clobbered general purpose register" msgstr "" -#: config/sh/sh.c:11731 +#: config/sh/sh.c:11738 #, gcc-internal-format msgid "need a call-clobbered target register" msgstr "" @@ -24564,8 +24661,8 @@ msgstr "" #: config/sh/symbian-c.c:122 config/sh/symbian-c.c:129 #: config/sh/symbian-cxx.c:554 config/sh/symbian-cxx.c:561 -#: ada/gcc-interface/utils.c:5018 ada/gcc-interface/utils.c:5196 -#: ada/gcc-interface/utils.c:5238 ada/gcc-interface/utils.c:5298 +#: ada/gcc-interface/utils.c:5046 ada/gcc-interface/utils.c:5224 +#: ada/gcc-interface/utils.c:5266 ada/gcc-interface/utils.c:5326 #, gcc-internal-format msgid "%qs attribute ignored" msgstr "" @@ -24587,22 +24684,22 @@ msgstr "" msgid "-mrelax is only supported for RTP PIC" msgstr "" -#: config/sparc/sparc.c:799 +#: config/sparc/sparc.c:793 #, gcc-internal-format, gfc-internal-format msgid "%s is not supported by this configuration" msgstr "" -#: config/sparc/sparc.c:806 +#: config/sparc/sparc.c:800 #, gcc-internal-format msgid "-mlong-double-64 not allowed with -m64" msgstr "" -#: config/sparc/sparc.c:826 +#: config/sparc/sparc.c:820 #, gcc-internal-format, gfc-internal-format msgid "bad value (%s) for -mcmodel= switch" msgstr "" -#: config/sparc/sparc.c:831 +#: config/sparc/sparc.c:825 #, gcc-internal-format msgid "-mcmodel= is not supported on 32 bit systems" msgstr "" @@ -24622,62 +24719,67 @@ msgstr "" msgid "parameter list does not match a valid signature for %s()" msgstr "" -#: config/spu/spu.c:544 config/spu/spu.c:555 -#, gcc-internal-format -msgid "unknown architecture %qs" +#: config/spu/spu.c:548 +#, gcc-internal-format, gfc-internal-format +msgid "bad value (%s) for -march= switch" +msgstr "" + +#: config/spu/spu.c:559 +#, gcc-internal-format, gfc-internal-format +msgid "bad value (%s) for -mtune= switch" msgstr "" -#: config/spu/spu.c:5359 config/spu/spu.c:5362 +#: config/spu/spu.c:5388 config/spu/spu.c:5391 #, gcc-internal-format msgid "creating run-time relocation for %qD" msgstr "" -#: config/spu/spu.c:5367 config/spu/spu.c:5369 +#: config/spu/spu.c:5396 config/spu/spu.c:5398 #, gcc-internal-format msgid "creating run-time relocation" msgstr "" -#: config/spu/spu.c:6428 +#: config/spu/spu.c:6470 #, gcc-internal-format, gfc-internal-format msgid "%s expects an integer literal in the range [%d, %d]" msgstr "" -#: config/spu/spu.c:6448 +#: config/spu/spu.c:6490 #, gcc-internal-format msgid "%s expects an integer literal in the range [%d, %d]. (%wd)" msgstr "" -#: config/spu/spu.c:6477 +#: config/spu/spu.c:6519 #, gcc-internal-format, gfc-internal-format msgid "%d least significant bits of %s are ignored" msgstr "" -#: config/stormy16/stormy16.c:1089 +#: config/stormy16/stormy16.c:1035 #, gcc-internal-format msgid "local variable memory requirements exceed capacity" msgstr "" -#: config/stormy16/stormy16.c:1243 +#: config/stormy16/stormy16.c:1189 #, gcc-internal-format msgid "function_profiler support" msgstr "" -#: config/stormy16/stormy16.c:1333 +#: config/stormy16/stormy16.c:1279 #, gcc-internal-format msgid "cannot use va_start in interrupt function" msgstr "" -#: config/stormy16/stormy16.c:1877 +#: config/stormy16/stormy16.c:1842 #, gcc-internal-format, gfc-internal-format msgid "switch statement of size %lu entries too large" msgstr "" -#: config/stormy16/stormy16.c:2245 +#: config/stormy16/stormy16.c:2210 #, gcc-internal-format msgid "%<__BELOW100__%> attribute only applies to variables" msgstr "" -#: config/stormy16/stormy16.c:2252 +#: config/stormy16/stormy16.c:2217 #, gcc-internal-format msgid "__BELOW100__ attribute not allowed with auto storage class" msgstr "" @@ -24802,22 +24904,22 @@ msgstr "" msgid "too much stack space to prepare: %d" msgstr "" -#: config/xtensa/xtensa.c:2129 +#: config/xtensa/xtensa.c:2178 #, gcc-internal-format msgid "boolean registers required for the floating-point option" msgstr "" -#: config/xtensa/xtensa.c:2164 +#: config/xtensa/xtensa.c:2213 #, gcc-internal-format, gfc-internal-format msgid "-f%s is not supported with CONST16 instructions" msgstr "" -#: config/xtensa/xtensa.c:2171 +#: config/xtensa/xtensa.c:2220 #, gcc-internal-format msgid "PIC is required but not supported with CONST16 instructions" msgstr "" -#: config/xtensa/xtensa.c:3229 +#: config/xtensa/xtensa.c:3299 #, gcc-internal-format msgid "only uninitialized variables can be placed in a .bss section" msgstr "" @@ -24827,496 +24929,496 @@ msgstr "" msgid "%<-gnat%> misspelled as %<-gant%>" msgstr "" -#: ada/gcc-interface/misc.c:240 +#: ada/gcc-interface/misc.c:239 #, gcc-internal-format msgid "-fexcess-precision=standard for Ada" msgstr "" -#: ada/gcc-interface/utils.c:5136 +#: ada/gcc-interface/utils.c:5164 #, gcc-internal-format msgid "%qs attribute requires prototypes with named arguments" msgstr "" -#: ada/gcc-interface/utils.c:5148 +#: ada/gcc-interface/utils.c:5176 #, gcc-internal-format msgid "%qs attribute only applies to variadic functions" msgstr "" -#: ada/gcc-interface/utils.c:5219 +#: ada/gcc-interface/utils.c:5247 #, gcc-internal-format msgid "%qE attribute has no effect" msgstr "" -#: ada/gcc-interface/utils.c:5333 +#: ada/gcc-interface/utils.c:5359 #, gcc-internal-format msgid "invalid vector type for attribute %qs" msgstr "" -#: ada/gcc-interface/utils.c:5396 +#: ada/gcc-interface/utils.c:5422 #, gcc-internal-format msgid "attribute %qs applies to array types only" msgstr "" -#: ada/gcc-interface/utils.c:5423 +#: ada/gcc-interface/utils.c:5449 #, gcc-internal-format msgid "invalid element type for attribute %qs" msgstr "" #. Conversion of implicit `this' argument failed. -#: cp/call.c:2948 +#: cp/call.c:2956 #, gcc-internal-format msgid " no known conversion for implicit %<this%> parameter from %qT to %qT" msgstr "" -#: cp/call.c:2952 +#: cp/call.c:2960 #, gcc-internal-format msgid " no known conversion for argument %d from %qT to %qT" msgstr "" -#: cp/call.c:2974 +#: cp/call.c:2982 #, gcc-internal-format msgid "%s%D(%T, %T, %T) <built-in>" msgstr "" -#: cp/call.c:2979 +#: cp/call.c:2987 #, gcc-internal-format msgid "%s%D(%T, %T) <built-in>" msgstr "" -#: cp/call.c:2983 +#: cp/call.c:2991 #, gcc-internal-format msgid "%s%D(%T) <built-in>" msgstr "" -#: cp/call.c:2987 +#: cp/call.c:2995 #, gcc-internal-format msgid "%s%T <conversion>" msgstr "" -#: cp/call.c:2989 +#: cp/call.c:2997 #, gcc-internal-format msgid "%s%#D <near match>" msgstr "" -#: cp/call.c:2991 +#: cp/call.c:2999 #, gcc-internal-format msgid "%s%#D <deleted>" msgstr "" -#: cp/call.c:2993 +#: cp/call.c:3001 #, gcc-internal-format msgid "%s%#D" msgstr "" -#: cp/call.c:3003 +#: cp/call.c:3011 #, gcc-internal-format, gfc-internal-format msgid " candidate expects %d argument, %d provided" msgid_plural " candidate expects %d arguments, %d provided" msgstr[0] "" msgstr[1] "" -#: cp/call.c:3337 +#: cp/call.c:3345 #, gcc-internal-format msgid "conversion from %qT to %qT is ambiguous" msgstr "" -#: cp/call.c:3442 +#: cp/call.c:3450 #, gcc-internal-format msgid "" "conversion from %qT to %qT not considered for non-type template argument" msgstr "" -#: cp/call.c:3552 +#: cp/call.c:3560 #, gcc-internal-format msgid "no matching function for call to %<%D(%A)%>" msgstr "" -#: cp/call.c:3555 +#: cp/call.c:3563 #, gcc-internal-format msgid "call of overloaded %<%D(%A)%> is ambiguous" msgstr "" #. It's no good looking for an overloaded operator() on a #. pointer-to-member-function. -#: cp/call.c:3745 +#: cp/call.c:3753 #, gcc-internal-format msgid "" "pointer-to-member function %E cannot be called without an object; consider " "using .* or ->*" msgstr "" -#: cp/call.c:3817 +#: cp/call.c:3825 #, gcc-internal-format msgid "no match for call to %<(%T) (%A)%>" msgstr "" -#: cp/call.c:3830 +#: cp/call.c:3838 #, gcc-internal-format msgid "call of %<(%T) (%A)%> is ambiguous" msgstr "" -#: cp/call.c:3872 +#: cp/call.c:3880 #, gcc-internal-format msgid "ambiguous overload for ternary %<operator?:%> in %<%E ? %E : %E%>" msgstr "" -#: cp/call.c:3875 +#: cp/call.c:3883 #, gcc-internal-format msgid "no match for ternary %<operator?:%> in %<%E ? %E : %E%>" msgstr "" -#: cp/call.c:3882 +#: cp/call.c:3890 #, gcc-internal-format msgid "ambiguous overload for %<operator%s%> in %<%E%s%>" msgstr "" -#: cp/call.c:3885 +#: cp/call.c:3893 #, gcc-internal-format msgid "no match for %<operator%s%> in %<%E%s%>" msgstr "" -#: cp/call.c:3891 +#: cp/call.c:3899 #, gcc-internal-format msgid "ambiguous overload for %<operator[]%> in %<%E[%E]%>" msgstr "" -#: cp/call.c:3894 +#: cp/call.c:3902 #, gcc-internal-format msgid "no match for %<operator[]%> in %<%E[%E]%>" msgstr "" -#: cp/call.c:3901 +#: cp/call.c:3909 #, gcc-internal-format msgid "ambiguous overload for %qs in %<%s %E%>" msgstr "" -#: cp/call.c:3904 +#: cp/call.c:3912 #, gcc-internal-format msgid "no match for %qs in %<%s %E%>" msgstr "" -#: cp/call.c:3911 +#: cp/call.c:3919 #, gcc-internal-format msgid "ambiguous overload for %<operator%s%> in %<%E %s %E%>" msgstr "" -#: cp/call.c:3914 +#: cp/call.c:3922 #, gcc-internal-format msgid "no match for %<operator%s%> in %<%E %s %E%>" msgstr "" -#: cp/call.c:3918 +#: cp/call.c:3926 #, gcc-internal-format msgid "ambiguous overload for %<operator%s%> in %<%s%E%>" msgstr "" -#: cp/call.c:3921 +#: cp/call.c:3929 #, gcc-internal-format msgid "no match for %<operator%s%> in %<%s%E%>" msgstr "" -#: cp/call.c:4015 +#: cp/call.c:4023 #, gcc-internal-format msgid "ISO C++ forbids omitting the middle term of a ?: expression" msgstr "" -#: cp/call.c:4096 +#: cp/call.c:4104 #, gcc-internal-format msgid "" "second operand to the conditional operator is of type %<void%>, but the " "third operand is neither a throw-expression nor of type %<void%>" msgstr "" -#: cp/call.c:4101 +#: cp/call.c:4109 #, gcc-internal-format msgid "" "third operand to the conditional operator is of type %<void%>, but the " "second operand is neither a throw-expression nor of type %<void%>" msgstr "" -#: cp/call.c:4143 cp/call.c:4387 +#: cp/call.c:4151 cp/call.c:4395 #, gcc-internal-format msgid "operands to ?: have different types %qT and %qT" msgstr "" -#: cp/call.c:4334 +#: cp/call.c:4342 #, gcc-internal-format msgid "enumeral mismatch in conditional expression: %qT vs %qT" msgstr "" -#: cp/call.c:4345 +#: cp/call.c:4353 #, gcc-internal-format msgid "enumeral and non-enumeral type in conditional expression" msgstr "" -#: cp/call.c:4739 +#: cp/call.c:4747 #, gcc-internal-format msgid "no %<%D(int)%> declared for postfix %qs, trying prefix operator instead" msgstr "" -#: cp/call.c:4741 +#: cp/call.c:4749 #, gcc-internal-format msgid "no %<%D(int)%> declared for postfix %qs" msgstr "" -#: cp/call.c:4835 +#: cp/call.c:4843 #, gcc-internal-format msgid "comparison between %q#T and %q#T" msgstr "" -#: cp/call.c:5079 +#: cp/call.c:5087 #, gcc-internal-format msgid "non-placement deallocation function %q+D" msgstr "" -#: cp/call.c:5080 +#: cp/call.c:5088 #, gcc-internal-format msgid "selected for placement delete" msgstr "" -#: cp/call.c:5159 +#: cp/call.c:5167 #, gcc-internal-format msgid "no corresponding deallocation function for %qD" msgstr "" -#: cp/call.c:5164 +#: cp/call.c:5172 #, gcc-internal-format msgid "no suitable %<operator %s%> for %qT" msgstr "" -#: cp/call.c:5182 +#: cp/call.c:5190 #, gcc-internal-format msgid "%q+#D is private" msgstr "" -#: cp/call.c:5184 +#: cp/call.c:5192 #, gcc-internal-format msgid "%q+#D is protected" msgstr "" -#: cp/call.c:5186 +#: cp/call.c:5194 #, gcc-internal-format msgid "%q+#D is inaccessible" msgstr "" -#: cp/call.c:5187 +#: cp/call.c:5195 #, gcc-internal-format msgid "within this context" msgstr "" -#: cp/call.c:5235 +#: cp/call.c:5243 #, gcc-internal-format msgid "passing NULL to non-pointer argument %P of %qD" msgstr "" -#: cp/call.c:5239 +#: cp/call.c:5247 #, gcc-internal-format msgid "converting to non-pointer type %qT from NULL" msgstr "" -#: cp/call.c:5245 +#: cp/call.c:5253 #, gcc-internal-format msgid "converting %<false%> to pointer type for argument %P of %qD" msgstr "" -#: cp/call.c:5283 +#: cp/call.c:5291 #, gcc-internal-format msgid "too many braces around initializer for %qT" msgstr "" -#: cp/call.c:5305 cp/cvt.c:217 +#: cp/call.c:5313 cp/cvt.c:217 #, gcc-internal-format msgid "invalid conversion from %qT to %qT" msgstr "" -#: cp/call.c:5308 cp/call.c:5493 +#: cp/call.c:5316 cp/call.c:5501 #, gcc-internal-format msgid " initializing argument %P of %qD" msgstr "" -#: cp/call.c:5337 +#: cp/call.c:5345 #, gcc-internal-format msgid "" "converting to %qT from initializer list would use explicit constructor %qD" msgstr "" -#: cp/call.c:5397 cp/call.c:5511 +#: cp/call.c:5405 cp/call.c:5519 #, gcc-internal-format msgid " initializing argument %P of %q+D" msgstr "" -#: cp/call.c:5508 +#: cp/call.c:5516 #, gcc-internal-format msgid "cannot bind %qT lvalue to %qT" msgstr "" -#: cp/call.c:5543 +#: cp/call.c:5551 #, gcc-internal-format msgid "cannot bind bitfield %qE to %qT" msgstr "" -#: cp/call.c:5546 cp/call.c:5564 +#: cp/call.c:5554 cp/call.c:5572 #, gcc-internal-format msgid "cannot bind packed field %qE to %qT" msgstr "" -#: cp/call.c:5549 +#: cp/call.c:5557 #, gcc-internal-format msgid "cannot bind rvalue %qE to %qT" msgstr "" -#: cp/call.c:5681 +#: cp/call.c:5689 #, gcc-internal-format msgid "cannot pass objects of non-trivially-copyable type %q#T through %<...%>" msgstr "" #. conditionally-supported behavior [expr.call] 5.2.2/7. -#: cp/call.c:5710 +#: cp/call.c:5718 #, gcc-internal-format msgid "" "cannot receive objects of non-trivially-copyable type %q#T through %<...%>; " msgstr "" -#: cp/call.c:5756 +#: cp/call.c:5764 #, gcc-internal-format msgid "the default argument for parameter %d of %qD has not yet been parsed" msgstr "" -#: cp/call.c:5766 +#: cp/call.c:5774 #, gcc-internal-format msgid "recursive evaluation of default argument for %q#D" msgstr "" -#: cp/call.c:5883 +#: cp/call.c:5891 #, gcc-internal-format msgid "argument of function call might be a candidate for a format attribute" msgstr "" -#: cp/call.c:6093 +#: cp/call.c:6101 #, gcc-internal-format msgid "passing %qT as %<this%> argument of %q#D discards qualifiers" msgstr "" -#: cp/call.c:6115 +#: cp/call.c:6123 #, gcc-internal-format msgid "%qT is not an accessible base of %qT" msgstr "" -#: cp/call.c:6172 +#: cp/call.c:6180 #, gcc-internal-format msgid "deducing %qT as %qT" msgstr "" -#: cp/call.c:6175 +#: cp/call.c:6183 #, gcc-internal-format msgid " in call to %q+D" msgstr "" -#: cp/call.c:6177 +#: cp/call.c:6185 #, gcc-internal-format msgid " (you can disable this with -fno-deduce-init-list)" msgstr "" -#: cp/call.c:6447 +#: cp/call.c:6455 #, gcc-internal-format msgid "could not find class$ field in java interface type %qT" msgstr "" -#: cp/call.c:6705 +#: cp/call.c:6713 #, gcc-internal-format msgid "call to non-function %qD" msgstr "" -#: cp/call.c:6750 cp/typeck.c:2543 +#: cp/call.c:6758 cp/typeck.c:2543 #, gcc-internal-format msgid "cannot call constructor %<%T::%D%> directly" msgstr "" -#: cp/call.c:6752 +#: cp/call.c:6760 #, gcc-internal-format msgid " for a function-style cast, remove the redundant %<::%D%>" msgstr "" -#: cp/call.c:6836 +#: cp/call.c:6844 #, gcc-internal-format msgid "no matching function for call to %<%T::operator %T(%A)%#V%>" msgstr "" -#: cp/call.c:6849 +#: cp/call.c:6857 #, gcc-internal-format msgid "no matching function for call to %<%T::%s(%A)%#V%>" msgstr "" -#: cp/call.c:6874 +#: cp/call.c:6882 #, gcc-internal-format msgid "call of overloaded %<%s(%A)%> is ambiguous" msgstr "" -#: cp/call.c:6903 +#: cp/call.c:6911 #, gcc-internal-format msgid "cannot call member function %qD without object" msgstr "" -#: cp/call.c:7611 +#: cp/call.c:7619 #, gcc-internal-format msgid "passing %qT chooses %qT over %qT" msgstr "" -#: cp/call.c:7613 cp/name-lookup.c:5162 +#: cp/call.c:7621 cp/name-lookup.c:5178 #, gcc-internal-format msgid " in call to %qD" msgstr "" -#: cp/call.c:7670 +#: cp/call.c:7678 #, gcc-internal-format msgid "choosing %qD over %qD" msgstr "" -#: cp/call.c:7671 +#: cp/call.c:7679 #, gcc-internal-format msgid " for conversion from %qT to %qT" msgstr "" -#: cp/call.c:7674 +#: cp/call.c:7682 #, gcc-internal-format msgid " because conversion sequence for the argument is better" msgstr "" -#: cp/call.c:7792 +#: cp/call.c:7800 #, gcc-internal-format msgid "default argument mismatch in overload resolution" msgstr "" -#: cp/call.c:7795 +#: cp/call.c:7803 #, gcc-internal-format msgid " candidate 1: %q+#F" msgstr "" -#: cp/call.c:7797 +#: cp/call.c:7805 #, gcc-internal-format msgid " candidate 2: %q+#F" msgstr "" -#: cp/call.c:7838 +#: cp/call.c:7846 #, 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:7991 +#: cp/call.c:7999 #, gcc-internal-format msgid "could not convert %qE to %qT" msgstr "" -#: cp/call.c:8232 +#: cp/call.c:8241 #, gcc-internal-format msgid "" "invalid initialization of non-const reference of type %qT from an rvalue of " "type %qT" msgstr "" -#: cp/call.c:8236 +#: cp/call.c:8245 #, gcc-internal-format msgid "" "invalid initialization of reference of type %qT from expression of type %qT" @@ -25418,7 +25520,7 @@ msgstr "" msgid " by %q+D" msgstr "" -#: cp/class.c:2590 cp/decl2.c:1321 +#: cp/class.c:2590 cp/decl2.c:1322 #, gcc-internal-format msgid "%q+#D invalid; an anonymous union can only have non-static data members" msgstr "" @@ -25429,7 +25531,7 @@ msgid "" "%q+#D invalid; an anonymous struct can only have non-static data members" msgstr "" -#: cp/class.c:2601 cp/decl2.c:1327 +#: cp/class.c:2601 cp/decl2.c:1328 #, gcc-internal-format msgid "private member %q+#D in anonymous union" msgstr "" @@ -25439,7 +25541,7 @@ msgstr "" msgid "private member %q+#D in anonymous struct" msgstr "" -#: cp/class.c:2608 cp/decl2.c:1329 +#: cp/class.c:2608 cp/decl2.c:1330 #, gcc-internal-format msgid "protected member %q+#D in anonymous union" msgstr "" @@ -25449,261 +25551,261 @@ msgstr "" msgid "protected member %q+#D in anonymous struct" msgstr "" -#: cp/class.c:2795 +#: cp/class.c:2832 #, gcc-internal-format msgid "bit-field %q+#D with non-integral type" msgstr "" -#: cp/class.c:2811 +#: cp/class.c:2848 #, gcc-internal-format msgid "bit-field %q+D width not an integer constant" msgstr "" -#: cp/class.c:2816 +#: cp/class.c:2853 #, gcc-internal-format msgid "negative width in bit-field %q+D" msgstr "" -#: cp/class.c:2821 +#: cp/class.c:2858 #, gcc-internal-format msgid "zero width for bit-field %q+D" msgstr "" -#: cp/class.c:2827 +#: cp/class.c:2864 #, gcc-internal-format msgid "width of %q+D exceeds its type" msgstr "" -#: cp/class.c:2831 +#: cp/class.c:2868 #, gcc-internal-format msgid "%q+D is too small to hold all values of %q#T" msgstr "" -#: cp/class.c:2890 +#: cp/class.c:2927 #, gcc-internal-format msgid "member %q+#D with constructor not allowed in union" msgstr "" -#: cp/class.c:2893 +#: cp/class.c:2930 #, gcc-internal-format msgid "member %q+#D with destructor not allowed in union" msgstr "" -#: cp/class.c:2895 +#: cp/class.c:2932 #, gcc-internal-format msgid "member %q+#D with copy assignment operator not allowed in union" msgstr "" -#: cp/class.c:2899 +#: cp/class.c:2936 #, gcc-internal-format msgid "unrestricted unions only available with -std=c++0x or -std=gnu++0x" msgstr "" -#: cp/class.c:2933 +#: cp/class.c:2970 #, gcc-internal-format msgid "multiple fields in union %qT initialized" msgstr "" -#: cp/class.c:3024 +#: cp/class.c:3061 #, gcc-internal-format msgid "%q+D may not be static because it is a member of a union" msgstr "" -#: cp/class.c:3029 +#: cp/class.c:3066 #, gcc-internal-format msgid "%q+D may not have reference type %qT because it is a member of a union" msgstr "" -#: cp/class.c:3040 +#: cp/class.c:3077 #, gcc-internal-format msgid "field %q+D invalidly declared function type" msgstr "" -#: cp/class.c:3046 +#: cp/class.c:3083 #, gcc-internal-format msgid "field %q+D invalidly declared method type" msgstr "" -#: cp/class.c:3101 +#: cp/class.c:3138 #, gcc-internal-format msgid "ignoring packed attribute because of unpacked non-POD field %q+#D" msgstr "" -#: cp/class.c:3193 +#: cp/class.c:3230 #, gcc-internal-format msgid "field %q+#D with same name as class" msgstr "" -#: cp/class.c:3216 +#: cp/class.c:3253 #, gcc-internal-format msgid "%q#T has pointer data members" msgstr "" -#: cp/class.c:3221 +#: cp/class.c:3258 #, gcc-internal-format msgid " but does not override %<%T(const %T&)%>" msgstr "" -#: cp/class.c:3223 +#: cp/class.c:3260 #, gcc-internal-format msgid " or %<operator=(const %T&)%>" msgstr "" -#: cp/class.c:3227 +#: cp/class.c:3264 #, gcc-internal-format msgid " but does not override %<operator=(const %T&)%>" msgstr "" -#: cp/class.c:3690 +#: cp/class.c:3727 #, 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:3817 +#: cp/class.c:3854 #, gcc-internal-format msgid "class %qT will be considered nearly empty in a future version of GCC" msgstr "" -#: cp/class.c:3899 +#: cp/class.c:3936 #, gcc-internal-format msgid "initializer specified for non-virtual method %q+D" msgstr "" -#: cp/class.c:4527 +#: cp/class.c:4568 #, gcc-internal-format msgid "enclosing class of %q+D is not a literal type" msgstr "" -#: cp/class.c:4636 +#: cp/class.c:4677 #, gcc-internal-format msgid "non-static reference %q+#D in class without a constructor" msgstr "" -#: cp/class.c:4641 +#: cp/class.c:4682 #, gcc-internal-format msgid "non-static const member %q+#D in class without a constructor" msgstr "" #. If the function is defaulted outside the class, we just #. give the synthesis error. -#: cp/class.c:4667 +#: cp/class.c:4708 #, gcc-internal-format msgid "" "%q+D declared to take const reference, but implicit declaration would take " "non-const" msgstr "" -#: cp/class.c:4670 +#: cp/class.c:4711 #, gcc-internal-format msgid "" "%q+D declared to take non-const reference cannot be defaulted in the class " "body" msgstr "" -#: cp/class.c:4894 +#: cp/class.c:4935 #, 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:4995 +#: cp/class.c:5036 #, gcc-internal-format msgid "direct base %qT inaccessible in %qT due to ambiguity" msgstr "" -#: cp/class.c:5007 +#: cp/class.c:5048 #, gcc-internal-format msgid "virtual base %qT inaccessible in %qT due to ambiguity" msgstr "" -#: cp/class.c:5193 +#: cp/class.c:5234 #, 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:5233 +#: cp/class.c:5274 #, 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:5261 +#: cp/class.c:5302 #, 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:5271 +#: cp/class.c:5312 #, 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:5359 +#: cp/class.c:5400 #, gcc-internal-format msgid "" "layout of classes derived from empty class %qT may change in a future " "version of GCC" msgstr "" -#: cp/class.c:5512 cp/decl.c:11309 cp/parser.c:17464 +#: cp/class.c:5553 cp/decl.c:11320 cp/parser.c:17522 #, gcc-internal-format msgid "redefinition of %q#T" msgstr "" -#: cp/class.c:5664 +#: cp/class.c:5705 #, gcc-internal-format msgid "%q#T has virtual functions and accessible non-virtual destructor" msgstr "" -#: cp/class.c:5769 +#: cp/class.c:5810 #, gcc-internal-format msgid "trying to finish struct, but kicked out due to previous parse errors" msgstr "" -#: cp/class.c:6261 +#: cp/class.c:6302 #, gcc-internal-format msgid "language string %<\"%E\"%> not recognized" msgstr "" -#: cp/class.c:6351 +#: cp/class.c:6392 #, gcc-internal-format msgid "cannot resolve overloaded function %qD based on conversion to type %qT" msgstr "" -#: cp/class.c:6475 +#: cp/class.c:6516 #, gcc-internal-format msgid "no matches converting function %qD to type %q#T" msgstr "" -#: cp/class.c:6505 +#: cp/class.c:6546 #, gcc-internal-format msgid "converting overloaded function %qD to type %q#T is ambiguous" msgstr "" -#: cp/class.c:6532 +#: cp/class.c:6573 #, gcc-internal-format msgid "assuming pointer to member %qD" msgstr "" -#: cp/class.c:6535 +#: cp/class.c:6576 #, gcc-internal-format msgid "(a pointer to member can only be formed with %<&%E%>)" msgstr "" -#: cp/class.c:6597 cp/class.c:6631 +#: cp/class.c:6638 cp/class.c:6672 #, gcc-internal-format msgid "not enough type information" msgstr "" -#: cp/class.c:6614 +#: cp/class.c:6655 #, gcc-internal-format msgid "argument of type %qT does not match %qT" msgstr "" @@ -25713,12 +25815,12 @@ msgstr "" #. A name N used in a class S shall refer to the same declaration #. in its context and when re-evaluated in the completed scope of #. S. -#: cp/class.c:6925 cp/decl.c:1261 cp/name-lookup.c:524 +#: cp/class.c:6966 cp/decl.c:1265 cp/name-lookup.c:524 #, gcc-internal-format msgid "declaration of %q#D" msgstr "" -#: cp/class.c:6926 +#: cp/class.c:6967 #, gcc-internal-format msgid "changes meaning of %qD from %q+#D" msgstr "" @@ -25783,339 +25885,339 @@ msgstr "" msgid "cannot convert type %qT to type %qT" msgstr "" -#: cp/cvt.c:698 +#: cp/cvt.c:699 #, gcc-internal-format msgid "conversion from %q#T to %q#T" msgstr "" -#: cp/cvt.c:714 +#: cp/cvt.c:715 #, gcc-internal-format msgid "" "the result of the conversion is unspecified because %qE is outside the range " "of type %qT" msgstr "" -#: cp/cvt.c:725 cp/cvt.c:750 +#: cp/cvt.c:726 cp/cvt.c:751 #, gcc-internal-format msgid "%q#T used where a %qT was expected" msgstr "" -#: cp/cvt.c:765 +#: cp/cvt.c:766 #, gcc-internal-format msgid "%q#T used where a floating point value was expected" msgstr "" -#: cp/cvt.c:825 +#: cp/cvt.c:826 #, gcc-internal-format msgid "conversion from %qT to non-scalar type %qT requested" msgstr "" -#: cp/cvt.c:883 +#: cp/cvt.c:884 #, gcc-internal-format msgid "pseudo-destructor is not called" msgstr "" -#: cp/cvt.c:956 +#: cp/cvt.c:961 #, gcc-internal-format msgid "conversion to void will not access object of incomplete type %qT" msgstr "" -#: cp/cvt.c:960 +#: cp/cvt.c:965 #, gcc-internal-format msgid "" "indirection will not access object of incomplete type %qT in second operand " "of conditional expression" msgstr "" -#: cp/cvt.c:965 +#: cp/cvt.c:970 #, gcc-internal-format msgid "" "indirection will not access object of incomplete type %qT in third operand " "of conditional expression" msgstr "" -#: cp/cvt.c:970 +#: cp/cvt.c:975 #, gcc-internal-format msgid "" "indirection will not access object of incomplete type %qT in right operand " "of comma operator" msgstr "" -#: cp/cvt.c:975 +#: cp/cvt.c:980 #, gcc-internal-format msgid "" "indirection will not access object of incomplete type %qT in left operand of " "comma operator" msgstr "" -#: cp/cvt.c:980 +#: cp/cvt.c:985 #, gcc-internal-format msgid "indirection will not access object of incomplete type %qT in statement" msgstr "" -#: cp/cvt.c:984 +#: cp/cvt.c:989 #, gcc-internal-format msgid "" "indirection will not access object of incomplete type %qT in for increment " "expression" msgstr "" -#: cp/cvt.c:1000 +#: cp/cvt.c:1005 #, gcc-internal-format msgid "conversion to void will not access object of type %qT" msgstr "" -#: cp/cvt.c:1004 +#: cp/cvt.c:1009 #, gcc-internal-format msgid "" "implicit dereference will not access object of type %qT in second operand of " "conditional expression" msgstr "" -#: cp/cvt.c:1009 +#: cp/cvt.c:1014 #, gcc-internal-format msgid "" "implicit dereference will not access object of type %qT in third operand of " "conditional expression" msgstr "" -#: cp/cvt.c:1014 +#: cp/cvt.c:1019 #, gcc-internal-format msgid "" "implicit dereference will not access object of type %qT in right operand of " "comma operator" msgstr "" -#: cp/cvt.c:1019 +#: cp/cvt.c:1024 #, gcc-internal-format msgid "" "implicit dereference will not access object of type %qT in left operand of " "comma operator" msgstr "" -#: cp/cvt.c:1024 +#: cp/cvt.c:1029 #, gcc-internal-format msgid "implicit dereference will not access object of type %qT in statement" msgstr "" -#: cp/cvt.c:1028 +#: cp/cvt.c:1033 #, gcc-internal-format msgid "" "implicit dereference will not access object of type %qT in for increment " "expression" msgstr "" -#: cp/cvt.c:1042 +#: cp/cvt.c:1047 #, gcc-internal-format msgid "" "conversion to void will not access object of non-trivially-copyable type %qT" msgstr "" -#: cp/cvt.c:1047 +#: cp/cvt.c:1052 #, gcc-internal-format msgid "" "indirection will not access object of non-trivially-copyable type %qT in " "second operand of conditional expression" msgstr "" -#: cp/cvt.c:1052 +#: cp/cvt.c:1057 #, gcc-internal-format msgid "" "indirection will not access object of non-trivially-copyable type %qT in " "third operand of conditional expression" msgstr "" -#: cp/cvt.c:1057 +#: cp/cvt.c:1062 #, gcc-internal-format msgid "" "indirection will not access object of non-trivially-copyable type %qT in " "right operand of comma operator" msgstr "" -#: cp/cvt.c:1062 +#: cp/cvt.c:1067 #, gcc-internal-format msgid "" "indirection will not access object of non-trivially-copyable type %qT in " "left operand of comma operator" msgstr "" -#: cp/cvt.c:1067 +#: cp/cvt.c:1072 #, gcc-internal-format msgid "" "indirection will not access object of non-trivially-copyable type %qT in " "statement" msgstr "" -#: cp/cvt.c:1072 +#: cp/cvt.c:1077 #, gcc-internal-format msgid "" "indirection will not access object of non-trivially-copyable type %qT in for " "increment expression" msgstr "" -#: cp/cvt.c:1110 +#: cp/cvt.c:1115 #, gcc-internal-format msgid "conversion to void will not access object %qE of incomplete type %qT" msgstr "" -#: cp/cvt.c:1114 +#: cp/cvt.c:1119 #, gcc-internal-format msgid "" "variable %qE of incomplete type %qT will not be accessed in second operand " "of conditional expression" msgstr "" -#: cp/cvt.c:1119 +#: cp/cvt.c:1124 #, gcc-internal-format msgid "" "variable %qE of incomplete type %qT will not be accessed in third operand of " "conditional expression" msgstr "" -#: cp/cvt.c:1124 +#: cp/cvt.c:1129 #, gcc-internal-format msgid "" "variable %qE of incomplete type %qT will not be accessed in right operand of " "comma operator" msgstr "" -#: cp/cvt.c:1129 +#: cp/cvt.c:1134 #, gcc-internal-format msgid "" "variable %qE of incomplete type %qT will not be accessed in left operand of " "comma operator" msgstr "" -#: cp/cvt.c:1134 +#: cp/cvt.c:1139 #, gcc-internal-format msgid "variable %qE of incomplete type %qT will not be accessed in statement" msgstr "" -#: cp/cvt.c:1138 +#: cp/cvt.c:1143 #, gcc-internal-format msgid "" "variable %qE of incomplete type %qT will not be accessed in for increment " "expression" msgstr "" -#: cp/cvt.c:1187 +#: cp/cvt.c:1192 #, gcc-internal-format msgid "conversion to void cannot resolve address of overloaded function" msgstr "" -#: cp/cvt.c:1191 +#: cp/cvt.c:1196 #, gcc-internal-format msgid "" "second operand of conditional expression cannot resolve address of " "overloaded function" msgstr "" -#: cp/cvt.c:1195 +#: cp/cvt.c:1200 #, gcc-internal-format msgid "" "third operand of conditional expression cannot resolve address of overloaded " "function" msgstr "" -#: cp/cvt.c:1199 +#: cp/cvt.c:1204 #, gcc-internal-format msgid "" "right operand of comma operator cannot resolve address of overloaded function" msgstr "" -#: cp/cvt.c:1203 +#: cp/cvt.c:1208 #, gcc-internal-format msgid "" "left operand of comma operator cannot resolve address of overloaded function" msgstr "" -#: cp/cvt.c:1207 +#: cp/cvt.c:1212 #, gcc-internal-format msgid "statement cannot resolve address of overloaded function" msgstr "" -#: cp/cvt.c:1211 +#: cp/cvt.c:1216 #, gcc-internal-format msgid "for increment expression cannot resolve address of overloaded function" msgstr "" -#: cp/cvt.c:1227 +#: cp/cvt.c:1232 #, gcc-internal-format msgid "" "second operand of conditional expression is a reference, not call, to " "function %qE" msgstr "" -#: cp/cvt.c:1232 +#: cp/cvt.c:1237 #, gcc-internal-format msgid "" "third operand of conditional expression is a reference, not call, to " "function %qE" msgstr "" -#: cp/cvt.c:1237 +#: cp/cvt.c:1242 #, gcc-internal-format msgid "" "right operand of comma operator is a reference, not call, to function %qE" msgstr "" -#: cp/cvt.c:1242 +#: cp/cvt.c:1247 #, gcc-internal-format msgid "" "left operand of comma operator is a reference, not call, to function %qE" msgstr "" -#: cp/cvt.c:1247 +#: cp/cvt.c:1252 #, gcc-internal-format msgid "statement is a reference, not call, to function %qE" msgstr "" -#: cp/cvt.c:1252 +#: cp/cvt.c:1257 #, gcc-internal-format msgid "for increment expression is a reference, not call, to function %qE" msgstr "" -#: cp/cvt.c:1279 +#: cp/cvt.c:1284 #, gcc-internal-format msgid "second operand of conditional expression has no effect" msgstr "" -#: cp/cvt.c:1283 +#: cp/cvt.c:1288 #, gcc-internal-format msgid "third operand of conditional expression has no effect" msgstr "" -#: cp/cvt.c:1287 +#: cp/cvt.c:1292 #, gcc-internal-format msgid "right operand of comma operator has no effect" msgstr "" -#: cp/cvt.c:1291 +#: cp/cvt.c:1296 #, gcc-internal-format msgid "left operand of comma operator has no effect" msgstr "" -#: cp/cvt.c:1295 +#: cp/cvt.c:1300 #, gcc-internal-format msgid "statement has no effect" msgstr "" -#: cp/cvt.c:1299 +#: cp/cvt.c:1304 #, gcc-internal-format msgid "for increment expression has no effect" msgstr "" -#: cp/cvt.c:1448 +#: cp/cvt.c:1453 #, gcc-internal-format msgid "converting NULL to non-pointer type" msgstr "" -#: cp/cvt.c:1560 +#: cp/cvt.c:1565 #, gcc-internal-format msgid "ambiguous default type conversion from %qT" msgstr "" -#: cp/cvt.c:1562 +#: cp/cvt.c:1567 #, gcc-internal-format msgid " candidate conversions include %qD and %qD" msgstr "" @@ -26125,128 +26227,128 @@ msgstr "" msgid "variable %q+D set but not used" msgstr "" -#: cp/decl.c:1097 +#: cp/decl.c:1101 #, gcc-internal-format msgid "%qD was declared %<extern%> and later %<static%>" msgstr "" -#: cp/decl.c:1098 cp/decl.c:1677 objc/objc-act.c:4486 objc/objc-act.c:9559 +#: cp/decl.c:1102 cp/decl.c:1681 objc/objc-act.c:3393 objc/objc-act.c:6601 #, gcc-internal-format msgid "previous declaration of %q+D" msgstr "" -#: cp/decl.c:1130 +#: cp/decl.c:1134 #, gcc-internal-format msgid "declaration of %qF has a different exception specifier" msgstr "" -#: cp/decl.c:1132 +#: cp/decl.c:1136 #, gcc-internal-format msgid "from previous declaration %q+F" msgstr "" -#: cp/decl.c:1157 +#: cp/decl.c:1161 #, gcc-internal-format msgid "redeclaration %qD differs in %<constexpr%>" msgstr "" -#: cp/decl.c:1158 +#: cp/decl.c:1162 #, gcc-internal-format msgid "from previous declaration %q+D" msgstr "" -#: cp/decl.c:1214 +#: cp/decl.c:1218 #, gcc-internal-format msgid "function %q+D redeclared as inline" msgstr "" -#: cp/decl.c:1216 +#: cp/decl.c:1220 #, gcc-internal-format msgid "previous declaration of %q+D with attribute noinline" msgstr "" -#: cp/decl.c:1223 +#: cp/decl.c:1227 #, gcc-internal-format msgid "function %q+D redeclared with attribute noinline" msgstr "" -#: cp/decl.c:1225 +#: cp/decl.c:1229 #, gcc-internal-format msgid "previous declaration of %q+D was inline" msgstr "" -#: cp/decl.c:1249 cp/decl.c:1323 +#: cp/decl.c:1253 cp/decl.c:1327 #, gcc-internal-format msgid "shadowing built-in function %q#D" msgstr "" -#: cp/decl.c:1250 cp/decl.c:1324 +#: cp/decl.c:1254 cp/decl.c:1328 #, gcc-internal-format msgid "shadowing library function %q#D" msgstr "" -#: cp/decl.c:1257 +#: cp/decl.c:1261 #, gcc-internal-format msgid "library function %q#D redeclared as non-function %q#D" msgstr "" -#: cp/decl.c:1262 +#: cp/decl.c:1266 #, gcc-internal-format msgid "conflicts with built-in declaration %q#D" msgstr "" -#: cp/decl.c:1316 cp/decl.c:1443 cp/decl.c:1459 +#: cp/decl.c:1320 cp/decl.c:1447 cp/decl.c:1463 #, gcc-internal-format msgid "new declaration %q#D" msgstr "" -#: cp/decl.c:1317 +#: cp/decl.c:1321 #, gcc-internal-format msgid "ambiguates built-in declaration %q#D" msgstr "" -#: cp/decl.c:1407 +#: cp/decl.c:1411 #, gcc-internal-format msgid "%q#D redeclared as different kind of symbol" msgstr "" -#: cp/decl.c:1410 +#: cp/decl.c:1414 #, gcc-internal-format msgid "previous declaration of %q+#D" msgstr "" -#: cp/decl.c:1429 +#: cp/decl.c:1433 #, gcc-internal-format msgid "declaration of template %q#D" msgstr "" -#: cp/decl.c:1430 cp/name-lookup.c:525 cp/name-lookup.c:811 +#: cp/decl.c:1434 cp/name-lookup.c:525 cp/name-lookup.c:811 #: cp/name-lookup.c:822 #, gcc-internal-format msgid "conflicts with previous declaration %q+#D" msgstr "" -#: cp/decl.c:1444 cp/decl.c:1460 +#: cp/decl.c:1448 cp/decl.c:1464 #, gcc-internal-format msgid "ambiguates old declaration %q+#D" msgstr "" -#: cp/decl.c:1452 +#: cp/decl.c:1456 #, gcc-internal-format msgid "declaration of C function %q#D conflicts with" msgstr "" -#: cp/decl.c:1454 +#: cp/decl.c:1458 #, gcc-internal-format msgid "previous declaration %q+#D here" msgstr "" -#: cp/decl.c:1468 +#: cp/decl.c:1472 #, gcc-internal-format msgid "conflicting declaration %q#D" msgstr "" -#: cp/decl.c:1469 +#: cp/decl.c:1473 #, gcc-internal-format msgid "%q+D has a previous declaration as %q#D" msgstr "" @@ -26258,63 +26360,63 @@ msgstr "" #. A namespace-name defined at global scope shall not be #. declared as the name of any other entity in any global scope #. of the program. -#: cp/decl.c:1521 +#: cp/decl.c:1525 #, gcc-internal-format msgid "declaration of namespace %qD conflicts with" msgstr "" -#: cp/decl.c:1522 +#: cp/decl.c:1526 #, gcc-internal-format msgid "previous declaration of namespace %q+D here" msgstr "" -#: cp/decl.c:1533 +#: cp/decl.c:1537 #, gcc-internal-format msgid "%q+#D previously defined here" msgstr "" #. Prototype decl follows defn w/o prototype. -#: cp/decl.c:1543 +#: cp/decl.c:1547 #, gcc-internal-format msgid "prototype for %q+#D" msgstr "" -#: cp/decl.c:1545 +#: cp/decl.c:1549 #, gcc-internal-format msgid "follows non-prototype definition here" msgstr "" -#: cp/decl.c:1585 +#: cp/decl.c:1589 #, gcc-internal-format msgid "previous declaration of %q+#D with %qL linkage" msgstr "" -#: cp/decl.c:1587 +#: cp/decl.c:1591 #, gcc-internal-format msgid "conflicts with new declaration with %qL linkage" msgstr "" -#: cp/decl.c:1610 cp/decl.c:1616 +#: cp/decl.c:1614 cp/decl.c:1620 #, gcc-internal-format msgid "default argument given for parameter %d of %q#D" msgstr "" -#: cp/decl.c:1612 cp/decl.c:1618 +#: cp/decl.c:1616 cp/decl.c:1622 #, gcc-internal-format msgid "after previous specification in %q+#D" msgstr "" -#: cp/decl.c:1676 +#: cp/decl.c:1680 #, gcc-internal-format msgid "redundant redeclaration of %qD in same scope" msgstr "" -#: cp/decl.c:1682 +#: cp/decl.c:1686 #, gcc-internal-format msgid "deleted definition of %qD" msgstr "" -#: cp/decl.c:1683 +#: cp/decl.c:1687 #, gcc-internal-format msgid "after previous declaration %q+D" msgstr "" @@ -26327,43 +26429,43 @@ msgstr "" #. that specialization that would cause an implicit #. instantiation to take place, in every translation unit in #. which such a use occurs. -#: cp/decl.c:2038 +#: cp/decl.c:2042 #, gcc-internal-format msgid "explicit specialization of %qD after first use" msgstr "" -#: cp/decl.c:2135 +#: cp/decl.c:2139 #, gcc-internal-format msgid "%q+D: visibility attribute ignored because it" msgstr "" -#: cp/decl.c:2137 +#: cp/decl.c:2141 #, gcc-internal-format msgid "conflicts with previous declaration here" msgstr "" #. Reject two definitions. -#: cp/decl.c:2299 cp/decl.c:2328 cp/decl.c:2357 cp/decl.c:2374 cp/decl.c:2446 +#: cp/decl.c:2303 cp/decl.c:2332 cp/decl.c:2361 cp/decl.c:2378 cp/decl.c:2450 #, gcc-internal-format msgid "redefinition of %q#D" msgstr "" -#: cp/decl.c:2315 +#: cp/decl.c:2319 #, gcc-internal-format msgid "%qD conflicts with used function" msgstr "" -#: cp/decl.c:2325 +#: cp/decl.c:2329 #, gcc-internal-format msgid "%q#D not declared in class" msgstr "" -#: cp/decl.c:2339 cp/decl.c:2384 +#: cp/decl.c:2343 cp/decl.c:2388 #, gcc-internal-format msgid "%q+D redeclared inline with %<gnu_inline%> attribute" msgstr "" -#: cp/decl.c:2342 cp/decl.c:2387 +#: cp/decl.c:2346 cp/decl.c:2391 #, gcc-internal-format msgid "%q+D redeclared inline without %<gnu_inline%> attribute" msgstr "" @@ -26371,334 +26473,334 @@ msgstr "" #. is_primary= #. is_partial= #. is_friend_decl= -#: cp/decl.c:2403 +#: cp/decl.c:2407 #, gcc-internal-format msgid "redeclaration of friend %q#D may not have default template arguments" msgstr "" -#: cp/decl.c:2417 +#: cp/decl.c:2421 #, gcc-internal-format msgid "thread-local declaration of %q#D follows non-thread-local declaration" msgstr "" -#: cp/decl.c:2420 +#: cp/decl.c:2424 #, gcc-internal-format msgid "non-thread-local declaration of %q#D follows thread-local declaration" msgstr "" -#: cp/decl.c:2435 cp/decl.c:2454 +#: cp/decl.c:2439 cp/decl.c:2458 #, gcc-internal-format msgid "redeclaration of %q#D" msgstr "" -#: cp/decl.c:2598 +#: cp/decl.c:2602 #, gcc-internal-format msgid "jump to label %qD" msgstr "" -#: cp/decl.c:2600 +#: cp/decl.c:2604 #, gcc-internal-format msgid "jump to case label" msgstr "" -#: cp/decl.c:2602 cp/decl.c:2743 cp/decl.c:2783 +#: cp/decl.c:2606 cp/decl.c:2747 cp/decl.c:2787 #, gcc-internal-format msgid " from here" msgstr "" -#: cp/decl.c:2621 cp/decl.c:2786 +#: cp/decl.c:2625 cp/decl.c:2790 #, gcc-internal-format msgid " exits OpenMP structured block" msgstr "" -#: cp/decl.c:2642 +#: cp/decl.c:2646 #, gcc-internal-format msgid " crosses initialization of %q+#D" msgstr "" -#: cp/decl.c:2644 cp/decl.c:2760 +#: cp/decl.c:2648 cp/decl.c:2764 #, gcc-internal-format msgid " enters scope of %q+#D which has non-trivial destructor" msgstr "" -#: cp/decl.c:2658 cp/decl.c:2765 +#: cp/decl.c:2662 cp/decl.c:2769 #, gcc-internal-format msgid " enters try block" msgstr "" #. Can't skip init of __exception_info. -#: cp/decl.c:2660 cp/decl.c:2754 cp/decl.c:2767 +#: cp/decl.c:2664 cp/decl.c:2758 cp/decl.c:2771 #, gcc-internal-format msgid " enters catch block" msgstr "" -#: cp/decl.c:2670 cp/decl.c:2770 +#: cp/decl.c:2674 cp/decl.c:2774 #, gcc-internal-format msgid " enters OpenMP structured block" msgstr "" -#: cp/decl.c:2742 cp/decl.c:2782 +#: cp/decl.c:2746 cp/decl.c:2786 #, gcc-internal-format msgid "jump to label %q+D" msgstr "" -#: cp/decl.c:2758 +#: cp/decl.c:2762 #, gcc-internal-format msgid " skips initialization of %q+#D" msgstr "" -#: cp/decl.c:2835 +#: cp/decl.c:2839 #, gcc-internal-format msgid "label named wchar_t" msgstr "" -#: cp/decl.c:3108 +#: cp/decl.c:3112 #, gcc-internal-format msgid "%qD is not a type" msgstr "" -#: cp/decl.c:3114 cp/parser.c:4653 +#: cp/decl.c:3118 cp/parser.c:4661 #, gcc-internal-format msgid "%qD used without template parameters" msgstr "" -#: cp/decl.c:3123 +#: cp/decl.c:3127 #, gcc-internal-format msgid "%q#T is not a class" msgstr "" -#: cp/decl.c:3147 cp/decl.c:3237 +#: cp/decl.c:3151 cp/decl.c:3241 #, gcc-internal-format msgid "no class template named %q#T in %q#T" msgstr "" -#: cp/decl.c:3160 +#: cp/decl.c:3164 #, gcc-internal-format msgid "lookup of %qT in %qT is ambiguous" msgstr "" -#: cp/decl.c:3169 +#: cp/decl.c:3173 #, gcc-internal-format msgid "%<typename %T::%D%> names %q#T, which is not a class template" msgstr "" -#: cp/decl.c:3176 +#: cp/decl.c:3180 #, gcc-internal-format msgid "%<typename %T::%D%> names %q#T, which is not a type" msgstr "" -#: cp/decl.c:3246 +#: cp/decl.c:3250 #, gcc-internal-format msgid "template parameters do not match template" msgstr "" -#: cp/decl.c:3247 cp/friend.c:318 cp/friend.c:326 +#: cp/decl.c:3251 cp/friend.c:318 cp/friend.c:326 #, gcc-internal-format msgid "%q+D declared here" msgstr "" -#: cp/decl.c:3950 +#: cp/decl.c:3957 #, gcc-internal-format msgid "an anonymous struct cannot have function members" msgstr "" -#: cp/decl.c:3953 +#: cp/decl.c:3960 #, gcc-internal-format msgid "an anonymous union cannot have function members" msgstr "" -#: cp/decl.c:3971 +#: cp/decl.c:3978 #, gcc-internal-format msgid "member %q+#D with constructor not allowed in anonymous aggregate" msgstr "" -#: cp/decl.c:3974 +#: cp/decl.c:3981 #, gcc-internal-format msgid "member %q+#D with destructor not allowed in anonymous aggregate" msgstr "" -#: cp/decl.c:3977 +#: cp/decl.c:3984 #, gcc-internal-format msgid "" "member %q+#D with copy assignment operator not allowed in anonymous aggregate" msgstr "" -#: cp/decl.c:4002 +#: cp/decl.c:4009 #, gcc-internal-format msgid "multiple types in one declaration" msgstr "" -#: cp/decl.c:4006 +#: cp/decl.c:4013 #, gcc-internal-format msgid "redeclaration of C++ built-in type %qT" msgstr "" -#: cp/decl.c:4043 +#: cp/decl.c:4050 #, gcc-internal-format msgid "missing type-name in typedef-declaration" msgstr "" -#: cp/decl.c:4050 +#: cp/decl.c:4057 #, gcc-internal-format msgid "ISO C++ prohibits anonymous structs" msgstr "" -#: cp/decl.c:4057 +#: cp/decl.c:4064 #, gcc-internal-format msgid "%qs can only be specified for functions" msgstr "" -#: cp/decl.c:4063 +#: cp/decl.c:4070 #, gcc-internal-format msgid "%<friend%> can only be specified inside a class" msgstr "" -#: cp/decl.c:4065 +#: cp/decl.c:4072 #, gcc-internal-format msgid "%<explicit%> can only be specified for constructors" msgstr "" -#: cp/decl.c:4067 +#: cp/decl.c:4074 #, gcc-internal-format msgid "a storage class can only be specified for objects and functions" msgstr "" -#: cp/decl.c:4073 +#: cp/decl.c:4080 #, gcc-internal-format msgid "qualifiers can only be specified for objects and functions" msgstr "" -#: cp/decl.c:4076 +#: cp/decl.c:4083 #, gcc-internal-format msgid "%<typedef%> was ignored in this declaration" msgstr "" -#: cp/decl.c:4078 +#: cp/decl.c:4085 #, gcc-internal-format msgid "%<constexpr%> cannot be used for type declarations" msgstr "" -#: cp/decl.c:4107 +#: cp/decl.c:4114 #, gcc-internal-format msgid "attribute ignored in declaration of %q+#T" msgstr "" -#: cp/decl.c:4108 +#: cp/decl.c:4115 #, gcc-internal-format msgid "attribute for %q+#T must follow the %qs keyword" msgstr "" -#: cp/decl.c:4153 +#: cp/decl.c:4160 #, gcc-internal-format msgid "ignoring attributes applied to class type %qT outside of definition" msgstr "" #. A template type parameter or other dependent type. -#: cp/decl.c:4157 +#: cp/decl.c:4164 #, gcc-internal-format msgid "" "ignoring attributes applied to dependent type %qT without an associated " "declaration" msgstr "" -#: cp/decl.c:4224 cp/decl2.c:813 +#: cp/decl.c:4231 cp/decl2.c:813 #, gcc-internal-format msgid "typedef %qD is initialized (use decltype instead)" msgstr "" -#: cp/decl.c:4242 +#: cp/decl.c:4249 #, gcc-internal-format msgid "declaration of %q#D has %<extern%> and is initialized" msgstr "" -#: cp/decl.c:4271 +#: cp/decl.c:4278 #, gcc-internal-format msgid "definition of %q#D is marked %<dllimport%>" msgstr "" -#: cp/decl.c:4290 +#: cp/decl.c:4297 #, gcc-internal-format msgid "%q#D is not a static member of %q#T" msgstr "" -#: cp/decl.c:4296 +#: cp/decl.c:4303 #, gcc-internal-format msgid "ISO C++ does not permit %<%T::%D%> to be defined as %<%T::%D%>" msgstr "" -#: cp/decl.c:4305 +#: cp/decl.c:4312 #, gcc-internal-format msgid "" "template header not allowed in member definition of explicitly specialized " "class" msgstr "" -#: cp/decl.c:4313 +#: cp/decl.c:4320 #, gcc-internal-format msgid "duplicate initialization of %qD" msgstr "" -#: cp/decl.c:4318 +#: cp/decl.c:4325 #, gcc-internal-format msgid "%qD declared %<constexpr%> outside its class" msgstr "" -#: cp/decl.c:4357 +#: cp/decl.c:4364 #, gcc-internal-format msgid "declaration of %q#D outside of class is not definition" msgstr "" -#: cp/decl.c:4452 +#: cp/decl.c:4459 #, gcc-internal-format msgid "variable %q#D has initializer but incomplete type" msgstr "" -#: cp/decl.c:4458 cp/decl.c:5214 +#: cp/decl.c:4465 cp/decl.c:5221 #, gcc-internal-format msgid "elements of array %q#D have incomplete type" msgstr "" -#: cp/decl.c:4465 cp/decl.c:5767 +#: cp/decl.c:4472 cp/decl.c:5774 #, gcc-internal-format msgid "declaration of %q#D has no initializer" msgstr "" -#: cp/decl.c:4467 +#: cp/decl.c:4474 #, gcc-internal-format msgid "aggregate %q#D has incomplete type and cannot be defined" msgstr "" -#: cp/decl.c:4503 +#: cp/decl.c:4510 #, gcc-internal-format msgid "%qD declared as reference but not initialized" msgstr "" -#: cp/decl.c:4529 +#: cp/decl.c:4536 #, gcc-internal-format msgid "cannot initialize %qT from %qT" msgstr "" -#: cp/decl.c:4590 +#: cp/decl.c:4597 #, gcc-internal-format msgid "name used in a GNU-style designated initializer for an array" msgstr "" -#: cp/decl.c:4595 +#: cp/decl.c:4602 #, gcc-internal-format msgid "name %qD used in a GNU-style designated initializer for an array" msgstr "" -#: cp/decl.c:4643 +#: cp/decl.c:4650 #, gcc-internal-format msgid "initializer fails to determine size of %qD" msgstr "" -#: cp/decl.c:4650 +#: cp/decl.c:4657 #, gcc-internal-format msgid "array size missing in %qD" msgstr "" -#: cp/decl.c:4662 +#: cp/decl.c:4669 #, gcc-internal-format msgid "zero-size array %qD" msgstr "" @@ -26706,338 +26808,338 @@ msgstr "" #. An automatic variable with an incomplete type: that is an error. #. Don't talk about array types here, since we took care of that #. message in grokdeclarator. -#: cp/decl.c:4705 +#: cp/decl.c:4712 #, gcc-internal-format msgid "storage size of %qD isn%'t known" msgstr "" -#: cp/decl.c:4728 +#: cp/decl.c:4735 #, gcc-internal-format msgid "storage size of %qD isn%'t constant" msgstr "" -#: cp/decl.c:4774 +#: cp/decl.c:4781 #, gcc-internal-format msgid "" "sorry: semantics of inline function static data %q+#D are wrong (you%'ll " "wind up with multiple copies)" msgstr "" -#: cp/decl.c:4778 +#: cp/decl.c:4785 #, gcc-internal-format msgid " you can work around this by removing the initializer" msgstr "" -#: cp/decl.c:4807 +#: cp/decl.c:4814 #, gcc-internal-format msgid "uninitialized const %qD" msgstr "" -#: cp/decl.c:4815 +#: cp/decl.c:4822 #, gcc-internal-format msgid "%q#T has no user-provided default constructor" msgstr "" -#: cp/decl.c:4819 +#: cp/decl.c:4826 #, gcc-internal-format msgid "" "constructor is not user-provided because it is explicitly defaulted in the " "class body" msgstr "" -#: cp/decl.c:4932 +#: cp/decl.c:4939 #, gcc-internal-format msgid "invalid type %qT as initializer for a vector of type %qT" msgstr "" -#: cp/decl.c:4971 +#: cp/decl.c:4978 #, gcc-internal-format msgid "initializer for %qT must be brace-enclosed" msgstr "" -#: cp/decl.c:4989 +#: cp/decl.c:4996 #, gcc-internal-format msgid "%qT has no non-static data member named %qD" msgstr "" -#: cp/decl.c:5048 +#: cp/decl.c:5055 #, gcc-internal-format msgid "braces around scalar initializer for type %qT" msgstr "" -#: cp/decl.c:5139 +#: cp/decl.c:5146 #, gcc-internal-format msgid "missing braces around initializer for %qT" msgstr "" -#: cp/decl.c:5196 cp/typeck2.c:983 cp/typeck2.c:1162 cp/typeck2.c:1185 -#: cp/typeck2.c:1228 +#: cp/decl.c:5203 cp/typeck2.c:986 cp/typeck2.c:1165 cp/typeck2.c:1188 +#: cp/typeck2.c:1231 #, gcc-internal-format msgid "too many initializers for %qT" msgstr "" -#: cp/decl.c:5216 +#: cp/decl.c:5223 #, gcc-internal-format msgid "elements of array %q#T have incomplete type" msgstr "" -#: cp/decl.c:5225 +#: cp/decl.c:5232 #, gcc-internal-format msgid "variable-sized object %qD may not be initialized" msgstr "" -#: cp/decl.c:5227 +#: cp/decl.c:5234 #, gcc-internal-format msgid "variable-sized compound literal" msgstr "" -#: cp/decl.c:5283 +#: cp/decl.c:5290 #, gcc-internal-format msgid "%qD has incomplete type" msgstr "" -#: cp/decl.c:5303 +#: cp/decl.c:5310 #, gcc-internal-format msgid "scalar object %qD requires one element in initializer" msgstr "" -#: cp/decl.c:5339 +#: cp/decl.c:5346 #, gcc-internal-format msgid "in C++98 %qD must be initialized by constructor, not by %<{...}%>" msgstr "" -#: cp/decl.c:5407 +#: cp/decl.c:5414 #, gcc-internal-format msgid "array %qD initialized by parenthesized string literal %qE" msgstr "" -#: cp/decl.c:5434 +#: cp/decl.c:5441 #, gcc-internal-format msgid "initializer invalid for static member with constructor" msgstr "" -#: cp/decl.c:5436 +#: cp/decl.c:5443 #, gcc-internal-format msgid "non-constant in-class initialization invalid for static member %qD" msgstr "" -#: cp/decl.c:5440 +#: cp/decl.c:5447 #, gcc-internal-format msgid "(an out of class initialization is required)" msgstr "" -#: cp/decl.c:5733 +#: cp/decl.c:5740 #, gcc-internal-format msgid "assignment (not initialization) in declaration" msgstr "" -#: cp/decl.c:5894 +#: cp/decl.c:5899 #, gcc-internal-format msgid "shadowing previous type declaration of %q#D" msgstr "" -#: cp/decl.c:5926 +#: cp/decl.c:5931 #, gcc-internal-format msgid "%qD cannot be thread-local because it has non-trivial type %qT" msgstr "" -#: cp/decl.c:5968 +#: cp/decl.c:5973 #, gcc-internal-format msgid "Java object %qD not allocated with %<new%>" msgstr "" -#: cp/decl.c:5975 +#: cp/decl.c:5980 #, gcc-internal-format msgid "%qD is thread-local and so cannot be dynamically initialized" msgstr "" -#: cp/decl.c:5993 +#: cp/decl.c:5998 #, gcc-internal-format msgid "" "%qD cannot be initialized by a non-constant expression when being declared" msgstr "" -#: cp/decl.c:6042 +#: cp/decl.c:6047 #, gcc-internal-format msgid "non-static data member %qD has Java class type" msgstr "" -#: cp/decl.c:6108 +#: cp/decl.c:6113 #, gcc-internal-format msgid "function %q#D is initialized like a variable" msgstr "" -#: cp/decl.c:6687 +#: cp/decl.c:6692 #, gcc-internal-format msgid "destructor for alien class %qT cannot be a member" msgstr "" -#: cp/decl.c:6689 +#: cp/decl.c:6694 #, gcc-internal-format msgid "constructor for alien class %qT cannot be a member" msgstr "" -#: cp/decl.c:6713 +#: cp/decl.c:6718 #, gcc-internal-format msgid "%qD declared as a %<virtual%> variable" msgstr "" -#: cp/decl.c:6715 +#: cp/decl.c:6720 #, gcc-internal-format msgid "%qD declared as an %<inline%> variable" msgstr "" -#: cp/decl.c:6717 +#: cp/decl.c:6722 #, gcc-internal-format msgid "" "%<const%> and %<volatile%> function specifiers on %qD invalid in variable " "declaration" msgstr "" -#: cp/decl.c:6722 +#: cp/decl.c:6727 #, gcc-internal-format msgid "%qD declared as a %<virtual%> parameter" msgstr "" -#: cp/decl.c:6724 +#: cp/decl.c:6729 #, gcc-internal-format msgid "%qD declared as an %<inline%> parameter" msgstr "" -#: cp/decl.c:6726 +#: cp/decl.c:6731 #, gcc-internal-format msgid "" "%<const%> and %<volatile%> function specifiers on %qD invalid in parameter " "declaration" msgstr "" -#: cp/decl.c:6731 +#: cp/decl.c:6736 #, gcc-internal-format msgid "%qD declared as a %<virtual%> type" msgstr "" -#: cp/decl.c:6733 +#: cp/decl.c:6738 #, gcc-internal-format msgid "%qD declared as an %<inline%> type" msgstr "" -#: cp/decl.c:6735 +#: cp/decl.c:6740 #, gcc-internal-format msgid "" "%<const%> and %<volatile%> function specifiers on %qD invalid in type " "declaration" msgstr "" -#: cp/decl.c:6740 +#: cp/decl.c:6745 #, gcc-internal-format msgid "%qD declared as a %<virtual%> field" msgstr "" -#: cp/decl.c:6742 +#: cp/decl.c:6747 #, gcc-internal-format msgid "%qD declared as an %<inline%> field" msgstr "" -#: cp/decl.c:6744 +#: cp/decl.c:6749 #, gcc-internal-format msgid "" "%<const%> and %<volatile%> function specifiers on %qD invalid in field " "declaration" msgstr "" -#: cp/decl.c:6751 +#: cp/decl.c:6756 #, gcc-internal-format msgid "%q+D declared as a friend" msgstr "" -#: cp/decl.c:6757 +#: cp/decl.c:6762 #, gcc-internal-format msgid "%q+D declared with an exception specification" msgstr "" -#: cp/decl.c:6791 +#: cp/decl.c:6796 #, gcc-internal-format msgid "definition of %qD is not in namespace enclosing %qT" msgstr "" -#: cp/decl.c:6912 +#: cp/decl.c:6917 #, gcc-internal-format msgid "defining explicit specialization %qD in friend declaration" msgstr "" #. Something like `template <class T> friend void f<T>()'. -#: cp/decl.c:6922 +#: cp/decl.c:6927 #, gcc-internal-format msgid "invalid use of template-id %qD in declaration of primary template" msgstr "" -#: cp/decl.c:6952 +#: cp/decl.c:6957 #, gcc-internal-format msgid "" "default arguments are not allowed in declaration of friend template " "specialization %qD" msgstr "" -#: cp/decl.c:6960 +#: cp/decl.c:6965 #, gcc-internal-format msgid "" "%<inline%> is not allowed in declaration of friend template specialization " "%qD" msgstr "" -#: cp/decl.c:7002 +#: cp/decl.c:7007 #, gcc-internal-format msgid "cannot declare %<::main%> to be a template" msgstr "" -#: cp/decl.c:7004 +#: cp/decl.c:7009 #, gcc-internal-format msgid "cannot declare %<::main%> to be inline" msgstr "" -#: cp/decl.c:7006 +#: cp/decl.c:7011 #, gcc-internal-format msgid "cannot declare %<::main%> to be static" msgstr "" -#: cp/decl.c:7034 +#: cp/decl.c:7039 #, gcc-internal-format msgid "" "anonymous type with no linkage used to declare function %q#D with linkage" msgstr "" -#: cp/decl.c:7038 cp/decl.c:7324 cp/decl2.c:3593 +#: cp/decl.c:7043 cp/decl.c:7329 cp/decl2.c:3598 #, gcc-internal-format msgid "" "%q+#D does not refer to the unqualified type, so it is not used for linkage" msgstr "" -#: cp/decl.c:7044 +#: cp/decl.c:7049 #, gcc-internal-format msgid "type %qT with no linkage used to declare function %q#D with linkage" msgstr "" -#: cp/decl.c:7066 +#: cp/decl.c:7071 #, gcc-internal-format msgid "static member function %qD cannot have cv-qualifier" msgstr "" -#: cp/decl.c:7067 +#: cp/decl.c:7072 #, gcc-internal-format msgid "non-member function %qD cannot have cv-qualifier" msgstr "" -#: cp/decl.c:7112 +#: cp/decl.c:7117 #, gcc-internal-format msgid "%<::main%> must return %<int%>" msgstr "" -#: cp/decl.c:7152 +#: cp/decl.c:7157 #, gcc-internal-format msgid "definition of implicitly-declared %qD" msgstr "" -#: cp/decl.c:7169 cp/decl2.c:734 +#: cp/decl.c:7174 cp/decl2.c:734 #, gcc-internal-format msgid "no %q#D member function declared in class %qT" msgstr "" @@ -27046,862 +27148,867 @@ msgstr "" #. no linkage can only be used to declare extern "C" #. entities. Since it's not always an error in the #. ISO C++ 90 Standard, we only issue a warning. -#: cp/decl.c:7321 +#: cp/decl.c:7326 #, gcc-internal-format msgid "" "anonymous type with no linkage used to declare variable %q#D with linkage" msgstr "" -#: cp/decl.c:7330 +#: cp/decl.c:7335 #, gcc-internal-format msgid "type %qT with no linkage used to declare variable %q#D with linkage" msgstr "" -#: cp/decl.c:7450 +#: cp/decl.c:7455 #, gcc-internal-format msgid "" "%<constexpr%> needed for in-class initialization of static data member %q#D " "of non-integral type" msgstr "" -#: cp/decl.c:7453 +#: cp/decl.c:7458 #, gcc-internal-format msgid "in-class initialization of static data member %q#D of non-literal type" msgstr "" -#: cp/decl.c:7466 +#: cp/decl.c:7471 #, gcc-internal-format msgid "" "invalid in-class initialization of static data member of non-integral type " "%qT" msgstr "" -#: cp/decl.c:7472 +#: cp/decl.c:7477 #, gcc-internal-format msgid "ISO C++ forbids in-class initialization of non-const static member %qD" msgstr "" -#: cp/decl.c:7476 +#: cp/decl.c:7481 #, gcc-internal-format msgid "" "ISO C++ forbids initialization of member constant %qD of non-integral type " "%qT" msgstr "" -#: cp/decl.c:7532 +#: cp/decl.c:7537 #, gcc-internal-format msgid "size of array %qD has non-integral type %qT" msgstr "" -#: cp/decl.c:7534 +#: cp/decl.c:7539 #, gcc-internal-format msgid "size of array has non-integral type %qT" msgstr "" -#: cp/decl.c:7583 +#: cp/decl.c:7588 #, gcc-internal-format msgid "size of array %qD is negative" msgstr "" -#: cp/decl.c:7585 +#: cp/decl.c:7590 #, gcc-internal-format msgid "size of array is negative" msgstr "" -#: cp/decl.c:7599 +#: cp/decl.c:7604 #, gcc-internal-format msgid "ISO C++ forbids zero-size array %qD" msgstr "" -#: cp/decl.c:7601 +#: cp/decl.c:7606 #, gcc-internal-format msgid "ISO C++ forbids zero-size array" msgstr "" -#: cp/decl.c:7613 +#: cp/decl.c:7618 #, gcc-internal-format msgid "size of array %qD is not an integral constant-expression" msgstr "" -#: cp/decl.c:7616 +#: cp/decl.c:7621 #, gcc-internal-format msgid "size of array is not an integral constant-expression" msgstr "" -#: cp/decl.c:7622 +#: cp/decl.c:7627 #, gcc-internal-format msgid "ISO C++ forbids variable length array %qD" msgstr "" -#: cp/decl.c:7624 +#: cp/decl.c:7629 #, gcc-internal-format msgid "ISO C++ forbids variable length array" msgstr "" -#: cp/decl.c:7630 +#: cp/decl.c:7635 #, gcc-internal-format msgid "variable length array %qD is used" msgstr "" -#: cp/decl.c:7668 +#: cp/decl.c:7673 #, gcc-internal-format msgid "overflow in array dimension" msgstr "" -#: cp/decl.c:7730 +#: cp/decl.c:7735 #, gcc-internal-format msgid "declaration of %qD as array of void" msgstr "" -#: cp/decl.c:7732 +#: cp/decl.c:7737 #, gcc-internal-format msgid "creating array of void" msgstr "" -#: cp/decl.c:7737 +#: cp/decl.c:7742 #, gcc-internal-format msgid "declaration of %qD as array of functions" msgstr "" -#: cp/decl.c:7739 +#: cp/decl.c:7744 #, gcc-internal-format msgid "creating array of functions" msgstr "" -#: cp/decl.c:7744 +#: cp/decl.c:7749 #, gcc-internal-format msgid "declaration of %qD as array of references" msgstr "" -#: cp/decl.c:7746 +#: cp/decl.c:7751 #, gcc-internal-format msgid "creating array of references" msgstr "" -#: cp/decl.c:7751 +#: cp/decl.c:7756 #, gcc-internal-format msgid "declaration of %qD as array of function members" msgstr "" -#: cp/decl.c:7753 +#: cp/decl.c:7758 #, gcc-internal-format msgid "creating array of function members" msgstr "" -#: cp/decl.c:7767 +#: cp/decl.c:7772 #, gcc-internal-format msgid "" "declaration of %qD as multidimensional array must have bounds for all " "dimensions except the first" msgstr "" -#: cp/decl.c:7771 +#: cp/decl.c:7776 #, gcc-internal-format msgid "" "multidimensional array must have bounds for all dimensions except the first" msgstr "" -#: cp/decl.c:7806 +#: cp/decl.c:7811 #, gcc-internal-format msgid "return type specification for constructor invalid" msgstr "" -#: cp/decl.c:7816 +#: cp/decl.c:7821 #, gcc-internal-format msgid "return type specification for destructor invalid" msgstr "" -#: cp/decl.c:7829 +#: cp/decl.c:7834 #, gcc-internal-format msgid "return type specified for %<operator %T%>" msgstr "" -#: cp/decl.c:7851 +#: cp/decl.c:7856 #, gcc-internal-format msgid "unnamed variable or field declared void" msgstr "" -#: cp/decl.c:7858 +#: cp/decl.c:7863 #, gcc-internal-format msgid "variable or field declared void" msgstr "" -#: cp/decl.c:8039 +#: cp/decl.c:8044 #, gcc-internal-format msgid "invalid use of qualified-name %<::%D%>" msgstr "" -#: cp/decl.c:8042 +#: cp/decl.c:8047 #, gcc-internal-format msgid "invalid use of qualified-name %<%T::%D%>" msgstr "" -#: cp/decl.c:8045 +#: cp/decl.c:8050 #, gcc-internal-format msgid "invalid use of qualified-name %<%D::%D%>" msgstr "" -#: cp/decl.c:8057 +#: cp/decl.c:8062 #, gcc-internal-format msgid "type %qT is not derived from type %qT" msgstr "" -#: cp/decl.c:8073 cp/decl.c:8165 cp/decl.c:9461 +#: cp/decl.c:8078 cp/decl.c:8170 cp/decl.c:9472 #, gcc-internal-format msgid "declaration of %qD as non-function" msgstr "" -#: cp/decl.c:8079 +#: cp/decl.c:8084 #, gcc-internal-format msgid "declaration of %qD as non-member" msgstr "" -#: cp/decl.c:8110 +#: cp/decl.c:8115 #, gcc-internal-format msgid "declarator-id missing; using reserved word %qD" msgstr "" -#: cp/decl.c:8157 +#: cp/decl.c:8162 #, gcc-internal-format msgid "function definition does not declare parameters" msgstr "" -#: cp/decl.c:8197 +#: cp/decl.c:8202 #, gcc-internal-format msgid "%<constexpr%> cannot appear in a typedef declaration" msgstr "" -#: cp/decl.c:8205 +#: cp/decl.c:8210 #, gcc-internal-format msgid "two or more data types in declaration of %qs" msgstr "" -#: cp/decl.c:8211 +#: cp/decl.c:8216 #, gcc-internal-format msgid "conflicting specifiers in declaration of %qs" msgstr "" -#: cp/decl.c:8283 cp/decl.c:8286 cp/decl.c:8289 +#: cp/decl.c:8288 cp/decl.c:8291 cp/decl.c:8294 #, gcc-internal-format msgid "ISO C++ forbids declaration of %qs with no type" msgstr "" -#: cp/decl.c:8314 cp/decl.c:8336 +#: cp/decl.c:8319 cp/decl.c:8341 #, gcc-internal-format msgid "%<signed%> or %<unsigned%> invalid for %qs" msgstr "" -#: cp/decl.c:8316 +#: cp/decl.c:8321 #, gcc-internal-format msgid "%<signed%> and %<unsigned%> specified together for %qs" msgstr "" -#: cp/decl.c:8318 +#: cp/decl.c:8323 #, gcc-internal-format msgid "%<long long%> invalid for %qs" msgstr "" -#: cp/decl.c:8320 +#: cp/decl.c:8325 #, gcc-internal-format msgid "%<__int128%> invalid for %qs" msgstr "" -#: cp/decl.c:8322 +#: cp/decl.c:8327 #, gcc-internal-format msgid "%<long%> invalid for %qs" msgstr "" -#: cp/decl.c:8324 +#: cp/decl.c:8329 #, gcc-internal-format msgid "%<short%> invalid for %qs" msgstr "" -#: cp/decl.c:8326 +#: cp/decl.c:8331 #, gcc-internal-format msgid "%<long%> or %<short%> invalid for %qs" msgstr "" -#: cp/decl.c:8328 +#: cp/decl.c:8333 #, gcc-internal-format msgid "%<long%>, %<int%>, %<short%>, or %<char%> invalid for %qs" msgstr "" -#: cp/decl.c:8330 +#: cp/decl.c:8335 #, gcc-internal-format msgid "%<long%> or %<short%> specified with char for %qs" msgstr "" -#: cp/decl.c:8332 +#: cp/decl.c:8337 #, gcc-internal-format msgid "%<long%> and %<short%> specified together for %qs" msgstr "" -#: cp/decl.c:8338 +#: cp/decl.c:8343 #, gcc-internal-format msgid "%<short%> or %<long%> invalid for %qs" msgstr "" -#: cp/decl.c:8346 +#: cp/decl.c:8351 #, gcc-internal-format msgid "long, short, signed or unsigned used invalidly for %qs" msgstr "" -#: cp/decl.c:8355 +#: cp/decl.c:8360 #, gcc-internal-format msgid "%<__int128%> is not supported by this target" msgstr "" -#: cp/decl.c:8361 +#: cp/decl.c:8366 #, gcc-internal-format msgid "ISO C++ does not support %<__int128%> for %qs" msgstr "" -#: cp/decl.c:8431 +#: cp/decl.c:8436 #, gcc-internal-format msgid "complex invalid for %qs" msgstr "" -#: cp/decl.c:8459 +#: cp/decl.c:8464 #, gcc-internal-format msgid "qualifiers are not allowed on declaration of %<operator %T%>" msgstr "" -#: cp/decl.c:8480 +#: cp/decl.c:8485 #, gcc-internal-format msgid "member %qD cannot be declared both virtual and static" msgstr "" -#: cp/decl.c:8488 +#: cp/decl.c:8493 #, gcc-internal-format msgid "%<%T::%D%> is not a valid declarator" msgstr "" -#: cp/decl.c:8497 +#: cp/decl.c:8502 #, gcc-internal-format msgid "typedef declaration invalid in parameter declaration" msgstr "" -#: cp/decl.c:8502 +#: cp/decl.c:8507 #, gcc-internal-format msgid "storage class specified for template parameter %qs" msgstr "" -#: cp/decl.c:8508 +#: cp/decl.c:8513 #, gcc-internal-format msgid "storage class specifiers invalid in parameter declarations" msgstr "" -#: cp/decl.c:8512 +#: cp/decl.c:8517 #, gcc-internal-format msgid "parameter declared %<auto%>" msgstr "" -#: cp/decl.c:8520 +#: cp/decl.c:8525 #, gcc-internal-format msgid "a parameter cannot be declared %<constexpr%>" msgstr "" -#: cp/decl.c:8529 +#: cp/decl.c:8534 #, gcc-internal-format msgid "%<virtual%> outside class declaration" msgstr "" -#: cp/decl.c:8547 +#: cp/decl.c:8552 #, gcc-internal-format msgid "multiple storage classes in declaration of %qs" msgstr "" -#: cp/decl.c:8570 +#: cp/decl.c:8575 #, gcc-internal-format msgid "storage class specified for %qs" msgstr "" -#: cp/decl.c:8574 +#: cp/decl.c:8579 #, gcc-internal-format msgid "storage class specified for parameter %qs" msgstr "" -#: cp/decl.c:8587 +#: cp/decl.c:8592 #, gcc-internal-format msgid "nested function %qs declared %<extern%>" msgstr "" -#: cp/decl.c:8591 +#: cp/decl.c:8596 #, gcc-internal-format msgid "top-level declaration of %qs specifies %<auto%>" msgstr "" -#: cp/decl.c:8597 +#: cp/decl.c:8602 #, gcc-internal-format msgid "function-scope %qs implicitly auto and declared %<__thread%>" msgstr "" -#: cp/decl.c:8604 +#: cp/decl.c:8609 #, gcc-internal-format msgid "storage class specifiers invalid in friend function declarations" msgstr "" -#: cp/decl.c:8698 +#: cp/decl.c:8703 #, gcc-internal-format msgid "%qs declared as function returning a function" msgstr "" -#: cp/decl.c:8703 +#: cp/decl.c:8708 #, gcc-internal-format msgid "%qs declared as function returning an array" msgstr "" -#: cp/decl.c:8724 +#: cp/decl.c:8729 #, gcc-internal-format msgid "%qs function uses %<auto%> type specifier without late return type" msgstr "" -#: cp/decl.c:8730 +#: cp/decl.c:8735 #, gcc-internal-format msgid "" "%qs function with late return type has %qT as its type rather than plain " "%<auto%>" msgstr "" -#: cp/decl.c:8738 +#: cp/decl.c:8743 #, gcc-internal-format msgid "" "%qs function with late return type not declared with %<auto%> type specifier" msgstr "" -#: cp/decl.c:8771 +#: cp/decl.c:8776 #, gcc-internal-format msgid "destructor cannot be static member function" msgstr "" -#: cp/decl.c:8776 +#: cp/decl.c:8781 #, gcc-internal-format msgid "destructors may not be cv-qualified" msgstr "" -#: cp/decl.c:8794 +#: cp/decl.c:8799 #, gcc-internal-format msgid "constructors cannot be declared virtual" msgstr "" -#: cp/decl.c:8807 +#: cp/decl.c:8812 #, gcc-internal-format msgid "can%'t initialize friend function %qs" msgstr "" #. Cannot be both friend and virtual. -#: cp/decl.c:8811 +#: cp/decl.c:8816 #, gcc-internal-format msgid "virtual functions cannot be friends" msgstr "" -#: cp/decl.c:8815 +#: cp/decl.c:8820 #, gcc-internal-format msgid "friend declaration not in class definition" msgstr "" -#: cp/decl.c:8817 +#: cp/decl.c:8822 #, gcc-internal-format msgid "can%'t define friend function %qs in a local class definition" msgstr "" -#: cp/decl.c:8838 +#: cp/decl.c:8843 #, gcc-internal-format msgid "destructors may not have parameters" msgstr "" -#: cp/decl.c:8857 +#: cp/decl.c:8862 #, gcc-internal-format msgid "cannot declare pointer to %q#T" msgstr "" -#: cp/decl.c:8870 cp/decl.c:8877 +#: cp/decl.c:8875 cp/decl.c:8882 #, gcc-internal-format msgid "cannot declare reference to %q#T" msgstr "" -#: cp/decl.c:8879 +#: cp/decl.c:8884 #, gcc-internal-format msgid "cannot declare pointer to %q#T member" msgstr "" -#: cp/decl.c:8902 +#: cp/decl.c:8907 #, gcc-internal-format msgid "cannot declare reference to qualified function type %qT" msgstr "" -#: cp/decl.c:8903 +#: cp/decl.c:8908 #, gcc-internal-format msgid "cannot declare pointer to qualified function type %qT" msgstr "" -#: cp/decl.c:8967 +#: cp/decl.c:8972 #, gcc-internal-format msgid "" "cannot declare reference to %q#T, which is not a typedef or a template type " "argument" msgstr "" -#: cp/decl.c:9012 +#: cp/decl.c:9017 #, gcc-internal-format msgid "both %<const%> and %<constexpr%> cannot be used here" msgstr "" -#: cp/decl.c:9014 +#: cp/decl.c:9019 #, gcc-internal-format msgid "both %<volatile%> and %<constexpr%> cannot be used here" msgstr "" -#: cp/decl.c:9023 +#: cp/decl.c:9028 #, gcc-internal-format msgid "template-id %qD used as a declarator" msgstr "" -#: cp/decl.c:9074 +#: cp/decl.c:9079 #, gcc-internal-format msgid "member functions are implicitly friends of their class" msgstr "" -#: cp/decl.c:9079 +#: cp/decl.c:9084 #, gcc-internal-format msgid "extra qualification %<%T::%> on member %qs" msgstr "" -#: cp/decl.c:9109 +#: cp/decl.c:9114 #, gcc-internal-format msgid "cannot define member function %<%T::%s%> within %<%T%>" msgstr "" -#: cp/decl.c:9118 +#: cp/decl.c:9123 #, gcc-internal-format msgid "cannot declare member %<%T::%s%> within %qT" msgstr "" -#: cp/decl.c:9150 +#: cp/decl.c:9155 #, gcc-internal-format msgid "non-parameter %qs cannot be a parameter pack" msgstr "" -#: cp/decl.c:9160 +#: cp/decl.c:9165 #, gcc-internal-format msgid "size of array %qs is too large" msgstr "" -#: cp/decl.c:9171 +#: cp/decl.c:9176 #, gcc-internal-format msgid "data member may not have variably modified type %qT" msgstr "" -#: cp/decl.c:9173 +#: cp/decl.c:9178 #, gcc-internal-format msgid "parameter may not have variably modified type %qT" msgstr "" #. [dcl.fct.spec] The explicit specifier shall only be used in #. declarations of constructors within a class definition. -#: cp/decl.c:9181 +#: cp/decl.c:9186 #, gcc-internal-format msgid "only declarations of constructors can be %<explicit%>" msgstr "" -#: cp/decl.c:9189 +#: cp/decl.c:9194 #, gcc-internal-format msgid "non-member %qs cannot be declared %<mutable%>" msgstr "" -#: cp/decl.c:9194 +#: cp/decl.c:9199 #, gcc-internal-format msgid "non-object member %qs cannot be declared %<mutable%>" msgstr "" -#: cp/decl.c:9200 +#: cp/decl.c:9205 #, gcc-internal-format msgid "function %qs cannot be declared %<mutable%>" msgstr "" -#: cp/decl.c:9205 +#: cp/decl.c:9210 #, gcc-internal-format msgid "static %qs cannot be declared %<mutable%>" msgstr "" -#: cp/decl.c:9210 +#: cp/decl.c:9215 #, gcc-internal-format msgid "const %qs cannot be declared %<mutable%>" msgstr "" -#: cp/decl.c:9248 +#: cp/decl.c:9220 +#, gcc-internal-format +msgid "reference %qs cannot be declared %<mutable%>" +msgstr "" + +#: cp/decl.c:9259 #, gcc-internal-format msgid "typedef name may not be a nested-name-specifier" msgstr "" -#: cp/decl.c:9266 +#: cp/decl.c:9277 #, gcc-internal-format msgid "ISO C++ forbids nested type %qD with same name as enclosing class" msgstr "" -#: cp/decl.c:9362 +#: cp/decl.c:9373 #, gcc-internal-format msgid "" "qualified function types cannot be used to declare static member functions" msgstr "" -#: cp/decl.c:9364 +#: cp/decl.c:9375 #, gcc-internal-format msgid "qualified function types cannot be used to declare free functions" msgstr "" -#: cp/decl.c:9391 +#: cp/decl.c:9402 #, gcc-internal-format msgid "type qualifiers specified for friend class declaration" msgstr "" -#: cp/decl.c:9396 +#: cp/decl.c:9407 #, gcc-internal-format msgid "%<inline%> specified for friend class declaration" msgstr "" -#: cp/decl.c:9404 +#: cp/decl.c:9415 #, gcc-internal-format msgid "template parameters cannot be friends" msgstr "" -#: cp/decl.c:9406 +#: cp/decl.c:9417 #, gcc-internal-format msgid "friend declaration requires class-key, i.e. %<friend class %T::%D%>" msgstr "" -#: cp/decl.c:9410 +#: cp/decl.c:9421 #, gcc-internal-format msgid "friend declaration requires class-key, i.e. %<friend %#T%>" msgstr "" -#: cp/decl.c:9423 +#: cp/decl.c:9434 #, gcc-internal-format msgid "trying to make class %qT a friend of global scope" msgstr "" -#: cp/decl.c:9441 +#: cp/decl.c:9452 #, gcc-internal-format msgid "invalid qualifiers on non-member function type" msgstr "" -#: cp/decl.c:9451 +#: cp/decl.c:9462 #, gcc-internal-format msgid "abstract declarator %qT used as declaration" msgstr "" -#: cp/decl.c:9480 +#: cp/decl.c:9491 #, gcc-internal-format msgid "cannot use %<::%> in parameter declaration" msgstr "" #. Something like struct S { int N::j; }; -#: cp/decl.c:9531 +#: cp/decl.c:9542 #, gcc-internal-format msgid "invalid use of %<::%>" msgstr "" -#: cp/decl.c:9553 +#: cp/decl.c:9564 #, gcc-internal-format msgid "declaration of function %qD in invalid context" msgstr "" -#: cp/decl.c:9562 +#: cp/decl.c:9573 #, gcc-internal-format msgid "function %qD declared virtual inside a union" msgstr "" -#: cp/decl.c:9571 +#: cp/decl.c:9582 #, gcc-internal-format msgid "%qD cannot be declared virtual, since it is always static" msgstr "" -#: cp/decl.c:9587 +#: cp/decl.c:9598 #, gcc-internal-format msgid "expected qualified name in friend declaration for destructor %qD" msgstr "" -#: cp/decl.c:9594 +#: cp/decl.c:9605 #, gcc-internal-format msgid "declaration of %qD as member of %qT" msgstr "" -#: cp/decl.c:9600 +#: cp/decl.c:9611 #, gcc-internal-format msgid "a destructor cannot be %<constexpr%>" msgstr "" -#: cp/decl.c:9606 +#: cp/decl.c:9617 #, gcc-internal-format msgid "expected qualified name in friend declaration for constructor %qD" msgstr "" -#: cp/decl.c:9651 +#: cp/decl.c:9662 #, gcc-internal-format msgid "field %qD has incomplete type" msgstr "" -#: cp/decl.c:9653 +#: cp/decl.c:9664 #, gcc-internal-format msgid "name %qT has incomplete type" msgstr "" -#: cp/decl.c:9662 +#: cp/decl.c:9673 #, gcc-internal-format msgid " in instantiation of template %qT" msgstr "" -#: cp/decl.c:9671 +#: cp/decl.c:9682 #, gcc-internal-format msgid "%qE is neither function nor member function; cannot be declared friend" msgstr "" -#: cp/decl.c:9726 +#: cp/decl.c:9737 #, gcc-internal-format msgid "non-static data member initializers" msgstr "" -#: cp/decl.c:9730 +#: cp/decl.c:9741 #, gcc-internal-format msgid "ISO C++ forbids initialization of member %qD" msgstr "" -#: cp/decl.c:9732 +#: cp/decl.c:9743 #, gcc-internal-format msgid "making %qD static" msgstr "" -#: cp/decl.c:9769 +#: cp/decl.c:9780 #, gcc-internal-format msgid "constexpr static data member %qD must have an initializer" msgstr "" -#: cp/decl.c:9778 +#: cp/decl.c:9789 #, gcc-internal-format msgid "non-static data member %qE declared %<constexpr%>" msgstr "" -#: cp/decl.c:9815 +#: cp/decl.c:9826 #, gcc-internal-format msgid "storage class %<auto%> invalid for function %qs" msgstr "" -#: cp/decl.c:9817 +#: cp/decl.c:9828 #, gcc-internal-format msgid "storage class %<register%> invalid for function %qs" msgstr "" -#: cp/decl.c:9819 +#: cp/decl.c:9830 #, gcc-internal-format msgid "storage class %<__thread%> invalid for function %qs" msgstr "" -#: cp/decl.c:9831 +#: cp/decl.c:9842 #, gcc-internal-format msgid "" "%<static%> specified invalid for function %qs declared out of global scope" msgstr "" -#: cp/decl.c:9835 +#: cp/decl.c:9846 #, gcc-internal-format msgid "" "%<inline%> specifier invalid for function %qs declared out of global scope" msgstr "" -#: cp/decl.c:9842 +#: cp/decl.c:9853 #, gcc-internal-format msgid "%q#T is not a class or a namespace" msgstr "" -#: cp/decl.c:9850 +#: cp/decl.c:9861 #, gcc-internal-format msgid "virtual non-class function %qs" msgstr "" -#: cp/decl.c:9857 +#: cp/decl.c:9868 #, gcc-internal-format msgid "%qs defined in a non-class scope" msgstr "" -#: cp/decl.c:9886 +#: cp/decl.c:9897 #, gcc-internal-format msgid "cannot declare member function %qD to have static linkage" msgstr "" #. FIXME need arm citation -#: cp/decl.c:9893 +#: cp/decl.c:9904 #, gcc-internal-format msgid "cannot declare static function inside another function" msgstr "" -#: cp/decl.c:9923 +#: cp/decl.c:9934 #, gcc-internal-format msgid "" "%<static%> may not be used when defining (as opposed to declaring) a static " "data member" msgstr "" -#: cp/decl.c:9930 +#: cp/decl.c:9941 #, gcc-internal-format msgid "static member %qD declared %<register%>" msgstr "" -#: cp/decl.c:9936 +#: cp/decl.c:9947 #, gcc-internal-format msgid "cannot explicitly declare member %q#D to have extern linkage" msgstr "" -#: cp/decl.c:9942 +#: cp/decl.c:9953 #, gcc-internal-format msgid "declaration of constexpr variable %qD is not a definition" msgstr "" -#: cp/decl.c:9953 +#: cp/decl.c:9964 #, gcc-internal-format msgid "%qs initialized and declared %<extern%>" msgstr "" -#: cp/decl.c:9957 +#: cp/decl.c:9968 #, gcc-internal-format msgid "%qs has both %<extern%> and initializer" msgstr "" -#: cp/decl.c:10084 +#: cp/decl.c:10095 #, gcc-internal-format msgid "default argument for %q#D has type %qT" msgstr "" -#: cp/decl.c:10087 +#: cp/decl.c:10098 #, gcc-internal-format msgid "default argument for parameter of type %qT has type %qT" msgstr "" -#: cp/decl.c:10103 +#: cp/decl.c:10114 #, gcc-internal-format msgid "default argument %qE uses local variable %qD" msgstr "" -#: cp/decl.c:10191 +#: cp/decl.c:10202 #, gcc-internal-format msgid "parameter %qD has Java class type" msgstr "" -#: cp/decl.c:10219 +#: cp/decl.c:10230 #, gcc-internal-format msgid "parameter %qD invalidly declared method type" msgstr "" -#: cp/decl.c:10244 +#: cp/decl.c:10255 #, gcc-internal-format msgid "parameter %qD includes pointer to array of unknown bound %qT" msgstr "" -#: cp/decl.c:10246 +#: cp/decl.c:10257 #, gcc-internal-format msgid "parameter %qD includes reference to array of unknown bound %qT" msgstr "" -#: cp/decl.c:10261 +#: cp/decl.c:10272 #, gcc-internal-format msgid "parameter packs must be at the end of the parameter list" msgstr "" @@ -27921,169 +28028,169 @@ msgstr "" #. or implicitly defined), there's no need to worry about their #. existence. Theoretically, they should never even be #. instantiated, but that's hard to forestall. -#: cp/decl.c:10493 +#: cp/decl.c:10504 #, gcc-internal-format msgid "invalid constructor; you probably meant %<%T (const %T&)%>" msgstr "" -#: cp/decl.c:10615 +#: cp/decl.c:10626 #, gcc-internal-format msgid "%qD may not be declared within a namespace" msgstr "" -#: cp/decl.c:10620 +#: cp/decl.c:10631 #, gcc-internal-format msgid "%qD may not be declared as static" msgstr "" -#: cp/decl.c:10646 +#: cp/decl.c:10657 #, gcc-internal-format msgid "%qD must be a nonstatic member function" msgstr "" -#: cp/decl.c:10655 +#: cp/decl.c:10666 #, gcc-internal-format msgid "" "%qD must be either a non-static member function or a non-member function" msgstr "" -#: cp/decl.c:10677 +#: cp/decl.c:10688 #, gcc-internal-format msgid "%qD must have an argument of class or enumerated type" msgstr "" -#: cp/decl.c:10706 +#: cp/decl.c:10717 #, gcc-internal-format msgid "" "conversion to a reference to void will never use a type conversion operator" msgstr "" -#: cp/decl.c:10708 +#: cp/decl.c:10719 #, gcc-internal-format msgid "conversion to void will never use a type conversion operator" msgstr "" -#: cp/decl.c:10715 +#: cp/decl.c:10726 #, gcc-internal-format msgid "" "conversion to a reference to the same type will never use a type conversion " "operator" msgstr "" -#: cp/decl.c:10717 +#: cp/decl.c:10728 #, gcc-internal-format msgid "conversion to the same type will never use a type conversion operator" msgstr "" -#: cp/decl.c:10725 +#: cp/decl.c:10736 #, gcc-internal-format msgid "" "conversion to a reference to a base class will never use a type conversion " "operator" msgstr "" -#: cp/decl.c:10727 +#: cp/decl.c:10738 #, gcc-internal-format msgid "conversion to a base class will never use a type conversion operator" msgstr "" #. 13.4.0.3 -#: cp/decl.c:10736 +#: cp/decl.c:10747 #, gcc-internal-format msgid "ISO C++ prohibits overloading operator ?:" msgstr "" -#: cp/decl.c:10741 +#: cp/decl.c:10752 #, gcc-internal-format msgid "%qD must not have variable number of arguments" msgstr "" -#: cp/decl.c:10792 +#: cp/decl.c:10803 #, gcc-internal-format msgid "postfix %qD must take %<int%> as its argument" msgstr "" -#: cp/decl.c:10795 +#: cp/decl.c:10806 #, gcc-internal-format msgid "postfix %qD must take %<int%> as its second argument" msgstr "" -#: cp/decl.c:10803 +#: cp/decl.c:10814 #, gcc-internal-format msgid "%qD must take either zero or one argument" msgstr "" -#: cp/decl.c:10805 +#: cp/decl.c:10816 #, gcc-internal-format msgid "%qD must take either one or two arguments" msgstr "" -#: cp/decl.c:10827 +#: cp/decl.c:10838 #, gcc-internal-format msgid "prefix %qD should return %qT" msgstr "" -#: cp/decl.c:10833 +#: cp/decl.c:10844 #, gcc-internal-format msgid "postfix %qD should return %qT" msgstr "" -#: cp/decl.c:10842 +#: cp/decl.c:10853 #, gcc-internal-format msgid "%qD must take %<void%>" msgstr "" -#: cp/decl.c:10844 cp/decl.c:10853 +#: cp/decl.c:10855 cp/decl.c:10864 #, gcc-internal-format msgid "%qD must take exactly one argument" msgstr "" -#: cp/decl.c:10855 +#: cp/decl.c:10866 #, gcc-internal-format msgid "%qD must take exactly two arguments" msgstr "" -#: cp/decl.c:10864 +#: cp/decl.c:10875 #, gcc-internal-format msgid "user-defined %qD always evaluates both arguments" msgstr "" -#: cp/decl.c:10878 +#: cp/decl.c:10889 #, gcc-internal-format msgid "%qD should return by value" msgstr "" -#: cp/decl.c:10889 cp/decl.c:10894 +#: cp/decl.c:10900 cp/decl.c:10905 #, gcc-internal-format msgid "%qD cannot have default arguments" msgstr "" -#: cp/decl.c:10952 +#: cp/decl.c:10963 #, gcc-internal-format msgid "using template type parameter %qT after %qs" msgstr "" -#: cp/decl.c:10968 +#: cp/decl.c:10979 #, gcc-internal-format msgid "using typedef-name %qD after %qs" msgstr "" -#: cp/decl.c:10969 +#: cp/decl.c:10980 #, gcc-internal-format msgid "%q+D has a previous declaration here" msgstr "" -#: cp/decl.c:10977 +#: cp/decl.c:10988 #, gcc-internal-format msgid "%qT referred to as %qs" msgstr "" -#: cp/decl.c:10978 cp/decl.c:10985 +#: cp/decl.c:10989 cp/decl.c:10996 #, gcc-internal-format msgid "%q+T has a previous declaration here" msgstr "" -#: cp/decl.c:10984 +#: cp/decl.c:10995 #, gcc-internal-format msgid "%qT referred to as enum" msgstr "" @@ -28095,88 +28202,88 @@ msgstr "" #. void f(class C); // No template header here #. #. then the required template argument is missing. -#: cp/decl.c:10999 +#: cp/decl.c:11010 #, gcc-internal-format msgid "template argument required for %<%s %T%>" msgstr "" -#: cp/decl.c:11047 cp/name-lookup.c:2860 +#: cp/decl.c:11058 cp/name-lookup.c:2876 #, gcc-internal-format msgid "%qD has the same name as the class in which it is declared" msgstr "" -#: cp/decl.c:11077 cp/name-lookup.c:2365 cp/name-lookup.c:3135 -#: cp/name-lookup.c:3180 cp/parser.c:4658 cp/parser.c:19278 +#: cp/decl.c:11088 cp/name-lookup.c:2381 cp/name-lookup.c:3151 +#: cp/name-lookup.c:3196 cp/parser.c:4666 cp/parser.c:19336 #, gcc-internal-format msgid "reference to %qD is ambiguous" msgstr "" -#: cp/decl.c:11191 +#: cp/decl.c:11202 #, gcc-internal-format msgid "use of enum %q#D without previous declaration" msgstr "" -#: cp/decl.c:11212 +#: cp/decl.c:11223 #, gcc-internal-format msgid "redeclaration of %qT as a non-template" msgstr "" -#: cp/decl.c:11213 +#: cp/decl.c:11224 #, gcc-internal-format msgid "previous declaration %q+D" msgstr "" -#: cp/decl.c:11332 +#: cp/decl.c:11343 #, gcc-internal-format msgid "derived union %qT invalid" msgstr "" -#: cp/decl.c:11341 +#: cp/decl.c:11352 #, gcc-internal-format msgid "Java class %qT cannot have multiple bases" msgstr "" -#: cp/decl.c:11352 +#: cp/decl.c:11363 #, gcc-internal-format msgid "Java class %qT cannot have virtual bases" msgstr "" -#: cp/decl.c:11372 +#: cp/decl.c:11383 #, gcc-internal-format msgid "base type %qT fails to be a struct or class type" msgstr "" -#: cp/decl.c:11405 +#: cp/decl.c:11416 #, gcc-internal-format msgid "recursive type %qT undefined" msgstr "" -#: cp/decl.c:11407 +#: cp/decl.c:11418 #, gcc-internal-format msgid "duplicate base type %qT invalid" msgstr "" -#: cp/decl.c:11527 +#: cp/decl.c:11538 #, gcc-internal-format msgid "scoped/unscoped mismatch in enum %q#T" msgstr "" -#: cp/decl.c:11530 cp/decl.c:11538 cp/decl.c:11550 cp/parser.c:13599 +#: cp/decl.c:11541 cp/decl.c:11549 cp/decl.c:11561 cp/parser.c:13637 #, gcc-internal-format msgid "previous definition here" msgstr "" -#: cp/decl.c:11535 +#: cp/decl.c:11546 #, gcc-internal-format msgid "underlying type mismatch in enum %q#T" msgstr "" -#: cp/decl.c:11547 +#: cp/decl.c:11558 #, gcc-internal-format msgid "different underlying type in enum %q#T" msgstr "" -#: cp/decl.c:11599 +#: cp/decl.c:11610 #, gcc-internal-format msgid "underlying type %<%T%> of %<%T%> must be an integral type" msgstr "" @@ -28185,72 +28292,72 @@ msgstr "" #. #. IF no integral type can represent all the enumerator values, the #. enumeration is ill-formed. -#: cp/decl.c:11733 +#: cp/decl.c:11744 #, gcc-internal-format msgid "no integral type can represent all of the enumerator values for %qT" msgstr "" -#: cp/decl.c:11868 +#: cp/decl.c:11880 #, gcc-internal-format msgid "enumerator value for %qD is not an integer constant" msgstr "" -#: cp/decl.c:11900 +#: cp/decl.c:11912 #, gcc-internal-format msgid "overflow in enumeration values at %qD" msgstr "" -#: cp/decl.c:11920 +#: cp/decl.c:11932 #, gcc-internal-format msgid "enumerator value %E is too large for underlying type %<%T%>" msgstr "" -#: cp/decl.c:12017 +#: cp/decl.c:12029 #, gcc-internal-format msgid "return type %q#T is incomplete" msgstr "" -#: cp/decl.c:12019 +#: cp/decl.c:12031 #, gcc-internal-format msgid "return type has Java class type %q#T" msgstr "" -#: cp/decl.c:12147 cp/typeck.c:7691 +#: cp/decl.c:12159 cp/typeck.c:7691 #, gcc-internal-format msgid "%<operator=%> should return a reference to %<*this%>" msgstr "" -#: cp/decl.c:12242 +#: cp/decl.c:12254 #, gcc-internal-format msgid "no previous declaration for %q+D" msgstr "" -#: cp/decl.c:12465 +#: cp/decl.c:12477 #, gcc-internal-format msgid "invalid function declaration" msgstr "" -#: cp/decl.c:12549 +#: cp/decl.c:12561 #, gcc-internal-format msgid "parameter %qD declared void" msgstr "" -#: cp/decl.c:13009 +#: cp/decl.c:13021 #, gcc-internal-format msgid "parameter %q+D set but not used" msgstr "" -#: cp/decl.c:13100 +#: cp/decl.c:13112 #, gcc-internal-format msgid "invalid member function declaration" msgstr "" -#: cp/decl.c:13114 +#: cp/decl.c:13126 #, gcc-internal-format msgid "%qD is already defined in class %qT" msgstr "" -#: cp/decl.c:13327 +#: cp/decl.c:13339 #, gcc-internal-format msgid "static member function %q#D declared with type qualifiers" msgstr "" @@ -28292,7 +28399,7 @@ msgstr "" msgid "deleting %qT is undefined" msgstr "" -#: cp/decl2.c:510 cp/pt.c:4760 +#: cp/decl2.c:510 cp/pt.c:4761 #, gcc-internal-format msgid "template declaration of %q#D" msgstr "" @@ -28383,27 +28490,27 @@ msgstr "" msgid "static member %qD cannot be a bit-field" msgstr "" -#: cp/decl2.c:1056 +#: cp/decl2.c:1057 #, gcc-internal-format msgid "width of bit-field %qD has non-integral type %qT" msgstr "" -#: cp/decl2.c:1308 +#: cp/decl2.c:1309 #, gcc-internal-format msgid "anonymous struct not inside named type" msgstr "" -#: cp/decl2.c:1394 +#: cp/decl2.c:1395 #, gcc-internal-format msgid "namespace-scope anonymous aggregates must be static" msgstr "" -#: cp/decl2.c:1403 +#: cp/decl2.c:1404 #, gcc-internal-format msgid "anonymous union with no members" msgstr "" -#: cp/decl2.c:1440 +#: cp/decl2.c:1442 #, gcc-internal-format msgid "%<operator new%> must return type %qT" msgstr "" @@ -28412,143 +28519,143 @@ msgstr "" #. #. The first parameter shall not have an associated default #. argument. -#: cp/decl2.c:1451 +#: cp/decl2.c:1453 #, gcc-internal-format msgid "the first parameter of %<operator new%> cannot have a default argument" msgstr "" -#: cp/decl2.c:1467 +#: cp/decl2.c:1469 #, gcc-internal-format msgid "%<operator new%> takes type %<size_t%> (%qT) as first parameter" msgstr "" -#: cp/decl2.c:1496 +#: cp/decl2.c:1498 #, gcc-internal-format msgid "%<operator delete%> must return type %qT" msgstr "" -#: cp/decl2.c:1505 +#: cp/decl2.c:1507 #, gcc-internal-format msgid "%<operator delete%> takes type %qT as first parameter" msgstr "" -#: cp/decl2.c:2242 +#: cp/decl2.c:2246 #, gcc-internal-format msgid "%qT has a field %qD whose type uses the anonymous namespace" msgstr "" -#: cp/decl2.c:2249 +#: cp/decl2.c:2253 #, gcc-internal-format msgid "%qT declared with greater visibility than the type of its field %qD" msgstr "" -#: cp/decl2.c:2262 +#: cp/decl2.c:2266 #, gcc-internal-format msgid "%qT has a base %qT whose type uses the anonymous namespace" msgstr "" -#: cp/decl2.c:2268 +#: cp/decl2.c:2272 #, gcc-internal-format msgid "%qT declared with greater visibility than its base %qT" msgstr "" -#: cp/decl2.c:3590 +#: cp/decl2.c:3595 #, gcc-internal-format msgid "%q+#D, declared using anonymous type, is used but never defined" msgstr "" -#: cp/decl2.c:3597 +#: cp/decl2.c:3602 #, gcc-internal-format msgid "%q+#D, declared using local type %qT, is used but never defined" msgstr "" -#: cp/decl2.c:3926 +#: cp/decl2.c:3931 #, gcc-internal-format msgid "inline function %q+D used but never defined" msgstr "" -#: cp/decl2.c:4101 +#: cp/decl2.c:4106 #, gcc-internal-format msgid "default argument missing for parameter %P of %q+#D" msgstr "" #. We mark a lambda conversion op as deleted if we can't #. generate it properly; see maybe_add_lambda_conv_op. -#: cp/decl2.c:4157 +#: cp/decl2.c:4162 #, gcc-internal-format msgid "converting lambda which uses %<...%> to function pointer" msgstr "" -#: cp/decl2.c:4162 +#: cp/decl2.c:4167 #, gcc-internal-format msgid "use of deleted function %qD" msgstr "" -#: cp/error.c:3104 +#: cp/error.c:3108 #, gcc-internal-format msgid "" "extended initializer lists only available with -std=c++0x or -std=gnu++0x" msgstr "" -#: cp/error.c:3109 +#: cp/error.c:3113 #, gcc-internal-format msgid "" "explicit conversion operators only available with -std=c++0x or -std=gnu++0x" msgstr "" -#: cp/error.c:3114 +#: cp/error.c:3118 #, gcc-internal-format msgid "variadic templates only available with -std=c++0x or -std=gnu++0x" msgstr "" -#: cp/error.c:3119 +#: cp/error.c:3123 #, gcc-internal-format msgid "lambda expressions only available with -std=c++0x or -std=gnu++0x" msgstr "" -#: cp/error.c:3124 +#: cp/error.c:3128 #, gcc-internal-format msgid "C++0x auto only available with -std=c++0x or -std=gnu++0x" msgstr "" -#: cp/error.c:3128 +#: cp/error.c:3132 #, gcc-internal-format msgid "scoped enums only available with -std=c++0x or -std=gnu++0x" msgstr "" -#: cp/error.c:3132 +#: cp/error.c:3136 #, gcc-internal-format msgid "" "defaulted and deleted functions only available with -std=c++0x or -std=gnu+" "+0x" msgstr "" -#: cp/error.c:3137 +#: cp/error.c:3141 #, gcc-internal-format msgid "inline namespaces only available with -std=c++0x or -std=gnu++0x" msgstr "" -#: cp/error.c:3184 +#: cp/error.c:3188 #, gcc-internal-format msgid "incomplete type %qT used in nested name specifier" msgstr "" -#: cp/error.c:3188 +#: cp/error.c:3192 #, gcc-internal-format msgid "reference to %<%T::%D%> is ambiguous" msgstr "" -#: cp/error.c:3193 cp/typeck.c:2143 +#: cp/error.c:3197 cp/typeck.c:2143 #, gcc-internal-format msgid "%qD is not a member of %qT" msgstr "" -#: cp/error.c:3197 +#: cp/error.c:3201 #, gcc-internal-format msgid "%qD is not a member of %qD" msgstr "" -#: cp/error.c:3202 +#: cp/error.c:3206 #, gcc-internal-format msgid "%<::%D%> has not been declared" msgstr "" @@ -28585,7 +28692,7 @@ msgstr "" msgid "throwing NULL, which has integral, not pointer type" msgstr "" -#: cp/except.c:680 cp/init.c:2075 +#: cp/except.c:680 cp/init.c:2076 #, gcc-internal-format msgid "%qD should never be overloaded" msgstr "" @@ -28747,249 +28854,249 @@ msgstr "" msgid "uninitialized reference member %qD" msgstr "" -#: cp/init.c:542 +#: cp/init.c:544 #, gcc-internal-format msgid "uninitialized member %qD in %<constexpr%> constructor" msgstr "" -#: cp/init.c:700 +#: cp/init.c:701 #, gcc-internal-format msgid "%q+D will be initialized after" msgstr "" -#: cp/init.c:703 +#: cp/init.c:704 #, gcc-internal-format msgid "base %qT will be initialized after" msgstr "" -#: cp/init.c:706 +#: cp/init.c:707 #, gcc-internal-format msgid " %q+#D" msgstr "" -#: cp/init.c:708 +#: cp/init.c:709 #, gcc-internal-format msgid " base %qT" msgstr "" -#: cp/init.c:710 +#: cp/init.c:711 #, gcc-internal-format msgid " when initialized here" msgstr "" -#: cp/init.c:727 +#: cp/init.c:728 #, gcc-internal-format msgid "multiple initializations given for %qD" msgstr "" -#: cp/init.c:731 +#: cp/init.c:732 #, gcc-internal-format msgid "multiple initializations given for base %qT" msgstr "" -#: cp/init.c:815 +#: cp/init.c:816 #, gcc-internal-format msgid "initializations for multiple members of %qT" msgstr "" -#: cp/init.c:893 +#: cp/init.c:894 #, gcc-internal-format msgid "" "base class %q#T should be explicitly initialized in the copy constructor" msgstr "" -#: cp/init.c:902 +#: cp/init.c:903 #, gcc-internal-format msgid "uninitialized base %qT in %<constexpr%> constructor" msgstr "" -#: cp/init.c:1128 cp/init.c:1147 +#: cp/init.c:1129 cp/init.c:1148 #, gcc-internal-format msgid "class %qT does not have any field named %qD" msgstr "" -#: cp/init.c:1134 +#: cp/init.c:1135 #, gcc-internal-format msgid "" "%q#D is a static data member; it can only be initialized at its definition" msgstr "" -#: cp/init.c:1141 +#: cp/init.c:1142 #, gcc-internal-format msgid "%q#D is not a non-static data member of %qT" msgstr "" -#: cp/init.c:1180 +#: cp/init.c:1181 #, gcc-internal-format msgid "unnamed initializer for %qT, which has no base classes" msgstr "" -#: cp/init.c:1188 +#: cp/init.c:1189 #, gcc-internal-format msgid "unnamed initializer for %qT, which uses multiple inheritance" msgstr "" -#: cp/init.c:1234 +#: cp/init.c:1235 #, gcc-internal-format msgid "%qD is both a direct base and an indirect virtual base" msgstr "" -#: cp/init.c:1242 +#: cp/init.c:1243 #, gcc-internal-format msgid "type %qT is not a direct or virtual base of %qT" msgstr "" -#: cp/init.c:1245 +#: cp/init.c:1246 #, gcc-internal-format msgid "type %qT is not a direct base of %qT" msgstr "" -#: cp/init.c:1328 +#: cp/init.c:1329 #, gcc-internal-format msgid "bad array initializer" msgstr "" -#: cp/init.c:1558 cp/semantics.c:2631 +#: cp/init.c:1559 cp/semantics.c:2681 #, gcc-internal-format msgid "%qT is not a class type" msgstr "" -#: cp/init.c:1612 +#: cp/init.c:1613 #, gcc-internal-format msgid "incomplete type %qT does not have member %qD" msgstr "" -#: cp/init.c:1625 +#: cp/init.c:1626 #, gcc-internal-format msgid "invalid pointer to bit-field %qD" msgstr "" -#: cp/init.c:1702 +#: cp/init.c:1703 #, gcc-internal-format msgid "invalid use of non-static member function %qD" msgstr "" -#: cp/init.c:1708 +#: cp/init.c:1709 #, gcc-internal-format msgid "invalid use of non-static data member %qD" msgstr "" -#: cp/init.c:1877 +#: cp/init.c:1878 #, gcc-internal-format msgid "" "uninitialized reference member in %q#T using %<new%> without new-initializer" msgstr "" -#: cp/init.c:1880 +#: cp/init.c:1881 #, gcc-internal-format msgid "uninitialized reference member in %q#T" msgstr "" -#: cp/init.c:1892 +#: cp/init.c:1893 #, gcc-internal-format msgid "" "uninitialized const member in %q#T using %<new%> without new-initializer" msgstr "" -#: cp/init.c:1895 +#: cp/init.c:1896 #, gcc-internal-format msgid "uninitialized const member in %q#T" msgstr "" -#: cp/init.c:1992 +#: cp/init.c:1993 #, gcc-internal-format msgid "invalid type %<void%> for new" msgstr "" -#: cp/init.c:2035 +#: cp/init.c:2036 #, gcc-internal-format msgid "uninitialized const in %<new%> of %q#T" msgstr "" -#: cp/init.c:2069 +#: cp/init.c:2070 #, gcc-internal-format msgid "call to Java constructor with %qs undefined" msgstr "" -#: cp/init.c:2085 +#: cp/init.c:2086 #, gcc-internal-format msgid "Java class %q#T object allocated using placement new" msgstr "" -#: cp/init.c:2115 +#: cp/init.c:2116 #, gcc-internal-format msgid "no suitable %qD found in class %qT" msgstr "" -#: cp/init.c:2122 cp/search.c:1103 +#: cp/init.c:2123 cp/search.c:1103 #, gcc-internal-format msgid "request for member %qD is ambiguous" msgstr "" -#: cp/init.c:2312 +#: cp/init.c:2328 #, gcc-internal-format msgid "" "non-constant array size in new, unable to verify length of initializer-list" msgstr "" -#: cp/init.c:2321 +#: cp/init.c:2337 #, gcc-internal-format msgid "ISO C++ forbids initialization in array new" msgstr "" -#: cp/init.c:2561 +#: cp/init.c:2570 #, gcc-internal-format msgid "size in array new must have integral type" msgstr "" -#: cp/init.c:2575 +#: cp/init.c:2584 #, gcc-internal-format msgid "new cannot be applied to a reference type" msgstr "" -#: cp/init.c:2584 +#: cp/init.c:2593 #, gcc-internal-format msgid "new cannot be applied to a function type" msgstr "" -#: cp/init.c:2628 +#: cp/init.c:2637 #, gcc-internal-format msgid "call to Java constructor, while %<jclass%> undefined" msgstr "" -#: cp/init.c:2646 +#: cp/init.c:2655 #, gcc-internal-format msgid "can%'t find %<class$%> in %qT" msgstr "" -#: cp/init.c:3097 +#: cp/init.c:3106 #, gcc-internal-format msgid "initializer ends prematurely" msgstr "" -#: cp/init.c:3159 +#: cp/init.c:3168 #, gcc-internal-format msgid "cannot initialize multi-dimensional array with initializer" msgstr "" -#: cp/init.c:3318 +#: cp/init.c:3327 #, gcc-internal-format msgid "possible problem detected in invocation of delete operator:" msgstr "" -#: cp/init.c:3322 +#: cp/init.c:3331 #, 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:3344 +#: cp/init.c:3353 #, gcc-internal-format msgid "unknown array size in delete" msgstr "" -#: cp/init.c:3605 +#: cp/init.c:3614 #, gcc-internal-format msgid "type to vector delete is neither pointer or array type" msgstr "" @@ -29053,138 +29160,138 @@ msgid "" "use of an undeclared name is deprecated)" msgstr "" -#: cp/mangle.c:1950 +#: cp/mangle.c:1982 #, gcc-internal-format msgid "mangling typeof, use decltype instead" msgstr "" -#: cp/mangle.c:2180 +#: cp/mangle.c:2212 #, gcc-internal-format msgid "mangling unknown fixed point type" msgstr "" -#: cp/mangle.c:2585 +#: cp/mangle.c:2639 #, gcc-internal-format, gfc-internal-format msgid "mangling %C" msgstr "" -#: cp/mangle.c:2637 +#: cp/mangle.c:2691 #, gcc-internal-format msgid "mangling new-expression" msgstr "" -#: cp/mangle.c:2671 +#: cp/mangle.c:2725 #, gcc-internal-format msgid "omitted middle operand to %<?:%> operand cannot be mangled" msgstr "" -#: cp/mangle.c:2979 +#: cp/mangle.c:3033 #, gcc-internal-format msgid "the mangled name of %qD will change in a future version of GCC" msgstr "" -#: cp/mangle.c:3095 +#: cp/mangle.c:3149 #, gcc-internal-format msgid "" "-fabi-version=4 (or =0) avoids this error with a change in vector mangling" msgstr "" -#: cp/method.c:393 +#: cp/method.c:394 #, gcc-internal-format msgid "generic thunk code fails for method %q#D which uses %<...%>" msgstr "" -#: cp/method.c:649 cp/method.c:980 +#: cp/method.c:650 cp/method.c:990 #, gcc-internal-format msgid "non-static const member %q#D, can%'t use default assignment operator" msgstr "" -#: cp/method.c:655 cp/method.c:986 +#: cp/method.c:656 cp/method.c:996 #, gcc-internal-format msgid "" "non-static reference member %q#D, can%'t use default assignment operator" msgstr "" -#: cp/method.c:771 +#: cp/method.c:772 #, gcc-internal-format msgid "synthesized method %qD first required here " msgstr "" -#: cp/method.c:933 +#: cp/method.c:934 #, gcc-internal-format msgid "union member %q+D with non-trivial %qD" msgstr "" -#: cp/method.c:1003 +#: cp/method.c:1013 #, gcc-internal-format msgid "uninitialized non-static const member %q#D" msgstr "" -#: cp/method.c:1009 +#: cp/method.c:1019 #, gcc-internal-format msgid "uninitialized non-static reference member %q#D" msgstr "" -#: cp/method.c:1241 +#: cp/method.c:1252 #, gcc-internal-format msgid "" "%qT has virtual bases, default move assignment operator cannot be generated" msgstr "" -#: cp/method.c:1351 +#: cp/method.c:1354 #, gcc-internal-format msgid "a lambda closure type has a deleted default constructor" msgstr "" -#: cp/method.c:1353 +#: cp/method.c:1356 #, gcc-internal-format msgid "a lambda closure type has a deleted copy assignment operator" msgstr "" -#: cp/method.c:1362 +#: cp/method.c:1365 #, gcc-internal-format msgid "" "%qD is implicitly deleted because the default definition would be ill-formed:" msgstr "" -#: cp/method.c:1554 +#: cp/method.c:1557 #, gcc-internal-format msgid "defaulted declaration %q+D" msgstr "" -#: cp/method.c:1556 +#: cp/method.c:1559 #, gcc-internal-format msgid "does not match expected signature %qD" msgstr "" -#: cp/method.c:1577 +#: cp/method.c:1580 #, gcc-internal-format msgid "%qD cannot be declared as constexpr" msgstr "" -#: cp/method.c:1617 +#: cp/method.c:1620 #, gcc-internal-format msgid "%qD cannot be defaulted" msgstr "" -#: cp/method.c:1626 +#: cp/method.c:1629 #, gcc-internal-format msgid "defaulted function %q+D with default argument" msgstr "" -#: cp/method.c:1632 +#: cp/method.c:1635 #, gcc-internal-format msgid "" "function %q+D defaulted on its first declaration must not have an exception-" "specification" msgstr "" -#: cp/method.c:1635 +#: cp/method.c:1638 #, gcc-internal-format msgid "%qD declared virtual cannot be defaulted in the class body" msgstr "" -#: cp/method.c:1712 +#: cp/method.c:1715 #, gcc-internal-format msgid "" "vtable layout for class %qT may not be ABI-compliantand may change in a " @@ -29293,7 +29400,7 @@ msgstr "" msgid " using obsolete binding at %q+D" msgstr "" -#: cp/name-lookup.c:1290 cp/parser.c:11640 +#: cp/name-lookup.c:1290 cp/parser.c:11678 #, gcc-internal-format msgid "(if you use %<-fpermissive%> G++ will accept your code)" msgstr "" @@ -29308,161 +29415,161 @@ msgstr "" msgid "%s %s %p %d\n" msgstr "" -#: cp/name-lookup.c:2078 +#: cp/name-lookup.c:2094 #, gcc-internal-format msgid "%q#D hides constructor for %q#T" msgstr "" -#: cp/name-lookup.c:2095 +#: cp/name-lookup.c:2111 #, gcc-internal-format msgid "%q#D conflicts with previous using declaration %q#D" msgstr "" -#: cp/name-lookup.c:2118 +#: cp/name-lookup.c:2134 #, gcc-internal-format msgid "previous non-function declaration %q+#D" msgstr "" -#: cp/name-lookup.c:2119 +#: cp/name-lookup.c:2135 #, gcc-internal-format msgid "conflicts with function declaration %q#D" msgstr "" #. It's a nested name with template parameter dependent scope. #. This can only be using-declaration for class member. -#: cp/name-lookup.c:2197 cp/name-lookup.c:2222 +#: cp/name-lookup.c:2213 cp/name-lookup.c:2238 #, gcc-internal-format msgid "%qT is not a namespace" msgstr "" #. 7.3.3/5 #. A using-declaration shall not name a template-id. -#: cp/name-lookup.c:2207 +#: cp/name-lookup.c:2223 #, gcc-internal-format msgid "a using-declaration cannot specify a template-id. Try %<using %D%>" msgstr "" -#: cp/name-lookup.c:2214 +#: cp/name-lookup.c:2230 #, gcc-internal-format msgid "namespace %qD not allowed in using-declaration" msgstr "" -#: cp/name-lookup.c:2250 +#: cp/name-lookup.c:2266 #, gcc-internal-format msgid "%qD not declared" msgstr "" -#: cp/name-lookup.c:2286 cp/name-lookup.c:2323 cp/name-lookup.c:2357 -#: cp/name-lookup.c:2372 +#: cp/name-lookup.c:2302 cp/name-lookup.c:2339 cp/name-lookup.c:2373 +#: cp/name-lookup.c:2388 #, gcc-internal-format msgid "%qD is already declared in this scope" msgstr "" -#: cp/name-lookup.c:2979 +#: cp/name-lookup.c:2995 #, gcc-internal-format msgid "using-declaration for non-member at class scope" msgstr "" -#: cp/name-lookup.c:2986 +#: cp/name-lookup.c:3002 #, gcc-internal-format msgid "%<%T::%D%> names destructor" msgstr "" -#: cp/name-lookup.c:2991 +#: cp/name-lookup.c:3007 #, gcc-internal-format msgid "%<%T::%D%> names constructor" msgstr "" -#: cp/name-lookup.c:2996 +#: cp/name-lookup.c:3012 #, gcc-internal-format msgid "%<%T::%D%> names constructor in %qT" msgstr "" -#: cp/name-lookup.c:3046 +#: cp/name-lookup.c:3062 #, gcc-internal-format msgid "no members matching %<%T::%D%> in %q#T" msgstr "" -#: cp/name-lookup.c:3114 +#: cp/name-lookup.c:3130 #, gcc-internal-format msgid "declaration of %qD not in a namespace surrounding %qD" msgstr "" -#: cp/name-lookup.c:3122 +#: cp/name-lookup.c:3138 #, gcc-internal-format msgid "explicit qualification in declaration of %qD" msgstr "" -#: cp/name-lookup.c:3205 +#: cp/name-lookup.c:3221 #, gcc-internal-format msgid "%qD should have been declared inside %qD" msgstr "" -#: cp/name-lookup.c:3249 +#: cp/name-lookup.c:3265 #, gcc-internal-format msgid "%qD attribute requires a single NTBS argument" msgstr "" -#: cp/name-lookup.c:3256 +#: cp/name-lookup.c:3272 #, gcc-internal-format msgid "" "%qD attribute is meaningless since members of the anonymous namespace get " "local symbols" msgstr "" -#: cp/name-lookup.c:3264 cp/name-lookup.c:3634 +#: cp/name-lookup.c:3280 cp/name-lookup.c:3650 #, gcc-internal-format msgid "%qD attribute directive ignored" msgstr "" -#: cp/name-lookup.c:3309 +#: cp/name-lookup.c:3325 #, gcc-internal-format msgid "namespace alias %qD not allowed here, assuming %qD" msgstr "" -#: cp/name-lookup.c:3622 +#: cp/name-lookup.c:3638 #, gcc-internal-format msgid "strong using only meaningful at namespace scope" msgstr "" -#: cp/name-lookup.c:3626 +#: cp/name-lookup.c:3642 #, gcc-internal-format msgid "current namespace %qD does not enclose strongly used namespace %qD" msgstr "" -#: cp/name-lookup.c:3964 +#: cp/name-lookup.c:3980 #, gcc-internal-format msgid "maximum limit of %d namespaces searched for %qE" msgstr "" -#: cp/name-lookup.c:3974 +#: cp/name-lookup.c:3990 #, gcc-internal-format msgid "suggested alternative:" msgid_plural "suggested alternatives:" msgstr[0] "" msgstr[1] "" -#: cp/name-lookup.c:3978 +#: cp/name-lookup.c:3994 #, gcc-internal-format msgid " %qE" msgstr "" -#: cp/name-lookup.c:5161 +#: cp/name-lookup.c:5177 #, gcc-internal-format msgid "argument dependent lookup finds %q+D" msgstr "" -#: cp/name-lookup.c:5608 +#: cp/name-lookup.c:5624 #, gcc-internal-format msgid "XXX entering pop_everything ()\n" msgstr "" -#: cp/name-lookup.c:5617 +#: cp/name-lookup.c:5633 #, gcc-internal-format msgid "XXX leaving pop_everything ()\n" msgstr "" -#: cp/optimize.c:340 +#: cp/optimize.c:341 #, gcc-internal-format msgid "making multiple clones of %qD" msgstr "" @@ -29472,835 +29579,840 @@ msgstr "" msgid "identifier %qE will become a keyword in C++0x" msgstr "" -#: cp/parser.c:2321 +#: cp/parser.c:2323 #, gcc-internal-format msgid "%<#pragma%> is not allowed here" msgstr "" -#: cp/parser.c:2352 +#: cp/parser.c:2354 #, gcc-internal-format msgid "%<%E::%E%> has not been declared" msgstr "" -#: cp/parser.c:2355 +#: cp/parser.c:2357 #, gcc-internal-format msgid "%<::%E%> has not been declared" msgstr "" -#: cp/parser.c:2358 +#: cp/parser.c:2360 #, gcc-internal-format msgid "request for member %qE in non-class type %qT" msgstr "" -#: cp/parser.c:2361 +#: cp/parser.c:2363 #, gcc-internal-format msgid "%<%T::%E%> has not been declared" msgstr "" -#: cp/parser.c:2364 +#: cp/parser.c:2366 #, gcc-internal-format msgid "%qE has not been declared" msgstr "" -#: cp/parser.c:2371 +#: cp/parser.c:2373 #, gcc-internal-format msgid "%<%E::%E%> is not a type" msgstr "" -#: cp/parser.c:2375 +#: cp/parser.c:2377 #, gcc-internal-format msgid "%<%E::%E%> is not a class or namespace" msgstr "" -#: cp/parser.c:2380 +#: cp/parser.c:2382 #, gcc-internal-format msgid "%<%E::%E%> is not a class, namespace, or enumeration" msgstr "" -#: cp/parser.c:2393 +#: cp/parser.c:2395 #, gcc-internal-format msgid "%<::%E%> is not a type" msgstr "" -#: cp/parser.c:2396 +#: cp/parser.c:2398 #, gcc-internal-format msgid "%<::%E%> is not a class or namespace" msgstr "" -#: cp/parser.c:2400 +#: cp/parser.c:2402 #, gcc-internal-format msgid "%<::%E%> is not a class, namespace, or enumeration" msgstr "" -#: cp/parser.c:2412 +#: cp/parser.c:2414 #, gcc-internal-format msgid "%qE is not a type" msgstr "" -#: cp/parser.c:2415 +#: cp/parser.c:2417 #, gcc-internal-format msgid "%qE is not a class or namespace" msgstr "" -#: cp/parser.c:2419 +#: cp/parser.c:2421 #, gcc-internal-format msgid "%qE is not a class, namespace, or enumeration" msgstr "" -#: cp/parser.c:2462 +#: cp/parser.c:2464 #, gcc-internal-format msgid "ISO C++ 1998 does not support %<long long%>" msgstr "" -#: cp/parser.c:2483 +#: cp/parser.c:2485 #, gcc-internal-format msgid "duplicate %qs" msgstr "" -#: cp/parser.c:2528 +#: cp/parser.c:2530 #, gcc-internal-format msgid "new types may not be defined in a return type" msgstr "" -#: cp/parser.c:2530 +#: cp/parser.c:2532 #, gcc-internal-format msgid "(perhaps a semicolon is missing after the definition of %qT)" msgstr "" -#: cp/parser.c:2550 cp/parser.c:4706 cp/pt.c:6749 +#: cp/parser.c:2552 cp/parser.c:4714 cp/pt.c:6751 #, gcc-internal-format msgid "%qT is not a template" msgstr "" -#: cp/parser.c:2552 +#: cp/parser.c:2554 #, gcc-internal-format msgid "%qE is not a template" msgstr "" -#: cp/parser.c:2554 +#: cp/parser.c:2556 #, gcc-internal-format msgid "invalid template-id" msgstr "" -#: cp/parser.c:2587 +#: cp/parser.c:2589 #, gcc-internal-format msgid "floating-point literal cannot appear in a constant-expression" msgstr "" -#: cp/parser.c:2591 cp/pt.c:12533 +#: cp/parser.c:2593 cp/pt.c:12583 #, gcc-internal-format msgid "" "a cast to a type other than an integral or enumeration type cannot appear in " "a constant-expression" msgstr "" -#: cp/parser.c:2596 +#: cp/parser.c:2598 #, gcc-internal-format msgid "%<typeid%> operator cannot appear in a constant-expression" msgstr "" -#: cp/parser.c:2600 +#: cp/parser.c:2602 #, gcc-internal-format msgid "non-constant compound literals cannot appear in a constant-expression" msgstr "" -#: cp/parser.c:2604 +#: cp/parser.c:2606 #, gcc-internal-format msgid "a function call cannot appear in a constant-expression" msgstr "" -#: cp/parser.c:2608 +#: cp/parser.c:2610 #, gcc-internal-format msgid "an increment cannot appear in a constant-expression" msgstr "" -#: cp/parser.c:2612 +#: cp/parser.c:2614 #, gcc-internal-format msgid "an decrement cannot appear in a constant-expression" msgstr "" -#: cp/parser.c:2616 +#: cp/parser.c:2618 #, gcc-internal-format msgid "an array reference cannot appear in a constant-expression" msgstr "" -#: cp/parser.c:2620 +#: cp/parser.c:2622 #, gcc-internal-format msgid "the address of a label cannot appear in a constant-expression" msgstr "" -#: cp/parser.c:2624 +#: cp/parser.c:2626 #, gcc-internal-format msgid "calls to overloaded operators cannot appear in a constant-expression" msgstr "" -#: cp/parser.c:2628 +#: cp/parser.c:2630 #, gcc-internal-format msgid "an assignment cannot appear in a constant-expression" msgstr "" -#: cp/parser.c:2631 +#: cp/parser.c:2633 #, gcc-internal-format msgid "a comma operator cannot appear in a constant-expression" msgstr "" -#: cp/parser.c:2635 +#: cp/parser.c:2637 #, gcc-internal-format msgid "a call to a constructor cannot appear in a constant-expression" msgstr "" -#: cp/parser.c:2681 +#: cp/parser.c:2683 #, gcc-internal-format msgid "%qs cannot appear in a constant-expression" msgstr "" -#: cp/parser.c:2709 +#: cp/parser.c:2711 #, gcc-internal-format msgid "invalid use of template-name %qE without an argument list" msgstr "" -#: cp/parser.c:2712 +#: cp/parser.c:2714 #, gcc-internal-format msgid "invalid use of destructor %qD as a type" msgstr "" #. Something like 'unsigned A a;' -#: cp/parser.c:2715 +#: cp/parser.c:2717 #, gcc-internal-format msgid "invalid combination of multiple type-specifiers" msgstr "" #. Issue an error message. -#: cp/parser.c:2719 +#: cp/parser.c:2721 #, gcc-internal-format msgid "%qE does not name a type" msgstr "" -#: cp/parser.c:2728 +#: cp/parser.c:2730 #, gcc-internal-format msgid "C++0x %<constexpr%> only available with -std=c++0x or -std=gnu++0x" msgstr "" -#: cp/parser.c:2755 +#: cp/parser.c:2757 #, gcc-internal-format msgid "(perhaps %<typename %T::%E%> was intended)" msgstr "" -#: cp/parser.c:2770 +#: cp/parser.c:2772 #, gcc-internal-format msgid "%qE in namespace %qE does not name a type" msgstr "" #. A<T>::A<T>() -#: cp/parser.c:2776 +#: cp/parser.c:2778 #, gcc-internal-format msgid "%<%T::%E%> names the constructor, not the type" msgstr "" -#: cp/parser.c:2779 +#: cp/parser.c:2781 #, gcc-internal-format msgid "and %qT has no template constructors" msgstr "" -#: cp/parser.c:2784 +#: cp/parser.c:2786 #, gcc-internal-format msgid "need %<typename%> before %<%T::%E%> because %qT is a dependent scope" msgstr "" -#: cp/parser.c:2788 +#: cp/parser.c:2790 #, gcc-internal-format msgid "%qE in class %qT does not name a type" msgstr "" -#: cp/parser.c:3338 +#: cp/parser.c:3340 #, gcc-internal-format msgid "expected string-literal" msgstr "" -#: cp/parser.c:3390 +#: cp/parser.c:3392 #, gcc-internal-format msgid "a wide string is invalid in this context" msgstr "" -#: cp/parser.c:3485 cp/parser.c:9627 +#: cp/parser.c:3487 cp/parser.c:9657 #, gcc-internal-format msgid "expected declaration" msgstr "" -#: cp/parser.c:3580 +#: cp/parser.c:3582 #, gcc-internal-format msgid "fixed-point types not supported in C++" msgstr "" -#: cp/parser.c:3660 +#: cp/parser.c:3662 #, gcc-internal-format msgid "ISO C++ forbids braced-groups within expressions" msgstr "" -#: cp/parser.c:3672 +#: cp/parser.c:3674 #, gcc-internal-format msgid "" "statement-expressions are not allowed outside functions nor in template-" "argument lists" msgstr "" -#: cp/parser.c:3720 cp/parser.c:3869 cp/parser.c:4022 +#: cp/parser.c:3728 cp/parser.c:3877 cp/parser.c:4030 #, gcc-internal-format msgid "expected primary-expression" msgstr "" -#: cp/parser.c:3750 +#: cp/parser.c:3758 #, gcc-internal-format msgid "%<this%> may not be used in this context" msgstr "" -#: cp/parser.c:3864 +#: cp/parser.c:3872 #, gcc-internal-format msgid "a template declaration cannot appear at block scope" msgstr "" -#: cp/parser.c:3998 +#: cp/parser.c:4006 #, gcc-internal-format msgid "local variable %qD may not appear in this context" msgstr "" -#: cp/parser.c:4162 +#: cp/parser.c:4170 #, gcc-internal-format msgid "expected id-expression" msgstr "" -#: cp/parser.c:4292 +#: cp/parser.c:4300 #, gcc-internal-format msgid "scope %qT before %<~%> is not a class-name" msgstr "" -#: cp/parser.c:4413 +#: cp/parser.c:4421 #, gcc-internal-format msgid "declaration of %<~%T%> as member of %qT" msgstr "" -#: cp/parser.c:4428 +#: cp/parser.c:4436 #, gcc-internal-format msgid "typedef-name %qD used as destructor declarator" msgstr "" -#: cp/parser.c:4464 cp/parser.c:15161 +#: cp/parser.c:4472 cp/parser.c:15219 #, gcc-internal-format msgid "expected unqualified-id" msgstr "" -#: cp/parser.c:4568 +#: cp/parser.c:4576 #, gcc-internal-format msgid "found %<:%> in nested-name-specifier, expected %<::%>" msgstr "" -#: cp/parser.c:4785 +#: cp/parser.c:4793 #, gcc-internal-format msgid "expected nested-name-specifier" msgstr "" -#: cp/parser.c:4967 cp/parser.c:6624 +#: cp/parser.c:4975 cp/parser.c:6644 #, gcc-internal-format msgid "types may not be defined in casts" msgstr "" -#: cp/parser.c:5027 +#: cp/parser.c:5035 #, gcc-internal-format msgid "types may not be defined in a %<typeid%> expression" msgstr "" #. Warn the user that a compound literal is not #. allowed in standard C++. -#: cp/parser.c:5136 +#: cp/parser.c:5144 #, gcc-internal-format msgid "ISO C++ forbids compound-literals" msgstr "" -#: cp/parser.c:5512 +#: cp/parser.c:5520 #, gcc-internal-format msgid "%qE does not have class type" msgstr "" -#: cp/parser.c:5597 cp/typeck.c:2318 +#: cp/parser.c:5605 cp/typeck.c:2318 #, gcc-internal-format msgid "invalid use of %qD" msgstr "" -#: cp/parser.c:5860 +#: cp/parser.c:5868 #, gcc-internal-format msgid "non-scalar type" msgstr "" -#: cp/parser.c:5996 +#: cp/parser.c:5957 +#, gcc-internal-format +msgid "ISO C++ does not allow %<alignof%> with a non-type" +msgstr "" + +#: cp/parser.c:6016 #, gcc-internal-format msgid "types may not be defined in %<noexcept%> expressions" msgstr "" -#: cp/parser.c:6227 +#: cp/parser.c:6247 #, gcc-internal-format msgid "array bound forbidden after parenthesized type-id" msgstr "" -#: cp/parser.c:6229 +#: cp/parser.c:6249 #, gcc-internal-format msgid "try removing the parentheses around the type-id" msgstr "" -#: cp/parser.c:6310 +#: cp/parser.c:6330 #, gcc-internal-format msgid "types may not be defined in a new-type-id" msgstr "" -#: cp/parser.c:6434 +#: cp/parser.c:6454 #, gcc-internal-format msgid "expression in new-declarator must have integral or enumeration type" msgstr "" -#: cp/parser.c:6689 +#: cp/parser.c:6709 #, gcc-internal-format msgid "use of old-style cast" msgstr "" -#: cp/parser.c:6818 +#: cp/parser.c:6838 #, gcc-internal-format msgid "%<>>%> operator will be treated as two right angle brackets in C++0x" msgstr "" -#: cp/parser.c:6821 +#: cp/parser.c:6841 #, gcc-internal-format msgid "suggest parentheses around %<>>%> expression" msgstr "" -#: cp/parser.c:6966 +#: cp/parser.c:6986 #, gcc-internal-format msgid "ISO C++ does not allow ?: with omitted middle operand" msgstr "" -#: cp/parser.c:7553 +#: cp/parser.c:7582 #, gcc-internal-format msgid "lambda-expression in unevaluated context" msgstr "" -#: cp/parser.c:7676 +#: cp/parser.c:7705 #, gcc-internal-format msgid "expected end of capture-list" msgstr "" -#: cp/parser.c:7727 +#: cp/parser.c:7756 #, gcc-internal-format msgid "ISO C++ does not allow initializers in lambda expression capture lists" msgstr "" -#: cp/parser.c:7821 +#: cp/parser.c:7850 #, gcc-internal-format msgid "default argument specified for lambda parameter" msgstr "" -#: cp/parser.c:8182 +#: cp/parser.c:8211 #, gcc-internal-format msgid "expected labeled-statement" msgstr "" -#: cp/parser.c:8220 +#: cp/parser.c:8249 #, gcc-internal-format msgid "case label %qE not within a switch statement" msgstr "" -#: cp/parser.c:8295 +#: cp/parser.c:8324 #, gcc-internal-format msgid "need %<typename%> before %qE because %qT is a dependent scope" msgstr "" -#: cp/parser.c:8304 +#: cp/parser.c:8333 #, gcc-internal-format msgid "%<%T::%D%> names the constructor, not the type" msgstr "" -#: cp/parser.c:8561 cp/parser.c:20894 +#: cp/parser.c:8590 cp/parser.c:20956 #, gcc-internal-format msgid "expected selection-statement" msgstr "" -#: cp/parser.c:8594 +#: cp/parser.c:8623 #, gcc-internal-format msgid "types may not be defined in conditions" msgstr "" -#: cp/parser.c:8744 +#: cp/parser.c:8897 #, gcc-internal-format -msgid "types may not be defined in range-based for loops" +msgid "inconsistent begin/end types in range-based for: %qT and %qT" msgstr "" -#: cp/parser.c:8900 +#: cp/parser.c:9044 cp/parser.c:20959 #, gcc-internal-format -msgid "inconsistent begin/end types in range-based for: %qT and %qT" +msgid "expected iteration-statement" msgstr "" -#: cp/parser.c:9051 cp/parser.c:20897 +#: cp/parser.c:9091 #, gcc-internal-format -msgid "expected iteration-statement" +msgid "range-based-for loops are not allowed in C++98 mode" msgstr "" #. Issue a warning about this use of a GNU extension. -#: cp/parser.c:9193 +#: cp/parser.c:9213 #, gcc-internal-format msgid "ISO C++ forbids computed gotos" msgstr "" -#: cp/parser.c:9206 cp/parser.c:20900 +#: cp/parser.c:9226 cp/parser.c:20962 #, gcc-internal-format msgid "expected jump-statement" msgstr "" -#: cp/parser.c:9338 cp/parser.c:17724 +#: cp/parser.c:9358 cp/parser.c:17782 #, gcc-internal-format msgid "extra %<;%>" msgstr "" -#: cp/parser.c:9564 +#: cp/parser.c:9584 #, gcc-internal-format msgid "%<__label__%> not at the beginning of a block" msgstr "" -#: cp/parser.c:9702 +#: cp/parser.c:9735 #, gcc-internal-format msgid "mixing declarations and function-definitions is forbidden" msgstr "" -#: cp/parser.c:9843 +#: cp/parser.c:9879 #, gcc-internal-format msgid "%<friend%> used outside of class" msgstr "" #. Complain about `auto' as a storage specifier, if #. we're complaining about C++0x compatibility. -#: cp/parser.c:9902 +#: cp/parser.c:9938 #, gcc-internal-format msgid "%<auto%> will change meaning in C++0x; please remove it" msgstr "" -#: cp/parser.c:9938 +#: cp/parser.c:9974 #, gcc-internal-format msgid "decl-specifier invalid in condition" msgstr "" -#: cp/parser.c:10029 +#: cp/parser.c:10065 #, gcc-internal-format msgid "class definition may not be declared a friend" msgstr "" -#: cp/parser.c:10098 cp/parser.c:18062 +#: cp/parser.c:10134 cp/parser.c:18120 #, gcc-internal-format msgid "templates may not be %<virtual%>" msgstr "" -#: cp/parser.c:10139 +#: cp/parser.c:10175 #, gcc-internal-format msgid "invalid linkage-specification" msgstr "" -#: cp/parser.c:10264 +#: cp/parser.c:10302 #, gcc-internal-format msgid "types may not be defined in %<decltype%> expressions" msgstr "" -#: cp/parser.c:10519 +#: cp/parser.c:10557 #, gcc-internal-format msgid "invalid use of %<auto%> in conversion operator" msgstr "" -#: cp/parser.c:10604 +#: cp/parser.c:10642 #, gcc-internal-format msgid "only constructors take member initializers" msgstr "" -#: cp/parser.c:10626 +#: cp/parser.c:10664 #, gcc-internal-format msgid "cannot expand initializer for member %<%D%>" msgstr "" -#: cp/parser.c:10681 +#: cp/parser.c:10719 #, gcc-internal-format msgid "anachronistic old-style base class initializer" msgstr "" -#: cp/parser.c:10749 +#: cp/parser.c:10787 #, gcc-internal-format msgid "" "keyword %<typename%> not allowed in this context (a qualified member " "initializer is implicitly a type)" msgstr "" -#: cp/parser.c:11057 +#: cp/parser.c:11095 #, gcc-internal-format msgid "expected operator" msgstr "" #. Warn that we do not support `export'. -#: cp/parser.c:11094 +#: cp/parser.c:11132 #, gcc-internal-format msgid "keyword %<export%> not implemented, and will be ignored" msgstr "" -#: cp/parser.c:11287 cp/parser.c:11385 cp/parser.c:11492 cp/parser.c:16298 +#: cp/parser.c:11325 cp/parser.c:11423 cp/parser.c:11530 cp/parser.c:16357 #, gcc-internal-format msgid "template parameter pack %qD cannot have a default argument" msgstr "" -#: cp/parser.c:11291 cp/parser.c:16305 +#: cp/parser.c:11329 cp/parser.c:16364 #, gcc-internal-format msgid "template parameter pack cannot have a default argument" msgstr "" -#: cp/parser.c:11389 cp/parser.c:11496 +#: cp/parser.c:11427 cp/parser.c:11534 #, gcc-internal-format msgid "template parameter packs cannot have default arguments" msgstr "" -#: cp/parser.c:11578 +#: cp/parser.c:11616 #, gcc-internal-format msgid "expected template-id" msgstr "" -#: cp/parser.c:11625 cp/parser.c:20858 +#: cp/parser.c:11663 cp/parser.c:20920 #, gcc-internal-format msgid "expected %<<%>" msgstr "" -#: cp/parser.c:11632 +#: cp/parser.c:11670 #, gcc-internal-format msgid "%<<::%> cannot begin a template-argument list" msgstr "" -#: cp/parser.c:11636 +#: cp/parser.c:11674 #, gcc-internal-format msgid "" "%<<:%> is an alternate spelling for %<[%>. Insert whitespace between %<<%> " "and %<::%>" msgstr "" -#: cp/parser.c:11714 +#: cp/parser.c:11752 #, gcc-internal-format msgid "parse error in template argument list" msgstr "" #. The name does not name a template. -#: cp/parser.c:11782 cp/parser.c:11897 cp/parser.c:12107 +#: cp/parser.c:11820 cp/parser.c:11935 cp/parser.c:12145 #, gcc-internal-format msgid "expected template-name" msgstr "" #. Explain what went wrong. -#: cp/parser.c:11828 +#: cp/parser.c:11866 #, gcc-internal-format msgid "non-template %qD used as template" msgstr "" -#: cp/parser.c:11830 +#: cp/parser.c:11868 #, gcc-internal-format msgid "use %<%T::template %D%> to indicate that it is a template" msgstr "" -#: cp/parser.c:11963 +#: cp/parser.c:12001 #, gcc-internal-format msgid "expected parameter pack before %<...%>" msgstr "" -#: cp/parser.c:12072 cp/parser.c:12090 cp/parser.c:12231 +#: cp/parser.c:12110 cp/parser.c:12128 cp/parser.c:12269 #, gcc-internal-format msgid "expected template-argument" msgstr "" -#: cp/parser.c:12214 +#: cp/parser.c:12252 #, gcc-internal-format msgid "invalid non-type template argument" msgstr "" -#: cp/parser.c:12328 +#: cp/parser.c:12366 #, gcc-internal-format msgid "explicit instantiation shall not use %<inline%> specifier" msgstr "" -#: cp/parser.c:12331 +#: cp/parser.c:12369 #, gcc-internal-format msgid "explicit instantiation shall not use %<constexpr%> specifier" msgstr "" -#: cp/parser.c:12388 +#: cp/parser.c:12426 #, gcc-internal-format msgid "template specialization with C linkage" msgstr "" -#: cp/parser.c:12608 +#: cp/parser.c:12646 #, gcc-internal-format msgid "expected type specifier" msgstr "" -#: cp/parser.c:12825 +#: cp/parser.c:12863 #, gcc-internal-format msgid "expected template-id for type" msgstr "" -#: cp/parser.c:12852 +#: cp/parser.c:12890 #, gcc-internal-format msgid "expected type-name" msgstr "" -#: cp/parser.c:13039 +#: cp/parser.c:13077 #, gcc-internal-format msgid "" "elaborated-type-specifier for a scoped enum must not use the %<%D%> keyword" msgstr "" -#: cp/parser.c:13223 +#: cp/parser.c:13261 #, gcc-internal-format msgid "declaration %qD does not declare anything" msgstr "" -#: cp/parser.c:13309 +#: cp/parser.c:13347 #, gcc-internal-format msgid "attributes ignored on uninstantiated type" msgstr "" -#: cp/parser.c:13313 +#: cp/parser.c:13351 #, gcc-internal-format msgid "attributes ignored on template instantiation" msgstr "" -#: cp/parser.c:13318 +#: cp/parser.c:13356 #, gcc-internal-format msgid "" "attributes ignored on elaborated-type-specifier that is not a forward " "declaration" msgstr "" -#: cp/parser.c:13442 +#: cp/parser.c:13480 #, gcc-internal-format msgid "%qD is an enumeration template" msgstr "" -#: cp/parser.c:13450 +#: cp/parser.c:13488 #, gcc-internal-format msgid "%qD is not an enumerator-name" msgstr "" -#: cp/parser.c:13513 +#: cp/parser.c:13551 #, gcc-internal-format msgid "expected %<;%> or %<{%>" msgstr "" -#: cp/parser.c:13560 +#: cp/parser.c:13598 #, gcc-internal-format msgid "cannot add an enumerator list to a template instantiation" msgstr "" -#: cp/parser.c:13569 cp/parser.c:17322 +#: cp/parser.c:13607 cp/parser.c:17380 #, gcc-internal-format msgid "declaration of %qD in namespace %qD which does not enclose %qD" msgstr "" -#: cp/parser.c:13574 cp/parser.c:17327 +#: cp/parser.c:13612 cp/parser.c:17385 #, gcc-internal-format msgid "declaration of %qD in %qD which does not enclose %qD" msgstr "" -#: cp/parser.c:13597 +#: cp/parser.c:13635 #, gcc-internal-format msgid "multiple definition of %q#T" msgstr "" -#: cp/parser.c:13623 +#: cp/parser.c:13661 #, gcc-internal-format msgid "opaque-enum-specifier without name" msgstr "" -#: cp/parser.c:13626 +#: cp/parser.c:13664 #, gcc-internal-format msgid "opaque-enum-specifier must use a simple identifier" msgstr "" -#: cp/parser.c:13797 +#: cp/parser.c:13839 #, gcc-internal-format msgid "%qD is not a namespace-name" msgstr "" -#: cp/parser.c:13798 +#: cp/parser.c:13840 #, gcc-internal-format msgid "expected namespace-name" msgstr "" -#: cp/parser.c:13923 +#: cp/parser.c:13965 #, gcc-internal-format msgid "%<namespace%> definition is not allowed here" msgstr "" -#: cp/parser.c:14064 +#: cp/parser.c:14106 #, gcc-internal-format msgid "a template-id may not appear in a using-declaration" msgstr "" -#: cp/parser.c:14478 +#: cp/parser.c:14528 #, gcc-internal-format msgid "a function-definition is not allowed here" msgstr "" -#: cp/parser.c:14490 +#: cp/parser.c:14540 #, gcc-internal-format msgid "an asm-specification is not allowed on a function-definition" msgstr "" -#: cp/parser.c:14494 +#: cp/parser.c:14544 #, gcc-internal-format msgid "attributes are not allowed on a function-definition" msgstr "" -#: cp/parser.c:14531 +#: cp/parser.c:14581 #, gcc-internal-format msgid "expected constructor, destructor, or type conversion" msgstr "" #. Anything else is an error. -#: cp/parser.c:14560 cp/parser.c:16464 +#: cp/parser.c:14616 cp/parser.c:16523 #, gcc-internal-format msgid "expected initializer" msgstr "" -#: cp/parser.c:14579 +#: cp/parser.c:14636 #, gcc-internal-format msgid "invalid type in declaration" msgstr "" -#: cp/parser.c:14654 +#: cp/parser.c:14712 #, gcc-internal-format msgid "initializer provided for function" msgstr "" -#: cp/parser.c:14687 +#: cp/parser.c:14745 #, gcc-internal-format msgid "attributes after parenthesized initializer ignored" msgstr "" -#: cp/parser.c:15084 +#: cp/parser.c:15142 #, gcc-internal-format msgid "array bound is not an integer constant" msgstr "" -#: cp/parser.c:15205 +#: cp/parser.c:15263 #, gcc-internal-format msgid "cannot define member of dependent typedef %qT" msgstr "" -#: cp/parser.c:15209 +#: cp/parser.c:15267 #, gcc-internal-format msgid "%<%T::%E%> is not a type" msgstr "" -#: cp/parser.c:15237 +#: cp/parser.c:15295 #, gcc-internal-format msgid "invalid use of constructor as a template" msgstr "" -#: cp/parser.c:15239 +#: cp/parser.c:15297 #, gcc-internal-format msgid "" "use %<%T::%D%> instead of %<%T::%D%> to name the constructor in a qualified " @@ -30311,221 +30423,221 @@ msgstr "" #. here because we do not have enough #. information about its original syntactic #. form. -#: cp/parser.c:15256 +#: cp/parser.c:15314 #, gcc-internal-format msgid "invalid declarator" msgstr "" -#: cp/parser.c:15322 +#: cp/parser.c:15380 #, gcc-internal-format msgid "expected declarator" msgstr "" -#: cp/parser.c:15417 +#: cp/parser.c:15475 #, gcc-internal-format msgid "%qD is a namespace" msgstr "" -#: cp/parser.c:15433 +#: cp/parser.c:15491 #, gcc-internal-format msgid "expected ptr-operator" msgstr "" -#: cp/parser.c:15492 +#: cp/parser.c:15550 #, gcc-internal-format msgid "duplicate cv-qualifier" msgstr "" -#: cp/parser.c:15614 cp/typeck2.c:427 +#: cp/parser.c:15672 cp/typeck2.c:427 #, gcc-internal-format msgid "invalid use of %<auto%>" msgstr "" -#: cp/parser.c:15708 +#: cp/parser.c:15766 #, gcc-internal-format msgid "expected type-specifier" msgstr "" -#: cp/parser.c:15951 +#: cp/parser.c:16010 #, gcc-internal-format msgid "expected %<,%> or %<...%>" msgstr "" -#: cp/parser.c:16008 +#: cp/parser.c:16067 #, gcc-internal-format msgid "types may not be defined in parameter types" msgstr "" -#: cp/parser.c:16231 +#: cp/parser.c:16290 #, gcc-internal-format msgid "file ends in default argument" msgstr "" -#: cp/parser.c:16277 +#: cp/parser.c:16336 #, gcc-internal-format msgid "deprecated use of default argument for parameter of non-function" msgstr "" -#: cp/parser.c:16281 +#: cp/parser.c:16340 #, gcc-internal-format msgid "default arguments are only permitted for function parameters" msgstr "" -#: cp/parser.c:16597 +#: cp/parser.c:16656 #, gcc-internal-format msgid "ISO C++ does not allow designated initializers" msgstr "" -#: cp/parser.c:16685 cp/parser.c:16807 +#: cp/parser.c:16744 cp/parser.c:16866 #, gcc-internal-format msgid "expected class-name" msgstr "" -#: cp/parser.c:16989 +#: cp/parser.c:17047 #, gcc-internal-format msgid "expected %<;%> after class definition" msgstr "" -#: cp/parser.c:16991 +#: cp/parser.c:17049 #, gcc-internal-format msgid "expected %<;%> after struct definition" msgstr "" -#: cp/parser.c:16993 +#: cp/parser.c:17051 #, gcc-internal-format msgid "expected %<;%> after union definition" msgstr "" -#: cp/parser.c:17277 +#: cp/parser.c:17335 #, gcc-internal-format msgid "expected %<{%> or %<:%>" msgstr "" -#: cp/parser.c:17289 +#: cp/parser.c:17347 #, gcc-internal-format msgid "global qualification of class name is invalid" msgstr "" -#: cp/parser.c:17296 +#: cp/parser.c:17354 #, gcc-internal-format msgid "qualified name does not name a class" msgstr "" -#: cp/parser.c:17308 +#: cp/parser.c:17366 #, gcc-internal-format msgid "invalid class name in declaration of %qD" msgstr "" -#: cp/parser.c:17341 +#: cp/parser.c:17399 #, gcc-internal-format msgid "extra qualification not allowed" msgstr "" -#: cp/parser.c:17353 +#: cp/parser.c:17411 #, gcc-internal-format msgid "an explicit specialization must be preceded by %<template <>%>" msgstr "" -#: cp/parser.c:17383 +#: cp/parser.c:17441 #, gcc-internal-format msgid "function template %qD redeclared as a class template" msgstr "" -#: cp/parser.c:17414 +#: cp/parser.c:17472 #, gcc-internal-format msgid "could not resolve typename type" msgstr "" -#: cp/parser.c:17466 +#: cp/parser.c:17524 #, gcc-internal-format msgid "previous definition of %q+#T" msgstr "" -#: cp/parser.c:17530 cp/parser.c:20903 +#: cp/parser.c:17588 cp/parser.c:20965 #, gcc-internal-format msgid "expected class-key" msgstr "" -#: cp/parser.c:17743 +#: cp/parser.c:17801 #, gcc-internal-format msgid "a class-key must be used when declaring a friend" msgstr "" -#: cp/parser.c:17758 +#: cp/parser.c:17816 #, gcc-internal-format msgid "friend declaration does not name a class or function" msgstr "" -#: cp/parser.c:17942 +#: cp/parser.c:18000 #, gcc-internal-format msgid "pure-specifier on function-definition" msgstr "" -#: cp/parser.c:17990 +#: cp/parser.c:18048 #, gcc-internal-format msgid "expected %<;%> at end of member declaration" msgstr "" -#: cp/parser.c:18056 +#: cp/parser.c:18114 #, gcc-internal-format msgid "invalid pure specifier (only %<= 0%> is allowed)" msgstr "" -#: cp/parser.c:18091 +#: cp/parser.c:18149 #, gcc-internal-format msgid "a brace-enclosed initializer is not allowed here" msgstr "" -#: cp/parser.c:18223 +#: cp/parser.c:18281 #, gcc-internal-format msgid "%<virtual%> specified more than once in base-specified" msgstr "" -#: cp/parser.c:18243 +#: cp/parser.c:18301 #, gcc-internal-format msgid "more than one access specifier in base-specified" msgstr "" -#: cp/parser.c:18267 +#: cp/parser.c:18325 #, gcc-internal-format msgid "keyword %<typename%> not allowed outside of templates" msgstr "" -#: cp/parser.c:18270 +#: cp/parser.c:18328 #, gcc-internal-format msgid "" "keyword %<typename%> not allowed in this context (the base class is " "implicitly a type)" msgstr "" -#: cp/parser.c:18347 cp/parser.c:18387 +#: cp/parser.c:18405 cp/parser.c:18445 #, gcc-internal-format msgid "types may not be defined in an exception-specification" msgstr "" -#: cp/parser.c:18369 +#: cp/parser.c:18427 #, gcc-internal-format msgid "" "dynamic exception specifications are deprecated in C++0x; use %<noexcept%> " "instead" msgstr "" -#: cp/parser.c:18568 +#: cp/parser.c:18626 #, gcc-internal-format msgid "types may not be defined in exception-declarations" msgstr "" -#: cp/parser.c:19465 +#: cp/parser.c:19523 #, gcc-internal-format msgid "specializing member %<%T::%E%> requires %<template<>%> syntax" msgstr "" -#: cp/parser.c:19470 +#: cp/parser.c:19528 #, gcc-internal-format msgid "invalid declaration of %<%T::%E%>" msgstr "" -#: cp/parser.c:19474 +#: cp/parser.c:19532 #, gcc-internal-format msgid "too few template-parameter-lists" msgstr "" @@ -30534,450 +30646,445 @@ msgstr "" #. something like: #. #. template <class T> template <class U> void S::f(); -#: cp/parser.c:19481 +#: cp/parser.c:19539 #, gcc-internal-format msgid "too many template-parameter-lists" msgstr "" -#: cp/parser.c:19769 +#: cp/parser.c:19827 #, gcc-internal-format msgid "named return values are no longer supported" msgstr "" -#: cp/parser.c:19849 +#: cp/parser.c:19907 #, gcc-internal-format msgid "invalid declaration of member template in local class" msgstr "" -#: cp/parser.c:19858 +#: cp/parser.c:19916 #, gcc-internal-format msgid "template with C linkage" msgstr "" -#: cp/parser.c:19877 +#: cp/parser.c:19935 #, gcc-internal-format msgid "invalid explicit specialization" msgstr "" -#: cp/parser.c:20004 +#: cp/parser.c:20065 #, gcc-internal-format msgid "template declaration of %<typedef%>" msgstr "" -#: cp/parser.c:20073 +#: cp/parser.c:20135 #, gcc-internal-format msgid "explicit template specialization cannot have a storage class" msgstr "" -#: cp/parser.c:20296 +#: cp/parser.c:20358 #, gcc-internal-format msgid "%<>>%> should be %<> >%> within a nested template argument list" msgstr "" -#: cp/parser.c:20309 +#: cp/parser.c:20371 #, gcc-internal-format msgid "spurious %<>>%>, use %<>%> to terminate a template argument list" msgstr "" -#: cp/parser.c:20650 +#: cp/parser.c:20712 #, gcc-internal-format msgid "invalid use of %qD in linkage specification" msgstr "" -#: cp/parser.c:20663 +#: cp/parser.c:20725 #, gcc-internal-format msgid "%<__thread%> before %qD" msgstr "" -#: cp/parser.c:20767 +#: cp/parser.c:20829 #, gcc-internal-format msgid "expected %<new%>" msgstr "" -#: cp/parser.c:20770 +#: cp/parser.c:20832 #, gcc-internal-format msgid "expected %<delete%>" msgstr "" -#: cp/parser.c:20773 +#: cp/parser.c:20835 #, gcc-internal-format msgid "expected %<return%>" msgstr "" -#: cp/parser.c:20779 +#: cp/parser.c:20841 #, gcc-internal-format msgid "expected %<extern%>" msgstr "" -#: cp/parser.c:20782 +#: cp/parser.c:20844 #, gcc-internal-format msgid "expected %<static_assert%>" msgstr "" -#: cp/parser.c:20785 +#: cp/parser.c:20847 #, gcc-internal-format msgid "expected %<decltype%>" msgstr "" -#: cp/parser.c:20788 +#: cp/parser.c:20850 #, gcc-internal-format msgid "expected %<operator%>" msgstr "" -#: cp/parser.c:20791 +#: cp/parser.c:20853 #, gcc-internal-format msgid "expected %<class%>" msgstr "" -#: cp/parser.c:20794 +#: cp/parser.c:20856 #, gcc-internal-format msgid "expected %<template%>" msgstr "" -#: cp/parser.c:20797 +#: cp/parser.c:20859 #, gcc-internal-format msgid "expected %<namespace%>" msgstr "" -#: cp/parser.c:20800 +#: cp/parser.c:20862 #, gcc-internal-format msgid "expected %<using%>" msgstr "" -#: cp/parser.c:20803 +#: cp/parser.c:20865 #, gcc-internal-format msgid "expected %<asm%>" msgstr "" -#: cp/parser.c:20806 +#: cp/parser.c:20868 #, gcc-internal-format msgid "expected %<try%>" msgstr "" -#: cp/parser.c:20809 +#: cp/parser.c:20871 #, gcc-internal-format msgid "expected %<catch%>" msgstr "" -#: cp/parser.c:20812 +#: cp/parser.c:20874 #, gcc-internal-format msgid "expected %<throw%>" msgstr "" -#: cp/parser.c:20815 +#: cp/parser.c:20877 #, gcc-internal-format msgid "expected %<__label__%>" msgstr "" -#: cp/parser.c:20818 +#: cp/parser.c:20880 #, gcc-internal-format msgid "expected %<@try%>" msgstr "" -#: cp/parser.c:20821 +#: cp/parser.c:20883 #, gcc-internal-format msgid "expected %<@synchronized%>" msgstr "" -#: cp/parser.c:20824 +#: cp/parser.c:20886 #, gcc-internal-format msgid "expected %<@throw%>" msgstr "" -#: cp/parser.c:20849 +#: cp/parser.c:20911 #, gcc-internal-format msgid "expected %<[%>" msgstr "" -#: cp/parser.c:20855 +#: cp/parser.c:20917 #, gcc-internal-format msgid "expected %<::%>" msgstr "" -#: cp/parser.c:20867 +#: cp/parser.c:20929 #, gcc-internal-format msgid "expected %<...%>" msgstr "" -#: cp/parser.c:20870 +#: cp/parser.c:20932 #, gcc-internal-format msgid "expected %<*%>" msgstr "" -#: cp/parser.c:20873 +#: cp/parser.c:20935 #, gcc-internal-format msgid "expected %<~%>" msgstr "" -#: cp/parser.c:20879 +#: cp/parser.c:20941 #, gcc-internal-format msgid "expected %<:%> or %<::%>" msgstr "" -#: cp/parser.c:20907 +#: cp/parser.c:20969 #, gcc-internal-format msgid "expected %<class%>, %<typename%>, or %<template%>" msgstr "" -#: cp/parser.c:21138 +#: cp/parser.c:21200 #, gcc-internal-format msgid "%qs tag used in naming %q#T" msgstr "" -#: cp/parser.c:21159 +#: cp/parser.c:21221 #, gcc-internal-format msgid "%qD redeclared with different access" msgstr "" -#: cp/parser.c:21178 +#: cp/parser.c:21240 #, gcc-internal-format msgid "%<template%> (as a disambiguator) is only allowed within templates" msgstr "" -#: cp/parser.c:21441 cp/parser.c:22655 cp/parser.c:22839 +#: cp/parser.c:21503 cp/parser.c:22735 cp/parser.c:22921 #, gcc-internal-format msgid "misplaced %<@%D%> Objective-C++ construct" msgstr "" -#: cp/parser.c:21563 +#: cp/parser.c:21625 #, gcc-internal-format msgid "objective-c++ message argument(s) are expected" msgstr "" -#: cp/parser.c:21592 +#: cp/parser.c:21654 #, gcc-internal-format msgid "%<@encode%> must specify a type as an argument" msgstr "" -#: cp/parser.c:21936 +#: cp/parser.c:22016 #, gcc-internal-format msgid "invalid Objective-C++ selector name" msgstr "" -#: cp/parser.c:22011 cp/parser.c:22029 +#: cp/parser.c:22091 cp/parser.c:22109 #, gcc-internal-format msgid "objective-c++ method declaration is expected" msgstr "" -#: cp/parser.c:22023 cp/parser.c:22088 +#: cp/parser.c:22103 cp/parser.c:22168 #, gcc-internal-format msgid "method attributes must be specified at the end" msgstr "" -#: cp/parser.c:22130 +#: cp/parser.c:22210 #, gcc-internal-format msgid "stray %qs between Objective-C++ methods" msgstr "" -#: cp/parser.c:22335 cp/parser.c:22342 cp/parser.c:22349 +#: cp/parser.c:22415 cp/parser.c:22422 cp/parser.c:22429 #, gcc-internal-format msgid "invalid type for instance variable" msgstr "" -#: cp/parser.c:22462 +#: cp/parser.c:22542 #, gcc-internal-format msgid "identifier expected after %<@protocol%>" msgstr "" -#: cp/parser.c:22620 +#: cp/parser.c:22700 #, gcc-internal-format msgid "" "attributes may not be specified before the %<@%D%> Objective-C++ keyword" msgstr "" -#: cp/parser.c:22627 +#: cp/parser.c:22707 #, gcc-internal-format msgid "prefix attributes are ignored before %<@%D%>" msgstr "" -#: cp/parser.c:22898 cp/parser.c:22905 cp/parser.c:22912 +#: cp/parser.c:22980 cp/parser.c:22987 cp/parser.c:22994 #, gcc-internal-format msgid "invalid type for property" msgstr "" -#: cp/parser.c:23059 -#, gcc-internal-format -msgid "getter/setter/ivar attribute must be followed by %<=%>" -msgstr "" - -#: cp/parser.c:24335 +#: cp/parser.c:24425 #, gcc-internal-format msgid "parenthesized initialization is not allowed in OpenMP %<for%> loop" msgstr "" -#: cp/parser.c:24502 cp/pt.c:11833 +#: cp/parser.c:24592 cp/pt.c:11883 #, gcc-internal-format msgid "iteration variable %qD should not be reduction" msgstr "" -#: cp/parser.c:24569 +#: cp/parser.c:24659 #, gcc-internal-format msgid "not enough collapsed for loops" msgstr "" -#: cp/parser.c:25029 +#: cp/parser.c:25119 #, gcc-internal-format msgid "junk at end of %<#pragma GCC pch_preprocess%>" msgstr "" -#: cp/parser.c:25192 +#: cp/parser.c:25282 #, gcc-internal-format msgid "inter-module optimizations not implemented for C++" msgstr "" -#: cp/pt.c:275 +#: cp/pt.c:274 #, gcc-internal-format msgid "data member %qD cannot be a member template" msgstr "" -#: cp/pt.c:287 +#: cp/pt.c:286 #, gcc-internal-format msgid "invalid member template declaration %qD" msgstr "" -#: cp/pt.c:654 +#: cp/pt.c:653 #, gcc-internal-format msgid "explicit specialization in non-namespace scope %qD" msgstr "" -#: cp/pt.c:668 +#: cp/pt.c:667 #, gcc-internal-format msgid "enclosing class templates are not explicitly specialized" msgstr "" -#: cp/pt.c:754 +#: cp/pt.c:753 #, gcc-internal-format msgid "specialization of %qD must appear at namespace scope" msgstr "" -#: cp/pt.c:762 +#: cp/pt.c:761 #, gcc-internal-format msgid "specialization of %qD in different namespace" msgstr "" -#: cp/pt.c:763 cp/pt.c:865 +#: cp/pt.c:762 cp/pt.c:864 #, gcc-internal-format msgid " from definition of %q+#D" msgstr "" -#: cp/pt.c:780 +#: cp/pt.c:779 #, gcc-internal-format msgid "" "explicit instantiation of %qD in namespace %qD (which does not enclose " "namespace %qD)" msgstr "" -#: cp/pt.c:798 +#: cp/pt.c:797 #, gcc-internal-format msgid "name of class shadows template template parameter %qD" msgstr "" -#: cp/pt.c:831 +#: cp/pt.c:830 #, gcc-internal-format msgid "specialization of %qT after instantiation" msgstr "" -#: cp/pt.c:864 +#: cp/pt.c:863 #, gcc-internal-format msgid "specializing %q#T in different namespace" msgstr "" #. But if we've had an implicit instantiation, that's a #. problem ([temp.expl.spec]/6). -#: cp/pt.c:902 +#: cp/pt.c:901 #, gcc-internal-format msgid "specialization %qT after instantiation %qT" msgstr "" -#: cp/pt.c:919 +#: cp/pt.c:918 #, gcc-internal-format msgid "template specialization of %qD not allowed by ISO C++" msgstr "" -#: cp/pt.c:923 +#: cp/pt.c:922 #, gcc-internal-format msgid "explicit specialization of non-template %qT" msgstr "" -#: cp/pt.c:1340 +#: cp/pt.c:1339 #, gcc-internal-format msgid "specialization of %qD after instantiation" msgstr "" -#: cp/pt.c:1733 +#: cp/pt.c:1735 #, gcc-internal-format msgid "%s %+#D" msgstr "" -#: cp/pt.c:1816 +#: cp/pt.c:1818 #, gcc-internal-format msgid "%qD is not a function template" msgstr "" -#: cp/pt.c:2025 +#: cp/pt.c:2027 #, gcc-internal-format msgid "template-id %qD for %q+D does not match any template declaration" msgstr "" -#: cp/pt.c:2028 +#: cp/pt.c:2030 #, gcc-internal-format msgid "" "saw %d %<template<>%>, need %d for specializing a member function template" msgstr "" -#: cp/pt.c:2037 +#: cp/pt.c:2039 #, gcc-internal-format msgid "ambiguous template specialization %qD for %q+D" msgstr "" #. This case handles bogus declarations like template <> #. template <class T> void f<int>(); -#: cp/pt.c:2273 cp/pt.c:2327 +#: cp/pt.c:2275 cp/pt.c:2329 #, gcc-internal-format msgid "template-id %qD in declaration of primary template" msgstr "" -#: cp/pt.c:2286 +#: cp/pt.c:2288 #, gcc-internal-format msgid "template parameter list used in explicit instantiation" msgstr "" -#: cp/pt.c:2292 +#: cp/pt.c:2294 #, gcc-internal-format msgid "definition provided for explicit instantiation" msgstr "" -#: cp/pt.c:2300 +#: cp/pt.c:2302 #, gcc-internal-format msgid "too many template parameter lists in declaration of %qD" msgstr "" -#: cp/pt.c:2303 +#: cp/pt.c:2305 #, gcc-internal-format msgid "too few template parameter lists in declaration of %qD" msgstr "" -#: cp/pt.c:2305 +#: cp/pt.c:2307 #, gcc-internal-format msgid "explicit specialization of %qD must be introduced by %<template <>%>" msgstr "" -#: cp/pt.c:2324 +#: cp/pt.c:2326 #, gcc-internal-format msgid "function template partial specialization %qD is not allowed" msgstr "" -#: cp/pt.c:2356 +#: cp/pt.c:2358 #, gcc-internal-format msgid "default argument specified in explicit specialization" msgstr "" -#: cp/pt.c:2386 +#: cp/pt.c:2388 #, gcc-internal-format msgid "%qD is not a template function" msgstr "" -#: cp/pt.c:2394 +#: cp/pt.c:2396 #, gcc-internal-format msgid "%qD is not declared in %qD" msgstr "" @@ -30990,142 +31097,142 @@ msgstr "" #. program is ill-formed. #. #. Similar language is found in [temp.explicit]. -#: cp/pt.c:2456 +#: cp/pt.c:2458 #, gcc-internal-format msgid "specialization of implicitly-declared special member function" msgstr "" -#: cp/pt.c:2500 +#: cp/pt.c:2502 #, gcc-internal-format msgid "no member function %qD declared in %qT" msgstr "" -#: cp/pt.c:3119 +#: cp/pt.c:3121 #, gcc-internal-format msgid "base initializer expansion %<%T%> contains no parameter packs" msgstr "" -#: cp/pt.c:3180 +#: cp/pt.c:3182 #, gcc-internal-format msgid "expansion pattern %<%T%> contains no argument packs" msgstr "" -#: cp/pt.c:3182 +#: cp/pt.c:3184 #, gcc-internal-format msgid "expansion pattern %<%E%> contains no argument packs" msgstr "" -#: cp/pt.c:3223 +#: cp/pt.c:3225 #, gcc-internal-format msgid "parameter packs not expanded with %<...%>:" msgstr "" -#: cp/pt.c:3238 cp/pt.c:4259 +#: cp/pt.c:3240 cp/pt.c:4260 #, gcc-internal-format msgid " %qD" msgstr "" -#: cp/pt.c:3240 +#: cp/pt.c:3242 #, gcc-internal-format msgid " <anonymous>" msgstr "" -#: cp/pt.c:3357 +#: cp/pt.c:3359 #, gcc-internal-format msgid "declaration of %q+#D" msgstr "" -#: cp/pt.c:3358 +#: cp/pt.c:3360 #, gcc-internal-format msgid " shadows template parm %q+#D" msgstr "" -#: cp/pt.c:4255 +#: cp/pt.c:4256 #, gcc-internal-format msgid "template parameters not used in partial specialization:" msgstr "" -#: cp/pt.c:4273 +#: cp/pt.c:4274 #, gcc-internal-format msgid "partial specialization %qT does not specialize any template arguments" msgstr "" -#: cp/pt.c:4318 +#: cp/pt.c:4319 #, gcc-internal-format msgid "" "parameter pack argument %qE must be at the end of the template argument list" msgstr "" -#: cp/pt.c:4321 +#: cp/pt.c:4322 #, gcc-internal-format msgid "" "parameter pack argument %qT must be at the end of the template argument list" msgstr "" -#: cp/pt.c:4340 +#: cp/pt.c:4341 #, gcc-internal-format msgid "template argument %qE involves template parameter(s)" msgstr "" -#: cp/pt.c:4386 +#: cp/pt.c:4387 #, gcc-internal-format msgid "type %qT of template argument %qE depends on a template parameter" msgid_plural "type %qT of template argument %qE depends on template parameters" msgstr[0] "" msgstr[1] "" -#: cp/pt.c:4416 +#: cp/pt.c:4417 #, gcc-internal-format msgid "partial specialization of %qT after instantiation of %qT" msgstr "" -#: cp/pt.c:4509 +#: cp/pt.c:4510 #, gcc-internal-format msgid "no default argument for %qD" msgstr "" -#: cp/pt.c:4530 +#: cp/pt.c:4531 #, gcc-internal-format msgid "parameter pack %qE must be at the end of the template parameter list" msgstr "" -#: cp/pt.c:4533 +#: cp/pt.c:4534 #, gcc-internal-format msgid "parameter pack %qT must be at the end of the template parameter list" msgstr "" -#: cp/pt.c:4570 +#: cp/pt.c:4571 #, gcc-internal-format msgid "" "default template arguments may not be used in function template friend re-" "declaration" msgstr "" -#: cp/pt.c:4573 +#: cp/pt.c:4574 #, gcc-internal-format msgid "" "default template arguments may not be used in function template friend " "declarations" msgstr "" -#: cp/pt.c:4576 +#: cp/pt.c:4577 #, gcc-internal-format msgid "" "default template arguments may not be used in function templates without -" "std=c++0x or -std=gnu++0x" msgstr "" -#: cp/pt.c:4579 +#: cp/pt.c:4580 #, gcc-internal-format msgid "default template arguments may not be used in partial specializations" msgstr "" -#: cp/pt.c:4582 cp/pt.c:4633 +#: cp/pt.c:4583 cp/pt.c:4634 #, gcc-internal-format msgid "default argument for template parameter for class enclosing %qD" msgstr "" -#: cp/pt.c:4726 +#: cp/pt.c:4727 #, gcc-internal-format msgid "template class without a name" msgstr "" @@ -31133,7 +31240,7 @@ msgstr "" #. [temp.mem] #. #. A destructor shall not be a member template. -#: cp/pt.c:4736 +#: cp/pt.c:4737 #, gcc-internal-format msgid "destructor %qD declared as member template" msgstr "" @@ -31143,76 +31250,76 @@ msgstr "" #. An allocation function can be a function #. template. ... Template allocation functions shall #. have two or more parameters. -#: cp/pt.c:4751 +#: cp/pt.c:4752 #, gcc-internal-format msgid "invalid template declaration of %qD" msgstr "" -#: cp/pt.c:4868 +#: cp/pt.c:4869 #, gcc-internal-format msgid "template definition of non-template %q#D" msgstr "" -#: cp/pt.c:4911 +#: cp/pt.c:4912 #, gcc-internal-format msgid "expected %d levels of template parms for %q#D, got %d" msgstr "" -#: cp/pt.c:4923 +#: cp/pt.c:4924 #, gcc-internal-format msgid "got %d template parameters for %q#D" msgstr "" -#: cp/pt.c:4926 +#: cp/pt.c:4927 #, gcc-internal-format msgid "got %d template parameters for %q#T" msgstr "" -#: cp/pt.c:4928 +#: cp/pt.c:4929 #, gcc-internal-format, gfc-internal-format msgid " but %d required" msgstr "" -#: cp/pt.c:4949 +#: cp/pt.c:4950 #, gcc-internal-format msgid "template arguments to %qD do not match original template %qD" msgstr "" -#: cp/pt.c:4953 +#: cp/pt.c:4954 #, gcc-internal-format msgid "use template<> for an explicit specialization" msgstr "" -#: cp/pt.c:5049 +#: cp/pt.c:5050 #, gcc-internal-format msgid "%qT is not a template type" msgstr "" -#: cp/pt.c:5062 +#: cp/pt.c:5063 #, gcc-internal-format msgid "template specifiers not specified in declaration of %qD" msgstr "" -#: cp/pt.c:5073 +#: cp/pt.c:5074 #, gcc-internal-format, gfc-internal-format msgid "redeclared with %d template parameter" msgid_plural "redeclared with %d template parameters" msgstr[0] "" msgstr[1] "" -#: cp/pt.c:5077 +#: cp/pt.c:5078 #, gcc-internal-format msgid "previous declaration %q+D used %d template parameter" msgid_plural "previous declaration %q+D used %d template parameters" msgstr[0] "" msgstr[1] "" -#: cp/pt.c:5114 +#: cp/pt.c:5115 #, gcc-internal-format msgid "template parameter %q+#D" msgstr "" -#: cp/pt.c:5115 +#: cp/pt.c:5116 #, gcc-internal-format msgid "redeclared here as %q#D" msgstr "" @@ -31221,244 +31328,244 @@ msgstr "" #. #. A template-parameter may not be given default arguments #. by two different declarations in the same scope. -#: cp/pt.c:5125 +#: cp/pt.c:5126 #, gcc-internal-format msgid "redefinition of default argument for %q#D" msgstr "" -#: cp/pt.c:5127 +#: cp/pt.c:5128 #, gcc-internal-format msgid "original definition appeared here" msgstr "" -#: cp/pt.c:5214 +#: cp/pt.c:5216 #, gcc-internal-format msgid "" "%qE is not a valid template argument for type %qT because function %qD has " "not external linkage" msgstr "" -#: cp/pt.c:5236 cp/pt.c:5567 +#: cp/pt.c:5238 cp/pt.c:5569 #, gcc-internal-format msgid "%qE is not a valid template argument for type %qT" msgstr "" -#: cp/pt.c:5238 +#: cp/pt.c:5240 #, gcc-internal-format msgid "it must be a pointer-to-member of the form %<&X::Y%>" msgstr "" -#: cp/pt.c:5307 +#: cp/pt.c:5309 #, gcc-internal-format msgid "" "%qE is not a valid template argument for type %qT because string literals " "can never be used in this context" msgstr "" -#: cp/pt.c:5403 +#: cp/pt.c:5405 #, gcc-internal-format msgid "" "%qE is not a valid template argument for type %qT because it is a non-" "constant expression" msgstr "" -#: cp/pt.c:5439 +#: cp/pt.c:5441 #, gcc-internal-format msgid "" "%qD is not a valid template argument because %qD is a variable, not the " "address of a variable" msgstr "" -#: cp/pt.c:5457 +#: cp/pt.c:5459 #, gcc-internal-format msgid "" "%qE is not a valid template argument of type %qT because %qE is not a " "variable" msgstr "" -#: cp/pt.c:5464 +#: cp/pt.c:5466 #, gcc-internal-format msgid "" "%qE is not a valid template argument of type %qT because %qD does not have " "external linkage" msgstr "" -#: cp/pt.c:5494 +#: cp/pt.c:5496 #, gcc-internal-format msgid "" "%qE is not a valid template argument for type %qT because of conflicts in cv-" "qualification" msgstr "" -#: cp/pt.c:5501 +#: cp/pt.c:5503 #, gcc-internal-format msgid "" "%qE is not a valid template argument for type %qT because it is not an lvalue" msgstr "" -#: cp/pt.c:5518 +#: cp/pt.c:5520 #, gcc-internal-format msgid "" "%q#D is not a valid template argument for type %qT because a reference " "variable does not have a constant address" msgstr "" -#: cp/pt.c:5527 +#: cp/pt.c:5529 #, gcc-internal-format msgid "" "%qE is not a valid template argument for type %qT because it is not an " "object with external linkage" msgstr "" -#: cp/pt.c:5535 +#: cp/pt.c:5537 #, gcc-internal-format msgid "" "%qE is not a valid template argument for type %qT because object %qD has not " "external linkage" msgstr "" -#: cp/pt.c:5568 +#: cp/pt.c:5570 #, gcc-internal-format msgid "it must be the address of a function with external linkage" msgstr "" -#: cp/pt.c:5582 +#: cp/pt.c:5584 #, gcc-internal-format msgid "" "%qE is not a valid template argument for type %qT because it is a pointer" msgstr "" -#: cp/pt.c:5584 +#: cp/pt.c:5586 #, gcc-internal-format msgid "try using %qE instead" msgstr "" -#: cp/pt.c:5622 +#: cp/pt.c:5624 #, gcc-internal-format msgid "" "%qE is not a valid template argument for type %qT because it is of type %qT" msgstr "" -#: cp/pt.c:5628 +#: cp/pt.c:5630 #, gcc-internal-format msgid "standard conversions are not allowed in this context" msgstr "" -#: cp/pt.c:5962 +#: cp/pt.c:5964 #, gcc-internal-format msgid "injected-class-name %qD used as template template argument" msgstr "" -#: cp/pt.c:5987 +#: cp/pt.c:5989 #, gcc-internal-format msgid "to refer to a type member of a template parameter, use %<typename %E%>" msgstr "" -#: cp/pt.c:6003 cp/pt.c:6022 cp/pt.c:6068 +#: cp/pt.c:6005 cp/pt.c:6024 cp/pt.c:6070 #, gcc-internal-format msgid "type/value mismatch at argument %d in template parameter list for %qD" msgstr "" -#: cp/pt.c:6007 +#: cp/pt.c:6009 #, gcc-internal-format msgid " expected a constant of type %qT, got %qT" msgstr "" -#: cp/pt.c:6011 +#: cp/pt.c:6013 #, gcc-internal-format msgid " expected a class template, got %qE" msgstr "" -#: cp/pt.c:6013 +#: cp/pt.c:6015 #, gcc-internal-format msgid " expected a type, got %qE" msgstr "" -#: cp/pt.c:6026 +#: cp/pt.c:6028 #, gcc-internal-format msgid " expected a type, got %qT" msgstr "" -#: cp/pt.c:6028 +#: cp/pt.c:6030 #, gcc-internal-format msgid " expected a class template, got %qT" msgstr "" -#: cp/pt.c:6071 +#: cp/pt.c:6073 #, gcc-internal-format msgid " expected a template of type %qD, got %qT" msgstr "" #. Not sure if this is reachable, but it doesn't hurt #. to be robust. -#: cp/pt.c:6104 +#: cp/pt.c:6106 #, gcc-internal-format msgid "type mismatch in nontype parameter pack" msgstr "" -#: cp/pt.c:6126 +#: cp/pt.c:6128 #, gcc-internal-format msgid "could not convert template argument %qE to %qT" msgstr "" -#: cp/pt.c:6191 cp/pt.c:6336 +#: cp/pt.c:6193 cp/pt.c:6338 #, gcc-internal-format, gfc-internal-format msgid "wrong number of template arguments (%d, should be %d)" msgstr "" -#: cp/pt.c:6332 +#: cp/pt.c:6334 #, gcc-internal-format, gfc-internal-format msgid "wrong number of template arguments (%d, should be %d or more)" msgstr "" -#: cp/pt.c:6340 +#: cp/pt.c:6342 #, gcc-internal-format msgid "provided for %q+D" msgstr "" -#: cp/pt.c:6407 +#: cp/pt.c:6409 #, gcc-internal-format msgid "cannot expand %<%E%> into a fixed-length argument list" msgstr "" -#: cp/pt.c:6410 +#: cp/pt.c:6412 #, gcc-internal-format msgid "cannot expand %<%T%> into a fixed-length argument list" msgstr "" -#: cp/pt.c:6433 +#: cp/pt.c:6435 #, gcc-internal-format, gfc-internal-format msgid "template argument %d is invalid" msgstr "" -#: cp/pt.c:6761 +#: cp/pt.c:6763 #, gcc-internal-format msgid "non-template type %qT used as a template" msgstr "" -#: cp/pt.c:6763 +#: cp/pt.c:6765 #, gcc-internal-format msgid "for template declaration %q+D" msgstr "" -#: cp/pt.c:7480 +#: cp/pt.c:7484 #, gcc-internal-format msgid "" "template instantiation depth exceeds maximum of %d (use -ftemplate-depth= to " "increase the maximum) instantiating %qD" msgstr "" -#: cp/pt.c:8750 +#: cp/pt.c:8786 #, gcc-internal-format msgid "mismatched argument pack lengths while expanding %<%T%>" msgstr "" -#: cp/pt.c:8754 +#: cp/pt.c:8790 #, gcc-internal-format msgid "mismatched argument pack lengths while expanding %<%E%>" msgstr "" -#: cp/pt.c:9822 +#: cp/pt.c:9863 #, gcc-internal-format msgid "instantiation of %q+D as type %qT" msgstr "" @@ -31476,229 +31583,229 @@ msgstr "" #. #. is an attempt to declare a variable with function #. type. -#: cp/pt.c:9969 +#: cp/pt.c:10010 #, gcc-internal-format msgid "variable %qD has function type" msgstr "" -#: cp/pt.c:10137 +#: cp/pt.c:10178 #, gcc-internal-format msgid "invalid parameter type %qT" msgstr "" -#: cp/pt.c:10139 +#: cp/pt.c:10180 #, gcc-internal-format msgid "in declaration %q+D" msgstr "" -#: cp/pt.c:10216 +#: cp/pt.c:10257 #, gcc-internal-format msgid "function returning an array" msgstr "" -#: cp/pt.c:10218 +#: cp/pt.c:10259 #, gcc-internal-format msgid "function returning a function" msgstr "" -#: cp/pt.c:10248 +#: cp/pt.c:10289 #, gcc-internal-format msgid "creating pointer to member function of non-class type %qT" msgstr "" -#: cp/pt.c:10711 +#: cp/pt.c:10752 #, gcc-internal-format msgid "forming reference to void" msgstr "" -#: cp/pt.c:10713 +#: cp/pt.c:10754 #, gcc-internal-format msgid "forming pointer to reference type %qT" msgstr "" -#: cp/pt.c:10715 +#: cp/pt.c:10756 #, gcc-internal-format msgid "forming reference to reference type %qT" msgstr "" -#: cp/pt.c:10764 +#: cp/pt.c:10805 #, gcc-internal-format msgid "creating pointer to member of non-class type %qT" msgstr "" -#: cp/pt.c:10770 +#: cp/pt.c:10811 #, gcc-internal-format msgid "creating pointer to member reference type %qT" msgstr "" -#: cp/pt.c:10776 +#: cp/pt.c:10817 #, gcc-internal-format msgid "creating pointer to member of type void" msgstr "" -#: cp/pt.c:10838 +#: cp/pt.c:10879 #, gcc-internal-format msgid "creating array of %qT" msgstr "" -#: cp/pt.c:10844 +#: cp/pt.c:10885 #, gcc-internal-format msgid "creating array of %qT, which is an abstract class type" msgstr "" -#: cp/pt.c:10873 +#: cp/pt.c:10914 #, gcc-internal-format msgid "%qT is not a class, struct, or union type" msgstr "" -#: cp/pt.c:10908 +#: cp/pt.c:10949 #, gcc-internal-format msgid "%qT resolves to %qT, which is not an enumeration type" msgstr "" -#: cp/pt.c:10911 +#: cp/pt.c:10952 #, gcc-internal-format msgid "%qT resolves to %qT, which is is not a class type" msgstr "" -#: cp/pt.c:11018 +#: cp/pt.c:11059 #, gcc-internal-format msgid "use of %qs in template" msgstr "" -#: cp/pt.c:11150 +#: cp/pt.c:11191 #, gcc-internal-format msgid "qualifying type %qT does not match destructor name ~%qT" msgstr "" -#: cp/pt.c:11165 +#: cp/pt.c:11206 #, gcc-internal-format msgid "" "dependent-name %qE is parsed as a non-type, but instantiation yields a type" msgstr "" -#: cp/pt.c:11167 +#: cp/pt.c:11208 #, gcc-internal-format msgid "say %<typename %E%> if a type is meant" msgstr "" -#: cp/pt.c:11313 +#: cp/pt.c:11354 #, gcc-internal-format msgid "using invalid field %qD" msgstr "" -#: cp/pt.c:11656 cp/pt.c:12369 +#: cp/pt.c:11704 cp/pt.c:12419 #, gcc-internal-format msgid "invalid use of pack expansion expression" msgstr "" -#: cp/pt.c:11660 cp/pt.c:12373 +#: cp/pt.c:11708 cp/pt.c:12423 #, gcc-internal-format msgid "use %<...%> to expand argument pack" msgstr "" -#: cp/pt.c:13106 +#: cp/pt.c:13156 #, gcc-internal-format msgid "%qT is not a class or namespace" msgstr "" -#: cp/pt.c:13109 +#: cp/pt.c:13159 #, gcc-internal-format msgid "%qD is not a class or namespace" msgstr "" -#: cp/pt.c:13385 +#: cp/pt.c:13438 #, gcc-internal-format msgid "%qT is/uses anonymous type" msgstr "" -#: cp/pt.c:13387 +#: cp/pt.c:13440 #, gcc-internal-format msgid "template argument for %qD uses local type %qT" msgstr "" -#: cp/pt.c:13397 +#: cp/pt.c:13450 #, gcc-internal-format msgid "%qT is a variably modified type" msgstr "" -#: cp/pt.c:13408 +#: cp/pt.c:13461 #, gcc-internal-format msgid "integral expression %qE is not constant" msgstr "" -#: cp/pt.c:13426 +#: cp/pt.c:13479 #, gcc-internal-format msgid " trying to instantiate %qD" msgstr "" -#: cp/pt.c:16514 +#: cp/pt.c:16567 #, gcc-internal-format msgid "ambiguous class template instantiation for %q#T" msgstr "" -#: cp/pt.c:16518 +#: cp/pt.c:16571 #, gcc-internal-format msgid "%s %+#T" msgstr "" -#: cp/pt.c:16542 cp/pt.c:16625 +#: cp/pt.c:16595 cp/pt.c:16678 #, gcc-internal-format msgid "explicit instantiation of non-template %q#D" msgstr "" -#: cp/pt.c:16557 +#: cp/pt.c:16610 #, gcc-internal-format msgid "%qD is not a static data member of a class template" msgstr "" -#: cp/pt.c:16563 cp/pt.c:16620 +#: cp/pt.c:16616 cp/pt.c:16673 #, gcc-internal-format msgid "no matching template for %qD found" msgstr "" -#: cp/pt.c:16568 +#: cp/pt.c:16621 #, gcc-internal-format msgid "" "type %qT for explicit instantiation %qD does not match declared type %qT" msgstr "" -#: cp/pt.c:16576 +#: cp/pt.c:16629 #, gcc-internal-format msgid "explicit instantiation of %q#D" msgstr "" -#: cp/pt.c:16612 +#: cp/pt.c:16665 #, gcc-internal-format msgid "duplicate explicit instantiation of %q#D" msgstr "" -#: cp/pt.c:16635 cp/pt.c:16727 +#: cp/pt.c:16688 cp/pt.c:16780 #, gcc-internal-format msgid "ISO C++ 1998 forbids the use of %<extern%> on explicit instantiations" msgstr "" -#: cp/pt.c:16640 cp/pt.c:16744 +#: cp/pt.c:16693 cp/pt.c:16797 #, gcc-internal-format msgid "storage class %qD applied to template instantiation" msgstr "" -#: cp/pt.c:16705 +#: cp/pt.c:16758 #, gcc-internal-format msgid "explicit instantiation of non-template type %qT" msgstr "" -#: cp/pt.c:16714 +#: cp/pt.c:16767 #, gcc-internal-format msgid "explicit instantiation of %q#T before definition of template" msgstr "" -#: cp/pt.c:16732 +#: cp/pt.c:16785 #, gcc-internal-format msgid "ISO C++ forbids the use of %qE on explicit instantiations" msgstr "" -#: cp/pt.c:16778 +#: cp/pt.c:16831 #, gcc-internal-format msgid "duplicate explicit instantiation of %q#T" msgstr "" @@ -31710,12 +31817,12 @@ msgstr "" #. member function or static data member of a class template #. shall be present in every translation unit in which it is #. explicitly instantiated. -#: cp/pt.c:17255 +#: cp/pt.c:17308 #, gcc-internal-format msgid "explicit instantiation of %qD but no definition available" msgstr "" -#: cp/pt.c:17429 +#: cp/pt.c:17482 #, gcc-internal-format msgid "" "template instantiation depth exceeds maximum of %d instantiating %q+D, " @@ -31723,29 +31830,32 @@ msgid "" "the maximum)" msgstr "" -#: cp/pt.c:17795 +#: cp/pt.c:17848 #, gcc-internal-format msgid "%q#T is not a valid type for a template constant parameter" msgstr "" -#: cp/pt.c:18842 +#: cp/pt.c:18899 #, gcc-internal-format msgid "" "deducing from brace-enclosed initializer list requires #include " "<initializer_list>" msgstr "" -#: cp/pt.c:18895 +#: cp/pt.c:18952 #, gcc-internal-format msgid "variable %q#D with %<auto%> type used in its own initializer" msgstr "" -#: cp/pt.c:18919 +#. If type is error_mark_node a diagnostic must have been +#. emitted by now. Also, having a mention to '<type error>' +#. in the diagnostic is not really useful to the user. +#: cp/pt.c:18980 #, gcc-internal-format msgid "unable to deduce %qT from %qE" msgstr "" -#: cp/pt.c:18930 +#: cp/pt.c:18991 #, gcc-internal-format msgid "inconsistent deduction for %qT: %qT and then %qT" msgstr "" @@ -31807,69 +31917,69 @@ msgstr "" msgid "%qT is an inaccessible base of %qT" msgstr "" -#: cp/search.c:1856 +#: cp/search.c:1862 #, gcc-internal-format msgid "deprecated covariant return type for %q+#D" msgstr "" -#: cp/search.c:1858 cp/search.c:1873 cp/search.c:1878 cp/search.c:1897 +#: cp/search.c:1864 cp/search.c:1879 cp/search.c:1884 cp/search.c:1903 #, gcc-internal-format msgid " overriding %q+#D" msgstr "" -#: cp/search.c:1872 +#: cp/search.c:1878 #, gcc-internal-format msgid "invalid covariant return type for %q+#D" msgstr "" -#: cp/search.c:1877 +#: cp/search.c:1883 #, gcc-internal-format msgid "conflicting return type specified for %q+#D" msgstr "" -#: cp/search.c:1887 +#: cp/search.c:1893 #, gcc-internal-format msgid "looser throw specifier for %q+#F" msgstr "" -#: cp/search.c:1888 +#: cp/search.c:1894 #, gcc-internal-format msgid " overriding %q+#F" msgstr "" -#: cp/search.c:1896 +#: cp/search.c:1902 #, gcc-internal-format msgid "conflicting type attributes specified for %q+#D" msgstr "" -#: cp/search.c:1906 +#: cp/search.c:1912 #, gcc-internal-format msgid "deleted function %q+D" msgstr "" -#: cp/search.c:1907 +#: cp/search.c:1913 #, gcc-internal-format msgid "overriding non-deleted function %q+D" msgstr "" -#: cp/search.c:1912 +#: cp/search.c:1918 #, gcc-internal-format msgid "non-deleted function %q+D" msgstr "" -#: cp/search.c:1913 +#: cp/search.c:1919 #, gcc-internal-format msgid "overriding deleted function %q+D" msgstr "" #. A static member function cannot match an inherited #. virtual member function. -#: cp/search.c:2010 +#: cp/search.c:2016 #, gcc-internal-format msgid "%q+#D cannot be declared" msgstr "" -#: cp/search.c:2011 +#: cp/search.c:2017 #, gcc-internal-format msgid " since %q+#D declared in base class" msgstr "" @@ -31879,504 +31989,514 @@ msgstr "" msgid "suggest explicit braces around empty body in %<do%> statement" msgstr "" -#: cp/semantics.c:1350 +#: cp/semantics.c:1386 #, gcc-internal-format msgid "type of asm operand %qE could not be determined" msgstr "" -#: cp/semantics.c:1408 +#: cp/semantics.c:1444 #, gcc-internal-format msgid "__label__ declarations are only allowed in function scopes" msgstr "" -#: cp/semantics.c:1507 +#: cp/semantics.c:1546 #, gcc-internal-format msgid "invalid use of member %q+D in static member function" msgstr "" -#: cp/semantics.c:1509 +#: cp/semantics.c:1548 #, gcc-internal-format msgid "invalid use of non-static data member %q+D" msgstr "" -#: cp/semantics.c:1510 +#: cp/semantics.c:1549 #, gcc-internal-format msgid "from this location" msgstr "" -#: cp/semantics.c:2086 +#: cp/semantics.c:2136 #, gcc-internal-format msgid "arguments to destructor are not allowed" msgstr "" -#: cp/semantics.c:2144 +#: cp/semantics.c:2194 #, gcc-internal-format msgid "%<this%> is unavailable for static member functions" msgstr "" -#: cp/semantics.c:2150 +#: cp/semantics.c:2200 #, gcc-internal-format msgid "invalid use of %<this%> in non-member function" msgstr "" -#: cp/semantics.c:2152 +#: cp/semantics.c:2202 #, gcc-internal-format msgid "invalid use of %<this%> at top level" msgstr "" -#: cp/semantics.c:2176 +#: cp/semantics.c:2226 #, gcc-internal-format msgid "invalid qualifying scope in pseudo-destructor name" msgstr "" -#: cp/semantics.c:2181 cp/typeck.c:2344 +#: cp/semantics.c:2231 cp/typeck.c:2344 #, gcc-internal-format msgid "qualified type %qT does not match destructor name ~%qT" msgstr "" -#: cp/semantics.c:2203 +#: cp/semantics.c:2253 #, gcc-internal-format msgid "%qE is not of type %qT" msgstr "" -#: cp/semantics.c:2247 +#: cp/semantics.c:2297 #, gcc-internal-format msgid "compound literal of non-object type %qT" msgstr "" -#: cp/semantics.c:2319 +#: cp/semantics.c:2369 #, gcc-internal-format msgid "template type parameters must use the keyword %<class%> or %<typename%>" msgstr "" -#: cp/semantics.c:2361 +#: cp/semantics.c:2411 #, gcc-internal-format msgid "" "invalid use of type %qT as a default value for a template template-parameter" msgstr "" -#: cp/semantics.c:2364 +#: cp/semantics.c:2414 #, gcc-internal-format msgid "invalid default argument for a template template parameter" msgstr "" -#: cp/semantics.c:2381 +#: cp/semantics.c:2431 #, gcc-internal-format msgid "definition of %q#T inside template parameter list" msgstr "" -#: cp/semantics.c:2412 +#: cp/semantics.c:2462 #, gcc-internal-format msgid "invalid definition of qualified type %qT" msgstr "" -#: cp/semantics.c:2626 +#: cp/semantics.c:2676 #, gcc-internal-format msgid "invalid base-class specification" msgstr "" -#: cp/semantics.c:2638 +#: cp/semantics.c:2688 #, gcc-internal-format msgid "base class %qT has cv qualifiers" msgstr "" -#: cp/semantics.c:2863 cp/semantics.c:7790 +#: cp/semantics.c:2914 cp/semantics.c:8025 #, gcc-internal-format msgid "%qD is not captured" msgstr "" -#: cp/semantics.c:2869 +#: cp/semantics.c:2920 #, gcc-internal-format msgid "use of %<auto%> variable from containing function" msgstr "" -#: cp/semantics.c:2871 +#: cp/semantics.c:2922 #, gcc-internal-format msgid " %q+#D declared here" msgstr "" -#: cp/semantics.c:2882 +#: cp/semantics.c:2933 #, gcc-internal-format msgid "use of parameter %qD outside function body" msgstr "" -#: cp/semantics.c:2919 +#: cp/semantics.c:2970 #, gcc-internal-format msgid "" "template parameter %qD of type %qT is not allowed in an integral constant " "expression because it is not of integral or enumeration type" msgstr "" -#: cp/semantics.c:3076 +#: cp/semantics.c:3127 #, gcc-internal-format msgid "use of namespace %qD as expression" msgstr "" -#: cp/semantics.c:3081 +#: cp/semantics.c:3132 #, gcc-internal-format msgid "use of class template %qT as expression" msgstr "" #. Ambiguous reference to base members. -#: cp/semantics.c:3087 +#: cp/semantics.c:3138 #, gcc-internal-format msgid "request for member %qD is ambiguous in multiple inheritance lattice" msgstr "" -#: cp/semantics.c:3109 +#: cp/semantics.c:3161 #, gcc-internal-format msgid "%qD cannot appear in a constant-expression" msgstr "" -#: cp/semantics.c:3229 cp/semantics.c:4952 +#: cp/semantics.c:3281 cp/semantics.c:4985 #, gcc-internal-format msgid "type of %qE is unknown" msgstr "" -#: cp/semantics.c:3244 +#: cp/semantics.c:3296 #, gcc-internal-format msgid "cannot apply %<offsetof%> to destructor %<~%T%>" msgstr "" -#: cp/semantics.c:3255 +#: cp/semantics.c:3307 #, gcc-internal-format msgid "cannot apply %<offsetof%> to member function %qD" msgstr "" -#: cp/semantics.c:3650 +#: cp/semantics.c:3703 #, gcc-internal-format msgid "%qD is not a variable in clause %qs" msgstr "" -#: cp/semantics.c:3659 cp/semantics.c:3681 cp/semantics.c:3703 +#: cp/semantics.c:3712 cp/semantics.c:3734 cp/semantics.c:3756 #, gcc-internal-format msgid "%qD appears more than once in data clauses" msgstr "" -#: cp/semantics.c:3673 +#: cp/semantics.c:3726 #, gcc-internal-format msgid "%qD is not a variable in clause %<firstprivate%>" msgstr "" -#: cp/semantics.c:3695 +#: cp/semantics.c:3748 #, gcc-internal-format msgid "%qD is not a variable in clause %<lastprivate%>" msgstr "" -#: cp/semantics.c:3725 +#: cp/semantics.c:3778 #, gcc-internal-format msgid "num_threads expression must be integral" msgstr "" -#: cp/semantics.c:3739 +#: cp/semantics.c:3792 #, gcc-internal-format msgid "schedule chunk size expression must be integral" msgstr "" -#: cp/semantics.c:3871 +#: cp/semantics.c:3924 #, gcc-internal-format msgid "%qE has reference type for %qs" msgstr "" -#: cp/semantics.c:3942 +#: cp/semantics.c:3995 #, gcc-internal-format msgid "%<threadprivate%> %qD is not file, namespace or block scope variable" msgstr "" -#: cp/semantics.c:3956 +#: cp/semantics.c:4009 #, gcc-internal-format msgid "%<threadprivate%> %qE directive not in %qT definition" msgstr "" -#: cp/semantics.c:4101 +#: cp/semantics.c:4154 #, gcc-internal-format msgid "difference between %qE and %qD does not have integer type" msgstr "" -#: cp/semantics.c:4631 +#: cp/semantics.c:4684 #, gcc-internal-format msgid "non-constant condition for static assertion" msgstr "" -#: cp/semantics.c:4718 cp/semantics.c:4857 +#: cp/semantics.c:4771 cp/semantics.c:4890 #, gcc-internal-format msgid "argument to decltype must be an expression" msgstr "" -#: cp/semantics.c:4805 +#: cp/semantics.c:4838 #, gcc-internal-format msgid "%qE refers to a set of overloaded functions" msgstr "" -#: cp/semantics.c:4895 +#: cp/semantics.c:4928 #, gcc-internal-format msgid "unable to determine the declared type of expression %<%E%>" msgstr "" -#: cp/semantics.c:5161 +#: cp/semantics.c:5194 #, gcc-internal-format msgid "__is_convertible_to" msgstr "" -#: cp/semantics.c:5203 cp/semantics.c:5213 +#: cp/semantics.c:5236 cp/semantics.c:5246 #, gcc-internal-format msgid "incomplete type %qT not allowed" msgstr "" -#: cp/semantics.c:5278 +#: cp/semantics.c:5311 #, gcc-internal-format msgid "the type %qT of constexpr variable %qD is not literal" msgstr "" -#: cp/semantics.c:5357 +#: cp/semantics.c:5390 #, gcc-internal-format msgid "invalid type for parameter %q#D of constexpr function" msgstr "" -#: cp/semantics.c:5368 +#: cp/semantics.c:5401 #, gcc-internal-format msgid "invalid return type %qT of constexpr function %qD" msgstr "" -#: cp/semantics.c:5378 +#: cp/semantics.c:5411 #, gcc-internal-format msgid "enclosing class of %q#D is not a literal type" msgstr "" -#: cp/semantics.c:5534 +#: cp/semantics.c:5584 #, gcc-internal-format msgid "constexpr constructor does not have empty body" msgstr "" -#: cp/semantics.c:5601 +#: cp/semantics.c:5664 #, gcc-internal-format msgid "body of constexpr function %qD not a return-statement" msgstr "" -#: cp/semantics.c:5914 +#: cp/semantics.c:5981 #, gcc-internal-format msgid "expression %qE does not designate a constexpr function" msgstr "" -#: cp/semantics.c:5928 +#: cp/semantics.c:5995 #, gcc-internal-format msgid "%qD is not a constexpr function" msgstr "" -#: cp/semantics.c:5947 +#: cp/semantics.c:6022 #, gcc-internal-format msgid "%qD used before its definition" msgstr "" -#: cp/semantics.c:5974 +#: cp/semantics.c:6049 #, gcc-internal-format msgid "call has circular dependency" msgstr "" -#: cp/semantics.c:6060 +#: cp/semantics.c:6135 #, gcc-internal-format msgid "%q+E is not a constant expression" msgstr "" -#: cp/semantics.c:6177 +#: cp/semantics.c:6252 #, gcc-internal-format msgid "array subscript out of bound" msgstr "" -#: cp/semantics.c:6216 cp/semantics.c:6262 cp/semantics.c:6702 +#: cp/semantics.c:6291 cp/semantics.c:6337 cp/semantics.c:6807 #, gcc-internal-format msgid "%qE is not a constant expression" msgstr "" -#: cp/semantics.c:6230 +#: cp/semantics.c:6305 #, gcc-internal-format msgid "" "accessing %qD member instead of initialized %qD member in constant expression" msgstr "" -#: cp/semantics.c:6594 +#: cp/semantics.c:6688 #, gcc-internal-format msgid "accessing value of %qE through a %qT glvalue in a constant expression" msgstr "" -#: cp/semantics.c:6658 +#: cp/semantics.c:6718 #, gcc-internal-format msgid "the value of %qD is not usable in a constant expression" msgstr "" -#: cp/semantics.c:6664 +#: cp/semantics.c:6722 +#, gcc-internal-format +msgid "%qD used in its own initializer" +msgstr "" + +#: cp/semantics.c:6727 #, gcc-internal-format msgid "%q#D is not const" msgstr "" -#: cp/semantics.c:6667 +#: cp/semantics.c:6730 #, gcc-internal-format msgid "%q#D is volatile" msgstr "" -#: cp/semantics.c:6670 +#: cp/semantics.c:6733 #, gcc-internal-format msgid "%qD was not initialized with a constant expression" msgstr "" -#: cp/semantics.c:6679 +#: cp/semantics.c:6742 #, gcc-internal-format msgid "%qD was not declared %<constexpr%>" msgstr "" -#: cp/semantics.c:6682 +#: cp/semantics.c:6745 #, gcc-internal-format msgid "%qD does not have integral or enumeration type" msgstr "" -#: cp/semantics.c:6908 cp/semantics.c:7285 +#: cp/semantics.c:7013 cp/semantics.c:7412 #, gcc-internal-format msgid "" "conversion of expression %qE of pointer type cannot yield a constant " "expression" msgstr "" -#: cp/semantics.c:6956 cp/semantics.c:7350 cp/semantics.c:7528 +#: cp/semantics.c:7062 cp/semantics.c:7494 cp/semantics.c:7718 #, gcc-internal-format msgid "expression %qE is not a constant-expression" msgstr "" -#: cp/semantics.c:6961 +#: cp/semantics.c:7067 #, gcc-internal-format msgid "unexpected expression %qE of kind %s" msgstr "" -#: cp/semantics.c:7157 +#: cp/semantics.c:7274 #, gcc-internal-format msgid "expression %qE has side-effects" msgstr "" -#: cp/semantics.c:7178 +#: cp/semantics.c:7306 #, gcc-internal-format msgid "%qE is not a potential constant expression" msgstr "" -#: cp/semantics.c:7196 +#: cp/semantics.c:7324 #, gcc-internal-format msgid "%qE is not a function name" msgstr "" -#: cp/semantics.c:7211 +#: cp/semantics.c:7339 #, gcc-internal-format msgid "%qD is not %<constexpr%>" msgstr "" -#: cp/semantics.c:7231 +#: cp/semantics.c:7357 #, gcc-internal-format msgid "object argument is not a potential constant expression" msgstr "" -#: cp/semantics.c:7239 +#: cp/semantics.c:7365 #, gcc-internal-format msgid "argument in position %qP is not a potential constant expression" msgstr "" -#: cp/semantics.c:7262 -#, gcc-internal-format -msgid "variable %qD is not declared constexpr" -msgstr "" - -#: cp/semantics.c:7303 +#: cp/semantics.c:7435 #, gcc-internal-format msgid "" "address-of an object %qE with thread local or automatic storage is not a " "constant expression" msgstr "" -#: cp/semantics.c:7361 +#: cp/semantics.c:7506 #, gcc-internal-format msgid "" "typeid-expression is not a constant expression because %qE is of polymorphic " "type" msgstr "" -#: cp/semantics.c:7374 +#: cp/semantics.c:7519 #, gcc-internal-format msgid "difference of two pointer expressions is not a constant expression" msgstr "" -#: cp/semantics.c:7392 +#: cp/semantics.c:7538 #, gcc-internal-format msgid "pointer comparison expression is not a constant expression" msgstr "" -#: cp/semantics.c:7535 +#: cp/semantics.c:7623 +#, gcc-internal-format +msgid "division by zero is not a constant-expression" +msgstr "" + +#: cp/semantics.c:7726 +#, gcc-internal-format +msgid "non-constant array initialization" +msgstr "" + +#: cp/semantics.c:7732 #, gcc-internal-format, gfc-internal-format msgid "unexpected ast of kind %s" msgstr "" -#: cp/semantics.c:7667 +#: cp/semantics.c:7902 #, gcc-internal-format msgid "cannot deduce lambda return type from a braced-init-list" msgstr "" -#: cp/semantics.c:7836 +#: cp/semantics.c:8071 #, gcc-internal-format msgid "cannot capture %qE by reference" msgstr "" -#: cp/semantics.c:7859 +#: cp/semantics.c:8094 #, gcc-internal-format msgid "already captured %<this%> in lambda expression" msgstr "" -#: cp/semantics.c:7990 +#: cp/semantics.c:8225 #, gcc-internal-format msgid "%<this%> was not captured for this lambda function" msgstr "" -#: cp/tree.c:958 +#: cp/tree.c:985 #, gcc-internal-format msgid "%qV qualifiers cannot be applied to %qT" msgstr "" -#: cp/tree.c:2597 +#: cp/tree.c:2634 #, gcc-internal-format msgid "%qE attribute can only be applied to Java class definitions" msgstr "" -#: cp/tree.c:2626 +#: cp/tree.c:2663 #, gcc-internal-format msgid "%qE attribute can only be applied to class definitions" msgstr "" -#: cp/tree.c:2632 +#: cp/tree.c:2669 #, gcc-internal-format msgid "%qE is obsolete; g++ vtables are now COM-compatible by default" msgstr "" -#: cp/tree.c:2656 +#: cp/tree.c:2693 #, gcc-internal-format msgid "requested init_priority is not an integer constant" msgstr "" -#: cp/tree.c:2677 +#: cp/tree.c:2714 #, gcc-internal-format msgid "" "can only use %qE attribute on file-scope definitions of objects of class type" msgstr "" -#: cp/tree.c:2685 +#: cp/tree.c:2722 #, gcc-internal-format msgid "requested init_priority is out of range" msgstr "" -#: cp/tree.c:2695 +#: cp/tree.c:2732 #, gcc-internal-format msgid "requested init_priority is reserved for internal use" msgstr "" -#: cp/tree.c:2706 +#: cp/tree.c:2743 #, gcc-internal-format msgid "%qE attribute is not supported on this platform" msgstr "" -#: cp/tree.c:3343 +#: cp/tree.c:3379 #, gcc-internal-format, gfc-internal-format msgid "lang_* check: failed in %s, at %s:%d" msgstr "" @@ -33334,117 +33454,117 @@ msgstr "" msgid "cannot initialize arrays using this syntax" msgstr "" -#: cp/typeck2.c:765 +#: cp/typeck2.c:768 #, gcc-internal-format msgid "narrowing conversion of %qE from %qT to %qT inside { }" msgstr "" -#: cp/typeck2.c:823 +#: cp/typeck2.c:826 #, gcc-internal-format msgid "int-array initialized from non-wide string" msgstr "" -#: cp/typeck2.c:828 +#: cp/typeck2.c:831 #, gcc-internal-format msgid "int-array initialized from incompatible wide string" msgstr "" -#: cp/typeck2.c:843 +#: cp/typeck2.c:846 #, gcc-internal-format msgid "initializer-string for array of chars is too long" msgstr "" -#: cp/typeck2.c:889 +#: cp/typeck2.c:892 #, gcc-internal-format msgid "cannot initialize aggregate of type %qT with a compound literal" msgstr "" -#: cp/typeck2.c:906 +#: cp/typeck2.c:909 #, gcc-internal-format msgid "array must be initialized with a brace-enclosed initializer" msgstr "" -#: cp/typeck2.c:993 cp/typeck2.c:1101 +#: cp/typeck2.c:996 cp/typeck2.c:1104 #, gcc-internal-format msgid "non-trivial designated initializers not supported" msgstr "" -#: cp/typeck2.c:1129 cp/typeck2.c:1143 +#: cp/typeck2.c:1132 cp/typeck2.c:1146 #, gcc-internal-format msgid "missing initializer for member %qD" msgstr "" -#: cp/typeck2.c:1134 +#: cp/typeck2.c:1137 #, gcc-internal-format msgid "uninitialized const member %qD" msgstr "" -#: cp/typeck2.c:1136 +#: cp/typeck2.c:1139 #, gcc-internal-format msgid "member %qD with uninitialized const fields" msgstr "" -#: cp/typeck2.c:1138 +#: cp/typeck2.c:1141 #, gcc-internal-format msgid "member %qD is uninitialized reference" msgstr "" -#: cp/typeck2.c:1206 +#: cp/typeck2.c:1209 #, gcc-internal-format msgid "no field %qD found in union being initialized" msgstr "" -#: cp/typeck2.c:1215 +#: cp/typeck2.c:1218 #, gcc-internal-format msgid "index value instead of field name in union initializer" msgstr "" -#: cp/typeck2.c:1374 +#: cp/typeck2.c:1377 #, gcc-internal-format msgid "circular pointer delegation detected" msgstr "" -#: cp/typeck2.c:1384 +#: cp/typeck2.c:1387 #, gcc-internal-format msgid "base operand of %<->%> has non-pointer type %qT" msgstr "" -#: cp/typeck2.c:1408 +#: cp/typeck2.c:1411 #, gcc-internal-format msgid "result of %<operator->()%> yields non-pointer result" msgstr "" -#: cp/typeck2.c:1410 +#: cp/typeck2.c:1413 #, gcc-internal-format msgid "base operand of %<->%> is not a pointer" msgstr "" -#: cp/typeck2.c:1435 +#: cp/typeck2.c:1438 #, gcc-internal-format msgid "%qE cannot be used as a member pointer, since it is of type %qT" msgstr "" -#: cp/typeck2.c:1444 +#: cp/typeck2.c:1447 #, gcc-internal-format msgid "cannot apply member pointer %qE to %qE, which is of non-class type %qT" msgstr "" -#: cp/typeck2.c:1466 +#: cp/typeck2.c:1469 #, gcc-internal-format msgid "pointer to member type %qT incompatible with object type %qT" msgstr "" -#: cp/typeck2.c:1527 +#: cp/typeck2.c:1530 #, gcc-internal-format msgid "invalid value-initialization of reference type" msgstr "" -#: cp/typeck2.c:1726 +#: cp/typeck2.c:1729 #, gcc-internal-format msgid "call to function %qD which throws incomplete type %q#T" msgstr "" -#: cp/typeck2.c:1729 +#: cp/typeck2.c:1732 #, gcc-internal-format msgid "call to function which throws incomplete type %q#T" msgstr "" @@ -33542,9 +33662,9 @@ msgstr "" msgid "Array reference at %C cannot have more than %d dimensions" msgstr "" -#: fortran/array.c:215 fortran/array.c:569 fortran/check.c:1946 -#: fortran/check.c:3630 fortran/check.c:3653 fortran/check.c:3748 -#: fortran/match.c:1755 fortran/match.c:2330 fortran/simplify.c:4503 +#: fortran/array.c:215 fortran/array.c:569 fortran/check.c:1975 +#: fortran/check.c:3666 fortran/check.c:3689 fortran/check.c:3784 +#: fortran/match.c:1758 fortran/match.c:2339 fortran/simplify.c:4590 #, gcc-internal-format, gfc-internal-format msgid "Coarrays disabled at %C, use -fcoarray= to enable" msgstr "" @@ -33659,7 +33779,7 @@ msgstr "" msgid "Fortran 2003: Array constructor including type specification at %C" msgstr "" -#: fortran/array.c:1041 fortran/match.c:2886 +#: fortran/array.c:1041 fortran/match.c:2895 #, gcc-internal-format, gfc-internal-format msgid "Type-spec at %L cannot contain a deferred type parameter" msgstr "" @@ -33681,7 +33801,7 @@ msgstr "" #. Problems occur when we get something like #. integer :: a(lots) = (/(i, i=1, lots)/) -#: fortran/array.c:1605 fortran/expr.c:1519 fortran/trans-array.c:4445 +#: fortran/array.c:1605 fortran/expr.c:1519 fortran/trans-array.c:4535 #, gcc-internal-format, gfc-internal-format msgid "" "The number of elements in the array constructor at %L requires an increase " @@ -33723,7 +33843,7 @@ msgstr "" msgid "'%s' argument of '%s' intrinsic at %L must be INTEGER or PROCEDURE" msgstr "" -#: fortran/check.c:167 fortran/check.c:4821 +#: fortran/check.c:167 fortran/check.c:4857 #, gcc-internal-format, gfc-internal-format msgid "'%s' argument of '%s' intrinsic at %L must be a constant" msgstr "" @@ -33825,375 +33945,381 @@ msgstr "" msgid "'dim' argument of '%s' intrinsic at %L is not a valid dimension index" msgstr "" -#: fortran/check.c:669 +#: fortran/check.c:697 #, gcc-internal-format, gfc-internal-format msgid "Unequal character lengths (%ld/%ld) in %s at %L" msgstr "" -#: fortran/check.c:790 fortran/check.c:4790 +#: fortran/check.c:819 fortran/check.c:4826 #, gcc-internal-format, gfc-internal-format msgid "'%s' and '%s' arguments of '%s' intrinsic at %L must have the same type" msgstr "" -#: fortran/check.c:799 fortran/check.c:1628 fortran/check.c:1754 -#: fortran/check.c:1828 fortran/check.c:2142 +#: fortran/check.c:828 fortran/check.c:1657 fortran/check.c:1783 +#: fortran/check.c:1857 fortran/check.c:2171 #, gcc-internal-format, gfc-internal-format msgid "Extension: Different type kinds at %L" msgstr "" -#: fortran/check.c:837 fortran/check.c:2613 +#: fortran/check.c:866 fortran/check.c:2642 #, gcc-internal-format, gfc-internal-format msgid "'%s' argument of '%s' intrinsic at %L must be a POINTER" msgstr "" -#: fortran/check.c:855 +#: fortran/check.c:884 #, gcc-internal-format, gfc-internal-format msgid "" "'%s' argument of '%s' intrinsic at %L must be a pointer or target VARIABLE " "or FUNCTION" msgstr "" -#: fortran/check.c:864 +#: fortran/check.c:893 #, gcc-internal-format, gfc-internal-format msgid "'%s' argument of '%s' intrinsic at %L must be a POINTER or a TARGET" msgstr "" -#: fortran/check.c:880 +#: fortran/check.c:909 #, gcc-internal-format, gfc-internal-format msgid "" "Array section with a vector subscript at %L shall not be the target of a " "pointer" msgstr "" -#: fortran/check.c:891 +#: fortran/check.c:920 #, gcc-internal-format, gfc-internal-format msgid "" "NULL pointer at %L is not permitted as actual argument of '%s' intrinsic " "function" msgstr "" -#: fortran/check.c:934 +#: fortran/check.c:963 #, gcc-internal-format, gfc-internal-format msgid "Extension: Negative argument N at %L" msgstr "" -#: fortran/check.c:1106 fortran/check.c:1265 +#: fortran/check.c:1135 fortran/check.c:1294 #, gcc-internal-format, gfc-internal-format msgid "" "'%s' argument of '%s' intrinsic at %L must not be present if 'x' is COMPLEX" msgstr "" -#: fortran/check.c:1115 fortran/check.c:1274 +#: fortran/check.c:1144 fortran/check.c:1303 #, gcc-internal-format, gfc-internal-format msgid "" "'%s' argument of '%s' intrinsic at %L must have a type of either REAL or " "INTEGER" msgstr "" -#: fortran/check.c:1159 fortran/check.c:1673 fortran/check.c:1776 -#: fortran/check.c:1932 fortran/check.c:1977 fortran/check.c:3113 -#: fortran/check.c:3295 fortran/check.c:3734 fortran/check.c:3863 +#: fortran/check.c:1188 fortran/check.c:1702 fortran/check.c:1805 +#: fortran/check.c:1961 fortran/check.c:2006 fortran/check.c:3142 +#: fortran/check.c:3276 fortran/check.c:3331 fortran/check.c:3770 +#: fortran/check.c:3899 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: '%s' intrinsic with KIND argument at %L" msgstr "" -#: fortran/check.c:1206 fortran/check.c:1439 +#: fortran/check.c:1235 fortran/check.c:1468 #, gcc-internal-format, gfc-internal-format msgid "" "'%s' argument of '%s' intrinsic at %L has invalid shape in dimension %d (%ld/" "%ld)" msgstr "" -#: fortran/check.c:1221 fortran/check.c:1454 fortran/check.c:1482 +#: fortran/check.c:1250 fortran/check.c:1483 fortran/check.c:1511 #, gcc-internal-format, gfc-internal-format msgid "" "'%s' argument of intrinsic '%s' at %L of must have rank %d or be a scalar" msgstr "" -#: fortran/check.c:1324 fortran/check.c:2236 fortran/check.c:2244 +#: fortran/check.c:1353 fortran/check.c:2265 fortran/check.c:2273 #, gcc-internal-format, gfc-internal-format msgid "'%s' argument of '%s' intrinsic at %L must be numeric or LOGICAL" msgstr "" -#: fortran/check.c:1338 +#: fortran/check.c:1367 #, gcc-internal-format, gfc-internal-format msgid "" "Different shape for arguments '%s' and '%s' at %L for intrinsic 'dot_product'" msgstr "" -#: fortran/check.c:1357 fortran/check.c:1365 +#: fortran/check.c:1386 fortran/check.c:1394 #, gcc-internal-format, gfc-internal-format msgid "'%s' argument of '%s' intrinsic at %L must be default real" msgstr "" -#: fortran/check.c:1500 +#: fortran/check.c:1529 #, gcc-internal-format, gfc-internal-format msgid "GNU extension: non-default INTEGER kind argument to %s intrinsic at %L" msgstr "" -#: fortran/check.c:1560 +#: fortran/check.c:1589 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2008: COMPLEX argument '%s' argument of '%s' intrinsic at %L" msgstr "" -#: fortran/check.c:1724 +#: fortran/check.c:1753 #, gcc-internal-format, gfc-internal-format msgid "Argument of %s at %L must be of length one" msgstr "" -#: fortran/check.c:1783 +#: fortran/check.c:1812 #, gcc-internal-format, gfc-internal-format msgid "'%s' argument of '%s' intrinsic at %L must be the same kind as '%s'" msgstr "" -#: fortran/check.c:1908 +#: fortran/check.c:1937 #, gcc-internal-format, gfc-internal-format msgid "'%s' argument of '%s' intrinsic at %L must be a non-derived type" msgstr "" -#: fortran/check.c:2115 +#: fortran/check.c:2144 #, gcc-internal-format, gfc-internal-format msgid "Intrinsic '%s' at %L must have at least two arguments" msgstr "" -#: fortran/check.c:2148 +#: fortran/check.c:2177 #, gcc-internal-format, gfc-internal-format msgid "'a%d' argument of '%s' intrinsic at %L must be %s(%d)" msgstr "" -#: fortran/check.c:2179 +#: fortran/check.c:2208 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: '%s' intrinsic with CHARACTER argument at %L" msgstr "" -#: fortran/check.c:2186 +#: fortran/check.c:2215 #, gcc-internal-format, gfc-internal-format msgid "" "'a1' argument of '%s' intrinsic at %L must be INTEGER, REAL or CHARACTER" msgstr "" -#: fortran/check.c:2253 +#: fortran/check.c:2282 #, gcc-internal-format, gfc-internal-format msgid "Argument types of '%s' intrinsic at %L must match (%s/%s)" msgstr "" -#: fortran/check.c:2267 +#: fortran/check.c:2296 #, gcc-internal-format, gfc-internal-format msgid "" "Different shape on dimension 1 for arguments '%s' and '%s' at %L for " "intrinsic matmul" msgstr "" -#: fortran/check.c:2286 +#: fortran/check.c:2315 #, gcc-internal-format, gfc-internal-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:2295 +#: fortran/check.c:2324 #, gcc-internal-format, gfc-internal-format msgid "'%s' argument of '%s' intrinsic at %L must be of rank 1 or 2" msgstr "" -#: fortran/check.c:2470 +#: fortran/check.c:2499 #, gcc-internal-format, gfc-internal-format msgid "'%s' argument of '%s' intrinsic at %L must be INTEGER" msgstr "" -#: fortran/check.c:2539 +#: fortran/check.c:2568 #, gcc-internal-format, gfc-internal-format msgid "" "the '%s' and '%s' arguments of '%s' intrinsic at %L must have the same rank " "%d/%d" msgstr "" -#: fortran/check.c:2548 +#: fortran/check.c:2577 #, gcc-internal-format, gfc-internal-format msgid "" "the '%s' and '%s' arguments of '%s' intrinsic at %L must be of the same kind " "%d/%d" msgstr "" -#: fortran/check.c:2685 fortran/check.c:3810 +#: fortran/check.c:2714 fortran/check.c:3846 #, gcc-internal-format, gfc-internal-format msgid "" "'%s' argument of '%s' intrinsic at %L must provide at least as many elements " "as there are .TRUE. values in '%s' (%ld/%d)" msgstr "" -#: fortran/check.c:2743 +#: fortran/check.c:2772 #, gcc-internal-format, gfc-internal-format msgid "'%s' argument of '%s' intrinsic at %L must be of a dummy variable" msgstr "" -#: fortran/check.c:2751 +#: fortran/check.c:2780 #, gcc-internal-format, gfc-internal-format msgid "" "'%s' argument of '%s' intrinsic at %L must be of an OPTIONAL dummy variable" msgstr "" -#: fortran/check.c:2768 +#: fortran/check.c:2797 #, gcc-internal-format, gfc-internal-format msgid "'%s' argument of '%s' intrinsic at %L must not be a subobject of '%s'" msgstr "" -#: fortran/check.c:2893 +#: fortran/check.c:2922 #, gcc-internal-format, gfc-internal-format msgid "" "'shape' argument of 'reshape' intrinsic at %L must be an array of constant " "size" msgstr "" -#: fortran/check.c:2903 +#: fortran/check.c:2932 #, gcc-internal-format, gfc-internal-format msgid "'%s' argument of '%s' intrinsic at %L is empty" msgstr "" -#: fortran/check.c:2910 +#: fortran/check.c:2939 #, gcc-internal-format, gfc-internal-format msgid "'shape' argument of 'reshape' intrinsic at %L has more than %d elements" msgstr "" -#: fortran/check.c:2927 +#: fortran/check.c:2956 #, gcc-internal-format, gfc-internal-format msgid "'%s' argument of '%s' intrinsic at %L has negative element (%d)" msgstr "" -#: fortran/check.c:2967 +#: fortran/check.c:2996 #, gcc-internal-format, gfc-internal-format msgid "" "'%s' argument of '%s' intrinsic at %L has wrong number of elements (%d/%d)" msgstr "" -#: fortran/check.c:2985 +#: fortran/check.c:3014 #, gcc-internal-format, gfc-internal-format msgid "'%s' argument of '%s' intrinsic at %L has out-of-range dimension (%d)" msgstr "" -#: fortran/check.c:2994 +#: fortran/check.c:3023 #, gcc-internal-format, gfc-internal-format msgid "" "'%s' argument of '%s' intrinsic at %L has invalid permutation of dimensions " "(dimension '%d' duplicated)" msgstr "" -#: fortran/check.c:3030 +#: fortran/check.c:3059 #, gcc-internal-format, gfc-internal-format msgid "" "Without padding, there are not enough elements in the intrinsic RESHAPE " "source at %L to match the shape" msgstr "" -#: fortran/check.c:3048 fortran/check.c:3066 +#: fortran/check.c:3077 fortran/check.c:3095 #, gcc-internal-format, gfc-internal-format msgid "'%s' argument of '%s' intrinsic at %L must be of a derived type" msgstr "" -#: fortran/check.c:3057 fortran/check.c:3075 +#: fortran/check.c:3086 fortran/check.c:3104 #, gcc-internal-format, gfc-internal-format msgid "'%s' argument of '%s' intrinsic at %L must be of an extensible type" msgstr "" -#: fortran/check.c:3174 +#: fortran/check.c:3203 #, gcc-internal-format, gfc-internal-format msgid "" "Fortran 2008: SELECTED_REAL_KIND with neither 'P' nor 'R' argument at %L" msgstr "" -#: fortran/check.c:3205 +#: fortran/check.c:3234 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2008: '%s' intrinsic with RADIX argument at %L" msgstr "" -#: fortran/check.c:3240 +#: fortran/check.c:3269 #, gcc-internal-format, gfc-internal-format msgid "" "'source' argument of 'shape' intrinsic at %L must not be an assumed size " "array" msgstr "" -#: fortran/check.c:3317 +#: fortran/check.c:3353 #, gcc-internal-format, gfc-internal-format msgid "" "'%s' argument of '%s' intrinsic at %L must be be an interoperable data entity" msgstr "" -#: fortran/check.c:3346 +#: fortran/check.c:3382 #, gcc-internal-format, gfc-internal-format msgid "GNU extension: non double precision REAL argument to %s intrinsic at %L" msgstr "" -#: fortran/check.c:3359 +#: fortran/check.c:3395 #, gcc-internal-format, gfc-internal-format msgid "'%s' argument of '%s' intrinsic at %L must be less than rank %d" msgstr "" -#: fortran/check.c:3378 +#: fortran/check.c:3414 #, gcc-internal-format, gfc-internal-format msgid "'%s' argument of '%s' intrinsic at %L is not a valid dimension index" msgstr "" -#: fortran/check.c:3639 +#: fortran/check.c:3675 #, gcc-internal-format, gfc-internal-format msgid "%s argument to IMAGE_INDEX must be a rank one array at %L" msgstr "" -#: fortran/check.c:3659 +#: fortran/check.c:3695 #, gcc-internal-format, gfc-internal-format msgid "" "DIM argument without ARRAY argument not allowed for THIS_IMAGE intrinsic at " "%L" msgstr "" -#: fortran/check.c:3689 +#: fortran/check.c:3725 #, gcc-internal-format, gfc-internal-format msgid "'MOLD' argument of 'TRANSFER' intrinsic at %L must not be %s" msgstr "" -#: fortran/check.c:3824 +#: fortran/check.c:3860 #, gcc-internal-format, gfc-internal-format msgid "" "'%s' argument of '%s' intrinsic at %L must have the same rank as '%s' or be " "a scalar" msgstr "" -#: fortran/check.c:3837 +#: fortran/check.c:3873 #, gcc-internal-format, gfc-internal-format msgid "" "'%s' and '%s' arguments of '%s' intrinsic at %L must have identical shape." msgstr "" -#: fortran/check.c:4096 fortran/check.c:4128 +#: fortran/check.c:4132 fortran/check.c:4164 #, gcc-internal-format, gfc-internal-format msgid "Size of '%s' argument of '%s' intrinsic at %L too small (%i/%i)" msgstr "" -#: fortran/check.c:4136 +#: fortran/check.c:4172 #, gcc-internal-format, gfc-internal-format msgid "Too many arguments to %s at %L" msgstr "" -#: fortran/check.c:4422 +#: fortran/check.c:4458 #, gcc-internal-format, gfc-internal-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:4774 fortran/check.c:4782 +#: fortran/check.c:4810 fortran/check.c:4818 #, gcc-internal-format, gfc-internal-format msgid "'%s' argument of '%s' intrinsic at %L must be INTEGER or LOGICAL" msgstr "" +#: fortran/class.c:199 +#, gcc-internal-format, gfc-internal-format +msgid "Polymorphic array at %C not yet supported" +msgstr "" + #. Since the extension field is 8 bit wide, we can only have #. up to 255 extension levels. -#: fortran/class.c:205 fortran/decl.c:7343 +#: fortran/class.c:270 fortran/decl.c:7318 #, gcc-internal-format, gfc-internal-format msgid "Maximum extension level reached with type '%s' at %L" msgstr "" -#: fortran/class.c:583 fortran/class.c:657 +#: fortran/class.c:650 fortran/class.c:724 #, gcc-internal-format, gfc-internal-format msgid "'%s' of '%s' is PRIVATE at %L" msgstr "" @@ -34272,526 +34398,531 @@ msgstr "" msgid "Initialization at %C is not allowed in a PURE procedure" msgstr "" -#: fortran/decl.c:559 +#: fortran/decl.c:562 #, gcc-internal-format, gfc-internal-format msgid "DATA statement at %C is not allowed in a PURE procedure" msgstr "" -#: fortran/decl.c:644 +#: fortran/decl.c:650 #, gcc-internal-format, gfc-internal-format msgid "Bad INTENT specification at %C" msgstr "" -#: fortran/decl.c:665 +#: fortran/decl.c:671 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: deferred type parameter at %C" msgstr "" -#: fortran/decl.c:702 +#: fortran/decl.c:708 #, gcc-internal-format, gfc-internal-format msgid "Conflict in attributes of function argument at %C" msgstr "" -#: fortran/decl.c:727 +#: fortran/decl.c:733 #, gcc-internal-format, gfc-internal-format msgid "Obsolescent feature: Old-style character length at %C" msgstr "" -#: fortran/decl.c:759 +#: fortran/decl.c:765 #, gcc-internal-format, gfc-internal-format msgid "Syntax error in character length specification at %C" msgstr "" -#: fortran/decl.c:882 +#: fortran/decl.c:888 #, gcc-internal-format, gfc-internal-format msgid "Procedure '%s' at %C is already defined at %L" msgstr "" -#: fortran/decl.c:890 +#: fortran/decl.c:896 #, gcc-internal-format, gfc-internal-format msgid "Name '%s' at %C is already defined as a generic interface at %L" msgstr "" -#: fortran/decl.c:903 +#: fortran/decl.c:909 #, gcc-internal-format, gfc-internal-format msgid "" "Procedure '%s' at %C has an explicit interface and must not have attributes " "declared at %L" msgstr "" -#: fortran/decl.c:975 +#: fortran/decl.c:981 #, gcc-internal-format, gfc-internal-format msgid "" "Procedure '%s' at %L must have the BIND(C) attribute to be C interoperable" msgstr "" -#: fortran/decl.c:1005 +#: fortran/decl.c:1011 #, gcc-internal-format, gfc-internal-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:1012 +#: fortran/decl.c:1018 #, gcc-internal-format, gfc-internal-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:1027 +#: fortran/decl.c:1033 #, gcc-internal-format, gfc-internal-format msgid "" "Character argument '%s' at %L must be length 1 because procedure '%s' is BIND" "(C)" msgstr "" -#: fortran/decl.c:1041 +#: fortran/decl.c:1047 #, gcc-internal-format, gfc-internal-format msgid "" "Variable '%s' at %L cannot have the ALLOCATABLE attribute because procedure " "'%s' is BIND(C)" msgstr "" -#: fortran/decl.c:1050 +#: fortran/decl.c:1056 #, gcc-internal-format, gfc-internal-format msgid "" "Variable '%s' at %L cannot have the POINTER attribute because procedure '%s' " "is BIND(C)" msgstr "" -#: fortran/decl.c:1059 +#: fortran/decl.c:1065 #, gcc-internal-format, gfc-internal-format msgid "" "Variable '%s' at %L cannot have the OPTIONAL attribute because procedure " "'%s' is BIND(C)" msgstr "" -#: fortran/decl.c:1072 +#: fortran/decl.c:1078 #, gcc-internal-format, gfc-internal-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:1082 +#: fortran/decl.c:1088 #, gcc-internal-format, gfc-internal-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:1163 +#: fortran/decl.c:1169 #, gcc-internal-format, gfc-internal-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:1207 +#: fortran/decl.c:1211 #, gcc-internal-format, gfc-internal-format msgid "CHARACTER expression at %L is being truncated (%d/%d)" msgstr "" -#: fortran/decl.c:1214 +#: fortran/decl.c:1218 #, gcc-internal-format, gfc-internal-format msgid "" "The CHARACTER elements of the array constructor at %L must have the same " "length (%d/%d)" msgstr "" -#: fortran/decl.c:1304 +#: fortran/decl.c:1308 #, gcc-internal-format, gfc-internal-format msgid "Initializer not allowed for PARAMETER '%s' at %C" msgstr "" -#: fortran/decl.c:1314 +#: fortran/decl.c:1318 #, gcc-internal-format, gfc-internal-format msgid "PARAMETER at %L is missing an initializer" msgstr "" -#: fortran/decl.c:1324 +#: fortran/decl.c:1328 #, gcc-internal-format, gfc-internal-format msgid "" "Variable '%s' at %C with an initializer already appears in a DATA statement" msgstr "" -#: fortran/decl.c:1405 +#: fortran/decl.c:1409 #, gcc-internal-format, gfc-internal-format msgid "Can't initialize implied-shape array at %L with scalar" msgstr "" -#: fortran/decl.c:1423 +#: fortran/decl.c:1427 #, gcc-internal-format, gfc-internal-format msgid "Non-constant lower bound in implied-shape declaration at %L" msgstr "" -#: fortran/decl.c:1518 +#: fortran/decl.c:1522 #, gcc-internal-format, gfc-internal-format msgid "Component at %C must have the POINTER attribute" msgstr "" -#: fortran/decl.c:1526 +#: fortran/decl.c:1530 #, gcc-internal-format, gfc-internal-format msgid "Array component of structure at %C must have explicit or deferred shape" msgstr "" -#: fortran/decl.c:1606 +#: fortran/decl.c:1610 #, gcc-internal-format, gfc-internal-format msgid "Pointer array component of structure at %C must have a deferred shape" msgstr "" -#: fortran/decl.c:1615 +#: fortran/decl.c:1619 #, gcc-internal-format, gfc-internal-format msgid "Allocatable component of structure at %C must have a deferred shape" msgstr "" -#: fortran/decl.c:1624 +#: fortran/decl.c:1628 #, gcc-internal-format, gfc-internal-format msgid "Array component of structure at %C must have an explicit shape" msgstr "" -#: fortran/decl.c:1659 +#: fortran/decl.c:1662 #, gcc-internal-format, gfc-internal-format msgid "NULL() initialization at %C is ambiguous" msgstr "" -#: fortran/decl.c:1686 +#: fortran/decl.c:1689 #, gcc-internal-format, gfc-internal-format msgid "Initialization of pointer at %C is not allowed in a PURE procedure" msgstr "" -#: fortran/decl.c:1706 +#: fortran/decl.c:1709 #, gcc-internal-format, gfc-internal-format msgid "Error in pointer initialization at %C" msgstr "" -#: fortran/decl.c:1713 +#: fortran/decl.c:1716 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2008: non-NULL pointer initialization at %C" msgstr "" -#: fortran/decl.c:1774 +#: fortran/decl.c:1777 #, gcc-internal-format, gfc-internal-format msgid "Non-PARAMETER symbol '%s' at %L can't be implied-shape" msgstr "" -#: fortran/decl.c:1785 +#: fortran/decl.c:1788 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2008: Implied-shape array at %L" msgstr "" -#: fortran/decl.c:1849 fortran/decl.c:6232 +#: fortran/decl.c:1852 fortran/decl.c:6247 #, gcc-internal-format, gfc-internal-format msgid "Duplicate array spec for Cray pointee at %C" msgstr "" -#: fortran/decl.c:1920 +#: fortran/decl.c:1923 #, gcc-internal-format, gfc-internal-format msgid "the type of '%s' at %C has not been declared within the interface" msgstr "" -#: fortran/decl.c:1936 +#: fortran/decl.c:1939 #, gcc-internal-format, gfc-internal-format msgid "Function name '%s' not allowed at %C" msgstr "" -#: fortran/decl.c:1952 +#: fortran/decl.c:1955 #, gcc-internal-format, gfc-internal-format msgid "Extension: Old-style initialization at %C" msgstr "" -#: fortran/decl.c:1967 fortran/decl.c:4736 +#: fortran/decl.c:1970 fortran/decl.c:4749 #, gcc-internal-format, gfc-internal-format msgid "Initialization at %C isn't for a pointer variable" msgstr "" -#: fortran/decl.c:1980 +#: fortran/decl.c:1983 #, gcc-internal-format, gfc-internal-format msgid "Pointer initialization at %C requires '=>', not '='" msgstr "" -#: fortran/decl.c:1989 fortran/decl.c:7495 +#: fortran/decl.c:1992 fortran/decl.c:7470 #, gcc-internal-format, gfc-internal-format msgid "Expected an initialization expression at %C" msgstr "" -#: fortran/decl.c:1996 +#: fortran/decl.c:1999 #, gcc-internal-format, gfc-internal-format msgid "Initialization of variable at %C is not allowed in a PURE procedure" msgstr "" -#: fortran/decl.c:2009 +#: fortran/decl.c:2012 #, gcc-internal-format, gfc-internal-format msgid "Initialization of allocatable component at %C is not allowed" msgstr "" -#: fortran/decl.c:2063 fortran/decl.c:2072 +#: fortran/decl.c:2066 fortran/decl.c:2075 #, gcc-internal-format, gfc-internal-format msgid "Old-style type declaration %s*%d not supported at %C" msgstr "" -#: fortran/decl.c:2077 +#: fortran/decl.c:2080 #, gcc-internal-format, gfc-internal-format msgid "Nonstandard type declaration %s*%d at %C" msgstr "" -#: fortran/decl.c:2128 fortran/decl.c:2204 +#: fortran/decl.c:2131 fortran/decl.c:2207 #, gcc-internal-format, gfc-internal-format msgid "Missing right parenthesis at %C" msgstr "" -#: fortran/decl.c:2141 fortran/decl.c:2249 +#: fortran/decl.c:2144 fortran/decl.c:2252 #, gcc-internal-format, gfc-internal-format msgid "Expected initialization expression at %C" msgstr "" -#: fortran/decl.c:2149 fortran/decl.c:2255 +#: fortran/decl.c:2152 fortran/decl.c:2258 #, gcc-internal-format, gfc-internal-format msgid "Expected scalar initialization expression at %C" msgstr "" -#: fortran/decl.c:2180 +#: fortran/decl.c:2183 #, gcc-internal-format, gfc-internal-format msgid "Kind %d not supported for type %s at %C" msgstr "" -#: fortran/decl.c:2193 +#: fortran/decl.c:2196 #, gcc-internal-format, gfc-internal-format msgid "C kind type parameter is for type %s but type at %L is %s" msgstr "" -#: fortran/decl.c:2202 +#: fortran/decl.c:2205 #, gcc-internal-format, gfc-internal-format msgid "Missing right parenthesis or comma at %C" msgstr "" -#: fortran/decl.c:2275 +#: fortran/decl.c:2278 #, gcc-internal-format, gfc-internal-format msgid "Kind %d is not supported for CHARACTER at %C" msgstr "" -#: fortran/decl.c:2407 +#: fortran/decl.c:2410 #, gcc-internal-format, gfc-internal-format msgid "Syntax error in CHARACTER declaration at %C" msgstr "" -#: fortran/decl.c:2491 +#: fortran/decl.c:2494 #, gcc-internal-format, gfc-internal-format msgid "Extension: BYTE type at %C" msgstr "" -#: fortran/decl.c:2497 +#: fortran/decl.c:2500 #, gcc-internal-format, gfc-internal-format msgid "BYTE type used at %C is not available on the target machine" msgstr "" -#: fortran/decl.c:2523 fortran/decl.c:2554 fortran/decl.c:2584 -#: fortran/decl.c:2668 +#: fortran/decl.c:2526 fortran/decl.c:2557 fortran/decl.c:2587 +#: fortran/decl.c:2681 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2008: TYPE with intrinsic-type-spec at %C" msgstr "" -#: fortran/decl.c:2579 +#: fortran/decl.c:2582 #, gcc-internal-format, gfc-internal-format msgid "Extension: DOUBLE COMPLEX at %C" msgstr "" -#: fortran/decl.c:2616 +#: fortran/decl.c:2620 +#, gcc-internal-format, gfc-internal-format +msgid "Unlimited polymorphism at %C not yet supported" +msgstr "" + +#: fortran/decl.c:2629 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: CLASS statement at %C" msgstr "" -#: fortran/decl.c:2639 fortran/decl.c:2648 fortran/decl.c:2982 -#: fortran/decl.c:2990 +#: fortran/decl.c:2652 fortran/decl.c:2661 fortran/decl.c:2995 +#: fortran/decl.c:3003 #, gcc-internal-format, gfc-internal-format msgid "Type name '%s' at %C is ambiguous" msgstr "" -#: fortran/decl.c:2744 +#: fortran/decl.c:2757 #, gcc-internal-format, gfc-internal-format msgid "Missing character range in IMPLICIT at %C" msgstr "" -#: fortran/decl.c:2790 +#: fortran/decl.c:2803 #, gcc-internal-format, gfc-internal-format msgid "Letters must be in alphabetic order in IMPLICIT statement at %C" msgstr "" -#: fortran/decl.c:2846 +#: fortran/decl.c:2859 #, gcc-internal-format, gfc-internal-format msgid "Empty IMPLICIT statement at %C" msgstr "" -#: fortran/decl.c:2948 +#: fortran/decl.c:2961 #, gcc-internal-format, gfc-internal-format msgid "IMPORT statement at %C only permitted in an INTERFACE body" msgstr "" -#: fortran/decl.c:2953 +#: fortran/decl.c:2966 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: IMPORT statement at %C" msgstr "" -#: fortran/decl.c:2968 +#: fortran/decl.c:2981 #, gcc-internal-format, gfc-internal-format msgid "Expecting list of named entities at %C" msgstr "" -#: fortran/decl.c:2996 +#: fortran/decl.c:3009 #, gcc-internal-format, gfc-internal-format msgid "Cannot IMPORT '%s' from host scoping unit at %C - does not exist." msgstr "" -#: fortran/decl.c:3003 +#: fortran/decl.c:3016 #, gcc-internal-format, gfc-internal-format msgid "'%s' is already IMPORTed from host scoping unit at %C." msgstr "" -#: fortran/decl.c:3032 +#: fortran/decl.c:3045 #, gcc-internal-format, gfc-internal-format msgid "Syntax error in IMPORT statement at %C" msgstr "" -#: fortran/decl.c:3331 +#: fortran/decl.c:3344 #, gcc-internal-format, gfc-internal-format msgid "Missing codimension specification at %C" msgstr "" -#: fortran/decl.c:3333 +#: fortran/decl.c:3346 #, gcc-internal-format, gfc-internal-format msgid "Missing dimension specification at %C" msgstr "" -#: fortran/decl.c:3416 +#: fortran/decl.c:3429 #, gcc-internal-format, gfc-internal-format msgid "Duplicate %s attribute at %L" msgstr "" -#: fortran/decl.c:3435 +#: fortran/decl.c:3448 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: ALLOCATABLE attribute at %C in a TYPE definition" msgstr "" -#: fortran/decl.c:3445 +#: fortran/decl.c:3458 #, gcc-internal-format, gfc-internal-format msgid "Attribute at %L is not allowed in a TYPE definition" msgstr "" -#: fortran/decl.c:3463 +#: fortran/decl.c:3476 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: Attribute %s at %L in a TYPE definition" msgstr "" -#: fortran/decl.c:3474 +#: fortran/decl.c:3487 #, gcc-internal-format, gfc-internal-format msgid "" "%s attribute at %L is not allowed outside of the specification part of a " "module" msgstr "" -#: fortran/decl.c:3489 +#: fortran/decl.c:3502 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: ASYNCHRONOUS attribute at %C" msgstr "" -#: fortran/decl.c:3502 +#: fortran/decl.c:3515 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2008: CONTIGUOUS attribute at %C" msgstr "" -#: fortran/decl.c:3548 fortran/decl.c:6509 +#: fortran/decl.c:3561 fortran/decl.c:6524 #, gcc-internal-format, gfc-internal-format msgid "PROTECTED at %C only allowed in specification part of a module" msgstr "" -#: fortran/decl.c:3554 +#: fortran/decl.c:3567 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: PROTECTED attribute at %C" msgstr "" -#: fortran/decl.c:3585 +#: fortran/decl.c:3598 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: VALUE attribute at %C" msgstr "" -#: fortran/decl.c:3595 +#: fortran/decl.c:3608 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: VOLATILE attribute at %C" msgstr "" -#: fortran/decl.c:3639 +#: fortran/decl.c:3652 #, gcc-internal-format, gfc-internal-format msgid "Multiple identifiers provided with single NAME= specifier at %C" msgstr "" -#: fortran/decl.c:3736 +#: fortran/decl.c:3749 #, gcc-internal-format, gfc-internal-format msgid "" "Implicitly declared BIND(C) function '%s' at %L may not be C interoperable" msgstr "" -#: fortran/decl.c:3757 +#: fortran/decl.c:3770 #, gcc-internal-format, gfc-internal-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:3766 +#: fortran/decl.c:3779 #, gcc-internal-format, gfc-internal-format msgid "Type declaration '%s' at %L is not C interoperable but it is BIND(C)" msgstr "" -#: fortran/decl.c:3770 +#: fortran/decl.c:3783 #, gcc-internal-format, gfc-internal-format msgid "Variable '%s' at %L may not be a C interoperable kind but it is bind(c)" msgstr "" -#: fortran/decl.c:3782 +#: fortran/decl.c:3795 #, gcc-internal-format, gfc-internal-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:3796 +#: fortran/decl.c:3809 #, gcc-internal-format, gfc-internal-format msgid "Variable '%s' at %L cannot have both the POINTER and BIND(C) attributes" msgstr "" -#: fortran/decl.c:3804 +#: fortran/decl.c:3817 #, gcc-internal-format, gfc-internal-format msgid "" "Variable '%s' at %L cannot have both the ALLOCATABLE and BIND(C) attributes" msgstr "" -#: fortran/decl.c:3816 +#: fortran/decl.c:3829 #, gcc-internal-format, gfc-internal-format msgid "Return type of BIND(C) function '%s' at %L cannot be an array" msgstr "" -#: fortran/decl.c:3824 +#: fortran/decl.c:3837 #, gcc-internal-format, gfc-internal-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:3835 +#: fortran/decl.c:3848 #, gcc-internal-format, gfc-internal-format msgid "" "Symbol '%s' at %L is marked PRIVATE but has been given the binding label '%s'" msgstr "" -#: fortran/decl.c:3910 +#: fortran/decl.c:3923 #, gcc-internal-format, gfc-internal-format msgid "" "Need either entity or common block name for attribute specification " "statement at %C" msgstr "" -#: fortran/decl.c:3957 +#: fortran/decl.c:3970 #, gcc-internal-format, gfc-internal-format msgid "" "Missing entity or common block name for attribute specification statement at " @@ -34800,780 +34931,780 @@ 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:4066 +#: fortran/decl.c:4079 #, gcc-internal-format, gfc-internal-format msgid "" "Derived type at %C has not been previously defined and so cannot appear in a " "derived type definition" msgstr "" -#: fortran/decl.c:4098 +#: fortran/decl.c:4111 #, gcc-internal-format, gfc-internal-format msgid "Syntax error in data declaration at %C" msgstr "" -#: fortran/decl.c:4172 +#: fortran/decl.c:4185 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2008: IMPURE procedure at %C" msgstr "" -#: fortran/decl.c:4185 +#: fortran/decl.c:4198 #, gcc-internal-format, gfc-internal-format msgid "PURE and IMPURE must not appear both at %C" msgstr "" -#: fortran/decl.c:4291 +#: fortran/decl.c:4304 #, gcc-internal-format, gfc-internal-format msgid "Name '%s' at %C is the name of the procedure" msgstr "" -#: fortran/decl.c:4303 +#: fortran/decl.c:4316 #, gcc-internal-format, gfc-internal-format msgid "Unexpected junk in formal argument list at %C" msgstr "" -#: fortran/decl.c:4320 +#: fortran/decl.c:4333 #, gcc-internal-format, gfc-internal-format msgid "Duplicate symbol '%s' in formal argument list at %C" msgstr "" -#: fortran/decl.c:4371 +#: fortran/decl.c:4384 #, gcc-internal-format, gfc-internal-format msgid "RESULT variable at %C must be different than function name" msgstr "" -#: fortran/decl.c:4448 +#: fortran/decl.c:4461 #, gcc-internal-format, gfc-internal-format msgid "Unexpected junk after function declaration at %C" msgstr "" -#: fortran/decl.c:4458 fortran/decl.c:5487 +#: fortran/decl.c:4471 fortran/decl.c:5500 #, gcc-internal-format, gfc-internal-format msgid "" "Fortran 2008: BIND(C) attribute at %L may not be specified for an internal " "procedure" msgstr "" -#: fortran/decl.c:4602 +#: fortran/decl.c:4615 #, gcc-internal-format, gfc-internal-format msgid "Interface '%s' at %C may not be generic" msgstr "" -#: fortran/decl.c:4608 +#: fortran/decl.c:4621 #, gcc-internal-format, gfc-internal-format msgid "Interface '%s' at %C may not be a statement function" msgstr "" -#: fortran/decl.c:4621 +#: fortran/decl.c:4634 #, gcc-internal-format, gfc-internal-format msgid "Intrinsic procedure '%s' not allowed in PROCEDURE statement at %C" msgstr "" -#: fortran/decl.c:4676 +#: fortran/decl.c:4689 #, gcc-internal-format, gfc-internal-format msgid "BIND(C) attribute at %C requires an interface with BIND(C)" msgstr "" -#: fortran/decl.c:4683 +#: fortran/decl.c:4696 #, gcc-internal-format, gfc-internal-format msgid "BIND(C) procedure with NAME may not have POINTER attribute at %C" msgstr "" -#: fortran/decl.c:4689 +#: fortran/decl.c:4702 #, gcc-internal-format, gfc-internal-format msgid "Dummy procedure at %C may not have BIND(C) attribute with NAME" msgstr "" -#: fortran/decl.c:4712 +#: fortran/decl.c:4725 #, gcc-internal-format, gfc-internal-format msgid "Procedure '%s' at %L already has basic type of %s" msgstr "" -#: fortran/decl.c:4760 fortran/decl.c:4927 fortran/decl.c:7977 +#: fortran/decl.c:4773 fortran/decl.c:4940 fortran/decl.c:7952 #, gcc-internal-format, gfc-internal-format msgid "Syntax error in PROCEDURE statement at %C" msgstr "" -#: fortran/decl.c:4809 fortran/decl.c:7878 +#: fortran/decl.c:4822 fortran/decl.c:7853 #, gcc-internal-format, gfc-internal-format msgid "Expected '::' after binding-attributes at %C" msgstr "" -#: fortran/decl.c:4816 +#: fortran/decl.c:4829 #, gcc-internal-format, gfc-internal-format msgid "NOPASS or explicit interface required at %C" msgstr "" -#: fortran/decl.c:4820 +#: fortran/decl.c:4833 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: Procedure pointer component at %C" msgstr "" -#: fortran/decl.c:4884 +#: fortran/decl.c:4897 #, gcc-internal-format, gfc-internal-format msgid "Syntax error in procedure pointer component at %C" msgstr "" -#: fortran/decl.c:4901 +#: fortran/decl.c:4914 #, gcc-internal-format, gfc-internal-format msgid "PROCEDURE at %C must be in a generic interface" msgstr "" -#: fortran/decl.c:4966 +#: fortran/decl.c:4979 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: PROCEDURE statement at %C" msgstr "" -#: fortran/decl.c:5034 +#: fortran/decl.c:5047 #, gcc-internal-format, gfc-internal-format msgid "Expected formal argument list in function definition at %C" msgstr "" -#: fortran/decl.c:5058 fortran/decl.c:5062 fortran/decl.c:5265 -#: fortran/decl.c:5269 fortran/decl.c:5455 fortran/decl.c:5459 -#: fortran/symbol.c:1574 +#: fortran/decl.c:5071 fortran/decl.c:5075 fortran/decl.c:5278 +#: fortran/decl.c:5282 fortran/decl.c:5468 fortran/decl.c:5472 +#: fortran/symbol.c:1582 #, gcc-internal-format, gfc-internal-format msgid "BIND(C) attribute at %L can only be used for variables or common blocks" msgstr "" -#: fortran/decl.c:5177 +#: fortran/decl.c:5190 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2008 obsolescent feature: ENTRY statement at %C" msgstr "" -#: fortran/decl.c:5187 +#: fortran/decl.c:5200 #, gcc-internal-format, gfc-internal-format msgid "ENTRY statement at %C cannot appear within a PROGRAM" msgstr "" -#: fortran/decl.c:5190 +#: fortran/decl.c:5203 #, gcc-internal-format, gfc-internal-format msgid "ENTRY statement at %C cannot appear within a MODULE" msgstr "" -#: fortran/decl.c:5193 +#: fortran/decl.c:5206 #, gcc-internal-format, gfc-internal-format msgid "ENTRY statement at %C cannot appear within a BLOCK DATA" msgstr "" -#: fortran/decl.c:5197 +#: fortran/decl.c:5210 #, gcc-internal-format, gfc-internal-format msgid "ENTRY statement at %C cannot appear within an INTERFACE" msgstr "" -#: fortran/decl.c:5201 +#: fortran/decl.c:5214 #, gcc-internal-format, gfc-internal-format msgid "ENTRY statement at %C cannot appear within a DERIVED TYPE block" msgstr "" -#: fortran/decl.c:5205 +#: fortran/decl.c:5218 #, gcc-internal-format, gfc-internal-format msgid "ENTRY statement at %C cannot appear within an IF-THEN block" msgstr "" -#: fortran/decl.c:5209 +#: fortran/decl.c:5222 #, gcc-internal-format, gfc-internal-format msgid "ENTRY statement at %C cannot appear within a DO block" msgstr "" -#: fortran/decl.c:5213 +#: fortran/decl.c:5226 #, gcc-internal-format, gfc-internal-format msgid "ENTRY statement at %C cannot appear within a SELECT block" msgstr "" -#: fortran/decl.c:5217 +#: fortran/decl.c:5230 #, gcc-internal-format, gfc-internal-format msgid "ENTRY statement at %C cannot appear within a FORALL block" msgstr "" -#: fortran/decl.c:5221 +#: fortran/decl.c:5234 #, gcc-internal-format, gfc-internal-format msgid "ENTRY statement at %C cannot appear within a WHERE block" msgstr "" -#: fortran/decl.c:5225 +#: fortran/decl.c:5238 #, gcc-internal-format, gfc-internal-format msgid "ENTRY statement at %C cannot appear within a contained subprogram" msgstr "" -#: fortran/decl.c:5243 +#: fortran/decl.c:5256 #, gcc-internal-format, gfc-internal-format msgid "ENTRY statement at %C cannot appear in a contained procedure" msgstr "" -#: fortran/decl.c:5297 fortran/decl.c:5495 +#: fortran/decl.c:5310 fortran/decl.c:5508 #, gcc-internal-format, gfc-internal-format msgid "Missing required parentheses before BIND(C) at %C" msgstr "" -#: fortran/decl.c:5557 fortran/decl.c:5573 +#: fortran/decl.c:5570 fortran/decl.c:5586 #, gcc-internal-format, gfc-internal-format msgid "Syntax error in NAME= specifier for binding label at %C" msgstr "" -#: fortran/decl.c:5588 +#: fortran/decl.c:5601 #, gcc-internal-format, gfc-internal-format msgid "Missing closing quote '\"' for binding label at %C" msgstr "" -#: fortran/decl.c:5597 +#: fortran/decl.c:5610 #, gcc-internal-format, gfc-internal-format msgid "Missing closing quote ''' for binding label at %C" msgstr "" -#: fortran/decl.c:5607 +#: fortran/decl.c:5620 #, gcc-internal-format, gfc-internal-format msgid "Missing closing paren for binding label at %C" msgstr "" -#: fortran/decl.c:5613 +#: fortran/decl.c:5626 #, gcc-internal-format, gfc-internal-format msgid "No binding name is allowed in BIND(C) at %C" msgstr "" -#: fortran/decl.c:5619 +#: fortran/decl.c:5632 #, gcc-internal-format, gfc-internal-format msgid "For dummy procedure %s, no binding name is allowed in BIND(C) at %C" msgstr "" -#: fortran/decl.c:5650 +#: fortran/decl.c:5663 #, gcc-internal-format, gfc-internal-format msgid "NAME not allowed on BIND(C) for ABSTRACT INTERFACE at %C" msgstr "" -#: fortran/decl.c:5854 +#: fortran/decl.c:5867 #, gcc-internal-format, gfc-internal-format msgid "Unexpected END statement at %C" msgstr "" -#: fortran/decl.c:5862 +#: fortran/decl.c:5875 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2008: END statement instead of %s statement at %L" msgstr "" #. We would have required END [something]. -#: fortran/decl.c:5870 +#: fortran/decl.c:5883 #, gcc-internal-format, gfc-internal-format msgid "%s statement expected at %L" msgstr "" -#: fortran/decl.c:5881 +#: fortran/decl.c:5894 #, gcc-internal-format, gfc-internal-format msgid "Expecting %s statement at %C" msgstr "" -#: fortran/decl.c:5897 +#: fortran/decl.c:5910 #, gcc-internal-format, gfc-internal-format msgid "Expected block name of '%s' in %s statement at %C" msgstr "" -#: fortran/decl.c:5914 +#: fortran/decl.c:5927 #, gcc-internal-format, gfc-internal-format msgid "Expected terminating name at %C" msgstr "" -#: fortran/decl.c:5923 fortran/decl.c:5931 +#: fortran/decl.c:5936 fortran/decl.c:5944 #, gcc-internal-format, gfc-internal-format msgid "Expected label '%s' for %s statement at %C" msgstr "" -#: fortran/decl.c:5990 +#: fortran/decl.c:6003 #, gcc-internal-format, gfc-internal-format msgid "Missing array specification at %L in DIMENSION statement" msgstr "" -#: fortran/decl.c:5998 +#: fortran/decl.c:6011 #, gcc-internal-format, gfc-internal-format msgid "Dimensions specified for %s at %L after its initialisation" msgstr "" -#: fortran/decl.c:6006 +#: fortran/decl.c:6019 #, gcc-internal-format, gfc-internal-format msgid "Missing array specification at %L in CODIMENSION statement" msgstr "" -#: fortran/decl.c:6015 +#: fortran/decl.c:6028 #, gcc-internal-format, gfc-internal-format msgid "Array specification must be deferred at %L" msgstr "" -#: fortran/decl.c:6112 +#: fortran/decl.c:6127 #, gcc-internal-format, gfc-internal-format msgid "Unexpected character in variable list at %C" msgstr "" -#: fortran/decl.c:6149 +#: fortran/decl.c:6164 #, gcc-internal-format, gfc-internal-format msgid "Expected '(' at %C" msgstr "" -#: fortran/decl.c:6163 fortran/decl.c:6203 +#: fortran/decl.c:6178 fortran/decl.c:6218 #, gcc-internal-format, gfc-internal-format msgid "Expected variable name at %C" msgstr "" -#: fortran/decl.c:6179 +#: fortran/decl.c:6194 #, gcc-internal-format, gfc-internal-format msgid "Cray pointer at %C must be an integer" msgstr "" -#: fortran/decl.c:6183 +#: fortran/decl.c:6198 #, gcc-internal-format, gfc-internal-format msgid "" "Cray pointer at %C has %d bytes of precision; memory addresses require %d " "bytes" msgstr "" -#: fortran/decl.c:6189 +#: fortran/decl.c:6204 #, gcc-internal-format, gfc-internal-format msgid "Expected \",\" at %C" msgstr "" -#: fortran/decl.c:6252 +#: fortran/decl.c:6267 #, gcc-internal-format, gfc-internal-format msgid "Expected \")\" at %C" msgstr "" -#: fortran/decl.c:6264 +#: fortran/decl.c:6279 #, gcc-internal-format, gfc-internal-format msgid "Expected \",\" or end of statement at %C" msgstr "" -#: fortran/decl.c:6290 +#: fortran/decl.c:6305 #, gcc-internal-format, gfc-internal-format msgid "INTENT is not allowed inside of BLOCK at %C" msgstr "" -#: fortran/decl.c:6322 +#: fortran/decl.c:6337 #, gcc-internal-format, gfc-internal-format msgid "OPTIONAL is not allowed inside of BLOCK at %C" msgstr "" -#: fortran/decl.c:6341 +#: fortran/decl.c:6356 #, gcc-internal-format, gfc-internal-format msgid "Cray pointer declaration at %C requires -fcray-pointer flag" msgstr "" -#: fortran/decl.c:6380 +#: fortran/decl.c:6395 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2008: CONTIGUOUS statement at %C" msgstr "" -#: fortran/decl.c:6460 +#: fortran/decl.c:6475 #, gcc-internal-format, gfc-internal-format msgid "" "Access specification of the %s operator at %C has already been specified" msgstr "" -#: fortran/decl.c:6477 +#: fortran/decl.c:6492 #, gcc-internal-format, gfc-internal-format msgid "" "Access specification of the .%s. operator at %C has already been specified" msgstr "" -#: fortran/decl.c:6515 +#: fortran/decl.c:6530 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: PROTECTED statement at %C" msgstr "" -#: fortran/decl.c:6555 +#: fortran/decl.c:6570 #, gcc-internal-format, gfc-internal-format msgid "Syntax error in PROTECTED statement at %C" msgstr "" -#: fortran/decl.c:6579 +#: fortran/decl.c:6594 #, gcc-internal-format, gfc-internal-format msgid "" "PRIVATE statement at %C is only allowed in the specification part of a module" msgstr "" -#: fortran/decl.c:6616 +#: fortran/decl.c:6631 #, gcc-internal-format, gfc-internal-format msgid "" "PUBLIC statement at %C is only allowed in the specification part of a module" msgstr "" -#: fortran/decl.c:6644 +#: fortran/decl.c:6659 #, gcc-internal-format, gfc-internal-format msgid "Expected variable name at %C in PARAMETER statement" msgstr "" -#: fortran/decl.c:6651 +#: fortran/decl.c:6666 #, gcc-internal-format, gfc-internal-format msgid "Expected = sign in PARAMETER statement at %C" msgstr "" -#: fortran/decl.c:6657 +#: fortran/decl.c:6672 #, gcc-internal-format, gfc-internal-format msgid "Expected expression at %C in PARAMETER statement" msgstr "" -#: fortran/decl.c:6677 +#: fortran/decl.c:6692 #, gcc-internal-format, gfc-internal-format msgid "Initializing already initialized variable at %C" msgstr "" -#: fortran/decl.c:6712 +#: fortran/decl.c:6727 #, gcc-internal-format, gfc-internal-format msgid "Unexpected characters in PARAMETER statement at %C" msgstr "" -#: fortran/decl.c:6736 +#: fortran/decl.c:6751 #, gcc-internal-format, gfc-internal-format msgid "Blanket SAVE statement at %C follows previous SAVE statement" msgstr "" -#: fortran/decl.c:6748 +#: fortran/decl.c:6763 #, gcc-internal-format, gfc-internal-format msgid "SAVE statement at %C follows blanket SAVE statement" msgstr "" -#: fortran/decl.c:6795 +#: fortran/decl.c:6810 #, gcc-internal-format, gfc-internal-format msgid "Syntax error in SAVE statement at %C" msgstr "" -#: fortran/decl.c:6809 +#: fortran/decl.c:6824 #, gcc-internal-format, gfc-internal-format msgid "VALUE is not allowed inside of BLOCK at %C" msgstr "" -#: fortran/decl.c:6813 +#: fortran/decl.c:6828 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: VALUE statement at %C" msgstr "" -#: fortran/decl.c:6853 +#: fortran/decl.c:6868 #, gcc-internal-format, gfc-internal-format msgid "Syntax error in VALUE statement at %C" msgstr "" -#: fortran/decl.c:6864 +#: fortran/decl.c:6879 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: VOLATILE statement at %C" msgstr "" -#: fortran/decl.c:6888 +#: fortran/decl.c:6903 #, gcc-internal-format, gfc-internal-format msgid "" "Specifying VOLATILE for coarray variable '%s' at %C, which is use-/host-" "associated" msgstr "" -#: fortran/decl.c:6914 +#: fortran/decl.c:6929 #, gcc-internal-format, gfc-internal-format msgid "Syntax error in VOLATILE statement at %C" msgstr "" -#: fortran/decl.c:6925 +#: fortran/decl.c:6940 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: ASYNCHRONOUS statement at %C" msgstr "" -#: fortran/decl.c:6967 +#: fortran/decl.c:6982 #, gcc-internal-format, gfc-internal-format msgid "Syntax error in ASYNCHRONOUS statement at %C" msgstr "" -#: fortran/decl.c:6990 +#: fortran/decl.c:7005 #, gcc-internal-format, gfc-internal-format msgid "MODULE PROCEDURE at %C must be in a generic module interface" msgstr "" -#: fortran/decl.c:7035 +#: fortran/decl.c:7050 #, gcc-internal-format, gfc-internal-format msgid "Intrinsic procedure at %L cannot be a MODULE PROCEDURE" msgstr "" -#: fortran/decl.c:7084 +#: fortran/decl.c:7099 #, gcc-internal-format, gfc-internal-format msgid "Ambiguous symbol in TYPE definition at %C" msgstr "" -#: fortran/decl.c:7090 +#: fortran/decl.c:7105 #, gcc-internal-format, gfc-internal-format msgid "No such symbol in TYPE definition at %C" msgstr "" -#: fortran/decl.c:7096 +#: fortran/decl.c:7111 #, gcc-internal-format, gfc-internal-format msgid "'%s' in EXTENDS expression at %C is not a derived type" msgstr "" -#: fortran/decl.c:7103 +#: fortran/decl.c:7118 #, gcc-internal-format, gfc-internal-format msgid "'%s' cannot be extended at %C because it is BIND(C)" msgstr "" -#: fortran/decl.c:7110 +#: fortran/decl.c:7125 #, gcc-internal-format, gfc-internal-format msgid "'%s' cannot be extended at %C because it is a SEQUENCE type" msgstr "" -#: fortran/decl.c:7133 +#: fortran/decl.c:7148 #, gcc-internal-format, gfc-internal-format msgid "" "Derived type at %C can only be PRIVATE in the specification part of a module" msgstr "" -#: fortran/decl.c:7145 +#: fortran/decl.c:7160 #, gcc-internal-format, gfc-internal-format msgid "" "Derived type at %C can only be PUBLIC in the specification part of a module" msgstr "" -#: fortran/decl.c:7166 +#: fortran/decl.c:7181 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: ABSTRACT type at %C" msgstr "" -#: fortran/decl.c:7270 +#: fortran/decl.c:7245 #, gcc-internal-format, gfc-internal-format msgid "Expected :: in TYPE definition at %C" msgstr "" -#: fortran/decl.c:7281 +#: fortran/decl.c:7256 #, gcc-internal-format, gfc-internal-format msgid "Type name '%s' at %C cannot be the same as an intrinsic type" msgstr "" -#: fortran/decl.c:7291 +#: fortran/decl.c:7266 #, gcc-internal-format, gfc-internal-format msgid "Derived type name '%s' at %C already has a basic type of %s" msgstr "" -#: fortran/decl.c:7307 +#: fortran/decl.c:7282 #, gcc-internal-format, gfc-internal-format msgid "Derived type definition of '%s' at %C has already been defined" msgstr "" -#: fortran/decl.c:7380 +#: fortran/decl.c:7355 #, gcc-internal-format, gfc-internal-format msgid "Cray Pointee at %C cannot be assumed shape array" msgstr "" -#: fortran/decl.c:7400 +#: fortran/decl.c:7375 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: ENUM and ENUMERATOR at %C" msgstr "" -#: fortran/decl.c:7433 +#: fortran/decl.c:7408 #, gcc-internal-format, gfc-internal-format msgid "Enumerator exceeds the C integer type at %C" msgstr "" -#: fortran/decl.c:7512 +#: fortran/decl.c:7487 #, gcc-internal-format, gfc-internal-format msgid "ENUMERATOR %L not initialized with integer expression" msgstr "" -#: fortran/decl.c:7560 +#: fortran/decl.c:7535 #, gcc-internal-format, gfc-internal-format msgid "ENUM definition statement expected before %C" msgstr "" -#: fortran/decl.c:7596 +#: fortran/decl.c:7571 #, gcc-internal-format, gfc-internal-format msgid "Syntax error in ENUMERATOR definition at %C" msgstr "" -#: fortran/decl.c:7643 fortran/decl.c:7658 +#: fortran/decl.c:7618 fortran/decl.c:7633 #, gcc-internal-format, gfc-internal-format msgid "Duplicate access-specifier at %C" msgstr "" -#: fortran/decl.c:7678 +#: fortran/decl.c:7653 #, gcc-internal-format, gfc-internal-format msgid "Binding attributes already specify passing, illegal NOPASS at %C" msgstr "" -#: fortran/decl.c:7698 +#: fortran/decl.c:7673 #, gcc-internal-format, gfc-internal-format msgid "Binding attributes already specify passing, illegal PASS at %C" msgstr "" -#: fortran/decl.c:7725 +#: fortran/decl.c:7700 #, gcc-internal-format, gfc-internal-format msgid "Duplicate POINTER attribute at %C" msgstr "" -#: fortran/decl.c:7743 +#: fortran/decl.c:7718 #, gcc-internal-format, gfc-internal-format msgid "Duplicate NON_OVERRIDABLE at %C" msgstr "" -#: fortran/decl.c:7759 +#: fortran/decl.c:7734 #, gcc-internal-format, gfc-internal-format msgid "Duplicate DEFERRED at %C" msgstr "" -#: fortran/decl.c:7772 +#: fortran/decl.c:7747 #, gcc-internal-format, gfc-internal-format msgid "Expected access-specifier at %C" msgstr "" -#: fortran/decl.c:7774 +#: fortran/decl.c:7749 #, gcc-internal-format, gfc-internal-format msgid "Expected binding attribute at %C" msgstr "" -#: fortran/decl.c:7782 +#: fortran/decl.c:7757 #, gcc-internal-format, gfc-internal-format msgid "NON_OVERRIDABLE and DEFERRED can't both appear at %C" msgstr "" -#: fortran/decl.c:7794 +#: fortran/decl.c:7769 #, gcc-internal-format, gfc-internal-format msgid "POINTER attribute is required for procedure pointer component at %C" msgstr "" -#: fortran/decl.c:7836 +#: fortran/decl.c:7811 #, gcc-internal-format, gfc-internal-format msgid "Interface-name expected after '(' at %C" msgstr "" -#: fortran/decl.c:7842 +#: fortran/decl.c:7817 #, gcc-internal-format, gfc-internal-format msgid "')' expected at %C" msgstr "" -#: fortran/decl.c:7862 +#: fortran/decl.c:7837 #, gcc-internal-format, gfc-internal-format msgid "Interface must be specified for DEFERRED binding at %C" msgstr "" -#: fortran/decl.c:7867 +#: fortran/decl.c:7842 #, gcc-internal-format, gfc-internal-format msgid "PROCEDURE(interface) at %C should be declared DEFERRED" msgstr "" -#: fortran/decl.c:7890 +#: fortran/decl.c:7865 #, gcc-internal-format, gfc-internal-format msgid "Expected binding name at %C" msgstr "" -#: fortran/decl.c:7894 +#: fortran/decl.c:7869 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2008: PROCEDURE list at %C" msgstr "" -#: fortran/decl.c:7907 +#: fortran/decl.c:7882 #, gcc-internal-format, gfc-internal-format msgid "'=> target' is invalid for DEFERRED binding at %C" msgstr "" -#: fortran/decl.c:7913 +#: fortran/decl.c:7888 #, gcc-internal-format, gfc-internal-format msgid "'::' needed in PROCEDURE binding with explicit target at %C" msgstr "" -#: fortran/decl.c:7923 +#: fortran/decl.c:7898 #, gcc-internal-format, gfc-internal-format msgid "Expected binding target after '=>' at %C" msgstr "" -#: fortran/decl.c:7940 +#: fortran/decl.c:7915 #, gcc-internal-format, gfc-internal-format msgid "Type '%s' containing DEFERRED binding at %C is not ABSTRACT" msgstr "" -#: fortran/decl.c:7951 +#: fortran/decl.c:7926 #, gcc-internal-format, gfc-internal-format msgid "" "There is already a procedure with binding name '%s' for the derived type " "'%s' at %C" msgstr "" -#: fortran/decl.c:8000 +#: fortran/decl.c:7975 #, gcc-internal-format, gfc-internal-format msgid "GENERIC at %C must be inside a derived-type CONTAINS" msgstr "" -#: fortran/decl.c:8020 +#: fortran/decl.c:7995 #, gcc-internal-format, gfc-internal-format msgid "Expected '::' at %C" msgstr "" -#: fortran/decl.c:8032 +#: fortran/decl.c:8007 #, gcc-internal-format, gfc-internal-format msgid "Expected generic name or operator descriptor at %C" msgstr "" -#: fortran/decl.c:8058 +#: fortran/decl.c:8033 #, gcc-internal-format, gfc-internal-format msgid "Expected '=>' at %C" msgstr "" -#: fortran/decl.c:8100 +#: fortran/decl.c:8075 #, gcc-internal-format, gfc-internal-format msgid "" "There's already a non-generic procedure with binding name '%s' for the " "derived type '%s' at %C" msgstr "" -#: fortran/decl.c:8108 +#: fortran/decl.c:8083 #, gcc-internal-format, gfc-internal-format msgid "Binding at %C must have the same access as already defined binding '%s'" msgstr "" -#: fortran/decl.c:8157 +#: fortran/decl.c:8132 #, gcc-internal-format, gfc-internal-format msgid "Expected specific binding name at %C" msgstr "" -#: fortran/decl.c:8167 +#: fortran/decl.c:8142 #, gcc-internal-format, gfc-internal-format msgid "'%s' already defined as specific binding for the generic '%s' at %C" msgstr "" -#: fortran/decl.c:8183 +#: fortran/decl.c:8158 #, gcc-internal-format, gfc-internal-format msgid "Junk after GENERIC binding at %C" msgstr "" -#: fortran/decl.c:8218 +#: fortran/decl.c:8193 #, gcc-internal-format, gfc-internal-format msgid "FINAL declaration at %C must be inside a derived type CONTAINS section" msgstr "" -#: fortran/decl.c:8229 +#: fortran/decl.c:8204 #, gcc-internal-format, gfc-internal-format msgid "" "Derived type declaration with FINAL at %C must be in the specification part " "of a MODULE" msgstr "" -#: fortran/decl.c:8251 +#: fortran/decl.c:8226 #, gcc-internal-format, gfc-internal-format msgid "Empty FINAL at %C" msgstr "" -#: fortran/decl.c:8258 +#: fortran/decl.c:8233 #, gcc-internal-format, gfc-internal-format msgid "Expected module procedure name at %C" msgstr "" -#: fortran/decl.c:8268 +#: fortran/decl.c:8243 #, gcc-internal-format, gfc-internal-format msgid "Expected ',' at %C" msgstr "" -#: fortran/decl.c:8274 +#: fortran/decl.c:8249 #, gcc-internal-format, gfc-internal-format msgid "Unknown procedure name \"%s\" at %C" msgstr "" -#: fortran/decl.c:8288 +#: fortran/decl.c:8263 #, gcc-internal-format, gfc-internal-format msgid "'%s' at %C is already defined as FINAL procedure!" msgstr "" -#: fortran/decl.c:8357 +#: fortran/decl.c:8332 #, gcc-internal-format, gfc-internal-format msgid "Unknown attribute in !GCC$ ATTRIBUTES statement at %C" msgstr "" -#: fortran/decl.c:8404 +#: fortran/decl.c:8379 #, gcc-internal-format, gfc-internal-format msgid "Syntax error in !GCC$ ATTRIBUTES statement at %C" msgstr "" @@ -35835,33 +35966,33 @@ msgid "" "Extension: BOZ literal at %L used to initialize non-integer variable '%s'" msgstr "" -#: fortran/expr.c:3152 fortran/resolve.c:8665 +#: fortran/expr.c:3152 fortran/resolve.c:8782 #, gcc-internal-format, gfc-internal-format msgid "" "Extension: BOZ literal at %L outside a DATA statement and outside INT/REAL/" "DBLE/CMPLX" msgstr "" -#: fortran/expr.c:3162 fortran/resolve.c:8675 +#: fortran/expr.c:3162 fortran/resolve.c:8792 #, gcc-internal-format, gfc-internal-format msgid "BOZ literal at %L is bitwise transferred non-integer symbol '%s'" msgstr "" -#: fortran/expr.c:3170 fortran/resolve.c:8684 +#: fortran/expr.c:3170 fortran/resolve.c:8801 #, gcc-internal-format, gfc-internal-format msgid "" "Arithmetic underflow of bit-wise transferred BOZ at %L. This check can be " "disabled with the option -fno-range-check" msgstr "" -#: fortran/expr.c:3174 fortran/resolve.c:8688 +#: fortran/expr.c:3174 fortran/resolve.c:8805 #, gcc-internal-format, gfc-internal-format msgid "" "Arithmetic overflow of bit-wise transferred BOZ at %L. This check can be " "disabled with the option -fno-range-check" msgstr "" -#: fortran/expr.c:3178 fortran/resolve.c:8692 +#: fortran/expr.c:3178 fortran/resolve.c:8809 #, gcc-internal-format, gfc-internal-format msgid "" "Arithmetic NaN of bit-wise transferred BOZ at %L. This check can be disabled " @@ -35911,192 +36042,204 @@ msgstr "" msgid "Either all or none of the upper bounds must be specified at %L" msgstr "" -#: fortran/expr.c:3329 +#: fortran/expr.c:3330 #, gcc-internal-format, gfc-internal-format msgid "Pointer object at %L shall not have a coindex" msgstr "" -#: fortran/expr.c:3350 +#: fortran/expr.c:3351 #, gcc-internal-format, gfc-internal-format msgid "Invalid procedure pointer assignment at %L" msgstr "" -#: fortran/expr.c:3356 +#: fortran/expr.c:3357 #, gcc-internal-format, gfc-internal-format msgid "" "Abstract interface '%s' is invalid in procedure pointer assignment at %L" msgstr "" -#: fortran/expr.c:3366 +#: fortran/expr.c:3367 #, gcc-internal-format, gfc-internal-format msgid "" "Statement function '%s' is invalid in procedure pointer assignment at %L" msgstr "" -#: fortran/expr.c:3372 +#: fortran/expr.c:3373 #, gcc-internal-format, gfc-internal-format msgid "" "Internal procedure '%s' is invalid in procedure pointer assignment at %L" msgstr "" -#: fortran/expr.c:3395 +#: fortran/expr.c:3396 #, gcc-internal-format, gfc-internal-format msgid "" "Mismatch in the procedure pointer assignment at %L: mismatch in the calling " "convention" msgstr "" -#: fortran/expr.c:3426 +#: fortran/expr.c:3427 #, gcc-internal-format, gfc-internal-format msgid "Interface mismatch in procedure pointer assignment at %L: %s" msgstr "" -#: fortran/expr.c:3436 +#: fortran/expr.c:3437 #, gcc-internal-format, gfc-internal-format msgid "" "Different types in pointer assignment at %L; attempted assignment of %s to %s" msgstr "" -#: fortran/expr.c:3444 +#: fortran/expr.c:3445 #, gcc-internal-format, gfc-internal-format msgid "Different kind type parameters in pointer assignment at %L" msgstr "" -#: fortran/expr.c:3451 +#: fortran/expr.c:3452 #, gcc-internal-format, gfc-internal-format msgid "Different ranks in pointer assignment at %L" msgstr "" -#: fortran/expr.c:3470 +#: fortran/expr.c:3471 #, gcc-internal-format, gfc-internal-format msgid "" "Rank remapping target is smaller than size of the pointer (%ld < %ld) at %L" msgstr "" -#: fortran/expr.c:3483 +#: fortran/expr.c:3484 #, gcc-internal-format, gfc-internal-format msgid "Rank remapping target must be rank 1 or simply contiguous at %L" msgstr "" -#: fortran/expr.c:3487 +#: fortran/expr.c:3488 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2008: Rank remapping target is not rank 1 at %L" msgstr "" -#: fortran/expr.c:3511 +#: fortran/expr.c:3513 +#, gcc-internal-format, gfc-internal-format +msgid "" +"Target expression in pointer assignment at %L must deliver a pointer result" +msgstr "" + +#: fortran/expr.c:3521 #, gcc-internal-format, gfc-internal-format msgid "Pointer assignment target is neither TARGET nor POINTER at %L" msgstr "" -#: fortran/expr.c:3518 +#: fortran/expr.c:3528 #, gcc-internal-format, gfc-internal-format msgid "Bad target in pointer assignment in PURE procedure at %L" msgstr "" -#: fortran/expr.c:3524 +#: fortran/expr.c:3538 #, gcc-internal-format, gfc-internal-format msgid "Pointer assignment with vector subscript on rhs at %L" msgstr "" -#: fortran/expr.c:3532 +#: fortran/expr.c:3546 #, gcc-internal-format, gfc-internal-format msgid "Pointer assignment target has PROTECTED attribute at %L" msgstr "" -#: fortran/expr.c:3545 +#: fortran/expr.c:3559 #, gcc-internal-format, gfc-internal-format msgid "Data target at %L shall not have a coindex" msgstr "" -#: fortran/expr.c:3593 +#: fortran/expr.c:3607 #, gcc-internal-format, gfc-internal-format msgid "Pointer initialization target at %C must not be ALLOCATABLE " msgstr "" -#: fortran/expr.c:3599 +#: fortran/expr.c:3613 #, gcc-internal-format, gfc-internal-format msgid "Pointer initialization target at %C must have the TARGET attribute" msgstr "" -#: fortran/expr.c:3605 +#: fortran/expr.c:3619 #, gcc-internal-format, gfc-internal-format msgid "Pointer initialization target at %C must have the SAVE attribute" msgstr "" -#: fortran/expr.c:4327 +#: fortran/expr.c:3631 +#, gcc-internal-format, gfc-internal-format +msgid "" +"Procedure pointer initialization target at %L may not be a procedure pointer" +msgstr "" + +#: fortran/expr.c:4381 #, gcc-internal-format, gfc-internal-format msgid "" "Fortran 2008: Pointer functions in variable definition context (%s) at %L" msgstr "" -#: fortran/expr.c:4335 +#: fortran/expr.c:4389 #, gcc-internal-format, gfc-internal-format msgid "Non-variable expression in variable definition context (%s) at %L" msgstr "" -#: fortran/expr.c:4346 +#: fortran/expr.c:4400 #, gcc-internal-format, gfc-internal-format msgid "Named constant '%s' in variable definition context (%s) at %L" msgstr "" -#: fortran/expr.c:4355 +#: fortran/expr.c:4409 #, gcc-internal-format, gfc-internal-format msgid "'%s' in variable definition context (%s) at %L is not a variable" msgstr "" -#: fortran/expr.c:4367 +#: fortran/expr.c:4421 #, gcc-internal-format, gfc-internal-format msgid "Non-POINTER in pointer association context (%s) at %L" msgstr "" -#: fortran/expr.c:4389 +#: fortran/expr.c:4443 #, gcc-internal-format, gfc-internal-format msgid "" "Dummy argument '%s' with INTENT(IN) in pointer association context (%s) at %L" msgstr "" -#: fortran/expr.c:4397 +#: fortran/expr.c:4451 #, gcc-internal-format, gfc-internal-format msgid "" "Dummy argument '%s' with INTENT(IN) in variable definition context (%s) at %L" msgstr "" -#: fortran/expr.c:4410 +#: fortran/expr.c:4464 #, gcc-internal-format, gfc-internal-format msgid "" "Variable '%s' is PROTECTED and can not appear in a pointer association " "context (%s) at %L" msgstr "" -#: fortran/expr.c:4418 +#: fortran/expr.c:4472 #, gcc-internal-format, gfc-internal-format msgid "" "Variable '%s' is PROTECTED and can not appear in a variable definition " "context (%s) at %L" msgstr "" -#: fortran/expr.c:4430 +#: fortran/expr.c:4484 #, gcc-internal-format, gfc-internal-format msgid "" "Variable '%s' can not appear in a variable definition context (%s) at %L in " "PURE procedure" msgstr "" -#: fortran/expr.c:4471 +#: fortran/expr.c:4528 #, gcc-internal-format, gfc-internal-format msgid "" "'%s' at %L associated to vector-indexed target can not be used in a variable " "definition context (%s)" msgstr "" -#: fortran/expr.c:4475 +#: fortran/expr.c:4532 #, gcc-internal-format, gfc-internal-format msgid "" "'%s' at %L associated to expression can not be used in a variable definition " "context (%s)" msgstr "" -#: fortran/expr.c:4486 +#: fortran/expr.c:4543 #, gcc-internal-format, gfc-internal-format msgid "" "Associate-name '%s' can not appear in a variable definition context (%s) at " @@ -36198,145 +36341,150 @@ msgstr "" msgid "Assignment operator interface at %L must have two arguments" msgstr "" -#: fortran/interface.c:666 +#: fortran/interface.c:667 #, gcc-internal-format, gfc-internal-format msgid "" "Assignment operator interface at %L must not redefine an INTRINSIC type " "assignment" msgstr "" -#: fortran/interface.c:675 +#: fortran/interface.c:676 #, gcc-internal-format, gfc-internal-format msgid "Intrinsic operator interface at %L must be a FUNCTION" msgstr "" -#: fortran/interface.c:686 +#: fortran/interface.c:687 #, gcc-internal-format, gfc-internal-format msgid "" "First argument of defined assignment at %L must be INTENT(OUT) or INTENT" "(INOUT)" msgstr "" -#: fortran/interface.c:693 +#: fortran/interface.c:694 #, gcc-internal-format, gfc-internal-format msgid "Second argument of defined assignment at %L must be INTENT(IN)" msgstr "" -#: fortran/interface.c:702 fortran/resolve.c:13215 +#: fortran/interface.c:703 fortran/resolve.c:13416 #, gcc-internal-format, gfc-internal-format msgid "First argument of operator interface at %L must be INTENT(IN)" msgstr "" -#: fortran/interface.c:709 fortran/resolve.c:13233 +#: fortran/interface.c:710 fortran/resolve.c:13434 #, gcc-internal-format, gfc-internal-format msgid "Second argument of operator interface at %L must be INTENT(IN)" msgstr "" -#: fortran/interface.c:814 +#: fortran/interface.c:815 #, gcc-internal-format, gfc-internal-format msgid "Operator interface at %L conflicts with intrinsic interface" msgstr "" -#: fortran/interface.c:1111 +#: fortran/interface.c:1114 #, gcc-internal-format, gfc-internal-format msgid "Procedure '%s' in %s at %L has no explicit interface" msgstr "" -#: fortran/interface.c:1114 +#: fortran/interface.c:1117 #, gcc-internal-format, gfc-internal-format msgid "Procedure '%s' in %s at %L is neither function nor subroutine" msgstr "" -#: fortran/interface.c:1169 fortran/interface.c:1173 +#: fortran/interface.c:1127 +#, gcc-internal-format, gfc-internal-format +msgid "In %s at %L procedures must be either all SUBROUTINEs or all FUNCTIONs" +msgstr "" + +#: fortran/interface.c:1182 fortran/interface.c:1186 #, gcc-internal-format, gfc-internal-format msgid "Ambiguous interfaces '%s' and '%s' in %s at %L" msgstr "" -#: fortran/interface.c:1177 +#: fortran/interface.c:1190 #, gcc-internal-format, gfc-internal-format msgid "Although not referenced, '%s' has ambiguous interfaces at %L" msgstr "" -#: fortran/interface.c:1211 +#: fortran/interface.c:1224 #, gcc-internal-format, gfc-internal-format msgid "'%s' at %L is not a module procedure" msgstr "" -#: fortran/interface.c:1426 +#: fortran/interface.c:1439 #, gcc-internal-format, gfc-internal-format msgid "Rank mismatch in argument '%s' at %L (scalar and rank-%d)" msgstr "" -#: fortran/interface.c:1431 +#: fortran/interface.c:1444 #, gcc-internal-format, gfc-internal-format msgid "Rank mismatch in argument '%s' at %L (rank-%d and scalar)" msgstr "" -#: fortran/interface.c:1436 +#: fortran/interface.c:1449 #, gcc-internal-format, gfc-internal-format msgid "Rank mismatch in argument '%s' at %L (rank-%d and rank-%d)" msgstr "" -#: fortran/interface.c:1478 +#: fortran/interface.c:1491 #, gcc-internal-format, gfc-internal-format msgid "Invalid procedure argument at %L" msgstr "" -#: fortran/interface.c:1486 +#: fortran/interface.c:1499 #, gcc-internal-format, gfc-internal-format msgid "Interface mismatch in dummy procedure '%s' at %L: %s" msgstr "" -#: fortran/interface.c:1511 +#: fortran/interface.c:1524 #, gcc-internal-format, gfc-internal-format msgid "" "Actual argument to contiguous pointer dummy '%s' at %L must be simply " "contigous" msgstr "" -#: fortran/interface.c:1521 +#: fortran/interface.c:1534 #, gcc-internal-format, gfc-internal-format msgid "Type mismatch in argument '%s' at %L; passed %s to %s" msgstr "" -#: fortran/interface.c:1535 +#: fortran/interface.c:1548 #, gcc-internal-format, gfc-internal-format msgid "Actual argument to '%s' at %L must be polymorphic" msgstr "" -#: fortran/interface.c:1543 +#: fortran/interface.c:1556 #, gcc-internal-format, gfc-internal-format msgid "Actual argument to '%s' at %L must have the same declared type" msgstr "" -#: fortran/interface.c:1558 fortran/interface.c:1588 +#: fortran/interface.c:1571 fortran/interface.c:1601 #, gcc-internal-format, gfc-internal-format msgid "Actual argument to '%s' at %L must be a coarray" msgstr "" -#: fortran/interface.c:1568 +#: fortran/interface.c:1581 #, gcc-internal-format, gfc-internal-format msgid "Actual argument to '%s' at %L must be a coarray and not coindexed" msgstr "" -#: fortran/interface.c:1576 +#: fortran/interface.c:1589 #, gcc-internal-format, gfc-internal-format msgid "" "Actual argument to '%s' at %L must be a coarray and thus shall not have an " "array designator" msgstr "" -#: fortran/interface.c:1600 +#: fortran/interface.c:1613 #, gcc-internal-format, gfc-internal-format msgid "Corank mismatch in argument '%s' at %L (%d and %d)" msgstr "" -#: fortran/interface.c:1613 +#: fortran/interface.c:1626 #, gcc-internal-format, gfc-internal-format msgid "Actual argument to '%s' at %L must be simply contiguous" msgstr "" -#: fortran/interface.c:1629 +#: fortran/interface.c:1642 #, gcc-internal-format, gfc-internal-format msgid "" "Dummy argument '%s' has to be a pointer or assumed-shape array without " @@ -36344,144 +36492,165 @@ msgid "" "both are ASYNCHRONOUS or VOLATILE" msgstr "" -#: fortran/interface.c:1681 +#: fortran/interface.c:1698 +#, gcc-internal-format, gfc-internal-format +msgid "Polymorphic scalar passed to array dummy argument '%s' at %L" +msgstr "" + +#: fortran/interface.c:1707 #, gcc-internal-format, gfc-internal-format msgid "" -"Fortran 2003: Scalar CHARACTER actual argument with array dummy argument " +"Element of assumed-shaped or pointer array passed to array dummy argument " "'%s' at %L" msgstr "" -#: fortran/interface.c:1705 +#: fortran/interface.c:1719 +#, gcc-internal-format, gfc-internal-format +msgid "" +"Extension: Scalar non-default-kind, non-C_CHAR-kind CHARACTER actual " +"argument with array dummy argument '%s' at %L" +msgstr "" + +#: fortran/interface.c:1727 #, gcc-internal-format, gfc-internal-format -msgid "Element of assumed-shaped array passed to dummy argument '%s' at %L" +msgid "" +"Fortran 2003: Scalar CHARACTER actual argument with array dummy argument " +"'%s' at %L" msgstr "" -#: fortran/interface.c:1992 +#: fortran/interface.c:2026 #, gcc-internal-format, gfc-internal-format msgid "Keyword argument '%s' at %L is not in the procedure" msgstr "" -#: fortran/interface.c:2000 +#: fortran/interface.c:2034 #, gcc-internal-format, gfc-internal-format msgid "" "Keyword argument '%s' at %L is already associated with another actual " "argument" msgstr "" -#: fortran/interface.c:2010 +#: fortran/interface.c:2044 #, gcc-internal-format, gfc-internal-format msgid "More actual than formal arguments in procedure call at %L" msgstr "" -#: fortran/interface.c:2022 fortran/interface.c:2329 +#: fortran/interface.c:2056 fortran/interface.c:2375 #, gcc-internal-format, gfc-internal-format msgid "Missing alternate return spec in subroutine call at %L" msgstr "" -#: fortran/interface.c:2030 +#: fortran/interface.c:2064 #, gcc-internal-format, gfc-internal-format msgid "Unexpected alternate return spec in subroutine call at %L" msgstr "" -#: fortran/interface.c:2040 +#: fortran/interface.c:2074 #, gcc-internal-format, gfc-internal-format msgid "Unexpected NULL() intrinsic at %L to dummy '%s'" msgstr "" -#: fortran/interface.c:2043 +#: fortran/interface.c:2077 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2008: Null pointer at %L to non-pointer dummy '%s'" msgstr "" -#: fortran/interface.c:2067 +#: fortran/interface.c:2101 #, gcc-internal-format, gfc-internal-format msgid "" "Character length mismatch (%ld/%ld) between actual argument and pointer or " "allocatable dummy argument '%s' at %L" msgstr "" -#: fortran/interface.c:2074 +#: fortran/interface.c:2108 #, gcc-internal-format, gfc-internal-format msgid "" "Character length mismatch (%ld/%ld) between actual argument and assumed-" "shape dummy argument '%s' at %L" msgstr "" -#: fortran/interface.c:2090 +#: fortran/interface.c:2122 +#, gcc-internal-format, gfc-internal-format +msgid "" +"Actual argument argument at %L to allocatable or pointer dummy argument '%s' " +"must have a deferred length type parameter if and only if the dummy has one" +msgstr "" + +#: fortran/interface.c:2136 #, gcc-internal-format, gfc-internal-format msgid "" "Character length of actual argument shorter than of dummy argument '%s' (%lu/" "%lu) at %L" msgstr "" -#: fortran/interface.c:2095 +#: fortran/interface.c:2141 #, gcc-internal-format, gfc-internal-format msgid "" "Actual argument contains too few elements for dummy argument '%s' (%lu/%lu) " "at %L" msgstr "" -#: fortran/interface.c:2112 +#: fortran/interface.c:2158 #, gcc-internal-format, gfc-internal-format msgid "Expected a procedure pointer for argument '%s' at %L" msgstr "" -#: fortran/interface.c:2124 +#: fortran/interface.c:2170 #, gcc-internal-format, gfc-internal-format msgid "Expected a procedure for argument '%s' at %L" msgstr "" -#: fortran/interface.c:2134 +#: fortran/interface.c:2180 #, gcc-internal-format, gfc-internal-format msgid "Expected a PURE procedure for argument '%s' at %L" msgstr "" -#: fortran/interface.c:2148 +#: fortran/interface.c:2194 #, gcc-internal-format, gfc-internal-format msgid "Actual argument for '%s' cannot be an assumed-size array at %L" msgstr "" -#: fortran/interface.c:2157 +#: fortran/interface.c:2203 #, gcc-internal-format, gfc-internal-format msgid "Actual argument for '%s' must be a pointer at %L" msgstr "" -#: fortran/interface.c:2167 +#: fortran/interface.c:2213 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2008: Non-pointer actual argument at %L to pointer dummy '%s'" msgstr "" -#: fortran/interface.c:2177 +#: fortran/interface.c:2223 #, gcc-internal-format, gfc-internal-format msgid "Coindexed actual argument at %L to pointer dummy '%s'" msgstr "" -#: fortran/interface.c:2190 +#: fortran/interface.c:2236 #, gcc-internal-format, gfc-internal-format msgid "" "Coindexed actual argument at %L to allocatable dummy '%s' requires INTENT(IN)" msgstr "" -#: fortran/interface.c:2204 +#: fortran/interface.c:2250 #, gcc-internal-format, gfc-internal-format msgid "" "Coindexed ASYNCHRONOUS or VOLATILE actual argument at at %L requires that " "dummy %s' has neither ASYNCHRONOUS nor VOLATILE" msgstr "" -#: fortran/interface.c:2218 +#: fortran/interface.c:2264 #, gcc-internal-format, gfc-internal-format msgid "" "Coindexed actual argument at %L with allocatable ultimate component to dummy " "'%s' requires either VALUE or INTENT(IN)" msgstr "" -#: fortran/interface.c:2228 +#: fortran/interface.c:2274 #, gcc-internal-format, gfc-internal-format msgid "Actual argument for '%s' must be ALLOCATABLE at %L" msgstr "" -#: fortran/interface.c:2257 +#: fortran/interface.c:2303 #, gcc-internal-format, gfc-internal-format msgid "" "Array-section actual argument with vector subscripts at %L is incompatible " @@ -36489,109 +36658,129 @@ msgid "" "dummy argument '%s'" msgstr "" -#: fortran/interface.c:2275 +#: fortran/interface.c:2321 #, gcc-internal-format, gfc-internal-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:2287 +#: fortran/interface.c:2333 #, gcc-internal-format, gfc-internal-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:2306 +#: fortran/interface.c:2352 #, gcc-internal-format, gfc-internal-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:2336 +#: fortran/interface.c:2382 #, gcc-internal-format, gfc-internal-format msgid "Missing actual argument for argument '%s' at %L" msgstr "" -#: fortran/interface.c:2522 +#: fortran/interface.c:2568 #, gcc-internal-format, gfc-internal-format msgid "" "Same actual argument associated with INTENT(%s) argument '%s' and INTENT(%s) " "argument '%s' at %L" msgstr "" -#: fortran/interface.c:2578 +#: fortran/interface.c:2624 #, gcc-internal-format, gfc-internal-format msgid "" "Procedure argument at %L is INTENT(IN) while interface specifies INTENT(%s)" msgstr "" -#: fortran/interface.c:2588 +#: fortran/interface.c:2634 #, gcc-internal-format, gfc-internal-format msgid "" "Procedure argument at %L is local to a PURE procedure and is passed to an " "INTENT(%s) argument" msgstr "" -#: fortran/interface.c:2596 +#: fortran/interface.c:2642 #, gcc-internal-format, gfc-internal-format msgid "" "Procedure argument at %L is local to a PURE procedure and has the POINTER " "attribute" msgstr "" -#: fortran/interface.c:2608 +#: fortran/interface.c:2654 #, gcc-internal-format, gfc-internal-format msgid "" "Coindexed actual argument at %L in PURE procedure is passed to an INTENT(%s) " "argument" msgstr "" -#: fortran/interface.c:2616 +#: fortran/interface.c:2662 #, gcc-internal-format, gfc-internal-format msgid "" "Coindexed actual argument at %L in PURE procedure is passed to a POINTER " "dummy argument" msgstr "" -#: fortran/interface.c:2627 +#: fortran/interface.c:2673 #, gcc-internal-format, gfc-internal-format msgid "" "Coindexed polymorphic actual argument at %L is passed polymorphic dummy " "argument '%s'" msgstr "" -#: fortran/interface.c:2653 +#: fortran/interface.c:2699 #, gcc-internal-format, gfc-internal-format msgid "Procedure '%s' called with an implicit interface at %L" msgstr "" -#: fortran/interface.c:2657 +#: fortran/interface.c:2703 #, gcc-internal-format, gfc-internal-format msgid "Procedure '%s' called at %L is not explicitly declared" msgstr "" -#: fortran/interface.c:2669 +#: fortran/interface.c:2713 +#, gcc-internal-format, gfc-internal-format +msgid "" +"The pointer object '%s' at %L must have an explicit function interface or be " +"declared as array" +msgstr "" + +#: fortran/interface.c:2721 +#, gcc-internal-format, gfc-internal-format +msgid "" +"The allocatable object '%s' at %L must have an explicit function interface " +"or be declared as array" +msgstr "" + +#: fortran/interface.c:2729 +#, gcc-internal-format, gfc-internal-format +msgid "" +"Allocatable function '%s' at %L must have an explicit function interface" +msgstr "" + +#: fortran/interface.c:2739 #, gcc-internal-format, gfc-internal-format msgid "Keyword argument requires explicit interface for procedure '%s' at %L" msgstr "" -#: fortran/interface.c:2701 +#: fortran/interface.c:2771 #, gcc-internal-format, gfc-internal-format msgid "" "Procedure pointer component '%s' called with an implicit interface at %L" msgstr "" -#: fortran/interface.c:2712 +#: fortran/interface.c:2782 #, gcc-internal-format, gfc-internal-format msgid "" "Keyword argument requires explicit interface for procedure pointer component " "'%s' at %L" msgstr "" -#: fortran/interface.c:3200 +#: fortran/interface.c:3274 #, gcc-internal-format, gfc-internal-format msgid "Entity '%s' at %C is already present in the interface" msgstr "" @@ -36604,93 +36793,93 @@ msgid "" "option or define -fall-intrinsics to allow this intrinsic." msgstr "" -#: fortran/intrinsic.c:3498 +#: fortran/intrinsic.c:3500 #, gcc-internal-format, gfc-internal-format msgid "Too many arguments in call to '%s' at %L" msgstr "" -#: fortran/intrinsic.c:3513 +#: fortran/intrinsic.c:3515 #, gcc-internal-format, gfc-internal-format msgid "" "The argument list functions %%VAL, %%LOC or %%REF are not allowed in this " "context at %L" msgstr "" -#: fortran/intrinsic.c:3516 +#: fortran/intrinsic.c:3518 #, gcc-internal-format, gfc-internal-format msgid "Can't find keyword named '%s' in call to '%s' at %L" msgstr "" -#: fortran/intrinsic.c:3523 +#: fortran/intrinsic.c:3525 #, gcc-internal-format, gfc-internal-format msgid "Argument '%s' appears twice in call to '%s' at %L" msgstr "" -#: fortran/intrinsic.c:3537 +#: fortran/intrinsic.c:3539 #, gcc-internal-format, gfc-internal-format msgid "Missing actual argument '%s' in call to '%s' at %L" msgstr "" -#: fortran/intrinsic.c:3552 +#: fortran/intrinsic.c:3554 #, gcc-internal-format, gfc-internal-format msgid "ALTERNATE RETURN not permitted at %L" msgstr "" -#: fortran/intrinsic.c:3609 +#: fortran/intrinsic.c:3611 #, gcc-internal-format, gfc-internal-format msgid "Type of argument '%s' in call to '%s' at %L should be %s, not %s" msgstr "" -#: fortran/intrinsic.c:3990 +#: fortran/intrinsic.c:3992 #, gcc-internal-format, gfc-internal-format msgid "Intrinsic '%s' (is %s) is used at %L" msgstr "" -#: fortran/intrinsic.c:4061 +#: fortran/intrinsic.c:4063 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: Function '%s' as initialization expression at %L" msgstr "" -#: fortran/intrinsic.c:4137 +#: fortran/intrinsic.c:4139 #, gcc-internal-format, gfc-internal-format msgid "" "Fortran 2003: Elemental function as initialization expression with non-" "integer/non-character arguments at %L" msgstr "" -#: fortran/intrinsic.c:4198 +#: fortran/intrinsic.c:4200 #, gcc-internal-format, gfc-internal-format msgid "Subroutine call to intrinsic '%s' at %L is not PURE" msgstr "" -#: fortran/intrinsic.c:4271 +#: fortran/intrinsic.c:4273 #, gcc-internal-format, gfc-internal-format msgid "Extension: Conversion from %s to %s at %L" msgstr "" -#: fortran/intrinsic.c:4306 fortran/intrinsic.c:4332 +#: fortran/intrinsic.c:4308 fortran/intrinsic.c:4334 #, gcc-internal-format, gfc-internal-format msgid "Conversion from %s to %s at %L" msgstr "" -#: fortran/intrinsic.c:4311 fortran/intrinsic.c:4323 +#: fortran/intrinsic.c:4313 fortran/intrinsic.c:4325 #, gcc-internal-format, gfc-internal-format msgid "Possible change of value in conversion from %s to %s at %L" msgstr "" -#: fortran/intrinsic.c:4385 +#: fortran/intrinsic.c:4387 #, gcc-internal-format, gfc-internal-format msgid "Can't convert %s to %s at %L" msgstr "" -#: fortran/intrinsic.c:4479 +#: fortran/intrinsic.c:4481 #, gcc-internal-format, gfc-internal-format msgid "" "'%s' declared at %L may shadow the intrinsic of the same name. In order to " "call the intrinsic, explicit INTRINSIC declarations may be required." msgstr "" -#: fortran/intrinsic.c:4484 +#: fortran/intrinsic.c:4486 #, gcc-internal-format, gfc-internal-format msgid "" "'%s' declared at %L is also the name of an intrinsic. It can only be called " @@ -36787,7 +36976,7 @@ msgstr "" msgid "Missing format label at %C" msgstr "" -#: fortran/io.c:1261 fortran/io.c:1292 fortran/io.c:1354 +#: fortran/io.c:1261 fortran/io.c:1292 fortran/io.c:1357 #, gcc-internal-format, gfc-internal-format msgid "Invalid value for %s specification at %C" msgstr "" @@ -36807,364 +36996,364 @@ msgstr "" msgid "Variable %s cannot be assigned in PURE procedure at %C" msgstr "" -#: fortran/io.c:1360 +#: fortran/io.c:1363 #, gcc-internal-format, gfc-internal-format msgid "Duplicate %s label specification at %C" msgstr "" -#: fortran/io.c:1380 +#: fortran/io.c:1383 #, gcc-internal-format, gfc-internal-format msgid "" "Constant expression in FORMAT tag at %L must be of type default CHARACTER" msgstr "" -#: fortran/io.c:1396 +#: fortran/io.c:1399 #, gcc-internal-format, gfc-internal-format msgid "FORMAT tag at %L must be of type CHARACTER or INTEGER" msgstr "" -#: fortran/io.c:1402 +#: fortran/io.c:1405 #, gcc-internal-format, gfc-internal-format msgid "Deleted feature: ASSIGNED variable in FORMAT tag at %L" msgstr "" -#: fortran/io.c:1408 +#: fortran/io.c:1411 #, gcc-internal-format, gfc-internal-format msgid "Variable '%s' at %L has not been assigned a format label" msgstr "" -#: fortran/io.c:1415 +#: fortran/io.c:1418 #, gcc-internal-format, gfc-internal-format msgid "Scalar '%s' in FORMAT tag at %L is not an ASSIGNED variable" msgstr "" -#: fortran/io.c:1427 +#: fortran/io.c:1430 #, gcc-internal-format, gfc-internal-format msgid "Extension: Non-character in FORMAT tag at %L" msgstr "" -#: fortran/io.c:1433 +#: fortran/io.c:1436 #, gcc-internal-format, gfc-internal-format msgid "Non-character assumed shape array element in FORMAT tag at %L" msgstr "" -#: fortran/io.c:1440 +#: fortran/io.c:1443 #, gcc-internal-format, gfc-internal-format msgid "Non-character assumed size array element in FORMAT tag at %L" msgstr "" -#: fortran/io.c:1447 +#: fortran/io.c:1450 #, gcc-internal-format, gfc-internal-format msgid "Non-character pointer array element in FORMAT tag at %L" msgstr "" -#: fortran/io.c:1473 +#: fortran/io.c:1476 #, gcc-internal-format, gfc-internal-format msgid "%s tag at %L must be of type %s" msgstr "" -#: fortran/io.c:1480 +#: fortran/io.c:1483 #, gcc-internal-format, gfc-internal-format msgid "%s tag at %L must be scalar" msgstr "" -#: fortran/io.c:1486 +#: fortran/io.c:1489 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: IOMSG tag at %L" msgstr "" -#: fortran/io.c:1494 +#: fortran/io.c:1497 #, gcc-internal-format, gfc-internal-format msgid "Fortran 95 requires default INTEGER in %s tag at %L" msgstr "" -#: fortran/io.c:1502 +#: fortran/io.c:1505 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2008: Nondefault LOGICAL in %s tag at %L" msgstr "" -#: fortran/io.c:1510 +#: fortran/io.c:1513 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2008: NEWUNIT specifier at %L" msgstr "" -#: fortran/io.c:1528 +#: fortran/io.c:1531 #, gcc-internal-format, gfc-internal-format msgid "Extension: CONVERT tag at %L" msgstr "" -#: fortran/io.c:1714 fortran/io.c:1722 +#: fortran/io.c:1717 fortran/io.c:1725 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: %s specifier in %s statement at %C has value '%s'" msgstr "" -#: fortran/io.c:1741 fortran/io.c:1749 +#: fortran/io.c:1744 fortran/io.c:1752 #, gcc-internal-format, gfc-internal-format msgid "Extension: %s specifier in %s statement at %C has value '%s'" msgstr "" -#: fortran/io.c:1762 fortran/io.c:1770 +#: fortran/io.c:1765 fortran/io.c:1773 #, gcc-internal-format, gfc-internal-format msgid "%s specifier in %s statement at %C has invalid value '%s'" msgstr "" -#: fortran/io.c:1823 +#: fortran/io.c:1826 #, gcc-internal-format, gfc-internal-format msgid "OPEN statement not allowed in PURE procedure at %C" msgstr "" -#: fortran/io.c:1834 +#: fortran/io.c:1840 #, gcc-internal-format, gfc-internal-format msgid "UNIT specifier not allowed with NEWUNIT at %C" msgstr "" -#: fortran/io.c:1842 +#: fortran/io.c:1848 #, gcc-internal-format, gfc-internal-format msgid "NEWUNIT specifier must have FILE= or STATUS='scratch' at %C" msgstr "" -#: fortran/io.c:1849 +#: fortran/io.c:1855 #, gcc-internal-format, gfc-internal-format msgid "OPEN statement at %C must have UNIT or NEWUNIT specified" msgstr "" -#: fortran/io.c:1881 +#: fortran/io.c:1887 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: ASYNCHRONOUS= at %C not allowed in Fortran 95" msgstr "" -#: fortran/io.c:1899 fortran/io.c:3309 +#: fortran/io.c:1905 fortran/io.c:3326 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: BLANK= at %C not allowed in Fortran 95" msgstr "" -#: fortran/io.c:1917 fortran/io.c:3288 +#: fortran/io.c:1923 fortran/io.c:3305 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: DECIMAL= at %C not allowed in Fortran 95" msgstr "" -#: fortran/io.c:1935 fortran/io.c:3396 +#: fortran/io.c:1941 fortran/io.c:3413 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: DELIM= at %C not allowed in Fortran 95" msgstr "" -#: fortran/io.c:1953 +#: fortran/io.c:1959 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: ENCODING= at %C not allowed in Fortran 95" msgstr "" -#: fortran/io.c:2004 +#: fortran/io.c:2010 #, gcc-internal-format, gfc-internal-format msgid "Fortran F2003: ROUND= at %C not allowed in Fortran 95" msgstr "" -#: fortran/io.c:2024 +#: fortran/io.c:2030 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: SIGN= at %C not allowed in Fortran 95" msgstr "" -#: fortran/io.c:2237 +#: fortran/io.c:2243 #, gcc-internal-format, gfc-internal-format msgid "CLOSE statement not allowed in PURE procedure at %C" msgstr "" -#: fortran/io.c:2284 +#: fortran/io.c:2293 #, gcc-internal-format, gfc-internal-format msgid "UNIT number in CLOSE statement at %L must be non-negative" msgstr "" -#: fortran/io.c:2382 fortran/match.c:2187 +#: fortran/io.c:2391 fortran/match.c:2190 #, gcc-internal-format, gfc-internal-format msgid "%s statement not allowed in PURE procedure at %C" msgstr "" -#: fortran/io.c:2414 fortran/io.c:2832 +#: fortran/io.c:2426 fortran/io.c:2844 #, gcc-internal-format, gfc-internal-format msgid "UNIT number in statement at %L must be non-negative" msgstr "" -#: fortran/io.c:2446 +#: fortran/io.c:2458 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: FLUSH statement at %C" msgstr "" -#: fortran/io.c:2502 +#: fortran/io.c:2514 #, gcc-internal-format, gfc-internal-format msgid "Duplicate UNIT specification at %C" msgstr "" -#: fortran/io.c:2562 +#: fortran/io.c:2574 #, gcc-internal-format, gfc-internal-format msgid "Duplicate format specification at %C" msgstr "" -#: fortran/io.c:2579 +#: fortran/io.c:2591 #, gcc-internal-format, gfc-internal-format msgid "Symbol '%s' in namelist '%s' is INTENT(IN) at %C" msgstr "" -#: fortran/io.c:2615 +#: fortran/io.c:2627 #, gcc-internal-format, gfc-internal-format msgid "Duplicate NML specification at %C" msgstr "" -#: fortran/io.c:2624 +#: fortran/io.c:2636 #, gcc-internal-format, gfc-internal-format msgid "Symbol '%s' at %C must be a NAMELIST group name" msgstr "" -#: fortran/io.c:2689 +#: fortran/io.c:2701 #, gcc-internal-format, gfc-internal-format msgid "END tag at %C not allowed in output statement" msgstr "" -#: fortran/io.c:2766 +#: fortran/io.c:2778 #, gcc-internal-format, gfc-internal-format msgid "UNIT not specified at %L" msgstr "" -#: fortran/io.c:2778 +#: fortran/io.c:2790 #, gcc-internal-format, gfc-internal-format msgid "" "UNIT specification at %L must be an INTEGER expression or a CHARACTER " "variable" msgstr "" -#: fortran/io.c:2800 +#: fortran/io.c:2812 #, gcc-internal-format, gfc-internal-format msgid "Invalid form of WRITE statement at %L, UNIT required" msgstr "" -#: fortran/io.c:2811 +#: fortran/io.c:2823 #, gcc-internal-format, gfc-internal-format msgid "Internal unit with vector subscript at %L" msgstr "" -#: fortran/io.c:2825 +#: fortran/io.c:2837 #, gcc-internal-format, gfc-internal-format msgid "External IO UNIT cannot be an array at %L" msgstr "" -#: fortran/io.c:2853 +#: fortran/io.c:2865 #, gcc-internal-format, gfc-internal-format msgid "" "NAMELIST '%s' in READ statement at %L contains the symbol '%s' which may not " "appear in a variable definition context" msgstr "" -#: fortran/io.c:2863 +#: fortran/io.c:2875 #, gcc-internal-format, gfc-internal-format msgid "Extension: Comma before i/o item list at %L" msgstr "" -#: fortran/io.c:2873 +#: fortran/io.c:2885 #, gcc-internal-format, gfc-internal-format msgid "ERR tag label %d at %L not defined" msgstr "" -#: fortran/io.c:2885 +#: fortran/io.c:2897 #, gcc-internal-format, gfc-internal-format msgid "END tag label %d at %L not defined" msgstr "" -#: fortran/io.c:2897 +#: fortran/io.c:2909 #, gcc-internal-format, gfc-internal-format msgid "EOR tag label %d at %L not defined" msgstr "" -#: fortran/io.c:2907 +#: fortran/io.c:2919 #, gcc-internal-format, gfc-internal-format msgid "FORMAT label %d at %L not defined" msgstr "" -#: fortran/io.c:3029 +#: fortran/io.c:3041 #, gcc-internal-format, gfc-internal-format msgid "Syntax error in I/O iterator at %C" msgstr "" -#: fortran/io.c:3060 +#: fortran/io.c:3072 #, gcc-internal-format, gfc-internal-format msgid "Expected variable in READ statement at %C" msgstr "" -#: fortran/io.c:3066 +#: fortran/io.c:3078 #, gcc-internal-format, gfc-internal-format msgid "Expected expression in %s statement at %C" msgstr "" #. A general purpose syntax error. -#: fortran/io.c:3123 fortran/io.c:3718 fortran/gfortran.h:2427 +#: fortran/io.c:3136 fortran/io.c:3735 fortran/gfortran.h:2436 #, gcc-internal-format, gfc-internal-format msgid "Syntax error in %s statement at %C" msgstr "" -#: fortran/io.c:3208 +#: fortran/io.c:3221 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: Internal file at %L with namelist" msgstr "" -#: fortran/io.c:3262 +#: fortran/io.c:3279 #, gcc-internal-format, gfc-internal-format msgid "ASYNCHRONOUS= specifier at %L must be an initialization expression" msgstr "" -#: fortran/io.c:3330 +#: fortran/io.c:3347 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: PAD= at %C not allowed in Fortran 95" msgstr "" -#: fortran/io.c:3351 +#: fortran/io.c:3368 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: ROUND= at %C not allowed in Fortran 95" msgstr "" -#: fortran/io.c:3545 +#: fortran/io.c:3562 #, gcc-internal-format, gfc-internal-format msgid "PRINT namelist at %C is an extension" msgstr "" -#: fortran/io.c:3688 +#: fortran/io.c:3705 #, gcc-internal-format, gfc-internal-format msgid "Expected comma in I/O list at %C" msgstr "" -#: fortran/io.c:3752 +#: fortran/io.c:3769 #, gcc-internal-format, gfc-internal-format msgid "PRINT statement at %C not allowed within PURE procedure" msgstr "" -#: fortran/io.c:3908 fortran/io.c:3959 +#: fortran/io.c:3928 fortran/io.c:3982 #, gcc-internal-format, gfc-internal-format msgid "INQUIRE statement not allowed in PURE procedure at %C" msgstr "" -#: fortran/io.c:3935 +#: fortran/io.c:3958 #, gcc-internal-format, gfc-internal-format msgid "IOLENGTH tag invalid in INQUIRE statement at %C" msgstr "" -#: fortran/io.c:3945 fortran/trans-io.c:1235 +#: fortran/io.c:3968 fortran/trans-io.c:1235 #, gcc-internal-format, gfc-internal-format msgid "INQUIRE statement at %L cannot contain both FILE and UNIT specifiers" msgstr "" -#: fortran/io.c:3952 +#: fortran/io.c:3975 #, gcc-internal-format, gfc-internal-format msgid "INQUIRE statement at %L requires either FILE or UNIT specifier" msgstr "" -#: fortran/io.c:3965 +#: fortran/io.c:3991 #, gcc-internal-format, gfc-internal-format msgid "" "INQUIRE statement at %L requires a PENDING= specifier with the ID= specifier" msgstr "" -#: fortran/io.c:4135 +#: fortran/io.c:4161 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: WAIT at %C not allowed in Fortran 95" msgstr "" -#: fortran/io.c:4141 +#: fortran/io.c:4167 #, gcc-internal-format, gfc-internal-format msgid "WAIT statement not allowed in PURE procedure at %C" msgstr "" @@ -37184,7 +37373,7 @@ msgstr "" msgid "Integer too large at %C" msgstr "" -#: fortran/match.c:459 fortran/parse.c:638 +#: fortran/match.c:459 fortran/parse.c:641 #, gcc-internal-format, gfc-internal-format msgid "Too many digits in statement label at %C" msgstr "" @@ -37310,340 +37499,340 @@ msgstr "" msgid "Image control statement CRITICAL at %C in PURE procedure" msgstr "" -#: fortran/match.c:1749 +#: fortran/match.c:1752 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2008: CRITICAL statement at %C" msgstr "" -#: fortran/match.c:1761 +#: fortran/match.c:1764 #, gcc-internal-format, gfc-internal-format msgid "Nested CRITICAL block at %C" msgstr "" -#: fortran/match.c:1813 +#: fortran/match.c:1816 #, gcc-internal-format, gfc-internal-format msgid "Expected association list at %C" msgstr "" -#: fortran/match.c:1826 +#: fortran/match.c:1829 #, gcc-internal-format, gfc-internal-format msgid "Expected association at %C" msgstr "" -#: fortran/match.c:1835 +#: fortran/match.c:1838 #, gcc-internal-format, gfc-internal-format msgid "Duplicate name '%s' in association at %C" msgstr "" -#: fortran/match.c:1843 +#: fortran/match.c:1846 #, gcc-internal-format, gfc-internal-format msgid "Association target at %C must not be coindexed" msgstr "" -#: fortran/match.c:1861 +#: fortran/match.c:1864 #, gcc-internal-format, gfc-internal-format msgid "Expected ')' or ',' at %C" msgstr "" -#: fortran/match.c:1879 +#: fortran/match.c:1882 #, gcc-internal-format, gfc-internal-format msgid "Junk after ASSOCIATE statement at %C" msgstr "" -#: fortran/match.c:2026 +#: fortran/match.c:2029 #, gcc-internal-format, gfc-internal-format msgid "Name '%s' in %s statement at %C is unknown" msgstr "" -#: fortran/match.c:2034 +#: fortran/match.c:2037 #, gcc-internal-format, gfc-internal-format msgid "Name '%s' in %s statement at %C is not a construct name" msgstr "" -#: fortran/match.c:2046 +#: fortran/match.c:2049 #, gcc-internal-format, gfc-internal-format msgid "%s statement at %C leaves CRITICAL construct" msgstr "" -#: fortran/match.c:2056 +#: fortran/match.c:2059 #, gcc-internal-format, gfc-internal-format msgid "%s statement at %C is not within a construct" msgstr "" -#: fortran/match.c:2059 +#: fortran/match.c:2062 #, gcc-internal-format, gfc-internal-format msgid "%s statement at %C is not within construct '%s'" msgstr "" -#: fortran/match.c:2083 +#: fortran/match.c:2086 #, gcc-internal-format, gfc-internal-format msgid "CYCLE statement at %C is not applicable to non-loop construct '%s'" msgstr "" -#: fortran/match.c:2088 +#: fortran/match.c:2091 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2008: EXIT statement with no do-construct-name at %C" msgstr "" -#: fortran/match.c:2094 +#: fortran/match.c:2097 #, gcc-internal-format, gfc-internal-format msgid "%s statement at %C is not applicable to construct '%s'" msgstr "" -#: fortran/match.c:2101 +#: fortran/match.c:2104 #, gcc-internal-format, gfc-internal-format msgid "%s statement at %C leaving OpenMP structured block" msgstr "" -#: fortran/match.c:2125 +#: fortran/match.c:2128 #, gcc-internal-format, gfc-internal-format msgid "EXIT statement at %C terminating !$OMP DO loop" msgstr "" -#: fortran/match.c:2130 +#: fortran/match.c:2133 #, gcc-internal-format, gfc-internal-format msgid "CYCLE statement at %C to non-innermost collapsed !$OMP DO loop" msgstr "" -#: fortran/match.c:2194 +#: fortran/match.c:2200 #, gcc-internal-format, gfc-internal-format msgid "Image control statement STOP at %C in CRITICAL block" msgstr "" -#: fortran/match.c:2202 +#: fortran/match.c:2208 #, gcc-internal-format, gfc-internal-format msgid "STOP code at %L must be either INTEGER or CHARACTER type" msgstr "" -#: fortran/match.c:2209 +#: fortran/match.c:2215 #, gcc-internal-format, gfc-internal-format msgid "STOP code at %L must be scalar" msgstr "" -#: fortran/match.c:2217 +#: fortran/match.c:2223 #, gcc-internal-format, gfc-internal-format msgid "STOP code at %L must be default character KIND=%d" msgstr "" -#: fortran/match.c:2225 +#: fortran/match.c:2231 #, gcc-internal-format, gfc-internal-format msgid "STOP code at %L must be default integer KIND=%d" msgstr "" -#: fortran/match.c:2271 +#: fortran/match.c:2277 #, gcc-internal-format, gfc-internal-format msgid "Deleted feature: PAUSE statement at %C" msgstr "" -#: fortran/match.c:2294 +#: fortran/match.c:2300 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2008: ERROR STOP statement at %C" msgstr "" -#: fortran/match.c:2320 +#: fortran/match.c:2326 #, gcc-internal-format, gfc-internal-format msgid "Image control statement SYNC at %C in PURE procedure" msgstr "" -#: fortran/match.c:2324 +#: fortran/match.c:2333 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2008: SYNC statement at %C" msgstr "" -#: fortran/match.c:2336 +#: fortran/match.c:2345 #, gcc-internal-format, gfc-internal-format msgid "Image control statement SYNC at %C in CRITICAL block" msgstr "" -#: fortran/match.c:2382 fortran/match.c:2995 fortran/match.c:3295 +#: fortran/match.c:2391 fortran/match.c:3008 fortran/match.c:3312 #, gcc-internal-format, gfc-internal-format msgid "Redundant STAT tag found at %L " msgstr "" -#: fortran/match.c:2399 fortran/match.c:3022 fortran/match.c:3321 +#: fortran/match.c:2408 fortran/match.c:3035 fortran/match.c:3338 #, gcc-internal-format, gfc-internal-format msgid "Redundant ERRMSG tag found at %L " msgstr "" -#: fortran/match.c:2512 +#: fortran/match.c:2521 #, gcc-internal-format, gfc-internal-format msgid "Deleted feature: ASSIGN statement at %C" msgstr "" -#: fortran/match.c:2558 +#: fortran/match.c:2567 #, gcc-internal-format, gfc-internal-format msgid "Deleted feature: Assigned GOTO statement at %C" msgstr "" -#: fortran/match.c:2605 fortran/match.c:2658 +#: fortran/match.c:2614 fortran/match.c:2667 #, gcc-internal-format, gfc-internal-format msgid "Statement label list in GOTO at %C cannot be empty" msgstr "" -#: fortran/match.c:2668 +#: fortran/match.c:2677 #, gcc-internal-format, gfc-internal-format msgid "Obsolescent feature: Computed GOTO at %C" msgstr "" -#: fortran/match.c:2763 +#: fortran/match.c:2772 #, gcc-internal-format, gfc-internal-format msgid "Derived type '%s' at %L may not be ABSTRACT" msgstr "" -#: fortran/match.c:2826 +#: fortran/match.c:2835 #, gcc-internal-format, gfc-internal-format msgid "Invalid type-spec at %C" msgstr "" -#: fortran/match.c:2870 +#: fortran/match.c:2879 #, gcc-internal-format, gfc-internal-format msgid "Error in type-spec at %L" msgstr "" -#: fortran/match.c:2880 +#: fortran/match.c:2889 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: typespec in ALLOCATE at %L" msgstr "" -#: fortran/match.c:2919 +#: fortran/match.c:2928 #, gcc-internal-format, gfc-internal-format msgid "Bad allocate-object at %C for a PURE procedure" msgstr "" -#: fortran/match.c:2936 +#: fortran/match.c:2949 #, gcc-internal-format, gfc-internal-format msgid "Type of entity at %L is type incompatible with typespec" msgstr "" -#: fortran/match.c:2944 +#: fortran/match.c:2957 #, gcc-internal-format, gfc-internal-format msgid "" "Kind type parameter for entity at %L differs from the kind type parameter of " "the typespec" msgstr "" -#: fortran/match.c:2971 +#: fortran/match.c:2984 #, gcc-internal-format, gfc-internal-format msgid "" "Allocate-object at %L is not a nonprocedure pointer or an allocatable " "variable" msgstr "" -#: fortran/match.c:2978 +#: fortran/match.c:2991 #, gcc-internal-format, gfc-internal-format msgid "Shape specification for allocatable scalar at %C" msgstr "" -#: fortran/match.c:3015 +#: fortran/match.c:3028 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: ERRMSG tag at %L" msgstr "" -#: fortran/match.c:3039 +#: fortran/match.c:3052 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: SOURCE tag at %L" msgstr "" -#: fortran/match.c:3046 +#: fortran/match.c:3059 #, gcc-internal-format, gfc-internal-format msgid "Redundant SOURCE tag found at %L " msgstr "" -#: fortran/match.c:3053 +#: fortran/match.c:3066 #, gcc-internal-format, gfc-internal-format msgid "SOURCE tag at %L conflicts with the typespec at %L" msgstr "" -#: fortran/match.c:3060 +#: fortran/match.c:3073 #, gcc-internal-format, gfc-internal-format msgid "SOURCE tag at %L requires only a single entity in the allocation-list" msgstr "" -#: fortran/match.c:3078 +#: fortran/match.c:3091 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2008: MOLD tag at %L" msgstr "" -#: fortran/match.c:3085 +#: fortran/match.c:3098 #, gcc-internal-format, gfc-internal-format msgid "Redundant MOLD tag found at %L " msgstr "" -#: fortran/match.c:3092 +#: fortran/match.c:3105 #, gcc-internal-format, gfc-internal-format msgid "MOLD tag at %L conflicts with the typespec at %L" msgstr "" -#: fortran/match.c:3118 +#: fortran/match.c:3131 #, gcc-internal-format, gfc-internal-format msgid "MOLD tag at %L conflicts with SOURCE tag at %L" msgstr "" -#: fortran/match.c:3126 +#: fortran/match.c:3139 #, gcc-internal-format, gfc-internal-format msgid "" "Allocate-object at %L with a deferred type parameter requires either a type-" -"spec or SOURCE tag" +"spec or SOURCE tag or a MOLD tag" msgstr "" -#: fortran/match.c:3262 +#: fortran/match.c:3276 #, gcc-internal-format, gfc-internal-format msgid "Illegal allocate-object at %C for a PURE procedure" msgstr "" -#: fortran/match.c:3278 +#: fortran/match.c:3295 #, gcc-internal-format, gfc-internal-format msgid "" "Allocate-object at %C is not a nonprocedure pointer or an allocatable " "variable" msgstr "" -#: fortran/match.c:3315 +#: fortran/match.c:3332 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: ERRMSG at %L" msgstr "" -#: fortran/match.c:3373 +#: fortran/match.c:3390 #, gcc-internal-format, gfc-internal-format msgid "Image control statement RETURN at %C in CRITICAL block" msgstr "" -#: fortran/match.c:3382 +#: fortran/match.c:3399 #, gcc-internal-format, gfc-internal-format msgid "Alternate RETURN statement at %C is only allowed within a SUBROUTINE" msgstr "" -#: fortran/match.c:3387 +#: fortran/match.c:3404 #, gcc-internal-format, gfc-internal-format msgid "Obsolescent feature: Alternate RETURN at %C" msgstr "" -#: fortran/match.c:3417 +#: fortran/match.c:3434 #, gcc-internal-format, gfc-internal-format msgid "Extension: RETURN statement in main program at %C" msgstr "" -#: fortran/match.c:3445 +#: fortran/match.c:3462 #, gcc-internal-format, gfc-internal-format msgid "Expected component reference at %C" msgstr "" -#: fortran/match.c:3451 +#: fortran/match.c:3468 #, gcc-internal-format, gfc-internal-format msgid "Junk after CALL at %C" msgstr "" -#: fortran/match.c:3461 +#: fortran/match.c:3478 #, gcc-internal-format, gfc-internal-format msgid "Expected type-bound procedure or procedure pointer component at %C" msgstr "" -#: fortran/match.c:3681 +#: fortran/match.c:3698 #, gcc-internal-format, gfc-internal-format msgid "Syntax error in common block name at %C" msgstr "" -#: fortran/match.c:3717 +#: fortran/match.c:3734 #, gcc-internal-format, gfc-internal-format msgid "Symbol '%s' at %C is already an external symbol that is not COMMON" msgstr "" @@ -37651,157 +37840,152 @@ 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:3776 +#: fortran/match.c:3793 #, gcc-internal-format, gfc-internal-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:3785 +#: fortran/match.c:3802 #, gcc-internal-format, gfc-internal-format msgid "" "Variable '%s' in common block '%s' at %C can not be bind(c) since it is not " "global" msgstr "" -#: fortran/match.c:3792 +#: fortran/match.c:3809 #, gcc-internal-format, gfc-internal-format msgid "Symbol '%s' at %C is already in a COMMON block" msgstr "" -#: fortran/match.c:3800 +#: fortran/match.c:3817 #, gcc-internal-format, gfc-internal-format msgid "Initialized symbol '%s' at %C can only be COMMON in BLOCK DATA" msgstr "" -#: fortran/match.c:3827 +#: fortran/match.c:3844 #, gcc-internal-format, gfc-internal-format msgid "Array specification for symbol '%s' in COMMON at %C must be explicit" msgstr "" -#: fortran/match.c:3837 +#: fortran/match.c:3854 #, gcc-internal-format, gfc-internal-format msgid "Symbol '%s' in COMMON at %C cannot be a POINTER array" msgstr "" -#: fortran/match.c:3869 +#: fortran/match.c:3886 #, gcc-internal-format, gfc-internal-format msgid "" "Symbol '%s', in COMMON block '%s' at %C is being indirectly equivalenced to " "another COMMON block '%s'" msgstr "" -#: fortran/match.c:3977 +#: fortran/match.c:3994 #, gcc-internal-format, gfc-internal-format msgid "Namelist group name '%s' at %C already has a basic type of %s" msgstr "" -#: fortran/match.c:3985 +#: fortran/match.c:4002 #, gcc-internal-format, gfc-internal-format msgid "" "Namelist group name '%s' at %C already is USE associated and cannot be " "respecified." msgstr "" -#: fortran/match.c:4012 +#: fortran/match.c:4029 #, gcc-internal-format, gfc-internal-format msgid "Assumed size array '%s' in namelist '%s' at %C is not allowed" msgstr "" -#: fortran/match.c:4019 -#, gcc-internal-format, gfc-internal-format -msgid "Assumed character length '%s' in namelist '%s' at %C is not allowed" -msgstr "" - -#: fortran/match.c:4153 +#: fortran/match.c:4163 #, gcc-internal-format, gfc-internal-format msgid "Derived type component %C is not a permitted EQUIVALENCE member" msgstr "" -#: fortran/match.c:4161 +#: fortran/match.c:4171 #, gcc-internal-format, gfc-internal-format msgid "Array reference in EQUIVALENCE at %C cannot be an array section" msgstr "" -#: fortran/match.c:4189 +#: fortran/match.c:4199 #, gcc-internal-format, gfc-internal-format msgid "EQUIVALENCE at %C requires two or more objects" msgstr "" -#: fortran/match.c:4203 +#: fortran/match.c:4213 #, gcc-internal-format, gfc-internal-format msgid "" "Attempt to indirectly overlap COMMON blocks %s and %s by EQUIVALENCE at %C" msgstr "" -#: fortran/match.c:4216 +#: fortran/match.c:4226 #, gcc-internal-format, gfc-internal-format msgid "Expecting a comma in EQUIVALENCE at %C" msgstr "" -#: fortran/match.c:4332 +#: fortran/match.c:4342 #, gcc-internal-format, gfc-internal-format msgid "Statement function at %L is recursive" msgstr "" -#: fortran/match.c:4338 +#: fortran/match.c:4348 #, gcc-internal-format, gfc-internal-format msgid "Obsolescent feature: Statement function at %C" msgstr "" -#: fortran/match.c:4424 +#: fortran/match.c:4434 #, gcc-internal-format, gfc-internal-format msgid "Expected initialization expression in CASE at %C" msgstr "" -#: fortran/match.c:4456 +#: fortran/match.c:4466 #, gcc-internal-format, gfc-internal-format msgid "Expected block name '%s' of SELECT construct at %C" msgstr "" -#: fortran/match.c:4597 +#: fortran/match.c:4604 #, gcc-internal-format, gfc-internal-format msgid "" "Selector in SELECT TYPE at %C is not a named variable; use associate-name=>" msgstr "" -#: fortran/match.c:4630 +#: fortran/match.c:4637 #, gcc-internal-format, gfc-internal-format msgid "Unexpected CASE statement at %C" msgstr "" -#: fortran/match.c:4682 +#: fortran/match.c:4689 #, gcc-internal-format, gfc-internal-format msgid "Syntax error in CASE specification at %C" msgstr "" -#: fortran/match.c:4700 +#: fortran/match.c:4707 #, gcc-internal-format, gfc-internal-format msgid "Unexpected TYPE IS statement at %C" msgstr "" -#: fortran/match.c:4733 +#: fortran/match.c:4740 #, gcc-internal-format, gfc-internal-format msgid "Syntax error in TYPE IS specification at %C" msgstr "" -#: fortran/match.c:4806 +#: fortran/match.c:4813 #, gcc-internal-format, gfc-internal-format msgid "Syntax error in CLASS IS specification at %C" msgstr "" -#: fortran/match.c:4928 +#: fortran/match.c:4935 #, gcc-internal-format, gfc-internal-format msgid "ELSEWHERE statement at %C not enclosed in WHERE block" msgstr "" -#: fortran/match.c:4966 +#: fortran/match.c:4973 #, gcc-internal-format, gfc-internal-format msgid "Label '%s' at %C doesn't match WHERE label '%s'" msgstr "" -#: fortran/match.c:5066 +#: fortran/match.c:5073 #, gcc-internal-format, gfc-internal-format msgid "Syntax error in FORALL iterator at %C" msgstr "" @@ -37896,130 +38080,130 @@ msgstr "" msgid "Error writing modules file: %s" msgstr "" -#: fortran/module.c:3205 +#: fortran/module.c:3229 #, gcc-internal-format, gfc-internal-format msgid "Namelist %s cannot be renamed by USE association to %s" msgstr "" -#: fortran/module.c:4522 +#: fortran/module.c:4560 #, gcc-internal-format, gfc-internal-format msgid "Symbol '%s' referenced at %L not found in module '%s'" msgstr "" -#: fortran/module.c:4529 +#: fortran/module.c:4567 #, gcc-internal-format, gfc-internal-format msgid "User operator '%s' referenced at %L not found in module '%s'" msgstr "" -#: fortran/module.c:4534 +#: fortran/module.c:4572 #, gcc-internal-format, gfc-internal-format msgid "Intrinsic operator '%s' referenced at %L not found in module '%s'" msgstr "" -#: fortran/module.c:5148 +#: fortran/module.c:5193 #, gcc-internal-format, gfc-internal-format msgid "Can't open module file '%s' for writing at %C: %s" msgstr "" -#: fortran/module.c:5186 +#: fortran/module.c:5231 #, gcc-internal-format, gfc-internal-format msgid "Error writing module file '%s' for writing: %s" msgstr "" -#: fortran/module.c:5195 +#: fortran/module.c:5240 #, gcc-internal-format, gfc-internal-format msgid "Can't delete module file '%s': %s" msgstr "" -#: fortran/module.c:5198 +#: fortran/module.c:5243 #, gcc-internal-format, gfc-internal-format msgid "Can't rename module file '%s' to '%s': %s" msgstr "" -#: fortran/module.c:5204 +#: fortran/module.c:5249 #, gcc-internal-format, gfc-internal-format msgid "Can't delete temporary module file '%s': %s" msgstr "" -#: fortran/module.c:5223 fortran/module.c:5354 fortran/module.c:5387 +#: fortran/module.c:5268 fortran/module.c:5399 fortran/module.c:5432 #, gcc-internal-format, gfc-internal-format msgid "Symbol '%s' already declared" msgstr "" -#: fortran/module.c:5333 +#: fortran/module.c:5378 #, gcc-internal-format, gfc-internal-format msgid "" "Symbol '%s' referenced at %L not found in intrinsic module ISO_C_BINDING" msgstr "" -#: fortran/module.c:5458 +#: fortran/module.c:5503 #, gcc-internal-format, gfc-internal-format msgid "" "Use of intrinsic module '%s' at %C conflicts with non-intrinsic module name " "used previously" msgstr "" -#: fortran/module.c:5473 +#: fortran/module.c:5518 #, gcc-internal-format, gfc-internal-format msgid "The symbol '%s', referrenced at %C, is not in the selected standard" msgstr "" -#: fortran/module.c:5480 fortran/module.c:5540 +#: fortran/module.c:5525 fortran/module.c:5585 #, gcc-internal-format, gfc-internal-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:5590 +#: fortran/module.c:5635 #, gcc-internal-format, gfc-internal-format msgid "" "Symbol '%s' referenced at %L not found in intrinsic module ISO_FORTRAN_ENV" msgstr "" -#: fortran/module.c:5623 +#: fortran/module.c:5668 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: ISO_FORTRAN_ENV intrinsic module at %C" msgstr "" -#: fortran/module.c:5631 +#: fortran/module.c:5676 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: ISO_C_BINDING module at %C" msgstr "" -#: fortran/module.c:5641 +#: fortran/module.c:5686 #, gcc-internal-format, gfc-internal-format msgid "Can't find an intrinsic module named '%s' at %C" msgstr "" -#: fortran/module.c:5646 +#: fortran/module.c:5691 #, gcc-internal-format, gfc-internal-format msgid "Can't open module file '%s' for reading at %C: %s" msgstr "" -#: fortran/module.c:5654 +#: fortran/module.c:5699 #, gcc-internal-format, gfc-internal-format msgid "" "Use of non-intrinsic module '%s' at %C conflicts with intrinsic module name " "used previously" msgstr "" -#: fortran/module.c:5674 +#: fortran/module.c:5719 #, gcc-internal-format, gfc-internal-format msgid "File '%s' opened at %C is not a GFORTRAN module file" msgstr "" -#: fortran/module.c:5681 +#: fortran/module.c:5726 #, gcc-internal-format, gfc-internal-format msgid "Parse error when checking module version for file '%s' opened at %C" msgstr "" -#: fortran/module.c:5686 +#: fortran/module.c:5731 #, gcc-internal-format, gfc-internal-format msgid "Wrong module version '%s' (expected '%s') for file '%s' opened at %C" msgstr "" -#: fortran/module.c:5701 +#: fortran/module.c:5746 #, gcc-internal-format msgid "Can't USE the same module we're building!" msgstr "" @@ -38099,7 +38283,7 @@ msgstr "" msgid "Unexpected junk after NOWAIT clause at %C" msgstr "" -#: fortran/openmp.c:783 fortran/resolve.c:8556 fortran/resolve.c:8996 +#: fortran/openmp.c:783 fortran/resolve.c:8673 fortran/resolve.c:9133 #, gcc-internal-format, gfc-internal-format msgid "IF clause at %L requires a scalar LOGICAL expression" msgstr "" @@ -38279,39 +38463,39 @@ msgid "" "side at %L" msgstr "" -#: fortran/openmp.c:1455 +#: fortran/openmp.c:1480 #, gcc-internal-format, gfc-internal-format msgid "!$OMP DO cannot be a DO WHILE or DO without loop control at %L" msgstr "" -#: fortran/openmp.c:1461 +#: fortran/openmp.c:1486 #, gcc-internal-format, gfc-internal-format msgid "!$OMP DO iteration variable must be of type integer at %L" msgstr "" -#: fortran/openmp.c:1465 +#: fortran/openmp.c:1490 #, gcc-internal-format, gfc-internal-format msgid "!$OMP DO iteration variable must not be THREADPRIVATE at %L" msgstr "" -#: fortran/openmp.c:1473 +#: fortran/openmp.c:1498 #, gcc-internal-format, gfc-internal-format msgid "" "!$OMP DO iteration variable present on clause other than PRIVATE or " "LASTPRIVATE at %L" msgstr "" -#: fortran/openmp.c:1491 +#: fortran/openmp.c:1516 #, gcc-internal-format, gfc-internal-format msgid "!$OMP DO collapsed loops don't form rectangular iteration space at %L" msgstr "" -#: fortran/openmp.c:1505 +#: fortran/openmp.c:1530 #, gcc-internal-format, gfc-internal-format msgid "collapsed !$OMP DO loops not perfectly nested at %L" msgstr "" -#: fortran/openmp.c:1514 fortran/openmp.c:1522 +#: fortran/openmp.c:1539 fortran/openmp.c:1547 #, gcc-internal-format, gfc-internal-format msgid "not enough DO loops for collapsed !$OMP DO at %L" msgstr "" @@ -38366,57 +38550,57 @@ msgstr "" msgid "gfortran: Only one -J option allowed" msgstr "" -#: fortran/options.c:505 +#: fortran/options.c:506 #, gcc-internal-format, gfc-internal-format msgid "Argument to -ffpe-trap is not valid: %s" msgstr "" -#: fortran/options.c:518 +#: fortran/options.c:519 #, gcc-internal-format, gfc-internal-format msgid "Argument to -fcoarray is not valid: %s" msgstr "" -#: fortran/options.c:556 +#: fortran/options.c:557 #, gcc-internal-format, gfc-internal-format msgid "Argument to -fcheck is not valid: %s" msgstr "" -#: fortran/options.c:724 +#: fortran/options.c:725 #, gcc-internal-format msgid "Fixed line length must be at least seven." msgstr "" -#: fortran/options.c:742 +#: fortran/options.c:743 #, gcc-internal-format msgid "Free line length must be at least three." msgstr "" -#: fortran/options.c:760 +#: fortran/options.c:761 #, gcc-internal-format msgid "-static-libgfortran is not supported in this configuration" msgstr "" -#: fortran/options.c:804 +#: fortran/options.c:805 #, gcc-internal-format, gfc-internal-format msgid "Maximum supported identifier length is %d" msgstr "" -#: fortran/options.c:836 +#: fortran/options.c:837 #, gcc-internal-format, gfc-internal-format msgid "Unrecognized option to -finit-logical: %s" msgstr "" -#: fortran/options.c:852 +#: fortran/options.c:853 #, gcc-internal-format, gfc-internal-format msgid "Unrecognized option to -finit-real: %s" msgstr "" -#: fortran/options.c:868 +#: fortran/options.c:869 #, gcc-internal-format msgid "The value of n in -finit-character=n must be between 0 and 127" msgstr "" -#: fortran/options.c:960 +#: fortran/options.c:961 #, gcc-internal-format, gfc-internal-format msgid "Maximum subrecord length cannot exceed %d" msgstr "" @@ -38431,348 +38615,338 @@ msgstr "" msgid "OpenMP directives at %C may not appear in PURE or ELEMENTAL procedures" msgstr "" -#: fortran/parse.c:573 +#: fortran/parse.c:576 #, gcc-internal-format, gfc-internal-format msgid "Unclassifiable OpenMP directive at %C" msgstr "" -#: fortran/parse.c:599 +#: fortran/parse.c:602 #, gcc-internal-format, gfc-internal-format msgid "Unclassifiable GCC directive at %C" msgstr "" -#: fortran/parse.c:641 fortran/parse.c:812 +#: fortran/parse.c:644 fortran/parse.c:815 #, gcc-internal-format, gfc-internal-format msgid "Zero is not a valid statement label at %C" msgstr "" -#: fortran/parse.c:648 fortran/parse.c:804 +#: fortran/parse.c:651 fortran/parse.c:807 #, gcc-internal-format, gfc-internal-format msgid "Non-numeric character in statement label at %C" msgstr "" -#: fortran/parse.c:660 fortran/parse.c:853 +#: fortran/parse.c:663 fortran/parse.c:856 #, gcc-internal-format, gfc-internal-format msgid "Semicolon at %C needs to be preceded by statement" msgstr "" -#: fortran/parse.c:668 fortran/parse.c:868 +#: fortran/parse.c:671 fortran/parse.c:871 #, gcc-internal-format, gfc-internal-format msgid "Ignoring statement label in empty statement at %L" msgstr "" -#: fortran/parse.c:715 fortran/parse.c:855 +#: fortran/parse.c:718 fortran/parse.c:858 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2008: Semicolon at %C without preceding statement" msgstr "" -#: fortran/parse.c:791 fortran/parse.c:831 +#: fortran/parse.c:794 fortran/parse.c:834 #, gcc-internal-format, gfc-internal-format msgid "Bad continuation line at %C" msgstr "" -#: fortran/parse.c:1093 +#: fortran/parse.c:1096 #, gcc-internal-format, gfc-internal-format msgid "FORMAT statement at %L does not have a statement label" msgstr "" -#: fortran/parse.c:1674 +#: fortran/parse.c:1677 #, gcc-internal-format, gfc-internal-format msgid "Unexpected %s statement at %C" msgstr "" -#: fortran/parse.c:1821 +#: fortran/parse.c:1824 #, gcc-internal-format, gfc-internal-format msgid "%s statement at %C cannot follow %s statement at %L" msgstr "" -#: fortran/parse.c:1838 +#: fortran/parse.c:1841 #, gcc-internal-format, gfc-internal-format msgid "Unexpected end of file in '%s'" msgstr "" -#: fortran/parse.c:1870 +#: fortran/parse.c:1873 #, gcc-internal-format, gfc-internal-format msgid "Derived-type '%s' with SEQUENCE must not have a CONTAINS section at %C" msgstr "" -#: fortran/parse.c:1873 +#: fortran/parse.c:1876 #, gcc-internal-format, gfc-internal-format msgid "Derived-type '%s' with BIND(C) must not have a CONTAINS section at %C" msgstr "" -#: fortran/parse.c:1893 +#: fortran/parse.c:1896 #, gcc-internal-format, gfc-internal-format msgid "Components in TYPE at %C must precede CONTAINS" msgstr "" -#: fortran/parse.c:1897 +#: fortran/parse.c:1900 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: Type-bound procedure at %C" msgstr "" -#: fortran/parse.c:1906 +#: fortran/parse.c:1909 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: GENERIC binding at %C" msgstr "" -#: fortran/parse.c:1916 +#: fortran/parse.c:1919 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: FINAL procedure declaration at %C" msgstr "" -#: fortran/parse.c:1928 +#: fortran/parse.c:1931 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2008: Derived type definition at %C with empty CONTAINS section" msgstr "" -#: fortran/parse.c:1939 fortran/parse.c:2042 +#: fortran/parse.c:1942 fortran/parse.c:2045 #, gcc-internal-format, gfc-internal-format msgid "PRIVATE statement in TYPE at %C must be inside a MODULE" msgstr "" -#: fortran/parse.c:1946 +#: fortran/parse.c:1949 #, gcc-internal-format, gfc-internal-format msgid "PRIVATE statement at %C must precede procedure bindings" msgstr "" -#: fortran/parse.c:1953 fortran/parse.c:2055 +#: fortran/parse.c:1956 fortran/parse.c:2058 #, gcc-internal-format, gfc-internal-format msgid "Duplicate PRIVATE statement at %C" msgstr "" -#: fortran/parse.c:1963 +#: fortran/parse.c:1966 #, gcc-internal-format, gfc-internal-format msgid "SEQUENCE statement at %C must precede CONTAINS" msgstr "" -#: fortran/parse.c:1967 +#: fortran/parse.c:1970 #, gcc-internal-format, gfc-internal-format msgid "Already inside a CONTAINS block at %C" msgstr "" -#: fortran/parse.c:2025 +#: fortran/parse.c:2028 #, gcc-internal-format, gfc-internal-format msgid "FINAL declaration at %C must be inside CONTAINS" msgstr "" -#: fortran/parse.c:2033 +#: fortran/parse.c:2036 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: Derived type definition at %C without components" msgstr "" -#: fortran/parse.c:2049 +#: fortran/parse.c:2052 #, gcc-internal-format, gfc-internal-format msgid "PRIVATE statement at %C must precede structure components" msgstr "" -#: fortran/parse.c:2066 +#: fortran/parse.c:2069 #, gcc-internal-format, gfc-internal-format msgid "SEQUENCE statement at %C must precede structure components" msgstr "" -#: fortran/parse.c:2072 +#: fortran/parse.c:2075 #, gcc-internal-format, gfc-internal-format msgid "SEQUENCE attribute at %C already specified in TYPE statement" msgstr "" -#: fortran/parse.c:2077 +#: fortran/parse.c:2080 #, gcc-internal-format, gfc-internal-format msgid "Duplicate SEQUENCE statement at %C" msgstr "" -#: fortran/parse.c:2087 +#: fortran/parse.c:2090 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: CONTAINS block in derived type definition at %C" msgstr "" -#: fortran/parse.c:2174 +#: fortran/parse.c:2177 #, gcc-internal-format, gfc-internal-format msgid "ENUM declaration at %C has no ENUMERATORS" msgstr "" -#: fortran/parse.c:2258 +#: fortran/parse.c:2261 #, gcc-internal-format, gfc-internal-format msgid "Unexpected %s statement in INTERFACE block at %C" msgstr "" -#: fortran/parse.c:2284 -#, gcc-internal-format, gfc-internal-format -msgid "SUBROUTINE at %C does not belong in a generic function interface" -msgstr "" - -#: fortran/parse.c:2288 -#, gcc-internal-format, gfc-internal-format -msgid "FUNCTION at %C does not belong in a generic subroutine interface" -msgstr "" - -#: fortran/parse.c:2298 +#: fortran/parse.c:2285 #, gcc-internal-format, gfc-internal-format msgid "" "Name '%s' of ABSTRACT INTERFACE at %C cannot be the same as an intrinsic type" msgstr "" -#: fortran/parse.c:2329 +#: fortran/parse.c:2316 #, gcc-internal-format, gfc-internal-format msgid "Unexpected %s statement at %C in INTERFACE body" msgstr "" -#: fortran/parse.c:2347 +#: fortran/parse.c:2334 #, gcc-internal-format, gfc-internal-format msgid "" "INTERFACE procedure '%s' at %L has the same name as the enclosing procedure" msgstr "" -#: fortran/parse.c:2471 +#: fortran/parse.c:2458 #, gcc-internal-format, gfc-internal-format msgid "%s statement is not allowed inside of BLOCK at %C" msgstr "" -#: fortran/parse.c:2558 +#: fortran/parse.c:2545 #, gcc-internal-format, gfc-internal-format msgid "%s statement must appear in a MODULE" msgstr "" -#: fortran/parse.c:2566 +#: fortran/parse.c:2553 #, gcc-internal-format, gfc-internal-format msgid "%s statement at %C follows another accessibility specification" msgstr "" -#: fortran/parse.c:2617 +#: fortran/parse.c:2604 #, gcc-internal-format, gfc-internal-format msgid "Bad kind expression for function '%s' at %L" msgstr "" -#: fortran/parse.c:2621 +#: fortran/parse.c:2608 #, gcc-internal-format, gfc-internal-format msgid "The type for function '%s' at %L is not accessible" msgstr "" -#: fortran/parse.c:2679 +#: fortran/parse.c:2666 #, gcc-internal-format, gfc-internal-format msgid "ELSEWHERE statement at %C follows previous unmasked ELSEWHERE" msgstr "" -#: fortran/parse.c:2700 +#: fortran/parse.c:2687 #, gcc-internal-format, gfc-internal-format msgid "Unexpected %s statement in WHERE block at %C" msgstr "" -#: fortran/parse.c:2759 +#: fortran/parse.c:2746 #, gcc-internal-format, gfc-internal-format msgid "Unexpected %s statement in FORALL block at %C" msgstr "" -#: fortran/parse.c:2810 +#: fortran/parse.c:2797 #, gcc-internal-format, gfc-internal-format msgid "ELSE IF statement at %C cannot follow ELSE statement at %L" msgstr "" -#: fortran/parse.c:2828 +#: fortran/parse.c:2815 #, gcc-internal-format, gfc-internal-format msgid "Duplicate ELSE statements at %L and %C" msgstr "" -#: fortran/parse.c:2889 +#: fortran/parse.c:2876 #, gcc-internal-format, gfc-internal-format msgid "Expected a CASE or END SELECT statement following SELECT CASE at %C" msgstr "" -#: fortran/parse.c:2972 +#: fortran/parse.c:2959 #, gcc-internal-format, gfc-internal-format msgid "" "Expected TYPE IS, CLASS IS or END SELECT statement following SELECT TYPE at " "%C" msgstr "" -#: fortran/parse.c:3034 +#: fortran/parse.c:3021 #, gcc-internal-format, gfc-internal-format msgid "Variable '%s' at %C cannot be redefined inside loop beginning at %L" msgstr "" -#: fortran/parse.c:3067 +#: fortran/parse.c:3054 #, gcc-internal-format, gfc-internal-format msgid "End of nonblock DO statement at %C is within another block" msgstr "" -#: fortran/parse.c:3076 +#: fortran/parse.c:3063 #, gcc-internal-format, gfc-internal-format msgid "End of nonblock DO statement at %C is interwoven with another DO loop" msgstr "" -#: fortran/parse.c:3123 +#: fortran/parse.c:3110 #, gcc-internal-format, gfc-internal-format msgid "Statement label in END CRITICAL at %C does not match CRITIAL label" msgstr "" -#: fortran/parse.c:3187 +#: fortran/parse.c:3175 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2008: BLOCK construct at %C" msgstr "" -#: fortran/parse.c:3217 +#: fortran/parse.c:3205 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: ASSOCIATE construct at %C" msgstr "" -#: fortran/parse.c:3314 +#: fortran/parse.c:3302 #, gcc-internal-format, gfc-internal-format msgid "Statement label in ENDDO at %C doesn't match DO label" msgstr "" -#: fortran/parse.c:3330 +#: fortran/parse.c:3318 #, gcc-internal-format, gfc-internal-format msgid "Named block DO at %L requires matching ENDDO name" msgstr "" -#: fortran/parse.c:3589 +#: fortran/parse.c:3577 #, gcc-internal-format, gfc-internal-format msgid "Name after !$omp critical and !$omp end critical does not match at %C" msgstr "" -#: fortran/parse.c:3646 +#: fortran/parse.c:3634 #, gcc-internal-format, gfc-internal-format msgid "%s statement at %C cannot terminate a non-block DO loop" msgstr "" -#: fortran/parse.c:3842 +#: fortran/parse.c:3830 #, gcc-internal-format, gfc-internal-format msgid "Contained procedure '%s' at %C is already ambiguous" msgstr "" -#: fortran/parse.c:3892 +#: fortran/parse.c:3886 #, gcc-internal-format, gfc-internal-format msgid "Unexpected %s statement in CONTAINS section at %C" msgstr "" -#: fortran/parse.c:3916 +#: fortran/parse.c:3910 #, gcc-internal-format, gfc-internal-format msgid "" "Fortran 2008: CONTAINS statement without FUNCTION or SUBROUTINE statement at " "%C" msgstr "" -#: fortran/parse.c:3993 +#: fortran/parse.c:3987 #, gcc-internal-format, gfc-internal-format msgid "CONTAINS statement at %C is already in a contained program unit" msgstr "" -#: fortran/parse.c:4043 +#: fortran/parse.c:4037 #, gcc-internal-format, gfc-internal-format msgid "Global name '%s' at %L is already being used as a %s at %L" msgstr "" -#: fortran/parse.c:4064 +#: fortran/parse.c:4058 #, gcc-internal-format, gfc-internal-format msgid "Blank BLOCK DATA at %C conflicts with prior BLOCK DATA at %L" msgstr "" -#: fortran/parse.c:4090 +#: fortran/parse.c:4084 #, gcc-internal-format, gfc-internal-format msgid "Unexpected %s statement in BLOCK DATA at %C" msgstr "" -#: fortran/parse.c:4133 +#: fortran/parse.c:4127 #, gcc-internal-format, gfc-internal-format msgid "Unexpected %s statement in MODULE at %C" msgstr "" @@ -38780,7 +38954,7 @@ msgstr "" #. If we see a duplicate main program, shut down. If the second #. instance is an implied main program, i.e. data decls or executable #. statements, we're in for lots of errors. -#: fortran/parse.c:4454 +#: fortran/parse.c:4449 #, gcc-internal-format, gfc-internal-format msgid "Two main PROGRAMs at %L and %C" msgstr "" @@ -38970,435 +39144,450 @@ msgstr "" msgid "Coarray designator at %C but '%s' is not a coarray" msgstr "" -#: fortran/primary.c:1828 +#: fortran/primary.c:1829 #, gcc-internal-format, gfc-internal-format msgid "Expected structure component name at %C" msgstr "" -#: fortran/primary.c:1872 +#: fortran/primary.c:1876 #, gcc-internal-format, gfc-internal-format msgid "Expected argument list at %C" msgstr "" -#: fortran/primary.c:1904 +#: fortran/primary.c:1908 #, gcc-internal-format, gfc-internal-format msgid "Procedure pointer component '%s' requires an argument list at %C" msgstr "" -#: fortran/primary.c:1992 +#: fortran/primary.c:1996 #, gcc-internal-format, gfc-internal-format msgid "Coindexed procedure-pointer component at %C" msgstr "" -#: fortran/primary.c:2241 +#: fortran/primary.c:2245 #, gcc-internal-format, gfc-internal-format msgid "" "Fortran 2003: Structure constructor with missing optional arguments at %C" msgstr "" -#: fortran/primary.c:2249 +#: fortran/primary.c:2253 #, gcc-internal-format, gfc-internal-format msgid "" "No initializer for component '%s' given in the structure constructor at %C!" msgstr "" -#: fortran/primary.c:2296 +#: fortran/primary.c:2300 #, gcc-internal-format, gfc-internal-format msgid "Can't construct ABSTRACT type '%s' at %C" msgstr "" -#: fortran/primary.c:2324 +#: fortran/primary.c:2334 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: Structure constructor with named arguments at %C" msgstr "" -#: fortran/primary.c:2339 +#: fortran/primary.c:2349 #, gcc-internal-format, gfc-internal-format msgid "Component initializer without name after component named %s at %C!" msgstr "" -#: fortran/primary.c:2342 +#: fortran/primary.c:2352 #, gcc-internal-format, gfc-internal-format msgid "Too many components in structure constructor at %C!" msgstr "" -#: fortran/primary.c:2375 +#: fortran/primary.c:2385 #, gcc-internal-format, gfc-internal-format msgid "Component '%s' is initialized twice in the structure constructor at %C!" msgstr "" -#: fortran/primary.c:2391 +#: fortran/primary.c:2401 #, gcc-internal-format, gfc-internal-format msgid "" "Coindexed expression to pointer component '%s' in structure constructor at " "%C!" msgstr "" -#: fortran/primary.c:2441 +#: fortran/primary.c:2451 #, gcc-internal-format, gfc-internal-format msgid "" "component '%s' at %L has already been set by a parent derived type " "constructor" msgstr "" -#: fortran/primary.c:2456 +#: fortran/primary.c:2466 #, gcc-internal-format, gfc-internal-format msgid "Syntax error in structure constructor at %C" msgstr "" -#: fortran/primary.c:2572 +#: fortran/primary.c:2582 #, gcc-internal-format, gfc-internal-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:2691 +#: fortran/primary.c:2701 #, gcc-internal-format, gfc-internal-format msgid "Unexpected use of subroutine name '%s' at %C" msgstr "" -#: fortran/primary.c:2722 +#: fortran/primary.c:2732 #, gcc-internal-format, gfc-internal-format msgid "Statement function '%s' requires argument list at %C" msgstr "" -#: fortran/primary.c:2725 +#: fortran/primary.c:2735 #, gcc-internal-format, gfc-internal-format msgid "Function '%s' requires an argument list at %C" msgstr "" -#: fortran/primary.c:2772 +#: fortran/primary.c:2782 #, gcc-internal-format, gfc-internal-format msgid "Missing argument to '%s' at %C" msgstr "" -#: fortran/primary.c:2913 +#: fortran/primary.c:2923 #, gcc-internal-format, gfc-internal-format msgid "Missing argument list in function '%s' at %C" msgstr "" -#: fortran/primary.c:2941 +#: fortran/primary.c:2951 #, gcc-internal-format, gfc-internal-format msgid "Symbol at %C is not appropriate for an expression" msgstr "" -#: fortran/primary.c:3040 +#: fortran/primary.c:3050 #, gcc-internal-format, gfc-internal-format msgid "Named constant at %C in an EQUIVALENCE" msgstr "" -#: fortran/primary.c:3074 +#: fortran/primary.c:3084 #, gcc-internal-format, gfc-internal-format msgid "'%s' at %C is not a variable" msgstr "" -#: fortran/resolve.c:115 +#: fortran/resolve.c:116 #, gcc-internal-format, gfc-internal-format msgid "'%s' at %L is of the ABSTRACT type '%s'" msgstr "" -#: fortran/resolve.c:118 +#: fortran/resolve.c:119 #, gcc-internal-format, gfc-internal-format msgid "ABSTRACT type '%s' used at %L" msgstr "" -#: fortran/resolve.c:140 +#: fortran/resolve.c:141 #, gcc-internal-format, gfc-internal-format msgid "PROCEDURE '%s' at %L may not be used as its own interface" msgstr "" -#: fortran/resolve.c:146 +#: fortran/resolve.c:147 #, gcc-internal-format, gfc-internal-format msgid "" "Interface '%s', used by procedure '%s' at %L, is declared in a later " "PROCEDURE statement" msgstr "" -#: fortran/resolve.c:203 +#: fortran/resolve.c:207 #, gcc-internal-format, gfc-internal-format msgid "Interface '%s' of procedure '%s' at %L must be explicit" msgstr "" -#: fortran/resolve.c:251 +#: fortran/resolve.c:255 #, gcc-internal-format, gfc-internal-format msgid "" "Alternate return specifier in elemental subroutine '%s' at %L is not allowed" msgstr "" -#: fortran/resolve.c:255 +#: fortran/resolve.c:259 #, gcc-internal-format, gfc-internal-format msgid "Alternate return specifier in function '%s' at %L is not allowed" msgstr "" -#: fortran/resolve.c:271 +#: fortran/resolve.c:275 #, gcc-internal-format, gfc-internal-format msgid "Dummy procedure '%s' of PURE procedure at %L must also be PURE" msgstr "" -#: fortran/resolve.c:278 +#: fortran/resolve.c:285 #, gcc-internal-format, gfc-internal-format msgid "Dummy procedure at %L not allowed in ELEMENTAL procedure" msgstr "" -#: fortran/resolve.c:291 fortran/resolve.c:1633 +#: fortran/resolve.c:298 fortran/resolve.c:1657 #, gcc-internal-format, gfc-internal-format msgid "" "Unable to find a specific INTRINSIC procedure for the reference '%s' at %L" msgstr "" -#: fortran/resolve.c:338 +#: fortran/resolve.c:347 +#, gcc-internal-format, gfc-internal-format +msgid "" +"Fortran 2008: Argument '%s' of pure function '%s' at %L with VALUE attribute " +"but without INTENT(IN)" +msgstr "" + +#: fortran/resolve.c:352 +#, gcc-internal-format, gfc-internal-format +msgid "Argument '%s' of pure function '%s' at %L must be INTENT(IN) or VALUE" +msgstr "" + +#: fortran/resolve.c:360 #, gcc-internal-format, gfc-internal-format -msgid "Argument '%s' of pure function '%s' at %L must be INTENT(IN)" +msgid "" +"Fortran 2008: Argument '%s' of pure subroutine '%s' at %L with VALUE " +"attribute but without INTENT" msgstr "" -#: fortran/resolve.c:343 +#: fortran/resolve.c:365 #, gcc-internal-format, gfc-internal-format msgid "" -"Argument '%s' of pure subroutine '%s' at %L must have its INTENT specified" +"Argument '%s' of pure subroutine '%s' at %L must have its INTENT specified " +"or have the VALUE attribute" msgstr "" -#: fortran/resolve.c:353 +#: fortran/resolve.c:386 #, gcc-internal-format, gfc-internal-format msgid "Coarray dummy argument '%s' at %L to elemental procedure" msgstr "" -#: fortran/resolve.c:360 +#: fortran/resolve.c:393 #, gcc-internal-format, gfc-internal-format msgid "Argument '%s' of elemental procedure at %L must be scalar" msgstr "" -#: fortran/resolve.c:367 +#: fortran/resolve.c:400 #, gcc-internal-format, gfc-internal-format msgid "" "Argument '%s' of elemental procedure at %L cannot have the ALLOCATABLE " "attribute" msgstr "" -#: fortran/resolve.c:375 +#: fortran/resolve.c:408 #, gcc-internal-format, gfc-internal-format msgid "" "Argument '%s' of elemental procedure at %L cannot have the POINTER attribute" msgstr "" -#: fortran/resolve.c:383 +#: fortran/resolve.c:416 #, gcc-internal-format, gfc-internal-format msgid "Dummy procedure '%s' not allowed in elemental procedure '%s' at %L" msgstr "" -#: fortran/resolve.c:391 +#: fortran/resolve.c:424 #, gcc-internal-format, gfc-internal-format msgid "" "Argument '%s' of elemental procedure '%s' at %L must have its INTENT " "specified" msgstr "" -#: fortran/resolve.c:403 +#: fortran/resolve.c:436 #, gcc-internal-format, gfc-internal-format msgid "Argument '%s' of statement function at %L must be scalar" msgstr "" -#: fortran/resolve.c:413 +#: fortran/resolve.c:446 #, gcc-internal-format, gfc-internal-format msgid "" "Character-valued argument '%s' of statement function at %L must have " "constant length" msgstr "" -#: fortran/resolve.c:470 +#: fortran/resolve.c:503 #, gcc-internal-format, gfc-internal-format msgid "Contained function '%s' at %L has no IMPLICIT type" msgstr "" -#: fortran/resolve.c:473 +#: fortran/resolve.c:506 #, gcc-internal-format, gfc-internal-format msgid "Result '%s' of contained function '%s' at %L has no IMPLICIT type" msgstr "" -#: fortran/resolve.c:497 +#: fortran/resolve.c:530 #, gcc-internal-format, gfc-internal-format msgid "Character-valued %s '%s' at %L must not be assumed length" msgstr "" -#: fortran/resolve.c:672 +#: fortran/resolve.c:705 #, gcc-internal-format, gfc-internal-format msgid "Function %s at %L has entries with mismatched array specifications" msgstr "" -#: fortran/resolve.c:689 +#: fortran/resolve.c:722 #, gcc-internal-format, gfc-internal-format msgid "" "Extension: Function %s at %L with entries returning variables of different " "string lengths" msgstr "" -#: fortran/resolve.c:716 +#: fortran/resolve.c:749 #, gcc-internal-format, gfc-internal-format msgid "FUNCTION result %s can't be an array in FUNCTION %s at %L" msgstr "" -#: fortran/resolve.c:720 +#: fortran/resolve.c:753 #, gcc-internal-format, gfc-internal-format msgid "ENTRY result %s can't be an array in FUNCTION %s at %L" msgstr "" -#: fortran/resolve.c:727 +#: fortran/resolve.c:760 #, gcc-internal-format, gfc-internal-format msgid "FUNCTION result %s can't be a POINTER in FUNCTION %s at %L" msgstr "" -#: fortran/resolve.c:731 +#: fortran/resolve.c:764 #, gcc-internal-format, gfc-internal-format msgid "ENTRY result %s can't be a POINTER in FUNCTION %s at %L" msgstr "" -#: fortran/resolve.c:769 +#: fortran/resolve.c:802 #, gcc-internal-format, gfc-internal-format msgid "FUNCTION result %s can't be of type %s in FUNCTION %s at %L" msgstr "" -#: fortran/resolve.c:774 +#: fortran/resolve.c:807 #, gcc-internal-format, gfc-internal-format msgid "ENTRY result %s can't be of type %s in FUNCTION %s at %L" msgstr "" -#: fortran/resolve.c:817 +#: fortran/resolve.c:850 #, gcc-internal-format, gfc-internal-format msgid "" "Variable '%s' at %L is in COMMON but only in BLOCK DATA initialization is " "allowed" msgstr "" -#: fortran/resolve.c:821 +#: fortran/resolve.c:854 #, gcc-internal-format, gfc-internal-format msgid "" "Initialized variable '%s' at %L is in a blank COMMON but initialization is " "only allowed in named common blocks" msgstr "" -#: fortran/resolve.c:832 +#: fortran/resolve.c:865 #, gcc-internal-format, gfc-internal-format msgid "" "Derived type variable '%s' in COMMON at %L has neither the SEQUENCE nor the " "BIND(C) attribute" msgstr "" -#: fortran/resolve.c:836 +#: fortran/resolve.c:869 #, gcc-internal-format, gfc-internal-format msgid "" "Derived type variable '%s' in COMMON at %L has an ultimate component that is " "allocatable" msgstr "" -#: fortran/resolve.c:840 +#: fortran/resolve.c:873 #, gcc-internal-format, gfc-internal-format msgid "" "Derived type variable '%s' in COMMON at %L may not have default initializer" msgstr "" -#: fortran/resolve.c:870 +#: fortran/resolve.c:903 #, gcc-internal-format, gfc-internal-format msgid "COMMON block '%s' at %L is used as PARAMETER at %L" msgstr "" -#: fortran/resolve.c:874 +#: fortran/resolve.c:907 #, gcc-internal-format, gfc-internal-format msgid "COMMON block '%s' at %L is also an intrinsic procedure" msgstr "" -#: fortran/resolve.c:878 +#: fortran/resolve.c:911 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: COMMON block '%s' at %L that is also a function result" msgstr "" -#: fortran/resolve.c:883 +#: fortran/resolve.c:916 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: COMMON block '%s' at %L that is also a global procedure" msgstr "" -#: fortran/resolve.c:951 +#: fortran/resolve.c:984 #, gcc-internal-format, gfc-internal-format msgid "Components of structure constructor '%s' at %L are PRIVATE" msgstr "" -#: fortran/resolve.c:979 +#: fortran/resolve.c:1012 #, gcc-internal-format, gfc-internal-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:1001 +#: fortran/resolve.c:1034 #, gcc-internal-format, gfc-internal-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:1079 +#: fortran/resolve.c:1112 #, gcc-internal-format, gfc-internal-format msgid "" "The NULL in the derived type constructor at %L is being applied to component " "'%s', which is neither a POINTER nor ALLOCATABLE" msgstr "" -#: fortran/resolve.c:1094 +#: fortran/resolve.c:1127 #, gcc-internal-format, gfc-internal-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:1105 +#: fortran/resolve.c:1138 #, gcc-internal-format, gfc-internal-format msgid "Pointer initialization target at %L must not be ALLOCATABLE " msgstr "" -#: fortran/resolve.c:1111 +#: fortran/resolve.c:1144 #, gcc-internal-format, gfc-internal-format msgid "Pointer initialization target at %L must have the SAVE attribute" msgstr "" -#: fortran/resolve.c:1122 +#: fortran/resolve.c:1155 #, gcc-internal-format, gfc-internal-format msgid "" "Invalid expression in the derived type constructor for pointer component " "'%s' at %L in PURE procedure" msgstr "" -#: fortran/resolve.c:1245 +#: fortran/resolve.c:1284 #, gcc-internal-format, gfc-internal-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:1307 +#: fortran/resolve.c:1346 #, gcc-internal-format, gfc-internal-format msgid "'%s' at %L is ambiguous" msgstr "" -#: fortran/resolve.c:1311 +#: fortran/resolve.c:1350 #, gcc-internal-format, gfc-internal-format msgid "GENERIC procedure '%s' is not allowed as an actual argument at %L" msgstr "" -#: fortran/resolve.c:1418 +#: fortran/resolve.c:1457 #, gcc-internal-format, gfc-internal-format msgid "Type specified for intrinsic function '%s' at %L is ignored" msgstr "" -#: fortran/resolve.c:1431 +#: fortran/resolve.c:1470 #, gcc-internal-format, gfc-internal-format msgid "Intrinsic subroutine '%s' at %L shall not have a type specifier" msgstr "" -#: fortran/resolve.c:1442 +#: fortran/resolve.c:1481 #, gcc-internal-format, gfc-internal-format msgid "'%s' declared INTRINSIC at %L does not exist" msgstr "" -#: fortran/resolve.c:1453 +#: fortran/resolve.c:1492 #, gcc-internal-format, gfc-internal-format msgid "" "The intrinsic '%s' declared INTRINSIC at %L is not available in the current " @@ -39406,71 +39595,71 @@ msgid "" "intrinsics in order to use it." msgstr "" -#: fortran/resolve.c:1489 +#: fortran/resolve.c:1528 #, gcc-internal-format, gfc-internal-format msgid "" "Non-RECURSIVE procedure '%s' at %L is possibly calling itself recursively. " "Declare it RECURSIVE or use -frecursive" msgstr "" -#: fortran/resolve.c:1523 fortran/resolve.c:8101 fortran/resolve.c:8945 +#: fortran/resolve.c:1561 fortran/resolve.c:8218 fortran/resolve.c:9082 #, gcc-internal-format, gfc-internal-format msgid "Label %d referenced at %L is never defined" msgstr "" -#: fortran/resolve.c:1582 +#: fortran/resolve.c:1606 #, gcc-internal-format, gfc-internal-format msgid "Statement function '%s' at %L is not allowed as an actual argument" msgstr "" -#: fortran/resolve.c:1590 +#: fortran/resolve.c:1614 #, gcc-internal-format, gfc-internal-format msgid "Intrinsic '%s' at %L is not allowed as an actual argument" msgstr "" -#: fortran/resolve.c:1598 +#: fortran/resolve.c:1622 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2008: Internal procedure '%s' is used as actual argument at %L" msgstr "" -#: fortran/resolve.c:1606 +#: fortran/resolve.c:1630 #, gcc-internal-format, gfc-internal-format msgid "" "ELEMENTAL non-INTRINSIC procedure '%s' is not allowed as an actual argument " "at %L" msgstr "" -#: fortran/resolve.c:1655 +#: fortran/resolve.c:1679 #, gcc-internal-format, gfc-internal-format msgid "Symbol '%s' at %L is ambiguous" msgstr "" -#: fortran/resolve.c:1706 +#: fortran/resolve.c:1730 #, gcc-internal-format, gfc-internal-format msgid "By-value argument at %L is not of numeric type" msgstr "" -#: fortran/resolve.c:1713 +#: fortran/resolve.c:1737 #, gcc-internal-format, gfc-internal-format msgid "By-value argument at %L cannot be an array or an array section" msgstr "" -#: fortran/resolve.c:1727 +#: fortran/resolve.c:1751 #, gcc-internal-format, gfc-internal-format msgid "By-value argument at %L is not allowed in this context" msgstr "" -#: fortran/resolve.c:1739 +#: fortran/resolve.c:1763 #, gcc-internal-format, gfc-internal-format msgid "Passing internal procedure at %L by location not allowed" msgstr "" -#: fortran/resolve.c:1750 +#: fortran/resolve.c:1774 #, gcc-internal-format, gfc-internal-format msgid "Coindexed actual argument at %L with ultimate pointer component" msgstr "" -#: fortran/resolve.c:1873 +#: fortran/resolve.c:1897 #, gcc-internal-format, gfc-internal-format msgid "" "'%s' at %L is an array and OPTIONAL; IF IT IS MISSING, it cannot be the " @@ -39478,859 +39667,878 @@ msgid "" "argument with the same rank (12.4.1.5)" msgstr "" -#: fortran/resolve.c:1912 +#: fortran/resolve.c:1936 #, gcc-internal-format, gfc-internal-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:2069 +#: fortran/resolve.c:2098 #, gcc-internal-format, gfc-internal-format msgid "" "Character length mismatch in return type of function '%s' at %L (%ld/%ld)" msgstr "" -#: fortran/resolve.c:2077 +#: fortran/resolve.c:2106 #, gcc-internal-format, gfc-internal-format msgid "Return type mismatch of function '%s' at %L (%s/%s)" msgstr "" -#: fortran/resolve.c:2096 +#: fortran/resolve.c:2125 #, gcc-internal-format, gfc-internal-format msgid "" "Dummy argument '%s' of procedure '%s' at %L has an attribute that requires " "an explicit interface for this procedure" msgstr "" -#: fortran/resolve.c:2106 +#: fortran/resolve.c:2135 #, gcc-internal-format, gfc-internal-format msgid "" "Procedure '%s' at %L with assumed-shape dummy argument '%s' must have an " "explicit interface" msgstr "" -#: fortran/resolve.c:2114 +#: fortran/resolve.c:2143 #, gcc-internal-format, gfc-internal-format msgid "" "Procedure '%s' at %L with coarray dummy argument '%s' must have an explicit " "interface" msgstr "" -#: fortran/resolve.c:2122 +#: fortran/resolve.c:2151 #, gcc-internal-format, gfc-internal-format msgid "" "Procedure '%s' at %L with parametrized derived type argument '%s' must have " "an explicit interface" msgstr "" -#: fortran/resolve.c:2131 +#: fortran/resolve.c:2160 #, gcc-internal-format, gfc-internal-format msgid "" "Procedure '%s' at %L with polymorphic dummy argument '%s' must have an " "explicit interface" msgstr "" -#: fortran/resolve.c:2143 +#: fortran/resolve.c:2172 #, gcc-internal-format, gfc-internal-format msgid "" "The reference to function '%s' at %L either needs an explicit INTERFACE or " "the rank is incorrect" msgstr "" -#: fortran/resolve.c:2155 +#: fortran/resolve.c:2184 #, gcc-internal-format, gfc-internal-format msgid "" "Function '%s' at %L with a POINTER or ALLOCATABLE result must have an " "explicit interface" msgstr "" -#: fortran/resolve.c:2168 +#: fortran/resolve.c:2197 #, gcc-internal-format, gfc-internal-format msgid "" "Nonconstant character-length function '%s' at %L must have an explicit " "interface" msgstr "" -#: fortran/resolve.c:2178 +#: fortran/resolve.c:2207 #, gcc-internal-format, gfc-internal-format msgid "ELEMENTAL procedure '%s' at %L must have an explicit interface" msgstr "" -#: fortran/resolve.c:2185 +#: fortran/resolve.c:2214 #, gcc-internal-format, gfc-internal-format msgid "" "Procedure '%s' at %L with BIND(C) attribute must have an explicit interface" msgstr "" -#: fortran/resolve.c:2285 +#: fortran/resolve.c:2314 #, gcc-internal-format, gfc-internal-format msgid "There is no specific function for the generic '%s' at %L" msgstr "" -#: fortran/resolve.c:2294 +#: fortran/resolve.c:2323 #, gcc-internal-format, gfc-internal-format msgid "" "Generic function '%s' at %L is not consistent with a specific intrinsic " "interface" msgstr "" -#: fortran/resolve.c:2332 +#: fortran/resolve.c:2361 #, gcc-internal-format, gfc-internal-format msgid "" "Function '%s' at %L is INTRINSIC but is not compatible with an intrinsic" msgstr "" -#: fortran/resolve.c:2381 +#: fortran/resolve.c:2410 #, gcc-internal-format, gfc-internal-format msgid "Unable to resolve the specific function '%s' at %L" msgstr "" -#: fortran/resolve.c:2437 fortran/resolve.c:13149 +#: fortran/resolve.c:2466 fortran/resolve.c:13351 #, gcc-internal-format, gfc-internal-format msgid "Function '%s' at %L has no IMPLICIT type" msgstr "" -#: fortran/resolve.c:2648 +#: fortran/resolve.c:2668 #, gcc-internal-format, gfc-internal-format msgid "Argument to '%s' at %L is not a variable" msgstr "" -#: fortran/resolve.c:2695 +#: fortran/resolve.c:2715 #, gcc-internal-format, gfc-internal-format msgid "More actual than formal arguments in '%s' call at %L" msgstr "" -#: fortran/resolve.c:2704 +#: fortran/resolve.c:2727 #, gcc-internal-format, gfc-internal-format msgid "" "Parameter '%s' to '%s' at %L must be either a TARGET or an associated pointer" msgstr "" -#: fortran/resolve.c:2727 +#: fortran/resolve.c:2736 +#, gcc-internal-format, gfc-internal-format +msgid "Coindexed argument not permitted in '%s' call at %L" +msgstr "" + +#: fortran/resolve.c:2759 +#, gcc-internal-format, gfc-internal-format +msgid "Array section not permitted in '%s' call at %L" +msgstr "" + +#: fortran/resolve.c:2770 +#, gcc-internal-format, gfc-internal-format +msgid "Array section in '%s' call at %L" +msgstr "" + +#: fortran/resolve.c:2789 #, gcc-internal-format, gfc-internal-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:2744 +#: fortran/resolve.c:2806 #, gcc-internal-format, gfc-internal-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:2754 +#: fortran/resolve.c:2816 #, gcc-internal-format, gfc-internal-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:2777 fortran/resolve.c:2814 +#: fortran/resolve.c:2839 fortran/resolve.c:2876 #, gcc-internal-format, gfc-internal-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:2790 +#: fortran/resolve.c:2852 #, gcc-internal-format, gfc-internal-format msgid "Argument '%s' to '%s' at %L must be an associated scalar POINTER" msgstr "" -#: fortran/resolve.c:2806 +#: fortran/resolve.c:2868 #, gcc-internal-format, gfc-internal-format msgid "Parameter '%s' to '%s' at %L must be a scalar" msgstr "" -#: fortran/resolve.c:2822 +#: fortran/resolve.c:2884 #, gcc-internal-format, gfc-internal-format msgid "Parameter '%s' to '%s' at %L must not be polymorphic" msgstr "" #. TODO: Update this error message to allow for procedure #. pointers once they are implemented. -#: fortran/resolve.c:2835 +#: fortran/resolve.c:2897 #, gcc-internal-format, gfc-internal-format msgid "Parameter '%s' to '%s' at %L must be a procedure" msgstr "" -#: fortran/resolve.c:2843 +#: fortran/resolve.c:2905 #, gcc-internal-format, gfc-internal-format msgid "Parameter '%s' to '%s' at %L must be BIND(C)" msgstr "" -#: fortran/resolve.c:2892 +#: fortran/resolve.c:2954 #, gcc-internal-format, gfc-internal-format msgid "'%s' at %L is not a function" msgstr "" -#: fortran/resolve.c:2900 fortran/resolve.c:3513 +#: fortran/resolve.c:2962 fortran/resolve.c:3579 #, gcc-internal-format, gfc-internal-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:2954 +#: fortran/resolve.c:3017 #, gcc-internal-format, gfc-internal-format msgid "" "Function '%s' is declared CHARACTER(*) and cannot be used at %L since it is " "not a dummy argument" msgstr "" -#: fortran/resolve.c:3007 +#: fortran/resolve.c:3070 #, gcc-internal-format, gfc-internal-format msgid "" "User defined non-ELEMENTAL function '%s' at %L not allowed in WORKSHARE " "construct" msgstr "" -#: fortran/resolve.c:3057 +#: fortran/resolve.c:3120 #, gcc-internal-format, gfc-internal-format msgid "reference to non-PURE function '%s' at %L inside a FORALL %s" msgstr "" -#: fortran/resolve.c:3064 +#: fortran/resolve.c:3127 #, gcc-internal-format, gfc-internal-format msgid "" "Function reference to '%s' at %L is to a non-PURE procedure within a PURE " "procedure" msgstr "" -#: fortran/resolve.c:3080 +#: fortran/resolve.c:3146 #, gcc-internal-format, gfc-internal-format msgid "" "ENTRY '%s' at %L cannot be called recursively, as function '%s' is not " "RECURSIVE" msgstr "" -#: fortran/resolve.c:3084 +#: fortran/resolve.c:3150 #, gcc-internal-format, gfc-internal-format msgid "" "Function '%s' at %L cannot be called recursively, as it is not RECURSIVE" msgstr "" -#: fortran/resolve.c:3123 +#: fortran/resolve.c:3189 #, gcc-internal-format, gfc-internal-format msgid "Subroutine call to '%s' in FORALL block at %L is not PURE" msgstr "" -#: fortran/resolve.c:3126 +#: fortran/resolve.c:3192 #, gcc-internal-format, gfc-internal-format msgid "Subroutine call to '%s' at %L is not PURE" msgstr "" -#: fortran/resolve.c:3189 +#: fortran/resolve.c:3255 #, gcc-internal-format, gfc-internal-format msgid "There is no specific subroutine for the generic '%s' at %L" msgstr "" -#: fortran/resolve.c:3198 +#: fortran/resolve.c:3264 #, gcc-internal-format, gfc-internal-format msgid "" "Generic subroutine '%s' at %L is not consistent with an intrinsic subroutine " "interface" msgstr "" -#: fortran/resolve.c:3306 +#: fortran/resolve.c:3372 #, gcc-internal-format, gfc-internal-format msgid "Missing SHAPE parameter for call to %s at %L" msgstr "" -#: fortran/resolve.c:3314 +#: fortran/resolve.c:3380 #, gcc-internal-format, gfc-internal-format msgid "SHAPE parameter for call to %s at %L must be a rank 1 INTEGER array" msgstr "" -#: fortran/resolve.c:3381 +#: fortran/resolve.c:3447 #, gcc-internal-format, gfc-internal-format msgid "" "Subroutine '%s' at %L is INTRINSIC but is not compatible with an intrinsic" msgstr "" -#: fortran/resolve.c:3425 +#: fortran/resolve.c:3491 #, gcc-internal-format, gfc-internal-format msgid "Unable to resolve the specific subroutine '%s' at %L" msgstr "" -#: fortran/resolve.c:3485 +#: fortran/resolve.c:3551 #, gcc-internal-format, gfc-internal-format msgid "'%s' at %L has a type, which is not consistent with the CALL at %L" msgstr "" -#: fortran/resolve.c:3523 +#: fortran/resolve.c:3589 #, gcc-internal-format, gfc-internal-format msgid "" "ENTRY '%s' at %L cannot be called recursively, as subroutine '%s' is not " "RECURSIVE" msgstr "" -#: fortran/resolve.c:3527 +#: fortran/resolve.c:3593 #, gcc-internal-format, gfc-internal-format msgid "" "SUBROUTINE '%s' at %L cannot be called recursively, as it is not RECURSIVE" msgstr "" -#: fortran/resolve.c:3603 +#: fortran/resolve.c:3669 #, gcc-internal-format, gfc-internal-format msgid "Shapes for operands at %L and %L are not conformable" msgstr "" -#: fortran/resolve.c:4098 +#: fortran/resolve.c:4167 #, gcc-internal-format, gfc-internal-format msgid "Array reference at %L is out of bounds (%ld < %ld) in dimension %d" msgstr "" -#: fortran/resolve.c:4103 +#: fortran/resolve.c:4172 #, gcc-internal-format, gfc-internal-format msgid "Array reference at %L is out of bounds (%ld < %ld) in codimension %d" msgstr "" -#: fortran/resolve.c:4113 +#: fortran/resolve.c:4182 #, gcc-internal-format, gfc-internal-format msgid "Array reference at %L is out of bounds (%ld > %ld) in dimension %d" msgstr "" -#: fortran/resolve.c:4118 +#: fortran/resolve.c:4187 #, gcc-internal-format, gfc-internal-format msgid "Array reference at %L is out of bounds (%ld > %ld) in codimension %d" msgstr "" -#: fortran/resolve.c:4138 +#: fortran/resolve.c:4207 #, gcc-internal-format, gfc-internal-format msgid "Illegal stride of zero at %L" msgstr "" -#: fortran/resolve.c:4155 +#: fortran/resolve.c:4224 #, gcc-internal-format, gfc-internal-format msgid "" "Lower array reference at %L is out of bounds (%ld < %ld) in dimension %d" msgstr "" -#: fortran/resolve.c:4163 +#: fortran/resolve.c:4232 #, gcc-internal-format, gfc-internal-format msgid "" "Lower array reference at %L is out of bounds (%ld > %ld) in dimension %d" msgstr "" -#: fortran/resolve.c:4179 +#: fortran/resolve.c:4248 #, gcc-internal-format, gfc-internal-format msgid "" "Upper array reference at %L is out of bounds (%ld < %ld) in dimension %d" msgstr "" -#: fortran/resolve.c:4188 +#: fortran/resolve.c:4257 #, gcc-internal-format, gfc-internal-format msgid "" "Upper array reference at %L is out of bounds (%ld > %ld) in dimension %d" msgstr "" -#: fortran/resolve.c:4227 +#: fortran/resolve.c:4296 #, gcc-internal-format, gfc-internal-format msgid "Rightmost upper bound of assumed size array section not specified at %L" msgstr "" -#: fortran/resolve.c:4237 +#: fortran/resolve.c:4306 #, gcc-internal-format, gfc-internal-format msgid "Rank mismatch in array reference at %L (%d/%d)" msgstr "" -#: fortran/resolve.c:4245 +#: fortran/resolve.c:4314 #, gcc-internal-format, gfc-internal-format msgid "Coindex rank mismatch in array reference at %L (%d/%d)" msgstr "" -#: fortran/resolve.c:4260 +#: fortran/resolve.c:4329 #, gcc-internal-format, gfc-internal-format msgid "Coindex of codimension %d must be a scalar at %L" msgstr "" -#: fortran/resolve.c:4288 +#: fortran/resolve.c:4357 #, gcc-internal-format, gfc-internal-format msgid "Array index at %L must be scalar" msgstr "" -#: fortran/resolve.c:4294 +#: fortran/resolve.c:4363 #, gcc-internal-format, gfc-internal-format msgid "Array index at %L must be of INTEGER type, found %s" msgstr "" -#: fortran/resolve.c:4300 +#: fortran/resolve.c:4369 #, gcc-internal-format, gfc-internal-format msgid "Extension: REAL array index at %L" msgstr "" -#: fortran/resolve.c:4339 +#: fortran/resolve.c:4408 #, gcc-internal-format, gfc-internal-format msgid "Argument dim at %L must be scalar" msgstr "" -#: fortran/resolve.c:4346 +#: fortran/resolve.c:4415 #, gcc-internal-format, gfc-internal-format msgid "Argument dim at %L must be of INTEGER type" msgstr "" -#: fortran/resolve.c:4477 +#: fortran/resolve.c:4546 #, gcc-internal-format, gfc-internal-format msgid "Array index at %L is an array of rank %d" msgstr "" -#: fortran/resolve.c:4551 +#: fortran/resolve.c:4620 #, gcc-internal-format, gfc-internal-format msgid "Substring start index at %L must be of type INTEGER" msgstr "" -#: fortran/resolve.c:4558 +#: fortran/resolve.c:4627 #, gcc-internal-format, gfc-internal-format msgid "Substring start index at %L must be scalar" msgstr "" -#: fortran/resolve.c:4567 +#: fortran/resolve.c:4636 #, gcc-internal-format, gfc-internal-format msgid "Substring start index at %L is less than one" msgstr "" -#: fortran/resolve.c:4580 +#: fortran/resolve.c:4649 #, gcc-internal-format, gfc-internal-format msgid "Substring end index at %L must be of type INTEGER" msgstr "" -#: fortran/resolve.c:4587 +#: fortran/resolve.c:4656 #, gcc-internal-format, gfc-internal-format msgid "Substring end index at %L must be scalar" msgstr "" -#: fortran/resolve.c:4597 +#: fortran/resolve.c:4666 #, gcc-internal-format, gfc-internal-format msgid "Substring end index at %L exceeds the string length" msgstr "" -#: fortran/resolve.c:4607 +#: fortran/resolve.c:4676 #, gcc-internal-format, gfc-internal-format msgid "Substring end index at %L is too large" msgstr "" -#: fortran/resolve.c:4752 +#: fortran/resolve.c:4821 #, gcc-internal-format, gfc-internal-format msgid "" "Component to the right of a part reference with nonzero rank must not have " "the POINTER attribute at %L" msgstr "" -#: fortran/resolve.c:4759 +#: fortran/resolve.c:4828 #, gcc-internal-format, gfc-internal-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:4778 +#: fortran/resolve.c:4847 #, gcc-internal-format, gfc-internal-format msgid "" "Two or more part references with nonzero rank must not be specified at %L" msgstr "" -#: fortran/resolve.c:4976 +#: fortran/resolve.c:5049 #, gcc-internal-format, gfc-internal-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:4981 +#: fortran/resolve.c:5054 #, gcc-internal-format, gfc-internal-format msgid "" "Variable '%s' is used at %L before the ENTRY statement in which it is a " "parameter" msgstr "" -#: fortran/resolve.c:5045 +#: fortran/resolve.c:5118 #, gcc-internal-format, gfc-internal-format msgid "Polymorphic subobject of coindexed object at %L" msgstr "" -#: fortran/resolve.c:5058 +#: fortran/resolve.c:5131 #, gcc-internal-format, gfc-internal-format msgid "Coindexed object with polymorphic allocatable subcomponent at %L" msgstr "" -#: fortran/resolve.c:5390 +#: fortran/resolve.c:5463 #, gcc-internal-format, gfc-internal-format msgid "Passed-object at %L must be scalar" msgstr "" -#: fortran/resolve.c:5397 +#: fortran/resolve.c:5470 #, gcc-internal-format, gfc-internal-format msgid "" "Base object for procedure-pointer component call at %L is of ABSTRACT type " "'%s'" msgstr "" -#: fortran/resolve.c:5429 +#: fortran/resolve.c:5502 #, gcc-internal-format, gfc-internal-format msgid "" "Base object for type-bound procedure call at %L is of ABSTRACT type '%s'" msgstr "" -#: fortran/resolve.c:5438 +#: fortran/resolve.c:5511 #, gcc-internal-format, gfc-internal-format msgid "Base object for NOPASS type-bound procedure call at %L must be scalar" msgstr "" -#: fortran/resolve.c:5446 +#: fortran/resolve.c:5519 #, gcc-internal-format, gfc-internal-format msgid "Non-scalar base object at %L currently not implemented" msgstr "" #. Nothing matching found! -#: fortran/resolve.c:5596 +#: fortran/resolve.c:5669 #, gcc-internal-format, gfc-internal-format msgid "" "Found no matching specific binding for the call to the GENERIC '%s' at %L" msgstr "" -#: fortran/resolve.c:5623 +#: fortran/resolve.c:5696 #, gcc-internal-format, gfc-internal-format msgid "'%s' at %L should be a SUBROUTINE" msgstr "" -#: fortran/resolve.c:5670 +#: fortran/resolve.c:5743 #, gcc-internal-format, gfc-internal-format msgid "'%s' at %L should be a FUNCTION" msgstr "" -#: fortran/resolve.c:6113 +#: fortran/resolve.c:6184 #, gcc-internal-format, gfc-internal-format msgid "%s at %L must be a scalar" msgstr "" -#: fortran/resolve.c:6123 +#: fortran/resolve.c:6194 #, gcc-internal-format, gfc-internal-format msgid "Deleted feature: %s at %L must be integer" msgstr "" -#: fortran/resolve.c:6127 fortran/resolve.c:6134 +#: fortran/resolve.c:6198 fortran/resolve.c:6205 #, gcc-internal-format, gfc-internal-format msgid "%s at %L must be INTEGER" msgstr "" -#: fortran/resolve.c:6175 +#: fortran/resolve.c:6246 #, gcc-internal-format, gfc-internal-format msgid "Step expression in DO loop at %L cannot be zero" msgstr "" -#: fortran/resolve.c:6210 +#: fortran/resolve.c:6281 #, gcc-internal-format, gfc-internal-format msgid "DO loop at %L will be executed zero times" msgstr "" -#: fortran/resolve.c:6271 +#: fortran/resolve.c:6342 #, gcc-internal-format, gfc-internal-format msgid "FORALL index-name at %L must be a scalar INTEGER" msgstr "" -#: fortran/resolve.c:6276 +#: fortran/resolve.c:6347 #, gcc-internal-format, gfc-internal-format msgid "FORALL start expression at %L must be a scalar INTEGER" msgstr "" -#: fortran/resolve.c:6283 +#: fortran/resolve.c:6354 #, gcc-internal-format, gfc-internal-format msgid "FORALL end expression at %L must be a scalar INTEGER" msgstr "" -#: fortran/resolve.c:6291 +#: fortran/resolve.c:6362 #, gcc-internal-format, gfc-internal-format msgid "FORALL stride expression at %L must be a scalar %s" msgstr "" -#: fortran/resolve.c:6296 +#: fortran/resolve.c:6367 #, gcc-internal-format, gfc-internal-format msgid "FORALL stride expression at %L cannot be zero" msgstr "" -#: fortran/resolve.c:6312 +#: fortran/resolve.c:6383 #, gcc-internal-format, gfc-internal-format msgid "FORALL index '%s' may not appear in triplet specification at %L" msgstr "" -#: fortran/resolve.c:6406 fortran/resolve.c:6668 +#: fortran/resolve.c:6477 fortran/resolve.c:6733 #, gcc-internal-format, gfc-internal-format msgid "Allocate-object at %L must be ALLOCATABLE or a POINTER" msgstr "" -#: fortran/resolve.c:6513 +#: fortran/resolve.c:6578 #, gcc-internal-format, gfc-internal-format msgid "" "Source-expr at %L must be scalar or have the same rank as the allocate-" "object at %L" msgstr "" -#: fortran/resolve.c:6541 +#: fortran/resolve.c:6606 #, gcc-internal-format, gfc-internal-format msgid "Source-expr at %L and allocate-object at %L must have the same shape" msgstr "" -#: fortran/resolve.c:6634 +#: fortran/resolve.c:6699 #, gcc-internal-format, gfc-internal-format msgid "Coindexed allocatable object at %L" msgstr "" -#: fortran/resolve.c:6679 +#: fortran/resolve.c:6744 #, gcc-internal-format, gfc-internal-format msgid "Type of entity at %L is type incompatible with source-expr at %L" msgstr "" -#: fortran/resolve.c:6692 +#: fortran/resolve.c:6757 #, gcc-internal-format, gfc-internal-format msgid "" "The allocate-object at %L and the source-expr at %L shall have the same kind " "type parameter" msgstr "" -#: fortran/resolve.c:6704 +#: fortran/resolve.c:6769 #, gcc-internal-format, gfc-internal-format msgid "" "Allocating %s of ABSTRACT base type at %L requires a type-spec or source-expr" msgstr "" -#: fortran/resolve.c:6776 +#: fortran/resolve.c:6841 #, gcc-internal-format, gfc-internal-format msgid "Array specification required in ALLOCATE statement at %L" msgstr "" -#: fortran/resolve.c:6788 +#: fortran/resolve.c:6853 #, gcc-internal-format, gfc-internal-format msgid "Coarray specification required in ALLOCATE statement at %L" msgstr "" -#: fortran/resolve.c:6814 +#: fortran/resolve.c:6879 #, gcc-internal-format, gfc-internal-format msgid "Bad array specification in ALLOCATE statement at %L" msgstr "" -#: fortran/resolve.c:6833 +#: fortran/resolve.c:6898 #, gcc-internal-format, gfc-internal-format msgid "" "'%s' must not appear in the array specification at %L in the same ALLOCATE " "statement where it is itself allocated" msgstr "" -#: fortran/resolve.c:6848 +#: fortran/resolve.c:6913 #, gcc-internal-format, gfc-internal-format msgid "Expected '*' in coindex specification in ALLOCATE statement at %L" msgstr "" -#: fortran/resolve.c:6859 +#: fortran/resolve.c:6924 #, gcc-internal-format, gfc-internal-format msgid "Bad coarray specification in ALLOCATE statement at %L" msgstr "" -#: fortran/resolve.c:6866 +#: fortran/resolve.c:6931 #, gcc-internal-format, gfc-internal-format msgid "Sorry, allocatable scalar coarrays are not yet supported at %L" msgstr "" -#: fortran/resolve.c:6874 -#, gcc-internal-format, gfc-internal-format -msgid "" -"Support for entity at %L with deferred type parameter not yet implemented" -msgstr "" - -#: fortran/resolve.c:6902 +#: fortran/resolve.c:6961 #, gcc-internal-format, gfc-internal-format msgid "Stat-variable at %L must be a scalar INTEGER variable" msgstr "" -#: fortran/resolve.c:6925 +#: fortran/resolve.c:6984 #, gcc-internal-format, gfc-internal-format msgid "Stat-variable at %L shall not be %sd within the same %s statement" msgstr "" -#: fortran/resolve.c:6936 +#: fortran/resolve.c:6995 #, gcc-internal-format, gfc-internal-format msgid "ERRMSG at %L is useless without a STAT tag" msgstr "" -#: fortran/resolve.c:6946 +#: fortran/resolve.c:7005 #, gcc-internal-format, gfc-internal-format msgid "Errmsg-variable at %L must be a scalar CHARACTER variable" msgstr "" -#: fortran/resolve.c:6969 +#: fortran/resolve.c:7028 #, gcc-internal-format, gfc-internal-format msgid "Errmsg-variable at %L shall not be %sd within the same %s statement" msgstr "" -#: fortran/resolve.c:6990 +#: fortran/resolve.c:7058 #, gcc-internal-format, gfc-internal-format msgid "Allocate-object at %L also appears at %L" msgstr "" +#: fortran/resolve.c:7064 fortran/resolve.c:7070 +#, gcc-internal-format, gfc-internal-format +msgid "Allocate-object at %L is subobject of object at %L" +msgstr "" + #. The cases overlap, or they are the same #. element in the list. Either way, we must #. issue an error and get the next case from P. #. FIXME: Sort P and Q by line number. -#: fortran/resolve.c:7157 +#: fortran/resolve.c:7265 #, gcc-internal-format, gfc-internal-format msgid "CASE label at %L overlaps with CASE label at %L" msgstr "" -#: fortran/resolve.c:7208 +#: fortran/resolve.c:7316 #, gcc-internal-format, gfc-internal-format msgid "Expression in CASE statement at %L must be of type %s" msgstr "" -#: fortran/resolve.c:7219 +#: fortran/resolve.c:7327 #, gcc-internal-format, gfc-internal-format msgid "Expression in CASE statement at %L must be of kind %d" msgstr "" -#: fortran/resolve.c:7232 +#: fortran/resolve.c:7340 #, gcc-internal-format, gfc-internal-format msgid "Expression in CASE statement at %L must be scalar" msgstr "" -#: fortran/resolve.c:7278 +#: fortran/resolve.c:7386 #, gcc-internal-format, gfc-internal-format msgid "" "Selection expression in computed GOTO statement at %L must be a scalar " "integer expression" msgstr "" -#: fortran/resolve.c:7296 +#: fortran/resolve.c:7404 #, gcc-internal-format, gfc-internal-format msgid "Argument of SELECT statement at %L cannot be %s" msgstr "" -#: fortran/resolve.c:7305 +#: fortran/resolve.c:7413 #, gcc-internal-format, gfc-internal-format msgid "Argument of SELECT statement at %L must be a scalar expression" msgstr "" -#: fortran/resolve.c:7324 fortran/resolve.c:7332 +#: fortran/resolve.c:7432 fortran/resolve.c:7440 #, gcc-internal-format, gfc-internal-format msgid "Expression in CASE statement at %L is not in the range of %s" msgstr "" -#: fortran/resolve.c:7394 fortran/resolve.c:7700 +#: fortran/resolve.c:7502 fortran/resolve.c:7808 #, gcc-internal-format, gfc-internal-format msgid "" "The DEFAULT CASE at %L cannot be followed by a second DEFAULT CASE at %L" msgstr "" -#: fortran/resolve.c:7420 +#: fortran/resolve.c:7528 #, gcc-internal-format, gfc-internal-format msgid "Logical range in CASE statement at %L is not allowed" msgstr "" -#: fortran/resolve.c:7432 +#: fortran/resolve.c:7540 #, gcc-internal-format, gfc-internal-format msgid "Constant logical value in CASE statement is repeated at %L" msgstr "" -#: fortran/resolve.c:7446 +#: fortran/resolve.c:7554 #, gcc-internal-format, gfc-internal-format msgid "Range specification at %L can never be matched" msgstr "" -#: fortran/resolve.c:7549 +#: fortran/resolve.c:7657 #, gcc-internal-format, gfc-internal-format msgid "Logical SELECT CASE block at %L has more that two cases" msgstr "" -#: fortran/resolve.c:7613 +#: fortran/resolve.c:7721 #, gcc-internal-format, gfc-internal-format msgid "Associate-name '%s' at %L is used as array" msgstr "" -#: fortran/resolve.c:7655 +#: fortran/resolve.c:7763 #, gcc-internal-format, gfc-internal-format msgid "Selector shall be polymorphic in SELECT TYPE statement at %L" msgstr "" -#: fortran/resolve.c:7678 +#: fortran/resolve.c:7786 #, gcc-internal-format, gfc-internal-format msgid "Derived type '%s' at %L must be extensible" msgstr "" -#: fortran/resolve.c:7688 +#: fortran/resolve.c:7796 #, gcc-internal-format, gfc-internal-format msgid "Derived type '%s' at %L must be an extension of '%s'" msgstr "" -#: fortran/resolve.c:7858 +#: fortran/resolve.c:7966 #, gcc-internal-format, gfc-internal-format msgid "Double CLASS IS block in SELECT TYPE statement at %L" msgstr "" #. FIXME: Test for defined input/output. -#: fortran/resolve.c:7968 +#: fortran/resolve.c:8077 #, gcc-internal-format, gfc-internal-format msgid "" "Data transfer element at %L cannot be polymorphic unless it is processed by " "a defined input/output procedure" msgstr "" -#: fortran/resolve.c:7980 +#: fortran/resolve.c:8089 #, gcc-internal-format, gfc-internal-format msgid "Data transfer element at %L cannot have POINTER components" msgstr "" -#: fortran/resolve.c:7987 +#: fortran/resolve.c:8097 +#, gcc-internal-format, gfc-internal-format +msgid "Data transfer element at %L cannot have procedure pointer components" +msgstr "" + +#: fortran/resolve.c:8104 #, gcc-internal-format, gfc-internal-format msgid "Data transfer element at %L cannot have ALLOCATABLE components" msgstr "" -#: fortran/resolve.c:7994 +#: fortran/resolve.c:8111 #, gcc-internal-format, gfc-internal-format msgid "Data transfer element at %L cannot have PRIVATE components" msgstr "" -#: fortran/resolve.c:8003 +#: fortran/resolve.c:8120 #, gcc-internal-format, gfc-internal-format msgid "" "Data transfer element at %L cannot be a full reference to an assumed-size " "array" msgstr "" -#: fortran/resolve.c:8051 +#: fortran/resolve.c:8168 #, gcc-internal-format, gfc-internal-format msgid "Imageset argument at %L must be a scalar or rank-1 INTEGER expression" msgstr "" -#: fortran/resolve.c:8055 fortran/resolve.c:8065 +#: fortran/resolve.c:8172 fortran/resolve.c:8182 #, gcc-internal-format, gfc-internal-format msgid "Imageset argument at %L must between 1 and num_images()" msgstr "" -#: fortran/resolve.c:8074 +#: fortran/resolve.c:8191 #, gcc-internal-format, gfc-internal-format msgid "STAT= argument at %L must be a scalar INTEGER variable" msgstr "" -#: fortran/resolve.c:8081 +#: fortran/resolve.c:8198 #, gcc-internal-format, gfc-internal-format msgid "ERRMSG= argument at %L must be a scalar CHARACTER variable" msgstr "" -#: fortran/resolve.c:8108 +#: fortran/resolve.c:8225 #, gcc-internal-format, gfc-internal-format msgid "" "Statement at %L is not a valid branch target statement for the branch " "statement at %L" msgstr "" -#: fortran/resolve.c:8117 +#: fortran/resolve.c:8234 #, gcc-internal-format, gfc-internal-format msgid "Branch at %L may result in an infinite loop" msgstr "" #. Note: A label at END CRITICAL does not leave the CRITICAL #. construct as END CRITICAL is still part of it. -#: fortran/resolve.c:8133 fortran/resolve.c:8151 +#: fortran/resolve.c:8250 fortran/resolve.c:8268 #, gcc-internal-format, gfc-internal-format msgid "GOTO statement at %L leaves CRITICAL construct for label at %L" msgstr "" @@ -40338,127 +40546,127 @@ 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:8166 +#: fortran/resolve.c:8283 #, gcc-internal-format, gfc-internal-format msgid "Label at %L is not in the same block as the GOTO statement at %L" msgstr "" -#: fortran/resolve.c:8241 +#: fortran/resolve.c:8358 #, gcc-internal-format, gfc-internal-format msgid "WHERE mask at %L has inconsistent shape" msgstr "" -#: fortran/resolve.c:8257 +#: fortran/resolve.c:8374 #, gcc-internal-format, gfc-internal-format msgid "WHERE assignment target at %L has inconsistent shape" msgstr "" -#: fortran/resolve.c:8265 fortran/resolve.c:8352 +#: fortran/resolve.c:8382 fortran/resolve.c:8469 #, gcc-internal-format, gfc-internal-format msgid "Non-ELEMENTAL user-defined assignment in WHERE at %L" msgstr "" -#: fortran/resolve.c:8275 fortran/resolve.c:8362 +#: fortran/resolve.c:8392 fortran/resolve.c:8479 #, gcc-internal-format, gfc-internal-format msgid "Unsupported statement inside WHERE at %L" msgstr "" -#: fortran/resolve.c:8306 +#: fortran/resolve.c:8423 #, gcc-internal-format, gfc-internal-format msgid "Assignment to a FORALL index variable at %L" msgstr "" -#: fortran/resolve.c:8315 +#: fortran/resolve.c:8432 #, gcc-internal-format, gfc-internal-format msgid "" "The FORALL with index '%s' is not used on the left side of the assignment at " "%L and so might cause multiple assignment to this object" msgstr "" -#: fortran/resolve.c:8484 +#: fortran/resolve.c:8601 #, gcc-internal-format, gfc-internal-format msgid "An outer FORALL construct already has an index with this name %L" msgstr "" -#: fortran/resolve.c:8564 +#: fortran/resolve.c:8681 #, gcc-internal-format, gfc-internal-format msgid "WHERE/ELSEWHERE clause at %L requires a LOGICAL array" msgstr "" -#: fortran/resolve.c:8716 +#: fortran/resolve.c:8833 #, gcc-internal-format, gfc-internal-format msgid "CHARACTER expression will be truncated in assignment (%d/%d) at %L" msgstr "" -#: fortran/resolve.c:8748 +#: fortran/resolve.c:8865 #, gcc-internal-format, gfc-internal-format msgid "" "Coindexed expression at %L is assigned to a derived type variable with a " "POINTER component in a PURE procedure" msgstr "" -#: fortran/resolve.c:8753 +#: fortran/resolve.c:8870 #, gcc-internal-format, gfc-internal-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:8763 +#: fortran/resolve.c:8880 #, gcc-internal-format, gfc-internal-format msgid "Assignment to coindexed variable at %L in a PURE procedure" msgstr "" -#: fortran/resolve.c:8774 +#: fortran/resolve.c:8911 #, gcc-internal-format, gfc-internal-format msgid "Variable must not be polymorphic in assignment at %L" msgstr "" -#: fortran/resolve.c:8782 +#: fortran/resolve.c:8919 #, gcc-internal-format, gfc-internal-format msgid "" "Coindexed variable must not be have an allocatable ultimate component in " "assignment at %L" msgstr "" -#: fortran/resolve.c:8904 +#: fortran/resolve.c:9041 #, gcc-internal-format, gfc-internal-format msgid "ASSIGNED GOTO statement at %L requires an INTEGER variable" msgstr "" -#: fortran/resolve.c:8907 +#: fortran/resolve.c:9044 #, gcc-internal-format, gfc-internal-format msgid "Variable '%s' has not been assigned a target label at %L" msgstr "" -#: fortran/resolve.c:8918 +#: fortran/resolve.c:9055 #, gcc-internal-format, gfc-internal-format msgid "" "Alternate RETURN statement at %L requires a SCALAR-INTEGER return specifier" msgstr "" -#: fortran/resolve.c:8953 +#: fortran/resolve.c:9090 #, gcc-internal-format, gfc-internal-format msgid "ASSIGN statement at %L requires a scalar default INTEGER variable" msgstr "" -#: fortran/resolve.c:8984 +#: fortran/resolve.c:9121 #, gcc-internal-format, gfc-internal-format msgid "Arithmetic IF statement at %L requires a numeric expression" msgstr "" -#: fortran/resolve.c:9043 +#: fortran/resolve.c:9180 #, gcc-internal-format, gfc-internal-format msgid "" "Exit condition of DO WHILE loop at %L must be a scalar LOGICAL expression" msgstr "" -#: fortran/resolve.c:9126 +#: fortran/resolve.c:9263 #, gcc-internal-format, gfc-internal-format msgid "FORALL mask clause at %L requires a scalar LOGICAL expression" msgstr "" -#: fortran/resolve.c:9205 fortran/resolve.c:9261 +#: fortran/resolve.c:9342 fortran/resolve.c:9398 #, gcc-internal-format, gfc-internal-format msgid "" "Binding label '%s' for common block '%s' at %L collides with the global " @@ -40466,14 +40674,14 @@ msgid "" msgstr "" #. Common block names match but binding labels do not. -#: fortran/resolve.c:9226 +#: fortran/resolve.c:9363 #, gcc-internal-format, gfc-internal-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:9273 +#: fortran/resolve.c:9410 #, gcc-internal-format, gfc-internal-format msgid "" "Binding label '%s' for common block '%s' at %L collides with global entity " @@ -40481,74 +40689,74 @@ msgid "" msgstr "" #. Make sure global procedures don't collide with anything. -#: fortran/resolve.c:9325 +#: fortran/resolve.c:9462 #, gcc-internal-format, gfc-internal-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:9338 +#: fortran/resolve.c:9475 #, gcc-internal-format, gfc-internal-format msgid "" "Binding label '%s' in interface body at %L collides with the global entity " "'%s' at %L" msgstr "" -#: fortran/resolve.c:9351 +#: fortran/resolve.c:9488 #, gcc-internal-format, gfc-internal-format msgid "Binding label '%s' at %L collides with global entity '%s' at %L" msgstr "" -#: fortran/resolve.c:9430 +#: fortran/resolve.c:9567 #, gcc-internal-format, gfc-internal-format msgid "" "CHARACTER variable at %L has negative length %d, the length has been set to " "zero" msgstr "" -#: fortran/resolve.c:9443 +#: fortran/resolve.c:9580 #, gcc-internal-format, gfc-internal-format msgid "String length at %L is too large" msgstr "" -#: fortran/resolve.c:9731 +#: fortran/resolve.c:9868 #, gcc-internal-format, gfc-internal-format msgid "Allocatable array '%s' at %L must have a deferred shape" msgstr "" -#: fortran/resolve.c:9735 +#: fortran/resolve.c:9872 #, gcc-internal-format, gfc-internal-format msgid "Scalar object '%s' at %L may not be ALLOCATABLE" msgstr "" -#: fortran/resolve.c:9743 +#: fortran/resolve.c:9880 #, gcc-internal-format, gfc-internal-format msgid "Array pointer '%s' at %L must have a deferred shape" msgstr "" -#: fortran/resolve.c:9753 +#: fortran/resolve.c:9890 #, gcc-internal-format, gfc-internal-format msgid "Array '%s' at %L cannot have a deferred shape" msgstr "" -#: fortran/resolve.c:9766 +#: fortran/resolve.c:9903 #, gcc-internal-format, gfc-internal-format msgid "Type '%s' of CLASS variable '%s' at %L is not extensible" msgstr "" -#: fortran/resolve.c:9778 +#: fortran/resolve.c:9915 #, gcc-internal-format, gfc-internal-format msgid "CLASS variable '%s' at %L must be dummy, allocatable or pointer" msgstr "" -#: fortran/resolve.c:9807 +#: fortran/resolve.c:9944 #, gcc-internal-format, gfc-internal-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:9829 +#: fortran/resolve.c:9966 #, gcc-internal-format, gfc-internal-format msgid "" "Fortran 2008: Implied SAVE for module variable '%s' at %L, needed due to the " @@ -40557,191 +40765,197 @@ msgstr "" #. The shape of a main program or module array needs to be #. constant. -#: fortran/resolve.c:9876 +#: fortran/resolve.c:10013 #, gcc-internal-format, gfc-internal-format msgid "The module or main program array '%s' at %L must have constant shape" msgstr "" -#: fortran/resolve.c:9885 +#: fortran/resolve.c:10022 #, gcc-internal-format, gfc-internal-format msgid "" "Entity '%s' at %L has a deferred type parameter and requires either the " "pointer or allocatable attribute" msgstr "" -#: fortran/resolve.c:9899 +#: fortran/resolve.c:10036 #, gcc-internal-format, gfc-internal-format msgid "" "Entity with assumed character length at %L must be a dummy argument or a " "PARAMETER" msgstr "" -#: fortran/resolve.c:9918 +#: fortran/resolve.c:10055 #, gcc-internal-format, gfc-internal-format msgid "'%s' at %L must have constant character length in this context" msgstr "" -#: fortran/resolve.c:9954 +#: fortran/resolve.c:10092 #, gcc-internal-format, gfc-internal-format msgid "Allocatable '%s' at %L cannot have an initializer" msgstr "" -#: fortran/resolve.c:9957 +#: fortran/resolve.c:10095 #, gcc-internal-format, gfc-internal-format msgid "External '%s' at %L cannot have an initializer" msgstr "" -#: fortran/resolve.c:9961 +#: fortran/resolve.c:10099 #, gcc-internal-format, gfc-internal-format msgid "Dummy '%s' at %L cannot have an initializer" msgstr "" -#: fortran/resolve.c:9964 +#: fortran/resolve.c:10102 #, gcc-internal-format, gfc-internal-format msgid "Intrinsic '%s' at %L cannot have an initializer" msgstr "" -#: fortran/resolve.c:9967 +#: fortran/resolve.c:10105 #, gcc-internal-format, gfc-internal-format msgid "Function result '%s' at %L cannot have an initializer" msgstr "" -#: fortran/resolve.c:9970 +#: fortran/resolve.c:10108 #, gcc-internal-format, gfc-internal-format msgid "Automatic array '%s' at %L cannot have an initializer" msgstr "" -#: fortran/resolve.c:10007 +#: fortran/resolve.c:10145 #, gcc-internal-format, gfc-internal-format msgid "" "Character-valued statement function '%s' at %L must have constant length" msgstr "" -#: fortran/resolve.c:10030 +#: fortran/resolve.c:10167 #, gcc-internal-format, gfc-internal-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:10053 fortran/resolve.c:10078 +#: fortran/resolve.c:10189 fortran/resolve.c:10213 #, gcc-internal-format, gfc-internal-format msgid "" "Fortran 2003: Procedure '%s' in PUBLIC interface '%s' at %L takes dummy " "arguments of '%s' which is PRIVATE" msgstr "" -#: fortran/resolve.c:10096 +#: fortran/resolve.c:10231 #, gcc-internal-format, gfc-internal-format msgid "Function '%s' at %L cannot have an initializer" msgstr "" -#: fortran/resolve.c:10105 +#: fortran/resolve.c:10240 #, gcc-internal-format, gfc-internal-format msgid "External object '%s' at %L may not have an initializer" msgstr "" -#: fortran/resolve.c:10113 +#: fortran/resolve.c:10248 #, gcc-internal-format, gfc-internal-format msgid "ELEMENTAL function '%s' at %L must have a scalar result" msgstr "" -#: fortran/resolve.c:10134 +#: fortran/resolve.c:10258 +#, gcc-internal-format, gfc-internal-format +msgid "" +"Statement function '%s' at %L may not have pointer or allocatable attribute" +msgstr "" + +#: fortran/resolve.c:10277 #, gcc-internal-format, gfc-internal-format msgid "CHARACTER(*) function '%s' at %L cannot be array-valued" msgstr "" -#: fortran/resolve.c:10138 +#: fortran/resolve.c:10281 #, gcc-internal-format, gfc-internal-format msgid "CHARACTER(*) function '%s' at %L cannot be pointer-valued" msgstr "" -#: fortran/resolve.c:10142 +#: fortran/resolve.c:10285 #, gcc-internal-format, gfc-internal-format msgid "CHARACTER(*) function '%s' at %L cannot be pure" msgstr "" -#: fortran/resolve.c:10146 +#: fortran/resolve.c:10289 #, gcc-internal-format, gfc-internal-format msgid "CHARACTER(*) function '%s' at %L cannot be recursive" msgstr "" -#: fortran/resolve.c:10155 +#: fortran/resolve.c:10301 #, gcc-internal-format, gfc-internal-format msgid "Obsolescent feature: CHARACTER(*) function '%s' at %L" msgstr "" -#: fortran/resolve.c:10210 +#: fortran/resolve.c:10356 #, gcc-internal-format, gfc-internal-format msgid "PROCEDURE attribute conflicts with SAVE attribute in '%s' at %L" msgstr "" -#: fortran/resolve.c:10216 +#: fortran/resolve.c:10362 #, gcc-internal-format, gfc-internal-format msgid "PROCEDURE attribute conflicts with INTENT attribute in '%s' at %L" msgstr "" -#: fortran/resolve.c:10222 +#: fortran/resolve.c:10368 #, gcc-internal-format, gfc-internal-format msgid "PROCEDURE attribute conflicts with RESULT attribute in '%s' at %L" msgstr "" -#: fortran/resolve.c:10230 +#: fortran/resolve.c:10376 #, gcc-internal-format, gfc-internal-format msgid "EXTERNAL attribute conflicts with FUNCTION attribute in '%s' at %L" msgstr "" -#: fortran/resolve.c:10236 +#: fortran/resolve.c:10382 #, gcc-internal-format, gfc-internal-format msgid "Procedure pointer result '%s' at %L is missing the pointer attribute" msgstr "" -#: fortran/resolve.c:10282 +#: fortran/resolve.c:10428 #, gcc-internal-format, gfc-internal-format msgid "FINAL procedure '%s' at %L is not a SUBROUTINE" msgstr "" -#: fortran/resolve.c:10290 +#: fortran/resolve.c:10436 #, gcc-internal-format, gfc-internal-format msgid "FINAL procedure at %L must have exactly one argument" msgstr "" -#: fortran/resolve.c:10299 +#: fortran/resolve.c:10445 #, gcc-internal-format, gfc-internal-format msgid "Argument of FINAL procedure at %L must be of type '%s'" msgstr "" -#: fortran/resolve.c:10307 +#: fortran/resolve.c:10453 #, gcc-internal-format, gfc-internal-format msgid "Argument of FINAL procedure at %L must not be a POINTER" msgstr "" -#: fortran/resolve.c:10313 +#: fortran/resolve.c:10459 #, gcc-internal-format, gfc-internal-format msgid "Argument of FINAL procedure at %L must not be ALLOCATABLE" msgstr "" -#: fortran/resolve.c:10319 +#: fortran/resolve.c:10465 #, gcc-internal-format, gfc-internal-format msgid "Argument of FINAL procedure at %L must not be OPTIONAL" msgstr "" -#: fortran/resolve.c:10327 +#: fortran/resolve.c:10473 #, gcc-internal-format, gfc-internal-format msgid "Argument of FINAL procedure at %L must not be INTENT(OUT)" msgstr "" -#: fortran/resolve.c:10335 +#: fortran/resolve.c:10481 #, gcc-internal-format, gfc-internal-format msgid "Non-scalar FINAL procedure at %L should have assumed shape argument" msgstr "" -#: fortran/resolve.c:10354 +#: fortran/resolve.c:10500 #, gcc-internal-format, gfc-internal-format msgid "FINAL procedure '%s' declared at %L has the same rank (%d) as '%s'" msgstr "" -#: fortran/resolve.c:10387 +#: fortran/resolve.c:10533 #, gcc-internal-format, gfc-internal-format msgid "" "Only array FINAL procedures declared for derived type '%s' defined at %L, " @@ -40749,690 +40963,721 @@ msgid "" msgstr "" #. TODO: Remove this error when finalization is finished. -#: fortran/resolve.c:10392 +#: fortran/resolve.c:10538 #, gcc-internal-format, gfc-internal-format msgid "Finalization at %L is not yet implemented" msgstr "" -#: fortran/resolve.c:10418 +#: fortran/resolve.c:10564 #, gcc-internal-format, gfc-internal-format msgid "Can't overwrite GENERIC '%s' at %L" msgstr "" -#: fortran/resolve.c:10430 +#: fortran/resolve.c:10576 #, gcc-internal-format, gfc-internal-format msgid "'%s' at %L overrides a procedure binding declared NON_OVERRIDABLE" msgstr "" -#: fortran/resolve.c:10438 +#: fortran/resolve.c:10584 #, gcc-internal-format, gfc-internal-format msgid "'%s' at %L must not be DEFERRED as it overrides a non-DEFERRED binding" msgstr "" -#: fortran/resolve.c:10446 +#: fortran/resolve.c:10592 #, gcc-internal-format, gfc-internal-format msgid "'%s' at %L overrides a PURE procedure and must also be PURE" msgstr "" -#: fortran/resolve.c:10455 +#: fortran/resolve.c:10601 #, gcc-internal-format, gfc-internal-format msgid "'%s' at %L overrides an ELEMENTAL procedure and must also be ELEMENTAL" msgstr "" -#: fortran/resolve.c:10461 +#: fortran/resolve.c:10607 #, gcc-internal-format, gfc-internal-format msgid "" "'%s' at %L overrides a non-ELEMENTAL procedure and must not be ELEMENTAL, " "either" msgstr "" -#: fortran/resolve.c:10470 +#: fortran/resolve.c:10616 #, gcc-internal-format, gfc-internal-format msgid "'%s' at %L overrides a SUBROUTINE and must also be a SUBROUTINE" msgstr "" -#: fortran/resolve.c:10481 +#: fortran/resolve.c:10627 #, gcc-internal-format, gfc-internal-format msgid "'%s' at %L overrides a FUNCTION and must also be a FUNCTION" msgstr "" -#: fortran/resolve.c:10492 +#: fortran/resolve.c:10638 #, gcc-internal-format, gfc-internal-format msgid "" "'%s' at %L and the overridden FUNCTION should have matching result types" msgstr "" -#: fortran/resolve.c:10503 +#: fortran/resolve.c:10649 #, gcc-internal-format, gfc-internal-format msgid "'%s' at %L overrides a PUBLIC procedure and must not be PRIVATE" msgstr "" -#: fortran/resolve.c:10532 +#: fortran/resolve.c:10678 #, gcc-internal-format, gfc-internal-format msgid "" "Dummy argument '%s' of '%s' at %L should be named '%s' as to match the " "corresponding argument of the overridden procedure" msgstr "" -#: fortran/resolve.c:10545 +#: fortran/resolve.c:10691 #, gcc-internal-format, gfc-internal-format msgid "" "Types mismatch for dummy argument '%s' of '%s' %L in respect to the " "overridden procedure" msgstr "" -#: fortran/resolve.c:10555 +#: fortran/resolve.c:10701 #, gcc-internal-format, gfc-internal-format msgid "" "'%s' at %L must have the same number of formal arguments as the overridden " "procedure" msgstr "" -#: fortran/resolve.c:10564 +#: fortran/resolve.c:10710 #, gcc-internal-format, gfc-internal-format msgid "'%s' at %L overrides a NOPASS binding and must also be NOPASS" msgstr "" -#: fortran/resolve.c:10575 +#: fortran/resolve.c:10721 #, gcc-internal-format, gfc-internal-format msgid "'%s' at %L overrides a binding with PASS and must also be PASS" msgstr "" -#: fortran/resolve.c:10582 +#: fortran/resolve.c:10728 #, gcc-internal-format, gfc-internal-format msgid "" "Passed-object dummy argument of '%s' at %L must be at the same position as " "the passed-object dummy argument of the overridden procedure" msgstr "" -#: fortran/resolve.c:10616 +#: fortran/resolve.c:10762 #, gcc-internal-format, gfc-internal-format msgid "'%s' and '%s' can't be mixed FUNCTION/SUBROUTINE for GENERIC '%s' at %L" msgstr "" -#: fortran/resolve.c:10625 +#: fortran/resolve.c:10771 #, gcc-internal-format, gfc-internal-format msgid "'%s' and '%s' for GENERIC '%s' at %L are ambiguous" msgstr "" -#: fortran/resolve.c:10684 +#: fortran/resolve.c:10830 #, gcc-internal-format, gfc-internal-format msgid "Undefined specific binding '%s' as target of GENERIC '%s' at %L" msgstr "" -#: fortran/resolve.c:10696 +#: fortran/resolve.c:10842 #, gcc-internal-format, gfc-internal-format msgid "GENERIC '%s' at %L must target a specific binding, '%s' is GENERIC, too" msgstr "" -#: fortran/resolve.c:10726 +#: fortran/resolve.c:10872 #, gcc-internal-format, gfc-internal-format msgid "GENERIC '%s' at %L can't overwrite specific binding with the same name" msgstr "" -#: fortran/resolve.c:10782 +#: fortran/resolve.c:10928 #, gcc-internal-format, gfc-internal-format msgid "Type-bound operator at %L can't be NOPASS" msgstr "" -#: fortran/resolve.c:10945 +#: fortran/resolve.c:11091 #, gcc-internal-format, gfc-internal-format msgid "" "'%s' must be a module procedure or an external procedure with an explicit " "interface at %L" msgstr "" -#: fortran/resolve.c:10982 +#: fortran/resolve.c:11128 #, gcc-internal-format, gfc-internal-format msgid "Procedure '%s' with PASS(%s) at %L has no argument '%s'" msgstr "" -#: fortran/resolve.c:10996 +#: fortran/resolve.c:11142 #, gcc-internal-format, gfc-internal-format msgid "Procedure '%s' with PASS at %L must have at least one argument" msgstr "" -#: fortran/resolve.c:11010 fortran/resolve.c:11464 +#: fortran/resolve.c:11156 fortran/resolve.c:11610 #, gcc-internal-format, gfc-internal-format msgid "Non-polymorphic passed-object dummy argument of '%s' at %L" msgstr "" -#: fortran/resolve.c:11018 +#: fortran/resolve.c:11164 #, gcc-internal-format, gfc-internal-format msgid "" "Argument '%s' of '%s' with PASS(%s) at %L must be of the derived-type '%s'" msgstr "" -#: fortran/resolve.c:11027 +#: fortran/resolve.c:11173 #, gcc-internal-format, gfc-internal-format msgid "Passed-object dummy argument of '%s' at %L must be scalar" msgstr "" -#: fortran/resolve.c:11033 +#: fortran/resolve.c:11179 #, gcc-internal-format, gfc-internal-format msgid "Passed-object dummy argument of '%s' at %L must not be ALLOCATABLE" msgstr "" -#: fortran/resolve.c:11039 +#: fortran/resolve.c:11185 #, gcc-internal-format, gfc-internal-format msgid "Passed-object dummy argument of '%s' at %L must not be POINTER" msgstr "" -#: fortran/resolve.c:11065 +#: fortran/resolve.c:11211 #, gcc-internal-format, gfc-internal-format msgid "Procedure '%s' at %L has the same name as a component of '%s'" msgstr "" -#: fortran/resolve.c:11074 +#: fortran/resolve.c:11220 #, gcc-internal-format, gfc-internal-format msgid "" "Procedure '%s' at %L has the same name as an inherited component of '%s'" msgstr "" -#: fortran/resolve.c:11164 +#: fortran/resolve.c:11310 #, gcc-internal-format, gfc-internal-format msgid "" "Derived-type '%s' declared at %L must be ABSTRACT because '%s' is DEFERRED " "and not overridden" msgstr "" -#: fortran/resolve.c:11233 +#: fortran/resolve.c:11379 #, gcc-internal-format, gfc-internal-format msgid "" "As extending type '%s' at %L has a coarray component, parent type '%s' shall " "also have one" msgstr "" -#: fortran/resolve.c:11246 +#: fortran/resolve.c:11392 #, gcc-internal-format, gfc-internal-format msgid "Non-extensible derived-type '%s' at %L must not be ABSTRACT" msgstr "" -#: fortran/resolve.c:11257 +#: fortran/resolve.c:11403 #, gcc-internal-format, gfc-internal-format msgid "Coarray component '%s' at %L must be allocatable with deferred shape" msgstr "" -#: fortran/resolve.c:11266 +#: fortran/resolve.c:11412 #, gcc-internal-format, gfc-internal-format msgid "" "Component '%s' at %L of TYPE(C_PTR) or TYPE(C_FUNPTR) shall not be a coarray" msgstr "" -#: fortran/resolve.c:11276 +#: fortran/resolve.c:11422 #, gcc-internal-format, gfc-internal-format msgid "" "Component '%s' at %L with coarray component shall be a nonpointer, " "nonallocatable scalar" msgstr "" -#: fortran/resolve.c:11285 +#: fortran/resolve.c:11431 #, gcc-internal-format, gfc-internal-format msgid "" "Component '%s' at %L has the CONTIGUOUS attribute but is not an array pointer" msgstr "" -#: fortran/resolve.c:11293 +#: fortran/resolve.c:11439 #, gcc-internal-format, gfc-internal-format msgid "" "Interface '%s', used by procedure pointer component '%s' at %L, is declared " "in a later PROCEDURE statement" msgstr "" -#: fortran/resolve.c:11358 +#: fortran/resolve.c:11504 #, gcc-internal-format, gfc-internal-format msgid "" "Interface '%s' of procedure pointer component '%s' at %L must be explicit" msgstr "" -#: fortran/resolve.c:11398 +#: fortran/resolve.c:11544 #, gcc-internal-format, gfc-internal-format msgid "" "Procedure pointer component '%s' with PASS(%s) at %L has no argument '%s'" msgstr "" -#: fortran/resolve.c:11412 +#: fortran/resolve.c:11558 #, gcc-internal-format, gfc-internal-format msgid "" "Procedure pointer component '%s' with PASS at %L must have at least one " "argument" msgstr "" -#: fortran/resolve.c:11428 +#: fortran/resolve.c:11574 #, gcc-internal-format, gfc-internal-format msgid "" "Argument '%s' of '%s' with PASS(%s) at %L must be of the derived type '%s'" msgstr "" -#: fortran/resolve.c:11438 +#: fortran/resolve.c:11584 #, gcc-internal-format, gfc-internal-format msgid "Argument '%s' of '%s' with PASS(%s) at %L must be scalar" msgstr "" -#: fortran/resolve.c:11447 +#: fortran/resolve.c:11593 #, gcc-internal-format, gfc-internal-format msgid "" "Argument '%s' of '%s' with PASS(%s) at %L may not have the POINTER attribute" msgstr "" -#: fortran/resolve.c:11456 +#: fortran/resolve.c:11602 #, gcc-internal-format, gfc-internal-format msgid "Argument '%s' of '%s' with PASS(%s) at %L may not be ALLOCATABLE" msgstr "" -#: fortran/resolve.c:11485 +#: fortran/resolve.c:11631 #, gcc-internal-format, gfc-internal-format msgid "" "Component '%s' of '%s' at %L has the same name as an inherited type-bound " "procedure" msgstr "" -#: fortran/resolve.c:11497 +#: fortran/resolve.c:11644 #, gcc-internal-format, gfc-internal-format msgid "" "Character length of component '%s' needs to be a constant specification " "expression at %L" msgstr "" -#: fortran/resolve.c:11512 +#: fortran/resolve.c:11655 +#, gcc-internal-format, gfc-internal-format +msgid "" +"Character component '%s' of '%s' at %L with deferred length must be a " +"POINTER or ALLOCATABLE" +msgstr "" + +#: fortran/resolve.c:11667 #, gcc-internal-format, gfc-internal-format msgid "" "Fortran 2003: the component '%s' is a PRIVATE type and cannot be a component " "of '%s', which is PUBLIC at %L" msgstr "" -#: fortran/resolve.c:11520 +#: fortran/resolve.c:11675 #, gcc-internal-format, gfc-internal-format msgid "Polymorphic component %s at %L in SEQUENCE or BIND(C) type %s" msgstr "" -#: fortran/resolve.c:11529 +#: fortran/resolve.c:11684 #, gcc-internal-format, gfc-internal-format msgid "" "Component %s of SEQUENCE type declared at %L does not have the SEQUENCE " "attribute" msgstr "" -#: fortran/resolve.c:11540 fortran/resolve.c:11550 +#: fortran/resolve.c:11695 fortran/resolve.c:11705 #, gcc-internal-format, gfc-internal-format msgid "" "The pointer component '%s' of '%s' at %L is a type that has not been declared" msgstr "" -#: fortran/resolve.c:11561 +#: fortran/resolve.c:11716 #, gcc-internal-format, gfc-internal-format msgid "Component '%s' with CLASS at %L must be allocatable or pointer" msgstr "" -#: fortran/resolve.c:11614 +#: fortran/resolve.c:11771 +#, gcc-internal-format, gfc-internal-format +msgid "Assumed size array '%s' in namelist '%s' at %L is not allowed" +msgstr "" + +#: fortran/resolve.c:11777 #, gcc-internal-format, gfc-internal-format msgid "" -"NAMELIST array object '%s' must not have assumed shape in namelist '%s' at %L" +"Fortran 2003: NAMELIST array object '%s' with assumed shape in namelist '%s' " +"at %L" msgstr "" -#: fortran/resolve.c:11623 +#: fortran/resolve.c:11784 #, gcc-internal-format, gfc-internal-format msgid "" -"NAMELIST array object '%s' must have constant shape in namelist '%s' at %L" +"Fortran 2003: NAMELIST array object '%s' with nonconstant shape in namelist " +"'%s' at %L" msgstr "" -#: fortran/resolve.c:11635 +#: fortran/resolve.c:11793 #, gcc-internal-format, gfc-internal-format msgid "" -"NAMELIST object '%s' in namelist '%s' at %L cannot have ALLOCATABLE " -"components" +"Fortran 2003: NAMELIST object '%s' with nonconstant character length in " +"namelist '%s' at %L" msgstr "" -#: fortran/resolve.c:11643 +#: fortran/resolve.c:11803 #, gcc-internal-format, gfc-internal-format msgid "" -"NAMELIST object '%s' in namelist '%s' at %L cannot have POINTER components" +"NAMELIST object '%s' in namelist '%s' at %L is polymorphic and requires a " +"defined input/output procedure" msgstr "" -#: fortran/resolve.c:11660 +#: fortran/resolve.c:11813 +#, gcc-internal-format, gfc-internal-format +msgid "" +"Fortran 2003: NAMELIST object '%s' in namelist '%s' at %L with ALLOCATABLE " +"or POINTER components" +msgstr "" + +#. FIXME: Once UDDTIO is implemented, the following can be +#. removed. +#: fortran/resolve.c:11821 +#, gcc-internal-format, gfc-internal-format +msgid "" +"NAMELIST object '%s' in namelist '%s' at %L has ALLOCATABLE or POINTER " +"components and thus requires a defined input/output procedure" +msgstr "" + +#: fortran/resolve.c:11838 #, gcc-internal-format, gfc-internal-format msgid "" "NAMELIST object '%s' was declared PRIVATE and cannot be member of PUBLIC " "namelist '%s' at %L" msgstr "" -#: fortran/resolve.c:11670 +#: fortran/resolve.c:11848 #, gcc-internal-format, gfc-internal-format msgid "" "NAMELIST object '%s' has use-associated PRIVATE components and cannot be " "member of namelist '%s' at %L" msgstr "" -#: fortran/resolve.c:11683 +#: fortran/resolve.c:11859 #, gcc-internal-format, gfc-internal-format msgid "" "NAMELIST object '%s' has PRIVATE components and cannot be a member of PUBLIC " "namelist '%s' at %L" msgstr "" -#: fortran/resolve.c:11710 +#: fortran/resolve.c:11886 #, gcc-internal-format, gfc-internal-format msgid "PROCEDURE attribute conflicts with NAMELIST attribute in '%s' at %L" msgstr "" -#: fortran/resolve.c:11729 +#: fortran/resolve.c:11905 #, gcc-internal-format, gfc-internal-format msgid "Parameter array '%s' at %L cannot be automatic or of deferred shape" msgstr "" -#: fortran/resolve.c:11741 +#: fortran/resolve.c:11917 #, gcc-internal-format, gfc-internal-format msgid "" "Implicitly typed PARAMETER '%s' at %L doesn't match a later IMPLICIT type" msgstr "" -#: fortran/resolve.c:11752 +#: fortran/resolve.c:11928 #, gcc-internal-format, gfc-internal-format msgid "Incompatible derived type in PARAMETER at %L" msgstr "" -#: fortran/resolve.c:11824 +#: fortran/resolve.c:12000 #, gcc-internal-format, gfc-internal-format msgid "PROTECTED attribute conflicts with EXTERNAL attribute at %L" msgstr "" -#: fortran/resolve.c:11827 +#: fortran/resolve.c:12003 #, gcc-internal-format, gfc-internal-format msgid "PROCEDURE attribute conflicts with PROTECTED attribute at %L" msgstr "" -#: fortran/resolve.c:11839 +#: fortran/resolve.c:12015 #, gcc-internal-format, gfc-internal-format msgid "" "'%s' at %L has the CONTIGUOUS attribute but is not an array pointer or an " "assumed-shape array" msgstr "" -#: fortran/resolve.c:11913 +#: fortran/resolve.c:12089 #, gcc-internal-format, gfc-internal-format msgid "Assumed size array at %L must be a dummy argument" msgstr "" -#: fortran/resolve.c:11916 +#: fortran/resolve.c:12092 #, gcc-internal-format, gfc-internal-format msgid "Assumed shape array at %L must be a dummy argument" msgstr "" -#: fortran/resolve.c:11929 +#: fortran/resolve.c:12105 #, gcc-internal-format, gfc-internal-format msgid "Symbol at %L is not a DUMMY variable" msgstr "" -#: fortran/resolve.c:11935 +#: fortran/resolve.c:12111 #, gcc-internal-format, gfc-internal-format msgid "" "'%s' at %L cannot have the VALUE attribute because it is not a dummy argument" msgstr "" -#: fortran/resolve.c:11945 +#: fortran/resolve.c:12121 #, gcc-internal-format, gfc-internal-format msgid "" "Character dummy variable '%s' at %L with VALUE attribute must have constant " "length" msgstr "" -#: fortran/resolve.c:11954 +#: fortran/resolve.c:12130 #, gcc-internal-format, gfc-internal-format msgid "" "C interoperable character dummy variable '%s' at %L with VALUE attribute " "must have length one" msgstr "" -#: fortran/resolve.c:11980 +#: fortran/resolve.c:12156 #, gcc-internal-format, gfc-internal-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:12033 +#: fortran/resolve.c:12209 #, gcc-internal-format, gfc-internal-format msgid "The derived type '%s' at %L is of type '%s', which has not been defined" msgstr "" -#: fortran/resolve.c:12074 +#: fortran/resolve.c:12248 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: PUBLIC %s '%s' at %L of PRIVATE derived type '%s'" msgstr "" -#: fortran/resolve.c:12093 +#: fortran/resolve.c:12267 #, gcc-internal-format, gfc-internal-format msgid "" "The INTENT(OUT) dummy argument '%s' at %L is ASSUMED SIZE and so cannot have " "a default initializer" msgstr "" -#: fortran/resolve.c:12105 +#: fortran/resolve.c:12279 #, gcc-internal-format, gfc-internal-format msgid "" "Function result '%s' at %L shall not be a coarray or have a coarray component" msgstr "" -#: fortran/resolve.c:12111 +#: fortran/resolve.c:12285 #, gcc-internal-format, gfc-internal-format msgid "" "Variable '%s' at %L of TYPE(C_PTR) or TYPE(C_FUNPTR) shall not be a coarray" msgstr "" -#: fortran/resolve.c:12118 +#: fortran/resolve.c:12292 #, gcc-internal-format, gfc-internal-format msgid "" "Variable '%s' at %L with coarray component shall be a nonpointer, " "nonallocatable scalar" msgstr "" -#: fortran/resolve.c:12129 +#: fortran/resolve.c:12303 #, gcc-internal-format, gfc-internal-format msgid "" "Variable '%s' at %L is a coarray or has a coarray component and is not " "ALLOCATABLE, SAVE nor a dummy argument" msgstr "" -#: fortran/resolve.c:12135 +#: fortran/resolve.c:12309 #, gcc-internal-format, gfc-internal-format msgid "" "Coarray variable '%s' at %L shall not have codimensions with deferred shape" msgstr "" -#: fortran/resolve.c:12139 +#: fortran/resolve.c:12313 #, gcc-internal-format, gfc-internal-format msgid "Allocatable coarray variable '%s' at %L must have deferred shape" msgstr "" -#: fortran/resolve.c:12147 +#: fortran/resolve.c:12321 #, gcc-internal-format, gfc-internal-format msgid "" "Variable '%s' at %L is INTENT(OUT) and can thus not be an allocatable " "coarray or have coarray components" msgstr "" -#: fortran/resolve.c:12153 +#: fortran/resolve.c:12327 #, gcc-internal-format, gfc-internal-format msgid "Coarray dummy variable '%s' at %L not allowed in BIND(C) procedure '%s'" msgstr "" -#: fortran/resolve.c:12223 +#: fortran/resolve.c:12397 #, gcc-internal-format, gfc-internal-format msgid "Threadprivate at %L isn't SAVEd" msgstr "" -#: fortran/resolve.c:12317 +#: fortran/resolve.c:12491 #, gcc-internal-format, gfc-internal-format msgid "BLOCK DATA element '%s' at %L must be in COMMON" msgstr "" -#: fortran/resolve.c:12323 +#: fortran/resolve.c:12497 #, gcc-internal-format, gfc-internal-format msgid "DATA array '%s' at %L must be specified in a previous declaration" msgstr "" -#: fortran/resolve.c:12337 +#: fortran/resolve.c:12511 #, gcc-internal-format, gfc-internal-format msgid "DATA element '%s' at %L cannot have a coindex" msgstr "" -#: fortran/resolve.c:12346 +#: fortran/resolve.c:12520 #, gcc-internal-format, gfc-internal-format msgid "DATA element '%s' at %L is a pointer and so must be a full array" msgstr "" -#: fortran/resolve.c:12392 +#: fortran/resolve.c:12566 #, gcc-internal-format, gfc-internal-format msgid "Nonconstant array section at %L in DATA statement" msgstr "" -#: fortran/resolve.c:12405 +#: fortran/resolve.c:12579 #, gcc-internal-format, gfc-internal-format msgid "DATA statement at %L has more variables than values" msgstr "" -#: fortran/resolve.c:12503 +#: fortran/resolve.c:12677 #, gcc-internal-format, gfc-internal-format msgid "" "start of implied-do loop at %L could not be simplified to a constant value" msgstr "" -#: fortran/resolve.c:12511 +#: fortran/resolve.c:12685 #, gcc-internal-format, gfc-internal-format msgid "" "end of implied-do loop at %L could not be simplified to a constant value" msgstr "" -#: fortran/resolve.c:12519 +#: fortran/resolve.c:12693 #, gcc-internal-format, gfc-internal-format msgid "" "step of implied-do loop at %L could not be simplified to a constant value" msgstr "" -#: fortran/resolve.c:12644 +#: fortran/resolve.c:12818 #, gcc-internal-format, gfc-internal-format msgid "DATA statement at %L has more values than variables" msgstr "" -#: fortran/resolve.c:12754 +#: fortran/resolve.c:12956 #, gcc-internal-format, gfc-internal-format msgid "Label %d at %L defined but not used" msgstr "" -#: fortran/resolve.c:12759 +#: fortran/resolve.c:12961 #, gcc-internal-format, gfc-internal-format msgid "Label %d at %L defined but cannot be used" msgstr "" -#: fortran/resolve.c:12843 +#: fortran/resolve.c:13045 #, gcc-internal-format, gfc-internal-format msgid "" "Derived type variable '%s' at %L must have SEQUENCE attribute to be an " "EQUIVALENCE object" msgstr "" -#: fortran/resolve.c:12852 +#: fortran/resolve.c:13054 #, gcc-internal-format, gfc-internal-format msgid "" "Derived type variable '%s' at %L cannot have ALLOCATABLE components to be an " "EQUIVALENCE object" msgstr "" -#: fortran/resolve.c:12860 +#: fortran/resolve.c:13062 #, gcc-internal-format, gfc-internal-format msgid "" "Derived type variable '%s' at %L with default initialization cannot be in " "EQUIVALENCE with a variable in COMMON" msgstr "" -#: fortran/resolve.c:12876 +#: fortran/resolve.c:13078 #, gcc-internal-format, gfc-internal-format msgid "" "Derived type variable '%s' at %L with pointer component(s) cannot be an " "EQUIVALENCE object" msgstr "" -#: fortran/resolve.c:12979 +#: fortran/resolve.c:13181 #, gcc-internal-format, gfc-internal-format msgid "Syntax error in EQUIVALENCE statement at %L" msgstr "" -#: fortran/resolve.c:12994 +#: fortran/resolve.c:13196 #, gcc-internal-format, gfc-internal-format msgid "" "Either all or none of the objects in the EQUIVALENCE set at %L shall have " "the PROTECTED attribute" msgstr "" -#: fortran/resolve.c:13006 +#: fortran/resolve.c:13208 #, gcc-internal-format, gfc-internal-format msgid "" "Common block member '%s' at %L cannot be an EQUIVALENCE object in the pure " "procedure '%s'" msgstr "" -#: fortran/resolve.c:13015 +#: fortran/resolve.c:13217 #, gcc-internal-format, gfc-internal-format msgid "Named constant '%s' at %L cannot be an EQUIVALENCE object" msgstr "" -#: fortran/resolve.c:13094 +#: fortran/resolve.c:13296 #, gcc-internal-format, gfc-internal-format msgid "" "Array '%s' at %L with non-constant bounds cannot be an EQUIVALENCE object" msgstr "" -#: fortran/resolve.c:13105 +#: fortran/resolve.c:13307 #, gcc-internal-format, gfc-internal-format msgid "Structure component '%s' at %L cannot be an EQUIVALENCE object" msgstr "" -#: fortran/resolve.c:13116 +#: fortran/resolve.c:13318 #, gcc-internal-format, gfc-internal-format msgid "Substring at %L has length zero" msgstr "" -#: fortran/resolve.c:13160 +#: fortran/resolve.c:13361 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: PUBLIC function '%s' at %L of PRIVATE type '%s'" msgstr "" -#: fortran/resolve.c:13173 +#: fortran/resolve.c:13374 #, gcc-internal-format, gfc-internal-format msgid "ENTRY '%s' at %L has no IMPLICIT type" msgstr "" -#: fortran/resolve.c:13190 +#: fortran/resolve.c:13391 #, gcc-internal-format, gfc-internal-format msgid "User operator procedure '%s' at %L must be a FUNCTION" msgstr "" -#: fortran/resolve.c:13200 +#: fortran/resolve.c:13401 #, gcc-internal-format, gfc-internal-format msgid "User operator procedure '%s' at %L cannot be assumed character length" msgstr "" -#: fortran/resolve.c:13208 +#: fortran/resolve.c:13409 #, gcc-internal-format, gfc-internal-format msgid "User operator procedure '%s' at %L must have at least one argument" msgstr "" -#: fortran/resolve.c:13222 +#: fortran/resolve.c:13423 #, gcc-internal-format, gfc-internal-format msgid "First argument of operator interface at %L cannot be optional" msgstr "" -#: fortran/resolve.c:13240 +#: fortran/resolve.c:13441 #, gcc-internal-format, gfc-internal-format msgid "Second argument of operator interface at %L cannot be optional" msgstr "" -#: fortran/resolve.c:13247 +#: fortran/resolve.c:13448 #, gcc-internal-format, gfc-internal-format msgid "Operator interface at %L must have, at most, two arguments" msgstr "" -#: fortran/resolve.c:13319 +#: fortran/resolve.c:13520 #, gcc-internal-format, gfc-internal-format msgid "Contained procedure '%s' at %L of a PURE procedure must also be PURE" msgstr "" @@ -41573,135 +41818,135 @@ msgstr "" msgid "Invalid SHIFT argument of DSHIFTL at %L" msgstr "" -#: fortran/simplify.c:2342 +#: fortran/simplify.c:2429 #, gcc-internal-format, gfc-internal-format msgid "Argument of IACHAR at %L must be of length one" msgstr "" -#: fortran/simplify.c:2349 +#: fortran/simplify.c:2436 #, gcc-internal-format, gfc-internal-format msgid "Argument of IACHAR function at %L outside of range 0..127" msgstr "" -#: fortran/simplify.c:2426 +#: fortran/simplify.c:2513 #, gcc-internal-format, gfc-internal-format msgid "Invalid second argument of IBCLR at %L" msgstr "" -#: fortran/simplify.c:2434 +#: fortran/simplify.c:2521 #, gcc-internal-format, gfc-internal-format msgid "Second argument of IBCLR exceeds bit size at %L" msgstr "" -#: fortran/simplify.c:2468 +#: fortran/simplify.c:2555 #, gcc-internal-format, gfc-internal-format msgid "Invalid second argument of IBITS at %L" msgstr "" -#: fortran/simplify.c:2474 +#: fortran/simplify.c:2561 #, gcc-internal-format, gfc-internal-format msgid "Invalid third argument of IBITS at %L" msgstr "" -#: fortran/simplify.c:2484 +#: fortran/simplify.c:2571 #, gcc-internal-format, gfc-internal-format msgid "Sum of second and third arguments of IBITS exceeds bit size at %L" msgstr "" -#: fortran/simplify.c:2531 +#: fortran/simplify.c:2618 #, gcc-internal-format, gfc-internal-format msgid "Invalid second argument of IBSET at %L" msgstr "" -#: fortran/simplify.c:2539 +#: fortran/simplify.c:2626 #, gcc-internal-format, gfc-internal-format msgid "Second argument of IBSET exceeds bit size at %L" msgstr "" -#: fortran/simplify.c:2570 +#: fortran/simplify.c:2657 #, gcc-internal-format, gfc-internal-format msgid "Argument of ICHAR at %L must be of length one" msgstr "" -#: fortran/simplify.c:2921 +#: fortran/simplify.c:3008 #, gcc-internal-format, gfc-internal-format msgid "Invalid second argument of %s at %L" msgstr "" #. Left shift, as in SHIFTL. -#: fortran/simplify.c:2939 fortran/simplify.c:2947 +#: fortran/simplify.c:3026 fortran/simplify.c:3034 #, gcc-internal-format, gfc-internal-format msgid "Second argument of %s is negative at %L" msgstr "" -#: fortran/simplify.c:2959 +#: fortran/simplify.c:3046 #, gcc-internal-format, gfc-internal-format msgid "Magnitude of second argument of %s exceeds bit size at %L" msgstr "" -#: fortran/simplify.c:3063 +#: fortran/simplify.c:3150 #, gcc-internal-format, gfc-internal-format msgid "Invalid second argument of ISHFTC at %L" msgstr "" -#: fortran/simplify.c:3077 +#: fortran/simplify.c:3164 #, gcc-internal-format, gfc-internal-format msgid "Invalid third argument of ISHFTC at %L" msgstr "" -#: fortran/simplify.c:3083 +#: fortran/simplify.c:3170 #, gcc-internal-format, gfc-internal-format msgid "" "Magnitude of third argument of ISHFTC exceeds BIT_SIZE of first argument at " "%L" msgstr "" -#: fortran/simplify.c:3099 +#: fortran/simplify.c:3186 #, gcc-internal-format, gfc-internal-format msgid "Magnitude of second argument of ISHFTC exceeds third argument at %L" msgstr "" -#: fortran/simplify.c:3102 +#: fortran/simplify.c:3189 #, gcc-internal-format, gfc-internal-format msgid "" "Magnitude of second argument of ISHFTC exceeds BIT_SIZE of first argument at " "%L" msgstr "" -#: fortran/simplify.c:3398 fortran/simplify.c:3529 fortran/simplify.c:6304 +#: fortran/simplify.c:3485 fortran/simplify.c:3616 fortran/simplify.c:6389 #, gcc-internal-format, gfc-internal-format msgid "DIM argument at %L is out of bounds" msgstr "" -#: fortran/simplify.c:3555 +#: fortran/simplify.c:3642 #, gcc-internal-format, gfc-internal-format msgid "" "Not yet implemented: LCOBOUND for coarray with non-constant cobounds at %L" msgstr "" -#: fortran/simplify.c:3709 +#: fortran/simplify.c:3796 #, gcc-internal-format, gfc-internal-format msgid "Argument of LOG at %L cannot be less than or equal to zero" msgstr "" -#: fortran/simplify.c:3722 +#: fortran/simplify.c:3809 #, gcc-internal-format, gfc-internal-format msgid "Complex argument of LOG at %L cannot be zero" msgstr "" -#: fortran/simplify.c:3750 +#: fortran/simplify.c:3837 #, gcc-internal-format, gfc-internal-format msgid "Argument of LOG10 at %L cannot be less than or equal to zero" msgstr "" #. Result is processor-dependent. -#: fortran/simplify.c:4198 +#: fortran/simplify.c:4285 #, gcc-internal-format, gfc-internal-format msgid "Second argument MOD at %L is zero" msgstr "" #. Result is processor-dependent. -#: fortran/simplify.c:4209 +#: fortran/simplify.c:4296 #, gcc-internal-format, gfc-internal-format msgid "Second argument of MOD at %L is zero" msgstr "" @@ -41709,91 +41954,91 @@ msgstr "" #. Result is processor-dependent. This processor just opts #. to not handle it at all. #. Result is processor-dependent. -#: fortran/simplify.c:4251 fortran/simplify.c:4263 +#: fortran/simplify.c:4338 fortran/simplify.c:4350 #, gcc-internal-format, gfc-internal-format msgid "Second argument of MODULO at %L is zero" msgstr "" -#: fortran/simplify.c:4309 +#: fortran/simplify.c:4396 #, gcc-internal-format, gfc-internal-format msgid "Second argument of NEAREST at %L shall not be zero" msgstr "" -#: fortran/simplify.c:4345 +#: fortran/simplify.c:4432 #, gcc-internal-format, gfc-internal-format msgid "Result of NEAREST is NaN at %L" msgstr "" -#: fortran/simplify.c:4799 +#: fortran/simplify.c:4886 #, gcc-internal-format, gfc-internal-format msgid "Argument NCOPIES of REPEAT intrinsic is negative at %L" msgstr "" -#: fortran/simplify.c:4854 +#: fortran/simplify.c:4941 #, gcc-internal-format, gfc-internal-format msgid "Argument NCOPIES of REPEAT intrinsic is too large at %L" msgstr "" -#: fortran/simplify.c:5106 +#: fortran/simplify.c:5193 #, gcc-internal-format, gfc-internal-format msgid "Result of SCALE overflows its kind at %L" msgstr "" -#: fortran/simplify.c:5818 +#: fortran/simplify.c:5903 #, gcc-internal-format, gfc-internal-format msgid "Argument of SQRT at %L has a negative value" msgstr "" -#: fortran/simplify.c:6015 +#: fortran/simplify.c:6100 #, gcc-internal-format, gfc-internal-format msgid "" "Intrinsic TRANSFER at %L has partly undefined result: source size %ld < " "result size %ld" msgstr "" -#: fortran/simplify.c:6136 +#: fortran/simplify.c:6221 #, gcc-internal-format, gfc-internal-format msgid "Too few elements in expression for SUB= argument at %L" msgstr "" -#: fortran/simplify.c:6162 +#: fortran/simplify.c:6247 #, gcc-internal-format, gfc-internal-format msgid "" "Out of bounds in IMAGE_INDEX at %L for dimension %d, SUB has %ld and COARRAY " "lower bound is %ld)" msgstr "" -#: fortran/simplify.c:6185 +#: fortran/simplify.c:6270 #, gcc-internal-format, gfc-internal-format msgid "" "Out of bounds in IMAGE_INDEX at %L for dimension %d, SUB has %ld and COARRAY " "upper bound is %ld)" msgstr "" -#: fortran/simplify.c:6203 +#: fortran/simplify.c:6288 #, gcc-internal-format, gfc-internal-format msgid "Too many elements in expression for SUB= argument at %L" msgstr "" -#: fortran/simplify.c:6218 +#: fortran/simplify.c:6303 #, gcc-internal-format, gfc-internal-format msgid "" "Not yet implemented: IMAGE_INDEX for coarray with non-constant cobounds at %L" msgstr "" -#: fortran/simplify.c:6317 +#: fortran/simplify.c:6402 #, gcc-internal-format, gfc-internal-format msgid "" "Not yet implemented: THIS_IMAGE for coarray with non-constant cobounds at %L" msgstr "" -#: fortran/simplify.c:6339 +#: fortran/simplify.c:6424 #, gcc-internal-format, gfc-internal-format msgid "" "Not yet implemented: UCOBOUND for coarray with non-constant cobounds at %L" msgstr "" -#: fortran/simplify.c:6696 +#: fortran/simplify.c:6781 #, gcc-internal-format, gfc-internal-format msgid "" "Character '%s' in string at %L cannot be converted into character kind %d" @@ -41845,277 +42090,277 @@ msgstr "" msgid "Function result '%s' at %L has no IMPLICIT type" msgstr "" -#: fortran/symbol.c:416 +#: fortran/symbol.c:424 #, gcc-internal-format, gfc-internal-format msgid "%s attribute not allowed in BLOCK DATA program unit at %L" msgstr "" -#: fortran/symbol.c:471 +#: fortran/symbol.c:479 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: Procedure pointer at %C" msgstr "" -#: fortran/symbol.c:636 +#: fortran/symbol.c:641 #, gcc-internal-format, gfc-internal-format msgid "%s attribute applied to %s %s at %L" msgstr "" -#: fortran/symbol.c:643 +#: fortran/symbol.c:648 #, gcc-internal-format, gfc-internal-format msgid "BIND(C) applied to %s %s at %L" msgstr "" -#: fortran/symbol.c:751 fortran/symbol.c:1471 +#: fortran/symbol.c:756 fortran/symbol.c:1479 #, gcc-internal-format, gfc-internal-format msgid "%s attribute conflicts with %s attribute at %L" msgstr "" -#: fortran/symbol.c:754 +#: fortran/symbol.c:759 #, gcc-internal-format, gfc-internal-format msgid "%s attribute conflicts with %s attribute in '%s' at %L" msgstr "" -#: fortran/symbol.c:762 +#: fortran/symbol.c:767 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: %s attribute with %s attribute at %L" msgstr "" -#: fortran/symbol.c:768 +#: fortran/symbol.c:773 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: %s attribute with %s attribute in '%s' at %L" msgstr "" -#: fortran/symbol.c:812 +#: fortran/symbol.c:817 #, gcc-internal-format, gfc-internal-format msgid "Cannot change attributes of USE-associated symbol at %L" msgstr "" -#: fortran/symbol.c:815 +#: fortran/symbol.c:820 #, gcc-internal-format, gfc-internal-format msgid "Cannot change attributes of USE-associated symbol %s at %L" msgstr "" -#: fortran/symbol.c:831 +#: fortran/symbol.c:836 #, gcc-internal-format, gfc-internal-format msgid "Duplicate %s attribute specified at %L" msgstr "" -#: fortran/symbol.c:873 +#: fortran/symbol.c:878 #, gcc-internal-format, gfc-internal-format msgid "ALLOCATABLE specified outside of INTERFACE body at %L" msgstr "" -#: fortran/symbol.c:899 +#: fortran/symbol.c:904 #, gcc-internal-format, gfc-internal-format msgid "CODIMENSION specified for '%s' outside its INTERFACE body at %L" msgstr "" -#: fortran/symbol.c:925 +#: fortran/symbol.c:930 #, gcc-internal-format, gfc-internal-format msgid "DIMENSION specified for '%s' outside its INTERFACE body at %L" msgstr "" -#: fortran/symbol.c:1055 +#: fortran/symbol.c:1060 #, gcc-internal-format, gfc-internal-format msgid "Cray Pointee at %L appears in multiple pointer() statements" msgstr "" -#: fortran/symbol.c:1074 +#: fortran/symbol.c:1079 #, gcc-internal-format, gfc-internal-format msgid "Duplicate PROTECTED attribute specified at %L" msgstr "" -#: fortran/symbol.c:1108 +#: fortran/symbol.c:1113 #, gcc-internal-format, gfc-internal-format msgid "SAVE attribute at %L cannot be specified in a PURE procedure" msgstr "" -#: fortran/symbol.c:1116 +#: fortran/symbol.c:1124 #, gcc-internal-format, gfc-internal-format msgid "Duplicate SAVE attribute specified at %L" msgstr "" -#: fortran/symbol.c:1137 +#: fortran/symbol.c:1145 #, gcc-internal-format, gfc-internal-format msgid "Duplicate VALUE attribute specified at %L" msgstr "" -#: fortran/symbol.c:1157 +#: fortran/symbol.c:1165 #, gcc-internal-format, gfc-internal-format msgid "Duplicate VOLATILE attribute specified at %L" msgstr "" -#: fortran/symbol.c:1176 +#: fortran/symbol.c:1184 #, gcc-internal-format, gfc-internal-format msgid "Duplicate ASYNCHRONOUS attribute specified at %L" msgstr "" -#: fortran/symbol.c:1467 +#: fortran/symbol.c:1475 #, gcc-internal-format, gfc-internal-format msgid "%s attribute of '%s' conflicts with %s attribute at %L" msgstr "" -#: fortran/symbol.c:1501 +#: fortran/symbol.c:1509 #, gcc-internal-format, gfc-internal-format msgid "%s procedure at %L is already declared as %s procedure" msgstr "" -#: fortran/symbol.c:1536 +#: fortran/symbol.c:1544 #, gcc-internal-format, gfc-internal-format msgid "INTENT (%s) conflicts with INTENT(%s) at %L" msgstr "" -#: fortran/symbol.c:1560 +#: fortran/symbol.c:1568 #, gcc-internal-format, gfc-internal-format msgid "ACCESS specification at %L was already specified" msgstr "" -#: fortran/symbol.c:1577 +#: fortran/symbol.c:1585 #, gcc-internal-format, gfc-internal-format msgid "Duplicate BIND attribute specified at %L" msgstr "" -#: fortran/symbol.c:1584 +#: fortran/symbol.c:1592 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: BIND(C) at %L" msgstr "" -#: fortran/symbol.c:1601 +#: fortran/symbol.c:1609 #, gcc-internal-format, gfc-internal-format msgid "Duplicate EXTENDS attribute specified at %L" msgstr "" -#: fortran/symbol.c:1605 +#: fortran/symbol.c:1613 #, gcc-internal-format, gfc-internal-format msgid "Fortran 2003: EXTENDS at %L" msgstr "" -#: fortran/symbol.c:1627 +#: fortran/symbol.c:1635 #, gcc-internal-format, gfc-internal-format msgid "Symbol '%s' at %L already has an explicit interface" msgstr "" -#: fortran/symbol.c:1634 +#: fortran/symbol.c:1642 #, gcc-internal-format, gfc-internal-format msgid "'%s' at %L has attributes specified outside its INTERFACE body" msgstr "" -#: fortran/symbol.c:1667 +#: fortran/symbol.c:1675 #, gcc-internal-format, gfc-internal-format msgid "Symbol '%s' at %L already has basic type of %s" msgstr "" -#: fortran/symbol.c:1674 +#: fortran/symbol.c:1682 #, gcc-internal-format, gfc-internal-format msgid "Procedure '%s' at %L may not have basic type of %s" msgstr "" -#: fortran/symbol.c:1686 +#: fortran/symbol.c:1694 #, gcc-internal-format, gfc-internal-format msgid "Symbol '%s' at %L cannot have a type" msgstr "" -#: fortran/symbol.c:1855 +#: fortran/symbol.c:1863 #, gcc-internal-format, gfc-internal-format msgid "Component '%s' at %C already declared at %L" msgstr "" -#: fortran/symbol.c:1866 +#: fortran/symbol.c:1874 #, gcc-internal-format, gfc-internal-format msgid "Component '%s' at %C already in the parent type at %L" msgstr "" -#: fortran/symbol.c:1942 +#: fortran/symbol.c:1950 #, gcc-internal-format, gfc-internal-format msgid "Symbol '%s' at %C is ambiguous" msgstr "" -#: fortran/symbol.c:1974 +#: fortran/symbol.c:1982 #, gcc-internal-format, gfc-internal-format msgid "Derived type '%s' at %C is being used before it is defined" msgstr "" -#: fortran/symbol.c:2015 +#: fortran/symbol.c:2023 #, gcc-internal-format, gfc-internal-format msgid "'%s' at %C is not a member of the '%s' structure" msgstr "" -#: fortran/symbol.c:2027 +#: fortran/symbol.c:2035 #, gcc-internal-format, gfc-internal-format msgid "Component '%s' at %C is a PRIVATE component of '%s'" msgstr "" -#: fortran/symbol.c:2166 +#: fortran/symbol.c:2174 #, gcc-internal-format, gfc-internal-format msgid "Duplicate statement label %d at %L and %L" msgstr "" -#: fortran/symbol.c:2176 +#: fortran/symbol.c:2184 #, gcc-internal-format, gfc-internal-format msgid "Label %d at %C already referenced as branch target" msgstr "" -#: fortran/symbol.c:2185 +#: fortran/symbol.c:2193 #, gcc-internal-format, gfc-internal-format msgid "Label %d at %C already referenced as a format label" msgstr "" -#: fortran/symbol.c:2227 +#: fortran/symbol.c:2235 #, gcc-internal-format, gfc-internal-format msgid "Label %d at %C previously used as a FORMAT label" msgstr "" -#: fortran/symbol.c:2235 +#: fortran/symbol.c:2243 #, gcc-internal-format, gfc-internal-format msgid "Label %d at %C previously used as branch target" msgstr "" -#: fortran/symbol.c:2577 +#: fortran/symbol.c:2556 #, gcc-internal-format, gfc-internal-format msgid "Name '%s' at %C is an ambiguous reference to '%s' from module '%s'" msgstr "" -#: fortran/symbol.c:2580 +#: fortran/symbol.c:2559 #, gcc-internal-format, gfc-internal-format msgid "" "Name '%s' at %C is an ambiguous reference to '%s' from current program unit" msgstr "" #. Symbol is from another namespace. -#: fortran/symbol.c:2760 +#: fortran/symbol.c:2739 #, gcc-internal-format, gfc-internal-format msgid "Symbol '%s' at %C has already been host associated" msgstr "" -#: fortran/symbol.c:3597 +#: fortran/symbol.c:3541 #, gcc-internal-format, gfc-internal-format msgid "" "Derived type '%s' declared at %L must have the BIND attribute to be C " "interoperable" msgstr "" -#: fortran/symbol.c:3615 +#: fortran/symbol.c:3559 #, gcc-internal-format, gfc-internal-format msgid "" "Derived type '%s' with BIND(C) attribute at %L is empty, and may be " "inaccessible by the C companion processor" msgstr "" -#: fortran/symbol.c:3636 +#: fortran/symbol.c:3580 #, gcc-internal-format, gfc-internal-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:3646 +#: fortran/symbol.c:3590 #, gcc-internal-format, gfc-internal-format msgid "" "Procedure pointer component '%s' at %L cannot be a member of the BIND(C) " "derived type '%s' at %L" msgstr "" -#: fortran/symbol.c:3657 +#: fortran/symbol.c:3601 #, gcc-internal-format, gfc-internal-format msgid "" "Component '%s' at %L cannot have the ALLOCATABLE attribute because it is a " @@ -42124,7 +42369,7 @@ msgstr "" #. If the derived type is bind(c), all fields must be #. interop. -#: fortran/symbol.c:3695 +#: fortran/symbol.c:3639 #, gcc-internal-format, gfc-internal-format msgid "" "Component '%s' in derived type '%s' at %L may not be C interoperable, even " @@ -42134,64 +42379,64 @@ 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:3704 +#: fortran/symbol.c:3648 #, gcc-internal-format, gfc-internal-format msgid "Component '%s' in derived type '%s' at %L may not be C interoperable" msgstr "" -#: fortran/symbol.c:3718 +#: fortran/symbol.c:3662 #, gcc-internal-format, gfc-internal-format msgid "" "Derived type '%s' at %L cannot be declared with both PRIVATE and BIND(C) " "attributes" msgstr "" -#: fortran/symbol.c:3726 +#: fortran/symbol.c:3670 #, gcc-internal-format, gfc-internal-format msgid "" "Derived type '%s' at %L cannot have the SEQUENCE attribute because it is BIND" "(C)" msgstr "" -#: fortran/symbol.c:4679 +#: fortran/symbol.c:4623 #, gcc-internal-format, gfc-internal-format msgid "Symbol '%s' is used before it is typed at %L" msgstr "" -#: fortran/symbol.c:4685 +#: fortran/symbol.c:4629 #, gcc-internal-format, gfc-internal-format msgid "Extension: Symbol '%s' is used before it is typed at %L" msgstr "" -#: fortran/target-memory.c:613 +#: fortran/target-memory.c:632 #, gcc-internal-format, gfc-internal-format msgid "Overlapping unequal initializers in EQUIVALENCE at %L" msgstr "" -#: fortran/target-memory.c:701 +#: fortran/target-memory.c:720 #, gcc-internal-format, gfc-internal-format msgid "BOZ constant at %L is too large (%ld vs %ld bits)" msgstr "" -#: fortran/trans-array.c:774 fortran/trans-array.c:4842 -#: fortran/trans-array.c:6042 fortran/trans-intrinsic.c:4790 +#: fortran/trans-array.c:775 fortran/trans-array.c:4932 +#: fortran/trans-array.c:6133 fortran/trans-intrinsic.c:4790 #, gcc-internal-format, gfc-internal-format msgid "Creating array temporary at %L" msgstr "" -#: fortran/trans-array.c:6039 +#: fortran/trans-array.c:6130 #, gcc-internal-format, gfc-internal-format msgid "Creating array temporary at %L for argument '%s'" msgstr "" -#: fortran/trans-array.c:7077 +#: fortran/trans-array.c:7156 #, gcc-internal-format msgid "" "Possible front-end bug: Deferred array size without pointer, allocatable " "attribute or derived type without allocatable components." msgstr "" -#: fortran/trans-array.c:7575 +#: fortran/trans-array.c:7655 #, gcc-internal-format, gfc-internal-format msgid "bad expression type during walk (%d)" msgstr "" @@ -42283,73 +42528,68 @@ msgstr "" msgid "non-constant initialization expression at %L" msgstr "" -#: fortran/trans-decl.c:1192 +#: fortran/trans-decl.c:1262 #, gcc-internal-format msgid "intrinsic variable which isn't a procedure" msgstr "" -#: fortran/trans-decl.c:3201 fortran/trans-decl.c:4605 +#: fortran/trans-decl.c:3321 fortran/trans-decl.c:4843 #, gcc-internal-format, gfc-internal-format msgid "Return value of function '%s' at %L not set" msgstr "" -#: fortran/trans-decl.c:3346 +#: fortran/trans-decl.c:3582 #, gcc-internal-format msgid "Deferred type parameter not yet supported" msgstr "" -#: fortran/trans-decl.c:3553 +#: fortran/trans-decl.c:3789 #, gcc-internal-format, gfc-internal-format msgid "backend decl for module variable %s already exists" msgstr "" -#: fortran/trans-decl.c:3931 +#: fortran/trans-decl.c:4167 #, gcc-internal-format, gfc-internal-format msgid "Dummy argument '%s' at %L was declared INTENT(OUT) but was not set" msgstr "" -#: fortran/trans-decl.c:3935 +#: fortran/trans-decl.c:4171 #, gcc-internal-format, gfc-internal-format msgid "" "Derived-type dummy argument '%s' at %L was declared INTENT(OUT) but was not " "set and does not have a default initializer" msgstr "" -#: fortran/trans-decl.c:3941 +#: fortran/trans-decl.c:4177 #, gcc-internal-format, gfc-internal-format msgid "Unused dummy argument '%s' at %L" msgstr "" -#: fortran/trans-decl.c:3950 +#: fortran/trans-decl.c:4186 #, gcc-internal-format, gfc-internal-format msgid "Unused variable '%s' declared at %L" msgstr "" -#: fortran/trans-decl.c:3998 +#: fortran/trans-decl.c:4234 #, gcc-internal-format, gfc-internal-format msgid "Unused parameter '%s' declared at %L" msgstr "" -#: fortran/trans-decl.c:4012 +#: fortran/trans-decl.c:4248 #, gcc-internal-format, gfc-internal-format msgid "Return value '%s' of function '%s' declared at %L not set" msgstr "" -#: fortran/trans-expr.c:1386 +#: fortran/trans-expr.c:1400 #, gcc-internal-format msgid "Unknown intrinsic op" msgstr "" -#: fortran/trans-expr.c:2588 +#: fortran/trans-expr.c:2602 #, gcc-internal-format, gfc-internal-format msgid "Unknown argument list function at %L" msgstr "" -#: fortran/trans-expr.c:6003 -#, gcc-internal-format, gfc-internal-format -msgid "Assignment to deferred-length character variable at %L not implemented" -msgstr "" - #: fortran/trans-intrinsic.c:851 #, gcc-internal-format, gfc-internal-format msgid "Intrinsic function %s(%d) not recognized" @@ -42360,12 +42600,12 @@ msgstr "" msgid "'dim' argument of %s intrinsic at %L is not a valid dimension index" msgstr "" -#: fortran/trans-io.c:2051 +#: fortran/trans-io.c:2041 #, gcc-internal-format, gfc-internal-format msgid "Derived type '%s' at %L has PRIVATE components" msgstr "" -#: fortran/trans-io.c:2199 +#: fortran/trans-io.c:2189 #, gcc-internal-format, gfc-internal-format msgid "Bad IO basetype (%d)" msgstr "" @@ -42375,7 +42615,7 @@ msgstr "" msgid "gfc_trans_omp_workshare(): Bad statement code" msgstr "" -#: fortran/trans-stmt.c:513 +#: fortran/trans-stmt.c:514 #, gcc-internal-format, gfc-internal-format msgid "An alternate return at %L without a * dummy argument" msgstr "" @@ -42400,7 +42640,7 @@ msgstr "" msgid "Array element size too big" msgstr "" -#: fortran/trans.c:1398 +#: fortran/trans.c:1409 #, gcc-internal-format msgid "gfc_trans_code(): Bad statement code" msgstr "" @@ -42722,7 +42962,7 @@ msgstr "" msgid "bad pc in exception_table" msgstr "" -#: lto/lto-lang.c:692 +#: lto/lto-lang.c:693 #, gcc-internal-format msgid "-fwpa and -fltrans are mutually exclusive" msgstr "" @@ -42803,139 +43043,154 @@ msgstr "" msgid "cannot read LTO decls from %s" msgstr "" -#: lto/lto.c:1448 +#: lto/lto.c:1460 #, gcc-internal-format msgid "no LTRANS output list filename provided" msgstr "" -#: lto/lto.c:1451 +#: lto/lto.c:1463 #, gcc-internal-format msgid "opening LTRANS output list %s: %m" msgstr "" -#: lto/lto.c:1492 +#: lto/lto.c:1504 #, gcc-internal-format msgid "lto_obj_file_open() failed" msgstr "" -#: lto/lto.c:1518 +#: lto/lto.c:1530 #, gcc-internal-format msgid "writing to LTRANS output list %s: %m" msgstr "" -#: lto/lto.c:1526 +#: lto/lto.c:1538 #, gcc-internal-format msgid "closing LTRANS output list %s: %m" msgstr "" -#: lto/lto.c:2118 +#: lto/lto.c:2130 #, gcc-internal-format msgid "could not open symbol resolution file: %m" msgstr "" -#: lto/lto.c:2186 +#: lto/lto.c:2202 #, gcc-internal-format msgid "errors during merging of translation units" msgstr "" -#: objc/objc-act.c:619 +#: objc/objc-act.c:437 objc/objc-act.c:6546 #, gcc-internal-format -msgid "%<-fobjc-gc%> is ignored for %<-fgnu-runtime%>" +msgid "%<@end%> missing in implementation context" msgstr "" -#: objc/objc-act.c:736 +#: objc/objc-act.c:594 #, gcc-internal-format msgid "class attributes are not available in Objective-C 1.0" msgstr "" -#: objc/objc-act.c:751 +#: objc/objc-act.c:609 #, gcc-internal-format msgid "category attributes are not available in Objective-C 1.0" msgstr "" -#: objc/objc-act.c:754 +#: objc/objc-act.c:612 #, gcc-internal-format msgid "" "category attributes are not available in this version of the compiler, " "(ignored)" msgstr "" -#: objc/objc-act.c:760 +#: objc/objc-act.c:618 #, gcc-internal-format msgid "class extensions are not available in Objective-C 1.0" msgstr "" -#: objc/objc-act.c:772 +#: objc/objc-act.c:632 +#, gcc-internal-format +msgid "class extension for class %qE declared after its %<@implementation%>" +msgstr "" + +#: objc/objc-act.c:647 #, gcc-internal-format msgid "protocol attributes are not available in Objective-C 1.0" msgstr "" -#: objc/objc-act.c:837 +#: objc/objc-act.c:712 #, gcc-internal-format msgid "%<@end%> must appear in an @implementation context" msgstr "" -#: objc/objc-act.c:846 +#: objc/objc-act.c:721 #, gcc-internal-format msgid "%<@package%> is not available in Objective-C 1.0" msgstr "" -#: objc/objc-act.c:848 +#: objc/objc-act.c:723 #, gcc-internal-format msgid "%<@package%> presently has the same effect as %<@public%>" msgstr "" -#: objc/objc-act.c:857 +#: objc/objc-act.c:734 +#, gcc-internal-format +msgid "%<@optional%> is not available in Objective-C 1.0" +msgstr "" + +#: objc/objc-act.c:736 +#, gcc-internal-format +msgid "%<@required%> is not available in Objective-C 1.0" +msgstr "" + +#: objc/objc-act.c:744 #, gcc-internal-format -msgid "@optional/@required are not available in Objective-C 1.0" +msgid "%<@optional%> is allowed in @protocol context only" msgstr "" -#: objc/objc-act.c:863 +#: objc/objc-act.c:746 #, gcc-internal-format -msgid "@optional/@required is allowed in @protocol context only" +msgid "%<@required%> is allowed in @protocol context only" msgstr "" -#: objc/objc-act.c:970 +#: objc/objc-act.c:853 #, gcc-internal-format msgid "%<@property%> is not available in Objective-C 1.0" msgstr "" -#: objc/objc-act.c:974 +#: objc/objc-act.c:857 #, gcc-internal-format msgid "%<readonly%> attribute conflicts with %<readwrite%> attribute" msgstr "" -#: objc/objc-act.c:991 +#: objc/objc-act.c:874 #, gcc-internal-format msgid "%<readonly%> attribute conflicts with %<setter%> attribute" msgstr "" -#: objc/objc-act.c:997 +#: objc/objc-act.c:880 #, gcc-internal-format msgid "%<assign%> attribute conflicts with %<retain%> attribute" msgstr "" -#: objc/objc-act.c:1002 +#: objc/objc-act.c:885 #, gcc-internal-format msgid "%<assign%> attribute conflicts with %<copy%> attribute" msgstr "" -#: objc/objc-act.c:1007 +#: objc/objc-act.c:890 #, gcc-internal-format msgid "%<retain%> attribute conflicts with %<copy%> attribute" msgstr "" -#: objc/objc-act.c:1024 +#: objc/objc-act.c:907 #, gcc-internal-format msgid "property declaration not in @interface or @protocol context" msgstr "" -#: objc/objc-act.c:1035 +#: objc/objc-act.c:918 #, gcc-internal-format msgid "invalid property declaration" msgstr "" -#: objc/objc-act.c:1043 +#: objc/objc-act.c:926 #, gcc-internal-format msgid "property can not be an array" msgstr "" @@ -42947,84 +43202,84 @@ msgstr "" #. and arguments of functions can not be bitfields). The #. underlying instance variable could be a bitfield, but that is #. a different matter. -#: objc/objc-act.c:1061 +#: objc/objc-act.c:944 #, gcc-internal-format msgid "property can not be a bit-field" msgstr "" -#: objc/objc-act.c:1093 +#: objc/objc-act.c:976 #, gcc-internal-format msgid "" "object property %qD has no %<assign%>, %<retain%> or %<copy%> attribute; " "assuming %<assign%>" msgstr "" -#: objc/objc-act.c:1096 +#: objc/objc-act.c:979 #, gcc-internal-format msgid "" "%<assign%> can be unsafe for Objective-C objects; please state explicitly if " "you need it" msgstr "" -#: objc/objc-act.c:1103 +#: objc/objc-act.c:986 #, gcc-internal-format msgid "%<retain%> attribute is only valid for Objective-C objects" msgstr "" -#: objc/objc-act.c:1107 +#: objc/objc-act.c:990 #, gcc-internal-format msgid "%<copy%> attribute is only valid for Objective-C objects" msgstr "" -#: objc/objc-act.c:1161 +#: objc/objc-act.c:1044 #, gcc-internal-format msgid "redeclaration of property %qD" msgstr "" -#: objc/objc-act.c:1164 objc/objc-act.c:1229 objc/objc-act.c:1239 -#: objc/objc-act.c:1252 objc/objc-act.c:1263 objc/objc-act.c:1274 -#: objc/objc-act.c:1311 objc/objc-act.c:10301 objc/objc-act.c:10364 -#: objc/objc-act.c:10386 objc/objc-act.c:10399 objc/objc-act.c:10417 -#: objc/objc-act.c:10516 +#: objc/objc-act.c:1047 objc/objc-act.c:1112 objc/objc-act.c:1122 +#: objc/objc-act.c:1135 objc/objc-act.c:1146 objc/objc-act.c:1157 +#: objc/objc-act.c:1194 objc/objc-act.c:7315 objc/objc-act.c:7378 +#: objc/objc-act.c:7400 objc/objc-act.c:7413 objc/objc-act.c:7431 +#: objc/objc-act.c:7530 #, gcc-internal-format msgid "originally specified here" msgstr "" -#: objc/objc-act.c:1226 +#: objc/objc-act.c:1109 #, gcc-internal-format msgid "" "'nonatomic' attribute of property %qD conflicts with previous declaration" msgstr "" -#: objc/objc-act.c:1236 +#: objc/objc-act.c:1119 #, gcc-internal-format msgid "'getter' attribute of property %qD conflicts with previous declaration" msgstr "" -#: objc/objc-act.c:1249 +#: objc/objc-act.c:1132 #, gcc-internal-format msgid "'setter' attribute of property %qD conflicts with previous declaration" msgstr "" -#: objc/objc-act.c:1260 +#: objc/objc-act.c:1143 #, gcc-internal-format msgid "" "assign semantics attributes of property %qD conflict with previous " "declaration" msgstr "" -#: objc/objc-act.c:1271 +#: objc/objc-act.c:1154 #, gcc-internal-format msgid "" "'readonly' attribute of property %qD conflicts with previous declaration" msgstr "" -#: objc/objc-act.c:1309 +#: objc/objc-act.c:1192 #, gcc-internal-format msgid "type of property %qD conflicts with previous declaration" msgstr "" -#: objc/objc-act.c:1779 +#: objc/objc-act.c:1665 #, gcc-internal-format msgid "the dot syntax is not available in Objective-C 1.0" msgstr "" @@ -43032,28 +43287,28 @@ msgstr "" #. We know that 'class_name' is an Objective-C class name as the #. parser won't call this function if it is not. This is only a #. double-check for safety. -#: objc/objc-act.c:1795 +#: objc/objc-act.c:1681 #, gcc-internal-format msgid "could not find class %qE" msgstr "" #. Again, this should never happen, but we do check. -#: objc/objc-act.c:1803 +#: objc/objc-act.c:1689 #, gcc-internal-format msgid "could not find interface for class %qE" msgstr "" -#: objc/objc-act.c:1809 objc/objc-act.c:9541 objc/objc-act.c:9667 +#: objc/objc-act.c:1695 objc/objc-act.c:6583 objc/objc-act.c:6714 #, gcc-internal-format msgid "class %qE is deprecated" msgstr "" -#: objc/objc-act.c:1838 +#: objc/objc-act.c:1724 #, gcc-internal-format msgid "could not find setter/getter for %qE in class %qE" msgstr "" -#: objc/objc-act.c:1874 +#: objc/objc-act.c:1760 #, gcc-internal-format msgid "readonly property can not be set" msgstr "" @@ -43062,67 +43317,67 @@ msgstr "" #. impossible to get here. But it's good to have the check in #. case the parser changes. #. -#: objc/objc-act.c:2122 +#: objc/objc-act.c:2030 #, gcc-internal-format msgid "method declaration not in @interface context" msgstr "" -#: objc/objc-act.c:2126 +#: objc/objc-act.c:2034 #, gcc-internal-format msgid "method attributes are not available in Objective-C 1.0" msgstr "" -#: objc/objc-act.c:2143 +#: objc/objc-act.c:2051 #, gcc-internal-format msgid "method definition not in @implementation context" msgstr "" -#: objc/objc-act.c:2158 +#: objc/objc-act.c:2066 #, gcc-internal-format msgid "method attributes can not be specified in @implementation context" msgstr "" -#: objc/objc-act.c:2401 +#: objc/objc-act.c:2295 #, gcc-internal-format msgid "class %qs does not implement the %qE protocol" msgstr "" -#: objc/objc-act.c:2404 +#: objc/objc-act.c:2298 #, gcc-internal-format msgid "type %qs does not conform to the %qE protocol" msgstr "" -#: objc/objc-act.c:2668 +#: objc/objc-act.c:2562 #, gcc-internal-format msgid "comparison of distinct Objective-C types lacks a cast" msgstr "" -#: objc/objc-act.c:2672 +#: objc/objc-act.c:2566 #, gcc-internal-format msgid "initialization from distinct Objective-C type" msgstr "" -#: objc/objc-act.c:2676 +#: objc/objc-act.c:2570 #, gcc-internal-format msgid "assignment from distinct Objective-C type" msgstr "" -#: objc/objc-act.c:2680 +#: objc/objc-act.c:2574 #, gcc-internal-format msgid "distinct Objective-C type in return" msgstr "" -#: objc/objc-act.c:2684 +#: objc/objc-act.c:2578 #, gcc-internal-format msgid "passing argument %d of %qE from distinct Objective-C type" msgstr "" -#: objc/objc-act.c:2822 +#: objc/objc-act.c:2716 #, gcc-internal-format msgid "statically allocated instance of Objective-C class %qE" msgstr "" -#: objc/objc-act.c:2831 +#: objc/objc-act.c:2725 #, gcc-internal-format msgid "redeclaration of Objective-C class %qs" msgstr "" @@ -43134,230 +43389,230 @@ msgstr "" #. Objective-C class, but something else, such as 'int'. #. This is an error; protocols make no sense unless you use #. them with Objective-C objects. -#: objc/objc-act.c:2873 +#: objc/objc-act.c:2767 #, gcc-internal-format msgid "only Objective-C object types can be qualified with a protocol" msgstr "" -#: objc/objc-act.c:2935 +#: objc/objc-act.c:2831 #, gcc-internal-format msgid "protocol %qE has circular dependency" msgstr "" -#: objc/objc-act.c:2964 objc/objc-act.c:8409 +#: objc/objc-act.c:2864 objc/objc-act.c:5382 #, gcc-internal-format msgid "cannot find protocol declaration for %qE" msgstr "" -#: objc/objc-act.c:3455 objc/objc-act.c:4919 objc/objc-act.c:9117 -#: objc/objc-act.c:9592 objc/objc-act.c:9660 objc/objc-act.c:9710 +#: objc/objc-act.c:3167 objc/objc-act.c:3826 objc/objc-act.c:6159 +#: objc/objc-act.c:6634 objc/objc-act.c:6707 objc/objc-act.c:6760 #, gcc-internal-format msgid "cannot find interface declaration for %qE" msgstr "" -#: objc/objc-act.c:3459 +#: objc/objc-act.c:3171 #, gcc-internal-format msgid "interface %qE does not have valid constant string layout" msgstr "" -#: objc/objc-act.c:3464 +#: objc/objc-act.c:3176 #, gcc-internal-format msgid "cannot find reference tag for class %qE" msgstr "" -#: objc/objc-act.c:4086 -#, gcc-internal-format -msgid "creating selector for nonexistent method %qE" -msgstr "" - -#: objc/objc-act.c:4328 +#: objc/objc-act.c:3321 #, gcc-internal-format msgid "%qE is not an Objective-C class name or alias" msgstr "" -#: objc/objc-act.c:4429 objc/objc-act.c:4462 objc/objc-act.c:9498 -#: objc/objc-act.c:10822 objc/objc-act.c:10874 +#: objc/objc-act.c:3336 objc/objc-act.c:3369 objc/objc-act.c:6540 +#: objc/objc-act.c:7862 objc/objc-act.c:7917 #, gcc-internal-format msgid "Objective-C declarations may only appear in global scope" msgstr "" -#: objc/objc-act.c:4434 +#: objc/objc-act.c:3341 #, gcc-internal-format msgid "cannot find class %qE" msgstr "" -#: objc/objc-act.c:4436 +#: objc/objc-act.c:3343 #, gcc-internal-format msgid "class %qE already exists" msgstr "" -#: objc/objc-act.c:4484 objc/objc-act.c:9557 +#: objc/objc-act.c:3391 objc/objc-act.c:6599 #, gcc-internal-format msgid "%qE redeclared as different kind of symbol" msgstr "" -#: objc/objc-act.c:4773 +#: objc/objc-act.c:3680 #, gcc-internal-format msgid "strong-cast assignment has been intercepted" msgstr "" -#: objc/objc-act.c:4815 +#: objc/objc-act.c:3722 #, gcc-internal-format msgid "strong-cast may possibly be needed" msgstr "" -#: objc/objc-act.c:4825 +#: objc/objc-act.c:3732 #, gcc-internal-format msgid "instance variable assignment has been intercepted" msgstr "" -#: objc/objc-act.c:4844 +#: objc/objc-act.c:3751 #, gcc-internal-format msgid "pointer arithmetic for garbage-collected objects not allowed" msgstr "" -#: objc/objc-act.c:4850 +#: objc/objc-act.c:3757 #, gcc-internal-format msgid "global/static variable assignment has been intercepted" msgstr "" -#: objc/objc-act.c:5054 +#: objc/objc-act.c:3892 #, gcc-internal-format msgid "" "%<-fobjc-exceptions%> is required to enable Objective-C exception syntax" msgstr "" -#: objc/objc-act.c:5429 +#: objc/objc-act.c:3976 #, gcc-internal-format msgid "@catch parameter is not a known Objective-C class type" msgstr "" -#: objc/objc-act.c:5435 +#: objc/objc-act.c:3982 #, gcc-internal-format msgid "@catch parameter can not be protocol-qualified" msgstr "" -#: objc/objc-act.c:5478 +#: objc/objc-act.c:4027 #, gcc-internal-format msgid "exception of type %<%T%> will be caught" msgstr "" -#: objc/objc-act.c:5480 +#: objc/objc-act.c:4029 #, gcc-internal-format msgid " by earlier handler for %<%T%>" msgstr "" -#: objc/objc-act.c:5534 +#: objc/objc-act.c:4076 #, gcc-internal-format msgid "%<@try%> without %<@catch%> or %<@finally%>" msgstr "" -#: objc/objc-act.c:5585 +#: objc/objc-act.c:4104 #, gcc-internal-format msgid "%<@throw%> (rethrow) used outside of a @catch block" msgstr "" -#: objc/objc-act.c:5597 +#: objc/objc-act.c:4117 #, gcc-internal-format msgid "%<@throw%> argument is not an object" msgstr "" -#: objc/objc-act.c:5971 +#: objc/objc-act.c:4138 #, gcc-internal-format -msgid "type %q+D does not have a known size" +msgid "%<@synchronized%> argument is not an object" msgstr "" -#: objc/objc-act.c:6573 +#: objc/objc-act.c:4273 +#, gcc-internal-format +msgid "type %qT does not have a known size" +msgstr "" + +#: objc/objc-act.c:4450 #, gcc-internal-format msgid "%s %qs" msgstr "" -#: objc/objc-act.c:6596 objc/objc-act.c:6615 +#: objc/objc-act.c:4473 objc/objc-act.c:4492 #, gcc-internal-format msgid "inconsistent instance variable specification" msgstr "" -#: objc/objc-act.c:7457 +#: objc/objc-act.c:4547 #, gcc-internal-format msgid "can not use an object as parameter to a method" msgstr "" -#: objc/objc-act.c:7501 +#: objc/objc-act.c:4591 #, gcc-internal-format msgid "method argument attributes are not available in Objective-C 1.0" msgstr "" -#: objc/objc-act.c:7841 +#: objc/objc-act.c:4920 #, gcc-internal-format msgid "multiple methods named %<%c%E%> found" msgstr "" -#: objc/objc-act.c:7844 +#: objc/objc-act.c:4923 #, gcc-internal-format msgid "using %<%c%s%>" msgstr "" -#: objc/objc-act.c:7853 +#: objc/objc-act.c:4932 #, gcc-internal-format msgid "multiple selectors named %<%c%E%> found" msgstr "" -#: objc/objc-act.c:7856 +#: objc/objc-act.c:4935 #, gcc-internal-format msgid "found %<%c%s%>" msgstr "" -#: objc/objc-act.c:7865 +#: objc/objc-act.c:4944 #, gcc-internal-format msgid "also found %<%c%s%>" msgstr "" -#: objc/objc-act.c:8089 +#: objc/objc-act.c:5172 #, gcc-internal-format msgid "no super class declared in @interface for %qE" msgstr "" -#: objc/objc-act.c:8127 +#: objc/objc-act.c:5210 #, gcc-internal-format msgid "found %<-%E%> instead of %<+%E%> in protocol(s)" msgstr "" -#: objc/objc-act.c:8191 +#: objc/objc-act.c:5274 #, gcc-internal-format msgid "invalid receiver type %qs" msgstr "" -#: objc/objc-act.c:8206 +#: objc/objc-act.c:5289 #, gcc-internal-format msgid "%<%c%E%> not found in protocol(s)" msgstr "" -#: objc/objc-act.c:8220 +#: objc/objc-act.c:5303 #, gcc-internal-format msgid "%qE may not respond to %<%c%E%>" msgstr "" -#: objc/objc-act.c:8228 +#: objc/objc-act.c:5311 #, gcc-internal-format msgid "no %<%c%E%> method found" msgstr "" -#: objc/objc-act.c:8235 +#: objc/objc-act.c:5318 #, gcc-internal-format msgid "(Messages without a matching method signature" msgstr "" -#: objc/objc-act.c:8237 +#: objc/objc-act.c:5320 #, gcc-internal-format msgid "will be assumed to return %<id%> and accept" msgstr "" -#: objc/objc-act.c:8239 +#: objc/objc-act.c:5322 #, gcc-internal-format msgid "%<...%> as arguments.)" msgstr "" -#: objc/objc-act.c:8515 +#: objc/objc-act.c:5433 #, gcc-internal-format msgid "undeclared selector %qE" msgstr "" @@ -43371,191 +43626,212 @@ msgstr "" #. to an instance variable. It's better to catch the cases #. where this is done unknowingly than to support the above #. paradigm. -#: objc/objc-act.c:8559 +#: objc/objc-act.c:5476 #, gcc-internal-format msgid "instance variable %qE accessed in class method" msgstr "" -#: objc/objc-act.c:8874 +#: objc/objc-act.c:5764 objc/objc-act.c:5784 +#, gcc-internal-format +msgid "" +"method %<%c%E%> declared %<@optional%> and %<@required%> at the same time" +msgstr "" + +#: objc/objc-act.c:5768 +#, gcc-internal-format +msgid "previous declaration of %<%c%E%> as %<@required%>" +msgstr "" + +#: objc/objc-act.c:5788 +#, gcc-internal-format +msgid "previous declaration of %<%c%E%> as %<@optional%>" +msgstr "" + +#: objc/objc-act.c:5848 +#, gcc-internal-format +msgid "duplicate declaration of method %<%c%E%> with conflicting types" +msgstr "" + +#: objc/objc-act.c:5852 #, gcc-internal-format -msgid "duplicate declaration of method %<%c%E%>" +msgid "previous declaration of %<%c%E%>" msgstr "" -#: objc/objc-act.c:8935 +#: objc/objc-act.c:5914 #, gcc-internal-format msgid "duplicate interface declaration for category %<%E(%E)%>" msgstr "" -#: objc/objc-act.c:8963 +#: objc/objc-act.c:5994 #, gcc-internal-format msgid "illegal reference type specified for instance variable %qs" msgstr "" -#: objc/objc-act.c:8974 +#: objc/objc-act.c:6005 #, gcc-internal-format msgid "instance variable %qs has unknown size" msgstr "" -#: objc/objc-act.c:8999 +#: objc/objc-act.c:6025 +#, gcc-internal-format +msgid "instance variable %qs uses flexible array member" +msgstr "" + +#: objc/objc-act.c:6051 #, gcc-internal-format msgid "type %qE has no default constructor to call" msgstr "" -#: objc/objc-act.c:9005 +#: objc/objc-act.c:6057 #, gcc-internal-format msgid "destructor for %qE shall not be run either" msgstr "" #. Vtable pointers are Real Bad(tm), since Obj-C cannot #. initialize them. -#: objc/objc-act.c:9017 +#: objc/objc-act.c:6069 #, gcc-internal-format msgid "type %qE has virtual member functions" msgstr "" -#: objc/objc-act.c:9018 +#: objc/objc-act.c:6070 #, gcc-internal-format msgid "illegal aggregate type %qE specified for instance variable %qs" msgstr "" -#: objc/objc-act.c:9028 +#: objc/objc-act.c:6080 #, gcc-internal-format msgid "type %qE has a user-defined constructor" msgstr "" -#: objc/objc-act.c:9030 +#: objc/objc-act.c:6082 #, gcc-internal-format msgid "type %qE has a user-defined destructor" msgstr "" -#: objc/objc-act.c:9034 +#: objc/objc-act.c:6086 #, gcc-internal-format msgid "" "C++ constructors and destructors will not be invoked for Objective-C fields" msgstr "" -#: objc/objc-act.c:9146 +#: objc/objc-act.c:6188 #, gcc-internal-format msgid "instance variable %qE is declared private" msgstr "" -#: objc/objc-act.c:9157 +#: objc/objc-act.c:6199 #, gcc-internal-format msgid "instance variable %qE is %s; this will be a hard error in the future" msgstr "" -#: objc/objc-act.c:9164 +#: objc/objc-act.c:6206 #, gcc-internal-format msgid "instance variable %qE is declared %s" msgstr "" -#: objc/objc-act.c:9275 objc/objc-act.c:9390 +#: objc/objc-act.c:6317 objc/objc-act.c:6432 #, gcc-internal-format msgid "incomplete implementation of class %qE" msgstr "" -#: objc/objc-act.c:9279 objc/objc-act.c:9394 +#: objc/objc-act.c:6321 objc/objc-act.c:6436 #, gcc-internal-format msgid "incomplete implementation of category %qE" msgstr "" -#: objc/objc-act.c:9288 objc/objc-act.c:9402 +#: objc/objc-act.c:6330 objc/objc-act.c:6444 #, gcc-internal-format msgid "method definition for %<%c%E%> not found" msgstr "" -#: objc/objc-act.c:9443 +#: objc/objc-act.c:6485 #, gcc-internal-format msgid "%s %qE does not fully implement the %qE protocol" msgstr "" -#: objc/objc-act.c:9504 objc/objc-act.c:12694 -#, gcc-internal-format -msgid "%<@end%> missing in implementation context" -msgstr "" - -#: objc/objc-act.c:9533 +#: objc/objc-act.c:6575 #, gcc-internal-format msgid "cannot find interface declaration for %qE, superclass of %qE" msgstr "" -#: objc/objc-act.c:9572 +#: objc/objc-act.c:6614 #, gcc-internal-format msgid "reimplementation of class %qE" msgstr "" -#: objc/objc-act.c:9605 +#: objc/objc-act.c:6647 #, gcc-internal-format msgid "conflicting super class name %qE" msgstr "" -#: objc/objc-act.c:9608 +#: objc/objc-act.c:6650 #, gcc-internal-format msgid "previous declaration of %qE" msgstr "" -#: objc/objc-act.c:9610 +#: objc/objc-act.c:6652 #, gcc-internal-format msgid "previous declaration" msgstr "" -#: objc/objc-act.c:9623 objc/objc-act.c:9625 +#: objc/objc-act.c:6665 objc/objc-act.c:6667 #, gcc-internal-format msgid "duplicate interface declaration for class %qE" msgstr "" -#: objc/objc-act.c:9971 objc/objc-act.c:10165 +#: objc/objc-act.c:6985 objc/objc-act.c:7179 #, gcc-internal-format msgid "can not find instance variable associated with property" msgstr "" #. TODO: This should be caught much earlier than this. -#: objc/objc-act.c:10131 +#: objc/objc-act.c:7145 #, gcc-internal-format msgid "invalid setter, it must have one argument" msgstr "" -#: objc/objc-act.c:10294 objc/objc-act.c:10509 +#: objc/objc-act.c:7308 objc/objc-act.c:7523 #, gcc-internal-format msgid "property %qs already specified in %<@dynamic%>" msgstr "" -#: objc/objc-act.c:10297 objc/objc-act.c:10512 +#: objc/objc-act.c:7311 objc/objc-act.c:7526 #, gcc-internal-format msgid "property %qs already specified in %<@synthesize%>" msgstr "" -#: objc/objc-act.c:10311 objc/objc-act.c:10526 +#: objc/objc-act.c:7325 objc/objc-act.c:7540 #, gcc-internal-format msgid "no declaration of property %qs found in the interface" msgstr "" -#: objc/objc-act.c:10338 +#: objc/objc-act.c:7352 #, gcc-internal-format msgid "ivar %qs used by %<@synthesize%> declaration must be an existing ivar" msgstr "" -#: objc/objc-act.c:10359 +#: objc/objc-act.c:7373 #, gcc-internal-format msgid "property %qs is using instance variable %qs of incompatible type" msgstr "" -#: objc/objc-act.c:10381 +#: objc/objc-act.c:7395 #, gcc-internal-format msgid "'assign' property %qs is using bit-field instance variable %qs" msgstr "" -#: objc/objc-act.c:10394 +#: objc/objc-act.c:7408 #, gcc-internal-format msgid "'atomic' property %qs is using bit-field instance variable %qs" msgstr "" -#: objc/objc-act.c:10412 +#: objc/objc-act.c:7426 #, gcc-internal-format msgid "property %qs is using the same instance variable as property %qs" msgstr "" -#: objc/objc-act.c:10453 +#: objc/objc-act.c:7467 #, gcc-internal-format msgid "%<@synthesize%> is not available in Objective-C 1.0" msgstr "" @@ -43564,22 +43840,22 @@ msgstr "" #. detects the problem while parsing, outputs the error #. "misplaced '@synthesize' Objective-C++ construct" and skips #. the declaration. -#: objc/objc-act.c:10464 +#: objc/objc-act.c:7478 #, gcc-internal-format msgid "%<@synthesize%> not in @implementation context" msgstr "" -#: objc/objc-act.c:10470 +#: objc/objc-act.c:7484 #, gcc-internal-format msgid "%<@synthesize%> can not be used in categories" msgstr "" -#: objc/objc-act.c:10479 +#: objc/objc-act.c:7493 #, gcc-internal-format msgid "%<@synthesize%> requires the @interface of the class to be available" msgstr "" -#: objc/objc-act.c:10562 +#: objc/objc-act.c:7576 #, gcc-internal-format msgid "%<@dynamic%> is not available in Objective-C 1.0" msgstr "" @@ -43588,77 +43864,65 @@ msgstr "" #. detects the problem while parsing, outputs the error #. "misplaced '@dynamic' Objective-C++ construct" and skips the #. declaration. -#: objc/objc-act.c:10573 +#: objc/objc-act.c:7587 #, gcc-internal-format msgid "%<@dynamic%> not in @implementation context" msgstr "" -#: objc/objc-act.c:10595 +#: objc/objc-act.c:7609 #, gcc-internal-format msgid "%<@dynamic%> requires the @interface of the class to be available" msgstr "" +#: objc/objc-act.c:7807 +#, gcc-internal-format +msgid "definition of protocol %qE not found" +msgstr "" + #. It would be nice to use warn_deprecated_use() here, but #. we are using TREE_CHAIN (which is supposed to be the #. TYPE_STUB_DECL for a TYPE) for something different. -#: objc/objc-act.c:10801 +#: objc/objc-act.c:7838 #, gcc-internal-format msgid "protocol %qE is deprecated" msgstr "" -#: objc/objc-act.c:10916 +#: objc/objc-act.c:7962 #, gcc-internal-format msgid "duplicate declaration for protocol %qE" msgstr "" -#. TODO: Detect this error earlier. -#: objc/objc-act.c:11109 -#, gcc-internal-format -msgid "instance variable has unknown size" -msgstr "" - -#: objc/objc-act.c:11473 -#, gcc-internal-format, gfc-internal-format -msgid "unknown type %s found during Objective-C encoding" -msgstr "" - -#. Do not do any encoding, produce an error and keep going. -#: objc/objc-act.c:11556 -#, gcc-internal-format -msgid "trying to encode non-integer type as a bitfield" -msgstr "" - -#: objc/objc-act.c:12010 +#: objc/objc-act.c:8448 #, gcc-internal-format msgid "conflicting types for %<%c%s%>" msgstr "" -#: objc/objc-act.c:12014 +#: objc/objc-act.c:8452 #, gcc-internal-format msgid "previous declaration of %<%c%s%>" msgstr "" -#: objc/objc-act.c:12120 +#: objc/objc-act.c:8552 #, gcc-internal-format msgid "no super class declared in interface for %qE" msgstr "" -#: objc/objc-act.c:12179 +#: objc/objc-act.c:8579 #, gcc-internal-format msgid "[super ...] must appear in a method context" msgstr "" -#: objc/objc-act.c:12218 +#: objc/objc-act.c:8619 #, gcc-internal-format msgid "method possibly missing a [super dealloc] call" msgstr "" -#: objc/objc-act.c:12989 +#: objc/objc-act.c:9083 #, gcc-internal-format msgid "instance variable %qs is declared private" msgstr "" -#: objc/objc-act.c:13034 +#: objc/objc-act.c:9128 #, gcc-internal-format msgid "local declaration of %qE hides instance variable" msgstr "" @@ -43666,22 +43930,68 @@ msgstr "" #. This can happen if DECL_ARTIFICIAL (*expr_p), but #. should be impossible for real properties, which always #. have a getter. -#: objc/objc-act.c:13079 +#: objc/objc-act.c:9173 #, gcc-internal-format msgid "no %qs getter found" msgstr "" -#: objc/objc-act.c:13343 +#: objc/objc-act.c:9413 #, gcc-internal-format msgid "fast enumeration is not available in Objective-C 1.0" msgstr "" -#: objc/objc-act.c:13353 +#: objc/objc-act.c:9423 #, gcc-internal-format msgid "iterating variable in fast enumeration is not an object" msgstr "" -#: objc/objc-act.c:13359 +#: objc/objc-act.c:9429 #, gcc-internal-format msgid "collection in fast enumeration is not an object" msgstr "" + +#: objc/objc-act.c:10362 +#, gcc-internal-format, gfc-internal-format +msgid "unknown type %s found during Objective-C encoding" +msgstr "" + +#. Do not do any encoding, produce an error and keep going. +#: objc/objc-act.c:10445 +#, gcc-internal-format +msgid "trying to encode non-integer type as a bitfield" +msgstr "" + +#: objc/objc-gnu-runtime-abi-01.c:129 +#, gcc-internal-format +msgid "%<-fobjc-gc%> is ignored for %<-fgnu-runtime%>" +msgstr "" + +#: objc/objc-gnu-runtime-abi-01.c:137 +#, gcc-internal-format +msgid "%<-fobjc-sjlj-exceptions%> is ignored for %<-fgnu-runtime%>" +msgstr "" + +#: objc/objc-gnu-runtime-abi-01.c:2168 objc/objc-next-runtime-abi-01.c:2848 +#: objc/objc-next-runtime-abi-02.c:3636 +#, gcc-internal-format +msgid "non-objective-c type '%T' cannot be caught" +msgstr "" + +#: objc/objc-next-runtime-abi-01.c:150 +#, gcc-internal-format +msgid "" +"%<-fobjc-sjlj-exceptions%> is the only supported exceptions system for %<-" +"fnext-runtime%> with %<-fobjc-abi-version%> < 2" +msgstr "" + +#: objc/objc-next-runtime-abi-02.c:247 +#, gcc-internal-format +msgid "" +"%<-fobjc-sjlj-exceptions%> is ignored for %<-fnext-runtime%> when %<-fobjc-" +"abi-version%> >= 2" +msgstr "" + +#: objc/objc-runtime-shared-support.c:431 +#, gcc-internal-format +msgid "creating selector for nonexistent method %qE" +msgstr "" diff --git a/gcc/rtl.h b/gcc/rtl.h index e5c6e383020..0552156d648 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -1,6 +1,6 @@ /* Register Transfer Language (RTL) definitions for GCC Copyright (C) 1987, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, - 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 + 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. This file is part of GCC. @@ -1685,7 +1685,9 @@ extern rtx simplify_subtraction (rtx); /* In function.c */ extern rtx assign_stack_local (enum machine_mode, HOST_WIDE_INT, int); -extern rtx assign_stack_local_1 (enum machine_mode, HOST_WIDE_INT, int, bool); +#define ASLK_REDUCE_ALIGN 1 +#define ASLK_RECORD_PAD 2 +extern rtx assign_stack_local_1 (enum machine_mode, HOST_WIDE_INT, int, int); extern rtx assign_stack_temp (enum machine_mode, HOST_WIDE_INT, int); extern rtx assign_stack_temp_for_type (enum machine_mode, HOST_WIDE_INT, int, tree); diff --git a/gcc/stmt.c b/gcc/stmt.c index 7d4cbb0cb4c..b65c6db4642 100644 --- a/gcc/stmt.c +++ b/gcc/stmt.c @@ -2006,7 +2006,7 @@ expand_stack_save (void) rtx ret = NULL_RTX; do_pending_stack_adjust (); - emit_stack_save (SAVE_BLOCK, &ret, NULL_RTX); + emit_stack_save (SAVE_BLOCK, &ret); return ret; } @@ -2017,7 +2017,7 @@ expand_stack_restore (tree var) rtx sa = expand_normal (var); sa = convert_memory_address (Pmode, sa); - emit_stack_restore (SAVE_BLOCK, sa, NULL_RTX); + emit_stack_restore (SAVE_BLOCK, sa); } /* Do the insertion of a case label into case_list. The labels are diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index b3b1a2782c4..7a5cc2cb5ab 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,134 @@ +2011-03-05 Jason Merrill <jason@redhat.com> + + * g++.dg/abi/mangle39.C: ABI v5, not 6. + * g++.dg/abi/mangle45.C: Likewise. + * g++.dg/cpp0x/trailing1.C: Likewise. + +2011-03-05 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> + + * gcc.dg/torture/pr47975.c: Add -fno-common option on hppa*-*-hpux*. + +2011-03-05 Jakub Jelinek <jakub@redhat.com> + + PR rtl-optimization/47899 + * gcc.dg/pr47899.c: New test. + + * gcc.dg/torture/pr47968.c: Ignore warnings. + + PR tree-optimization/47967 + * gcc.c-torture/compile/pr47967.c: New test. + +2011-03-04 Nicola Pero <nicola.pero@meta-innovation.com> + + * objc.dg/property/property-encoding-1.m: Tidied up testcase. + * obj-c++.dg/property/property-encoding-1.mm: Likewise. + +2011-03-04 Nicola Pero <nicola.pero@meta-innovation.com> + + * objc.dg/gnu-api-2-property.m: Added tests for property_getName() + and property_getAttributes() if __OBJC2__. + * obj-c++.dg/gnu-api-2-property.mm: Likewise. + * objc.dg/property/property-encoding-1.m: New. + * obj-c++.dg/property/property-encoding-1.mm: New. + +2011-03-04 Jason Merrill <jason@redhat.com> + + * g++.dg/template/pseudodtor6.C: New. + + * g++.dg/inherit/covariant19.C: New. + +2011-03-04 Richard Guenther <rguenther@suse.de> + + PR middle-end/47968 + * gcc.dg/torture/pr47968.c: New testcase. + +2011-03-04 Richard Guenther <rguenther@suse.de> + + PR middle-end/47975 + * gcc.dg/torture/pr47975.c: New testcase. + +2011-03-03 Paolo Carlini <paolo.carlini@oracle.com> + + PR c++/47974 + * g++.dg/template/crash106.C: New. + +2011-03-03 Jakub Jelinek <jakub@redhat.com> + + PR c/47963 + * gcc.dg/gomp/pr47963.c: New test. + * g++.dg/gomp/pr47963.C: New test. + +2011-03-02 Jason Merrill <jason@redhat.com> + + * g++.dg/cpp0x/regress/condition1.C: New. + + * g++.dg/cpp0x/constexpr-ctor9.C: New. + +2011-03-01 Jason Merrill <jason@redhat.com> + + * g++.dg/cpp0x/lambda/lambda-98.C: New. + + * g++.dg/cpp0x/constexpr-non-const-arg2.C: New. + +2011-03-02 Richard Sandiford <richard.sandiford@linaro.org> + + PR rtl-optimization/47925 + * gcc.c-torture/execute/pr47925.c: New test. + +2011-03-01 Jason Merrill <jason@redhat.com> + + * g++.dg/cpp0x/decltype25.C: New. + + * g++.dg/cpp0x/regress/bitfield-err1.C: New. + +2011-03-01 Richard Guenther <rguenther@suse.de> + + PR tree-optimization/47890 + * gcc.dg/torture/pr47890.c: New testcase. + +2011-03-01 Richard Guenther <rguenther@suse.de> + + PR lto/47924 + * gcc.dg/lto/pr47924_0.c: New testcase. + +2011-03-01 Richard Guenther <rguenther@suse.de> + + PR lto/46911 + * gfortran.dg/lto/pr46911_0.f: New testcase. + +2011-02-28 Jerry DeLisle <jvdelisle@gcc.gnu.org> + + PR libgfortran/47933 + * gfortran.dg/fmt_fw_d.f90: Fix test by adding dg-options to avoid + compile errors from older code form. + +2011-02-28 Jerry DeLisle <jvdelisle@gcc.gnu.org> + + PR libgfortran/47567 + * gfortran.dg/fmt_fw_d.f90: New test. + +2011-02-28 Jason Merrill <jason@redhat.com> + + * g++.dg/inherit/covariant18.C: New. + +2011-02-28 Jakub Jelinek <jakub@redhat.com> + + PR middle-end/47893 + * gcc.dg/pr47893.c: New test. + +2011-02-28 Nicola Pero <nicola.pero@meta-innovation.com> + + * objc.dg/gnu-api-2-sel.m: Test that sel_getTypedSelector return + NULL in case of a selector with conflicting types. + * obj-c++.dg/gnu-api-2-sel.mm: Same change. + +2011-02-28 Kazu Hirata <kazu@codesourcery.com> + + * gcc.target/arm/vfp-ldmdbd.c, gcc.target/arm/vfp-ldmdbs.c, + gcc.target/arm/vfp-ldmiad.c, gcc.target/arm/vfp-ldmias.c, + gcc.target/arm/vfp-stmdbd.c, gcc.target/arm/vfp-stmdbs.c, + gcc.target/arm/vfp-stmiad.c, gcc.target/arm/vfp-stmias.c: New. + 2011-02-28 Jason Merrill <jason@redhat.com> PR c++/47906 @@ -262,12 +393,10 @@ * g++.dg/ext/is_empty.C: Ditto. * g++.dg/ext/is_enum.C: Ditto. * g++.dg/ext/has_nothrow_constructor_odr.C: Ditto. - * g++.dg/ext/.C: Ditto. - * g++.dg/ext/.C: Ditto. * gnat.dg/opt11.adb: Ditto. * obj-c++.dg/pr45735.mm: Ditto. * obj-c++.dg/pr24393.mm: Ditto. - * obj-c++.dg/exceptions-2.cc: Ditto. + * obj-c++.dg/exceptions-2.mm: Ditto. * objc.dg/pr45735.m: Ditto. * objc.dg/pr24393.m: Ditto. diff --git a/gcc/testsuite/g++.dg/abi/mangle39.C b/gcc/testsuite/g++.dg/abi/mangle39.C index 7b2ee01262d..28963561065 100644 --- a/gcc/testsuite/g++.dg/abi/mangle39.C +++ b/gcc/testsuite/g++.dg/abi/mangle39.C @@ -1,5 +1,5 @@ // PR c++/42338 -// { dg-options "-std=c++0x -fabi-version=6" } +// { dg-options "-std=c++0x -fabi-version=5" } // { dg-final { scan-assembler "_Z1fIPiEDTcmppfp_Li0EET_" } } // { dg-final { scan-assembler "_Z1gIiEvRK1AIT_EDTixfL0p_Li0EE" } } diff --git a/gcc/testsuite/g++.dg/abi/mangle45.C b/gcc/testsuite/g++.dg/abi/mangle45.C index a4df773fbe5..3ce9abcb0e7 100644 --- a/gcc/testsuite/g++.dg/abi/mangle45.C +++ b/gcc/testsuite/g++.dg/abi/mangle45.C @@ -1,5 +1,5 @@ // Testcase for mangling of parameters used other than in a trailing return type -// { dg-options "-std=c++0x -fabi-version=6" } +// { dg-options "-std=c++0x -fabi-version=5" } template<class T> void f(T p, decltype(p)) { } // L = 1 template<class T> void g(T p, decltype(p) (*)()) { } // L = 1 diff --git a/gcc/testsuite/g++.dg/cpp0x/constexpr-ctor9.C b/gcc/testsuite/g++.dg/cpp0x/constexpr-ctor9.C new file mode 100644 index 00000000000..b7693f1e637 --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp0x/constexpr-ctor9.C @@ -0,0 +1,19 @@ +// PR c++/47774 +// { dg-options -std=c++0x } + +struct A +{ + A() {} +}; + +template <typename T> +struct array +{ + constexpr array() : mem() {} + T mem[7]; +}; + +int main() +{ + array<A> ar; +} diff --git a/gcc/testsuite/g++.dg/cpp0x/constexpr-non-const-arg2.C b/gcc/testsuite/g++.dg/cpp0x/constexpr-non-const-arg2.C new file mode 100644 index 00000000000..20e05c3c068 --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp0x/constexpr-non-const-arg2.C @@ -0,0 +1,16 @@ +// PR c++/47200 +// { dg-options "-std=c++0x -w" } + +template < int > struct duration +{ + constexpr int count (); + static constexpr duration min (); +}; + +constexpr int +f (duration < 0 > d, duration < 0 > ) +{ + return d.count (); +} + +static_assert (f (duration < 0 >::min (), duration < 0 > ()), ""); // { dg-error "non-constant|before its definition" } diff --git a/gcc/testsuite/g++.dg/cpp0x/decltype25.C b/gcc/testsuite/g++.dg/cpp0x/decltype25.C new file mode 100644 index 00000000000..c9559f1511a --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp0x/decltype25.C @@ -0,0 +1,20 @@ +// PR c++/47851 +// { dg-options -std=c++0x } + +struct Type { + void display_type(); + void display_type() const { } +}; + +typedef Type const ConstType; + +struct ConvertibleToType { + operator Type&() { return *reinterpret_cast<Type*>(this); } +}; + +int main () +{ + // Both lines should call the const variant. + (true ? ConvertibleToType() : ConstType()).display_type(); + decltype((true ? ConvertibleToType() : ConstType()))().display_type(); +} diff --git a/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-98.C b/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-98.C new file mode 100644 index 00000000000..ff1085f30c2 --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-98.C @@ -0,0 +1,8 @@ +// PR c++/46159 +// { dg-options -std=c++98 } + +void +f() +{ + int **p = new(int(*[2])); +} diff --git a/gcc/testsuite/g++.dg/cpp0x/regress/bitfield-err1.C b/gcc/testsuite/g++.dg/cpp0x/regress/bitfield-err1.C new file mode 100644 index 00000000000..a2e9d47b578 --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp0x/regress/bitfield-err1.C @@ -0,0 +1,9 @@ +// PR c++/46282 +// { dg-options -std=c++0x } + +template<int> +class A +{ + A : i() {} // { dg-message "" } + int i; +}; diff --git a/gcc/testsuite/g++.dg/cpp0x/regress/condition1.C b/gcc/testsuite/g++.dg/cpp0x/regress/condition1.C new file mode 100644 index 00000000000..0346764f79b --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp0x/regress/condition1.C @@ -0,0 +1,80 @@ +// PR c++/47950 +// { dg-options -std=c++0x } + +template <typename T> struct empty +{ + // allow success case to build (not relevant to bug) + operator bool() { return true; } +}; + +template <typename T> struct from_int +{ + from_int(int) {} + + // allow success case to build (not relevant to bug) + operator bool() { return true; } +}; + +template <typename T> +from_int<T> via_function(T v) +{ + return from_int<T>(v); +} + +template <typename T> +void f() +{ + // ********* this section compiles *********** + + // these plain initializers work fine + from_int<int> a = 7; + from_int<int> b = from_int<int>(7); + empty<int> c = empty<int>(); + from_int<T> ta = 7; + from_int<T> tb = from_int<T>(7); + empty<T> tc = empty<T>(); + + // these dependent condition decls work fine + if (empty<T> x = empty<T>()) + ; + if (from_int<T> x = 7) + ; + if (from_int<T> x = from_int<T>(7)) + ; + if (from_int<T> x = via_function(T())) + ; + + // this non-dependent condition decl using conversion works fine + if (from_int<int> x = 7) + ; + + // these non-dependent condition decls using conversion or braced- + // initialization work fine (in c++0x mode only course) + #if __GXX_EXPERIMENTAL_CXX0X__ + if (empty<int> x {}) + ; + if (from_int<int> x {7}) + ; + #endif + + // ********** this section fails in C++0x *********** + + // the following non-dependent condition decls cause an assertion + // failure in + // + // tsubst_copy_and_build, at cp/pt.c:13370 + // + // in C++0x mode + // + if (empty<int> x = empty<int>()) + ; + if (from_int<int> x = from_int<int>(7)) + ; + if (from_int<int> x = via_function(7)) + ; +} + +int main() +{ + f<int>(); +} diff --git a/gcc/testsuite/g++.dg/cpp0x/trailing1.C b/gcc/testsuite/g++.dg/cpp0x/trailing1.C index b36d1aadb89..f637857b427 100644 --- a/gcc/testsuite/g++.dg/cpp0x/trailing1.C +++ b/gcc/testsuite/g++.dg/cpp0x/trailing1.C @@ -1,5 +1,5 @@ // Tests for late-specified return type. -// { dg-options "-std=c++0x -fabi-version=6" } +// { dg-options "-std=c++0x -fabi-version=5" } auto f() -> int { diff --git a/gcc/testsuite/g++.dg/gomp/pr47963.C b/gcc/testsuite/g++.dg/gomp/pr47963.C new file mode 100644 index 00000000000..7c94e6422a7 --- /dev/null +++ b/gcc/testsuite/g++.dg/gomp/pr47963.C @@ -0,0 +1,11 @@ +// PR c/47963 +// { dg-do compile } +// { dg-options "-fopenmp" } + +void +foo (float n) +{ + int A[n][n]; // { dg-error "has non-integral type" } +#pragma omp parallel private(A) + ; +} diff --git a/gcc/testsuite/g++.dg/inherit/covariant18.C b/gcc/testsuite/g++.dg/inherit/covariant18.C new file mode 100644 index 00000000000..31e62165e7c --- /dev/null +++ b/gcc/testsuite/g++.dg/inherit/covariant18.C @@ -0,0 +1,41 @@ +// PR c++/47873 +// { dg-do run } + +struct Base +{ + virtual ~Base(){} + + virtual Base& This() { return *this; } +}; + + +struct Ent : virtual Base +{ + void *m_Body; + + Ent& This() { return *this; } + + virtual Ent& body() + { + return This(); + } + +}; + + +struct Msg : virtual Ent +{ + Msg() + { + body(); + } + + Msg& This() { return *this; } +}; + +int main() +{ + Msg m; + + return 0; +} diff --git a/gcc/testsuite/g++.dg/inherit/covariant19.C b/gcc/testsuite/g++.dg/inherit/covariant19.C new file mode 100644 index 00000000000..22c2b0eb6f6 --- /dev/null +++ b/gcc/testsuite/g++.dg/inherit/covariant19.C @@ -0,0 +1,14 @@ +// PR c++/46220 +// According to the letter of the standard this is invalid, +// but that seems like a bug. + +class Baz; +class Foo { +public: + virtual const Baz* getBaz() = 0; +}; +class Bar : public Foo { +public: + Baz* getBaz(); +}; + diff --git a/gcc/testsuite/g++.dg/template/crash106.C b/gcc/testsuite/g++.dg/template/crash106.C new file mode 100644 index 00000000000..c2d117e03a0 --- /dev/null +++ b/gcc/testsuite/g++.dg/template/crash106.C @@ -0,0 +1,12 @@ +// PR c++/47974 + +typedef double T; + +struct A +{ + template<T> void foo(); // { dg-error "type" } +}; + +template<T N = 0, void (A::*)() = &A::foo<N> > struct B {}; // { dg-error "type|declared" } + +B<> b; // { dg-error "type|declaration" } diff --git a/gcc/testsuite/g++.dg/template/pseudodtor6.C b/gcc/testsuite/g++.dg/template/pseudodtor6.C new file mode 100644 index 00000000000..4438b6ffb33 --- /dev/null +++ b/gcc/testsuite/g++.dg/template/pseudodtor6.C @@ -0,0 +1,9 @@ +// PR c++/47971 + +template <typename> struct S +{ + typedef double T; + S () { T ().~T (); } +}; + +S<double> s; diff --git a/gcc/testsuite/gcc.c-torture/compile/pr47967.c b/gcc/testsuite/gcc.c-torture/compile/pr47967.c new file mode 100644 index 00000000000..cc2c213974e --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/compile/pr47967.c @@ -0,0 +1,17 @@ +/* PR tree-optimization/47967 */ + +extern void abort (void); +static void bar (); + +void +foo () +{ + bar (1); +} + +static void +bar (double i) +{ + if (i) + abort (); +} diff --git a/gcc/testsuite/gcc.c-torture/execute/pr47925.c b/gcc/testsuite/gcc.c-torture/execute/pr47925.c new file mode 100644 index 00000000000..89f54c13a55 --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/execute/pr47925.c @@ -0,0 +1,24 @@ +struct s { volatile struct s *next; }; + +void __attribute__((noinline)) +bar (int ignored, int n) +{ + asm volatile (""); +} + +int __attribute__((noinline)) +foo (volatile struct s *ptr, int n) +{ + int i; + + bar (0, n); + for (i = 0; i < n; i++) + ptr = ptr->next; +} + +int main (void) +{ + volatile struct s rec = { &rec }; + foo (&rec, 10); + return 0; +} diff --git a/gcc/testsuite/gcc.dg/gomp/pr47963.c b/gcc/testsuite/gcc.dg/gomp/pr47963.c new file mode 100644 index 00000000000..636a9542c32 --- /dev/null +++ b/gcc/testsuite/gcc.dg/gomp/pr47963.c @@ -0,0 +1,11 @@ +/* PR c/47963 */ +/* { dg-do compile } */ +/* { dg-options "-fopenmp" } */ + +void +foo (float n) +{ + int A[n][n]; /* { dg-error "has non-integer type" } */ +#pragma omp parallel private(A) + ; +} diff --git a/gcc/testsuite/gcc.dg/lto/pr47924_0.c b/gcc/testsuite/gcc.dg/lto/pr47924_0.c new file mode 100644 index 00000000000..f7fdb44b073 --- /dev/null +++ b/gcc/testsuite/gcc.dg/lto/pr47924_0.c @@ -0,0 +1,19 @@ +/* { dg-lto-do link } */ +/* { dg-lto-options {{-O2 -flto}} } */ + +extern void link_error (void); +short *p __attribute__((used)); +int i __attribute__((used)); + +int main() +{ + if (i == 0) + return; + + *p = 0; + + if (i == 0) + link_error (); + + return 0; +} diff --git a/gcc/testsuite/gcc.dg/pr47893.c b/gcc/testsuite/gcc.dg/pr47893.c new file mode 100644 index 00000000000..317d95d3fb3 --- /dev/null +++ b/gcc/testsuite/gcc.dg/pr47893.c @@ -0,0 +1,187 @@ +/* PR middle-end/47893 */ +/* { dg-do run } */ +/* { dg-options "-O2" } */ +/* { dg-options "-O2 -mtune=atom -fno-omit-frame-pointer -fno-strict-aliasing" { target { { i?86-*-* x86_64-*-* } && ilp32 } } } */ + +extern void abort (void); + +struct S +{ + unsigned s1:4, s2:2, s3:2, s4:2, s5:2, s6:1, s7:1, s8:1, s9:1, s10:1; + int s11:16; unsigned s12:4; int s13:16; unsigned s14:2; + int s15:16; unsigned s16:4; int s17:16; unsigned s18:2; +}; + +struct T +{ + unsigned t[3]; +}; + +struct U +{ + unsigned u1, u2; +}; + +struct V; + +struct W +{ + char w1[24]; struct V *w2; unsigned w3; char w4[28912]; + unsigned int w5; char w6[60]; +}; + +struct X +{ + unsigned int x[2]; +}; + +struct V +{ + int v1; + struct X v2[3]; + char v3[28]; +}; + +struct Y +{ + void *y1; + char y2[3076]; + struct T y3[32]; + char y4[1052]; +}; + +volatile struct S v1 = { .s15 = -1, .s16 = 15, .s17 = -1, .s18 = 3 }; + +__attribute__ ((noinline, noclone)) +int +fn1 (int x) +{ + int r; + __asm__ volatile ("" : "=r" (r) : "0" (1), "r" (x) : "memory"); + return r; +} + +volatile int cnt; + +__attribute__ ((noinline, noclone)) +#ifdef __i386__ +__attribute__ ((regparm (2))) +#endif +struct S +fn2 (struct Y *x, const struct X *y) +{ + if (++cnt > 1) + abort (); + __asm__ volatile ("" : : "r" (x), "r" (y) : "memory"); + return v1; +} + +__attribute__ ((noinline, noclone)) +void fn3 (void *x, unsigned y, const struct S *z, unsigned w) +{ + __asm__ volatile ("" : : "r" (x), "r" (y), "r" (z), "r" (w) : "memory"); +} + +volatile struct U v2; + +__attribute__ ((noinline, noclone)) +struct U +fn4 (void *x, unsigned y) +{ + __asm__ volatile ("" : : "r" (x), "r" (y) : "memory"); + return v2; +} + +__attribute__ ((noinline, noclone)) +struct S +fn5 (void *x) +{ + __asm__ volatile ("" : : "r" (x) : "memory"); + return v1; +} + +volatile struct T v3; + +__attribute__ ((noinline, noclone)) +struct T fn6 (void *x) +{ + __asm__ volatile ("" : : "r" (x) : "memory"); + return v3; +} + +__attribute__ ((noinline, noclone)) +struct T fn7 (void *x, unsigned y, unsigned z) +{ + __asm__ volatile ("" : : "r" (x), "r" (y), "r" (z) : "memory"); + return v3; +} + +static void +fn8 (struct Y *x, const struct V *y) +{ + void *a = x->y1; + struct S b[4]; + unsigned i, c; + c = fn1 (y->v1); + for (i = 0; i < c; i++) + b[i] = fn2 (x, &y->v2[i]); + fn3 (a, y->v1, b, c); +} + +static inline void +fn9 (void *x, struct S y __attribute__((unused))) +{ + fn4 (x, 8); +} + +static void +fn10 (struct Y *x) +{ + void *a = x->y1; + struct T b __attribute__((unused)) = fn6 (a); + fn9 (a, fn5 (a)); +} + +__attribute__((noinline, noclone)) +int +fn11 (unsigned int x, void *y, const struct W *z, + unsigned int w, const char *v, const char *u) +{ + struct Y a, *t; + unsigned i; + t = &a; + __builtin_memset (t, 0, sizeof *t); + t->y1 = y; + if (x == 0) + { + if (z->w3 & 1) + fn10 (t); + for (i = 0; i < w; i++) + { + if (v[i] == 0) + t->y3[i] = fn7 (y, 0, u[i]); + else + return 0; + } + } + else + for (i = 0; i < w; i++) + t->y3[i] = fn7 (y, v[i], u[i]); + for (i = 0; i < z->w5; i++) + fn8 (t, &z->w2[i]); + return 0; +} + +volatile int i; +const char *volatile p = ""; + +int +main () +{ + struct V v = { .v1 = 0 }; + struct W w = { .w5 = 1, .w2 = &v }; + fn11 (i + 1, (void *) p, &w, i, (const char *) p, (const char *) p); + if (cnt != 1) + abort (); + return 0; +} diff --git a/gcc/testsuite/gcc.dg/pr47899.c b/gcc/testsuite/gcc.dg/pr47899.c new file mode 100644 index 00000000000..c83bb85e314 --- /dev/null +++ b/gcc/testsuite/gcc.dg/pr47899.c @@ -0,0 +1,26 @@ +/* PR rtl-optimization/47899 */ +/* { dg-do compile } */ +/* { dg-options "-O -funroll-loops" } */ + +extern unsigned int a, b, c; +extern int d; + +static int +foo (void) +{ +lab: + if (b) + for (d = 0; d >= 0; d--) + if (a || c) + for (; c; c++) + ; + else + goto lab; +} + +int +main () +{ + foo (); + return 0; +} diff --git a/gcc/testsuite/gcc.dg/torture/pr47890.c b/gcc/testsuite/gcc.dg/torture/pr47890.c new file mode 100644 index 00000000000..83cb5e6d936 --- /dev/null +++ b/gcc/testsuite/gcc.dg/torture/pr47890.c @@ -0,0 +1,9 @@ +/* { dg-do compile } */ + +void f(char *s) +{ + signed short i; + + for (i = 0; i < 19; i = i + 1) + s[i] = i; +} diff --git a/gcc/testsuite/gcc.dg/torture/pr47968.c b/gcc/testsuite/gcc.dg/torture/pr47968.c new file mode 100644 index 00000000000..4f33cf1f349 --- /dev/null +++ b/gcc/testsuite/gcc.dg/torture/pr47968.c @@ -0,0 +1,11 @@ +/* { dg-do compile } */ +/* { dg-options "-w -Wno-psabi" } */ + +typedef __attribute__ ((vector_size (16))) float float4; +typedef __attribute__ ((vector_size (16))) double double2; + +float foo (double2 d2) +{ + float4 f4 = (float4) d2; + return *(float *) &f4; +} diff --git a/gcc/testsuite/gcc.dg/torture/pr47975.c b/gcc/testsuite/gcc.dg/torture/pr47975.c new file mode 100644 index 00000000000..e2a72af4915 --- /dev/null +++ b/gcc/testsuite/gcc.dg/torture/pr47975.c @@ -0,0 +1,10 @@ +/* { dg-do compile } */ +/* { dg-options "-fno-common" { target { hppa*-*-hpux* } } } */ + +int __attribute__ ((vector_size (32))) x; + +void +foo (void) +{ + x <<= x; +} diff --git a/gcc/testsuite/gcc.target/arm/vfp-ldmdbd.c b/gcc/testsuite/gcc.target/arm/vfp-ldmdbd.c new file mode 100644 index 00000000000..c540108723f --- /dev/null +++ b/gcc/testsuite/gcc.target/arm/vfp-ldmdbd.c @@ -0,0 +1,15 @@ +/* { dg-do compile } */ +/* { dg-require-effective-target arm_vfp_ok } */ +/* { dg-options "-O2 -mfpu=vfp -mfloat-abi=softfp" } */ + +extern void bar (double); + +void +foo (double *p, double a, int n) +{ + do + bar (*--p + a); + while (n--); +} + +/* { dg-final { scan-assembler "fldmdbd" } } */ diff --git a/gcc/testsuite/gcc.target/arm/vfp-ldmdbs.c b/gcc/testsuite/gcc.target/arm/vfp-ldmdbs.c new file mode 100644 index 00000000000..83849c8b5af --- /dev/null +++ b/gcc/testsuite/gcc.target/arm/vfp-ldmdbs.c @@ -0,0 +1,15 @@ +/* { dg-do compile } */ +/* { dg-require-effective-target arm_vfp_ok } */ +/* { dg-options "-O2 -mfpu=vfp -mfloat-abi=softfp" } */ + +extern void baz (float); + +void +foo (float *p, float a, int n) +{ + do + bar (*--p + a); + while (n--); +} + +/* { dg-final { scan-assembler "fldmdbs" } } */ diff --git a/gcc/testsuite/gcc.target/arm/vfp-ldmiad.c b/gcc/testsuite/gcc.target/arm/vfp-ldmiad.c new file mode 100644 index 00000000000..1f849194f49 --- /dev/null +++ b/gcc/testsuite/gcc.target/arm/vfp-ldmiad.c @@ -0,0 +1,15 @@ +/* { dg-do compile } */ +/* { dg-require-effective-target arm_vfp_ok } */ +/* { dg-options "-O2 -mfpu=vfp -mfloat-abi=softfp" } */ + +extern void bar (double); + +void +foo (double *p, double a, int n) +{ + do + bar (*p++ + a); + while (n--); +} + +/* { dg-final { scan-assembler "fldmiad" } } */ diff --git a/gcc/testsuite/gcc.target/arm/vfp-ldmias.c b/gcc/testsuite/gcc.target/arm/vfp-ldmias.c new file mode 100644 index 00000000000..061cdd9564d --- /dev/null +++ b/gcc/testsuite/gcc.target/arm/vfp-ldmias.c @@ -0,0 +1,15 @@ +/* { dg-do compile } */ +/* { dg-require-effective-target arm_vfp_ok } */ +/* { dg-options "-O2 -mfpu=vfp -mfloat-abi=softfp" } */ + +extern void baz (float); + +void +foo (float *p, float a, int n) +{ + do + bar (*p++ + a); + while (n--); +} + +/* { dg-final { scan-assembler "fldmias" } } */ diff --git a/gcc/testsuite/gcc.target/arm/vfp-stmdbd.c b/gcc/testsuite/gcc.target/arm/vfp-stmdbd.c new file mode 100644 index 00000000000..f80c4038379 --- /dev/null +++ b/gcc/testsuite/gcc.target/arm/vfp-stmdbd.c @@ -0,0 +1,14 @@ +/* { dg-do compile } */ +/* { dg-require-effective-target arm_vfp_ok } */ +/* { dg-options "-O2 -mfpu=vfp -mfloat-abi=softfp" } */ + +void +foo (double *p, double a, double b, int n) +{ + double c = a + b; + do + *--p = c; + while (n--); +} + +/* { dg-final { scan-assembler "fstmdbd" } } */ diff --git a/gcc/testsuite/gcc.target/arm/vfp-stmdbs.c b/gcc/testsuite/gcc.target/arm/vfp-stmdbs.c new file mode 100644 index 00000000000..79b3c81e33c --- /dev/null +++ b/gcc/testsuite/gcc.target/arm/vfp-stmdbs.c @@ -0,0 +1,14 @@ +/* { dg-do compile } */ +/* { dg-require-effective-target arm_vfp_ok } */ +/* { dg-options "-O2 -mfpu=vfp -mfloat-abi=softfp" } */ + +void +foo (float *p, float a, float b, int n) +{ + float c = a + b; + do + *--p = c; + while (n--); +} + +/* { dg-final { scan-assembler "fstmdbs" } } */ diff --git a/gcc/testsuite/gcc.target/arm/vfp-stmiad.c b/gcc/testsuite/gcc.target/arm/vfp-stmiad.c new file mode 100644 index 00000000000..20742c26657 --- /dev/null +++ b/gcc/testsuite/gcc.target/arm/vfp-stmiad.c @@ -0,0 +1,14 @@ +/* { dg-do compile } */ +/* { dg-require-effective-target arm_vfp_ok } */ +/* { dg-options "-O2 -mfpu=vfp -mfloat-abi=softfp" } */ + +void +foo (double *p, double a, double b, int n) +{ + double c = a + b; + do + *p++ = c; + while (n--); +} + +/* { dg-final { scan-assembler "fstmiad" } } */ diff --git a/gcc/testsuite/gcc.target/arm/vfp-stmias.c b/gcc/testsuite/gcc.target/arm/vfp-stmias.c new file mode 100644 index 00000000000..05ce39987d4 --- /dev/null +++ b/gcc/testsuite/gcc.target/arm/vfp-stmias.c @@ -0,0 +1,14 @@ +/* { dg-do compile } */ +/* { dg-require-effective-target arm_vfp_ok } */ +/* { dg-options "-O2 -mfpu=vfp -mfloat-abi=softfp" } */ + +void +foo (float *p, float a, float b, int n) +{ + float c = a + b; + do + *p++ = c; + while (n--); +} + +/* { dg-final { scan-assembler "fstmias" } } */ diff --git a/gcc/testsuite/gfortran.dg/fmt_fw_d.f90 b/gcc/testsuite/gfortran.dg/fmt_fw_d.f90 new file mode 100644 index 00000000000..1af3bda55d8 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/fmt_fw_d.f90 @@ -0,0 +1,131 @@ +! { dg-do run }
+! { dg-options "-std=gnu" }
+! PR47567 Wrong output for small absolute values with F editing
+! Test case provided by Thomas Henlich
+call verify_fmt(1.2)
+call verify_fmt(-0.1)
+call verify_fmt(1e-7)
+call verify_fmt(1e-6)
+call verify_fmt(1e-5)
+call verify_fmt(1e-4)
+call verify_fmt(1e-3)
+call verify_fmt(1e-2)
+call verify_fmt(-1e-7)
+call verify_fmt(-1e-6)
+call verify_fmt(-1e-5)
+call verify_fmt(-1e-4)
+call verify_fmt(-1e-3)
+call verify_fmt(-1e-2)
+call verify_fmt(tiny(0.0))
+call verify_fmt(-tiny(0.0))
+call verify_fmt(0.0)
+call verify_fmt(-0.0)
+call verify_fmt(100.0)
+call verify_fmt(.12345)
+call verify_fmt(1.2345)
+call verify_fmt(12.345)
+call verify_fmt(123.45)
+call verify_fmt(1234.5)
+call verify_fmt(12345.6)
+call verify_fmt(123456.7)
+call verify_fmt(99.999)
+call verify_fmt(-100.0)
+call verify_fmt(-99.999)
+end
+
+! loop through values for w, d
+subroutine verify_fmt(x)
+ real, intent(in) :: x
+ integer :: w, d
+ character(len=80) :: str, str0
+ integer :: len, len0
+ character(len=80) :: fmt_w_d
+ logical :: result, have_num, verify_fmt_w_d
+
+ do d = 0, 10
+ have_num = .false.
+ do w = 1, 20
+ str = fmt_w_d(x, w, d)
+ len = len_trim(str)
+
+ result = verify_fmt_w_d(x, str, len, w, d)
+ if (.not. have_num .and. result) then
+ have_num = .true.
+ str0 = fmt_w_d(x, 0, d)
+ len0 = len_trim(str0)
+ if (len /= len0) then
+ call errormsg(x, str0, len0, 0, d, "selected width is wrong")
+ else
+ if (str(:len) /= str0(:len0)) call errormsg(x, str0, len0, 0, d, "output is wrong")
+ end if
+ end if
+ end do
+ end do
+
+end subroutine
+
+! checks for standard-compliance, returns .true. if field contains number, .false. on overflow
+function verify_fmt_w_d(x, str, len, w, d)
+ real, intent(in) :: x
+ character(len=80), intent(in) :: str
+ integer, intent(in) :: len
+ integer, intent(in) :: w, d
+ logical :: verify_fmt_w_d
+ integer :: pos
+ character :: decimal_sep = "."
+
+ verify_fmt_w_d = .false.
+
+ ! check if string is all asterisks
+ pos = verify(str(:len), "*")
+ if (pos == 0) return
+
+ ! check if string contains a digit
+ pos = scan(str(:len), "0123456789")
+ if (pos == 0) call errormsg(x, str, len, w, d, "no digits")
+
+ ! contains decimal separator?
+ pos = index(str(:len), decimal_sep)
+ if (pos == 0) call errormsg(x, str, len, w, d, "no decimal separator")
+
+ ! negative and starts with minus?
+ if (sign(1., x) < 0.) then
+ pos = verify(str, " ")
+ if (pos == 0) call errormsg(x, str, len, w, d, "only spaces")
+ if (str(pos:pos) /= "-") call errormsg(x, str, len, w, d, "no minus sign")
+ end if
+
+ verify_fmt_w_d = .true.
+end function
+
+function fmt_w_d(x, w, d)
+ real, intent(in) :: x
+ integer, intent(in) :: w, d
+ character(len=*) :: fmt_w_d
+ character(len=10) :: fmt, make_fmt
+
+ fmt = make_fmt(w, d)
+ write (fmt_w_d, fmt) x
+end function
+
+function make_fmt(w, d)
+ integer, intent(in) :: w, d
+ character(len=10) :: make_fmt
+
+ write (make_fmt,'("(f",i0,".",i0,")")') w, d
+end function
+
+subroutine errormsg(x, str, len, w, d, reason)
+ real, intent(in) :: x
+ character(len=80), intent(in) :: str
+ integer, intent(in) :: len, w, d
+ character(len=*), intent(in) :: reason
+ integer :: fmt_len
+ character(len=10) :: fmt, make_fmt
+
+ fmt = make_fmt(w, d)
+ fmt_len = len_trim(fmt)
+
+ !print *, "print '", fmt(:fmt_len), "', ", x, " ! => ", str(:len), ": ", reason
+ call abort
+end subroutine
diff --git a/gcc/testsuite/gfortran.dg/lto/pr46911_0.f b/gcc/testsuite/gfortran.dg/lto/pr46911_0.f new file mode 100644 index 00000000000..fce959750ae --- /dev/null +++ b/gcc/testsuite/gfortran.dg/lto/pr46911_0.f @@ -0,0 +1,6 @@ +! { dg-lto-do link } +! { dg-lto-options {{ -O2 -flto -g }} } +! { dg-extra-ld-options "-r -nostdlib" } + common/main1/ eps(2) + call dalie6s(iqmod6,1,wx,cor6d) + end diff --git a/gcc/testsuite/obj-c++.dg/gnu-api-2-property.mm b/gcc/testsuite/obj-c++.dg/gnu-api-2-property.mm index b74d0609d65..953e9bb156b 100644 --- a/gcc/testsuite/obj-c++.dg/gnu-api-2-property.mm +++ b/gcc/testsuite/obj-c++.dg/gnu-api-2-property.mm @@ -25,23 +25,18 @@ + initialize { return self; } @end -@protocol MyProtocol -- (id) variable; -@end - -@protocol MySecondProtocol -- (id) setVariable: (id)value; -@end - -@interface MySubClass : MyRootClass <MyProtocol> -{ id variable_ivar; } -- (void) setVariable: (id)value; -- (id) variable; +@interface MySubClass : MyRootClass +{ + id propertyA; + id propertyB; +} +@property (assign, getter=getP, setter=setP:) id propertyA; +@property (assign, nonatomic) id propertyB; @end @implementation MySubClass -- (void) setVariable: (id)value { variable_ivar = value; } -- (id) variable { return variable_ivar; } +@synthesize propertyA; +@synthesize propertyB; @end @@ -49,7 +44,6 @@ int main () { /* Functions are tested in alphabetical order. */ - /* TODO: Test new ABI (when available). */ std::cout << "Testing property_getAttributes () ...\n"; { /* The Apple/NeXT runtime seems to crash on the following. */ @@ -57,9 +51,26 @@ int main () if (property_getAttributes (NULL) != NULL) abort (); #endif + + /* The GNU runtime doesn't support looking up properties at + runtime yet. */ +#ifdef __OBJC2__ + { + objc_property_t property; + + property = class_getProperty (objc_getClass ("MySubClass"), "propertyA"); + if (std::strcmp (property_getAttributes (property), + "T@,GgetP,SsetP:,VpropertyA") != 0) + abort (); + + property = class_getProperty (objc_getClass ("MySubClass"), "propertyB"); + if (std::strcmp (property_getAttributes (property), + "T@,N,VpropertyB") != 0) + abort (); + } +#endif } - /* TODO: Test new ABI (when available). */ std::cout << "Testing property_getName () ...\n"; { /* The Apple/NeXT runtime seems to crash on the following. */ @@ -68,6 +79,22 @@ int main () if (property_getName (NULL) != NULL) abort (); #endif + + /* The GNU runtime doesn't support looking up properties at + runtime yet. */ +#ifdef __OBJC2__ + { + objc_property_t property; + + property = class_getProperty (objc_getClass ("MySubClass"), "propertyA"); + if (std::strcmp (property_getName (property), "propertyA") != 0) + abort (); + + property = class_getProperty (objc_getClass ("MySubClass"), "propertyB"); + if (std::strcmp (property_getName (property), "propertyB") != 0) + abort (); + } +#endif } return (0); diff --git a/gcc/testsuite/obj-c++.dg/gnu-api-2-sel.mm b/gcc/testsuite/obj-c++.dg/gnu-api-2-sel.mm index b00588c9360..ff50058566b 100644 --- a/gcc/testsuite/obj-c++.dg/gnu-api-2-sel.mm +++ b/gcc/testsuite/obj-c++.dg/gnu-api-2-sel.mm @@ -46,6 +46,21 @@ - (void) method { return; } @end +@interface ClassA : MyRootClass +- (id) conflictingSelectorMethod; +@end + +@implementation ClassA +- (id) conflictingSelectorMethod { return nil; } +@end + +@interface ClassB : MyRootClass +- (void) conflictingSelectorMethod; +@end + +@implementation ClassB +- (void) conflictingSelectorMethod { return; } +@end int main () { @@ -134,6 +149,13 @@ int main () if (selector != NULL) abort (); + + /* Now try a selector with multiple, conflicting types. NULL + should be returned. */ + selector = sel_getTypedSelector ("conflictingSelectorMethod"); + + if (selector != NULL) + abort (); } #endif diff --git a/gcc/testsuite/obj-c++.dg/property/property-encoding-1.mm b/gcc/testsuite/obj-c++.dg/property/property-encoding-1.mm new file mode 100644 index 00000000000..dc12c3137b9 --- /dev/null +++ b/gcc/testsuite/obj-c++.dg/property/property-encoding-1.mm @@ -0,0 +1,182 @@ +/* Contributed by Nicola Pero <nicola.pero@meta-innovation.com>, March 2011. */ +/* Test encoding properties. */ +/* { dg-do run } */ +/* { dg-skip-if "No API#2 pre-Darwin9" { *-*-darwin[5-8]* } { "-fnext-runtime" } { "" } } */ + +#include <objc/runtime.h> +#include <stdlib.h> +#include <stdio.h> +#include <string.h> + +@interface MyRootClass +{ Class isa; } ++ alloc; +- init; ++ initialize; +@end + +@implementation MyRootClass ++ alloc { return class_createInstance (self, 0); } +- init { return self; } ++ initialize { return self; } +@end + +@interface MySubClass : MyRootClass +{ + char char_property; + short short_property; + int int_property; + long long_property; + float float_property; + double double_property; + int *int_pointer_property; + + id propertyA; + id propertyB; + id propertyC; + id propertyD; + int propertyE; + id propertyF; + + id other_variable; +} +@property char char_property; +@property short short_property; +@property int int_property; +@property long long_property; +@property float float_property; +@property double double_property; +@property int *int_pointer_property; + +@property (assign, getter=getP, setter=setP:) id propertyA; +@property (assign) id propertyB; +@property (copy) id propertyC; +@property (retain) id propertyD; +@property (nonatomic) int propertyE; +@property (nonatomic, readonly, copy) id propertyF; + +@property (assign) id propertyG; +@property (assign, readonly, getter=X) id propertyH; +@end + +@implementation MySubClass +@synthesize char_property; +@synthesize short_property; +@synthesize int_property; +@synthesize long_property; +@synthesize float_property; +@synthesize double_property; +@synthesize int_pointer_property; + +@synthesize propertyA; +@synthesize propertyB; +@synthesize propertyC; +@synthesize propertyD; +@synthesize propertyE; +@synthesize propertyF; + +@synthesize propertyG = other_variable; +@dynamic propertyH; +@end + +#ifdef __OBJC2__ +void error (objc_property_t p) +{ + printf ("Error - property_getAttributes (\"%s\") returns \"%s\"\n", + property_getName (p), + property_getAttributes (p)); + abort (); +} + +/* Concatenate 3 strings and return the result. */ +char *concat (const char *a, const char *b, const char *c) +{ + /* We happily leak memory here. This is a test. */ + char *x = (char *)malloc (sizeof (char) * 128); + snprintf (x, 128, "%s%s%s", a, b, c); + return x; +} + +#endif + +int main (void) +{ +#ifdef __OBJC2__ + Class c = objc_getClass ("MySubClass"); + objc_property_t p; + + p = class_getProperty (c, "char_property"); + /* Usually we expect "Tc,Vchar_property", but if a char is of + different size, it may be encoded differently than "c". */ + if (strcmp (concat ("T", @encode (char), ",Vchar_property"), + property_getAttributes (p)) != 0) + error (p); + + p = class_getProperty (c, "short_property"); + if (strcmp (concat ("T", @encode (short), ",Vshort_property"), + property_getAttributes (p)) != 0) + error (p); + + p = class_getProperty (c, "int_property"); + if (strcmp (concat ("T", @encode (int), ",Vint_property"), + property_getAttributes (p)) != 0) + error (p); + + p = class_getProperty (c, "long_property"); + if (strcmp (concat ("T", @encode (long), ",Vlong_property"), + property_getAttributes (p)) != 0) + error (p); + + p = class_getProperty (c, "float_property"); + if (strcmp (concat ("T", @encode (float), ",Vfloat_property"), + property_getAttributes (p)) != 0) + error (p); + + p = class_getProperty (c, "double_property"); + if (strcmp (concat ("T", @encode (double), ",Vdouble_property"), + property_getAttributes (p)) != 0) + error (p); + + p = class_getProperty (c, "int_pointer_property"); + if (strcmp (concat ("T", @encode (int *), ",Vint_pointer_property"), + property_getAttributes (p)) != 0) + error (p); + + /* Objects are always encoded as '@' hence the string does not + depend on the architecture. */ + p = class_getProperty (c, "propertyA"); + if (strcmp ("T@,GgetP,SsetP:,VpropertyA", property_getAttributes (p)) != 0) + error (p); + + p = class_getProperty (c, "propertyB"); + if (strcmp ("T@,VpropertyB", property_getAttributes (p)) != 0) + error (p); + + p = class_getProperty (c, "propertyC"); + if (strcmp ("T@,C,VpropertyC", property_getAttributes (p)) != 0) + error (p); + + p = class_getProperty (c, "propertyD"); + if (strcmp ("T@,&,VpropertyD", property_getAttributes (p)) != 0) + error (p); + + p = class_getProperty (c, "propertyE"); + if (strcmp (concat ("T", @encode (int), ",N,VpropertyE"), + property_getAttributes (p)) != 0) + error (p); + + p = class_getProperty (c, "propertyF"); + if (strcmp ("T@,R,C,N,VpropertyF", property_getAttributes (p)) != 0) + error (p); + + p = class_getProperty (c, "propertyG"); + if (strcmp ("T@,Vother_variable", property_getAttributes (p)) != 0) + error (p); + + p = class_getProperty (c, "propertyH"); + if (strcmp ("T@,R,D,GX", property_getAttributes (p)) != 0) + error (p); +#endif + + return 0; +} diff --git a/gcc/testsuite/objc.dg/gnu-api-2-property.m b/gcc/testsuite/objc.dg/gnu-api-2-property.m index 16307da77a0..12c0d8b98e3 100644 --- a/gcc/testsuite/objc.dg/gnu-api-2-property.m +++ b/gcc/testsuite/objc.dg/gnu-api-2-property.m @@ -25,23 +25,18 @@ + initialize { return self; } @end -@protocol MyProtocol -- (id) variable; -@end - -@protocol MySecondProtocol -- (id) setVariable: (id)value; -@end - -@interface MySubClass : MyRootClass <MyProtocol> -{ id variable_ivar; } -- (void) setVariable: (id)value; -- (id) variable; +@interface MySubClass : MyRootClass +{ + id propertyA; + id propertyB; +} +@property (assign, getter=getP, setter=setP:) id propertyA; +@property (assign, nonatomic) id propertyB; @end @implementation MySubClass -- (void) setVariable: (id)value { variable_ivar = value; } -- (id) variable { return variable_ivar; } +@synthesize propertyA; +@synthesize propertyB; @end @@ -49,7 +44,6 @@ int main(int argc, void **args) { /* Functions are tested in alphabetical order. */ - /* TODO: Test new ABI (when available). */ printf ("Testing property_getAttributes () ...\n"); { /* The Apple/NeXT runtime seems to crash on the following. */ @@ -57,9 +51,26 @@ int main(int argc, void **args) if (property_getAttributes (NULL) != NULL) abort (); #endif + + /* The GNU runtime doesn't support looking up properties at + runtime yet. */ +#ifdef __OBJC2__ + { + objc_property_t property; + + property = class_getProperty (objc_getClass ("MySubClass"), "propertyA"); + if (strcmp (property_getAttributes (property), + "T@,GgetP,SsetP:,VpropertyA") != 0) + abort (); + + property = class_getProperty (objc_getClass ("MySubClass"), "propertyB"); + if (strcmp (property_getAttributes (property), + "T@,N,VpropertyB") != 0) + abort (); + } +#endif } - /* TODO: Test new ABI (when available). */ printf ("Testing property_getName () ...\n"); { /* The Apple/NeXT runtime seems to crash on the following. */ @@ -67,6 +78,22 @@ int main(int argc, void **args) if (property_getName (NULL) != NULL) abort (); #endif + + /* The GNU runtime doesn't support looking up properties at + runtime yet. */ +#ifdef __OBJC2__ + { + objc_property_t property; + + property = class_getProperty (objc_getClass ("MySubClass"), "propertyA"); + if (strcmp (property_getName (property), "propertyA") != 0) + abort (); + + property = class_getProperty (objc_getClass ("MySubClass"), "propertyB"); + if (strcmp (property_getName (property), "propertyB") != 0) + abort (); + } +#endif } return 0; diff --git a/gcc/testsuite/objc.dg/gnu-api-2-sel.m b/gcc/testsuite/objc.dg/gnu-api-2-sel.m index 9a6aef28262..b71fdfab48c 100644 --- a/gcc/testsuite/objc.dg/gnu-api-2-sel.m +++ b/gcc/testsuite/objc.dg/gnu-api-2-sel.m @@ -46,6 +46,21 @@ - (void) method { return; } @end +@interface ClassA : MyRootClass +- (id) conflictingSelectorMethod; +@end + +@implementation ClassA +- (id) conflictingSelectorMethod { return nil; } +@end + +@interface ClassB : MyRootClass +- (void) conflictingSelectorMethod; +@end + +@implementation ClassB +- (void) conflictingSelectorMethod { return; } +@end int main(int argc, void **args) { @@ -134,6 +149,13 @@ int main(int argc, void **args) if (selector != NULL) abort (); + + /* Now try a selector with multiple, conflicting types. NULL + should be returned. */ + selector = sel_getTypedSelector ("conflictingSelectorMethod"); + + if (selector != NULL) + abort (); } #endif diff --git a/gcc/testsuite/objc.dg/property/property-encoding-1.m b/gcc/testsuite/objc.dg/property/property-encoding-1.m new file mode 100644 index 00000000000..dc12c3137b9 --- /dev/null +++ b/gcc/testsuite/objc.dg/property/property-encoding-1.m @@ -0,0 +1,182 @@ +/* Contributed by Nicola Pero <nicola.pero@meta-innovation.com>, March 2011. */ +/* Test encoding properties. */ +/* { dg-do run } */ +/* { dg-skip-if "No API#2 pre-Darwin9" { *-*-darwin[5-8]* } { "-fnext-runtime" } { "" } } */ + +#include <objc/runtime.h> +#include <stdlib.h> +#include <stdio.h> +#include <string.h> + +@interface MyRootClass +{ Class isa; } ++ alloc; +- init; ++ initialize; +@end + +@implementation MyRootClass ++ alloc { return class_createInstance (self, 0); } +- init { return self; } ++ initialize { return self; } +@end + +@interface MySubClass : MyRootClass +{ + char char_property; + short short_property; + int int_property; + long long_property; + float float_property; + double double_property; + int *int_pointer_property; + + id propertyA; + id propertyB; + id propertyC; + id propertyD; + int propertyE; + id propertyF; + + id other_variable; +} +@property char char_property; +@property short short_property; +@property int int_property; +@property long long_property; +@property float float_property; +@property double double_property; +@property int *int_pointer_property; + +@property (assign, getter=getP, setter=setP:) id propertyA; +@property (assign) id propertyB; +@property (copy) id propertyC; +@property (retain) id propertyD; +@property (nonatomic) int propertyE; +@property (nonatomic, readonly, copy) id propertyF; + +@property (assign) id propertyG; +@property (assign, readonly, getter=X) id propertyH; +@end + +@implementation MySubClass +@synthesize char_property; +@synthesize short_property; +@synthesize int_property; +@synthesize long_property; +@synthesize float_property; +@synthesize double_property; +@synthesize int_pointer_property; + +@synthesize propertyA; +@synthesize propertyB; +@synthesize propertyC; +@synthesize propertyD; +@synthesize propertyE; +@synthesize propertyF; + +@synthesize propertyG = other_variable; +@dynamic propertyH; +@end + +#ifdef __OBJC2__ +void error (objc_property_t p) +{ + printf ("Error - property_getAttributes (\"%s\") returns \"%s\"\n", + property_getName (p), + property_getAttributes (p)); + abort (); +} + +/* Concatenate 3 strings and return the result. */ +char *concat (const char *a, const char *b, const char *c) +{ + /* We happily leak memory here. This is a test. */ + char *x = (char *)malloc (sizeof (char) * 128); + snprintf (x, 128, "%s%s%s", a, b, c); + return x; +} + +#endif + +int main (void) +{ +#ifdef __OBJC2__ + Class c = objc_getClass ("MySubClass"); + objc_property_t p; + + p = class_getProperty (c, "char_property"); + /* Usually we expect "Tc,Vchar_property", but if a char is of + different size, it may be encoded differently than "c". */ + if (strcmp (concat ("T", @encode (char), ",Vchar_property"), + property_getAttributes (p)) != 0) + error (p); + + p = class_getProperty (c, "short_property"); + if (strcmp (concat ("T", @encode (short), ",Vshort_property"), + property_getAttributes (p)) != 0) + error (p); + + p = class_getProperty (c, "int_property"); + if (strcmp (concat ("T", @encode (int), ",Vint_property"), + property_getAttributes (p)) != 0) + error (p); + + p = class_getProperty (c, "long_property"); + if (strcmp (concat ("T", @encode (long), ",Vlong_property"), + property_getAttributes (p)) != 0) + error (p); + + p = class_getProperty (c, "float_property"); + if (strcmp (concat ("T", @encode (float), ",Vfloat_property"), + property_getAttributes (p)) != 0) + error (p); + + p = class_getProperty (c, "double_property"); + if (strcmp (concat ("T", @encode (double), ",Vdouble_property"), + property_getAttributes (p)) != 0) + error (p); + + p = class_getProperty (c, "int_pointer_property"); + if (strcmp (concat ("T", @encode (int *), ",Vint_pointer_property"), + property_getAttributes (p)) != 0) + error (p); + + /* Objects are always encoded as '@' hence the string does not + depend on the architecture. */ + p = class_getProperty (c, "propertyA"); + if (strcmp ("T@,GgetP,SsetP:,VpropertyA", property_getAttributes (p)) != 0) + error (p); + + p = class_getProperty (c, "propertyB"); + if (strcmp ("T@,VpropertyB", property_getAttributes (p)) != 0) + error (p); + + p = class_getProperty (c, "propertyC"); + if (strcmp ("T@,C,VpropertyC", property_getAttributes (p)) != 0) + error (p); + + p = class_getProperty (c, "propertyD"); + if (strcmp ("T@,&,VpropertyD", property_getAttributes (p)) != 0) + error (p); + + p = class_getProperty (c, "propertyE"); + if (strcmp (concat ("T", @encode (int), ",N,VpropertyE"), + property_getAttributes (p)) != 0) + error (p); + + p = class_getProperty (c, "propertyF"); + if (strcmp ("T@,R,C,N,VpropertyF", property_getAttributes (p)) != 0) + error (p); + + p = class_getProperty (c, "propertyG"); + if (strcmp ("T@,Vother_variable", property_getAttributes (p)) != 0) + error (p); + + p = class_getProperty (c, "propertyH"); + if (strcmp ("T@,R,D,GX", property_getAttributes (p)) != 0) + error (p); +#endif + + return 0; +} diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c index de30cfd67ef..fd8edb4a2e6 100644 --- a/gcc/tree-inline.c +++ b/gcc/tree-inline.c @@ -5156,6 +5156,7 @@ tree_function_versioning (tree old_decl, tree new_decl, args_to_skip, &vars); DECL_INITIAL (new_decl) = remap_blocks (DECL_INITIAL (id.src_fn), &id); + BLOCK_SUPERCONTEXT (DECL_INITIAL (new_decl)) = new_decl; declare_inline_vars (DECL_INITIAL (new_decl), vars); diff --git a/gcc/tree-ssa-alias.c b/gcc/tree-ssa-alias.c index 68321d29e24..bd8953b3d8e 100644 --- a/gcc/tree-ssa-alias.c +++ b/gcc/tree-ssa-alias.c @@ -178,7 +178,7 @@ ptr_deref_may_alias_decl_p (tree ptr, tree decl) || (TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != PARM_DECL && TREE_CODE (decl) != RESULT_DECL)) - return false; + return true; /* Disregard pointer offsetting. */ if (TREE_CODE (ptr) == POINTER_PLUS_EXPR) @@ -1080,7 +1080,12 @@ refs_may_alias_p_1 (ao_ref *ref1, ao_ref *ref2, bool tbaa_p) ao_ref_alias_set (ref2), -1, tbaa_p); + /* We really do not want to end up here, but returning true is safe. */ +#ifdef ENABLE_CHECKING gcc_unreachable (); +#else + return true; +#endif } bool diff --git a/gcc/tree-vect-loop.c b/gcc/tree-vect-loop.c index d474688ebec..7692eb8bc96 100644 --- a/gcc/tree-vect-loop.c +++ b/gcc/tree-vect-loop.c @@ -2886,6 +2886,10 @@ get_initial_def_for_induction (gimple iv_phi) gimple_assign_set_lhs (new_stmt, induc_def); si = gsi_start_bb (bb); gsi_insert_before (&si, new_stmt, GSI_SAME_STMT); + set_vinfo_for_stmt (new_stmt, + new_stmt_vec_info (new_stmt, loop_vinfo, NULL)); + STMT_VINFO_RELATED_STMT (vinfo_for_stmt (new_stmt)) + = STMT_VINFO_RELATED_STMT (vinfo_for_stmt (induction_phi)); } return induc_def; diff --git a/gcc/tree.h b/gcc/tree.h index a49e3358275..296e6de8ee4 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -1106,8 +1106,7 @@ extern void omp_clause_range_check_failed (const_tree, const char *, int, /* In VAR_DECL, PARM_DECL and RESULT_DECL nodes, nonzero means address of this is needed. So it cannot be in a register. - In a FUNCTION_DECL, nonzero means its address is needed. - So it must be compiled even if it is an inline function. + In a FUNCTION_DECL it has no meaning. In CONSTRUCTOR nodes, it means object constructed must be in memory. In LABEL_DECL nodes, it means a goto for this label has been seen from a place outside all binding contours that restore stack levels. diff --git a/gcc/varasm.c b/gcc/varasm.c index 76675cdeb0d..9887fe41b66 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -554,6 +554,15 @@ section * default_function_section (tree decl, enum node_frequency freq, bool startup, bool exit) { +#if defined HAVE_LD_EH_GC_SECTIONS && defined HAVE_LD_EH_GC_SECTIONS_BUG + /* Old GNU linkers have buggy --gc-section support, which sometimes + results in .gcc_except_table* sections being garbage collected. */ + if (decl + && DECL_SECTION_NAME (decl) + && DECL_HAS_IMPLICIT_SECTION_NAME_P (decl)) + return NULL; +#endif + if (!flag_reorder_functions || !targetm.have_named_sections) return NULL; diff --git a/include/ChangeLog b/include/ChangeLog index 709d9c60998..c4ec00efe6d 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2011-02-28 Kai Tietz <kai.tietz@onevision.com> + + * filenames.h (filename_ncmp): New prototype. + 2011-02-23 Kai Tietz <kai.tietz@onevision.com> * dwarf2.h (_ELF_DWARF2_H): Renamed to diff --git a/include/filenames.h b/include/filenames.h index ca23d325314..d4955df661c 100644 --- a/include/filenames.h +++ b/include/filenames.h @@ -73,6 +73,9 @@ extern "C" { extern int filename_cmp (const char *s1, const char *s2); #define FILENAME_CMP(s1, s2) filename_cmp(s1, s2) +extern int filename_ncmp (const char *s1, const char *s2, + size_t n); + #ifdef __cplusplus } #endif diff --git a/libcpp/po/ChangeLog b/libcpp/po/ChangeLog index f6104a3f81a..7ec355312e2 100644 --- a/libcpp/po/ChangeLog +++ b/libcpp/po/ChangeLog @@ -1,3 +1,7 @@ +2011-03-05 Joseph Myers <joseph@codesourcery.com> + + * cpplib.pot: Regenerate. + 2011-01-07 Joseph Myers <joseph@codesourcery.com> * ru.po: New. diff --git a/libcpp/po/cpplib.pot b/libcpp/po/cpplib.pot index c1dab899dc5..8b6a2177873 100644 --- a/libcpp/po/cpplib.pot +++ b/libcpp/po/cpplib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: http://gcc.gnu.org/bugs.html\n" -"POT-Creation-Date: 2010-12-18 16:00+0000\n" +"POT-Creation-Date: 2011-03-05 19:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -161,249 +161,249 @@ msgstr "" msgid "extra tokens at end of #%s directive" msgstr "" -#: directives.c:355 +#: directives.c:356 #, c-format msgid "#%s is a GCC extension" msgstr "" -#: directives.c:360 +#: directives.c:361 #, c-format msgid "#%s is a deprecated GCC extension" msgstr "" -#: directives.c:373 +#: directives.c:374 msgid "suggest not using #elif in traditional C" msgstr "" -#: directives.c:376 +#: directives.c:377 #, c-format msgid "traditional C ignores #%s with the # indented" msgstr "" -#: directives.c:380 +#: directives.c:381 #, c-format msgid "suggest hiding #%s from traditional C with an indented #" msgstr "" -#: directives.c:406 +#: directives.c:407 msgid "embedding a directive within macro arguments is not portable" msgstr "" -#: directives.c:426 +#: directives.c:427 msgid "style of line directive is a GCC extension" msgstr "" -#: directives.c:481 +#: directives.c:482 #, c-format msgid "invalid preprocessing directive #%s" msgstr "" -#: directives.c:549 +#: directives.c:550 msgid "\"defined\" cannot be used as a macro name" msgstr "" -#: directives.c:555 +#: directives.c:556 #, c-format msgid "\"%s\" cannot be used as a macro name as it is an operator in C++" msgstr "" -#: directives.c:558 +#: directives.c:559 #, c-format msgid "no macro name given in #%s directive" msgstr "" -#: directives.c:561 +#: directives.c:562 msgid "macro names must be identifiers" msgstr "" -#: directives.c:610 +#: directives.c:611 #, c-format msgid "undefining \"%s\"" msgstr "" -#: directives.c:665 +#: directives.c:666 msgid "missing terminating > character" msgstr "" -#: directives.c:724 +#: directives.c:725 #, c-format msgid "#%s expects \"FILENAME\" or <FILENAME>" msgstr "" -#: directives.c:770 +#: directives.c:771 #, c-format msgid "empty filename in #%s" msgstr "" -#: directives.c:780 +#: directives.c:781 msgid "#include nested too deeply" msgstr "" -#: directives.c:821 +#: directives.c:822 msgid "#include_next in primary source file" msgstr "" -#: directives.c:847 +#: directives.c:848 #, c-format msgid "invalid flag \"%s\" in line directive" msgstr "" -#: directives.c:907 +#: directives.c:908 msgid "unexpected end of file after #line" msgstr "" -#: directives.c:910 +#: directives.c:911 #, c-format msgid "\"%s\" after #line is not a positive integer" msgstr "" -#: directives.c:916 -#: directives.c:918 +#: directives.c:917 +#: directives.c:919 msgid "line number out of range" msgstr "" -#: directives.c:931 -#: directives.c:1011 +#: directives.c:932 +#: directives.c:1012 #, c-format msgid "\"%s\" is not a valid filename" msgstr "" -#: directives.c:971 +#: directives.c:972 #, c-format msgid "\"%s\" after # is not a positive integer" msgstr "" -#: directives.c:1064 -#: directives.c:1066 -#: directives.c:1068 +#: directives.c:1065 +#: directives.c:1067 +#: directives.c:1069 #, c-format msgid "%s" msgstr "" -#: directives.c:1092 +#: directives.c:1093 #, c-format msgid "invalid #%s directive" msgstr "" -#: directives.c:1155 +#: directives.c:1156 #, c-format msgid "registering pragmas in namespace \"%s\" with mismatched name expansion" msgstr "" -#: directives.c:1164 +#: directives.c:1165 #, c-format msgid "registering pragma \"%s\" with name expansion and no namespace" msgstr "" -#: directives.c:1182 +#: directives.c:1183 #, c-format msgid "registering \"%s\" as both a pragma and a pragma namespace" msgstr "" -#: directives.c:1185 +#: directives.c:1186 #, c-format msgid "#pragma %s %s is already registered" msgstr "" -#: directives.c:1188 +#: directives.c:1189 #, c-format msgid "#pragma %s is already registered" msgstr "" -#: directives.c:1218 +#: directives.c:1219 msgid "registering pragma with NULL handler" msgstr "" -#: directives.c:1430 +#: directives.c:1431 msgid "#pragma once in main file" msgstr "" -#: directives.c:1453 +#: directives.c:1454 msgid "invalid #pragma push_macro directive" msgstr "" -#: directives.c:1508 +#: directives.c:1509 msgid "invalid #pragma pop_macro directive" msgstr "" -#: directives.c:1563 +#: directives.c:1564 msgid "invalid #pragma GCC poison directive" msgstr "" -#: directives.c:1572 +#: directives.c:1573 #, c-format msgid "poisoning existing macro \"%s\"" msgstr "" -#: directives.c:1591 +#: directives.c:1592 msgid "#pragma system_header ignored outside include file" msgstr "" -#: directives.c:1616 +#: directives.c:1617 #, c-format msgid "cannot find source file %s" msgstr "" -#: directives.c:1620 +#: directives.c:1621 #, c-format msgid "current file is older than %s" msgstr "" -#: directives.c:1805 +#: directives.c:1806 msgid "_Pragma takes a parenthesized string literal" msgstr "" -#: directives.c:1916 +#: directives.c:1917 msgid "#else without #if" msgstr "" -#: directives.c:1921 +#: directives.c:1922 msgid "#else after #else" msgstr "" -#: directives.c:1923 -#: directives.c:1956 +#: directives.c:1924 +#: directives.c:1957 msgid "the conditional began here" msgstr "" -#: directives.c:1949 +#: directives.c:1950 msgid "#elif without #if" msgstr "" -#: directives.c:1954 +#: directives.c:1955 msgid "#elif after #else" msgstr "" -#: directives.c:1992 +#: directives.c:1993 msgid "#endif without #if" msgstr "" -#: directives.c:2072 +#: directives.c:2073 msgid "missing '(' after predicate" msgstr "" -#: directives.c:2087 +#: directives.c:2088 msgid "missing ')' to complete answer" msgstr "" -#: directives.c:2107 +#: directives.c:2108 msgid "predicate's answer is empty" msgstr "" -#: directives.c:2134 +#: directives.c:2135 msgid "assertion without predicate" msgstr "" -#: directives.c:2137 +#: directives.c:2138 msgid "predicate must be an identifier" msgstr "" -#: directives.c:2223 +#: directives.c:2224 #, c-format msgid "\"%s\" re-asserted" msgstr "" -#: directives.c:2514 +#: directives.c:2515 #, c-format msgid "unterminated #%s" msgstr "" diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 800c1490bcb..33e2836ea7f 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,22 @@ +2011-03-04 Janne Blomqvist <jb@gcc.gnu.org> + + PR libfortran/47802 + * intrinsics/ctime.c (strctime): Use builtins to check localtime_r + return type. + +2011-03-04 Janne Blomqvist <jb@gcc.gnu.org> + + PR libfortran/47802 + * intrinsics/ctime.c (strctime): Don't use return value of + localtime_r. + +2011-02-28 Jerry DeLisle <jvdelisle@gcc.gnu.org> + + PR libgfortran/47567 + * io/write_float.def (output_float): Move handling of w = 0 to after + output rounding. Check for zero and set zero_flag accordingly. Set + width according to zero_flag. Add better comments. + 2011-02-27 Jerry DeLisle <jvdelisle@gcc.gnu.org> PR libgfortran/47778 diff --git a/libgfortran/intrinsics/ctime.c b/libgfortran/intrinsics/ctime.c index 7eb10f5fa2c..92c0431357e 100644 --- a/libgfortran/intrinsics/ctime.c +++ b/libgfortran/intrinsics/ctime.c @@ -39,9 +39,18 @@ static size_t strctime (char *s, size_t max, const time_t *timep) { #ifdef HAVE_STRFTIME - struct tm res; - struct tm *ltm = localtime_r (timep, &res); - return strftime (s, max, "%c", ltm); + struct tm ltm; + int failed; + /* Some targets provide a localtime_r based on a draft of the POSIX + standard where the return type is int rather than the + standardized struct tm*. */ + __builtin_choose_expr (__builtin_classify_type (localtime_r (timep, <m)) + == 5, + failed = localtime_r (timep, <m) == NULL, + failed = localtime_r (timep, <m) != 0); + if (failed) + return 0; + return strftime (s, max, "%c", <m); #else return 0; #endif diff --git a/libgfortran/io/write_float.def b/libgfortran/io/write_float.def index 613ffe0a6be..3709b206620 100644 --- a/libgfortran/io/write_float.def +++ b/libgfortran/io/write_float.def @@ -109,15 +109,7 @@ output_float (st_parameter_dt *dtp, const fnode *f, char *buffer, size_t size, /* Make sure zero comes out as 0.0e0. */ if (zero_flag) - { - e = 0; - if (compile_options.sign_zero != 1) - sign = calculate_sign (dtp, 0); - - /* Handle special cases. */ - if (w == 0) - w = d + (sign != S_NONE ? 2 : 1) + (d == 0 ? 1 : 0); - } + e = 0; /* Normalize the fractional component. */ buffer[2] = buffer[1]; @@ -376,15 +368,21 @@ output_float (st_parameter_dt *dtp, const fnode *f, char *buffer, size_t size, else edigits = 0; - /* Zero values always output as positive, even if the value was negative - before rounding. */ + /* Scan the digits string and count the number of zeros. If we make it + all the way through the loop, we know the value is zero after the + rounding completed above. */ for (i = 0; i < ndigits; i++) { if (digits[i] != '0') break; } + + /* To format properly, we need to know if the rounded result is zero and if + so, we set the zero_flag which may have been already set for + actual zero. */ if (i == ndigits) { + zero_flag = true; /* The output is zero, so set the sign according to the sign bit unless -fno-sign-zero was specified. */ if (compile_options.sign_zero == 1) @@ -393,11 +391,17 @@ output_float (st_parameter_dt *dtp, const fnode *f, char *buffer, size_t size, sign = calculate_sign (dtp, 0); } - /* Pick a field size if none was specified. */ + /* Pick a field size if none was specified, taking into account small + values that may have been rounded to zero. */ if (w <= 0) { - w = nbefore + nzero + nafter + (sign != S_NONE ? 2 : 1); - w = w == 1 ? 2 : w; + if (zero_flag) + w = d + (sign != S_NONE ? 2 : 1) + (d == 0 ? 1 : 0); + else + { + w = nbefore + nzero + nafter + (sign != S_NONE ? 2 : 1); + w = w == 1 ? 2 : w; + } } /* Work out how much padding is needed. */ diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index da4b2be6b9d..dc926382a8e 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,8 @@ +2011-02-28 Kai Tietz <kai.tietz@onevision.com> + + * filename_cmp.c (filename_ncmp): New function. + * functions.texi: Regenerated. + 2011-02-03 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> * splay-tree.c: Escape wrapping newlines in texinfo markup diff --git a/libiberty/filename_cmp.c b/libiberty/filename_cmp.c index 0a4d0d85091..0eed12086bf 100644 --- a/libiberty/filename_cmp.c +++ b/libiberty/filename_cmp.c @@ -76,3 +76,52 @@ filename_cmp (const char *s1, const char *s2) #endif } +/* + +@deftypefn Extension int filename_ncmp (const char *@var{s1}, const char *@var{s2}, size_t @var{n}) + +Return zero if the two file names @var{s1} and @var{s2} are equivalent +in range @var{n}. +If not equivalent, the returned value is similar to what @code{strncmp} +would return. In other words, it returns a negative value if @var{s1} +is less than @var{s2}, or a positive value if @var{s2} is greater than +@var{s2}. + +This function does not normalize file names. As a result, this function +will treat filenames that are spelled differently as different even in +the case when the two filenames point to the same underlying file. +However, it does handle the fact that on DOS-like file systems, forward +and backward slashes are equal. + +@end deftypefn + +*/ + +int +filename_ncmp (const char *s1, const char *s2, size_t n) +{ +#ifndef HAVE_DOS_BASED_FILE_SYSTEM + return strncmp(s1, s2, n); +#else + if (!n) + return 0; + for (; n > 0; --n) + { + int c1 = TOLOWER (*s1); + int c2 = TOLOWER (*s2); + + /* On DOS-based file systems, the '/' and the '\' are equivalent. */ + if (c1 == '/') + c1 = '\\'; + if (c2 == '/') + c2 = '\\'; + + if (c1 == '\0' || c1 != c2) + return (c1 - c2); + + s1++; + s2++; + } + return 0; +#endif +} diff --git a/libiberty/functions.texi b/libiberty/functions.texi index f6d0a23f1e6..c9df186be0f 100644 --- a/libiberty/functions.texi +++ b/libiberty/functions.texi @@ -296,6 +296,24 @@ and backward slashes are equal. @end deftypefn +@c filename_cmp.c:81 +@deftypefn Extension int filename_ncmp (const char *@var{s1}, const char *@var{s2}, size_t @var{n}) + +Return zero if the two file names @var{s1} and @var{s2} are equivalent +in range @var{n}. +If not equivalent, the returned value is similar to what @code{strncmp} +would return. In other words, it returns a negative value if @var{s1} +is less than @var{s2}, or a positive value if @var{s2} is greater than +@var{s2}. + +This function does not normalize file names. As a result, this function +will treat filenames that are spelled differently as different even in +the case when the two filenames point to the same underlying file. +However, it does handle the fact that on DOS-like file systems, forward +and backward slashes are equal. + +@end deftypefn + @c fnmatch.txh:1 @deftypefn Replacement int fnmatch (const char *@var{pattern}, @ const char *@var{string}, int @var{flags}) diff --git a/libobjc/ChangeLog b/libobjc/ChangeLog index 3d85c982041..485d2a4b513 100644 --- a/libobjc/ChangeLog +++ b/libobjc/ChangeLog @@ -1,3 +1,15 @@ +2011-02-28 Nicola Pero <nicola.pero@meta-innovation.com> + + * selector.c (sel_getTypedSelector): Return NULL if there are + multiple selectors with conflicting types. + * objc/runtime.h (sel_getTypedSelector): Updated documentation. + +2011-02-28 Richard Frith-Macdonald <rfm@gnu.org> + + PR libobjc/47922 + * gc.c (class_ivar_set_gcinvisible): Use _C_GCINVISIBLE instead of + a hardcoded "!". + 2011-02-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> * configure: Regenerate. diff --git a/libobjc/gc.c b/libobjc/gc.c index d36a9cc77de..5ea4f8a0915 100644 --- a/libobjc/gc.c +++ b/libobjc/gc.c @@ -422,11 +422,15 @@ class_ivar_set_gcinvisible (Class class, const char *ivarname, /* The variable is gc visible so we make it gc_invisible. */ new_type = objc_malloc (strlen(ivar->ivar_type) + 2); + + /* Copy the variable name. */ len = (type - ivar->ivar_type); memcpy (new_type, ivar->ivar_type, len); - new_type[len] = 0; - strcat (new_type, "!"); - strcat (new_type, type); + /* Add '!'. */ + new_type[len++] = _C_GCINVISIBLE; + /* Copy the original types. */ + strcpy (new_type + len, type); + ivar->ivar_type = new_type; } diff --git a/libobjc/objc/runtime.h b/libobjc/objc/runtime.h index 551c348d307..6e1f1ec36e8 100644 --- a/libobjc/objc/runtime.h +++ b/libobjc/objc/runtime.h @@ -226,14 +226,16 @@ objc_EXPORT SEL * sel_copyTypedSelectorList (const char *name, unsigned int *numberOfReturnedSelectors); /* Return a selector with name 'name' and a non-zero type encoding, if - any such selector is registered with the runtime. If there is no - such selector, NULL is returned. Return NULL if 'name' is NULL. + there is a single selector with a type, and with that name, + registered with the runtime. If there is no such selector, or if + there are multiple selectors with the same name but conflicting + types, NULL is returned. Return NULL if 'name' is NULL. This is useful if you have the name of the selector, and would really like to get a selector for it that includes the type encoding. Unfortunately, if the program contains multiple selector - with the same name but different types, sel_getTypedSelector - returns a random one of them, which may not be the right one. + with the same name but different types, sel_getTypedSelector can + not possibly know which one you need, and so will return NULL. Compatibility Note: the Apple/NeXT runtime has untyped selectors, so it does not have this function, which is specific to the GNU diff --git a/libobjc/selector.c b/libobjc/selector.c index 99efcf87e6c..80d2d800422 100644 --- a/libobjc/selector.c +++ b/libobjc/selector.c @@ -369,6 +369,7 @@ sel_getTypedSelector (const char *name) if (i != 0) { struct objc_list *l; + SEL returnValue = NULL; for (l = (struct objc_list *) sarray_get_safe (__objc_selector_array, i); l; l = l->tail) @@ -376,10 +377,40 @@ sel_getTypedSelector (const char *name) SEL s = (SEL) l->head; if (s->sel_types) { - objc_mutex_unlock (__objc_runtime_mutex); - return s; + if (returnValue == NULL) + { + /* First typed selector that we find. Keep it in + returnValue, but keep checking as we want to + detect conflicts. */ + returnValue = s; + } + else + { + /* We had already found a typed selectors, so we + have multiple ones. Double-check that they have + different types, just in case for some reason we + got duplicates with the same types. If so, it's + OK, we'll ignore the duplicate. */ + if (returnValue->sel_types == s->sel_types) + continue; + else if (sel_types_match (returnValue->sel_types, s->sel_types)) + continue; + else + { + /* The types of the two selectors are different; + it's a conflict. Too bad. Return NULL. */ + objc_mutex_unlock (__objc_runtime_mutex); + return NULL; + } + } } } + + if (returnValue != NULL) + { + objc_mutex_unlock (__objc_runtime_mutex); + return returnValue; + } } /* No typed selector found. Return NULL. */ diff --git a/libquadmath/ChangeLog b/libquadmath/ChangeLog index 71fbc2f547b..cc4bf882d8b 100644 --- a/libquadmath/ChangeLog +++ b/libquadmath/ChangeLog @@ -1,3 +1,8 @@ +2011-02-28 Jakub Jelinek <jakub@redhat.com> + + * printf/quadmath-printf.c (quadmath_snprintf): Make sure + that for size > 0 str is always zero terminated. + 2011-02-20 Jakub Jelinek <jakub@redhat.com> PR bootstrap/47827 diff --git a/libquadmath/printf/quadmath-printf.c b/libquadmath/printf/quadmath-printf.c index 750dc246fcc..b70f432cce0 100644 --- a/libquadmath/printf/quadmath-printf.c +++ b/libquadmath/printf/quadmath-printf.c @@ -256,7 +256,7 @@ quadmath_snprintf (char *str, size_t size, const char *format, ...) qfp.fp = NULL; qfp.str = str; - qfp.size = size; + qfp.size = size ? size - 1 : 0; qfp.len = 0; qfp.file_p = 0; @@ -265,7 +265,7 @@ quadmath_snprintf (char *str, size_t size, const char *format, ...) else __quadmath_printf_fp (&qfp, &info, (const void *const *)&fpnum_addr2); - if (qfp.size) + if (size) *qfp.str = '\0'; return qfp.len; diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 4b9b197a0da..9e1fc0aa52c 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,85 @@ +2011-03-04 Benjamin Kosnik <bkoz@chula> + + * src/Makefile.am (inst_sources): Make source instantion files + conditional. + (XTEMPLATE_FLAGS): Make -fno-implicit-templates conditional. + * src/Makefile.in: Regenerate. + * src/valarray-inst.cc: Move to.. + * src/valarray.cc: ...this. + * acinclude.m4 (GLIBCXX_ENABLE_EXTERN_TEMPLATE]): Define. + * configure.ac (GLIBCXX_ENABLE_EXTERN_TEMPLATE): Use it. + * configure: Regenerate. + * include/Makefile.am (stamp-extern-template): Add. + * include/Makefile.in: Regenerate. + + * doc/xml/manual/configure.xml: Document --enable-extern-template. + + * include/bits/locale_classes.tcc: Adjust comment. + * include/bits/locale_facets.tcc: Same. + * include/bits/basic_ios.tcc: Same. + * include/bits/istream.tcc: Same. + * include/bits/codecvt.h: Same. + * include/bits/ostream.tcc: Same. + * include/bits/sstream.tcc: Same. + * include/bits/c++config: Same. + * include/bits/basic_string.tcc: Same. + * include/bits/ostream_insert.h: Same. + * include/bits/locale_facets_nonio.tcc: Same. + * include/bits/streambuf.tcc: Same. + * include/bits/allocator.h: Same. + * include/bits/fstream.tcc: Same. + + * testsuite/ext/profile/mutex_extensions_neg.cc: Adjust line numbers. + +2011-03-02 Benjamin Kosnik <bkoz@redhat.com> + + * testsuite/Makefile.am: Make clean fixups. + * testsuite/Makefile.in: Regenerate. + +2011-03-02 Marc Glisse <marc.glisse@normalesup.org> + + * include/std/ratio (ratio_less): Add comments. + +2011-03-02 Marc Glisse <marc.glisse@normalesup.org> + + PR libstdc++/47913 + * include/std/ratio (ratio_add): Avoid denominator overflow. + * testsuite/20_util/ratio/operations/47913.cc: New. + +2011-02-28 Benjamin Kosnik <bkoz@redhat.com> + + * testsuite/20_util/hash/chi2_quality.cc: Use C++0x mode on simulators. + * testsuite/20_util/hash/quality.cc: Same. + +2011-02-28 Paolo Carlini <paolo.carlini@oracle.com> + + PR libstdc++/47921 + * include/std/streambuf (basic_streambuf<>::__safe_gbump, + __safe_pbump): Add. + * include/bits/streambuf.tcc (basic_streambuf<>::xgetn, + xputn): Use the latter. + * include/bits/streambuf_iterator.h: Likewise. + * src/strstream.cc: Likewise. + * src/streambuf.cc: Likewise. + * src/compatibility.cc: Likewise. + * src/istream.cc: Likewise. + * include/bits/fstream.tcc (basic_filebuf<>::xsgetn): Use setg + instead of gbump. + * include/std/sstream (basic_stringbuf<>::_M_pbump): Add. + * include/bits/sstream.tcc (basic_stringbuf<>::seekoff, + seekpos, _M_sync): Use setg, setp, and _M_pbump. + * config/abi/pre/gnu.ver: Tweak. + +2011-02-28 Paolo Carlini <paolo.carlini@oracle.com> + + * testsuite/20_util/ratio/comparisons/comp3.cc: New. + +2011-02-28 Marc Glisse <marc.glisse@normalesup.org> + + PR libstdc++/42622 + * include/std/ratio (ratio_less): Reimplement to never overflow. + * testsuite/20_util/ratio/comparisons/comp2.cc: Extend. + 2011-02-24 Benjamin Kosnik <bkoz@redhat.com> * testsuite/18_support/type_info/fundamental.cc: New. diff --git a/libstdc++-v3/acinclude.m4 b/libstdc++-v3/acinclude.m4 index f8db04e9afb..3b9cdcb45c3 100644 --- a/libstdc++-v3/acinclude.m4 +++ b/libstdc++-v3/acinclude.m4 @@ -1993,6 +1993,25 @@ AC_DEFUN([GLIBCXX_ENABLE_CONCEPT_CHECKS], [ ]) dnl +dnl Use extern templates. +dnl +dnl --enable-extern-template defines _GLIBCXX_EXTERN_TEMPLATE to 1 +dnl --disable-extern-template defines _GLIBCXX_EXTERN_TEMPLATE to 0 + +dnl + Usage: GLIBCXX_ENABLE_TEMPLATE[(DEFAULT)] +dnl Where DEFAULT is `yes' or `no'. +dnl +AC_DEFUN([GLIBCXX_ENABLE_EXTERN_TEMPLATE], [ + + GLIBCXX_ENABLE(extern-template,$1,,[enable extern template]) + + AC_MSG_CHECKING([for extern template support]) + AC_MSG_RESULT([$enable_extern_template]) + + GLIBCXX_CONDITIONAL(ENABLE_EXTERN_TEMPLATE, test $enable_extern_template = yes) +]) + +dnl dnl Check for parallel mode pre-requisites, including OpenMP support. dnl dnl + Usage: GLIBCXX_ENABLE_PARALLEL diff --git a/libstdc++-v3/config/abi/pre/gnu.ver b/libstdc++-v3/config/abi/pre/gnu.ver index aa4031afade..b3e5380f76d 100644 --- a/libstdc++-v3/config/abi/pre/gnu.ver +++ b/libstdc++-v3/config/abi/pre/gnu.ver @@ -322,7 +322,8 @@ GLIBCXX_3.4 { _ZNSt15basic_stringbufIcSt11char_traitsIcESaIcEE3strERKSs; _ZNSt15basic_stringbufIwSt11char_traitsIwESaIwEE3strERKSbIwS1_S2_E; _ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]EE[0-9][t-z]*; - _ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]EE[0-9]_M_[a-z]*; + _ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]EE[0-9]_M_[a-o]*; + _ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]EE[0-9]_M_[q-z]*; _ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]EE[0-9][0-9]_M_[a-z]*; # std::basic_iostream constructors, destructors diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure index 53129c67332..c2288b308e9 100755 --- a/libstdc++-v3/configure +++ b/libstdc++-v3/configure @@ -663,6 +663,8 @@ LIBICONV OPT_LDFLAGS SECTION_LDFLAGS GLIBCXX_LIBS +ENABLE_EXTERN_TEMPLATE_FALSE +ENABLE_EXTERN_TEMPLATE_TRUE EXTRA_CXX_FLAGS ENABLE_PARALLEL_FALSE ENABLE_PARALLEL_TRUE @@ -853,6 +855,7 @@ enable_libstdcxx_debug_flags enable_libstdcxx_debug enable_cxx_flags enable_fully_dynamic_string +enable_extern_template enable_libstdcxx_time enable_tls enable_rpath @@ -1539,6 +1542,8 @@ Optional Features: --enable-fully-dynamic-string do not put empty strings in per-process static memory [default=no] + --enable-extern-template + enable extern template [default=yes] --enable-libstdcxx-time[=KIND] use KIND for check type [default=no] --enable-tls Use thread-local storage [default=yes] @@ -11482,7 +11487,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11485 "configure" +#line 11490 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11588,7 +11593,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11591 "configure" +#line 11596 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -14946,7 +14951,7 @@ fi # # Fake what AC_TRY_COMPILE does. XXX Look at redoing this new-style. cat > conftest.$ac_ext << EOF -#line 14949 "configure" +#line 14954 "configure" struct S { ~S(); }; void bar(); void foo() @@ -15314,7 +15319,7 @@ $as_echo "$glibcxx_cv_atomic_long_long" >&6; } # Fake what AC_TRY_COMPILE does. cat > conftest.$ac_ext << EOF -#line 15317 "configure" +#line 15322 "configure" int main() { typedef bool atomic_type; @@ -15351,7 +15356,7 @@ $as_echo "$glibcxx_cv_atomic_bool" >&6; } rm -f conftest* cat > conftest.$ac_ext << EOF -#line 15354 "configure" +#line 15359 "configure" int main() { typedef short atomic_type; @@ -15388,7 +15393,7 @@ $as_echo "$glibcxx_cv_atomic_short" >&6; } rm -f conftest* cat > conftest.$ac_ext << EOF -#line 15391 "configure" +#line 15396 "configure" int main() { // NB: _Atomic_word not necessarily int. @@ -15426,7 +15431,7 @@ $as_echo "$glibcxx_cv_atomic_int" >&6; } rm -f conftest* cat > conftest.$ac_ext << EOF -#line 15429 "configure" +#line 15434 "configure" int main() { typedef long long atomic_type; @@ -15502,7 +15507,7 @@ $as_echo "$as_me: WARNING: Performance of certain classes will degrade as a resu # unnecessary for this test. cat > conftest.$ac_ext << EOF -#line 15505 "configure" +#line 15510 "configure" int main() { _Decimal32 d1; @@ -17134,6 +17139,29 @@ $as_echo "#define _GLIBCXX_FULLY_DYNAMIC_STRING 1" >>confdefs.h fi + + # Check whether --enable-extern-template was given. +if test "${enable_extern_template+set}" = set; then : + enableval=$enable_extern_template; + case "$enableval" in + yes|no) ;; + *) as_fn_error "Argument to enable/disable extern-template must be yes or no" "$LINENO" 5 ;; + esac + +else + enable_extern_template=yes +fi + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for extern template support" >&5 +$as_echo_n "checking for extern template support... " >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_extern_template" >&5 +$as_echo "$enable_extern_template" >&6; } + + + + # Checks for operating systems support that doesn't require linking. @@ -65345,6 +65373,15 @@ else fi + if test $enable_extern_template = yes; then + ENABLE_EXTERN_TEMPLATE_TRUE= + ENABLE_EXTERN_TEMPLATE_FALSE='#' +else + ENABLE_EXTERN_TEMPLATE_TRUE='#' + ENABLE_EXTERN_TEMPLATE_FALSE= +fi + + if test $enable_symvers != no; then ENABLE_SYMVERS_TRUE= ENABLE_SYMVERS_FALSE='#' @@ -65794,6 +65831,10 @@ if test -z "${ENABLE_PARALLEL_TRUE}" && test -z "${ENABLE_PARALLEL_FALSE}"; then as_fn_error "conditional \"ENABLE_PARALLEL\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi +if test -z "${ENABLE_EXTERN_TEMPLATE_TRUE}" && test -z "${ENABLE_EXTERN_TEMPLATE_FALSE}"; then + as_fn_error "conditional \"ENABLE_EXTERN_TEMPLATE\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi if test -z "${ENABLE_SYMVERS_TRUE}" && test -z "${ENABLE_SYMVERS_FALSE}"; then as_fn_error "conditional \"ENABLE_SYMVERS\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 diff --git a/libstdc++-v3/configure.ac b/libstdc++-v3/configure.ac index 94f63bb6432..8ac9cadf643 100644 --- a/libstdc++-v3/configure.ac +++ b/libstdc++-v3/configure.ac @@ -132,6 +132,7 @@ GLIBCXX_ENABLE_DEBUG([no]) GLIBCXX_ENABLE_PARALLEL([yes]) GLIBCXX_ENABLE_CXX_FLAGS GLIBCXX_ENABLE_FULLY_DYNAMIC_STRING([no]) +GLIBCXX_ENABLE_EXTERN_TEMPLATE([yes]) # Checks for operating systems support that doesn't require linking. GLIBCXX_CHECK_SYSTEM_ERROR diff --git a/libstdc++-v3/doc/xml/manual/configure.xml b/libstdc++-v3/doc/xml/manual/configure.xml index 4c983a4fd2d..6b1efa8006e 100644 --- a/libstdc++-v3/doc/xml/manual/configure.xml +++ b/libstdc++-v3/doc/xml/manual/configure.xml @@ -161,6 +161,29 @@ </para> </listitem></varlistentry> + + <varlistentry><term><code>--enable-libstdcxx-time</code></term> + <listitem><para>This is an abbreviated form of + <code>'--enable-libstdcxx-time=yes'</code>(described next). + </para> + </listitem></varlistentry> + + <varlistentry><term><code>--enable-libstdcxx-time=OPTION</code></term> + <listitem><para>Enables link-type checks for the availability of the + clock_gettime clocks, used in the implementation of [time.clock], + and of the nanosleep and sched_yield functions, used in the + implementation of [thread.thread.this] of the current C++0x draft. + The choice OPTION=yes checks for the availability of the facilities + in libc and libposix4. In case of need the latter is also linked + to libstdc++ as part of the build process. OPTION=rt also searches + (and, in case, links) librt. Note that the latter is not always + desirable because, in glibc, for example, in turn it triggers the + linking of libpthread too, which activates locking, a large overhead + for single-thread programs. OPTION=no skips the tests completely. + The default is OPTION=no. + </para> + </listitem></varlistentry> + <varlistentry><term><code>--enable-libstdcxx-debug</code></term> <listitem><para>Build separate debug libraries in addition to what is normally built. By default, the debug libraries are compiled with @@ -313,6 +336,19 @@ </para> </listitem></varlistentry> + + <varlistentry><term><code>--enable-extern-template</code>[default]</term> + <listitem><para>Use extern template to pre-instantiate all required + specializations for certain types defined in the standard libraries. + These types include <classname>string</classname> and dependents like + <classname>char_traits</classname>, the templateized io classes, + <classname>allocator</classname>, and others. + Disabling means that implicit + template generation will be used when compiling these types. By + default, this option is on. This option can change the library ABI. + </para> + </listitem></varlistentry> + <varlistentry><term><code>--disable-hosted-libstdcxx</code></term> <listitem> <para> @@ -324,28 +360,6 @@ </para> </listitem></varlistentry> - <varlistentry><term><code>--enable-libstdcxx-time</code></term> - <listitem><para>This is an abbreviated form of - <code>'--enable-libstdcxx-time=yes'</code>(described next). - </para> - </listitem></varlistentry> - - <varlistentry><term><code>--enable-libstdcxx-time=OPTION</code></term> - <listitem><para>Enables link-type checks for the availability of the - clock_gettime clocks, used in the implementation of [time.clock], - and of the nanosleep and sched_yield functions, used in the - implementation of [thread.thread.this] of the current C++0x draft. - The choice OPTION=yes checks for the availability of the facilities - in libc and libposix4. In case of need the latter is also linked - to libstdc++ as part of the build process. OPTION=rt also searches - (and, in case, links) librt. Note that the latter is not always - desirable because, in glibc, for example, in turn it triggers the - linking of libpthread too, which activates locking, a large overhead - for single-thread programs. OPTION=no skips the tests completely. - The default is OPTION=no. - </para> - </listitem></varlistentry> - </variablelist> </section> diff --git a/libstdc++-v3/include/Makefile.am b/libstdc++-v3/include/Makefile.am index 5b6352e33b8..165adc1574d 100644 --- a/libstdc++-v3/include/Makefile.am +++ b/libstdc++-v3/include/Makefile.am @@ -1067,6 +1067,14 @@ stamp-namespace-version: echo 0 > stamp-namespace-version endif +if ENABLE_EXTERN_TEMPLATE +stamp-extern-template: + echo 1 > stamp-extern-template +else +stamp-extern-template: + echo 0 > stamp-extern-template +endif + if ENABLE_VISIBILITY stamp-visibility: echo 1 > stamp-visibility @@ -1082,10 +1090,12 @@ ${host_builddir}/c++config.h: ${CONFIG_HEADER} \ stamp-${host_alias} \ ${toplevel_srcdir}/gcc/DATESTAMP \ stamp-namespace-version \ - stamp-visibility + stamp-visibility \ + stamp-extern-template @date=`cat ${toplevel_srcdir}/gcc/DATESTAMP` ;\ ns_version=`cat stamp-namespace-version` ;\ visibility=`cat stamp-visibility` ;\ + externtemplate=`cat stamp-extern-template` ;\ ldbl_compat='s,g,g,' ;\ grep "^[ ]*#[ ]*define[ ][ ]*_GLIBCXX_LONG_DOUBLE_COMPAT[ ][ ]*1[ ]*$$" \ ${CONFIG_HEADER} > /dev/null 2>&1 \ @@ -1093,6 +1103,7 @@ ${host_builddir}/c++config.h: ${CONFIG_HEADER} \ sed -e "s,define __GLIBCXX__,define __GLIBCXX__ $$date," \ -e "s,define _GLIBCXX_INLINE_VERSION, define _GLIBCXX_INLINE_VERSION $$ns_version," \ -e "s,define _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY, define _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY $$visibility," \ + -e "s,define _GLIBCXX_EXTERN_TEMPLATE, define _GLIBCXX_EXTERN_TEMPLATE $$externtemplate," \ -e "$$ldbl_compat" \ < ${glibcxx_srcdir}/include/bits/c++config > $@ ;\ sed -e 's/HAVE_/_GLIBCXX_HAVE_/g' \ diff --git a/libstdc++-v3/include/Makefile.in b/libstdc++-v3/include/Makefile.in index d78315885cc..4f0bb723d16 100644 --- a/libstdc++-v3/include/Makefile.in +++ b/libstdc++-v3/include/Makefile.in @@ -1462,6 +1462,11 @@ stamp-host: ${host_headers} ${host_headers_noinst} stamp-${host_alias} @ENABLE_SYMVERS_GNU_NAMESPACE_FALSE@stamp-namespace-version: @ENABLE_SYMVERS_GNU_NAMESPACE_FALSE@ echo 0 > stamp-namespace-version +@ENABLE_EXTERN_TEMPLATE_TRUE@stamp-extern-template: +@ENABLE_EXTERN_TEMPLATE_TRUE@ echo 1 > stamp-extern-template +@ENABLE_EXTERN_TEMPLATE_FALSE@stamp-extern-template: +@ENABLE_EXTERN_TEMPLATE_FALSE@ echo 0 > stamp-extern-template + @ENABLE_VISIBILITY_TRUE@stamp-visibility: @ENABLE_VISIBILITY_TRUE@ echo 1 > stamp-visibility @ENABLE_VISIBILITY_FALSE@stamp-visibility: @@ -1474,10 +1479,12 @@ ${host_builddir}/c++config.h: ${CONFIG_HEADER} \ stamp-${host_alias} \ ${toplevel_srcdir}/gcc/DATESTAMP \ stamp-namespace-version \ - stamp-visibility + stamp-visibility \ + stamp-extern-template @date=`cat ${toplevel_srcdir}/gcc/DATESTAMP` ;\ ns_version=`cat stamp-namespace-version` ;\ visibility=`cat stamp-visibility` ;\ + externtemplate=`cat stamp-extern-template` ;\ ldbl_compat='s,g,g,' ;\ grep "^[ ]*#[ ]*define[ ][ ]*_GLIBCXX_LONG_DOUBLE_COMPAT[ ][ ]*1[ ]*$$" \ ${CONFIG_HEADER} > /dev/null 2>&1 \ @@ -1485,6 +1492,7 @@ ${host_builddir}/c++config.h: ${CONFIG_HEADER} \ sed -e "s,define __GLIBCXX__,define __GLIBCXX__ $$date," \ -e "s,define _GLIBCXX_INLINE_VERSION, define _GLIBCXX_INLINE_VERSION $$ns_version," \ -e "s,define _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY, define _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY $$visibility," \ + -e "s,define _GLIBCXX_EXTERN_TEMPLATE, define _GLIBCXX_EXTERN_TEMPLATE $$externtemplate," \ -e "$$ldbl_compat" \ < ${glibcxx_srcdir}/include/bits/c++config > $@ ;\ sed -e 's/HAVE_/_GLIBCXX_HAVE_/g' \ diff --git a/libstdc++-v3/include/bits/allocator.h b/libstdc++-v3/include/bits/allocator.h index 9018b5aa59a..9d01a602dae 100644 --- a/libstdc++-v3/include/bits/allocator.h +++ b/libstdc++-v3/include/bits/allocator.h @@ -1,7 +1,7 @@ // Allocators -*- C++ -*- -// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 -// Free Software Foundation, Inc. +// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, +// 2011 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -139,7 +139,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION // Inhibit implicit instantiations for required instantiations, // which are defined via explicit instantiations elsewhere. - // NB: This syntax is a GNU extension. #if _GLIBCXX_EXTERN_TEMPLATE extern template class allocator<char>; extern template class allocator<wchar_t>; @@ -235,6 +234,6 @@ _GLIBCXX_HAS_NESTED_TYPE(allocator_type) #endif _GLIBCXX_END_NAMESPACE_VERSION -} // namespace +} // namespace std #endif diff --git a/libstdc++-v3/include/bits/basic_ios.tcc b/libstdc++-v3/include/bits/basic_ios.tcc index 98b227fb95a..8ac6bfdbe1e 100644 --- a/libstdc++-v3/include/bits/basic_ios.tcc +++ b/libstdc++-v3/include/bits/basic_ios.tcc @@ -1,7 +1,7 @@ // basic_ios member functions -*- C++ -*- // Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, -// 2009, 2010 Free Software Foundation, Inc. +// 2009, 2010, 2011 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -175,7 +175,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION // Inhibit implicit instantiations for required instantiations, // which are defined via explicit instantiations elsewhere. - // NB: This syntax is a GNU extension. #if _GLIBCXX_EXTERN_TEMPLATE extern template class basic_ios<char>; @@ -185,6 +184,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION #endif _GLIBCXX_END_NAMESPACE_VERSION -} // namespace +} // namespace std #endif diff --git a/libstdc++-v3/include/bits/basic_string.tcc b/libstdc++-v3/include/bits/basic_string.tcc index 880fc6b3494..d988334274e 100644 --- a/libstdc++-v3/include/bits/basic_string.tcc +++ b/libstdc++-v3/include/bits/basic_string.tcc @@ -1130,7 +1130,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION // Inhibit implicit instantiations for required instantiations, // which are defined via explicit instantiations elsewhere. - // NB: This syntax is a GNU extension. #if _GLIBCXX_EXTERN_TEMPLATE > 0 extern template class basic_string<char>; extern template @@ -1164,6 +1163,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION #endif _GLIBCXX_END_NAMESPACE_VERSION -} // namespace +} // namespace std #endif diff --git a/libstdc++-v3/include/bits/c++config b/libstdc++-v3/include/bits/c++config index bab2b87ac81..e334f94d3dd 100644 --- a/libstdc++-v3/include/bits/c++config +++ b/libstdc++-v3/include/bits/c++config @@ -109,9 +109,7 @@ // Special case: _GLIBCXX_EXTERN_TEMPLATE == -1 disallows extern // templates only in basic_string, thus activating its debug-mode // checks even at -O0. -#ifndef _GLIBCXX_EXTERN_TEMPLATE -# define _GLIBCXX_EXTERN_TEMPLATE 1 -#endif +#define _GLIBCXX_EXTERN_TEMPLATE /* Outline of libstdc++ namespaces. diff --git a/libstdc++-v3/include/bits/codecvt.h b/libstdc++-v3/include/bits/codecvt.h index 42cc471d9cd..6ae9bbe26de 100644 --- a/libstdc++-v3/include/bits/codecvt.h +++ b/libstdc++-v3/include/bits/codecvt.h @@ -1,7 +1,7 @@ // Locale support (codecvt) -*- C++ -*- // Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, -// 2009, 2010 Free Software Foundation, Inc. +// 2009, 2010, 2011 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -476,7 +476,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION // Inhibit implicit instantiations for required instantiations, // which are defined via explicit instantiations elsewhere. - // NB: This syntax is a GNU extension. #if _GLIBCXX_EXTERN_TEMPLATE extern template class codecvt_byname<char, char, mbstate_t>; @@ -502,6 +501,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION #endif _GLIBCXX_END_NAMESPACE_VERSION -} // namespace +} // namespace std #endif // _CODECVT_H diff --git a/libstdc++-v3/include/bits/fstream.tcc b/libstdc++-v3/include/bits/fstream.tcc index edaff970374..3d5ca62ad9c 100644 --- a/libstdc++-v3/include/bits/fstream.tcc +++ b/libstdc++-v3/include/bits/fstream.tcc @@ -584,14 +584,12 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION const streamsize __avail = this->egptr() - this->gptr(); if (__avail != 0) { - if (__avail == 1) - *__s = *this->gptr(); - else - traits_type::copy(__s, this->gptr(), __avail); + traits_type::copy(__s, this->gptr(), __avail); __s += __avail; - this->gbump(__avail); - __ret += __avail; - __n -= __avail; + this->setg(this->eback(), this->gptr() + __avail, + this->egptr()); + __ret += __avail; + __n -= __avail; } // Need to loop in case of short reads (relatively common @@ -966,7 +964,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION // Inhibit implicit instantiations for required instantiations, // which are defined via explicit instantiations elsewhere. - // NB: This syntax is a GNU extension. #if _GLIBCXX_EXTERN_TEMPLATE extern template class basic_filebuf<char>; extern template class basic_ifstream<char>; @@ -982,6 +979,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION #endif _GLIBCXX_END_NAMESPACE_VERSION -} // namespace +} // namespace std #endif diff --git a/libstdc++-v3/include/bits/istream.tcc b/libstdc++-v3/include/bits/istream.tcc index 5666b11be3d..9055c31ce12 100644 --- a/libstdc++-v3/include/bits/istream.tcc +++ b/libstdc++-v3/include/bits/istream.tcc @@ -1038,7 +1038,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION // Inhibit implicit instantiations for required instantiations, // which are defined via explicit instantiations elsewhere. - // NB: This syntax is a GNU extension. #if _GLIBCXX_EXTERN_TEMPLATE extern template class basic_istream<char>; extern template istream& ws(istream&); @@ -1090,6 +1089,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION #endif _GLIBCXX_END_NAMESPACE_VERSION -} // namespace +} // namespace std #endif diff --git a/libstdc++-v3/include/bits/locale_classes.tcc b/libstdc++-v3/include/bits/locale_classes.tcc index e60401343e0..5b2901aea9e 100644 --- a/libstdc++-v3/include/bits/locale_classes.tcc +++ b/libstdc++-v3/include/bits/locale_classes.tcc @@ -1,6 +1,6 @@ // Locale support -*- C++ -*- -// Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc. +// Copyright (C) 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -241,7 +241,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION // Inhibit implicit instantiations for required instantiations, // which are defined via explicit instantiations elsewhere. - // NB: This syntax is a GNU extension. #if _GLIBCXX_EXTERN_TEMPLATE extern template class collate<char>; extern template class collate_byname<char>; @@ -269,6 +268,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION #endif _GLIBCXX_END_NAMESPACE_VERSION -} // namespace +} // namespace std #endif diff --git a/libstdc++-v3/include/bits/locale_facets.tcc b/libstdc++-v3/include/bits/locale_facets.tcc index 114d852e2ae..80bda15ac2a 100644 --- a/libstdc++-v3/include/bits/locale_facets.tcc +++ b/libstdc++-v3/include/bits/locale_facets.tcc @@ -1,7 +1,7 @@ // Locale support -*- C++ -*- // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, -// 2006, 2007, 2008, 2009, 2010 +// 2006, 2007, 2008, 2009, 2010, 2011 // Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free @@ -1276,7 +1276,6 @@ _GLIBCXX_END_NAMESPACE_LDBL // Inhibit implicit instantiations for required instantiations, // which are defined via explicit instantiations elsewhere. - // NB: This syntax is a GNU extension. #if _GLIBCXX_EXTERN_TEMPLATE extern template class numpunct<char>; extern template class numpunct_byname<char>; diff --git a/libstdc++-v3/include/bits/locale_facets_nonio.tcc b/libstdc++-v3/include/bits/locale_facets_nonio.tcc index 3039907d750..fbf70053549 100644 --- a/libstdc++-v3/include/bits/locale_facets_nonio.tcc +++ b/libstdc++-v3/include/bits/locale_facets_nonio.tcc @@ -1,6 +1,6 @@ // Locale support -*- C++ -*- -// Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc. +// Copyright (C) 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -1215,7 +1215,6 @@ _GLIBCXX_END_NAMESPACE_LDBL // Inhibit implicit instantiations for required instantiations, // which are defined via explicit instantiations elsewhere. - // NB: This syntax is a GNU extension. #if _GLIBCXX_EXTERN_TEMPLATE extern template class moneypunct<char, false>; extern template class moneypunct<char, true>; @@ -1369,6 +1368,6 @@ _GLIBCXX_END_NAMESPACE_LDBL #endif _GLIBCXX_END_NAMESPACE_VERSION -} // namespace +} // namespace std #endif diff --git a/libstdc++-v3/include/bits/ostream.tcc b/libstdc++-v3/include/bits/ostream.tcc index 6c59e3e4162..c0dce6a232b 100644 --- a/libstdc++-v3/include/bits/ostream.tcc +++ b/libstdc++-v3/include/bits/ostream.tcc @@ -357,7 +357,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION // Inhibit implicit instantiations for required instantiations, // which are defined via explicit instantiations elsewhere. - // NB: This syntax is a GNU extension. #if _GLIBCXX_EXTERN_TEMPLATE extern template class basic_ostream<char>; extern template ostream& endl(ostream&); @@ -405,6 +404,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION #endif _GLIBCXX_END_NAMESPACE_VERSION -} // namespace +} // namespace std #endif diff --git a/libstdc++-v3/include/bits/ostream_insert.h b/libstdc++-v3/include/bits/ostream_insert.h index 97608a00d06..f4228657d1b 100644 --- a/libstdc++-v3/include/bits/ostream_insert.h +++ b/libstdc++-v3/include/bits/ostream_insert.h @@ -114,7 +114,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION // Inhibit implicit instantiations for required instantiations, // which are defined via explicit instantiations elsewhere. - // NB: This syntax is a GNU extension. #if _GLIBCXX_EXTERN_TEMPLATE extern template ostream& __ostream_insert(ostream&, const char*, streamsize); @@ -125,6 +124,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION #endif _GLIBCXX_END_NAMESPACE_VERSION -} // namespace +} // namespace std #endif /* _OSTREAM_INSERT_H */ diff --git a/libstdc++-v3/include/bits/sstream.tcc b/libstdc++-v3/include/bits/sstream.tcc index 8956e9ee758..89b9a547c25 100644 --- a/libstdc++-v3/include/bits/sstream.tcc +++ b/libstdc++-v3/include/bits/sstream.tcc @@ -1,7 +1,7 @@ // String based streams -*- C++ -*- // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, -// 2006, 2007, 2009, 2010 +// 2006, 2007, 2008, 2009, 2010, 2011 // Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free @@ -178,14 +178,15 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION && __newoffi >= 0 && this->egptr() - __beg >= __newoffi) { - this->gbump((__beg + __newoffi) - this->gptr()); + this->setg(this->eback(), this->eback() + __newoffi, + this->egptr()); __ret = pos_type(__newoffi); } if ((__testout || __testboth) && __newoffo >= 0 && this->egptr() - __beg >= __newoffo) { - this->pbump((__beg + __newoffo) - this->pptr()); + _M_pbump(this->pbase(), this->epptr(), __newoffo); __ret = pos_type(__newoffo); } } @@ -212,9 +213,10 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION if (__testpos) { if (__testin) - this->gbump((__beg + __pos) - this->gptr()); + this->setg(this->eback(), this->eback() + __pos, + this->egptr()); if (__testout) - this->pbump((__beg + __pos) - this->pptr()); + _M_pbump(this->pbase(), this->epptr(), __pos); __ret = __sp; } } @@ -243,8 +245,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION this->setg(__base, __base + __i, __endg); if (__testout) { - this->setp(__base, __endp); - this->pbump(__o); + _M_pbump(__base, __endp, __o); // egptr() always tracks the string end. When !__testin, // for the correct functioning of the streambuf inlines // the other get area pointers are identical. @@ -253,9 +254,22 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION } } + template <class _CharT, class _Traits, class _Alloc> + void + basic_stringbuf<_CharT, _Traits, _Alloc>:: + _M_pbump(char_type* __pbeg, char_type* __pend, off_type __off) + { + this->setp(__pbeg, __pend); + while (__off > __gnu_cxx::__numeric_traits<int>::__max) + { + this->pbump(__gnu_cxx::__numeric_traits<int>::__max); + __off -= __gnu_cxx::__numeric_traits<int>::__max; + } + this->pbump(__off); + } + // Inhibit implicit instantiations for required instantiations, // which are defined via explicit instantiations elsewhere. - // NB: This syntax is a GNU extension. #if _GLIBCXX_EXTERN_TEMPLATE extern template class basic_stringbuf<char>; extern template class basic_istringstream<char>; @@ -271,6 +285,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION #endif _GLIBCXX_END_NAMESPACE_VERSION -} // namespace +} // namespace std #endif diff --git a/libstdc++-v3/include/bits/streambuf.tcc b/libstdc++-v3/include/bits/streambuf.tcc index 253f308dc88..6cb85fc1818 100644 --- a/libstdc++-v3/include/bits/streambuf.tcc +++ b/libstdc++-v3/include/bits/streambuf.tcc @@ -1,7 +1,7 @@ // Stream buffer classes -*- C++ -*- // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, -// 2006, 2009, 2010 Free Software Foundation, Inc. +// 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -57,7 +57,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION traits_type::copy(__s, this->gptr(), __len); __ret += __len; __s += __len; - this->gbump(__len); + this->__safe_gbump(__len); } if (__ret < __n) @@ -91,7 +91,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION traits_type::copy(this->pptr(), __s, __len); __ret += __len; __s += __len; - this->pbump(__len); + this->__safe_pbump(__len); } if (__ret < __n) @@ -146,7 +146,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION // Inhibit implicit instantiations for required instantiations, // which are defined via explicit instantiations elsewhere. - // NB: This syntax is a GNU extension. #if _GLIBCXX_EXTERN_TEMPLATE extern template class basic_streambuf<char>; extern template @@ -172,6 +171,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION #endif _GLIBCXX_END_NAMESPACE_VERSION -} // namespace +} // namespace std #endif diff --git a/libstdc++-v3/include/bits/streambuf_iterator.h b/libstdc++-v3/include/bits/streambuf_iterator.h index 6032a29e6f8..83ae6785c2d 100644 --- a/libstdc++-v3/include/bits/streambuf_iterator.h +++ b/libstdc++-v3/include/bits/streambuf_iterator.h @@ -1,7 +1,7 @@ // Streambuf iterators // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, -// 2006, 2007, 2009, 2010 +// 2006, 2007, 2009, 2010, 2011 // Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free @@ -339,7 +339,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION if (__n > 1) { traits_type::copy(__result, __sb->gptr(), __n); - __sb->gbump(__n); + __sb->__safe_gbump(__n); __result += __n; __c = __sb->underflow(); } @@ -379,7 +379,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION __n, __val); if (__p) __n = __p - __sb->gptr(); - __sb->gbump(__n); + __sb->__safe_gbump(__n); __c = __sb->sgetc(); } else diff --git a/libstdc++-v3/include/std/ratio b/libstdc++-v3/include/std/ratio index 69c0b6e14bb..17d28a10f46 100644 --- a/libstdc++-v3/include/std/ratio +++ b/libstdc++-v3/include/std/ratio @@ -1,6 +1,6 @@ // ratio -*- C++ -*- -// Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc. +// Copyright (C) 2008, 2009, 2010, 2011 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -177,15 +177,19 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION struct ratio_add { private: - static const intmax_t __gcd = + static constexpr intmax_t __gcd = __static_gcd<_R1::den, _R2::den>::value; + static constexpr intmax_t __n = __safe_add< + __safe_multiply<_R1::num, (_R2::den / __gcd)>::value, + __safe_multiply<_R2::num, (_R1::den / __gcd)>::value>::value; + + // The new numerator may have common factors with the denominator, + // but they have to also be factors of __gcd. + static constexpr intmax_t __gcd2 = __static_gcd<__n, __gcd>::value; public: - typedef ratio< - __safe_add< - __safe_multiply<_R1::num, (_R2::den / __gcd)>::value, - __safe_multiply<_R2::num, (_R1::den / __gcd)>::value>::value, - __safe_multiply<_R1::den, (_R2::den / __gcd)>::value> type; + typedef ratio<__n / __gcd2, + __safe_multiply<_R1::den / __gcd2, _R2::den / __gcd>::value> type; static constexpr intmax_t num = type::num; static constexpr intmax_t den = type::den; @@ -274,9 +278,45 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION : integral_constant<bool, !ratio_equal<_R1, _R2>::value> { }; - template<typename _R1> + // 0 <= _Ri < 1 + // If one is 0, conclude + // Otherwise, x < y iff 1/y < 1/x + template<typename _R1, typename _R2> + struct __ratio_less_impl_2; + + // _Ri > 0 + // Compare the integral parts, and remove them if they are equal + template<typename _R1, typename _R2, intmax_t __q1 = _R1::num / _R1::den, + intmax_t __q2 = _R2::num / _R2::den, bool __eq = (__q1 == __q2)> struct __ratio_less_impl_1 - : integral_constant<bool, _R1::num < _R1::den> + : __ratio_less_impl_2<ratio<_R1::num % _R1::den, _R1::den>, + ratio<_R2::num % _R2::den, _R2::den> >::type + { }; + + template<typename _R1, typename _R2, intmax_t __q1, intmax_t __q2> + struct __ratio_less_impl_1<_R1, _R2, __q1, __q2, false> + : integral_constant<bool, (__q1 < __q2) > + { }; + + template<typename _R1, typename _R2> + struct __ratio_less_impl_2 + : __ratio_less_impl_1<ratio<_R2::den, _R2::num>, + ratio<_R1::den, _R1::num> >::type + { }; + + template<intmax_t __d1, typename _R2> + struct __ratio_less_impl_2<ratio<0, __d1>, _R2> + : integral_constant<bool, true> + { }; + + template<typename _R1, intmax_t __d2> + struct __ratio_less_impl_2<_R1, ratio<0, __d2> > + : integral_constant<bool, false> + { }; + + template<intmax_t __d1, intmax_t __d2> + struct __ratio_less_impl_2<ratio<0, __d1>, ratio<0, __d2> > + : integral_constant<bool, false> { }; template<typename _R1, typename _R2, @@ -286,7 +326,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION bool = (__static_sign<_R1::num>::value == -1 && __static_sign<_R2::num>::value == -1)> struct __ratio_less_impl - : __ratio_less_impl_1<typename ratio_divide<_R1, _R2>::type>::type + : __ratio_less_impl_1<_R1, _R2>::type { }; template<typename _R1, typename _R2> @@ -296,10 +336,12 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION template<typename _R1, typename _R2> struct __ratio_less_impl<_R1, _R2, false, true> - : __ratio_less_impl_1<typename ratio_divide<_R2, _R1>::type>::type + : __ratio_less_impl_1<ratio<-_R2::num, _R2::den>, + ratio<-_R1::num, _R1::den> >::type { }; /// ratio_less + // using a continued fraction expansion template<typename _R1, typename _R2> struct ratio_less : __ratio_less_impl<_R1, _R2>::type diff --git a/libstdc++-v3/include/std/sstream b/libstdc++-v3/include/std/sstream index 6dd0a3d8f56..bf2862add30 100644 --- a/libstdc++-v3/include/std/sstream +++ b/libstdc++-v3/include/std/sstream @@ -241,6 +241,11 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION this->setg(this->pptr(), this->pptr(), this->pptr()); } } + + // Works around the issue with pbump, part of the protected + // interface of basic_streambuf, taking just an int. + void + _M_pbump(char_type* __pbeg, char_type* __pend, off_type __off); }; diff --git a/libstdc++-v3/include/std/streambuf b/libstdc++-v3/include/std/streambuf index 0121ac2de98..b46efec4601 100644 --- a/libstdc++-v3/include/std/streambuf +++ b/libstdc++-v3/include/std/streambuf @@ -769,6 +769,13 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION } #endif + // Also used by specializations for char and wchar_t in src. + void + __safe_gbump(streamsize __n) { _M_in_cur += __n; } + + void + __safe_pbump(streamsize __n) { _M_out_cur += __n; } + private: // _GLIBCXX_RESOLVE_LIB_DEFECTS // Side effect of DR 50. diff --git a/libstdc++-v3/src/Makefile.am b/libstdc++-v3/src/Makefile.am index 5524a774e31..f52993b54cb 100644 --- a/libstdc++-v3/src/Makefile.am +++ b/libstdc++-v3/src/Makefile.am @@ -1,7 +1,7 @@ ## Makefile for the src subdirectory of the GNU C++ Standard library. ## ## Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 -## 2006, 2007, 2008, 2009, 2010 +## 2006, 2007, 2008, 2009, 2010, 2011 ## Free Software Foundation, Inc. ## ## This file is part of the libstdc++ version 3 distribution. @@ -108,7 +108,7 @@ host_sources = \ messages_members.cc \ monetary_members.cc \ numeric_members.cc \ - time_members.cc + time_members.cc codecvt_members.cc: ${glibcxx_srcdir}/$(CCODECVT_CC) $(LN_S) ${glibcxx_srcdir}/$(CCODECVT_CC) . || true @@ -138,7 +138,8 @@ atomicity.cc: ${atomicity_file} # Source files linked in via configuration/make substitution for a # particular host, but with ad hoc naming rules. host_sources_extra = \ - basic_file.cc c++locale.cc ${ldbl_compat_sources} ${parallel_sources} + basic_file.cc c++locale.cc \ + ${inst_sources} ${ldbl_compat_sources} ${parallel_sources} c++locale.cc: ${glibcxx_srcdir}/$(CLOCALE_CC) $(LN_S) ${glibcxx_srcdir}/$(CLOCALE_CC) ./$@ || true @@ -148,8 +149,8 @@ basic_file.cc: ${glibcxx_srcdir}/$(BASIC_FILE_CC) if ENABLE_PARALLEL parallel_sources = parallel_settings.cc \ - compatibility-parallel_list.cc \ - compatibility-parallel_list-2.cc + compatibility-parallel_list.cc \ + compatibility-parallel_list-2.cc else parallel_sources = endif @@ -160,7 +161,30 @@ else ldbl_compat_sources = endif -# Sources present in the src directory. +if ENABLE_EXTERN_TEMPLATE +XTEMPLATE_FLAGS = -fno-implicit-templates +inst_sources = \ + allocator-inst.cc \ + concept-inst.cc \ + ext-inst.cc \ + fstream-inst.cc \ + ios-inst.cc \ + iostream-inst.cc \ + istream-inst.cc \ + locale-inst.cc \ + misc-inst.cc \ + ostream-inst.cc \ + sstream-inst.cc \ + streambuf-inst.cc \ + string-inst.cc \ + wlocale-inst.cc \ + wstring-inst.cc +else +XTEMPLATE_FLAGS = +inst_sources = +endif + +# Sources present in the src directory, always present. sources = \ atomic.cc \ bitmap_allocator.cc \ @@ -198,33 +222,18 @@ sources = \ strstream.cc \ system_error.cc \ tree.cc \ - allocator-inst.cc \ - concept-inst.cc \ - fstream-inst.cc \ - ext-inst.cc \ - ios-inst.cc \ - iostream-inst.cc \ - istream-inst.cc \ istream.cc \ - locale-inst.cc \ - misc-inst.cc \ - ostream-inst.cc \ placeholders.cc \ regex.cc \ - sstream-inst.cc \ - streambuf-inst.cc \ streambuf.cc \ - string-inst.cc \ - valarray-inst.cc \ - wlocale-inst.cc \ - wstring-inst.cc \ mutex.cc \ condition_variable.cc \ chrono.cc \ thread.cc \ future.cc \ + valarray.cc \ ${host_sources} \ - ${host_sources_extra} + ${host_sources_extra} vpath % $(top_srcdir)/src vpath % $(top_srcdir) @@ -240,7 +249,7 @@ libstdc___la_DEPENDENCIES = \ $(top_builddir)/libsupc++/libsupc++convenience.la libstdc___la_LDFLAGS = \ - -version-info $(libtool_VERSION) ${version_arg} -lm + -version-info $(libtool_VERSION) ${version_arg} -lm libstdc___la_LINK = $(CXXLINK) $(libstdc___la_LDFLAGS) @@ -383,7 +392,7 @@ endif # OPTIMIZE_CXXFLAGS on the compile line so that -O2 can be overridden # as the occasion calls for it. AM_CXXFLAGS = \ - -fno-implicit-templates \ + $(XTEMPLATE_FLAGS) \ $(WARN_CXXFLAGS) \ $(OPTIMIZE_CXXFLAGS) \ $(CONFIG_CXXFLAGS) @@ -407,8 +416,10 @@ AM_CXXFLAGS = \ # correct solution is to add `--tag CXX' to LTCXXCOMPILE and maybe # CXXLINK, just after $(LIBTOOL), so that libtool doesn't have to # attempt to infer which configuration to use -LTCXXCOMPILE = $(LIBTOOL) --tag CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile \ - $(CXX) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag CXX \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile \ + $(CXX) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CXXFLAGS) $(CXXFLAGS) LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS)) diff --git a/libstdc++-v3/src/Makefile.in b/libstdc++-v3/src/Makefile.in index 956cbb9e4ad..9b65811f2c4 100644 --- a/libstdc++-v3/src/Makefile.in +++ b/libstdc++-v3/src/Makefile.in @@ -91,13 +91,21 @@ am__DEPENDENCIES_1 = am__objects_1 = atomicity.lo codecvt_members.lo collate_members.lo \ ctype_members.lo messages_members.lo monetary_members.lo \ numeric_members.lo time_members.lo -@GLIBCXX_LDBL_COMPAT_TRUE@am__objects_2 = compatibility-ldbl.lo -@ENABLE_PARALLEL_TRUE@am__objects_3 = parallel_settings.lo \ +@ENABLE_EXTERN_TEMPLATE_TRUE@am__objects_2 = allocator-inst.lo \ +@ENABLE_EXTERN_TEMPLATE_TRUE@ concept-inst.lo ext-inst.lo \ +@ENABLE_EXTERN_TEMPLATE_TRUE@ fstream-inst.lo ios-inst.lo \ +@ENABLE_EXTERN_TEMPLATE_TRUE@ iostream-inst.lo istream-inst.lo \ +@ENABLE_EXTERN_TEMPLATE_TRUE@ locale-inst.lo misc-inst.lo \ +@ENABLE_EXTERN_TEMPLATE_TRUE@ ostream-inst.lo sstream-inst.lo \ +@ENABLE_EXTERN_TEMPLATE_TRUE@ streambuf-inst.lo string-inst.lo \ +@ENABLE_EXTERN_TEMPLATE_TRUE@ wlocale-inst.lo wstring-inst.lo +@GLIBCXX_LDBL_COMPAT_TRUE@am__objects_3 = compatibility-ldbl.lo +@ENABLE_PARALLEL_TRUE@am__objects_4 = parallel_settings.lo \ @ENABLE_PARALLEL_TRUE@ compatibility-parallel_list.lo \ @ENABLE_PARALLEL_TRUE@ compatibility-parallel_list-2.lo -am__objects_4 = basic_file.lo c++locale.lo $(am__objects_2) \ - $(am__objects_3) -am__objects_5 = atomic.lo bitmap_allocator.lo pool_allocator.lo \ +am__objects_5 = basic_file.lo c++locale.lo $(am__objects_2) \ + $(am__objects_3) $(am__objects_4) +am__objects_6 = atomic.lo bitmap_allocator.lo pool_allocator.lo \ mt_allocator.lo codecvt.lo compatibility.lo \ compatibility-c++0x.lo compatibility-debug_list.lo \ compatibility-debug_list-2.lo compatibility-list.lo \ @@ -107,15 +115,11 @@ am__objects_5 = atomic.lo bitmap_allocator.lo pool_allocator.lo \ ios_init.lo ios_locale.lo limits.lo list.lo locale.lo \ locale_init.lo locale_facets.lo localename.lo \ math_stubs_float.lo math_stubs_long_double.lo stdexcept.lo \ - strstream.lo system_error.lo tree.lo allocator-inst.lo \ - concept-inst.lo fstream-inst.lo ext-inst.lo ios-inst.lo \ - iostream-inst.lo istream-inst.lo istream.lo locale-inst.lo \ - misc-inst.lo ostream-inst.lo placeholders.lo regex.lo \ - sstream-inst.lo streambuf-inst.lo streambuf.lo string-inst.lo \ - valarray-inst.lo wlocale-inst.lo wstring-inst.lo mutex.lo \ + strstream.lo system_error.lo tree.lo istream.lo \ + placeholders.lo regex.lo streambuf.lo mutex.lo \ condition_variable.lo chrono.lo thread.lo future.lo \ - $(am__objects_1) $(am__objects_4) -am_libstdc___la_OBJECTS = $(am__objects_5) + valarray.lo $(am__objects_1) $(am__objects_5) +am_libstdc___la_OBJECTS = $(am__objects_6) libstdc___la_OBJECTS = $(am_libstdc___la_OBJECTS) DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = @@ -360,24 +364,45 @@ host_sources = \ messages_members.cc \ monetary_members.cc \ numeric_members.cc \ - time_members.cc + time_members.cc atomicity_file = ${glibcxx_srcdir}/$(ATOMICITY_SRCDIR)/atomicity.h # Source files linked in via configuration/make substitution for a # particular host, but with ad hoc naming rules. host_sources_extra = \ - basic_file.cc c++locale.cc ${ldbl_compat_sources} ${parallel_sources} + basic_file.cc c++locale.cc \ + ${inst_sources} ${ldbl_compat_sources} ${parallel_sources} @ENABLE_PARALLEL_FALSE@parallel_sources = @ENABLE_PARALLEL_TRUE@parallel_sources = parallel_settings.cc \ -@ENABLE_PARALLEL_TRUE@ compatibility-parallel_list.cc \ -@ENABLE_PARALLEL_TRUE@ compatibility-parallel_list-2.cc +@ENABLE_PARALLEL_TRUE@ compatibility-parallel_list.cc \ +@ENABLE_PARALLEL_TRUE@ compatibility-parallel_list-2.cc @GLIBCXX_LDBL_COMPAT_FALSE@ldbl_compat_sources = @GLIBCXX_LDBL_COMPAT_TRUE@ldbl_compat_sources = compatibility-ldbl.cc - -# Sources present in the src directory. +@ENABLE_EXTERN_TEMPLATE_FALSE@XTEMPLATE_FLAGS = +@ENABLE_EXTERN_TEMPLATE_TRUE@XTEMPLATE_FLAGS = -fno-implicit-templates +@ENABLE_EXTERN_TEMPLATE_FALSE@inst_sources = +@ENABLE_EXTERN_TEMPLATE_TRUE@inst_sources = \ +@ENABLE_EXTERN_TEMPLATE_TRUE@ allocator-inst.cc \ +@ENABLE_EXTERN_TEMPLATE_TRUE@ concept-inst.cc \ +@ENABLE_EXTERN_TEMPLATE_TRUE@ ext-inst.cc \ +@ENABLE_EXTERN_TEMPLATE_TRUE@ fstream-inst.cc \ +@ENABLE_EXTERN_TEMPLATE_TRUE@ ios-inst.cc \ +@ENABLE_EXTERN_TEMPLATE_TRUE@ iostream-inst.cc \ +@ENABLE_EXTERN_TEMPLATE_TRUE@ istream-inst.cc \ +@ENABLE_EXTERN_TEMPLATE_TRUE@ locale-inst.cc \ +@ENABLE_EXTERN_TEMPLATE_TRUE@ misc-inst.cc \ +@ENABLE_EXTERN_TEMPLATE_TRUE@ ostream-inst.cc \ +@ENABLE_EXTERN_TEMPLATE_TRUE@ sstream-inst.cc \ +@ENABLE_EXTERN_TEMPLATE_TRUE@ streambuf-inst.cc \ +@ENABLE_EXTERN_TEMPLATE_TRUE@ string-inst.cc \ +@ENABLE_EXTERN_TEMPLATE_TRUE@ wlocale-inst.cc \ +@ENABLE_EXTERN_TEMPLATE_TRUE@ wstring-inst.cc + + +# Sources present in the src directory, always present. sources = \ atomic.cc \ bitmap_allocator.cc \ @@ -415,33 +440,18 @@ sources = \ strstream.cc \ system_error.cc \ tree.cc \ - allocator-inst.cc \ - concept-inst.cc \ - fstream-inst.cc \ - ext-inst.cc \ - ios-inst.cc \ - iostream-inst.cc \ - istream-inst.cc \ istream.cc \ - locale-inst.cc \ - misc-inst.cc \ - ostream-inst.cc \ placeholders.cc \ regex.cc \ - sstream-inst.cc \ - streambuf-inst.cc \ streambuf.cc \ - string-inst.cc \ - valarray-inst.cc \ - wlocale-inst.cc \ - wstring-inst.cc \ mutex.cc \ condition_variable.cc \ chrono.cc \ thread.cc \ future.cc \ + valarray.cc \ ${host_sources} \ - ${host_sources_extra} + ${host_sources_extra} libstdc___la_SOURCES = $(sources) libstdc___la_LIBADD = \ @@ -453,7 +463,7 @@ libstdc___la_DEPENDENCIES = \ $(top_builddir)/libsupc++/libsupc++convenience.la libstdc___la_LDFLAGS = \ - -version-info $(libtool_VERSION) ${version_arg} -lm + -version-info $(libtool_VERSION) ${version_arg} -lm libstdc___la_LINK = $(CXXLINK) $(libstdc___la_LDFLAGS) @@ -470,7 +480,7 @@ PARALLEL_FLAGS = -fopenmp -D_GLIBCXX_PARALLEL -I$(glibcxx_builddir)/../libgomp # OPTIMIZE_CXXFLAGS on the compile line so that -O2 can be overridden # as the occasion calls for it. AM_CXXFLAGS = \ - -fno-implicit-templates \ + $(XTEMPLATE_FLAGS) \ $(WARN_CXXFLAGS) \ $(OPTIMIZE_CXXFLAGS) \ $(CONFIG_CXXFLAGS) @@ -494,8 +504,10 @@ AM_CXXFLAGS = \ # correct solution is to add `--tag CXX' to LTCXXCOMPILE and maybe # CXXLINK, just after $(LIBTOOL), so that libtool doesn't have to # attempt to infer which configuration to use -LTCXXCOMPILE = $(LIBTOOL) --tag CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile \ - $(CXX) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag CXX \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile \ + $(CXX) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CXXFLAGS) $(CXXFLAGS) LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS)) diff --git a/libstdc++-v3/src/compatibility.cc b/libstdc++-v3/src/compatibility.cc index d5d39b3317a..d4cf5d7c122 100644 --- a/libstdc++-v3/src/compatibility.cc +++ b/libstdc++-v3/src/compatibility.cc @@ -86,7 +86,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION streamsize(__n - _M_gcount)); if (__size > 1) { - __sb->gbump(__size); + __sb->__safe_gbump(__size); _M_gcount += __size; __c = __sb->sgetc(); } @@ -157,7 +157,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION streamsize(__n - _M_gcount)); if (__size > 1) { - __sb->gbump(__size); + __sb->__safe_gbump(__size); _M_gcount += __size; __c = __sb->sgetc(); } diff --git a/libstdc++-v3/src/istream.cc b/libstdc++-v3/src/istream.cc index e550306a0e6..f161016cf3d 100644 --- a/libstdc++-v3/src/istream.cc +++ b/libstdc++-v3/src/istream.cc @@ -67,7 +67,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION __size = __p - __sb->gptr(); traits_type::copy(__s, __sb->gptr(), __size); __s += __size; - __sb->gbump(__size); + __sb->__safe_gbump(__size); _M_gcount += __size; __c = __sb->sgetc(); } @@ -145,7 +145,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION __cdelim); if (__p) __size = __p - __sb->gptr(); - __sb->gbump(__size); + __sb->__safe_gbump(__size); _M_gcount += __size; __c = __sb->sgetc(); } @@ -239,7 +239,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION - __sb->gptr()); __traits_type::copy(__s, __sb->gptr(), __size); __s += __size; - __sb->gbump(__size); + __sb->__safe_gbump(__size); __extracted += __size; __c = __sb->sgetc(); } @@ -318,7 +318,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION __sb->gptr() + __size) - __sb->gptr()); __str.append(__sb->gptr(), __size); - __sb->gbump(__size); + __sb->__safe_gbump(__size); __extracted += __size; __c = __sb->sgetc(); } @@ -397,7 +397,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION if (__p) __size = __p - __sb->gptr(); __str.append(__sb->gptr(), __size); - __sb->gbump(__size); + __sb->__safe_gbump(__size); __extracted += __size; __c = __sb->sgetc(); } @@ -474,7 +474,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION __size = __p - __sb->gptr(); traits_type::copy(__s, __sb->gptr(), __size); __s += __size; - __sb->gbump(__size); + __sb->__safe_gbump(__size); _M_gcount += __size; __c = __sb->sgetc(); } @@ -552,7 +552,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION __cdelim); if (__p) __size = __p - __sb->gptr(); - __sb->gbump(__size); + __sb->__safe_gbump(__size); _M_gcount += __size; __c = __sb->sgetc(); } @@ -643,7 +643,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION if (__p) __size = __p - __sb->gptr(); __str.append(__sb->gptr(), __size); - __sb->gbump(__size); + __sb->__safe_gbump(__size); __extracted += __size; __c = __sb->sgetc(); } diff --git a/libstdc++-v3/src/streambuf.cc b/libstdc++-v3/src/streambuf.cc index 2e72559d827..5bcd0ea8d58 100644 --- a/libstdc++-v3/src/streambuf.cc +++ b/libstdc++-v3/src/streambuf.cc @@ -1,6 +1,7 @@ // Stream buffer classes -*- C++ -*- -// Copyright (C) 2004, 2005, 2006, 2009 Free Software Foundation, Inc. +// Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 +// Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -47,7 +48,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION if (__n > 1) { const streamsize __wrote = __sbout->sputn(__sbin->gptr(), __n); - __sbin->gbump(__wrote); + __sbin->__safe_gbump(__wrote); __ret += __wrote; if (__wrote < __n) { @@ -87,7 +88,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION if (__n > 1) { const streamsize __wrote = __sbout->sputn(__sbin->gptr(), __n); - __sbin->gbump(__wrote); + __sbin->__safe_gbump(__wrote); __ret += __wrote; if (__wrote < __n) { diff --git a/libstdc++-v3/src/strstream.cc b/libstdc++-v3/src/strstream.cc index d6c936e5f9d..c76fc60e0ac 100644 --- a/libstdc++-v3/src/strstream.cc +++ b/libstdc++-v3/src/strstream.cc @@ -1,6 +1,7 @@ // strstream definitions -*- C++ -*- -// Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation +// Copyright (C) 2001, 2002, 2003, 2005, 2009, 2010, 2011 +// Free Software Foundation // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -161,7 +162,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION } setp(buf, buf + new_size); - pbump(old_size); + __safe_pbump(old_size); if (reposition_get) setg(buf, buf + old_get_offset, buf + @@ -271,12 +272,12 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION if (seeklow + off < pbase()) { setp(seeklow, epptr()); - pbump(off); + __safe_pbump(off); } else { setp(pbase(), epptr()); - pbump(off - (pbase() - seeklow)); + __safe_pbump(off - (pbase() - seeklow)); } } if (do_get) diff --git a/libstdc++-v3/src/valarray-inst.cc b/libstdc++-v3/src/valarray.cc index 4d21ab171ba..4d21ab171ba 100644 --- a/libstdc++-v3/src/valarray-inst.cc +++ b/libstdc++-v3/src/valarray.cc diff --git a/libstdc++-v3/testsuite/20_util/hash/chi2_quality.cc b/libstdc++-v3/testsuite/20_util/hash/chi2_quality.cc index a105f4b45d0..d626d829888 100644 --- a/libstdc++-v3/testsuite/20_util/hash/chi2_quality.cc +++ b/libstdc++-v3/testsuite/20_util/hash/chi2_quality.cc @@ -1,6 +1,9 @@ // { dg-options "-std=gnu++0x" } -// Copyright (C) 2010 Free Software Foundation, Inc. +// Use smaller statistics when running on simulators, so it takes less time. +// { dg-options "-std=gnu++0x -DSAMPLES=10000" { target simulator } } + +// Copyright (C) 2010, 2011 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -48,8 +51,6 @@ #include <vector> #include <testsuite_hooks.h> -// Use smaller statistics when running on simulators, so it takes less time. -// { dg-options "-DSAMPLES=10000" { target simulator } } #ifndef SAMPLES #define SAMPLES 300000 #endif diff --git a/libstdc++-v3/testsuite/20_util/hash/quality.cc b/libstdc++-v3/testsuite/20_util/hash/quality.cc index 8a6edac1687..0bc2637241f 100644 --- a/libstdc++-v3/testsuite/20_util/hash/quality.cc +++ b/libstdc++-v3/testsuite/20_util/hash/quality.cc @@ -1,6 +1,7 @@ // { dg-options "-std=gnu++0x" } +// { dg-options "-DNTESTS=1 -DNSTRINGS=100 -DSTRSIZE=21 -std=gnu++0x" { target simulator } } -// Copyright (C) 2010 Free Software Foundation, Inc. +// Copyright (C) 2010, 2011 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -26,7 +27,6 @@ using namespace std; -// { dg-options "-DNTESTS=1 -DNSTRINGS=100 -DSTRSIZE=21" { target simulator } } #ifndef NTESTS #define NTESTS 5 #endif diff --git a/libstdc++-v3/testsuite/20_util/ratio/comparisons/comp2.cc b/libstdc++-v3/testsuite/20_util/ratio/comparisons/comp2.cc index 151dc64450e..20da30cbe25 100644 --- a/libstdc++-v3/testsuite/20_util/ratio/comparisons/comp2.cc +++ b/libstdc++-v3/testsuite/20_util/ratio/comparisons/comp2.cc @@ -1,7 +1,7 @@ // { dg-options "-std=gnu++0x" } // { dg-require-cstdint "" } -// Copyright (C) 2008, 2009, 2010 Free Software Foundation +// Copyright (C) 2008, 2009, 2010, 2011 Free Software Foundation // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -48,6 +48,9 @@ test01() VERIFY( (std::ratio_less<std::ratio<-M, M - 1>, std::ratio<-M, M - 2>>::value == 0) ); + + VERIFY( (std::ratio_less<std::ratio<M - 2, M - 1>, + std::ratio<M - 1, M>>::value == 1) ); } int main() diff --git a/libstdc++-v3/testsuite/20_util/ratio/comparisons/comp3.cc b/libstdc++-v3/testsuite/20_util/ratio/comparisons/comp3.cc new file mode 100644 index 00000000000..f8c0c486b4a --- /dev/null +++ b/libstdc++-v3/testsuite/20_util/ratio/comparisons/comp3.cc @@ -0,0 +1,75 @@ +// { dg-options "-std=gnu++0x" } +// { dg-require-cstdint "" } + +// 2011-02-28 Paolo Carlini <paolo.carlini@oracle.com> + +// Copyright (C) 2011 Free Software Foundation +// +// This file is part of the GNU ISO C++ Library. This library 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. + +// This library 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 this library; see the file COPYING3. If not see +// <http://www.gnu.org/licenses/>. + +#include <ratio> +#include <testsuite_hooks.h> + +void +test01() +{ + bool test __attribute__((unused)) = true; + + VERIFY( (std::ratio_less<std::ratio<59, 29131>, + std::ratio<59, 29129>>::value == 1) ); + VERIFY( (std::ratio_less<std::ratio<4733, 13>, + std::ratio<4751, 13>>::value == 1) ); + VERIFY( (std::ratio_less<std::ratio<25703, 25717>, + std::ratio<25733, 25741>>::value == 1) ); + VERIFY( (std::ratio_less<std::ratio<631, 769>, + std::ratio<673, 773>>::value == 1) ); + VERIFY( (std::ratio_less<std::ratio<8353, 16903>, + std::ratio<17891, 32099>>::value == 1) ); + VERIFY( (std::ratio_less<std::ratio<2311, 18701>, + std::ratio<18457, 19571>>::value == 1) ); + + VERIFY( (std::ratio_less<std::ratio<60, 29132>, + std::ratio<60, 29130>>::value == 1) ); + VERIFY( (std::ratio_less<std::ratio<4734, 14>, + std::ratio<4752, 14>>::value == 1) ); + VERIFY( (std::ratio_less<std::ratio<25704, 25718>, + std::ratio<25732, 25742>>::value == 1) ); + VERIFY( (std::ratio_less<std::ratio<632, 770>, + std::ratio<674, 774>>::value == 1) ); + VERIFY( (std::ratio_less<std::ratio<8352, 16904>, + std::ratio<17892, 32100>>::value == 1) ); + VERIFY( (std::ratio_less<std::ratio<2312, 18702>, + std::ratio<18458, 19572>>::value == 1) ); + + VERIFY( (std::ratio_less<std::ratio<58, 29130>, + std::ratio<58, 29128>>::value == 1) ); + VERIFY( (std::ratio_less<std::ratio<4732, 12>, + std::ratio<4750, 12>>::value == 1) ); + VERIFY( (std::ratio_less<std::ratio<25702, 25716>, + std::ratio<25734, 25740>>::value == 1) ); + VERIFY( (std::ratio_less<std::ratio<630, 768>, + std::ratio<672, 772>>::value == 1) ); + VERIFY( (std::ratio_less<std::ratio<8354, 16902>, + std::ratio<17890, 32102>>::value == 1) ); + VERIFY( (std::ratio_less<std::ratio<2310, 18700>, + std::ratio<18456, 19570>>::value == 1) ); +} + +int main() +{ + test01(); + return 0; +} diff --git a/libstdc++-v3/testsuite/20_util/ratio/operations/47913.cc b/libstdc++-v3/testsuite/20_util/ratio/operations/47913.cc new file mode 100644 index 00000000000..4105a710d91 --- /dev/null +++ b/libstdc++-v3/testsuite/20_util/ratio/operations/47913.cc @@ -0,0 +1,42 @@ +// { dg-options "-std=gnu++0x" } +// { dg-require-cstdint "" } + +// Copyright (C) 2011 Free Software Foundation +// +// This file is part of the GNU ISO C++ Library. This library 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. + +// This library 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 this library; see the file COPYING3. If not see +// <http://www.gnu.org/licenses/>. + +#include <ratio> +#include <testsuite_hooks.h> + +// libstdc++/47913 +void test01() +{ + bool test __attribute__((unused)) = true; + using namespace std; + + const intmax_t m = (intmax_t)1 << (4 * sizeof(intmax_t) - 1); + typedef ratio_add<ratio<1, (m - 1) * (m - 2)>, + ratio<1, (m - 3) * (m - 2)> > ra_type; + + VERIFY( ra_type::num == 2 ); + VERIFY( ra_type::den == (m - 1) * (m - 3) ); +} + +int main() +{ + test01(); + return 0; +} diff --git a/libstdc++-v3/testsuite/Makefile.am b/libstdc++-v3/testsuite/Makefile.am index 34d1ee7e904..4e297e0f669 100644 --- a/libstdc++-v3/testsuite/Makefile.am +++ b/libstdc++-v3/testsuite/Makefile.am @@ -247,8 +247,8 @@ check-profile: site.exp # By adding these files here, automake will remove them for 'make clean' CLEANFILES = *.txt *.tst *.exe core* filebuf_* tmp* ostream_* *.log *.sum \ testsuite_* site.exp abi_check baseline_symbols *TEST* *.dat \ - *.ii *.s *.o *.cc *.x *.a *.so *.xml + *.ii *.s *.o *.cc *.x *.a *.so *.xml *.raw *.out # To remove directories. clean-local: - rm -rf de fr debug parallel profile binaries + rm -rf de fr debug parallel profile binaries normal* diff --git a/libstdc++-v3/testsuite/Makefile.in b/libstdc++-v3/testsuite/Makefile.in index d0967a5a6bc..460db8df89d 100644 --- a/libstdc++-v3/testsuite/Makefile.in +++ b/libstdc++-v3/testsuite/Makefile.in @@ -319,7 +319,7 @@ profile_flags = "unix/-D_GLIBCXX_PROFILE" # By adding these files here, automake will remove them for 'make clean' CLEANFILES = *.txt *.tst *.exe core* filebuf_* tmp* ostream_* *.log *.sum \ testsuite_* site.exp abi_check baseline_symbols *TEST* *.dat \ - *.ii *.s *.o *.cc *.x *.a *.so *.xml + *.ii *.s *.o *.cc *.x *.a *.so *.xml *.raw *.out all: all-am @@ -652,7 +652,7 @@ check-profile: site.exp # To remove directories. clean-local: - rm -rf de fr debug parallel profile binaries + rm -rf de fr debug parallel profile binaries normal* # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff --git a/libstdc++-v3/testsuite/ext/profile/mutex_extensions_neg.cc b/libstdc++-v3/testsuite/ext/profile/mutex_extensions_neg.cc index b81418f7293..174a8af556c 100644 --- a/libstdc++-v3/testsuite/ext/profile/mutex_extensions_neg.cc +++ b/libstdc++-v3/testsuite/ext/profile/mutex_extensions_neg.cc @@ -22,4 +22,4 @@ #include <vector> -// { dg-error "multiple inlined namespaces" "" { target *-*-* } 243 } +// { dg-error "multiple inlined namespaces" "" { target *-*-* } 241 } |