Severity: normal
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Starting with gcc-8 before 20180525 :
$ cat z1.f90
program p
character(3) :: a = 'abc'
associate (y
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92779
G. Steinmetz changed:
What|Removed |Added
Keywords||ice-on-valid-code
--- Comment #1 from G.
: normal
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Changed between 20190922 (silently accepted) and 20190929 (ICE) :
$ cat z1.f90
program p
associate (y => p)
end associ
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
This affects versions down to at least gfortran-4.9;
Starting with a legal source ...
$ cat z0.f90
function f()
character(:), allocatable :: f
: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
With an improper type down to gfortran-7 :
$ cat z1.f90
subroutine test(a)
real :: a
!$omp target is_device_ptr(a)
!$omp end target
end
$ gfortran-10-20191201 -c z1.f90
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88624
G. Steinmetz changed:
What|Removed |Added
CC||gs...@t-online.de
--- Comment #2 from G
: normal
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Changed between 20190929 and 20191006 :
(with a legal z0 for reference)
$ cat z0.f90
subroutine s(x)
integer, allocatable
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Affects versions down to at least gcc-5 :
$ cat z1.f90
module m
contains
elemental function f(a,b) result(c)
character(*), intent(in
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Affects versions down to at least gfortran-4.9,
compiles and works with -fno-frontend-optimize :
$ cat z1.f90
program p
call s('a')
c
: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Affects versions down to gfortran-6 at -O1+ :
(presumably related to pr89499)
$ cat z1.f90
program p
call s
contains
subroutine s
!$acc routine vector
!$acc loop
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89069
G. Steinmetz changed:
What|Removed |Added
CC||gs...@t-online.de
--- Comment #2 from G
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
A legacy extension changed between 20191103 and 20191110 :
$ cat z1.f90
program p
print *, -[integer :: 1, [integer(8) :: '2']]
end
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92896
--- Comment #1 from G. Steinmetz ---
With a plain array constructor :
$ cat z2.f90
program p
print *, [integer :: 1, [integer(8) :: '2']]
end
$ gfortran-10-20191208 -c z2.f90 -fdec -fno-range-check
$ gfortran-10-20191208 -c z2.f90 -fdec
z
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Changed between 20190922 and 20190929 :
$ cat z1.f90
type(t) function f()
dimension :: t(1,2,1,2,1,2,1,2)
codimension :: t
: normal
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
This changed between 20190922 and 20190929.
$ cat z1.f90
program p
print *, is_contiguous(null())
end
$ gfortran-10-20190922 -c
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
An old issue, ICEs down to version 5, 4.9 seems to be ok :
$ cat z1.f90
program p
real :: x = 1.0
double precision :: y
!$omp atomic
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89047
--- Comment #4 from G. Steinmetz ---
Where does this line come from ?
>18 | c = g
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Affects versions down to at least gfortran-5 :
$ cat z1.f90
program p
character(:), pointer :: x, y
call s
contains
subroutine s
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92959
G. Steinmetz changed:
What|Removed |Added
Keywords||ice-on-valid-code
--- Comment #1 from G.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85002
--- Comment #4 from G. Steinmetz ---
Update, ICEs also with a scalar component "a" :
$ cat z2.f90
program p
type t
integer, allocatable :: a
end type
type t2
type(t), allocatable :: b(:)
end type
type(t) :: x
type
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85002
--- Comment #5 from G. Steinmetz ---
Please note that switching to a test-version (configured with
--enable-checking=yes) allows further reduction to another branch :
$ cat z7.f90
program p
type t2
integer, allocatable :: b(:)
end
1
Product: gcc
Version: 10.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Affects versions down to
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92885
G. Steinmetz changed:
What|Removed |Added
CC||gs...@t-online.de
--- Comment #2 from G
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
With an expression (0) :
$ cat z1.f90
program p
integer :: a((0)/0)
integer :: b(0/(0))
integer :: c((0)/(0))
end
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92961
G. Steinmetz changed:
What|Removed |Added
Keywords||ice-on-invalid-code
--- Comment #1 from G
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92586
G. Steinmetz changed:
What|Removed |Added
CC||gs...@t-online.de
--- Comment #5 from G
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92586
--- Comment #6 from G. Steinmetz ---
Compiles these slightly modified cases :
$ cat z2.f90 # no allocatable a
program p
type t
integer :: a
end type
type t2
type(t) :: b
end type
type t3
type(t2) :: c
e
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
In addition to pr92781, some examples with a procedure pointer
embedded in a block. ICEs down to at least gfortran-5 :
$ cat z1.f90
program p
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92975
G. Steinmetz changed:
What|Removed |Added
Keywords||ice-on-valid-code
--- Comment #1 from G.
: normal
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Started with gfortran-6 :
$ cat z1.f90
program p
type t
end type
contains
subroutine s(x)
class(t) :: x(2
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
In addition to pr92899, down to at least gcc-5 :
$ cat z1.f90
program p
integer :: n = 1
integer :: a
!$omp atomic write
a = f(n) - f(n
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
With an interface mismatch, down to at least version 5 :
$ cat z1.f90
function f(x)
integer, intent(in) :: x
integer :: f
f = x
end
: normal
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Followup of pr92780, changed between 20190922 and 20190929 :
$ cat z1.f90
function f() result(z)
associate (y => f)
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92994
G. Steinmetz changed:
What|Removed |Added
Keywords||ice-on-invalid-code
--- Comment #1 from G
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Parameter attribute prevents a check down to at least gcc-5 :
$ cat z0.f90
program p
integer :: a(2) = [1, 2]
stop a
end
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
This has changed between 20180909 and 20180916 :
(class with missing attribute allocatable or pointer)
$ cat z1.f90
program p
type t
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Started with gfortran-8 (before 20180525) at -O[123] :
(gfortran-7 compiles it)
$ cat z1.f90
program p
type t
character
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93338
G. Steinmetz changed:
What|Removed |Added
Keywords||ice-on-valid-code
--- Comment #1 from G.
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Changed between 20181007 and 20181014 :
$ cat z1.f90
program p
type t
character(:), allocatable :: a(:)
end type
type(t
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93339
G. Steinmetz changed:
What|Removed |Added
Keywords||ice-on-valid-code
--- Comment #1 from G.
Severity: normal
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Since gfortran-7 :
$ cat z1.f90
program p
character c(2) /'a', 'b'(1:1)/
character d(2)
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93363
G. Steinmetz changed:
What|Removed |Added
Keywords||ice-on-invalid-code
--- Comment #1 from G
: normal
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
This changed between 20190922 and 20190929 :
$ cat z1.f90
program p
if (f() /= 1) stop
associate (y => f)
end associ
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Follow-up of pr92897, the other way around.
Was also changed between 20190922 and 20190929 :
$ cat z1.f90
type(t) function f
: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Follow-up of pr87994, changed between 20181028 and 20181104.
While z0 works, cases with a zero-sized array will not :
$ cat z0.f90
program p
complex, parameter :: a(1) = 0
: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Affects gfortran down to at least r5; null() is not allowed here :
$ cat z1.f90
program p
print *, sizeof(null())
end
$ gfortran-10-20200119 -c z1.f90
f951: internal compiler
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93366
G. Steinmetz changed:
What|Removed |Added
Keywords||ice-on-invalid-code
--- Comment #1 from G
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Follow-up of pr92977, with pragma acc instead of omp :
$ cat z1.f90
program p
integer :: n = 1
integer :: a
!$acc atomic write
a = f(n
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Combination of -fopenmp -fopenacc affects versions down to r5 :
$ cat z1.f90
program p
integer :: i, x
!$omp parallel do
do i = 1, 4
: UNCONFIRMED
Severity: normal
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Changed between 20191215 and 20200105 :
$ cat z1.f90
program p
character :: c(2) =
: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Changed between 20190512 and 20190519, rejects C variant :
$ cat z0.c
#pragma omp declare target
#include
$ cat z1.cc
#pragma omp
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Similar to pr65428, and down to at least r5 :
$ cat z1.f90
program p
print *, [[character::]]
end
$ cat z2.f90
program p
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
While z0 works, special case z1 does not; down to at least r5 :
$ cat z0.f90
program p
integer, parameter :: a(2) = [1, 2]
print *, [real :: a
: normal
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
With a missing declaration, starts to ICE with r7 :
$ cat z1.f90
program p
implicit none
integer :: x(4) = [1,2,3,4
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
ICEs with an array constructor, down to at least gfortran-4.9 :
$ cat z1.f90
program p
integer :: n = 2
associate (i =>
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93485
G. Steinmetz changed:
What|Removed |Added
Keywords||ice-on-valid-code
--- Comment #1 from G.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93498
G. Steinmetz changed:
What|Removed |Added
Keywords||ice-on-valid-code
--- Comment #1 from G.
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Providing an invalid expression for len, down to at least r5 :
$ cat z0.f90
program p
print *, [character([1]) :: 'a','
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Started with new FINDLOC between 20181021 and 20181028 :
$ cat z1a.f90
program p
character(len=1, kind=1) :: x(3) = ['a', 'b', 'c']
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Follow-up of pr92961 (ICEs down to at least r5) :
$ cat z1.f90
program p
integer :: a((0.)/0)
integer :: b = ubound(a,1)
end
$ cat z2.f90
program p
type t(n
: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Also derived from pr92961, with a subroutine/function :
$ cat z0.f90
program p
integer :: a(min(2,0)/0)
integer :: b = lbound(a)
end
$ cat z1.f90
subroutine s
integer
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Started with early r7 :
$ cat z1.f90
program p
integer :: i, j
!$acc parallel loop tile(2,2)
do i = 1, 8
do j = 1, 8
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93553
G. Steinmetz changed:
What|Removed |Added
Keywords||ice-on-valid-code
--- Comment #1 from G.
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Affects versions down to at least r5 :
$ cat z1.f90
program p
integer :: x(8) = 0
call sub(x)
end
subroutine sub(x)
integer :: x(8
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
With an unused allocatable array b, down to r6 :
$ cat z1.f90
program p
type t
integer :: a
integer, allocatable :: b
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Affects versions down to at least r5; compiles z0.f90 :
$ cat z0.f90
subroutine s
!$omp declare simd(s) inbranch
!$omp declare simd(s)
end
$ cat z1.f90
subroutine s
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
This changed between 20200105 and 20200110 :
$ cat z1.f90
program p
character(3), parameter :: a(4) = 'xyz'
character(*),
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87923
G. Steinmetz changed:
What|Removed |Added
Keywords||ice-on-invalid-code
Summary|[D
: normal
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Changed between 20181028 (rejected) and 20181104 (ICE):
$ cat z1.f90
program p
character(5), parameter :: x = '
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93579
G. Steinmetz changed:
What|Removed |Added
Keywords||accepts-invalid,
|
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Changed between 20181028 (rejected) and 20181104 (ICE):
$ cat z1.f90
program p
integer, parameter :: n = 4
complex(n%re) :: x
x = 2.0
end
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93580
G. Steinmetz changed:
What|Removed |Added
Keywords||accepts-invalid,
|
: normal
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Changed between 20181028 (rejected) and 20181104 (ICE):
(scalar case z0 works)
$ cat z0.f90
program p
complex, target :: z
: normal
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Changed between 20191215 and 20200105 :
$ cat z1.f90
program p
character(1), parameter :: c(0) = 'a'
c%len
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93600
G. Steinmetz changed:
What|Removed |Added
Keywords||ice-on-invalid-code
--- Comment #1 from G
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Changed between 20190630 and 20190728 :
$ cat z1.f90
program p
class(*), allocatable :: z
z = z'1'
end
$ cat z2.f90
program
: normal
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Changed between 20190630 and 20190728 :
$ cat z1.f90
program p
associate (y => z'1')
end associate
end
: normal
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Changed between 20190630 and 20190728 :
$ cat z1.f90
program p
type t
integer :: a
end type
type(t) :: x
data
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70070
--- Comment #11 from G. Steinmetz ---
A generator might be helpful for validations :
$ cat generator_char_data.f90
program generator_char_data
implicit none
character(*), parameter :: fmt = '(*(a,i0))'
integer :: i, j, nfile
!- varia
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Affects versions down to r7 :
$ cat z1.f90
integer function f(x)
integer :: x[*]
!$omp declare simd
f = x[1]
end
$ gfortran-10
Priority: P3
Component: c
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Changed between 20190630 and 20190728 :
$ cat z1.c
int f ()
{
unsigned x = 0x;
__builtin_memset (1+(char *) &x, 0, -1);
retur
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Changed between 20191103 (error) and 20191110 (ICE) at -O1+ :
(for some reason much later than pr93661 ...)
$ cat z1.f90
subroutine s
type t
Priority: P3
Component: c
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Changed between 20190825 and 20190901 :
$ cat z1.c
void f() {roundeven(0x0.1p1128);}
$ gcc-10-20200209 -c z1.c -O2
z1.c: In function 'f':
: normal
Priority: P3
Component: c
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Changed between 20190623 and 20190630 :
$ cat z1.c
void f (int *a)
{
*a = 0;
__builtin_calloc(1, 1);
}
$ gcc-10-20200209 -c z1.c
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Affects versions down to r6 (no shorter example found) :
$ cat z1.cc
[[a::
$ g++-5 -c z1.cc
z1.cc:1:1: error: expected unqualified-id
Severity: normal
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Changed between 20180513 and 20180527 :
$ cat z1.f90
program p
type t
character :: a
end type
type(t) :: x
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93686
G. Steinmetz changed:
What|Removed |Added
Keywords||ice-on-invalid-code
--- Comment #1 from G
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
This changed between 20190106 and 20190113 :
$ cat z1.f90
program p
type t
integer :: a
end type
type(t), pointer :: x
data x
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Changed between 20191006 and 20191013 :
$ cat z1.cc
int f (int const (&)[])
{ return f({1, " "}); }
$ g++-10-20200209 -c z1.cc
z1.c
: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Changed between 20191006 and 20191013 :
$ cat z1.cc
template T bar ();
void bar () {}
using :: bar;
$ g++-9 -c z1.cc
$
$ g++-10
: normal
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Affects versions down to r6 :
$ cat z1.f90
program p
character((1.)) :: a
character, pointer :: b => a
end
$ cat z2.
: UNCONFIRMED
Severity: normal
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Changed between 20180819 and 20180826 :
$ cat z1.f90
program p
integer :: a, b[*]
read (1
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Changed between 20181007 and 20181014, at -O1+ :
$ cat z1.f90
program p
implicit none
if ( f(1.0) > 0.0 ) stop
contains
r
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93791
G. Steinmetz changed:
What|Removed |Added
Keywords||ice-on-invalid-code
--- Comment #1 from G
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Changed between 20190630 and 20190728 :
$ cat z1.f90
module m
type t(n)
integer, len :: n = z'1'
end type
end
program
: normal
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Started to ICE with gfortran-8 :
$ cat z1.f90
program p
type t
character(:), pointer :: a
end type
type(t) :: z
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92587
G. Steinmetz changed:
What|Removed |Added
CC||gs...@t-online.de
--- Comment #11 from G
Priority: P3
Component: c
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Changed between 2018 and 20181118 :
$ cat z1.c
void f(void)
{
__attribute__((__format__(__gcc_gfc__, 1, 2))) void f() ;
f();
}
$ gcc-9
: UNCONFIRMED
Severity: normal
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Started to ICE with gfortran-7 :
(r10 compiles with "associate (y => x)")
$ cat z1.
: normal
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: gs...@t-online.de
Target Milestone: ---
Changed between 20190106 and 20190113 :
$ cat z1.f90
function f() bind(c)
character :: f, g
entry g() bind(c)
end
$ gfortran-9
101 - 200 of 746 matches
Mail list logo