re PR libgcc/68468 (frv/bfin FDPIC toolchain build error)
authorWaldemar Brodkorb <wbx@openadk.org>
Wed, 16 Nov 2016 07:01:56 +0000 (07:01 +0000)
committerJakub Jelinek <jakub@gcc.gnu.org>
Wed, 16 Nov 2016 07:01:56 +0000 (08:01 +0100)
PR libgcc/68468
* unwind-dw2-fde-dip.c: Fix build on FDPIC targets.

From-SVN: r242468

libgcc/ChangeLog
libgcc/unwind-dw2-fde-dip.c

index cca3de50eb657b1f8f2ddb814ee29f0ad75d2f5e..cfa61115f6a5df5d4251f278023462dc03979952 100644 (file)
@@ -1,3 +1,8 @@
+2016-11-16  Waldemar Brodkorb  <wbx@openadk.org>
+
+       PR libgcc/68468
+       * unwind-dw2-fde-dip.c: Fix build on FDPIC targets.
+
 2016-11-15  Claudiu Zissulescu  <claziss@synopsys.com>
 
        * config/arc/lib1funcs.S (__mulsi3): Use feature defines instead
index f7a1c3fd1cf3714c5e2d51527768a35d534e7642..801bce8fa3d0510ae3fb43000444b331472c3b77 100644 (file)
@@ -124,7 +124,11 @@ static struct frame_hdr_cache_element
 {
   _Unwind_Ptr pc_low;
   _Unwind_Ptr pc_high;
+#if defined __FRV_FDPIC__ || defined __BFIN_FDPIC__
+  struct elf32_fdpic_loadaddr load_base;
+#else
   _Unwind_Ptr load_base;
+#endif
   const ElfW(Phdr) *p_eh_frame_hdr;
   const ElfW(Phdr) *p_dynamic;
   struct frame_hdr_cache_element *link;
@@ -163,7 +167,7 @@ _Unwind_IteratePhdrCallback (struct dl_phdr_info *info, size_t size, void *ptr)
   struct unw_eh_callback_data *data = (struct unw_eh_callback_data *) ptr;
   const ElfW(Phdr) *phdr, *p_eh_frame_hdr, *p_dynamic;
   long n, match;
-#ifdef __FRV_FDPIC__
+#if defined __FRV_FDPIC__ || defined __BFIN_FDPIC__
   struct elf32_fdpic_loadaddr load_base;
 #else
   _Unwind_Ptr load_base;
@@ -347,7 +351,7 @@ _Unwind_IteratePhdrCallback (struct dl_phdr_info *info, size_t size, void *ptr)
            break;
          }
     }
-# elif defined __FRV_FDPIC__ && defined __linux__
+# elif (defined __FRV_FDPIC__ || defined __BFIN_FDPIC__) && defined __linux__
   data->dbase = load_base.got_value;
 # else
 #  error What is DW_EH_PE_datarel base on this platform?