From aeb1e2bff95ae17717026905ef404699d91f5c61 Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Wed, 15 Dec 2021 22:00:53 +0100 Subject: [PATCH] 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'. --- 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); -- 2.35.1