mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 13:41:18 +08:00
[Fortran] avoid ICE in gfc_omp_check_optional_argument (PR93464)
PR fortran/93464 * openmp.c (gfc_omp_check_optional_argument): Avoid ICE when DECL_LANG_SPECIFIC and GFC_DESCRIPTOR_TYPE_P but not GFC_DECL_SAVED_DESCRIPTOR as for local allocatable character vars. PR fortran/93464 * gfortran.dg/goacc/pr93464.f90: New.
This commit is contained in:
parent
1ee3b380df
commit
627d59b6b3
@ -1,3 +1,10 @@
|
||||
2020-01-28 Tobias Burnus <tobias@codesourcery.com>
|
||||
|
||||
PR fortran/93464
|
||||
* openmp.c (gfc_omp_check_optional_argument): Avoid ICE when
|
||||
DECL_LANG_SPECIFIC and GFC_DESCRIPTOR_TYPE_P but not
|
||||
GFC_DECL_SAVED_DESCRIPTOR as for local allocatable character vars.
|
||||
|
||||
2020-01-28 Tobias Burnus <tobias@codesourcery.com>
|
||||
|
||||
* gfortran.texi (Runtime): Remove tailing '.' in @menu.
|
||||
|
@ -101,7 +101,8 @@ gfc_omp_check_optional_argument (tree decl, bool for_present_check)
|
||||
decl = GFC_DECL_SAVED_DESCRIPTOR (decl);
|
||||
}
|
||||
|
||||
if (TREE_CODE (decl) != PARM_DECL
|
||||
if (decl == NULL_TREE
|
||||
|| TREE_CODE (decl) != PARM_DECL
|
||||
|| !DECL_LANG_SPECIFIC (decl)
|
||||
|| !GFC_DECL_OPTIONAL_ARGUMENT (decl))
|
||||
return NULL_TREE;
|
||||
|
@ -1,3 +1,8 @@
|
||||
2020-01-28 Tobias Burnus <tobias@codesourcery.com>
|
||||
|
||||
PR fortran/93464
|
||||
* gfortran.dg/goacc/pr93464.f90: New.
|
||||
|
||||
2020-01-28 Richard Sandiford <richard.sandiford@arm.com>
|
||||
|
||||
PR tree-optimization/93434
|
||||
|
16
gcc/testsuite/gfortran.dg/goacc/pr93464.f90
Normal file
16
gcc/testsuite/gfortran.dg/goacc/pr93464.f90
Normal file
@ -0,0 +1,16 @@
|
||||
! { dg-do compile }
|
||||
!
|
||||
! PR fortran/93464
|
||||
!
|
||||
! Contributed by G. Steinmetz
|
||||
!
|
||||
program p
|
||||
character :: c(2) = 'a'
|
||||
character, allocatable :: z(:)
|
||||
!$acc parallel
|
||||
!$omp target
|
||||
z = c
|
||||
!$acc end parallel
|
||||
!$omp end target
|
||||
print *, z
|
||||
end
|
Loading…
x
Reference in New Issue
Block a user