Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [PATCH 008/238] Fix Wshadow
@ 2011-11-27 12:54 Andrey Smirnov
  2012-03-29 22:35 ` Joel Brobecker
  0 siblings, 1 reply; 4+ messages in thread
From: Andrey Smirnov @ 2011-11-27 12:54 UTC (permalink / raw)
  To: gdb-patches; +Cc: brobecker, Andrey Smirnov

Rewritten so it is `wild_match_p' instead of `wild_mode_flag'.

---
 gdb/ChangeLog  |    5 +++++
 gdb/ada-lang.c |   16 ++++++++--------
 2 files changed, 13 insertions(+), 8 deletions(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 7499e45..5ef7c28 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,10 @@
 2011-11-19  Andrey Smirnov <andrew.smirnov@gmail.com>
 
+	* ada-lang.c (ada_make_symbol_completion_list): Rename
+	`wild_match' to `wild_match_p'(-Wshadow).
+
+2011-11-19  Andrey Smirnov <andrew.smirnov@gmail.com>
+
 	* ada-lang.c (ada_index_struct_field): Fix -Wshadow warnings.
 
 2011-11-19  Andrey Smirnov <andrew.smirnov@gmail.com>
diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c
index d73e314..64b7f56 100644
--- a/gdb/ada-lang.c
+++ b/gdb/ada-lang.c
@@ -5650,7 +5650,7 @@ ada_make_symbol_completion_list (char *text0, char *word)
 {
   char *text;
   int text_len;
-  int wild_match;
+  int wild_match_p;
   int encoded;
   VEC(char_ptr) *completions = VEC_alloc (char_ptr, 128);
   struct symbol *sym;
@@ -5666,7 +5666,7 @@ ada_make_symbol_completion_list (char *text0, char *word)
       text = xstrdup (text0);
       make_cleanup (xfree, text);
       text_len = strlen (text);
-      wild_match = 0;
+      wild_match_p = 0;
       encoded = 1;
     }
   else
@@ -5682,7 +5682,7 @@ ada_make_symbol_completion_list (char *text0, char *word)
          qualified entity name, and the match must not be done in wild
          mode.  Similarly, if the user wants to complete what looks like
          an encoded name, the match must not be done in wild mode.  */
-      wild_match = (strchr (text0, '.') == NULL && !encoded);
+      wild_match_p = (strchr (text0, '.') == NULL && !encoded);
     }
 
   /* First, look at the partial symtab symbols.  */
@@ -5694,7 +5694,7 @@ ada_make_symbol_completion_list (char *text0, char *word)
     data.text_len = text_len;
     data.text0 = text0;
     data.word = word;
-    data.wild_match = wild_match;
+    data.wild_match = wild_match_p;
     data.encoded = encoded;
     expand_partial_symbol_names (ada_expand_partial_symbol_name, &data);
   }
