aboutsummaryrefslogtreecommitdiff
path: root/gdb/symfile.c
diff options
context:
space:
mode:
authorElena Zannoni <ezannoni@kwikemart.cygnus.com>2003-06-02 23:20:47 +0000
committerElena Zannoni <ezannoni@kwikemart.cygnus.com>2003-06-02 23:20:47 +0000
commitadedef68ce373a39f7f005a0d7599a41dcae3806 (patch)
tree16248c0abbbcaa8134840015b245207796b1d9ba /gdb/symfile.c
parent9f470756e9eac952e5497a2c4f0885ebd8fbbd6b (diff)
downloadfsf-binutils-gdb-adedef68ce373a39f7f005a0d7599a41dcae3806.zip
fsf-binutils-gdb-adedef68ce373a39f7f005a0d7599a41dcae3806.tar.gz
fsf-binutils-gdb-adedef68ce373a39f7f005a0d7599a41dcae3806.tar.bz2
2003-06-02 Elena Zannoni <ezannoni@redhat.com>
* target.h (TARGET_SYMFILE_POSTREAD): Delete unused macro. * symfile.c (reread_symbols): Delete call to TARGET_SYMFILE_POSTREAD. (syms_from_objfile): Ditto.
Diffstat (limited to 'gdb/symfile.c')
-rw-r--r--gdb/symfile.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/gdb/symfile.c b/gdb/symfile.c
index 8bb3b37..3d63502 100644
--- a/gdb/symfile.c
+++ b/gdb/symfile.c
@@ -792,13 +792,6 @@ syms_from_objfile (struct objfile *objfile,
/* Discard cleanups as symbol reading was successful. */
discard_cleanups (old_chain);
-
- /* Call this after reading in a new symbol table to give target
- dependent code a crack at the new symbols. For instance, this
- could be used to update the values of target-specific symbols GDB
- needs to keep track of (such as _sigtramp, or whatever). */
-
- TARGET_SYMFILE_POSTREAD (objfile);
}
/* Perform required actions after either reading in the initial
@@ -2041,14 +2034,6 @@ reread_symbols (void)
again now. */
objfile->mtime = new_modtime;
reread_one = 1;
-
- /* Call this after reading in a new symbol table to give target
- dependent code a crack at the new symbols. For instance, this
- could be used to update the values of target-specific symbols GDB
- needs to keep track of (such as _sigtramp, or whatever). */
-
- TARGET_SYMFILE_POSTREAD (objfile);
-
reread_separate_symbols (objfile);
}
}