unwind-dw2-fde.h (last_fde): Use "(const fde *)" instead of "(char *)" to avoid quali...
authorChen Gang <gang.chen.5i5j@gmail.com>
Thu, 22 Jan 2015 16:22:31 +0000 (16:22 +0000)
committerJeff Law <law@gcc.gnu.org>
Thu, 22 Jan 2015 16:22:31 +0000 (09:22 -0700)
  * unwind-dw2-fde.h (last_fde): Use "(const fde *)" instead of
  "(char *)" to avoid qualifier warning by 'xgcc' compiling.

From-SVN: r220004

libgcc/ChangeLog
libgcc/unwind-dw2-fde.h

index e7837d7e9a88699c09f9c0f2ace372dfe7eee88c..10e2849464829cab94033410bad533d3f4bdf901 100644 (file)
@@ -1,3 +1,8 @@
+2015-01-22  Chen Gang  <gang.chen.5i5j@gmail.com>
+
+       * unwind-dw2-fde.h (last_fde): Use "(const fde *)" instead of
+       "(char *)" to avoid qualifier warning by 'xgcc' compiling.
+
 2015-01-20  Chung-Lin Tang  <cltang@codesourcery.com>
 
        * config/nios2/linux-unwind.h (nios2_fallback_frame_state):
index da26ad6cbdcf31be33aea6db53bdc1b7a1023ce7..9d01f572a2ce99b42f05e420f10fbec605ba2116 100644 (file)
@@ -169,7 +169,7 @@ static inline int
 last_fde (struct object *obj __attribute__ ((__unused__)), const fde *f)
 {
 #ifdef DWARF2_OBJECT_END_PTR_EXTENSION
-  return (char *)f == obj->fde_end || f->length == 0;
+  return f == (const fde *) obj->fde_end || f->length == 0;
 #else
   return f->length == 0;
 #endif