diff options
author | DJ Delorie <dj@redhat.com> | 2009-08-13 17:04:01 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2009-08-13 17:04:01 +0000 |
commit | 626aaf890945123ad73b1d9da5cd8bcc1f22f7ae (patch) | |
tree | 929b6553a6bb04c21ea2f088deb7c22ffb036f7b /libdecnumber/decContext.c | |
parent | b84aa90aa5b2c265030ca85a70a4547f8f893690 (diff) | |
download | gdb-626aaf890945123ad73b1d9da5cd8bcc1f22f7ae.zip gdb-626aaf890945123ad73b1d9da5cd8bcc1f22f7ae.tar.gz gdb-626aaf890945123ad73b1d9da5cd8bcc1f22f7ae.tar.bz2 |
merge from gcc
Diffstat (limited to 'libdecnumber/decContext.c')
-rw-r--r-- | libdecnumber/decContext.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libdecnumber/decContext.c b/libdecnumber/decContext.c index 28bbdbb..1756dcb 100644 --- a/libdecnumber/decContext.c +++ b/libdecnumber/decContext.c @@ -31,7 +31,9 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see /* ------------------------------------------------------------------ */ #include <string.h> /* for strcmp */ +#ifdef DECCHECK #include <stdio.h> /* for printf if DECCHECK */ +#endif #include "dconfig.h" /* for GCC definitions */ #include "decContext.h" /* context and base types */ #include "decNumberLocal.h" /* decNumber local types, etc. */ @@ -395,8 +397,10 @@ Int decContextTestEndian(Flag quiet) { if (!quiet) { if (LITEND) adj="little"; else adj="big"; +#if DECCHECK printf("Warning: DECLITEND is set to %d, but this computer appears to be %s-endian\n", DECLITEND, adj); +#endif } res=(Int)LITEND-dle; } |