diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2021-12-15 22:00:53 +0100 |
---|---|---|
committer | Thomas Schwinge <thomas@codesourcery.com> | 2022-10-17 14:05:23 +0200 |
commit | aeb1e2bff95ae17717026905ef404699d91f5c61 (patch) | |
tree | d7d0f68132064d27c42c2e5b1c62bf4cee5ae0bf /gcc | |
parent | b61796663ba1fe8fb83203829398f3f89ec212b7 (diff) | |
download | gcc-aeb1e2bff95ae17717026905ef404699d91f5c61.zip gcc-aeb1e2bff95ae17717026905ef404699d91f5c61.tar.gz gcc-aeb1e2bff95ae17717026905ef404699d91f5c61.tar.bz2 |
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'.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/gimple-expr.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gimple-expr.cc b/gcc/gimple-expr.cc index c9c7285..4fbce93 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); |