aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorCohenArthur <cohenarthur.dev@gmail.com>2025-01-10 15:26:39 +0100
committerCohenArthur <arthur.cohen@embecosm.com>2025-01-10 14:54:18 +0000
commit5db9ab5426ab234ed9cda01ceebc444c90631f6a (patch)
treed83838f4691462697612b38693b39c2011c8d15f /gcc
parentaa8d6981fd6f564ca2c29ea758e3fb1d7a69034a (diff)
downloadgcc-5db9ab5426ab234ed9cda01ceebc444c90631f6a.zip
gcc-5db9ab5426ab234ed9cda01ceebc444c90631f6a.tar.gz
gcc-5db9ab5426ab234ed9cda01ceebc444c90631f6a.tar.bz2
Revert "gcc/rust/ChangeLog:"
This reverts commit 600fd806b8821ea24103ea0f31d666077245c6b7.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/rust/ast/rust-collect-lang-items.cc7
-rw-r--r--gcc/rust/util/rust-attributes.cc8
-rw-r--r--gcc/rust/util/rust-attributes.h2
3 files changed, 6 insertions, 11 deletions
diff --git a/gcc/rust/ast/rust-collect-lang-items.cc b/gcc/rust/ast/rust-collect-lang-items.cc
index ec6919d..50d134a 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<AST::AttrInputLiteral &> (attr.get_attr_input ());
diff --git a/gcc/rust/util/rust-attributes.cc b/gcc/rust/util/rust-attributes.cc
index 1a66be2..45ebf8c 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 c0d1bed..c341b3e 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