diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2007-11-04 23:49:09 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2007-11-04 23:49:09 +0000 |
commit | 11ec4ba97796b1bdfc68b034ce3f719af81c3e48 (patch) | |
tree | 915761ca29d546532e04c61bb0b54b2caa9a0f1b /ld | |
parent | 4c9b8248edefb916b9d4265ecdcde15a2bb688b9 (diff) | |
download | gdb-11ec4ba97796b1bdfc68b034ce3f719af81c3e48.zip gdb-11ec4ba97796b1bdfc68b034ce3f719af81c3e48.tar.gz gdb-11ec4ba97796b1bdfc68b034ce3f719af81c3e48.tar.bz2 |
include
* coff/pe.h (COFF_ENCODE_ALIGNMENT) Define.
gas
* read.c (ALIGN_LIMIT): Rename to ...
(TC_ALIGN_LIMIT): Guard against prior definition.
* config/tc-i386.h (TC_ALIGN_LIMIT)[TE_PE]: Define.
bfd
* pe-i386.c (COFF_SECTION_ALIGNMENT_ENTRIES): Let .data, .text
and .bss section use the default.
* pei-i386.c (COFF_SECTION_ALIGNMENT_ENTRIES): Likewise.
ld/testsuite
* ld-scripts/align.exp: Enable for PECOFF.
* ld-scripts/alignof.exp: Likewise.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | ld/testsuite/ld-scripts/align.exp | 6 | ||||
-rw-r--r-- | ld/testsuite/ld-scripts/alignof.exp | 4 |
3 files changed, 7 insertions, 8 deletions
diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog index b8b5b2b..0ebc47e 100644 --- a/ld/testsuite/ChangeLog +++ b/ld/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2007-11-05 Danny Smith <dannysmith@users.sourceforge.net> + + * ld-scripts/align.exp: Enable for PECOFF. + * ld-scripts/alignof.exp: Likewise. + 2007-11-01 Joseph Myers <joseph@codesourcery.com> * ld-elf/merge3.d, ld-elf/merge3.s: New. diff --git a/ld/testsuite/ld-scripts/align.exp b/ld/testsuite/ld-scripts/align.exp index e666982..b0fb962 100644 --- a/ld/testsuite/ld-scripts/align.exp +++ b/ld/testsuite/ld-scripts/align.exp @@ -32,17 +32,11 @@ if ![ld_assemble $as $srcdir/$subdir/align.s tmpdir/align.o] { return } -# Doesn't work on PECOFF, appears to be a genuine bug. # mingw on x86_64 targets need to set the image base to 0 to avoid auto image-basing. global LDFLAGS set saved_LDFLAGS "$LDFLAGS" if [istarget "x86_64-*-mingw*"] then { set LDFLAGS "$LDFLAGS --image-base 0" -} else { - if [is_pecoff_format] { - global target_triplet - setup_xfail $target_triplet - } } if ![ld_simple_link $ld tmpdir/align "$LDFLAGS -T $srcdir/$subdir/align.t tmpdir/align.o"] { diff --git a/ld/testsuite/ld-scripts/alignof.exp b/ld/testsuite/ld-scripts/alignof.exp index 207d22c..0f05aeb 100644 --- a/ld/testsuite/ld-scripts/alignof.exp +++ b/ld/testsuite/ld-scripts/alignof.exp @@ -19,9 +19,9 @@ # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, # MA 02110-1301, USA. -# Only ELF targets record section alignment. +# Only ELF and PE-COFF targets record section alignment. -if ![is_elf_format] { +if {![is_elf_format] && ![is_pecoff_format]} { return } |