From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1643) id C09CE387086E; Tue, 21 Jun 2022 10:33:39 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C09CE387086E Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Thomas Schwinge To: gcc-cvs@gcc.gnu.org Subject: [gcc/devel/rust/master] Merge #1316 X-Act-Checkin: gcc X-Git-Author: bors[bot] <26634292+bors[bot]@users.noreply.github.com> X-Git-Refname: refs/heads/devel/rust/master X-Git-Oldrev: 848a1a28b91d105ff4f21cc9993befbcecb3e39d X-Git-Newrev: 76f7e45179de4e6e53caab104022cc0784ecd618 Message-Id: <20220621103339.C09CE387086E@sourceware.org> Date: Tue, 21 Jun 2022 10:33:39 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Jun 2022 10:33:39 -0000 https://gcc.gnu.org/g:76f7e45179de4e6e53caab104022cc0784ecd618 commit 76f7e45179de4e6e53caab104022cc0784ecd618 Merge: 848a1a28b91 594854ec08c Author: bors[bot] <26634292+bors[bot]@users.noreply.github.com> Date: Fri Jun 17 07:50:03 2022 +0000 Merge #1316 1316: Add const generic declaration to AST r=CohenArthur a=CohenArthur This uses a number of hacks and workarounds to avoid implementing the equivalent HIR node in the same PR. I'll raise issues for each of the `FIXME`s in the code. Needs one commit from #1315 to avoid unecessary conflicts. Co-authored-by: Arthur Cohen Diff: gcc/rust/ast/rust-ast-dump.cc | 4 ++ gcc/rust/ast/rust-ast-dump.h | 1 + gcc/rust/ast/rust-ast-full-decls.h | 1 + gcc/rust/ast/rust-ast-full-test.cc | 19 +++++++++ gcc/rust/ast/rust-ast-visitor.h | 1 + gcc/rust/ast/rust-ast.h | 66 +++++++++++++++++++++++++++++++ gcc/rust/expand/rust-attribute-visitor.cc | 5 +++ gcc/rust/expand/rust-attribute-visitor.h | 1 + gcc/rust/hir/rust-ast-lower-base.cc | 3 ++ gcc/rust/hir/rust-ast-lower-base.h | 1 + gcc/rust/hir/rust-ast-lower-type.h | 16 ++++++++ gcc/rust/parse/rust-parse-impl.h | 16 ++++---- gcc/rust/resolve/rust-ast-resolve-base.cc | 4 ++ gcc/rust/resolve/rust-ast-resolve-base.h | 1 + gcc/rust/resolve/rust-ast-resolve-type.h | 7 ++++ 15 files changed, 139 insertions(+), 7 deletions(-)