diff options
author | Doug Evans <dje@google.com> | 1998-03-17 22:19:12 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 1998-03-17 22:19:12 +0000 |
commit | 8903601144cb78b55c89b982e3b76e1d2c27acfc (patch) | |
tree | ca052dae6e6664c297ede5e5faf4ed0a1dac4776 /gas/config/tc-dvp.c | |
parent | 3b4389e23ee4543442e84482be8409f5be80025d (diff) | |
download | gdb-8903601144cb78b55c89b982e3b76e1d2c27acfc.zip gdb-8903601144cb78b55c89b982e3b76e1d2c27acfc.tar.gz gdb-8903601144cb78b55c89b982e3b76e1d2c27acfc.tar.bz2 |
* config/tc-dvp.c (s_enddmadata): Always fill dma data out to 16
byte boundary.
Diffstat (limited to 'gas/config/tc-dvp.c')
-rw-r--r-- | gas/config/tc-dvp.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gas/config/tc-dvp.c b/gas/config/tc-dvp.c index c10ec56..d655ed8 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 _$<name>. */ 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 |