-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix displacement of separate debug info files. * objfiles.c (objfile_relocate): Rename to ... (objfile_relocate1): ... here and make it static. Extend the comment. (objfile_relocate): New function. * solib-spu.c (spu_relocate_main_executable): Explicitly check if SYMFILE_OBJFILE is NULL. Remove variables objfile and old_chain. Remove following of SEPARATE_DEBUG_OBJFILE. new_offsets is now allocated using alloca. * symfile.c (copy_section_addr_info): Remove. (build_section_addr_info_from_objfile): Make it global. New variables addr_bit and mask, use them. * symfile.h (build_section_addr_info_from_objfile): New prototype. (copy_section_addr_info): Remove.
- Loading branch information
1 parent
a2beed3
commit 567995e
Showing
5 changed files
with
86 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,19 @@ | ||
2010-01-09 Jan Kratochvil <[email protected]> | ||
|
||
Fix displacement of separate debug info files. | ||
* objfiles.c (objfile_relocate): Rename to ... | ||
(objfile_relocate1): ... here and make it static. Extend the comment. | ||
(objfile_relocate): New function. | ||
* solib-spu.c (spu_relocate_main_executable): Explicitly check if | ||
SYMFILE_OBJFILE is NULL. Remove variables objfile and old_chain. | ||
Remove following of SEPARATE_DEBUG_OBJFILE. new_offsets is now | ||
allocated using alloca. | ||
* symfile.c (copy_section_addr_info): Remove. | ||
(build_section_addr_info_from_objfile): Make it global. New variables | ||
addr_bit and mask, use them. | ||
* symfile.h (build_section_addr_info_from_objfile): New prototype. | ||
(copy_section_addr_info): Remove. | ||
|
||
2010-01-09 Joel Brobecker <[email protected]> | ||
|
||
Signal unwinder for mips-irix N32. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters