summaryrefslogtreecommitdiffstats
path: root/src/H5MM.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2016-01-06 19:10:21 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2016-01-06 19:10:21 (GMT)
commit971af2d7333584e021564f4f50f3afcfba57716f (patch)
treed0e044e7ecf1569e6ef1347e863bedb12a22f815 /src/H5MM.c
parentb834ac36535d72dd5013514bad5448bf0baa465e (diff)
downloadhdf5-971af2d7333584e021564f4f50f3afcfba57716f.zip
hdf5-971af2d7333584e021564f4f50f3afcfba57716f.tar.gz
hdf5-971af2d7333584e021564f4f50f3afcfba57716f.tar.bz2
[svn-r28824] Description:
Reduce asserts on buffer alignment. Tested on: Linux/32 & Linux/64 2.6.x (jam & myall) w/serial
Diffstat (limited to 'src/H5MM.c')
-rw-r--r--src/H5MM.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/H5MM.c b/src/H5MM.c
index b830d21..09e6461 100644
--- a/src/H5MM.c
+++ b/src/H5MM.c
@@ -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);