diff options
author | Philip Herron <philip.herron@embecosm.com> | 2022-05-02 10:53:14 +0100 |
---|---|---|
committer | Philip Herron <philip.herron@embecosm.com> | 2022-05-02 10:53:14 +0100 |
commit | cf9d65a913640ecb4f839fbe2e7683ee00dc07f3 (patch) | |
tree | 9560ca20fc0aa6c946ec84e057b6601b20dde6e4 /gcc/rust/backend/rust-compile-base.h | |
parent | f38bf60c3ac7f039db5ff5c7c0587325097892c8 (diff) | |
download | gcc-cf9d65a913640ecb4f839fbe2e7683ee00dc07f3.zip gcc-cf9d65a913640ecb4f839fbe2e7683ee00dc07f3.tar.gz gcc-cf9d65a913640ecb4f839fbe2e7683ee00dc07f3.tar.bz2 |
Generic functions should not be TREE_PUBLIC
Generic functions cannot be public since the symbols could overlap in
linking other crates reusing the same generic. The other benifit here is
that when optimizations are turned on we can eliminate more code since the
symbol does not _need_ to be public.
Diffstat (limited to 'gcc/rust/backend/rust-compile-base.h')
-rw-r--r-- | gcc/rust/backend/rust-compile-base.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rust/backend/rust-compile-base.h b/gcc/rust/backend/rust-compile-base.h index c09c562..f12913c 100644 --- a/gcc/rust/backend/rust-compile-base.h +++ b/gcc/rust/backend/rust-compile-base.h @@ -76,7 +76,7 @@ protected: tree expression, Location locus); static void setup_fndecl (tree fndecl, bool is_main_entry_point, - HIR::Visibility &visibility, + bool is_generic_fn, HIR::Visibility &visibility, const HIR::FunctionQualifiers &qualifiers, const AST::AttrVec &attrs); |