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.17-686-gf137ff1


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  f137ff13835e2ac6f0d85f37b7ff32d134c9de18 (commit)
      from  c5d9b39ce6ea44f97ea47ee7c0494a7bb01f4330 (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=f137ff13835e2ac6f0d85f37b7ff32d134c9de18

commit f137ff13835e2ac6f0d85f37b7ff32d134c9de18
Author: Peter Collingbourne <pcc@google.com>
Date:   Mon May 13 08:36:12 2013 -0700

    Remove const attribute on get_log2
    
    This function is not const, as it can modify log2_m and log2_m_inited.

diff --git a/ChangeLog b/ChangeLog
index a22b803..8a846bc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-05-13  Peter Collingbourne  <pcc@google.com>
+
+	* math/atest-exp2.c (get_log2): Remove const attribute.
+
 2013-05-15  Joseph Myers  <joseph@codesourcery.com>
 
 	* math/libm-test.inc (struct test_f_l_data): New type.
diff --git a/math/atest-exp2.c b/math/atest-exp2.c
index 20836ca..694237d 100644
--- a/math/atest-exp2.c
+++ b/math/atest-exp2.c
@@ -77,7 +77,6 @@ read_mpn_hex(mp_limb_t *x, const char *str)
  				      << (FRAC - i * 4 - 4) % mpbpl);
 }
 
-static mp_limb_t *get_log2(void) __attribute__((const));
 static mp_limb_t *
 get_log2(void)
 {

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

Summary of changes:
 ChangeLog         |    4 ++++
 math/atest-exp2.c |    1 -
 2 files changed, 4 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]