summaryrefslogtreecommitdiffstats
path: root/src/H5Tprecis.c
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2005-02-10 22:19:39 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2005-02-10 22:19:39 (GMT)
commit479bdb0bbdb3ba2f75cf374ff6086e1f711c624d (patch)
tree5f040666d5e964651bfefcccd2ca40654cdf2cb0 /src/H5Tprecis.c
parent39e11427c5845a9520e63e760ca5cc9fe62d98d6 (diff)
downloadhdf5-479bdb0bbdb3ba2f75cf374ff6086e1f711c624d.zip
hdf5-479bdb0bbdb3ba2f75cf374ff6086e1f711c624d.tar.gz
hdf5-479bdb0bbdb3ba2f75cf374ff6086e1f711c624d.tar.bz2
[svn-r9984] Purpose: New feature and test
Description: Added support of hardware conversion between "long double" and integers(mainly in H5Tconv.c) and some test cases(mainly in test/dtypes.c). Platforms tested: h5committest and fuss. Misc. update: RELEASE.txt
Diffstat (limited to 'src/H5Tprecis.c')
-rw-r--r--src/H5Tprecis.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/H5Tprecis.c b/src/H5Tprecis.c
index f54de77..3e492c3 100644
--- a/src/H5Tprecis.c
+++ b/src/H5Tprecis.c
@@ -242,12 +242,6 @@ H5T_set_precision(const H5T_t *dt, size_t prec)
* first when decreasing the precision of a floating point
* type.
*/
- /*printf("\nsign: %d ", dt->shared->u.atomic.u.f.sign);
- printf("epos: %d ", dt->shared->u.atomic.u.f.epos);
- printf("esize: %d ", dt->shared->u.atomic.u.f.esize);
- printf("mpos: %d ", dt->shared->u.atomic.u.f.mpos);
- printf("msize: %d ", dt->shared->u.atomic.u.f.msize);
- printf("prec: %d\n", prec); */
if (dt->shared->u.atomic.u.f.sign >= prec+offset ||
dt->shared->u.atomic.u.f.epos + dt->shared->u.atomic.u.f.esize > prec+offset ||
dt->shared->u.atomic.u.f.mpos + dt->shared->u.atomic.u.f.msize > prec+offset)