projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e51437f
)
* read.c (do_align): Don't define label just_record_alignment
author
Ian Lance Taylor
<ian@airs.com>
Thu, 10 Feb 1994 22:32:21 +0000
(22:32 +0000)
committer
Ian Lance Taylor
<ian@airs.com>
Thu, 10 Feb 1994 22:32:21 +0000
(22:32 +0000)
unless it might be used.
gas/read.c
patch
|
blob
|
history
diff --git
a/gas/read.c
b/gas/read.c
index 68f14fb0720d1bb7c47d07dec61064fb8dc6595c..8b294fb0e8dc7a756c5ed28c1334d065cbe9238b 100644
(file)
--- a/
gas/read.c
+++ b/
gas/read.c
@@
-254,6
+254,7
@@
static const pseudo_typeS potable[] =
/* val */
{"xstabs", s_xstab, 's'},
{"word", cons, 2},
+ {"zero", s_space, 0},
{NULL} /* end sentinel */
};
@@
-738,7
+739,10
@@
do_align (n, fill)
if (n && !need_pass_2)
frag_align (n, *fill);
+#ifdef md_do_align
just_record_alignment:
+#endif
+
record_alignment (now_seg, n);
}