This is the mail archive of the binutils@sourceware.org mailing list for the binutils 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]

[committed] BFD/DWARF2: Correct an `index' global shadowing error


Fix a commit 089e3718bd8d ("Greatly improve the speed if looking up 
DWARF line number information.") build regression:

cc1: warnings being treated as errors
.../bfd/dwarf2.c: In function 'build_line_info_table':
.../bfd/dwarf2.c:1614: warning: declaration of 'index' shadows a global declaration
/usr/include/string.h:304: warning: shadowed declaration is here
.../bfd/dwarf2.c: In function 'build_lookup_funcinfo_table':
.../bfd/dwarf2.c:2262: warning: declaration of 'index' shadows a global declaration
/usr/include/string.h:304: warning: shadowed declaration is here
make[4]: *** [dwarf2.lo] Error 1

in a way following commit 91d6fa6a035c ("Add -Wshadow to the gcc command
line options used when compiling the binutils.").

	bfd/
	* dwarf2.c (build_line_info_table): Rename `index' local 
	variable to `line_index'.
	(build_lookup_funcinfo_table): Rename `index' local variable to 
	`func_index'.
---
 Committed as obvious.

  Maciej

binutils-bfd-dwarf2-line-function-index.diff
Index: binutils/bfd/dwarf2.c
===================================================================
--- binutils.orig/bfd/dwarf2.c	2016-11-17 23:50:45.000000000 +0000
+++ binutils/bfd/dwarf2.c	2016-11-18 00:10:43.194621269 +0000
@@ -1611,7 +1611,7 @@ build_line_info_table (struct line_info_
   struct line_info** line_info_lookup;
   struct line_info*  each_line;
   unsigned int       num_lines;
-  unsigned int       index;
+  unsigned int       line_index;
 
   if (seq->line_info_lookup != NULL)
     return TRUE;
@@ -1634,11 +1634,11 @@ build_line_info_table (struct line_info_
     return FALSE;
 
   /* Create the line information lookup table.  */
-  index = num_lines;
+  line_index = num_lines;
   for (each_line = seq->last_line; each_line; each_line = each_line->prev_line)
-    line_info_lookup[--index] = each_line;
+    line_info_lookup[--line_index] = each_line;
 
-  BFD_ASSERT (index == 0);
+  BFD_ASSERT (line_index == 0);
 
   seq->num_lines = num_lines;
   seq->line_info_lookup = line_info_lookup;
@@ -2259,7 +2259,7 @@ build_lookup_funcinfo_table (struct comp
   unsigned int number_of_functions = unit->number_of_functions;
   struct funcinfo *each;
   struct lookup_funcinfo *entry;
-  size_t index;
+  size_t func_index;
   struct arange *range;
   bfd_vma low_addr, high_addr;
 
@@ -2273,10 +2273,10 @@ build_lookup_funcinfo_table (struct comp
     return FALSE;
 
   /* Populate the function info lookup table.  */
-  index = number_of_functions;
+  func_index = number_of_functions;
   for (each = unit->function_table; each; each = each->prev_func)
     {
-      entry = &lookup_funcinfo_table[--index];
+      entry = &lookup_funcinfo_table[--func_index];
       entry->funcinfo = each;
 
       /* Calculate the lowest and highest address for this function entry.  */
@@ -2295,7 +2295,7 @@ build_lookup_funcinfo_table (struct comp
       entry->high_addr = high_addr;
     }
 
-  BFD_ASSERT (index == 0);
+  BFD_ASSERT (func_index == 0);
 
   /* Sort the function by address.  */
   qsort (lookup_funcinfo_table,
@@ -2305,9 +2305,9 @@ build_lookup_funcinfo_table (struct comp
 
   /* Calculate the high watermark for each function in the lookup table.  */
   high_addr = lookup_funcinfo_table[0].high_addr;
-  for (index = 1; index < number_of_functions; index++)
+  for (func_index = 1; func_index < number_of_functions; func_index++)
     {
-      entry = &lookup_funcinfo_table[index];
+      entry = &lookup_funcinfo_table[func_index];
       if (entry->high_addr > high_addr)
 	high_addr = entry->high_addr;
       else


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