forked from Imagelibrary/binutils-gdb
add an alias for data section type
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user