From: Arthur Cohen Date: Mon, 29 Aug 2022 14:23:51 +0000 (+0200) Subject: gccrs: transcriber: Do not infinite loop if the current parsed node is an error X-Git-Tag: upstream/13.1.0~1702 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=252216dd0c5956dfb931031fd1f8dfa59c922160;p=platform%2Fupstream%2Fgcc.git gccrs: transcriber: Do not infinite loop if the current parsed node is an error gcc/rust/ChangeLog: * expand/rust-macro-expand.cc (parse_many): Return early from parsing loop if we encounter an error, and emit that error in the meantime. Co-authored-by: philberty --- diff --git a/gcc/rust/expand/rust-macro-expand.cc b/gcc/rust/expand/rust-macro-expand.cc index df258bd..ed1b838 100644 --- a/gcc/rust/expand/rust-macro-expand.cc +++ b/gcc/rust/expand/rust-macro-expand.cc @@ -731,6 +731,14 @@ parse_many (Parser &parser, TokenId &delimiter, break; auto node = parse_fn (); + if (node.is_error ()) + { + for (auto err : parser.get_errors ()) + err.emit_error (); + + return AST::ASTFragment::create_error (); + } + nodes.emplace_back (std::move (node)); }