diff options
Diffstat (limited to 'libgcc')
-rw-r--r-- | libgcc/ChangeLog | 4 | ||||
-rw-r--r-- | libgcc/config/libbid/ChangeLog | 5 | ||||
-rw-r--r-- | libgcc/config/libbid/bid_functions.h | 4 | ||||
-rw-r--r-- | libgcc/configure | 1 |
4 files changed, 12 insertions, 2 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index 87e8a27..8f367b4 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,7 @@ +2012-11-04 Thomas Schwinge <thomas@codesourcery.com> + + * configure: Regenerate. + 2012-11-02 Uros Bizjak <ubizjak@gmail.com> PR target/55175 diff --git a/libgcc/config/libbid/ChangeLog b/libgcc/config/libbid/ChangeLog index d7f52794..3dc721b 100644 --- a/libgcc/config/libbid/ChangeLog +++ b/libgcc/config/libbid/ChangeLog @@ -1,3 +1,8 @@ +2012-11-04 Thomas Schwinge <thomas@codesourcery.com> + + * bid_functions.h: Check for __GLIBC__ additionally to LINUX when + defining format specifiers. + 2007-09-27 H.J. Lu <hongjiu.lu@intel.com> * bid128_fromstring.c: Removed. diff --git a/libgcc/config/libbid/bid_functions.h b/libgcc/config/libbid/bid_functions.h index 579370a..6dd8e84 100644 --- a/libgcc/config/libbid/bid_functions.h +++ b/libgcc/config/libbid/bid_functions.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2007, 2009 Free Software Foundation, Inc. +/* Copyright (C) 2007, 2009, 2012 Free Software Foundation, Inc. This file is part of GCC. @@ -124,7 +124,7 @@ ALIGN (16) #define DENORMAL_MODE 0x00000100 #define INVALID_MODE 0x00000080 -#if defined LINUX || defined SUNOS +#if defined LINUX || defined __GLIBC__ || defined SUNOS #define LX16 "%016llx" #define LX "%llx" #define LD4 "%4llu" diff --git a/libgcc/configure b/libgcc/configure index ed6eabf..1425df6 100644 --- a/libgcc/configure +++ b/libgcc/configure @@ -4076,6 +4076,7 @@ else case $host in powerpc*-*-linux* | i?86*-*-linux* | x86_64*-*-linux* | s390*-*-linux* | \ + i?86*-*-gnu* | \ i?86*-*-mingw* | x86_64*-*-mingw* | \ i?86*-*-cygwin*) enable_decimal_float=yes |