* config/tc-hppa.c (md_pseudo_table): Default alignment is 8 for
authorJeff Law <law@redhat.com>
Fri, 29 Oct 1993 01:01:35 +0000 (01:01 +0000)
committerJeff Law <law@redhat.com>
Fri, 29 Oct 1993 01:01:35 +0000 (01:01 +0000)
.align and .ALIGN directives.

gas/ChangeLog
gas/config/tc-hppa.c

index d52d62b177c5d3b0e63fffc3961af59a7ee40360..b95cf736646849bdfbc2c6944ffff321211351e2 100644 (file)
@@ -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.
index 03bcee4d7daf331a6a9f64f09846db9584c1e28a..34230e76d81b5872ca902cc2870d9c2547bc666b 100644 (file)
@@ -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},