diff options
author | Neil Fortner <nfortne2@hdfgroup.org> | 2013-09-27 15:35:44 (GMT) |
---|---|---|
committer | Neil Fortner <nfortne2@hdfgroup.org> | 2013-09-27 15:35:44 (GMT) |
commit | cd90900d88d2baaf4ef3b4ad6aa30af64a4581cd (patch) | |
tree | f2ce465f1da740f4b6cb9a5711d051b49473ad6a /release_docs | |
parent | b3b29e4485dbdf4eef82f71da8f5b6a5e2509b8e (diff) | |
download | hdf5-cd90900d88d2baaf4ef3b4ad6aa30af64a4581cd.zip hdf5-cd90900d88d2baaf4ef3b4ad6aa30af64a4581cd.tar.gz hdf5-cd90900d88d2baaf4ef3b4ad6aa30af64a4581cd.tar.bz2 |
[svn-r24209] Port r24171 from trunk to 1.8 branch.
Tested: jam, koala, ostrich, platypus (h5committest)
Log from r24171:
Purpose: Fix problem with gcc 4.8
Description:
With optimization enabled, gcc 4.8 inserts garbage into the padding bytes of
floating point types when assigning from a literal constant. This caused
problems when H5detect.c scanned the bits in floating point types to determine
their properties.
Modified H5detect.c to scan for padding before further analyzing the type, and
to ignore all information in the padding areas. Also removed code that
temporarily disabled optimization.
Tested: jam, koala, ostrich, platypus (h5committest)
Diffstat (limited to 'release_docs')
-rw-r--r-- | release_docs/RELEASE.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 81576f0..2b120fd 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -102,7 +102,9 @@ Bug Fixes since HDF5-1.8.11 Configuration ------------- - - None + - Modified H5detect.c to scan floating point types for padding bits before + analyzing the type further. This should fix problems with gcc 4.8 + (NAF - 2013/09/19 - HDFFV-8523/HDFFV-8500) Library ------- |