diff options
author | Jeff Law <law@redhat.com> | 1993-10-29 01:01:35 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1993-10-29 01:01:35 +0000 |
commit | d33ace2e2572f70f12a01be39407e4533460ac0c (patch) | |
tree | 9efdff21e8848837a2b5d3adb38b66362dba9e85 | |
parent | 617b4ae8c71dc459544ef9716aacf9ab3087b0cc (diff) | |
download | gdb-d33ace2e2572f70f12a01be39407e4533460ac0c.zip gdb-d33ace2e2572f70f12a01be39407e4533460ac0c.tar.gz gdb-d33ace2e2572f70f12a01be39407e4533460ac0c.tar.bz2 |
* config/tc-hppa.c (md_pseudo_table): Default alignment is 8 for
.align and .ALIGN directives.
-rw-r--r-- | gas/ChangeLog | 3 | ||||
-rw-r--r-- | gas/config/tc-hppa.c | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index d52d62b..b95cf73 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,8 @@ 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 directive which does not define a "well-known" space and does not include a space number as an argument. diff --git a/gas/config/tc-hppa.c b/gas/config/tc-hppa.c index 03bcee4..34230e7 100644 --- a/gas/config/tc-hppa.c +++ b/gas/config/tc-hppa.c @@ -641,8 +641,8 @@ const pseudo_typeS md_pseudo_table[] = { /* align pseudo-ops on the PA specify the actual alignment requested, not the log2 of the requested alignment. */ - {"align", s_align_bytes, 0}, - {"ALIGN", s_align_bytes, 0}, + {"align", s_align_bytes, 8}, + {"ALIGN", s_align_bytes, 8}, {"block", pa_block, 1}, {"BLOCK", pa_block, 1}, {"blockz", pa_block, 0}, |