diff options
author | Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com> | 2023-11-08 10:57:48 +0100 |
---|---|---|
committer | P-E-P <32375388+P-E-P@users.noreply.github.com> | 2023-11-14 18:27:16 +0000 |
commit | fdb87a41adbf0072a08182a0da48c33d491abf3c (patch) | |
tree | b0f99a8dd52aaef3aad2490706e7911ec42a305d | |
parent | 47662833deb0864870d3cc5868506484eb2f9c1e (diff) | |
download | gcc-fdb87a41adbf0072a08182a0da48c33d491abf3c.zip gcc-fdb87a41adbf0072a08182a0da48c33d491abf3c.tar.gz gcc-fdb87a41adbf0072a08182a0da48c33d491abf3c.tar.bz2 |
Replace local keyword set with the utils
We don't require that local set anymore.
gcc/rust/ChangeLog:
* checks/errors/rust-ast-validation.cc (RS_TOKEN): Remove locale set.
(RS_TOKEN_KEYWORD): Likewise.
(ASTValidation::visit): Change keyword set call to the one from utils.
Signed-off-by: Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>
-rw-r--r-- | gcc/rust/checks/errors/rust-ast-validation.cc | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/gcc/rust/checks/errors/rust-ast-validation.cc b/gcc/rust/checks/errors/rust-ast-validation.cc index d27d3e8..3af5655 100644 --- a/gcc/rust/checks/errors/rust-ast-validation.cc +++ b/gcc/rust/checks/errors/rust-ast-validation.cc @@ -18,25 +18,17 @@ #include "rust-ast-validation.h" #include "rust-diagnostics.h" +#include "rust-keyword-values.h" namespace Rust { -namespace { -// TODO: make constexpr when update to c++20 -const std::map<std::string, TokenId> keywords = { -#define RS_TOKEN(x, y) -#define RS_TOKEN_KEYWORD(tok, key) {key, tok}, - RS_TOKEN_LIST -#undef RS_TOKEN_KEYWORD -#undef RS_TOKEN -}; -} // namespace - void ASTValidation::visit (AST::Lifetime &lifetime) { auto name = lifetime.get_lifetime_name (); auto valid = std::set<std::string>{"static", "_"}; + auto &keywords = Values::Keywords::keywords; + if (valid.find (name) == valid.end () && keywords.find (name) != keywords.end ()) rust_error_at (lifetime.get_locus (), "lifetimes cannot use keyword names"); |