Article ID: 106520
Article Last Modified on 10/24/2003
C Compile options needed: /Ge
subroutine recur(y)
integer y
y = y + 1
call indrec(y)
end
subroutine indrec(i)
integer i
i = i + 1
call recur(i)
end
integer x
x = 0
call recur(x)
end
NOTE: The /Ge compiler option is no longer used for stack-probe checks
under FORTRAN PowerStation 32, version 4.0. Attempting to use this option
will generate the message:
Additional query words: 1.00 gpf gp-fault
Keywords: kberrmsg kbbug kbfix kblangfortran KB106520