diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2022-08-08 19:04:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-08 19:04:01 (GMT) |
commit | 5d63aca604713973ef6079deb0da247efa0e077a (patch) | |
tree | 636c395c3631c2c1b235d1932ac71f801b606489 /src/H5FDonion_history.c | |
parent | 57926d549ef75c532badc7ad3318170f7130295b (diff) | |
download | hdf5-5d63aca604713973ef6079deb0da247efa0e077a.zip hdf5-5d63aca604713973ef6079deb0da247efa0e077a.tar.gz hdf5-5d63aca604713973ef6079deb0da247efa0e077a.tar.bz2 |
Turns off clang optimizations on a couple of onion VFD functions (#1976)
Ancient clang (7.7.3 on OS X) emits problematic code with -O2 or -O3
Diffstat (limited to 'src/H5FDonion_history.c')
-rw-r--r-- | src/H5FDonion_history.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FDonion_history.c b/src/H5FDonion_history.c index 501a1f7..ed45ddd 100644 --- a/src/H5FDonion_history.c +++ b/src/H5FDonion_history.c @@ -154,7 +154,7 @@ done: * Failure: 0 *----------------------------------------------------------------------------- */ -size_t +size_t H5_ATTR_NO_OPTIMIZE H5FD__onion_history_decode(unsigned char *buf, H5FD_onion_history_t *history) { uint32_t ui32 = 0; |