* config/tc-hppa.c (md_pseudo_table): Default alignment is 8 for

.align and .ALIGN directives.
This commit is contained in:
Jeff Law
1993-10-29 01:01:35 +00:00
parent 617b4ae8c7
commit d33ace2e25
2 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,8 @@
Thu Oct 28 12:36:13 1993 Jeffrey A. Law (law@snake.cs.utah.edu) Thu Oct 28 12:36:13 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
* config/tc-hppa.c (md_pseudo_table): Default alignment is 8 for
.align and .ALIGN directives.
* config/tc-hppa.c (pa_space): Do not report an error for a .space * config/tc-hppa.c (pa_space): Do not report an error for a .space
directive which does not define a "well-known" space and does directive which does not define a "well-known" space and does
not include a space number as an argument. not include a space number as an argument.

View File

@ -641,8 +641,8 @@ const pseudo_typeS md_pseudo_table[] =
{ {
/* align pseudo-ops on the PA specify the actual alignment requested, /* align pseudo-ops on the PA specify the actual alignment requested,
not the log2 of the requested alignment. */ not the log2 of the requested alignment. */
{"align", s_align_bytes, 0}, {"align", s_align_bytes, 8},
{"ALIGN", s_align_bytes, 0}, {"ALIGN", s_align_bytes, 8},
{"block", pa_block, 1}, {"block", pa_block, 1},
{"BLOCK", pa_block, 1}, {"BLOCK", pa_block, 1},
{"blockz", pa_block, 0}, {"blockz", pa_block, 0},