diff options
author | Jan Beulich <jbeulich@suse.com> | 2024-08-07 16:32:43 +0200 |
---|---|---|
committer | Jan Beulich <jbeulich@suse.com> | 2024-08-07 16:32:43 +0200 |
commit | 52e7f037dbdcc130654cccdb3dbb794564dd05ad (patch) | |
tree | 15e3a394e465ceaf40daffffd02ccc74765b3e60 | |
parent | b962d73b836728d7f35fc5ba8ddffe4d799f8815 (diff) | |
download | binutils-52e7f037dbdcc130654cccdb3dbb794564dd05ad.zip binutils-52e7f037dbdcc130654cccdb3dbb794564dd05ad.tar.gz binutils-52e7f037dbdcc130654cccdb3dbb794564dd05ad.tar.bz2 |
score: drop TC_ALPHA code
I can't see how that could ever have come into play.
-rw-r--r-- | gas/config/tc-score.c | 12 | ||||
-rw-r--r-- | gas/config/tc-score7.c | 12 |
2 files changed, 0 insertions, 24 deletions
diff --git a/gas/config/tc-score.c b/gas/config/tc-score.c index 116c7aa..707bd6f 100644 --- a/gas/config/tc-score.c +++ b/gas/config/tc-score.c @@ -6168,18 +6168,6 @@ s3_s_score_lcomm (int bytes_p) record_alignment (bss_seg, align); } - else - { - /* Assume some objects may require alignment on some systems. */ -#if defined (TC_ALPHA) && ! defined (VMS) - if (temp > 1) - { - align = ffs (temp) - 1; - if (temp % (1 << align)) - abort (); - } -#endif - } *p = 0; symbolP = symbol_find_or_make (name); diff --git a/gas/config/tc-score7.c b/gas/config/tc-score7.c index 52cb871..e6d98df 100644 --- a/gas/config/tc-score7.c +++ b/gas/config/tc-score7.c @@ -6014,18 +6014,6 @@ s7_s_score_lcomm (int bytes_p) record_alignment (bss_seg, align); } - else - { - /* Assume some objects may require alignment on some systems. */ -#if defined (TC_ALPHA) && ! defined (VMS) - if (temp > 1) - { - align = ffs (temp) - 1; - if (temp % (1 << align)) - abort (); - } -#endif - } *p = 0; symbolP = symbol_find_or_make (name); |