Skip to content

Commit

Permalink
Merge pull request #179 from jeffhammond/more-aocc-fixes
Browse files Browse the repository at this point in the history
unsafely downcast INTEGER to INTEGER*4 when used in arithmetic GOTO
  • Loading branch information
edoapra authored Feb 13, 2020
2 parents 7d42da3 + 750a63c commit 323447f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/geom/geom_hnd.F
Original file line number Diff line number Diff line change
Expand Up @@ -4602,7 +4602,8 @@ SUBROUTINE HND_GIVDIA(A,VEC,EIG,IA,N,NDIM,
C ----- A GIVENS HOUSHOLDER MATRIX DIAGONALIZATION -----
C ----- ROUTINE SAME AS EIGEN BUT WORKS WITH A -----
C ----- LINEAR ARRAY. -----
integer n,ndim,n1,n2,nr,ik
integer n,ndim,nr,ik
integer*4 n1, n2
integer IA(1)
integer IPOSV(*),IVPOS(*),IORD(*)
double precision A(1),VEC(NDIM,1),EIG(1)
Expand Down

0 comments on commit 323447f

Please sign in to comment.