diff options
Diffstat (limited to 'ld/testsuite/ld-mips-elf/mips-lib.ld')
-rw-r--r-- | ld/testsuite/ld-mips-elf/mips-lib.ld | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/testsuite/ld-mips-elf/mips-lib.ld b/ld/testsuite/ld-mips-elf/mips-lib.ld index 5073d9f..1d66c62 100644 --- a/ld/testsuite/ld-mips-elf/mips-lib.ld +++ b/ld/testsuite/ld-mips-elf/mips-lib.ld @@ -173,7 +173,7 @@ SECTIONS /* Align here to ensure that the .bss section occupies space up to _end. Align after .bss to ensure correct alignment even if the .bss section disappears because there are no input sections. */ - . = ALIGN(32 / 8); + . = ALIGN(. != 0 ? 32 / 8 : 1); } . = ALIGN(32 / 8); _end = .; |