aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorK. Richard Pixley <rich@cygnus>1993-09-01 19:20:54 +0000
committerK. Richard Pixley <rich@cygnus>1993-09-01 19:20:54 +0000
commit56607c4e134f5477966395ad03e4f18905c6a1f7 (patch)
tree1dfa88424107ae8379c63f3fc11adeeff61ca5f7
parent5a0a463feba0426b24619bcb4b4ccf094ef80f1c (diff)
downloadgdb-56607c4e134f5477966395ad03e4f18905c6a1f7.zip
gdb-56607c4e134f5477966395ad03e4f18905c6a1f7.tar.gz
gdb-56607c4e134f5477966395ad03e4f18905c6a1f7.tar.bz2
add an alias for data section type
-rw-r--r--gas/ChangeLog13
-rw-r--r--gas/config/obj-coffbfd.c2
2 files changed, 15 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index f95522e..8cf2597 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,16 @@
+Wed Sep 1 12:19:07 1993 K. Richard Pixley (rich@sendai.cygnus.com)
+
+ * config/obj-coffbfd.c (obj_coff_section): add 'd' as an alias for
+ section type of data. 'd' seems to be used for m88k.
+
+Wed Aug 25 22:33:22 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
+
+ * config/tc-mips.c (mips_align, s_stringer, s_cons, s_float_cons,
+ s_mips_space): Set insn_label to NULL to avoid changing it at the
+ next .align statement.
+ (append_insn): Don't swap jal with instruction that sets the
+ register that jal sets.
+
Wed Aug 25 16:15:57 1993 K. Richard Pixley (rich@sendai.cygnus.com)
* configure.in: recognize m88110.
diff --git a/gas/config/obj-coffbfd.c b/gas/config/obj-coffbfd.c
index 9a0a460..301806a 100644
--- a/gas/config/obj-coffbfd.c
+++ b/gas/config/obj-coffbfd.c
@@ -1961,6 +1961,7 @@ DEFUN (change_to_section, (name, len, exp),
* 'n' for noload
* 'o' for over
* 'w' for data
+ * 'd' (apparently m88k for data)
* 'x' for text
* But if the argument is not a quoted string, treat it as a
* subsegment number.
@@ -2015,6 +2016,7 @@ DEFUN_VOID (obj_coff_section)
case 'l': flags |= STYP_LIB; break;
case 'n': flags |= STYP_NOLOAD; break;
case 'o': flags |= STYP_OVER; break;
+ case 'd':
case 'w': flags |= STYP_DATA; break;
case 'x': flags |= STYP_TEXT; break;
default: