From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1643) id 2D6E93858D28; Mon, 17 Oct 2022 12:07:32 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 2D6E93858D28 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1666008452; bh=mkI8u6KPqVVwrh3/CPrNn0Z+riIzjSuclZ1O941jewU=; h=From:To:Subject:Date:From; b=Y88CqlqmgYlYQta2Lkq0ucWYoA7H8OLOVgtbdn+lZgG3adL5TlTuogFolOV4lZtbV WVPAVfRB7OLldt0G7IRAS4UuVHYI8Ab5WsHlpUUWD49JBT+eHsYJmoPJOtIxM9EYqq GVvbh5Kn627xaw3pfdPXjWxfk6jfk3KCwEOjUeR8= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Thomas Schwinge To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-3329] Tag 'gcc/gimple-expr.cc:mark_addressable_2' as 'static' X-Act-Checkin: gcc X-Git-Author: Thomas Schwinge X-Git-Refname: refs/heads/master X-Git-Oldrev: b61796663ba1fe8fb83203829398f3f89ec212b7 X-Git-Newrev: aeb1e2bff95ae17717026905ef404699d91f5c61 Message-Id: <20221017120732.2D6E93858D28@sourceware.org> Date: Mon, 17 Oct 2022 12:07:32 +0000 (GMT) List-Id: https://gcc.gnu.org/g:aeb1e2bff95ae17717026905ef404699d91f5c61 commit r13-3329-gaeb1e2bff95ae17717026905ef404699d91f5c61 Author: Thomas Schwinge Date: Wed Dec 15 22:00:53 2021 +0100 Tag 'gcc/gimple-expr.cc:mark_addressable_2' as 'static' Added in 2015 r229696 (commit 1b223a9f3489296c625bdb7cc764196d04fd9231) "defer mark_addressable calls during expand till the end of expand", it has never been used 'extern'ally. gcc/ * gimple-expr.cc (mark_addressable_2): Tag as 'static'. Diff: --- gcc/gimple-expr.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/gimple-expr.cc b/gcc/gimple-expr.cc index c9c7285efbc..4fbce9369c7 100644 --- a/gcc/gimple-expr.cc +++ b/gcc/gimple-expr.cc @@ -912,7 +912,7 @@ mark_addressable_1 (tree x) /* Adaptor for mark_addressable_1 for use in hash_set traversal. */ -bool +static bool mark_addressable_2 (tree const &x, void * ATTRIBUTE_UNUSED = NULL) { mark_addressable_1 (x);