[4/9] Rename lookup_symbol_aux_block to lookup_symbol_in_block.

Message ID m338aaku89.fsf@sspiff.org
State New, archived
Headers

Commit Message

Doug Evans Oct. 27, 2014, 4:32 a.m. UTC
  Hi.

This patch removes the _aux in lookup_symbol_aux_block,
it doesn't add any descriptive value, and gives the function
a more descriptive name.

2014-10-26  Doug Evans  <xdje42@gmail.com>

	* symtab.c (lookup_symbol_in_block): Renamed from
	lookup_symbol_aux_block.  All callers updated.
  

Patch

diff --git a/gdb/cp-namespace.c b/gdb/cp-namespace.c
index 76ffee2..898fb5a 100644
--- a/gdb/cp-namespace.c
+++ b/gdb/cp-namespace.c
@@ -628,7 +628,7 @@  lookup_symbol_file (const char *name,
       const struct block *global_block = block_global_block (block);
       
       if (global_block != NULL)
-	sym = lookup_symbol_aux_block (name, global_block, domain);
+	sym = lookup_symbol_in_block (name, global_block, domain);
     }
   else
     {
diff --git a/gdb/symtab.c b/gdb/symtab.c
index 02c657e..5786a8e 100644
--- a/gdb/symtab.c
+++ b/gdb/symtab.c
@@ -1515,7 +1515,7 @@  lookup_symbol_aux_local (const char *name, const struct block *block,
 
   while (block != static_block)
     {
-      sym = lookup_symbol_aux_block (name, block, domain);
+      sym = lookup_symbol_in_block (name, block, domain);
       if (sym != NULL)
 	return sym;
 
@@ -1565,8 +1565,8 @@  lookup_objfile_from_block (const struct block *block)
 /* See symtab.h.  */
 
 struct symbol *
-lookup_symbol_aux_block (const char *name, const struct block *block,
-			 const domain_enum domain)
+lookup_symbol_in_block (const char *name, const struct block *block,
+			const domain_enum domain)
 {
   struct symbol *sym;
 
@@ -1806,7 +1806,7 @@  lookup_symbol_in_static_block (const char *name,
   const struct block *static_block = block_static_block (block);
 
   if (static_block != NULL)
-    return lookup_symbol_aux_block (name, static_block, domain);
+    return lookup_symbol_in_block (name, static_block, domain);
   else
     return NULL;
 }
diff --git a/gdb/symtab.h b/gdb/symtab.h
index 1d95258..5564dbe 100644
--- a/gdb/symtab.h
+++ b/gdb/symtab.h
@@ -1104,13 +1104,13 @@  extern struct symbol *lookup_symbol_global (const char *name,
 					    const struct block *block,
 					    const domain_enum domain);
 
-/* Lookup a symbol within the block BLOCK.
+/* Lookup a symbol in block BLOCK.
    Upon success sets BLOCK_FOUND and fixes up the symbol's section
    if necessary.  */
 
-extern struct symbol *lookup_symbol_aux_block (const char *name,
-					       const struct block *block,
-					       const domain_enum domain);
+extern struct symbol *lookup_symbol_in_block (const char *name,
+					      const struct block *block,
+					      const domain_enum domain);
 
 /* Look up the `this' symbol for LANG in BLOCK.  Return the symbol if
    found, or NULL if not found.  */