Mon Jun 8 09:45:00 1998 Catherine Moore <clm@cygnus.com>
authorCatherine Moore <clm@redhat.com>
Mon, 8 Jun 1998 14:36:19 +0000 (14:36 +0000)
committerCatherine Moore <clm@redhat.com>
Mon, 8 Jun 1998 14:36:19 +0000 (14:36 +0000)
        * config/tc-v850.c (md_begin):  Restore creation of
        .call_table_text and .call_table_data sections.

gas/ChangeLog
gas/config/tc-v850.c

index a024aca3590e6418c2edb3a290f26fde1f6de406..7ac200ada459c085532c2453a4d454ee0c9e6baf 100644 (file)
@@ -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
index 4f42884ad7039a1b71eed72439bfa6bc27f54fe0..b8cb81e9c006e8d12ed7df4bebdbb82f9d7d37cb 100644 (file)
@@ -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 */
+
 }