repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
tree-optimization/113385 - wrong loop father with early exit vectorization
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
charlen_16.f90
blob
ba81b788c15f73e169d912556b105f93f1c68d55
1
! { dg-do run }
2
! PR fortran/78350
3
program
p
4
type
t
5
character
(
2
) ::
c
(
1
) = [
character
(
3
) ::
'abc'
]
6
end type
7
type
(
t
) ::
x
8
if
(
trim
(
x
%
c
(
1
)) /=
'ab'
)
STOP
1
9
end