public inbox for archer-commits@sourceware.org
help / color / mirror / Atom feed
* [SCM]  archer-ratmice-compile-Wc++-compat: rename all "mutable" identifiers
@ 2010-09-15 14:22 tromey
  0 siblings, 0 replies; only message in thread
From: tromey @ 2010-09-15 14:22 UTC (permalink / raw)
  To: archer-commits

The branch, archer-ratmice-compile-Wc++-compat has been updated
       via  b57b679526c985c179359c0f71c8f13f6ddeeb7a (commit)
      from  0a1ac825eb17e3ee78b547548b17e44482288626 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email.

- Log -----------------------------------------------------------------
commit b57b679526c985c179359c0f71c8f13f6ddeeb7a
Author: Tom Tromey <tromey@redhat.com>
Date:   Wed Sep 15 08:22:09 2010 -0600

    rename all "mutable" identifiers

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

Summary of changes:
 gdb/addrmap.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

First 500 lines of diff:
diff --git a/gdb/addrmap.c b/gdb/addrmap.c
index f27ec83..b317d9e 100644
--- a/gdb/addrmap.c
+++ b/gdb/addrmap.c
@@ -402,13 +402,13 @@ splay_foreach_copy (splay_tree_node n, void *closure)
 static struct addrmap *
 addrmap_mutable_create_fixed (struct addrmap *self, struct obstack *obstack)
 {
-  struct addrmap_mutable *mutable = (struct addrmap_mutable *) self;
+  struct addrmap_mutable *is_mutable = (struct addrmap_mutable *) self;
   struct addrmap_fixed *fixed;
   size_t num_transitions;
 
   /* Count the number of transitions in the tree.  */
   num_transitions = 0;
-  splay_tree_foreach (mutable->tree, splay_foreach_count, &num_transitions);
+  splay_tree_foreach (is_mutable->tree, splay_foreach_count, &num_transitions);
 
   /* Include an extra entry for the transition at zero (which fixed
      maps have, but mutable maps do not.)  */
@@ -426,7 +426,7 @@ addrmap_mutable_create_fixed (struct addrmap *self, struct obstack *obstack)
 
   /* Copy all entries from the splay tree to the array, in order 
      of increasing address.  */
-  splay_tree_foreach (mutable->tree, splay_foreach_copy, fixed);
+  splay_tree_foreach (is_mutable->tree, splay_foreach_copy, fixed);
 
   /* We should have filled the array.  */
   gdb_assert (fixed->num_transitions == num_transitions);


hooks/post-receive
--
Repository for Project Archer.


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2010-09-15 14:22 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-09-15 14:22 [SCM] archer-ratmice-compile-Wc++-compat: rename all "mutable" identifiers tromey

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).