initialize_objfile_symbol: Renamed from initialize_symbol.
authorDoug Evans <xdje42@gmail.com>
Tue, 23 Dec 2014 15:28:28 +0000 (07:28 -0800)
committerDoug Evans <xdje42@gmail.com>
Tue, 23 Dec 2014 15:28:28 +0000 (07:28 -0800)
gdb/ChangeLog:

* symtab.c (initialize_objfile_symbol): Renamed from initialize_symbol.
All callers updated.

gdb/ChangeLog
gdb/symtab.c
gdb/symtab.h
gdb/xcoffread.c

index 28356b8dfe21b50e4eb47ea3ec17c2ed96058f22..560ea908d949e3bf15fb784fb1de6db8ae08b552 100644 (file)
@@ -1,3 +1,8 @@
+2014-12-23  Doug Evans  <xdje42@gmail.com>
+
+       * symtab.c (initialize_objfile_symbol): Renamed from initialize_symbol.
+       All callers updated.
+
 2014-12-23  Doug Evans  <xdje42@gmail.com>
 
        * language.h (struct language_defn) <la_lookup_symbol_nonlocal>:
index 7d2cde5c804a72a129404f96f26bcb5b836bee34..e7cd5afc8c7b9145ed0fd3725e5851c3f6f37f43 100644 (file)
@@ -5316,7 +5316,7 @@ initialize_ordinary_address_classes (void)
 /* Initialize the symbol SYM.  */
 
 void
-initialize_symbol (struct symbol *sym)
+initialize_objfile_symbol (struct symbol *sym)
 {
   memset (sym, 0, sizeof (*sym));
   SYMBOL_SECTION (sym) = -1;
index 57ed9fc36e57f1c2225162f6a2f09cf5229fe533..3a3384d3433c9078be74939ed30a898bf00dbc30 100644 (file)
@@ -1571,7 +1571,7 @@ struct cleanup *demangle_for_lookup (const char *name, enum language lang,
 
 struct symbol *allocate_symbol (struct objfile *);
 
-void initialize_symbol (struct symbol *);
+void initialize_objfile_symbol (struct symbol *);
 
 struct template_symbol *allocate_template_symbol (struct objfile *);
 
index 49827b61a50d3dd2d025ac88dce0b8436afdfd7c..5a1d7a8fb112ac18f6eb7e109f2cb445602ffc7a 100644 (file)
@@ -1559,7 +1559,7 @@ process_xcoff_symbol (struct coff_symbol *cs, struct objfile *objfile)
   if (name[0] == '.')
     ++name;
 
-  initialize_symbol (sym);
+  initialize_objfile_symbol (sym);
 
   /* default assumptions */
   SYMBOL_VALUE_ADDRESS (sym) = cs->c_value + off;
This page took 0.062873 seconds and 4 git commands to generate.