mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-02 23:12:56 +00:00
(obj_coff_section [BEF_ASSEMBLER]): Make 'r' mean readonly data.
This commit is contained in:
parent
27c630ba7a
commit
b256d4fdd2
@ -1,3 +1,8 @@
|
||||
2003-10-04 Danny Smith <danny_r_smith_2001@yahoo.co.nz>
|
||||
|
||||
* config/obj-coff.c (obj_coff_section [BEF_ASSEMBLER]):
|
||||
Make 'r' mean readonly data.
|
||||
|
||||
2003-10-01 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
|
||||
|
||||
* config/tc-mips.c (macro_build_ldst_constoffset,load_register,macro):
|
||||
|
@ -1474,7 +1474,7 @@ obj_coff_section (ignore)
|
||||
|
||||
case 'a': break; /* For compatability with ELF. */
|
||||
case 'x': flags |= SEC_CODE | SEC_LOAD; break;
|
||||
case 'r': flags |= SEC_READONLY; break;
|
||||
case 'r': flags |= SEC_DATA | SEC_LOAD | SEC_READONLY; break;
|
||||
|
||||
case 'i': /* STYP_INFO */
|
||||
case 'l': /* STYP_LIB */
|
||||
|
Loading…
x
Reference in New Issue
Block a user