aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>2023-07-31 13:08:06 +0200
committerP-E-P <32375388+P-E-P@users.noreply.github.com>2023-09-05 14:05:36 +0000
commit655da655c1b02c76c7167fe461adbb4e4a3ba1b2 (patch)
treefe4b8b4af16f6215fe000bd1023384b871b70cce
parent7cfad27662370008db7fa1dd1e2635d02ca312a9 (diff)
downloadgcc-655da655c1b02c76c7167fe461adbb4e4a3ba1b2.zip
gcc-655da655c1b02c76c7167fe461adbb4e4a3ba1b2.tar.gz
gcc-655da655c1b02c76c7167fe461adbb4e4a3ba1b2.tar.bz2
Ease some constraints on derive definition
Member function is_derive was overly constrained, the attribute changes when we parse it's meta items and it no longer contains a tokenstream while staying a derive. gcc/rust/ChangeLog: * ast/rust-ast.cc (Attribute::is_derive): Remove tokenstream condition. Signed-off-by: Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>
-rw-r--r--gcc/rust/ast/rust-ast.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/gcc/rust/ast/rust-ast.cc b/gcc/rust/ast/rust-ast.cc
index 5534590..5bb2134 100644
--- a/gcc/rust/ast/rust-ast.cc
+++ b/gcc/rust/ast/rust-ast.cc
@@ -84,10 +84,7 @@ Attribute::as_string () const
bool
Attribute::is_derive () const
{
- return has_attr_input ()
- && get_attr_input ().get_attr_input_type ()
- == AST::AttrInput::TOKEN_TREE
- && get_path () == "derive";
+ return has_attr_input () && get_path () == "derive";
}
/**