1. 03 Feb, 2015 7 commits
    • re PR middle-end/61225 (Several new failures after r210458 on x86_64-*-* with -m32) · 2944c91c
      	PR middle-end/61225
      	gcc.target/i386/pr49095.c: XFAIL for ia32.
      
      From-SVN: r220370
      Segher Boessenkool committed
    • re PR target/62631 (gcc.dg/tree-ssa/ivopts-lt-2.c FAILs) · aa47faf0
      	PR target/62631
      	* config/sparc/sparc.h (TARGET_HARD_MUL): Remove TARGET_V8PLUS.
      	(TARGET_HARD_MUL32): Rewrite based on TARGET_HARD_MUL.
      	* config/sparc/sparc.c (sparc_rtx_costs) <MULT>: Return costs based on
      	int_mulX for integers in 64-bit mode if TARGET_HARD_MUL is not set.
      
      From-SVN: r220369
      Eric Botcazou committed
    • re PR other/63504 (Issues found by --enable-checking=valgrind) · 76f0aa6c
      	PR other/63504
      	* combine.c (reg_n_sets_max): New variable.
      	(can_change_dest_mode, reg_nonzero_bits_for_combine,
      	reg_num_sign_bit_copies_for_combine, get_last_value_validate,
      	get_last_value): Use REG_N_SETS only on pseudos < reg_n_sets_max.
      	(try_combine): Use INC_REG_N_SETS only on pseudos < reg_n_sets_max.
      	(rest_of_handle_combine): Initialize reg_n_sets_max.
      
      From-SVN: r220368
      Jakub Jelinek committed
    • PR preprocessor/64803 - __LINE__ inside macro is not constant · f8abc9ba
      Consider the example code mentionned in this PR:
      
       $ cat -n test.c
            1	#define C(a, b) a ## b
            2	#define L(x) C(L, x)
            3	#define M(a) goto L(__LINE__); __LINE__; L(__LINE__):
            4	M(a /* --> this is the line of the expansion point of M.  */
            5	  ); /* --> this is the line of the end of the invocation of M.  */
       $
      
      "cc1 -quiet -E test.c" yields:
      
       goto L5; 5; L4:
          ;
      
      Notice how we have a 'L4' there, where it should be L5.  That is the issue.
      
      My understanding is that during the *second* expansion of __LINE__
      (the one between the two L(__LINE__)), builtin_macro() is called by
      enter_macro_context() with the location of the expansion point of M
      (which is at line 4).  Then _cpp_builtin_macro_text() expands __LINE__
      into the line number of the location of the last token that has been
      lexed, which is the location of the closing parenthesis of the
      invocation of M, at line 5.  So that invocation of __LINE__ is
      expanded into 5.
      
      Now let's see why the last invocation of __LINE__ is expanded into 4.
      
      In builtin_macro(), we have this code at some point:
      
         /* Set pfile->cur_token as required by _cpp_lex_direct.  */
         pfile->cur_token = _cpp_temp_token (pfile);
         cpp_token *token = _cpp_lex_direct (pfile);
         /* We should point to the expansion point of the builtin macro.  */
         token->src_loc = loc;
      
      The first two statements insert a new token in the stream of lexed
      token and pfile->cur_token[-1], is the "new" last token that has been
      lexed.  But the location of pfile->cur_token[-1] is the same location
      as the location of the "previous" pfile->cur_token[-1], by courtesy of
      _cpp_temp_token().  So normally, in subsequent invocations of
      builtin_macro(), the location of pfile->cur_token[-1] should always be
      the location of the closing parenthesis of the invocation of M at line
      5.  Except that that code in master now has the statement
      "token->src_loc = loc;" on the next line.  That statement actually
      sets the location of pfile->cur_token[-1] to 'loc'.  Which is the
      location of the expansion point of M, which is on line 4.
      
      So in the subsequent call to builtin_macro() (for the last expansion
      of __LINE__ in L(__LINE__)), for _cpp_builtin_macro_text(),
      pfile->cur_token[-1].src_loc is going to have a line number of 4.
      
      I think the core issue here is that the location that is passed to
      builtin_macro() from enter_macro_context() is not correct when we are
      in presence of a top-most function-like macro invocation; in that
      case, that location should be the location of the closing parenthesis
      of the macro invocation.  Otherwise, if we are in presence of a a
      top-most object-like macro invocation then the location passed down
      to builtin_macro should be the location of the expansion point of the
      macro.
      
      That way, in the particular case of the input code above, the location
      received by builtin_macro() will always have line number 5.
      
      Boostrapped and tested on x86_64-unknown-linux-gnu against trunk.
      
      libcpp/ChangeLog:
      
      	* internal.h (cpp_reader::top_most_macro_node): New data member.
      	* macro.c (enter_macro_context): Pass the location of the end of
      	the top-most invocation of the function-like macro, or the
      	location of the expansion point of the top-most object-like macro.
      	(cpp_get_token_1): Store the top-most macro node in the new
      	pfile->top_most_macro_node data member.
      	(_cpp_pop_context): Clear the new cpp_reader::top_most_macro_node
      	data member.
      
      gcc/testsuite/ChangeLog:
      
      	* gcc.dg/cpp/builtin-macro-1.c: New test case.
      
      Signed-off-by: Dodji Seketeli <dodji@redhat.com>
      
      From-SVN: r220367
      Dodji Seketeli committed
    • re PR go/64836 (go.test/test/fixedbugs/issue4348.go FAILs) · 18fbd1ec
      	PR go/64836
      	PR go/64838
      
      compiler: Use int64_t for backend type size and alignment.
      
      Fixes 32-bit host 64-bit target cross-compilation.
      
      	* go-gcc.cc (Gcc_backend::type_size): Change return type to
      	int64_t.
      	(Gcc_backend::type_alignment): Likewise.
      	(Gcc_backend::type_field_alignment): Likewise.
      	(Gcc_backend::type_field_offset): Likewise.
      	(Gcc_backend::implicit_variable): Change alignment parameter type
      	to int64_t.
      
      From-SVN: r220364
      Ian Lance Taylor committed
    • re PR c++/64901 (overriding final function defined out of line does not lead to an error) · 879887f1
      	PR c++/64901
      	* decl.c (duplicate_decls): Also duplicate DECL_FINAL_P and
      	DECL_OVERRIDE_P.
      
      From-SVN: r220363
      Ville Voutilainen committed
    • Daily bump. · cf55ec56
      From-SVN: r220362
      GCC Administrator committed
  2. 02 Feb, 2015 15 commits
  3. 01 Feb, 2015 11 commits
    • enum_9.f90: Use arm_eabi instead of arm*-*-linux*. · f8d6fa7e
      2015-02-01  Andreas Tobler  <andreast@gcc.gnu.org>
      
          * gfortran.dg/enum_9.f90: Use arm_eabi instead of arm*-*-linux*.
          * gfortran.dg/enum_10.f90: Likewise. Reorder dg-additional-sources.
      
      From-SVN: r220330
      Andreas Tobler committed
    • re PR ipa/64872 (ICE: Segmentation fault during Chromium PGO build) · b730d1c9
      
      	PR ipa/64872
      	* ipa-utils.c (ipa_merge_profiles): Add release argument.
      	* ipa-icf.c (sem_function::merge): Do not release body when merging.
      	* ipa-utils.h (ipa_merge_profiles): Update prototype.
      
      From-SVN: r220329
      Jan Hubicka committed
    • re PR debug/64817 (compilation hangs at -O3 with -g enabled on x86_64-linux-gnu) · dfde35b3
      	PR debug/64817
      	* cfgexpand.c (deep_ter_debug_map): New variable.
      	(avoid_deep_ter_for_debug): New function.
      	(expand_debug_expr): If TERed SSA_NAME is in
      	deep_ter_debug_map, use the corresponding DEBUG_EXPR_DECL
      	instead of trying to expand SSA_NAME's def stmt.
      	(expand_debug_locations): When expanding debug bind
      	of a DEBUG_EXPR_DECL to corresponding SSA_NAME,
      	temporarily remove the DEBUG_EXPR_DECL from deep_ter_debug_map's
      	value.
      	(pass_expand::execute): Call avoid_deep_ter_for_debug on
      	all debug bind stmts.  Delete deep_ter_debug_map after
      	expand_debug_location if non-NULL and clear it.
      
      	* gcc.dg/pr64817-1.c: New test.
      	* gcc.dg/pr64817-2.c: New test.
      
      From-SVN: r220320
      Jakub Jelinek committed
    • re PR libstdc++/64883 (FAIL: 17_intro/headers/c++*/all_attributes.cc (test for… · 13fc08e4
      re PR libstdc++/64883 (FAIL: 17_intro/headers/c++*/all_attributes.cc (test for excess errors) on x86_64-apple-darwin10)
      
      	PR libstdc++/64883
      	* include/c_global/cstdio (gets): Use __deprecated__ attribute instead
      	of deprecated.
      	* include/c_std/cstdio (gets): Likewise.
      	* testsuite/17_intro/headers/c++1998/all_attributes.cc: Avoid clashing
      	with attributes used in darwin headers.
      
      From-SVN: r220318
      Jonathan Wakely committed
    • re PR target/64851 ([SH] Add atomic not) · 2b8427ca
      gcc/
      	PR target/64851
      	* config/sh/sync.md (atomic_fetch_notsi_hard,
      	atomic_fetch_not<mode>_hard, atomic_fetch_not<mode>_soft_gusa,
      	atomic_fetch_not<mode>_soft_tcb, atomic_fetch_not<mode>_soft_imask,
      	atomic_not_fetchsi_hard, atomic_not_fetch<mode>_hard,
      	atomic_not_fetch<mode>_soft_gusa, atomic_not_fetch<mode>_soft_tcb,
      	atomic_not_fetch<mode>_soft_imask): New insns.
      
      gcc/testsuite/
      	PR target/64851
      	* gcc.target/sh/pr64851-0.h: New
      	* gcc.target/sh/pr64851-1.c: New
      	* gcc.target/sh/pr64851-2.c: New
      	* gcc.target/sh/pr64851-3.c: New
      	* gcc.target/sh/pr64851-4.c: New
      
      From-SVN: r220317
      Oleg Endo committed
    • Fix scheduling undeterminism from sorting with DEBUG_INSNs · 63387a85
      	* haifa-sched.c (INSN_RFS_DEBUG_ORIG_ORDER): New access macro.
      	(rank_for_schedule_debug): Split from ...
      	(rank_for_schedule): ... this.
      	(ready_sort): Sort DEBUG_INSNs separately from normal INSNs.
      	* sched-int.h (struct _haifa_insn_data): New field rfs_debug_orig_order.
      
      From-SVN: r220316
      Maxim Kuvyrkov committed
    • md.texi (Machine Constraints): Alphabetize table by target. · b4fbcb1b
      2015-01-31  Sandra Loosemore  <sandra@codesourcery.com>
      
      	gcc/
      	* doc/md.texi (Machine Constraints): Alphabetize table by target.
      	* doc/extend.texi (x86 Variable Attributes): Move section to
      	correct alphabetization	after renaming.
      	(x86 Type Attributes): Likewise.
      	(Target Builtins): Re-alphabetize menu.
      	(x86 Built-in Functions): Move section to correct alphabetization
      	after renaming.
      	(x86 transactional memory intrinsics): Likewise.
      	* doc/invoke.texi (Option Summary): Re-alphabetize x86 Options
      	and x86 Windows Options in table and menu.
      	(x86 Options): Move section to correct alphabetization after
      	renaming.
      	(x86 Windows Options): Likewise.
      
      From-SVN: r220315
      Sandra Loosemore committed
    • Correct Changelog for r220309 · 0353c564
      From-SVN: r220314
      Sandra Loosemore committed
    • Always pass 0 or option number to gfc_warning*. · db30e21c
      Similar to the issue with fatal_error that I fixed in
      <https://gcc.gnu.org/ml/gcc-patches/2015-01/msg02690.html>, the
      overloads of gfc_warning and gfc_warning_now (with and without a first
      argument for an option number) also break gcc.pot regeneration because
      xgettext expects the translated string argument to be in a fixed
      position for a given function name.  This patch applies the
      corresponding fix of always passing a first argument (option number or
      0), just like the core diagnostic functions warning and warning_at,
      and removing the problem overloads without it.
      
      Bootstrapped with no regressions on x86_64-unknown-linux-gnu.
      
      	* error.c (gfc_warning (const char *, ...), gfc_warning_now (const
      	char *, ...)): Remove functions.
      	* gfortran.h (gfc_warning (const char *, ...), gfc_warning_now
      	(const char *, ...)): Remove declarations.
      	* arith.c, check.c, data.c, decl.c, frontend-passes.c,
      	interface.c, intrinsic.c, io.c, matchexp.c, module.c, openmp.c,
      	options.c, parse.c, primary.c, resolve.c, scanner.c, symbol.c,
      	trans-common.c, trans-const.c, trans-stmt.c: All callers of
      	gfc_warning and gfc_warning_now changed to pass 0 or option number
      	as first argument.
      
      From-SVN: r220313
      Joseph Myers committed
    • Daily bump. · 35fa7aa7
      From-SVN: r220312
      GCC Administrator committed
  4. 31 Jan, 2015 7 commits