From: CohenArthur Date: Fri, 10 Jan 2025 14:26:39 +0000 (+0100) Subject: gccrs: Revert "gcc/rust/ChangeLog:" X-Git-Tag: basepoints/gcc-16~941 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=29367fe699afe6a385e311b90f9c3850b19744ac;p=thirdparty%2Fgcc.git gccrs: Revert "gcc/rust/ChangeLog:" This reverts commit 600fd806b8821ea24103ea0f31d666077245c6b7. --- diff --git a/gcc/rust/ast/rust-collect-lang-items.cc b/gcc/rust/ast/rust-collect-lang-items.cc index ec6919dca14..50d134a429f 100644 --- a/gcc/rust/ast/rust-collect-lang-items.cc +++ b/gcc/rust/ast/rust-collect-lang-items.cc @@ -40,7 +40,12 @@ get_lang_item_attr (const T &maybe_lang_item) continue; } - if (Analysis::Attributes::is_lang_item (str_path, attr)) + bool is_lang_item = str_path == Values::Attributes::LANG + && attr.has_attr_input () + && attr.get_attr_input ().get_attr_input_type () + == AST::AttrInput::AttrInputType::LITERAL; + + if (is_lang_item) { auto &literal = static_cast (attr.get_attr_input ()); diff --git a/gcc/rust/util/rust-attributes.cc b/gcc/rust/util/rust-attributes.cc index 0234903ba58..9f63234112c 100644 --- a/gcc/rust/util/rust-attributes.cc +++ b/gcc/rust/util/rust-attributes.cc @@ -37,14 +37,6 @@ Attributes::is_known (const std::string &attribute_path) return !lookup.is_error (); } -bool -Attributes::is_lang_item (const std::string &attribute_path, - const AST::Attribute &attr) -{ - return ((attribute_path == Values::Attributes::LANG) && attr.has_attr_input () - && (attr.get_attr_input ().get_attr_input_type () - == AST::AttrInput::AttrInputType::LITERAL)); -} using Attrs = Values::Attributes; diff --git a/gcc/rust/util/rust-attributes.h b/gcc/rust/util/rust-attributes.h index 30f9eef213b..c928c8eb9d2 100644 --- a/gcc/rust/util/rust-attributes.h +++ b/gcc/rust/util/rust-attributes.h @@ -29,8 +29,6 @@ class Attributes { public: static bool is_known (const std::string &attribute_path); - static bool is_lang_item (const std::string &attribute_path, - const AST::Attribute &attr); }; enum CompilerPass