Hi,
I'm new to CLAPACK so please forgive me if this has already been reported.
I am rebuilding (3.1.1-VisualStudio merged with 3.2.1) on Visual Studio 2008 and got 2 warnings (among "a few" others...)
f2clibs\libf2c\pow_ii.c(22) : warning C4723: potential divide by 0
f2clibs\libf2c\pow_hh.c(22) : warning C4723: potential divide by 0
the offending code in both file is
return x == 0 ? 1/x : 0;
and it should be
return x != 0 ? 1/x : 0;
Rather clever compiler, isn't it ?
James

