1. 11 Oct, 2016 4 commits
    • Makefile.in (C_COMMON_OBJS): Add c-family/c-warn.o. · 038b5cc0
      	* Makefile.in (C_COMMON_OBJS): Add c-family/c-warn.o.
      
      	* c-common.c (fold_for_warn): No longer static.
      	(bool_promoted_to_int_p): Likewise.
      	(c_common_get_narrower): Likewise.
      	(constant_expression_warning): Move to c-warn.c.
      	(constant_expression_error): Likewise.
      	(overflow_warning): Likewise.
      	(warn_logical_operator): Likewise.
      	(find_array_ref_with_const_idx_r): Likewise.
      	(warn_tautological_cmp): Likewise.
      	(expr_has_boolean_operands_p): Likewise.
      	(warn_logical_not_parentheses): Likewise.
      	(warn_if_unused_value): Likewise.
      	(strict_aliasing_warning): Likewise.
      	(sizeof_pointer_memaccess_warning): Likewise.
      	(check_main_parameter_types): Likewise.
      	(conversion_warning): Likewise.
      	(warnings_for_convert_and_check): Likewise.
      	(match_case_to_enum_1): Likewise.
      	(match_case_to_enum): Likewise.
      	(c_do_switch_warnings): Likewise.
      	(warn_for_omitted_condop): Likewise.
      	(readonly_error): Likewise.
      	(lvalue_error): Likewise.
      	(invalid_indirection_error): Likewise.
      	(warn_array_subscript_with_type_char): Likewise.
      	(warn_about_parentheses): Likewise.
      	(warn_for_unused_label): Likewise.
      	(warn_for_div_by_zero): Likewise.
      	(warn_for_memset): Likewise.
      	(warn_for_sign_compare): Likewise.
      	(do_warn_double_promotion): Likewise.
      	(do_warn_unused_parameter): Likewise.
      	(record_locally_defined_typedef): Likewise.
      	(maybe_record_typedef_use): Likewise.
      	(maybe_warn_unused_local_typedefs): Likewise.
      	(maybe_warn_bool_compare): Likewise.
      	(maybe_warn_shift_overflow): Likewise.
      	(warn_duplicated_cond_add_or_warn): Likewise.
      	(diagnose_mismatched_attributes): Likewise.
      	* c-common.h: Move the declarations from c-warn.c to its own section.
      	* c-warn.c: New file.
      
      From-SVN: r240963
      Marek Polacek committed
    • Daily bump. · 07f51707
      From-SVN: r240962
      GCC Administrator committed
    • compiler: move Backend/Linemap creation out of front end. · 3c061ac0
          
          Push the calls to create Backend and Linemap object out
          of the front end into the back end, and instead pass pointers to
          these objects in the go_create_gogo_args struct. This allows
          for more flexibility in the interfaces used to create the
          objects.
          
          Reviewed-on: https://go-review.googlesource.com/30698
      
      	* go-gcc.h: New file.
      	* go-c.h (struct go_create_gogo_args): Add backend and linemap
      	fields.
      	* go-lang.c: Include "go-gcc.h".
      	(go_langhook_init): Set linemap and backend fields of args.
      	* go-gcc.cc: Include "go-gcc.h".
      	* go-linemap.cc: Include "go-gcc.h".
      
      From-SVN: r240959
      Than McIntosh committed
    • Accidentally failed to commit these earlier, as part of: · abe08b7d
          Update the compiler to use the new names.  Add calls to printlock and
          printunlock around print statements.  Move expression evaluation before
          the call to printlock.  Update g's writebuf field to a slice, and adjust
          C code accordingly.
      
          Reviewed-on: https://go-review.googlesource.com/30717
      
      From-SVN: r240958
      Ian Lance Taylor committed
  2. 10 Oct, 2016 36 commits
    • Infer and push new value ranges for x in y < x. · 5b69c5e5
      gcc/ChangeLog:
      
      2016-10-11  Kugan Vivekanandarajah  <kuganv@linaro.org>
      
      	* tree-vrp.c (evrp_dom_walker::try_add_new_range): New.
      	(evrp_dom_walker::before_dom_children): Infer and push new value
      	ranges for x in y < x.
      
      From-SVN: r240957
      Kugan Vivekanandarajah committed
    • runtime: copy print/println support from Go 1.7 · 65180edc
          
          Update the compiler to use the new names.  Add calls to printlock and
          printunlock around print statements.  Move expression evaluation before
          the call to printlock.  Update g's writebuf field to a slice, and adjust
          C code accordingly.
          
          Reviewed-on: https://go-review.googlesource.com/30717
      
      From-SVN: r240956
      Ian Lance Taylor committed
    • Always support float128 on ia64 (PR target/77586). · 73f01cca
      Bug 77586, and previously
      <https://gcc.gnu.org/ml/gcc-bugs/2016-08/msg03233.html>, reports
      ia64-elf failing to build because of float128_type_node being NULL,
      but being used by the back end for __float128.
      
      The global float128_type_node is only available conditionally, if
      target hooks indicate TFmode is not only available as a scalar mode
      and of the right format, but also supported in libgcc.  The back-end
      support, however, expects the type always to be available for
      __float128 even if the libgcc support is missing.
      
      Although a target-specific node could be restored in the case where
      libgcc support is missing, it seems better to address the missing
      libgcc support.  Thus, this patch enables TFmode soft-fp in libgcc
      globally for all ia64 targets.  Support for XFmode in libgcc (that is,
      for libgcc2.c XFmode functions, not soft-fp) is also enabled for all
      ia64 targets so that ia64 no longer needs to define the
      TARGET_LIBGCC_FLOATING_MODE_SUPPORTED_P hook.
      
      I've confirmed that ia64-elf builds cc1 with this patch and it passes
      -fself-test.  I have not otherwise tested the patch.  It's plausible
      that ia64-elf and ia64-freebsd might work as-is, but ia64-vms probably
      needs further changes, by someone familiar with VMS shared libraries,
      to implement an equivalent of ia64/t-softfp-compat in that case
      (avoiding conflicts between __divtf3 from soft-fp and the old alias
      for __divxf3).
      
      	PR target/77586
      gcc:
      	* config/ia64/ia64.c (ia64_libgcc_floating_mode_supported_p)
      	(TARGET_LIBGCC_FLOATING_MODE_SUPPORTED_P): Remove.
      	* config/ia64/elf.h (IA64_NO_LIBGCC_TFMODE): Likewise.
      	* config/ia64/freebsd.h (IA64_NO_LIBGCC_TFMODE): Likewise.
      	* config/ia64/vms.h (IA64_NO_LIBGCC_XFMODE)
      	(IA64_NO_LIBGCC_TFMODE): Likewise.
      
      libgcc:
      	* config.host (ia64*-*-elf*, ia64*-*-freebsd*, ia64-hp-*vms*): Use
      	soft-fp.
      
      From-SVN: r240955
      Joseph Myers committed
    • * sv.po: Update. · 6e341649
      From-SVN: r240953
      Joseph Myers committed
    • Improve docs on libstdc++ source-code layout · 5c248975
      	* doc/xml/manual/appendix_contributing.xml (contrib.organization):
      	Replace <literallayout> with nested <variablelist> elements. Update
      	some more outdated text.
      	* doc/html/*: Regenerate.
      
      From-SVN: r240952
      Jonathan Wakely committed
    • Make any's copy assignment operator exception-safe, · 1725d05d
      don't copy the underlying value when any is moved,
      make in_place constructors explicit.
      * include/std/any (any(in_place_type_t<_ValueType>, _Args&&...)):
      Make explicit.
      (any(in_place_type_t<_ValueType>, initializer_list<_Up>, _Args&&...)):
      Likewise.
      (operator=(const any&)): Make strongly exception-safe.
      (operator=(any&&)): reset() unconditionally in the case where
      rhs has a value.
      (operator=(_ValueType&&)): Indent the return type.
      (_Manager_internal<_Tp>::_S_manage): Move in _Op_xfer, don't copy.
      * testsuite/20_util/any/assign/2.cc: Adjust.
      * testsuite/20_util/any/assign/exception.cc: New.
      * testsuite/20_util/any/cons/2.cc: Adjust.
      * testsuite/20_util/any/cons/explicit.cc: New.
      * testsuite/20_util/any/misc/any_cast_neg.cc: Ajust.
      
      From-SVN: r240951
      Ville Voutilainen committed
    • Allocate bitmap before copying · 496f8eea
      Allocate bitmap before copying
      gcc/ChangeLog:
      
      2016-10-11  Kugan Vivekanandarajah  <kuganv@linaro.org>
      
      	* tree-vrp.c (vrp_intersect_ranges_1): Allocate bitmap before
      	  copying.
      
      From-SVN: r240950
      Kugan Vivekanandarajah committed
    • configure.ac: Add aarch64-*-freebsd*. · b20e7532
      toplevel:
      
      2016-10-10  Andreas Tobler <andreast@gcc.gnu.org>
      
          * configure.ac: Add aarch64-*-freebsd*.
          * configure: Regenerate.
      
      gcc:
      
      2016-10-10  Andreas Tobler  <andreast@gcc.gnu.org>
      
          * config.gcc: Add aarch64-*-freebsd* support.
          * config.host: Likewise.
          * config/aarch64/aarch64-freebsd.h: New file.
          * config/aarch64/t-aarch64-freebsd: Ditto.
      
      libgcc:
      
      2016-10-10  Andreas Tobler  <andreast@gcc.gnu.org>
      
          * config.host: Add support for aarch64-*-freebsd*.
      
      From-SVN: r240949
      Andreas Tobler committed
    • C++17 class deduction issues · b7beb16a
      	PR c++/77890
      	PR c++/77912
      	* pt.c (do_class_deduction): Set cp_unevaluated_operand.
      	(tsubst) [TEMPLATE_TYPE_PARM]: Copy CLASS_PLACEHOLDER_TEMPLATE.
      
      From-SVN: r240948
      Jason Merrill committed
    • re PR tree-optimization/71947 (x ^ y not folded to 0 if x == y by DOM) · d30078b8
              PR tree-optimization/71947
      	* tree-ssa-dom.c (cprop_into_stmt): Avoid replacing A with B, then
      	B with A within a single statement.
      
      	PR tree-optimization/71947
      	* gcc.dg/tree-ssa/pr71947-1.c: New test.
      	* gcc.dg/tree-ssa/pr71947-2.c: New test.
      	* gcc.dg/tree-ssa/pr71947-3.c: New test.
      	* gcc.dg/tree-ssa/pr71947-4.c: New test.
      	* gcc.dg/tree-ssa/pr71947-5.c: New test.
      	* gcc.dg/tree-ssa/pr71947-6.c: New test.
      
      From-SVN: r240947
      Jeff Law committed
    • Update docs on libstdc++ source-code layout · db625934
      	* doc/xml/manual/appendix_contributing.xml (contrib.organization):
      	Describe other subdirectories and add markup. Remove outdated
      	reference to check-script target.
      	* doc/html/*: Regenerate.
      
      From-SVN: r240946
      Jonathan Wakely committed
    • re PR tree-optimization/77824 (unreachable code in SLSR GIMPLE pass) · fbcdc43e
      2016-10-10  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
      
      	PR tree-optimization/77824
      	* gimple-ssa-strength-reduction.c (stmt_cost): Explicitly return
      	zero cost for copies.
      	(find_candidates_dom_walker::before_dom_children): Replace
      	MODIFY_EXPR with SSA_NAME.
      	(replace_mult_candidate): Likewise.
      	(replace_profitable_candidates): Likewise.
      
      From-SVN: r240945
      Bill Schmidt committed
    • Correct C++11 implementation status docs · e2be4477
      	* doc/xml/manual/status_cxx2011.xml: Correct C++11 status.
      
      From-SVN: r240944
      Jonathan Wakely committed
    • Use noexcept instead of _GLIBCXX_USE_NOEXCEPT · a3dbb635
      	* libsupc++/eh_ptr.cc (exception_ptr): Replace _GLIBCXX_USE_NOEXCEPT
      	with noexcept.
      
      From-SVN: r240943
      Jonathan Wakely committed
    • compiler: prune away gcc-specific linemap usage · 71543388
          
          Add an interface to the go Linemap class to allow clients to ask for the
          line number for a Location (for debugging dumps), so as to move some
          gcc-specific location code into the back end.
          
          Reviewed-on: https://go-review.googlesource.com/30699
      
      	* go-linemap.cc (Gcc_linemap::location_line): New method.
      
      From-SVN: r240942
      Than McIntosh committed
    • runtime: copy channel code from Go 1.7 runtime · 5d8c099e
          
          Change the compiler to use the new routines. Drop the separation of
          small and large values when sending on a channel. Allocate the select
          struct on the stack. Remove the old C implementation of channels. Adjust
          the garbage collector for the new data structure.
          
          Bring in part of the tracing code, enough for the channel code to call.
          
          Bump the permitted number of allocations in one of the tests in
          context_test.go. The difference is that now receiving from a channel
          allocates a sudog, which the C code used to simply put on the
          stack. This will be somewhat better when we port proc.go.
          
          Reviewed-on: https://go-review.googlesource.com/30714
      
      From-SVN: r240941
      Ian Lance Taylor committed
    • Minor simplification to std::_Bind_result helpers · 40962ac0
      	* include/std/functional (_Bind_result::__enable_if_void): Use alias
      	template instead of class template.
      	(_Bind_result::__disable_if_void): Likewise.
      	(_Bind_result::__call): Adjust uses of __enable_if_void and
      	__disable_if_void.
      
      From-SVN: r240940
      Jonathan Wakely committed
    • S/390: Wrap more macro args into () · 2d6744f4
      Turned out that there where a few () around macro args uses missing.
      One real problem with it was detected with the int-in-bool-context in
      the definition of DBX_REGISTER_NUMBER. But while being at it I've
      also tried to fix other places where brackets might be missing.
      
      gcc/ChangeLog:
      
      2016-10-10  Andreas Krebbel  <krebbel@linux.vnet.ibm.com>
      
      	* config/s390/s390.h: Wrap more macros args in brackets and fix
              some formatting.
      
      From-SVN: r240930
      Andreas Krebbel committed
    • Implement constexpr std::addressof for C++17 · 9e023e33
      	* doc/xml/manual/intro.xml: Document DR 2296 status.
      	* doc/xml/manual/status_cxx2017.xml: Update status.
      	* include/bits/move.h (__addressof): Add _GLIBCXX_CONSTEXPR and
      	call __builtin_addressof.
      	(addressof): Add _GLIBCXX17_CONSTEXPR.
      	* testsuite/20_util/addressof/requirements/constexpr.cc: New test.
      	* testsuite/20_util/forward/c_neg.cc: Adjust dg-error lineno.
      	* testsuite/20_util/forward/f_neg.cc: Likewise.
      
      From-SVN: r240929
      Jonathan Wakely committed
    • re PR fortran/77915 (Internal error for matmul() in forall with optimization) · 5f869266
      2016-10-10  Thomas Koenig  <tkoenig@gcc.gnu.org>
      
      	PR fortran/77915
      	* frontend-passes.c (inline_matmul_assign):  Return early if
      	inside a FORALL statement.
      
      2016-10-10  Thomas Koenig  <tkoenig@gcc.gnu.org>
      
      	PR fortran/77915
      	* gfortran.dg/matmul_11.f90:  New test.
      
      From-SVN: r240928
      Thomas Koenig committed
    • gen-avr-mmcu-texi.c (string.h): Include. · df48be86
      	* config/avr/gen-avr-mmcu-texi.c (string.h): Include.
      
      From-SVN: r240925
      Georg-Johann Lay committed
    • [4/4] ARMv8.2-A testsuite for new scalar intrinsics · 174e0b00
      gcc/testsuite/
      
      	* gcc.target/aarch64/advsimd-intrinsics/unary_scalar_op.inc: Support FMT64.
      	* gcc.target/aarch64/advsimd-intrinsics/vabdh_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcageh_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcagth_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcaleh_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcalth_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vceqh_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vceqzh_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcgeh_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcgezh_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcgth_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcgtzh_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcleh_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vclezh_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vclth_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcltzh_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvtah_s16_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvtah_s64_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvtah_u16_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvtah_u64_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvth_f16_s16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvth_f16_s64_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvth_f16_u16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvth_f16_u64_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvth_n_f16_s16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvth_n_f16_s64_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvth_n_f16_u16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvth_n_f16_u64_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvth_n_s16_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvth_n_s64_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvth_n_u16_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvth_n_u64_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvth_s16_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvth_s64_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvth_u16_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvth_u64_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvtmh_s16_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvtmh_s64_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvtmh_u16_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvtmh_u64_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvtnh_s16_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvtnh_s64_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvtnh_u16_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvtnh_u64_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvtph_s16_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvtph_s64_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvtph_u16_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vcvtph_u64_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vfmash_lane_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vmaxh_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vminh_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vmulh_lane_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vmulxh_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vmulxh_lane_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vrecpeh_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vrecpsh_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vrecpxh_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vrsqrteh_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vrsqrtsh_f16_1.c: New.
      
      From-SVN: r240924
      Jiong Wang committed
    • [3/4] ARMv8.2-A testsuite for new vector intrinsics · 4bc63138
      gcc/testsuite/
      
      	* gcc.target/aarch64/advsimd-intrinsics/vdiv_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vfmas_lane_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vfmas_n_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vmaxnmv_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vmaxv_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vminnmv_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vminv_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vmul_lane_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vmulx_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vmulx_lane_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vmulx_n_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vpminmaxnm_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vrndi_f16_1.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vsqrt_f16_1.c: New.
      
      From-SVN: r240923
      Jiong Wang committed
    • [2/4] ARMv8.2-A testsuite for new data movement intrinsics · 8f3edb07
      gcc/testsuite/
      
      	* gcc.target/aarch64/advsimd-intrinsics/arm-neon-ref.h (FP16_SUPPORTED):
      	Enable AArch64.
      	* gcc.target/aarch64/advsimd-intrinsics/vdup_lane.c: Add support for
      	vdup*_laneq.
      	* gcc.target/aarch64/advsimd-intrinsics/vduph_lane.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vtrn_half.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vuzp_half.c: New.
      	* gcc.target/aarch64/advsimd-intrinsics/vzip_half.c: New.
      
      From-SVN: r240922
      Jiong Wang committed
    • [1/4] ARMv8.2-A FP16 testsuite selector · 6e49f922
      gcc/testsuite/
      
      	* target-supports.exp (add_options_for_arm_v8_2a_fp16_scalar): Mention
      	AArch64 support.
      	(add_options_for_arm_v8_2a_fp16_neon): Likewise.
      	(check_effective_target_arm_v8_2a_fp16_scalar_ok_nocache): Support
      	AArch64 targets.
      	(check_effective_target_arm_v8_2a_fp16_neon_ok_nocache): Support
      	AArch64 targets.
      	(check_effective_target_arm_v8_2a_fp16_scalar_hw): Support AArch64
      	targets.
      	(check_effective_target_arm_v8_2a_fp16_neon_hw): Likewise.
      
      From-SVN: r240921
      Jiong Wang committed
    • Define std::allocator<T>::is_always_equal · 46942c81
      	* include/bits/allocator.h (allocator<T>::is_always_equal): Define.
      	* testsuite/20_util/allocator/requirements/typedefs.cc: Test for
      	is_always_equal.
      	* testsuite/util/testsuite_allocator.h
      	(uneq_allocator::is_always_equal): Define as false_type.
      
      From-SVN: r240920
      Jonathan Wakely committed
    • LWG 2733, LWG 2759 reject bool in gcd and lcm · f2e79496
      	* include/experimental/numeric (gcd, lcm): Make bool arguments
      	ill-formed.
      	* include/std/numeric (gcd, lcm): Likewise.
      	* testsuite/26_numerics/gcd/gcd_neg.cc: New test.
      	* testsuite/26_numerics/lcm/lcm_neg.cc: New test.
      
      From-SVN: r240919
      Jonathan Wakely committed
    • re PR target/77738 (Invalid initialisation of ar.lc register) · fee13acd
      PR target/77738
      * config/ia64/ia64.md ("doloop_end"): Reject if mode of loop
      pseudo is not DImode.
      
      From-SVN: r240918
      Andreas Schwab committed
    • Add noexcept to enable_shared_from_this::weak_from_this · 208b8b69
      	* include/bits/shared_ptr.h (enable_shared_from_this::weak_from_this):
      	Add noexcept.
      	* include/bits/shared_ptr_base.h
      	(__enable_shared_from_this::weak_from_this): Likewise.
      	* testsuite/20_util/enable_shared_from_this/members/weak_from_this.cc:
      	Test exception-specification of weak_from_this.
      
      From-SVN: r240917
      Jonathan Wakely committed
    • [ARC] Disable compact casesi patterns for arcv2 · 30102051
      gcc/
      2016-05-09  Claudiu Zissulescu  <claziss@synopsys.com>
      
      	* common/config/arc/arc-common.c (arc_option_optimization_table):
      	Remove compact casesi option.
      	* config/arc/arc.c (arc_override_options): Use compact casesi
      	option only for pre-ARCv2 cores.
      	* doc/invoke.texi (mcompact-casesi): Update text.
      
      From-SVN: r240916
      Claudiu Zissulescu committed
    • decl.c (gnat_to_gnu_entity): Put volatile qualifier on types at the very end of the processing. · 41683e1a
      	* gcc-interface/decl.c (gnat_to_gnu_entity): Put volatile qualifier
      	on types at the very end of the processing.
      	(gnat_to_gnu_param): Remove redundant test.
      	(change_qualified_type): Do nothing for unconstrained array types.
      
      From-SVN: r240915
      Eric Botcazou committed
    • utils2.c (find_common_type): Do not return the LHS type if it's an array with… · 036a2fa2
      utils2.c (find_common_type): Do not return the LHS type if it's an array with non-constant lower bound and...
      
      	* gcc-interface/utils2.c (find_common_type): Do not return the LHS type
      	if it's an array with non-constant lower bound and the RHS type is an
      	array with a constant one.
      
      From-SVN: r240913
      Eric Botcazou committed
    • utils.c (convert): For a biased input type, convert the bias itself to the base… · 55cfd746
      utils.c (convert): For a biased input type, convert the bias itself to the base type before adding it.
      
      	* gcc-interface/utils.c (convert): For a biased input type, convert
      	the bias itself to the base type before adding it.
      
      From-SVN: r240910
      Eric Botcazou committed
    • * config-lang.in (lang_requires_boot_languages): Delete. · f47ef399
      From-SVN: r240909
      Eric Botcazou committed
    • rs6000.h (TARGET_EFFICIENT_OVERLAPPING_UNALIGNED): Add macro to say we can… · 87b44b83
      rs6000.h (TARGET_EFFICIENT_OVERLAPPING_UNALIGNED): Add macro to say we can efficiently handle overlapping unaligned loads.
      
      2016-10-09  Aaron Sawdey  <acsawdey@linux.vnet.ibm.com>
      
      	* config/rs6000/rs6000.h (TARGET_EFFICIENT_OVERLAPPING_UNALIGNED): 
      	Add macro to say we can efficiently handle overlapping unaligned
      	loads.
      	* config/rs6000/rs6000.c (expand_block_compare): Avoid generating
      	poor code for processors older than p8.
      
      From-SVN: r240908
      Aaron Sawdey committed
    • Daily bump. · 4815e7d4
      From-SVN: r240907
      GCC Administrator committed