2005-02-23 Andrew Cagney <cagney@gnu.org>
* cli/cli-dump.c (dump_bfd_file): Replace magic constant with SEC_XXX flags.
This commit is contained in:
parent
476391821e
commit
e9c55a7bd7
|
@ -1,3 +1,8 @@
|
||||||
|
2005-02-23 Andrew Cagney <cagney@gnu.org>
|
||||||
|
|
||||||
|
* cli/cli-dump.c (dump_bfd_file): Replace magic constant with
|
||||||
|
SEC_XXX flags.
|
||||||
|
|
||||||
2005-02-22 Andrew Cagney <cagney@gnu.org>
|
2005-02-22 Andrew Cagney <cagney@gnu.org>
|
||||||
|
|
||||||
* configure.ac: Only enaable insight when itcl is present.
|
* configure.ac: Only enaable insight when itcl is present.
|
||||||
|
|
|
@ -218,7 +218,9 @@ dump_bfd_file (const char *filename, const char *mode,
|
||||||
bfd_set_section_size (obfd, osection, len);
|
bfd_set_section_size (obfd, osection, len);
|
||||||
bfd_set_section_vma (obfd, osection, vaddr);
|
bfd_set_section_vma (obfd, osection, vaddr);
|
||||||
bfd_set_section_alignment (obfd, osection, 0);
|
bfd_set_section_alignment (obfd, osection, 0);
|
||||||
bfd_set_section_flags (obfd, osection, 0x203);
|
bfd_set_section_flags (obfd, osection, (SEC_HAS_CONTENTS
|
||||||
|
| SEC_ALLOC
|
||||||
|
| SEC_LOAD));
|
||||||
osection->entsize = 0;
|
osection->entsize = 0;
|
||||||
bfd_set_section_contents (obfd, osection, buf, 0, len);
|
bfd_set_section_contents (obfd, osection, buf, 0, len);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue