From a62e59897771e2f04fad908fc891714b9bd75d7b Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Mon, 2 Nov 2015 13:46:13 +0000 Subject: Fix the RX assembler's section alignment parameter to use multiples of N rather than powers of N * config/tc-rx.c (parse_rx_section): Align parameter provides a multiple of n argument, not a power of n argument. --- gas/config/tc-rx.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gas/config/tc-rx.c') diff --git a/gas/config/tc-rx.c b/gas/config/tc-rx.c index 4345d58..8e99fa3 100644 --- a/gas/config/tc-rx.c +++ b/gas/config/tc-rx.c @@ -400,7 +400,7 @@ parse_rx_section (char * name) asection * sec; int type; int attr = SHF_ALLOC | SHF_EXECINSTR; - int align = 2; + int align = 1; char end_char; do @@ -428,9 +428,9 @@ parse_rx_section (char * name) p++; switch (*p) { - case '2': align = 2; break; - case '4': align = 4; break; - case '8': align = 8; break; + case '2': align = 1; break; + case '4': align = 2; break; + case '8': align = 3; break; default: as_bad (_("unrecognised alignment value in .SECTION directive: %s"), p); ignore_rest_of_line (); -- cgit v1.1