1999-06-26 Mumit Khan <khan@xraylith.wisc.edu>

* config/obj-coff.c (obj_coff_section): Mark writable sections as
	data.
This commit is contained in:
Ian Lance Taylor 1999-06-26 19:35:44 +00:00
parent 368d086045
commit 827c01493e
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
1999-06-26 Mumit Khan <khan@xraylith.wisc.edu>
* config/obj-coff.c (obj_coff_section): Mark writable sections as
data.
1999-06-26 David Mosberger <davidm@hpl.hp.com>
* dwarf2dbg.c (dwarf2_gen_line_info): Don't call

View file

@ -1247,7 +1247,7 @@ obj_coff_section (ignore)
case 'b': flags |= SEC_ALLOC; flags &=~ SEC_LOAD; break;
case 'n': flags &=~ SEC_LOAD; break;
case 'd':
case 'w': flags &=~ SEC_READONLY; break;
case 'w': flags |= SEC_DATA; flags &=~ SEC_READONLY; break;
case 'x': flags |= SEC_CODE; break;
case 'r': flags |= SEC_READONLY; break;