@@ -5708,7 +5708,7 @@ ada_make_symbol_completion_list (char *text0, char *word)
   {
     QUIT;
     symbol_completion_add (&completions, SYMBOL_LINKAGE_NAME (msymbol),
-                           text, text_len, text0, word, wild_match, encoded);
+                           text, text_len, text0, word, wild_match_p, encoded);
   }
 
   /* Search upwards from currently selected frame (so that we can
@@ -5723,7 +5723,7 @@ ada_make_symbol_completion_list (char *text0, char *word)
       {
         symbol_completion_add (&completions, SYMBOL_LINKAGE_NAME (sym),
                                text, text_len, text0, word,
-                               wild_match, encoded);
+                               wild_match_p, encoded);
       }
     }
 
@@ -5738,7 +5738,7 @@ ada_make_symbol_completion_list (char *text0, char *word)
     {
       symbol_completion_add (&completions, SYMBOL_LINKAGE_NAME (sym),
                              text, text_len, text0, word,
-                             wild_match, encoded);
+                             wild_match_p, encoded);
     }
   }
 
@@ -5753,7 +5753,7 @@ ada_make_symbol_completion_list (char *text0, char *word)
     {
       symbol_completion_add (&completions, SYMBOL_LINKAGE_NAME (sym),
                              text, text_len, text0, word,
-                             wild_match, encoded);
+                             wild_match_p, encoded);
     }
   }
 
-- 
1.7.5.4


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 008/238] Fix Wshadow
  2011-11-27 12:54 [PATCH 008/238] Fix Wshadow Andrey Smirnov
@ 2012-03-29 22:35 ` Joel Brobecker
  2012-03-30 16:36   ` Andrey Smirnov
  0 siblings, 1 reply; 4+ messages in thread
From: Joel Brobecker @ 2012-03-29 22:35 UTC (permalink / raw)
  To: Andrey Smirnov; +Cc: gdb-patches

>  2011-11-19  Andrey Smirnov <andrew.smirnov@gmail.com>
>  
> +	* ada-lang.c (ada_make_symbol_completion_list): Rename
> +	`wild_match' to `wild_match_p'(-Wshadow).
> +
> +2011-11-19  Andrey Smirnov <andrew.smirnov@gmail.com>
[...]
> -  int wild_match;
> +  int wild_match_p;

The code has changed since you submitted this patch. I am going to
work on a new set of patches that fix this particular type of
warnings... Forgive me if I do not respond to each of the patches
that fix this problem.

-- 
Joel


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 008/238] Fix Wshadow
  2012-03-29 22:35 ` Joel Brobecker
@ 2012-03-30 16:36   ` Andrey Smirnov
  2012-03-30 16:42     ` Joel Brobecker
  0 siblings, 1 reply; 4+ messages in thread
From: Andrey Smirnov @ 2012-03-30 16:36 UTC (permalink / raw)
  To: Joel Brobecker; +Cc: gdb-patches

On Thu, Mar 29, 2012 at 3:35 PM, Joel Brobecker <brobecker@adacore.com> wrote:
>>  2011-11-19  Andrey Smirnov <andrew.smirnov@gmail.com>
>>
>> +     * ada-lang.c (ada_make_symbol_completion_list): Rename
>> +     `wild_match' to `wild_match_p'(-Wshadow).
>> +
>> +2011-11-19  Andrey Smirnov <andrew.smirnov@gmail.com>
> [...]
>> -  int wild_match;
>> +  int wild_match_p;
>
> The code has changed since you submitted this patch. I am going to
> work on a new set of patches that fix this particular type of
> warnings... Forgive me if I do not respond to each of the patches
> that fix this problem.

Yes, unfortunately my patch-set has bit-rotted significantly since the
time I submitted the
patches and the fact that I used git and the main codebase is in CVS
doesn't help either.
I wish I had more time to actually go through the code and convert it
to be compatible with the new codebase,
but unfortunately right now I do not.

Best of luck in your endeavor. Hope my old patches would be at least
marginally helpful to you.

Andrey Smirnov


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 008/238] Fix Wshadow
  2012-03-30 16:36   ` Andrey Smirnov
@ 2012-03-30 16:42     ` Joel Brobecker
  0 siblings, 0 replies; 4+ messages in thread
From: Joel Brobecker @ 2012-03-30 16:42 UTC (permalink / raw)
  To: Andrey Smirnov; +Cc: gdb-patches

> Best of luck in your endeavor. Hope my old patches would be at least
> marginally helpful to you.

Yes, they were! Thank you. It took quite some time to go through
them, and then rewrite some of the, but in one instance it pushed
me to make a worthwhile cleanup, so it was a useful exercise.

-- 
Joel


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-03-30 16:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-11-27 12:54 [PATCH 008/238] Fix Wshadow Andrey Smirnov
2012-03-29 22:35 ` Joel Brobecker
2012-03-30 16:36   ` Andrey Smirnov
2012-03-30 16:42     ` Joel Brobecker

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox