This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.19-400-g4f02e2b


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  4f02e2b8f94799b4f9e57e922c06c5eeec4272e6 (commit)
      from  1a84c3d6d4bc43c92b6531b09d732e2e9c750dea (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=4f02e2b8f94799b4f9e57e922c06c5eeec4272e6

commit 4f02e2b8f94799b4f9e57e922c06c5eeec4272e6
Author: Will Newton <will.newton@linaro.org>
Date:   Fri Apr 25 15:48:48 2014 +0100

    stdlib/gmp-impl.h: Silence -Wundef warning for USE_STACK_ALLOC
    
    The upstream version of GMP has long removed this conditional
    altogether in this commit:
    
    changeset:   5254:88618a4694ac
    user:        Kevin Ryde <user42@zip.com.au>
    date:        Sun Jun 17 01:37:27 2001 +0200
    
    So just turn the #if into an #ifdef to silence the warning.
    
    ChangeLog:
    
    2014-05-14  Will Newton  <will.newton@linaro.org>
    
    	* stdlib/gmp-impl.h: Test USE_STACK_ALLOC #ifdef
    	rather than #if.

diff --git a/ChangeLog b/ChangeLog
index 0bcf748..09fd4a4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-05-14  Will Newton  <will.newton@linaro.org>
+
+	* stdlib/gmp-impl.h: Test USE_STACK_ALLOC #ifdef
+	rather than #if.
+
 2014-05-14  Joseph Myers  <joseph@codesourcery.com>
 
 	[BZ #16564]
diff --git a/stdlib/gmp-impl.h b/stdlib/gmp-impl.h
index 83865dc..b7da5bd 100644
--- a/stdlib/gmp-impl.h
+++ b/stdlib/gmp-impl.h
@@ -47,7 +47,7 @@ along with the GNU MP Library; see the file COPYING.LIB.  If not, see
 #endif
 #endif
 
-#if ! defined (HAVE_ALLOCA) || USE_STACK_ALLOC
+#if ! defined (HAVE_ALLOCA) || defined (USE_STACK_ALLOC)
 #include "stack-alloc.h"
 #else
 #define TMP_DECL(m)

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog         |    5 +++++
 stdlib/gmp-impl.h |    2 +-
 2 files changed, 6 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]