hi everyone,
something stange is happening to me. Iuse intel fortran conpiler. This is my simple code:
IF(ASSOCIATED(LISTPART(ii,jj)%head)==.true.) THEN
CALL dlist_begin(LISTPART(ii,jj))
DO
CORE
IF(.NOT. dlist_move_next(LISTPART(ii,jj))) EXIT
ENDDO
however if I had only two lines, maybe
IF(ASSOCIATED(LISTPART(ii,jj)%head)==.true.) THEN
CALL dlist_begin(LISTPART(ii,jj))
DO
CORE
WRITE(*,*) 'HELLO'
IF(.NOT. dlist_move_next(LISTPART(ii,jj))) EXIT
ENDDO
the run time of my program change a lot
Does someone know why?
is it a problem accordind to compile option?
THANKS A LOT



