diff options
author | tbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-05-17 23:07:43 +0000 |
---|---|---|
committer | tbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-05-17 23:07:43 +0000 |
commit | 16f97f36c2d368ed6618b8ac65958c0232187b55 (patch) | |
tree | 33cbcce3a67eae04e9d029c6a8e8d3a8e61a91c0 | |
parent | 25a274138bc2670de5beb9ab45aac62d5bdbf6b1 (diff) | |
download | gcc-16f97f36c2d368ed6618b8ac65958c0232187b55.tar.gz |
remove unused function
gcc/ChangeLog:
*ggc.h (ggc_alloc_cleared_simd_clone_stat): Remove function.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@210567 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/ggc.h | 7 |
2 files changed, 4 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1680aaeaf13..1b6f1bd2d40 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2014-05-17 Trevor Saunders <tsaunders@mozilla.com> + * ggc.h (ggc_alloc_cleared_simd_clone_stat): Remove function. + +2014-05-17 Trevor Saunders <tsaunders@mozilla.com> + * alias.c (record_alias_subset): Adjust. * bitmap.c (bitmap_element_allocate): Likewise. (bitmap_gc_alloc_stat): Likewise. diff --git a/gcc/ggc.h b/gcc/ggc.h index 2c567dee325..50fb1995bae 100644 --- a/gcc/ggc.h +++ b/gcc/ggc.h @@ -279,11 +279,4 @@ ggc_alloc_cleared_gimple_statement_stat (size_t s CXX_MEM_STAT_INFO) ggc_internal_cleared_alloc (s PASS_MEM_STAT); } -static inline struct simd_clone * -ggc_alloc_cleared_simd_clone_stat (size_t s CXX_MEM_STAT_INFO) -{ - return (struct simd_clone *) - ggc_internal_cleared_alloc (s PASS_MEM_STAT); -} - #endif |