diff options
author | Bill Schmidt <wschmidt@linux.vnet.ibm.com> | 2016-01-25 14:06:28 +0000 |
---|---|---|
committer | William Schmidt <wschmidt@gcc.gnu.org> | 2016-01-25 14:06:28 +0000 |
commit | bf1a8421ecf5dd884bcc7ad9eaf1cc13da6be49f (patch) | |
tree | 9f7a6dc996964d80c722755466489698cb9a6425 | |
parent | 2947d3b29ca4008d6ed4bf53851c04972c56ede1 (diff) | |
download | gcc-bf1a8421ecf5dd884bcc7ad9eaf1cc13da6be49f.zip gcc-bf1a8421ecf5dd884bcc7ad9eaf1cc13da6be49f.tar.gz gcc-bf1a8421ecf5dd884bcc7ad9eaf1cc13da6be49f.tar.bz2 |
rs6000.c (rs6000_keep_leaf_when_profiled): Add decl with __attribute__ ((unused)) annotation.
2016-01-25 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
* config/rs6000/rs6000.c (rs6000_keep_leaf_when_profiled): Add
decl with __attribute__ ((unused)) annotation.
From-SVN: r232793
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/rs6000/rs6000.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index bd851ed..6d51578 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2016-01-25 Bill Schmidt <wschmidt@linux.vnet.ibm.com> + + * config/rs6000/rs6000.c (rs6000_keep_leaf_when_profiled): Add + decl with __attribute__ ((unused)) annotation. + 2016-01-25 Ilya Enkovich <enkovich.gnu@gmail.com> PR target/69421 diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index 4c70f67..b97dc19 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -1311,6 +1311,7 @@ static bool rs6000_secondary_reload_move (enum rs6000_reg_type, secondary_reload_info *, bool); rtl_opt_pass *make_pass_analyze_swaps (gcc::context*); +static bool rs6000_keep_leaf_when_profiled () __attribute__ ((unused)); /* Hash table stuff for keeping track of TOC entries. */ |