projects
/
platform
/
upstream
/
binutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
62594bd
)
* config/tc-m68k.c (md_pseudo_table): fix the .align thing
author
Steve Chamberlain
<sac@cygnus>
Wed, 5 Aug 1992 19:05:43 +0000
(19:05 +0000)
committer
Steve Chamberlain
<sac@cygnus>
Wed, 5 Aug 1992 19:05:43 +0000
(19:05 +0000)
the right way; for just the 68k. Sun 3 .align is nbytes, not ptwo.
gas/config/tc-m68k.c
patch
|
blob
|
history
diff --git
a/gas/config/tc-m68k.c
b/gas/config/tc-m68k.c
index 7ccd0031e70c521418350901003e8c33d0bef26d..b53333ca18a2e2f389f49e501aa2f04766456c57 100644
(file)
--- a/
gas/config/tc-m68k.c
+++ b/
gas/config/tc-m68k.c
@@
-408,7
+408,8
@@
static int reverse_8_bits();
static int try_index();
static void install_gen_operand();
static void install_operand();
- void s_bss();
+void s_bss();
+void s_align_bytes();
static void s_data1();
static void s_data2();
static void s_even();
@@
-490,6
+491,7
@@
const pseudo_typeS md_pseudo_table[] = {
{ "even", s_even, 0 },
{ "skip", s_space, 0 },
{ "proc", s_proc, 0 },
+ { "align", s_align_bytes, 0 },
{ 0, 0, 0 }
};