1. 07 Sep, 2015 5 commits
  2. 06 Sep, 2015 2 commits
  3. 05 Sep, 2015 1 commit
  4. 04 Sep, 2015 18 commits
    • PR 53379 Print backtrace on error termination. · 71cda9ca
      2015-09-05  Janne Blomqvist  <jb@gcc.gnu.org>
      
      	PR fortran/53379
      	* libgfortran.h (exit_error): New prototype.
      	* runtime/error.c (exit_error): New function.
      	(os_error): Call exit_error instead of exit.
      	(runtime_error): Likewise.
      	(runtime_error_at): Likewise.
      	(internal_error): Likewise.
      	(generate_error): Likewise.
      	(notify_std): Likewise.
      	* runtime/stop.c (error_stop_string): Likewise.
      	(error_stop_numeric): Likewise.
      
      From-SVN: r227503
      Janne Blomqvist committed
    • intrinsic.h (gfc_simplify_mvbits): Remove. · 5e229618
      	* intrinsic.h (gfc_simplify_mvbits): Remove.
      	* simplify.c (gfc_simplify_mvbits): Remove.
      	* intrinsic.c (add_subroutines): Remove reference to
      	gfc_simplify_mvbits.
      
      From-SVN: r227502
      Francois-Xavier Coudert committed
    • re PR fortran/67429 (Missing part of error messages.) · 63019f0c
      2015-09-04  Manuel López-Ibáñez  <manu@gcc.gnu.org>
      
      	PR fortran/67429
      	* error.c (gfc_clear_pp_buffer): Reset last_location, otherwise
      	caret lines might be skipped when actually giving a diagnostic.
      
      From-SVN: r227500
      Manuel López-Ibáñez committed
    • re PR middle-end/67452 (LTO ICE with -fopenmp-simd) · 547fba7e
      	PR middle-end/67452
      	* tree-ssa-live.c: Include cfgloop.h.
      	(remove_unused_locals): Clear loop->simduid if simduid is about
      	to be removed from cfun->local_decls.
      
      	* gcc.dg/lto/pr67452_0.c: New test.
      
      From-SVN: r227498
      Jakub Jelinek committed
    • re PR target/65210 ([avr] ICE: when using attributs 'address' and 'io_low') · b52ec220
      gcc/ChangeLog
      
      	PR target/65210
      	* config/avr/avr.c (avr_eval_addr_attrib): Look for io_low
      	attribute as well.
      
      gcc/testsuite/ChangeLog
      
      	PR target/65210
      	* gcc.target/avr/pr65210.c: New test.
      
      From-SVN: r227496
      Senthil Kumar Selvaraj committed
    • fix darwin bootstrap errors due to <mutex>. · c79c59f0
      	PR libstdc++/65704
      	* include/std/mutex (recursive_timed_mutex): Fix uses of _Can_lock.
      
      From-SVN: r227495
      Jonathan Wakely committed
    • Document ftrapv/fwrapv interaction · 075e268e
      2015-09-04  Tom de Vries  <tom@codesourcery.com>
      
      	* doc/invoke.texi (@item -ftrapv, @item -fwrapv): Document interaction.
      
      From-SVN: r227494
      Tom de Vries committed
    • [PATCH] Minor cleanup of const_and_copies stack · a12cbc57
      	* tree-ssa-scopedtables.c (const_and_copies::const_and_copies): Remove
      	unnecessary constructor.  It's now trivial and implemented inside...
      	* tree-ssa-scopedtables.h (const_and_copies): Implement trivial
      	constructor.  Add comments to various methods.  Remove unused
      	private fields.
      	* tree-ssa-dom.c (pass_dominator::execute): Corresponding changes.
      	* tree-vrp.c (identify_jump_threads): Likewise.
      	* tree-ssa-threadedge.c (thread_through_normal_block): Fix minor
      	indentation issues.
      	(thread_across_edge): Similarly.
      	(record_temporary_equivalences_from_stmts_at_dest): Remove unused
      	arguments in constructor call.
      
      From-SVN: r227493
      Jeff Law committed
    • Apppend $prop to et_prop_list only if needed · 0417fe49
      	PR testsuite/67450
      	* lib/target-supports.exp (check_cached_effective_target):
      	Apppend $prop to et_prop_list only if needed.
      
      From-SVN: r227492
      H.J. Lu committed
    • re PR c/67279 (-fsanitize=undefined spurious error: initializer element is not constant) · b2aaf235
      	PR sanitizer/67279
      	* c-typeck.c (build_binary_op): Don't instrument static initializers.
      
      	* gcc.dg/ubsan/pr67279.c: New test.
      
      From-SVN: r227491
      Marek Polacek committed
    • Add portable timed_mutex and recursive_timed_mutex. · f16081c2
      	PR libstdc++/65704
      	* include/Makefile.am: Add <bits/mutex.h>.
      	* include/Makefile.in: Regenerate.
      	* include/bits/mutex.h (__mutex_base, mutex, lock_guard, unique_lock):
      	New file containing types moved from <mutex>.
      	* include/std/condition_variable: Include <bits/mutex.h> instead of
      	<mutex>.
      	* include/std/mutex (__mutex_base, mutex, lock_guard, unique_lock):
      	Move to <bits/mutex.h>.
      	*  testsuite/30_threads/recursive_timed_mutex/cons/1.cc: Remove
      	dg-require-gthreads-timed.
      	*  testsuite/30_threads/recursive_timed_mutex/cons/assign_neg.cc:
      	Likewise.
      	*  testsuite/30_threads/recursive_timed_mutex/cons/copy_neg.cc:
      	Likewise.
      	*  testsuite/30_threads/recursive_timed_mutex/dest/
      	destructor_locked.cc: Likewise.
      	*  testsuite/30_threads/recursive_timed_mutex/lock/1.cc: Likewise.
      	*  testsuite/30_threads/recursive_timed_mutex/lock/2.cc: Likewise.
      	*  testsuite/30_threads/recursive_timed_mutex/try_lock/1.cc: Likewise.
      	*  testsuite/30_threads/recursive_timed_mutex/try_lock/2.cc: Likewise.
      	*  testsuite/30_threads/recursive_timed_mutex/try_lock_for/1.cc:
      	Likewise.
      	*  testsuite/30_threads/recursive_timed_mutex/try_lock_for/2.cc:
      	Likewise.
      	*  testsuite/30_threads/recursive_timed_mutex/try_lock_for/3.cc:
      	Likewise.
      	*  testsuite/30_threads/recursive_timed_mutex/try_lock_until/1.cc:
      	Likewise.
      	*  testsuite/30_threads/recursive_timed_mutex/try_lock_until/2.cc:
      	Likewise.
      	*  testsuite/30_threads/recursive_timed_mutex/unlock/1.cc: Likewise.
      	*  testsuite/30_threads/timed_mutex/cons/1.cc: Likewise.
      	*  testsuite/30_threads/timed_mutex/cons/assign_neg.cc: Likewise.
      	*  testsuite/30_threads/timed_mutex/cons/copy_neg.cc: Likewise.
      	*  testsuite/30_threads/timed_mutex/dest/destructor_locked.cc:
      	Likewise.
      	*  testsuite/30_threads/timed_mutex/lock/1.cc: Likewise.
      	*  testsuite/30_threads/timed_mutex/requirements/standard_layout.cc:
      	Likewise.
      	*  testsuite/30_threads/timed_mutex/try_lock/1.cc: Likewise.
      	*  testsuite/30_threads/timed_mutex/try_lock/2.cc: Likewise.
      	*  testsuite/30_threads/timed_mutex/try_lock_for/1.cc: Likewise.
      	*  testsuite/30_threads/timed_mutex/try_lock_for/2.cc: Likewise.
      	*  testsuite/30_threads/timed_mutex/try_lock_for/3.cc: Likewise.
      	*  testsuite/30_threads/timed_mutex/try_lock_until/1.cc: Likewise.
      	*  testsuite/30_threads/timed_mutex/try_lock_until/2.cc: Likewise.
      	*  testsuite/30_threads/timed_mutex/try_lock_until/57641.cc: Likewise.
      	*  testsuite/30_threads/timed_mutex/unlock/1.cc: Likewise.
      	*  testsuite/30_threads/unique_lock/cons/5.cc: Likewise.
      	*  testsuite/30_threads/unique_lock/cons/6.cc: Likewise.
      	*  testsuite/30_threads/unique_lock/locking/3.cc: Likewise.
      	*  testsuite/30_threads/unique_lock/locking/4.cc: Likewise.
      
      From-SVN: r227490
      Jonathan Wakely committed
    • intelmic-mkoffload.c (prepare_target_image): Fix if the temp path contains a '-'. · cda844f0
      2015-09-04  Jonas Hahnfeld  <Hahnfeld@itc.rwth-aachen.de>
      
      gcc/
      	* config/i386/intelmic-mkoffload.c (prepare_target_image): Fix if the
      	temp path contains a '-'.
      
      From-SVN: r227489
      Jonas Hahnfeld committed
    • Add C++11 header <cuchar>. · 20b5f0b3
      2015-09-04  Edward Smith-Rowland  <3dw4rd@verizon.net>
      	    Jonathan Wakely  <jwakely@redhat.com>
      
      	* acinclude.m4 (GLIBCXX_CHECK_UCHAR_H): Define.
      	* config.h.in: Regenerate.
      	* configure: Regenerate.
      	* configure.ac: Check for <uchar.h>.
      	* include/Makefile.am: Add new headers.
      	* include/Makefile.in: Regenerate.
      	* include/c/cuchar: New.
      	* include/c_compatibility/uchar.h: New.
      	* include/c_global/cuchar: New.
      	* include/c_std/cuchar: New.
      	* include/precompiled/stdc++.h: Include <cuchar>.
      	* testsuite/17_intro/headers/c++200x/stdc++.cc: Include <uchar.h>.
      	* testsuite/17_intro/headers/c++200x/stdc++_multiple_inclusion.cc:
      	Include <uchar.h>.
      
      Co-Authored-By: Jonathan Wakely <jwakely@redhat.com>
      
      From-SVN: r227488
      Edward Smith-Rowland committed
    • Make all <cxxx> headers include <bits/c++config.h> · 57003677
      	PR libstdc++/65473
      	* include/c/cassert: Include <bits/c++config.h>.
      	* include/c/cerrno: Likewise.
      	* include/c/cfloat: Likewise.
      	* include/c/ciso646: Likewise.
      	* include/c/climits: Likewise.
      	* include/c_global/cassert: Likewise.
      	* include/c_global/cerrno: Likewise.
      	* include/c_global/cfloat: Likewise.
      	* include/c_global/ciso646: Likewise.
      	* include/c_global/climits: Likewise.
      	* include/c_std/cassert: Likewise.
      	* include/c_std/cerrno: Likewise.
      	* include/c_std/cfloat: Likewise.
      	* include/c_std/ciso646: Likewise.
      	* include/c_std/climits: Likewise.
      
      From-SVN: r227484
      Jonathan Wakely committed
    • avx512f-scatter-1.c: New. · 938c4af0
      
      gcc/testsuite/
      	* gcc.target/i386/avx512f-scatter-1.c: New.
      	* gcc.target/i386/avx512f-scatter-2.c: Ditto.
      	* gcc.target/i386/avx512f-scatter-3.c: Ditto.
      
      Co-Authored-By: Kirill Yukhin <kirill.yukhin@intel.com>
      Co-Authored-By: Petr Murzin <petr.murzin@intel.com>
      
      From-SVN: r227483
      Andrey Turetskiy committed
    • gcc/ · 624dcfd6
      	* config/i386/i386-builtin-types.def
      	(VOID_PFLOAT_HI_V8DI_V16SF_INT): New.
      	(VOID_PDOUBLE_QI_V16SI_V8DF_INT): Ditto.
      	(VOID_PINT_HI_V8DI_V16SI_INT): Ditto.
      	(VOID_PLONGLONG_QI_V16SI_V8DI_INT): Ditto.
      	* config/i386/i386.c
      	(ix86_builtins): Add IX86_BUILTIN_SCATTERALTSIV8DF,
      	IX86_BUILTIN_SCATTERALTDIV16SF, IX86_BUILTIN_SCATTERALTSIV8DI,
      	IX86_BUILTIN_SCATTERALTDIV16SI.
      	(ix86_init_mmx_sse_builtins): Define __builtin_ia32_scatteraltsiv8df,
      	__builtin_ia32_scatteraltdiv8sf, __builtin_ia32_scatteraltsiv8di,
      	__builtin_ia32_scatteraltdiv8si.
      	(ix86_expand_builtin): Handle IX86_BUILTIN_SCATTERALTSIV8DF,
      	IX86_BUILTIN_SCATTERALTDIV16SF, IX86_BUILTIN_SCATTERALTSIV8DI,
      	IX86_BUILTIN_SCATTERALTDIV16SI.
      	(ix86_vectorize_builtin_scatter): New.
      	(TARGET_VECTORIZE_BUILTIN_SCATTER): Define as
      	ix86_vectorize_builtin_scatter.
      
      Co-Authored-By: Kirill Yukhin <kirill.yukhin@intel.com>
      Co-Authored-By: Petr Murzin <petr.murzin@intel.com>
      
      From-SVN: r227482
      Andrey Turetskiy committed
    • tm.texi.in (TARGET_VECTORIZE_BUILTIN_SCATTER): New. · 3bab6342
      
      gcc/
      	* doc/tm.texi.in (TARGET_VECTORIZE_BUILTIN_SCATTER): New.
      	* doc/tm.texi: Regenerate.
      	* target.def: Add scatter builtin.
      	* tree-vectorizer.h: Rename gather_p to gather_scatter_p and use it
      	for loads/stores in case of gather/scatter accordingly.
      	(STMT_VINFO_GATHER_SCATTER_P(S)): Use it instead of STMT_VINFO_GATHER_P(S).
      	(vect_check_gather): Rename to ...
      	(vect_check_gather_scatter): this.
      	* tree-vect-data-refs.c (vect_analyze_data_ref_dependence): Use
      	STMT_VINFO_GATHER_SCATTER_P instead of STMT_VINFO_SCATTER_P.
      	(vect_check_gather_scatter): Use it instead of vect_check_gather.
      	(vect_analyze_data_refs): Add gatherscatter enum and maybe_scatter variable
      	and new checkings for it accordingly.
      	* tree-vect-stmts.c
      	(STMT_VINFO_GATHER_SCATTER_P(S)): Use it instead of STMT_VINFO_GATHER_P(S).
      	(vect_check_gather_scatter): Use it instead of vect_check_gather.
      	(vectorizable_store): Add checkings for STMT_VINFO_GATHER_SCATTER_P.
      
      Co-Authored-By: Kirill Yukhin <kirill.yukhin@intel.com>
      Co-Authored-By: Petr Murzin <petr.murzin@intel.com>
      
      From-SVN: r227481
      Andrey Turetskiy committed
    • Daily bump. · 301c092c
      From-SVN: r227480
      GCC Administrator committed
  5. 03 Sep, 2015 14 commits