From 8903601144cb78b55c89b982e3b76e1d2c27acfc Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Tue, 17 Mar 1998 22:19:12 +0000 Subject: [PATCH] * config/tc-dvp.c (s_enddmadata): Always fill dma data out to 16 byte boundary. --- gas/ChangeLog | 3 +++ gas/config/tc-dvp.c | 11 +++++------ 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index a57f05451f8..d7f3115e382 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -14,6 +14,9 @@ Tue Mar 17 10:40:54 1998 Doug Evans * config/tc-dvp.c (force_mach_label): New function. (md_begin,create_colon_label,s_dmadata): Use it. + * config/tc-dvp.c (s_enddmadata): Always fill dma data out to 16 + byte boundary. + Mon Mar 16 10:19:44 1998 Doug Evans * config/tc-dvp.c (md_pseudo_table): Make .quad 16 bytes. diff --git a/gas/config/tc-dvp.c b/gas/config/tc-dvp.c index c10ec56e220..d655ed8c2bb 100644 --- a/gas/config/tc-dvp.c +++ b/gas/config/tc-dvp.c @@ -2138,15 +2138,14 @@ s_enddmadata (ignore) /* If count provided, verify it is correct. */ /* ... */ + /* Fill the data out to a multiple of 16 bytes. */ + /* FIXME: Are the fill contents right? */ + frag_align (4, 0, 0); + /* "label" points to beginning of block. Create a name for the final label like _$. */ if (dma_data_name) - { - /* Fill the data out to a multiple of 16 bytes. */ - /* FIXME: Are the fill contents right? */ - frag_align (4, 0, 0); - create_colon_label (0, END_LABEL_PREFIX, dma_data_name); - } + create_colon_label (0, END_LABEL_PREFIX, dma_data_name); } static void -- 2.30.2