diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2012-11-05 00:08:42 +0100 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gcc.gnu.org> | 2012-11-05 00:08:42 +0100 |
commit | 460277e0239222d962818c4023dd936ce7ea5210 (patch) | |
tree | aa94e808f621df11606d9adef3c21194d7a4c114 /libgcc | |
parent | b260c71fa5f903606dcc491a38069fbef87baa05 (diff) | |
download | gcc-460277e0239222d962818c4023dd936ce7ea5210.zip gcc-460277e0239222d962818c4023dd936ce7ea5210.tar.gz gcc-460277e0239222d962818c4023dd936ce7ea5210.tar.bz2 |
bid_functions.h: Check for __GLIBC__ additionally to LINUX when defining format specifiers.
libgcc/config/libbid/
* bid_functions.h: Check for __GLIBC__ additionally to LINUX when
defining format specifiers.
config/
* dfp.m4 (enable_decimal_float): Enable for i?86*-*-gnu*.
gcc/
* configure: Regenerate.
libdecnumber/
* configure: Regenerate.
libgcc/
* configure: Regenerate.
From-SVN: r193143
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 d7f5279..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 |