diff options
author | Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com> | 2023-10-16 10:29:35 +0200 |
---|---|---|
committer | Arthur Cohen <arthur.cohen@embecosm.com> | 2024-01-16 19:09:18 +0100 |
commit | 3c3e05ad03be05700a7ebbbd3652f74913272d30 (patch) | |
tree | f5b608458c0bec0cfa3d2ed6d499a6fdf26779df /gcc/rust/ast/rust-macro.h | |
parent | 1e841fd604680b07968a9142388633fb50384e16 (diff) | |
download | gcc-3c3e05ad03be05700a7ebbbd3652f74913272d30.zip gcc-3c3e05ad03be05700a7ebbbd3652f74913272d30.tar.gz gcc-3c3e05ad03be05700a7ebbbd3652f74913272d30.tar.bz2 |
gccrs: Add path to macro fragment follow restrictions
The previous follow set rules did not allow PATH fragment, changing this
allow gccrs to accept more valid rust macros.
gcc/rust/ChangeLog:
* ast/rust-macro.h: Add PATH fragment to follow set restrictions.
Signed-off-by: Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>
Diffstat (limited to 'gcc/rust/ast/rust-macro.h')
-rw-r--r-- | gcc/rust/ast/rust-macro.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/rust/ast/rust-macro.h b/gcc/rust/ast/rust-macro.h index 435ecb1..c26318b 100644 --- a/gcc/rust/ast/rust-macro.h +++ b/gcc/rust/ast/rust-macro.h @@ -149,6 +149,7 @@ public: { switch (kind) { + case PATH: case PAT: case TY: case VIS: |