merge from gcc

This commit is contained in:
DJ Delorie 2009-11-30 21:50:19 +00:00
parent 3388710e18
commit bc7c46946a
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2009-11-28 Jakub Jelinek <jakub@redhat.com>
* decContext.c (decContextTestEndian): Move adj definition into
#if DECCHECK guarded code.
2009-09-09 Paolo Bonzini <bonzini@gnu.org>
* configure: Regenerate.

View File

@ -393,11 +393,11 @@ Int decContextTestEndian(Flag quiet) {
if (dle>1) dle=1; /* ensure 0 or 1 */
if (LITEND!=DECLITEND) {
const char *adj;
if (!quiet) {
#if DECCHECK
const char *adj;
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