diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-07-12 06:49:51 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-07-12 06:49:51 +0000 |
commit | cadbb5f2ec84cb774023bbe8cbe6f39a93e837d7 (patch) | |
tree | 3af1cd09f3e38c2527e6a2e1211c181228bd9e11 | |
parent | 0d68afb5705489943e3ec611ebb1d8a515153583 (diff) | |
download | numpy-cadbb5f2ec84cb774023bbe8cbe6f39a93e837d7.tar.gz |
Fix a bug due to optimizing compilers. See http://www.nanoengineer-1.net/mediawiki/index.php?title=Bug_1058
-rw-r--r-- | numpy/linalg/dlamch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/linalg/dlamch.c b/numpy/linalg/dlamch.c index dda3f36e2..bf1dfdb05 100644 --- a/numpy/linalg/dlamch.c +++ b/numpy/linalg/dlamch.c @@ -672,7 +672,7 @@ doublereal dlamc3_(doublereal *a, doublereal *b) */ /* >>Start of File<< System generated locals */ - doublereal ret_val; + volatile doublereal ret_val; |