diff options
author | Kim Knuttila <krk@cygnus> | 1996-01-19 00:16:31 +0000 |
---|---|---|
committer | Kim Knuttila <krk@cygnus> | 1996-01-19 00:16:31 +0000 |
commit | e7894f6b5daf4ae6b8881520a4f59aa68ceaa044 (patch) | |
tree | 6ffa2d744bf01b6fe27c7ac12bf057498af145fc /bfd/coffcode.h | |
parent | 0291f0f54389fab7513b03f358fdc2e1be54fa2f (diff) | |
download | gdb-e7894f6b5daf4ae6b8881520a4f59aa68ceaa044.zip gdb-e7894f6b5daf4ae6b8881520a4f59aa68ceaa044.tar.gz gdb-e7894f6b5daf4ae6b8881520a4f59aa68ceaa044.tar.bz2 |
Numerous PowerPC PE fixes
Diffstat (limited to 'bfd/coffcode.h')
-rw-r--r-- | bfd/coffcode.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bfd/coffcode.h b/bfd/coffcode.h index 1eb9ba8..069acda 100644 --- a/bfd/coffcode.h +++ b/bfd/coffcode.h @@ -985,6 +985,10 @@ coff_set_alignment_hook (abfd, section, scnhdr) { section->alignment_power = 1; } + else if (strncmp (section->name, ".stab", 5) == 0) + { + section->alignment_power = 2; + } #endif } #undef ALIGN_SET |