diff options
author | Jeff Law <law@redhat.com> | 1996-07-05 18:30:03 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1996-07-05 18:30:03 +0000 |
commit | 34255b708c6e329996ff9feff08f4eac4cbb6370 (patch) | |
tree | 1067e65c0b06296696d58f715b22d54eeb84eb47 /bfd/coffcode.h | |
parent | 910d7df2464c3ac704e347180eeb5e11866d390a (diff) | |
download | gdb-34255b708c6e329996ff9feff08f4eac4cbb6370.zip gdb-34255b708c6e329996ff9feff08f4eac4cbb6370.tar.gz gdb-34255b708c6e329996ff9feff08f4eac4cbb6370.tar.bz2 |
No longer need to sanitize away h8/s stuff.
Diffstat (limited to 'bfd/coffcode.h')
-rw-r--r-- | bfd/coffcode.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/bfd/coffcode.h b/bfd/coffcode.h index af8a49f..8de83a5 100644 --- a/bfd/coffcode.h +++ b/bfd/coffcode.h @@ -1111,7 +1111,7 @@ coff_set_alignment_hook (abfd, section, scnhdr) } #endif -#ifdef COFF_WITH_PE +#ifdef COFF_IMAGE_WITH_PE /* In a PE image file, the s_paddr field holds the virtual size of a section, while the s_size field holds the raw size. */ if (hdr->s_paddr != 0) @@ -1499,7 +1499,6 @@ coff_set_arch_mach_hook (abfd, filehdr) break; #endif -/* start-sanitize-h8s */ #ifdef H8300SMAGIC case H8300SMAGIC: arch = bfd_arch_h8300; @@ -1509,7 +1508,6 @@ coff_set_arch_mach_hook (abfd, filehdr) break; #endif -/* end-sanitize-h8s */ #ifdef SH_ARCH_MAGIC_BIG case SH_ARCH_MAGIC_BIG: case SH_ARCH_MAGIC_LITTLE: @@ -1960,11 +1958,9 @@ coff_set_flags (abfd, magicp, flagsp) case bfd_mach_h8300h: *magicp = H8300HMAGIC; return true; -/* start-sanitize-h8s */ case bfd_mach_h8300s: *magicp = H8300SMAGIC; return true; -/* end-sanitize-h8s */ } break; #endif @@ -2186,7 +2182,7 @@ coff_compute_section_file_positions (abfd) #endif current->filepos = sofar; -#ifdef COFF_WITH_PE +#ifdef COFF_IMAGE_WITH_PE /* With PE we have to pad each section to be a multiple of its page size too, and remember both sizes. */ @@ -2464,6 +2460,9 @@ coff_write_object_contents (abfd) section.s_size = current->_raw_size; #ifdef COFF_WITH_PE + section.s_paddr = 0; +#endif +#ifdef COFF_IMAGE_WITH_PE /* Reminder: s_paddr holds the virtual size of the section. */ if (coff_section_data (abfd, current) != NULL && pei_section_data (abfd, current) != NULL) |