diff options
author | Kaz Kojima <kkojima@gcc.gnu.org> | 2015-09-17 07:45:41 +0000 |
---|---|---|
committer | Kaz Kojima <kkojima@gcc.gnu.org> | 2015-09-17 07:45:41 +0000 |
commit | 8c464611a3d61ad24af1f3461de8ed283aed3aa4 (patch) | |
tree | cfe115ab9e79f2324a34db7b12d5f9e0439c119e | |
parent | e4142529107cc6868c5514ef0af2f809790db748 (diff) | |
download | gcc-8c464611a3d61ad24af1f3461de8ed283aed3aa4.zip gcc-8c464611a3d61ad24af1f3461de8ed283aed3aa4.tar.gz gcc-8c464611a3d61ad24af1f3461de8ed283aed3aa4.tar.bz2 |
Fix build failure for SH.
* config/sh/sh.c (label_ref_list_d_pool): Adjust to object_allocator change.
From-SVN: r227845
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/sh/sh.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b4d8efa..76566ca 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2015-09-17 Kaz Kojima <kkojima@gcc.gnu.org> + + * config/sh/sh.c (label_ref_list_d_pool): Adjust to + object_allocator change. + 2015-09-17 Bin Cheng <bin.cheng@arm.com> PR tree-optimization/66388 diff --git a/gcc/config/sh/sh.c b/gcc/config/sh/sh.c index 25149a6..ec0abc5 100644 --- a/gcc/config/sh/sh.c +++ b/gcc/config/sh/sh.c @@ -4659,7 +4659,7 @@ typedef struct label_ref_list_d } *label_ref_list_t; static object_allocator<label_ref_list_d> label_ref_list_d_pool - ("label references list", 30); + ("label references list"); /* The SH cannot load a large constant into a register, constants have to come from a pc relative load. The reference of a pc relative load |