1. 12 Nov, 2013 7 commits
  2. 11 Nov, 2013 20 commits
  3. 10 Nov, 2013 8 commits
  4. 09 Nov, 2013 5 commits
    • function.c (NAME__MAIN): Move to... · 8a6ce562
      2013-11-09  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
      
      	* function.c (NAME__MAIN): Move to...
      	* cfgexpand.c (NAME__MAIN): ...here.
      
      [BR]: http://gcc.gnu.org/ml/gcc-patches/2013-11/msg01003.html
      
      From-SVN: r204620
      Jan-Benedict Glaw committed
    • c-common.c (atomic_size_supported_p): New function. · 6b28e197
      	* c-common.c (atomic_size_supported_p): New function.
      	(resolve_overloaded_atomic_exchange)
      	(resolve_overloaded_atomic_compare_exchange)
      	(resolve_overloaded_atomic_load, resolve_overloaded_atomic_store):
      	Use it instead of comparing size with a local list of sizes.
      
      From-SVN: r204618
      Joseph Myers committed
    • runtime: Correct flag (FlagNoGC => FlagNoInvokeGC). · 86dedeba
      From-SVN: r204617
      Ian Lance Taylor committed
    • re PR libstdc++/58982 (std::vector<std::atomic<int>> vai(10); does not compile anymore) · 5275f3e5
      	PR libstdc++/58982
      	* include/bits/stl_algobase.h (__copy_move::__copy_m): Use assertion
      	to prevent using memmove() on non-assignable types.
      	(__copy_move_backward::__copy_move_b): Likewise.
      	* include/bits/stl_uninitialized.h (uninitialized_copy
      	uninitialized_copy_n, uninitialized_fill, uninitialized_fill_n,
      	__uninitialized_default, __uninitialized_default_n): Check for
      	assignable as well as trivial.
      	* testsuite/20_util/specialized_algorithms/uninitialized_copy/
      	58982.cc: New.
      	* testsuite/20_util/specialized_algorithms/uninitialized_copy_n/
      	58982.cc: New.
      	* testsuite/20_util/specialized_algorithms/uninitialized_fill/
      	58982.cc: New.
      	* testsuite/20_util/specialized_algorithms/uninitialized_fill_n/
      	58982.cc: New.
      	* testsuite/25_algorithms/copy/58982.cc: New.
      	* testsuite/25_algorithms/copy_n/58982.cc: New.
      
      From-SVN: r204615
      Jonathan Wakely committed
    • target.def (can_use_doloop_p): New hook. · 1d0216c8
      gcc/
      	* target.def (can_use_doloop_p): New hook.
      	* doc/tm.texi.in (TARGET_CAN_USE_DOLOOP_P): Add.
      	* doc/tm.texi: Regenerate.
      	* doc/md.texi (doloop_begin, doloop_end): Update documentation.
      	* hooks.h (hook_bool_dint_dint_uint_true): Declare.
      	* hooks.c (hook_bool_dint_dint_uint_true): New function.
      	* targhooks.h (can_use_doloop_if_innermost): Declare.
      	* targhooks.c (can_use_doloop_if_innermost): New function.
      	* target.h: Include double-int.h.
      	* loop-doloop.c (doloop_optimize): Call targetm.can_use_doloop_p.
      	Remove iteration count, maximum iteration count, loop depth and
      	enter-at-top inputs from doloop_begin and doloop_end.
      	* config/arc/arc.md (doloop_begin, doloop_end): Update for new
      	interface.
      	* config/arc/arc.c (arc_can_use_doloop_p): New function.
      	(TARGET_CAN_USE_DOLOOP_P): Define.
      	* config/arm/thumb2.md (doloop_end): Update for new interface.
      	* config/arm/arm.c (TARGET_CAN_USE_DOLOOP_P): Define.
      	* config/bfin/bfin.md (doloop_end): Update for new interface.
      	* config/bfin/bfin.c (bfin_can_use_doloop_p): New function.
      	(TARGET_CAN_USE_DOLOOP_P): Define.
      	* config/c6x/c6x.md (doloop_end): Update for new interface.
      	* config/ia64/ia64.md (doloop_end): Update for new interface.
      	* config/ia64/ia64.c (TARGET_CAN_USE_DOLOOP_P): Define.
      	* config/mep/mep.md (doloop_begin, doloop_end): Update for new
      	interface.
      	* config/mep/mep.c (mep_emit_doloop): Likewise.
      	(TARGET_CAN_USE_DOLOOP_P): Define.
      	* config/rs6000/rs6000.md (doloop_end): Update for new interface.
      	* config/rs6000/rs6000.c (TARGET_CAN_USE_DOLOOP_P): Define.
      	* config/s390/s390.md (doloop_end): Update for new interface.
      	* config/sh/sh.md (doloop_end): Likewise.
      	* config/spu/spu.md (doloop_end): Likewise.
      	* config/spu/spu.c (TARGET_CAN_USE_DOLOOP_P): Define.
      	* config/tilegx/tilegx.md (doloop_end): Update for new interface.
      	* config/tilegx/tilegx.c (TARGET_CAN_USE_DOLOOP_P): Define.
      	* config/tilepro/tilepro.md (doloop_end): Update for new interface.
      	* config/tilepro/tilepro.c (TARGET_CAN_USE_DOLOOP_P): Define.
      	* config/v850/v850.md (doloop_begin, doloop_end): Update for new
      	interface.
      	* config/v850/v850.c (TARGET_CAN_USE_DOLOOP_P): Define.
      
      From-SVN: r204614
      Richard Sandiford committed