summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Blandy <jimb@codesourcery.com>2002-11-25 20:11:35 +0000
committerJim Blandy <jimb@codesourcery.com>2002-11-25 20:11:35 +0000
commitf6dd01415cc2e8e0c8e0ab08beff953dad9f25cd (patch)
tree73662d16521c6ae08983a0db2309d3d1854f6eb4
parentdb06ebc4670d8a701bd2afd48ff4e2c5f04b1355 (diff)
downloadgdb-f6dd01415cc2e8e0c8e0ab08beff953dad9f25cd.tar.gz
* symfile.c (syms_from_objfile): Adjust indentation.
-rw-r--r--gdb/ChangeLog2
-rw-r--r--gdb/symfile.c14
2 files changed, 10 insertions, 6 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index b48f346e350..5123d698d00 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,7 @@
2002-11-25 Jim Blandy <jimb@redhat.com>
+ * symfile.c (syms_from_objfile): Adjust indentation.
+
* symfile.c (symbol_file_add): Flush gdb_stdout even if from_tty
|| info_verbose isn't true.
diff --git a/gdb/symfile.c b/gdb/symfile.c
index 5e0bf8c8726..aa457b258ae 100644
--- a/gdb/symfile.c
+++ b/gdb/symfile.c
@@ -652,25 +652,27 @@ syms_from_objfile (struct objfile *objfile, struct section_addr_info *addrs,
else
lower_offset = 0;
- /* Calculate offsets for the loadable sections.
+ /* Calculate offsets for the loadable sections.
FIXME! Sections must be in order of increasing loadable section
so that contiguous sections can use the lower-offset!!!
- Adjust offsets if the segments are not contiguous.
- If the section is contiguous, its offset should be set to
+ Adjust offsets if the segments are not contiguous.
+ If the section is contiguous, its offset should be set to
the offset of the highest loadable section lower than it
(the loadable section directly below it in memory).
this_offset = lower_offset = lower_addr - lower_orig_addr */
- /* Calculate offsets for sections. */
+ /* Calculate offsets for sections. */
for (i=0 ; i < MAX_SECTIONS && addrs->other[i].name; i++)
{
if (addrs->other[i].addr != 0)
{
- sect = bfd_get_section_by_name (objfile->obfd, addrs->other[i].name);
+ sect = bfd_get_section_by_name (objfile->obfd,
+ addrs->other[i].name);
if (sect)
{
- addrs->other[i].addr -= bfd_section_vma (objfile->obfd, sect);
+ addrs->other[i].addr
+ -= bfd_section_vma (objfile->obfd, sect);
lower_offset = addrs->other[i].addr;
/* This is the index used by BFD. */
addrs->other[i].sectindex = sect->index ;