Eric.Lu
unread,Oct 16, 2008, 11:51:37 PM10/16/08Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to computer.paraopt.compiler
when I compile bechmark of NIST, I encouter a problem like below:
TMP1ttt = GOTO_L3_PREG
^
pathf95-356 pathf90: ERROR MAIN, File = 1.w2f.f, Line = 342, Column =
12
Assignment of a INTEGER(KIND=4) expression to a LOGICAL(KIND=4)
variable is not allowed.
and my first cmopile command: pathf90 -O3 -ipa -v -show -keep -flist
FM253.f (FM253.f is from f95 of NIST)
second compile commad: pathf90 -O3 1.w2f.f
I tried do it like: TMP1ttt = LOGICAL(GOTO_L3_PREG) it compile
successful, but has link error, the pathf90 doesn't support LOGICAL()
between INTEGER and LOGICAL. how can I resolve the problem?