aboutsummaryrefslogtreecommitdiff
path: root/bfd/aoutx.h
diff options
context:
space:
mode:
authorJohn Gilmore <gnu@cygnus>1991-11-22 16:45:04 +0000
committerJohn Gilmore <gnu@cygnus>1991-11-22 16:45:04 +0000
commit8c4a1ace3d0ad925f513b3c03530cfeaa466fab1 (patch)
treeeafa82608abebde01c5091473aea615b56be2988 /bfd/aoutx.h
parent8013e17047ee5006dc9890579772c8d5eab186bf (diff)
downloadgdb-8c4a1ace3d0ad925f513b3c03530cfeaa466fab1.zip
gdb-8c4a1ace3d0ad925f513b3c03530cfeaa466fab1.tar.gz
gdb-8c4a1ace3d0ad925f513b3c03530cfeaa466fab1.tar.bz2
ALIGN->BFD_ALIGN
Diffstat (limited to 'bfd/aoutx.h')
-rw-r--r--bfd/aoutx.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/bfd/aoutx.h b/bfd/aoutx.h
index 89b989a..070dddc 100644
--- a/bfd/aoutx.h
+++ b/bfd/aoutx.h
@@ -619,7 +619,8 @@ boolean
if (abfd->flags & (D_PAGED|WP_TEXT))
{
bfd_size_type text_pad =
- ALIGN(text_size, adata(abfd)->segment_size) - text_size;
+ BFD_ALIGN(text_size, adata(abfd)->segment_size)
+ - text_size;
text_end += text_pad;
obj_textsec(abfd)->size += text_pad;
}