Browse Source

* config/tc-dvp.c (s_enddmadata): Always fill dma data out to 16

byte boundary.
gdb-4_18-branch
Doug Evans 29 years ago
parent
commit
8903601144
  1. 3
      gas/ChangeLog
  2. 11
      gas/config/tc-dvp.c

3
gas/ChangeLog

@ -14,6 +14,9 @@ Tue Mar 17 10:40:54 1998 Doug Evans <devans@canuck.cygnus.com>
* 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 <devans@canuck.cygnus.com>
* config/tc-dvp.c (md_pseudo_table): Make .quad 16 bytes.

11
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

Loading…
Cancel
Save