projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a093356
)
Fix previous commit.
author
Jan Hubicka
<hubicka@gcc.gnu.org>
Thu, 25 Oct 2012 15:00:06 +0000
(15:00 +0000)
committer
Jan Hubicka
<hubicka@gcc.gnu.org>
Thu, 25 Oct 2012 15:00:06 +0000
(15:00 +0000)
From-SVN: r192810
gcc/testsuite/gfortran.dg/pr54967.f90
patch
|
blob
|
history
diff --git
a/gcc/testsuite/gfortran.dg/pr54967.f90
b/gcc/testsuite/gfortran.dg/pr54967.f90
index f674e3ec19c8ca89785269e4d85adb2ab0bf12cc..bc6f2de95a5403b0194d92fb49bce748d873fa60 100644
(file)
--- a/
gcc/testsuite/gfortran.dg/pr54967.f90
+++ b/
gcc/testsuite/gfortran.dg/pr54967.f90
@@
-16,21
+16,3
@@
END DO
END DO
END SUBROUTINE calc_S_derivs
- SUBROUTINE calc_S_derivs()
- INTEGER, DIMENSION(6, 2) :: c_map_mat
- INTEGER, DIMENSION(:), POINTER:: C_mat
- DO j=1,3
- DO m=j,3
- n=n+1
- c_map_mat(n,1)=j
- IF(m==j)CYCLE
- c_map_mat(n,2)=m
- END DO
- END DO
- DO m=1,6
- DO j=1,2
- IF(c_map_mat(m,j)==0)CYCLE
- CALL foo(C_mat(c_map_mat(m,j)))
- END DO
- END DO
- END SUBROUTINE calc_S_derivs