diff options
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 6 | ||||
-rw-r--r-- | gas/config/tc-arm.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 272347e..1e6d8c8 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2001-05-11 Nick Clifton <nickc@cambridge.redhat.com> + + * config/tc-arm.c (arm_handle_align): When truncating an aligned + block, ensure that the low order bits of the alignment are + preserved. + 2001-05-10 Alan Modra <amodra@one.net.au> * config/obj-vms.c (obj_crawl_symbol_chain): Don't take address of diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index 59e8d71..b394faa 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -8816,7 +8816,7 @@ arm_handle_align (fragP) fix = 0; if (bytes > MAX_MEM_FOR_RS_ALIGN_CODE) - bytes = MAX_MEM_FOR_RS_ALIGN_CODE; + bytes &= MAX_MEM_FOR_RS_ALIGN_CODE; if (fragP->tc_frag_data) { |