diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2008-05-03 00:37:35 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2008-05-03 00:37:35 +0000 |
commit | bccdca4a5f7b9879d67a35d78063a9ac3b5f5104 (patch) | |
tree | 6f5c583a8507dcac9b3a08aa00929c6c123af41a /gdb/Makefile.in | |
parent | 0315afbc1dfcbdd1af230eb7b6d5193634bc254a (diff) | |
download | gdb-bccdca4a5f7b9879d67a35d78063a9ac3b5f5104.zip gdb-bccdca4a5f7b9879d67a35d78063a9ac3b5f5104.tar.gz gdb-bccdca4a5f7b9879d67a35d78063a9ac3b5f5104.tar.bz2 |
* linespec.c: Include "target.h".
(minsym_found): Handle minimal symbols pointing to function
descriptors. Use find_function_start_pc.
* minsyms.c (msymbol_objfile): New function.
* parse.c (write_exp_msymbol): Handle minimal symbols pointing
to function descriptors.
* symtab.c (fixup_section): Only use minimal symbol at the same
address to determine section of a symbol.
(find_function_start_pc): New function.
(find_function_start_sal): Use it.
* symtab.h (msymbol_objfile): Add prototype.
(find_function_start_pc): Likewise.
* value.c: Include "objfiles.h".
(value_fn_field): Handle minimal symbols pointing to function
descriptors.
* Makefile.in (linespec.o): Update dependencies.
(value.o): Likewise.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 6afdeba..269ccf7 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2373,7 +2373,8 @@ libunwind-frame.o: libunwind-frame.c $(defs_h) $(inferior_h) $(frame_h) \ linespec.o: linespec.c $(defs_h) $(symtab_h) $(frame_h) $(command_h) \ $(symfile_h) $(objfiles_h) $(source_h) $(demangle_h) $(value_h) \ $(completer_h) $(cp_abi_h) $(parser_defs_h) $(block_h) $(interps_h) \ - $(objc_lang_h) $(linespec_h) $(exceptions_h) $(language_h) $(mi_cmds_h) + $(objc_lang_h) $(linespec_h) $(exceptions_h) $(language_h) \ + $(mi_cmds_h) $(target_h) linux-fork.o: linux-fork.c $(defs_h) $(inferior_h) $(regcache_h) $(gdbcmd_h) \ $(infcall_h) $(gdb_assert_h) $(gdb_string_h) $(linux_fork_h) \ $(linux_nat_h) $(gdb_wait_h) $(gdb_dirent_h) @@ -2967,7 +2968,7 @@ valprint.o: valprint.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \ value.o: value.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \ $(value_h) $(gdbcore_h) $(command_h) $(gdbcmd_h) $(target_h) \ $(language_h) $(demangle_h) $(doublest_h) \ - $(gdb_assert_h) $(regcache_h) $(block_h) $(dfp_h) + $(gdb_assert_h) $(regcache_h) $(block_h) $(dfp_h) $(objfiles_h) varobj.o: varobj.c $(defs_h) $(exceptions_h) $(value_h) $(expression_h) \ $(frame_h) $(language_h) $(wrapper_h) $(gdbcmd_h) $(block_h) \ $(gdb_assert_h) $(gdb_string_h) $(varobj_h) $(vec_h) $(gdbthread_h) \ |