+2024-10-27 Fangrui Song <maskray@gcc.gnu.org>
+
+ * config/arm/bpabi.h (TARGET_FDPIC_ASM_SPEC): Transform -mfdpic.
+ * config/arm/linux-eabi.h (TARGET_FDPIC_LINKER_EMULATION): Define.
+ (SUBTARGET_EXTRA_LINK_SPEC): Use TARGET_FDPIC_LINKER_EMULATION
+ if -mfdpic.
+
+2024-10-27 Takayuki 'January June' Suwa <jjsuwa_sys3175@yahoo.co.jp>
+
+ * config/xtensa/xtensa.cc (TARGET_DIFFERENT_ADDR_DISPLACEMENT_P):
+ Add new target hook to always return true.
+ * config/xtensa/xtensa.md (movsi_internal):
+ Revert the previous changes.
+
+2024-10-27 Jakub Jelinek <jakub@redhat.com>
+
+ * configure.ac (gcc_AC_CHECK_DECLS): Add fmemopen.
+ * configure: Regenerate.
+ * config.in: Regenerate.
+ * Makefile.in (build/genmatch.o): Add -DGENMATCH_SELFTESTS to
+ BUILD_CPPFLAGS for stage2+ genmatch.
+ * genmatch.cc (test_diag_vfprintf, genmatch_diag_selftests): New
+ functions.
+ (main): Call genmatch_diag_selftests.
+ * pretty-print.cc (test_pp_format): Add two tests, one for %M$.*N$s
+ and one for %M$.Ns.
+
+2024-10-27 Jakub Jelinek <jakub@redhat.com>
+
+ * doc/invoke.texi (Wtrailing-whitespace=): Change
+ blank argument to blanks and space argument to any.
+
2024-10-26 Andrew Pinski <quic_apinski@quicinc.com>
PR tree-optimization/117234
+2024-10-27 Jakub Jelinek <jakub@redhat.com>
+
+ * c.opt (warn_trailing_whitespace_kind): Change blank
+ to blanks and space to any.
+
2024-10-25 Jakub Jelinek <jakub@redhat.com>
* c-ubsan.cc: Remove trailing whitespace.
+2024-10-27 Paul Thomas <pault@gcc.gnu.org>
+
+ PR fortran/115070
+ PR fortran/115348
+ * trans-expr.cc (gfc_trans_class_init_assign): If all the
+ components of the default initializer are null for a scalar,
+ build an empty statement to prevent prior declarations from
+ disappearing.
+
2024-10-26 Iain Sandoe <iain@sandoe.co.uk>
* intrinsic.texi: Add menu item for UINT.
+2024-10-27 Jakub Jelinek <jakub@redhat.com>
+
+ * c-c++-common/cpp/Wtrailing-whitespace-2.c: Use
+ -Wtrailing-whitespace=blanks rather than -Wtrailing-whitespace=blank.
+ * c-c++-common/cpp/Wtrailing-whitespace-3.c: Use
+ -Wtrailing-whitespace=any rather than -Wtrailing-whitespace=space.
+ * c-c++-common/cpp/Wtrailing-whitespace-7.c: Use
+ -Wtrailing-whitespace=blanks rather than -Wtrailing-whitespace=blank.
+ * c-c++-common/cpp/Wtrailing-whitespace-8.c: Use
+ -Wtrailing-whitespace=any rather than -Wtrailing-whitespace=space.
+
+2024-10-27 Jakub Jelinek <jakub@redhat.com>
+
+ * gcc.dg/vec-perm-lower.c: Add -Wno-psabi to dg-options.
+
+2024-10-27 Paul Thomas <pault@gcc.gnu.org>
+
+ PR fortran/115070
+ PR fortran/115348
+ * gfortran.dg/pr115070.f90: New test.
+ * gfortran.dg/pr115348.f90: New test.
+
+2024-10-27 Torbjörn SVENSSON <torbjorn.svensson@foss.st.com>
+ Yvan ROUX <yvan.roux@foss.st.com>
+
+ * gcc.target/arm/bti-1.c: Check for asm instructions starting
+ with a tab.
+ * gcc.target/arm/bti-2.c: Likewise.
+ * gcc.target/arm/pac-1.c: Likewise.
+ * gcc.target/arm/pac-2.c: Likewise.
+ * gcc.target/arm/pac-3.c: Likewise.
+ * gcc.target/arm/pac-4.c: Likewise.
+ * gcc.target/arm/pac-6.c: Likewise.
+ * gcc.target/arm/pac-7.c: Likewise.
+ * gcc.target/arm/pac-8.c: Likewise.
+ * gcc.target/arm/pac-9.c: Likewise.
+ * gcc.target/arm/pac-10.c: Likewise.
+ * gcc.target/arm/pac-11.c: Likewise.
+ * gcc.target/arm/pac-15.c: Likewise.
+ * gcc.target/arm/pac-sibcall.c: Likewise.
+
2024-10-26 Andrew Pinski <quic_apinski@quicinc.com>
PR tree-optimization/117234
+2024-10-27 Jonathan Wakely <jwakely@redhat.com>
+
+ PR libstdc++/111055
+ * include/bits/ranges_base.h (__container_compatible_range): New
+ concept.
+ * include/bits/stl_bvector.h (vector(from_range, R&&, const Alloc&))
+ (assign_range, insert_range, append_range): Define.
+ * include/bits/stl_uninitialized.h (__do_uninit_copy): Support
+ non-common ranges.
+ (__uninitialized_copy_a): Likewise.
+ * include/bits/stl_vector.h (_Vector_base::_M_append_range_to):
+ New function.
+ (_Vector_base::_M_append_range): Likewise.
+ (vector(from_range, R&&, const Alloc&), assign_range): Define.
+ (append_range): Define.
+ (insert_range): Declare.
+ * include/debug/vector (vector(from_range, R&&, const Alloc&))
+ (assign_range, insert_range, append_range): Define.
+ * include/bits/vector.tcc (insert_range): Define.
+ * testsuite/util/testsuite_iterators.h (input_iterator_wrapper_rval):
+ New class template.
+ * testsuite/23_containers/vector/bool/cons/from_range.cc: New test.
+ * testsuite/23_containers/vector/bool/modifiers/assign/assign_range.cc:
+ New test.
+ * testsuite/23_containers/vector/bool/modifiers/insert/append_range.cc:
+ New test.
+ * testsuite/23_containers/vector/bool/modifiers/insert/insert_range.cc:
+ New test.
+ * testsuite/23_containers/vector/cons/from_range.cc: New test.
+ * testsuite/23_containers/vector/modifiers/append_range.cc: New test.
+ * testsuite/23_containers/vector/modifiers/assign/assign_range.cc:
+ New test.
+ * testsuite/23_containers/vector/modifiers/insert/insert_range.cc:
+ New test.
+
+2024-10-27 Jonathan Wakely <jwakely@redhat.com>
+
+ * include/bits/stl_bvector.h (emplace_back, emplace): Forward
+ parameter pack to preserve value category.
+ * testsuite/23_containers/vector/bool/emplace_rvalue.cc: New
+ test.
+
2024-10-25 Jonathan Wakely <jwakely@redhat.com>
* testsuite/21_strings/basic_string/operators/char/op_plus_string_view.cc: