Mon Jun 8 09:45:00 1998 Catherine Moore <clm@cygnus.com>
* config/tc-v850.c (md_begin): Restore creation of .call_table_text and .call_table_data sections.
This commit is contained in:
parent
0203fbf278
commit
3f59a76366
2 changed files with 18 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
|||
start-sanitize-v850e
|
||||
Mon Jun 8 09:45:00 1998 Catherine Moore <clm@cygnus.com>
|
||||
|
||||
* config/tc-v850.c (md_begin): Restore creation of
|
||||
.call_table_text and .call_table_data sections.
|
||||
|
||||
end-sanitize-v850e
|
||||
Sat Jun 6 00:02:41 1998 Nick Clifton <nickc@cygnus.com>
|
||||
|
||||
* config/tc-d30v.c (md_assemble): Set execution type to unknown
|
||||
|
|
|
@ -1331,6 +1331,17 @@ md_begin ()
|
|||
|
||||
bfd_set_arch_mach (stdoutput, TARGET_ARCH, machine);
|
||||
|
||||
/* start-sanitize-v850e */
|
||||
call_table_data_section = subseg_new (".call_table_data", 0);
|
||||
bfd_set_section_flags (stdoutput, call_table_data_section,
|
||||
applicable & (SEC_ALLOC | SEC_LOAD | SEC_RELOC
|
||||
| SEC_DATA | SEC_HAS_CONTENTS));
|
||||
|
||||
call_table_text_section = subseg_new (".call_table_text", 0);
|
||||
bfd_set_section_flags (stdoutput, call_table_text_section,
|
||||
applicable & (SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_CODE));
|
||||
/* end-sanitize-v850e */
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue