1. 31 Jan, 2019 13 commits
  2. 30 Jan, 2019 23 commits
  3. 29 Jan, 2019 4 commits
    • re PR fortran/57048 (Handling of C_PTR and C_FUNPTR leads to reject valid) · 5af5f1de
      2019-01-29  Thomas Koenig  <tkoenig@gcc.gnu.org>
      
      	PR fortran/57048
      	* interface.c (gfc_compare_types): If a derived type and an
      	integer both have a derived type, and they are identical,
      	this is a C binding type and compares equal.
      
      2019-01-29  Thomas Koenig  <tkoenig@gcc.gnu.org>
      
      	PR fortran/57048
      	* gfortran.dg/c_funptr_1.f90: New file.
      	* gfortran.dg/c_funptr_1_mod.f90: New file.
      
      From-SVN: r268372
      Thomas Koenig committed
    • re PR c++/66676 (pragma omp simd aligned(x) results in "internal compiler error:… · b33d65e3
      re PR c++/66676 (pragma omp simd aligned(x) results in "internal compiler error: Segmentation fault")
      
      	PR c++/66676
      	PR ipa/89104
      	* omp-simd-clone.c (simd_clone_clauses_extract)
      	<case OMP_CLAUSE_ALIGNED>: Ignore clauses with NULL
      	OMP_CLAUSE_ALIGNED_ALIGNMENT.
      
      	* gcc.dg/gomp/pr89104.c: New test.
      
      From-SVN: r268370
      Jakub Jelinek committed
    • [libbacktrace] Add test-cases exercising build-id and dwz · fddbc193
      Add test-cases b2test_buildid and b3test_dwz_buildid.
      
      The last one triggers the segfault fixed by "[backtrace] Avoid segfault"
      ( r268275 ).
      
      2019-01-29  Tom de Vries  <tdevries@suse.de>
      
      	* install-debuginfo-for-buildid.sh.in: New script.
      	* Makefile.am (check_PROGRAMS): Add b2test and b3test.
      	(TESTS): Add b2test_buildid and b3test_dwz_buildid.
      	* Makefile.in: Regenerate.
      	* configure.ac (HAVE_ELF): Set with AM_CONDITIONAL.
      	(READELF): Set with AC_CHECK_PROG.
      	(install-debuginfo-for-buildid.sh): Generate with AC_CONFIG_FILES.
      	* configure: Regenerate.
      	* elf.c (SYSTEM_BUILD_ID_DIR): Factor out of ...
      	(elf_open_debugfile_by_buildid): ... here.
      
      From-SVN: r268369
      Tom de Vries committed
    • PR c++/89089 - ICE with [[no_unique_address]]. · 7e574f68
      In 89089, we were never actually setting DECL_SIZE on an empty data member,
      because its type is a POD, so we didn't set it in the maybe-overlapping
      section.  Fixed by also handling empty types there.
      
      In 88865, we were failing to consider empty data members in
      include_empty_classes.  Fixed by making end_of_class always include them.
      
      While looking at these I noticed that the ABI says that a
      potentially-overlapping data member makes its class non-layout-POD, and that
      an empty data member doesn't prevent its class from being empty, so I've
      implemented those points as well.
      
      	PR c++/88865 - wrong layout with [[no_unique_address]].
      	* class.c (check_field_decls): A potentially-overlapping field makes
      	the class non-layout-POD, but not non-empty.
      	(end_of_class): Always consider empty data members.
      	(layout_class_type): Set DECL_SIZE for empty fields.
      
      From-SVN: r268368
      Jason Merrill committed