diff options
Diffstat (limited to 'gas/config/tc-m88k.c')
-rw-r--r-- | gas/config/tc-m88k.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-m88k.c b/gas/config/tc-m88k.c index 47b154d..ae55fed 100644 --- a/gas/config/tc-m88k.c +++ b/gas/config/tc-m88k.c @@ -1440,7 +1440,7 @@ m88k_do_align (n, fill, max, len) int len; int max; { - if ((fill == NULL || (*fill == 0 && len == 1)) + if (fill == NULL && strcmp (obj_segment_name (now_seg), ".init") == 0) { static const unsigned char nop_pattern[] = { 0xf4, 0x00, 0x58, 0x00 }; |