diff options
author | Nick Clifton <nickc@redhat.com> | 2001-08-12 08:47:02 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-08-12 08:47:02 +0000 |
commit | 4ffadb11c84984e2470d3f7eb8551fd40e5dc1f7 (patch) | |
tree | 13d3cc65b361c86484d68709814f4e9fd772c0e8 /gas/config/tc-sparc.c | |
parent | b9a8de1ea39d0e4fb34407388382f192f2304e80 (diff) | |
download | gdb-4ffadb11c84984e2470d3f7eb8551fd40e5dc1f7.zip gdb-4ffadb11c84984e2470d3f7eb8551fd40e5dc1f7.tar.gz gdb-4ffadb11c84984e2470d3f7eb8551fd40e5dc1f7.tar.bz2 |
Fix behaviour of unaligned data directives
Diffstat (limited to 'gas/config/tc-sparc.c')
-rw-r--r-- | gas/config/tc-sparc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/tc-sparc.c b/gas/config/tc-sparc.c index 2482563..a0a1d31 100644 --- a/gas/config/tc-sparc.c +++ b/gas/config/tc-sparc.c @@ -3920,6 +3920,7 @@ s_uacons (bytes) /* Tell sparc_cons_align not to align this value. */ sparc_no_align_cons = 1; cons (bytes); + sparc_no_align_cons = 0; } /* This handles the native word allocation pseudo-op .nword. @@ -4213,8 +4214,7 @@ cons_fix_new_sparc (frag, where, nbytes, exp) case 8: r = BFD_RELOC_SPARC_UA64; break; default: abort (); } - sparc_no_align_cons = 0; - } + } fix_new_exp (frag, where, (int) nbytes, exp, 0, r); } |