aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1994-02-10 22:32:21 +0000
committerIan Lance Taylor <ian@airs.com>1994-02-10 22:32:21 +0000
commitc02fd8dc3e21bbd323ba2ff45b7fbd462126fbae (patch)
treeb359b1d2d3bd85fe3ba6fb031fbcaf9ccd7a4fa4 /gas
parente51437f199a7b0efb29c3668c6c83859bac6c503 (diff)
downloadfsf-binutils-gdb-c02fd8dc3e21bbd323ba2ff45b7fbd462126fbae.zip
fsf-binutils-gdb-c02fd8dc3e21bbd323ba2ff45b7fbd462126fbae.tar.gz
fsf-binutils-gdb-c02fd8dc3e21bbd323ba2ff45b7fbd462126fbae.tar.bz2
* read.c (do_align): Don't define label just_record_alignment
unless it might be used.
Diffstat (limited to 'gas')
-rw-r--r--gas/read.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/gas/read.c b/gas/read.c
index 68f14fb..8b294fb 100644
--- 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);
}