aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChen Gang <gang.chen.5i5j@gmail.com>2015-01-22 16:22:31 +0000
committerJeff Law <law@gcc.gnu.org>2015-01-22 09:22:31 -0700
commit324820f16203737eb2fd6e0eb742e461426b2b1a (patch)
tree63a696016c8f0ea48c5f147c90a209e951b513fd
parentf4b05e74683b0fbb323606875010006ee0dc557e (diff)
downloadgcc-324820f16203737eb2fd6e0eb742e461426b2b1a.zip
gcc-324820f16203737eb2fd6e0eb742e461426b2b1a.tar.gz
gcc-324820f16203737eb2fd6e0eb742e461426b2b1a.tar.bz2
unwind-dw2-fde.h (last_fde): Use "(const fde *)" instead of "(char *)" to avoid qualifier warning by 'xgcc'...
* unwind-dw2-fde.h (last_fde): Use "(const fde *)" instead of "(char *)" to avoid qualifier warning by 'xgcc' compiling. From-SVN: r220004
-rw-r--r--libgcc/ChangeLog5
-rw-r--r--libgcc/unwind-dw2-fde.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog
index e7837d7..10e2849 100644
--- a/libgcc/ChangeLog
+++ b/libgcc/ChangeLog
@@ -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):
diff --git a/libgcc/unwind-dw2-fde.h b/libgcc/unwind-dw2-fde.h
index da26ad6..9d01f57 100644
--- a/libgcc/unwind-dw2-fde.h
+++ b/libgcc/unwind-dw2-fde.h
@@ -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