aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1997-11-22 20:54:16 +0000
committerIan Lance Taylor <ian@airs.com>1997-11-22 20:54:16 +0000
commit6dbf32687d17c8fd623a084e77161121488aa0df (patch)
tree5235a61cf286ec5a5e1776943ec273869d74dd80 /gas
parentc699ff04031710cf3c568e1c009a44c083f6c253 (diff)
downloadgdb-6dbf32687d17c8fd623a084e77161121488aa0df.zip
gdb-6dbf32687d17c8fd623a084e77161121488aa0df.tar.gz
gdb-6dbf32687d17c8fd623a084e77161121488aa0df.tar.bz2
Sat Nov 22 15:50:09 1997 Klaus Kaempf <kkaempf@progis.de>
* config/tc-alpha.c (s_alpha_section): Remove ".lcomm" handling.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog2
-rw-r--r--gas/config/tc-alpha.c5
2 files changed, 4 insertions, 3 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 8c29815..884ec2a 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,5 +1,7 @@
Sat Nov 22 15:50:09 1997 Klaus Kaempf <kkaempf@progis.de>
+ * config/tc-alpha.c (s_alpha_section): Remove ".lcomm" handling.
+
* config/tc-alpha.c (alpha_basereg_clobbered): Remove variable and
all corresponding code.
diff --git a/gas/config/tc-alpha.c b/gas/config/tc-alpha.c
index 64617e9..cf9c3b8 100644
--- a/gas/config/tc-alpha.c
+++ b/gas/config/tc-alpha.c
@@ -3467,9 +3467,9 @@ s_alpha_section (secid)
int secid;
{
int temp;
-#define EVAX_SECTION_COUNT 6
+#define EVAX_SECTION_COUNT 5
static char *section_name[EVAX_SECTION_COUNT+1] =
- { "NULL", ".rdata", ".comm", ".link", ".ctors", ".dtors", ".lcomm" };
+ { "NULL", ".rdata", ".comm", ".link", ".ctors", ".dtors" };
if ((secid <= 0) || (secid > EVAX_SECTION_COUNT))
{
@@ -4316,7 +4316,6 @@ const pseudo_typeS md_pseudo_table[] =
{ "link", s_alpha_section, 3},
{ "ctors", s_alpha_section, 4},
{ "dtors", s_alpha_section, 5},
- { "lcomm", s_alpha_section, 6},
#endif
{"gprel32", s_alpha_gprel32, 0},
{"t_floating", s_alpha_float_cons, 'd'},