aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-vect-loop.cc
diff options
context:
space:
mode:
authorNathaniel Shead <nathanieloshead@gmail.com>2023-11-24 16:26:43 +1100
committerNathaniel Shead <nathanieloshead@gmail.com>2024-01-07 21:04:17 +1100
commit7f24446a3cf67d1346c78b4667fba74b73a23302 (patch)
tree0b0b81f427592ab946fb6f9619bb511948563900 /gcc/tree-vect-loop.cc
parente74c37aab51d2350a3417f442c3a7d119b755378 (diff)
downloadgcc-7f24446a3cf67d1346c78b4667fba74b73a23302.zip
gcc-7f24446a3cf67d1346c78b4667fba74b73a23302.tar.gz
gcc-7f24446a3cf67d1346c78b4667fba74b73a23302.tar.bz2
c++: Follow module grammar more closely [PR110808]
This patch cleans up the parsing of module-declarations and import-declarations to more closely follow the grammar defined by the standard. For instance, currently we allow declarations like 'import A:B', even from an unrelated source file (not part of module A), which causes errors in merging declarations. However, the syntax in [module.import] doesn't even allow this form of import, so this patch prevents this from parsing at all and avoids the error that way. Additionally, we sometimes allow statements like 'import :X' or 'module :X' even when not in a named module, and this causes segfaults, so we disallow this too. PR c++/110808 gcc/cp/ChangeLog: * parser.cc (cp_parser_module_name): Rewrite to handle module-names and module-partitions independently. (cp_parser_module_partition): New function. (cp_parser_module_declaration): Parse module partitions explicitly. Don't change state if parsing module decl failed. (cp_parser_import_declaration): Handle different kinds of import-declarations locally. gcc/testsuite/ChangeLog: * g++.dg/modules/part-hdr-1_c.C: Fix syntax. * g++.dg/modules/part-mac-1_c.C: Likewise. * g++.dg/modules/mod-invalid-1.C: New test. * g++.dg/modules/part-8_a.C: New test. * g++.dg/modules/part-8_b.C: New test. * g++.dg/modules/part-8_c.C: New test. Signed-off-by: Nathaniel Shead <nathanieloshead@gmail.com>
Diffstat (limited to 'gcc/tree-vect-loop.cc')
0 files changed, 0 insertions, 0 deletions