summaryrefslogtreecommitdiffstats
path: root/config/cmake/ConversionTests.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2015-03-25 22:11:19 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2015-03-25 22:11:19 (GMT)
commitc622cc7b38791567a6e41d147121a76a20837e96 (patch)
treee6e93907418d53802e35bcb0d1ae1d3c1cd39b71 /config/cmake/ConversionTests.c
parent451a91e53bdc0f930c2acf382d14a5e2fd9cb2d9 (diff)
downloadhdf5-c622cc7b38791567a6e41d147121a76a20837e96.zip
hdf5-c622cc7b38791567a6e41d147121a76a20837e96.tar.gz
hdf5-c622cc7b38791567a6e41d147121a76a20837e96.tar.bz2
[svn-r26595] Description:
Bring r26494 from autotools_rework branch back to trunk: Remove the LDOUBLE_TO_UINT_ACCURATE macro/define, it was addressing problems with older Intel compilers on Linux that are no longer supported. Tested on: Linux/32 2.6.18 (jam) w/serial & parallel (Daily tested on branch for several days)
Diffstat (limited to 'config/cmake/ConversionTests.c')
-rw-r--r--config/cmake/ConversionTests.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/config/cmake/ConversionTests.c b/config/cmake/ConversionTests.c
index 3b9b416..3003ef2 100644
--- a/config/cmake/ConversionTests.c
+++ b/config/cmake/ConversionTests.c
@@ -170,22 +170,6 @@ done:
}
#endif
-#ifdef H5_LDOUBLE_TO_UINT_ACCURATE_TEST
-int main(void)
-{
- long double ld = 2733248032.9183987530L;
- unsigned int i;
- int ret = 0;
-
- i = (unsigned int)ld;
- if(i!=2733248032 && i!=2733248031 && i!=2733248033)
- ret = 1;
-
-done:
- exit(ret);
-}
-#endif
-
#ifdef H5_LLONG_TO_LDOUBLE_CORRECT_TEST
int main(void)
{