aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@suse.com>2024-08-07 16:32:43 +0200
committerJan Beulich <jbeulich@suse.com>2024-08-07 16:32:43 +0200
commit52e7f037dbdcc130654cccdb3dbb794564dd05ad (patch)
tree15e3a394e465ceaf40daffffd02ccc74765b3e60
parentb962d73b836728d7f35fc5ba8ddffe4d799f8815 (diff)
downloadgdb-52e7f037dbdcc130654cccdb3dbb794564dd05ad.zip
gdb-52e7f037dbdcc130654cccdb3dbb794564dd05ad.tar.gz
gdb-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.c12
-rw-r--r--gas/config/tc-score7.c12
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);