diff options
author | Richard Henderson <rth@redhat.com> | 2001-05-31 00:00:30 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 2001-05-31 00:00:30 +0000 |
commit | 371b7465e40c2715bf7496d2f7950e987f62443e (patch) | |
tree | e3c375ad3e20e68a705c3a90357d3f1e1e9d5abc /gas/read.c | |
parent | c4365b191568c9bcc036325b62cbad9044db92e1 (diff) | |
download | binutils-371b7465e40c2715bf7496d2f7950e987f62443e.zip binutils-371b7465e40c2715bf7496d2f7950e987f62443e.tar.gz binutils-371b7465e40c2715bf7496d2f7950e987f62443e.tar.bz2 |
* read.c (emit_leb128_expr): Call md_cons_align.
Diffstat (limited to 'gas/read.c')
-rw-r--r-- | gas/read.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -4419,6 +4419,11 @@ emit_leb128_expr (exp, sign) if (check_eh_frame (exp, &nbytes)) abort (); + /* Let the backend know that subsequent data may be byte aligned. */ +#ifdef md_cons_align + md_cons_align (1); +#endif + if (op == O_constant) { /* If we've got a constant, emit the thing directly right now. */ |