PSS ID Number: 100376
Article Last Modified on 3/24/2000
c Compile options needed: None
complex*8 c
real*4 x
x = 1.0
c = exp(x)
print *, 'complex c1 = exp(x); c = ', c
end
The following sample code demonstrates one method to work around this
problem:
c Compile options needed: None
complex*8 c
real*4 x, tmp
x = 1.0
tmp = exp(x)
c = tmp
print *, 'complex c1 = exp(x); c = ', c
end
The following sample code demonstrates another method to work around
this problem:
c Compile options needed: None
complex*8 c
real*4 x
x = 1.0
c = exp(x) + 0
print *, 'complex c1 = exp(x); c = ', c
end
Additional query words: 1.00 buglist1.00 fixlist1.00a
Keywords: kbbug KB100376
Technology: kbAudDeveloper kbFORTRANPower100DOS kbFortranSearch kbZNotKeyword3