diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2016-01-06 19:11:34 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2016-01-06 19:11:34 (GMT) |
commit | ca6e18e28a4a3e96940145cfcebaff17265a2c75 (patch) | |
tree | c235d5937f2bfa66cdc5e7e83358740e25c9d25c | |
parent | 1d3f79343ddb2a1eaef14831f98dab74c923c874 (diff) | |
download | hdf5-ca6e18e28a4a3e96940145cfcebaff17265a2c75.zip hdf5-ca6e18e28a4a3e96940145cfcebaff17265a2c75.tar.gz hdf5-ca6e18e28a4a3e96940145cfcebaff17265a2c75.tar.bz2 |
[svn-r28825] Description:
Bring r28824 from trunk to revise_chunks branch:
Reduce asserts on buffer alignment.
Tested on:
MacOSX/64 10.11.2 (amazon) w/parallel & serial
(h5committest not required on this branch)
-rw-r--r-- | src/H5MM.c | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -276,9 +276,6 @@ H5MM_malloc(size_t size) FUNC_ENTER_NOAPI_NOINIT_NOERR #if defined H5_MEMORY_ALLOC_SANITY_CHECK - /* Make certain that the buffer in the struct is properly aligned */ - HDcompile_assert(offsetof(H5MM_block_t, b) % sizeof(double) == 0); - /* Initialize block list head singleton */ if(!H5MM_init_s) { HDmemcpy(H5MM_block_head_s.sig, H5MM_block_signature_s, H5MM_SIG_SIZE); |