diff options
author | Catherine Moore <clm@redhat.com> | 1998-06-08 14:36:19 +0000 |
---|---|---|
committer | Catherine Moore <clm@redhat.com> | 1998-06-08 14:36:19 +0000 |
commit | 3f59a7636604f3e22f3ed901fbddf0d79e4c9214 (patch) | |
tree | 9e974a2e7402a108ddbd5e49e380413bc61dcda0 /gas/config | |
parent | 0203fbf27840b0297475c12ccff7c4f45e5528e5 (diff) | |
download | gdb-3f59a7636604f3e22f3ed901fbddf0d79e4c9214.zip gdb-3f59a7636604f3e22f3ed901fbddf0d79e4c9214.tar.gz gdb-3f59a7636604f3e22f3ed901fbddf0d79e4c9214.tar.bz2 |
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.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-v850.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gas/config/tc-v850.c b/gas/config/tc-v850.c index 4f42884..b8cb81e 100644 --- a/gas/config/tc-v850.c +++ b/gas/config/tc-v850.c @@ -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 */ + } |