public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
From: Thomas Schwinge <tschwinge@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org
Subject: [gcc/devel/rust/master] Merge branch 'Rust-GCC:master' into master
Date: Wed,  8 Jun 2022 11:53:01 +0000 (GMT)	[thread overview]
Message-ID: <20220608115301.05DFF39960DC@sourceware.org> (raw)

https://gcc.gnu.org/g:73a0903c156f86e1e59c30c542780fe2162438d4

commit 73a0903c156f86e1e59c30c542780fe2162438d4
Merge: 9c4e3db7789 fece068309e
Author: M V V S Manoj Kumar <mvvsmanojkumar@gmail.com>
Date:   Sat Nov 20 08:01:36 2021 +0530

    Merge branch 'Rust-GCC:master' into master

Diff:

 .github/workflows/clang-format.yml                 |    1 +
 CONTRIBUTING.md                                    |   78 +-
 gcc/rust/Make-lang.in                              |    2 +
 gcc/rust/ast/rust-ast.h                            |   19 +
 gcc/rust/ast/rust-expr.h                           |   15 +-
 gcc/rust/backend/rust-compile-base.h               |   18 +-
 gcc/rust/backend/rust-compile-block.h              |   15 +-
 gcc/rust/backend/rust-compile-context.h            |  191 ++-
 gcc/rust/backend/rust-compile-expr.cc              |  393 ++++++
 gcc/rust/backend/rust-compile-expr.h               |  197 ++-
 gcc/rust/backend/rust-compile-extern.h             |   12 +-
 gcc/rust/backend/rust-compile-fnparam.h            |   16 +-
 gcc/rust/backend/rust-compile-implitem.h           |   71 +-
 gcc/rust/backend/rust-compile-intrinsic.cc         |    4 +-
 gcc/rust/backend/rust-compile-intrinsic.h          |    2 +-
 gcc/rust/backend/rust-compile-item.h               |   37 +-
 gcc/rust/backend/rust-compile-resolve-path.cc      |    8 +-
 gcc/rust/backend/rust-compile-resolve-path.h       |   21 +-
 gcc/rust/backend/rust-compile-stmt.h               |   14 +-
 gcc/rust/backend/rust-compile-struct-field-expr.h  |    4 +-
 gcc/rust/backend/rust-compile-tyty.h               |   16 +-
 gcc/rust/backend/rust-compile-var-decl.h           |    9 +-
 gcc/rust/backend/rust-compile.cc                   |  324 +----
 gcc/rust/hir/rust-ast-lower-expr.h                 |   16 +-
 gcc/rust/hir/rust-ast-lower-item.h                 |   23 -
 gcc/rust/hir/tree/rust-hir-expr.h                  |   79 +-
 gcc/rust/hir/tree/rust-hir-full-test.cc            |   67 +
 gcc/rust/hir/tree/rust-hir-visitor.h               |    1 +
 gcc/rust/lint/rust-lint-marklive-base.h            |    2 +-
 gcc/rust/lint/rust-lint-marklive.h                 |    6 +
 gcc/rust/resolve/rust-ast-resolve-item.h           |   27 +-
 gcc/rust/resolve/rust-ast-resolve-type.h           |    3 +
 gcc/rust/resolve/rust-ast-resolve.cc               |   38 +-
 gcc/rust/resolve/rust-ast-verify-assignee.h        |    7 +
 gcc/rust/rust-backend.h                            |  454 +++---
 gcc/rust/rust-diagnostics.h                        |    4 +
 gcc/rust/rust-gcc.cc                               | 1442 +++++++-------------
 gcc/rust/typecheck/rust-autoderef.h                |   41 +
 gcc/rust/typecheck/rust-hir-const-fold-base.h      |    2 +-
 gcc/rust/typecheck/rust-hir-const-fold-ctx.h       |    6 +-
 gcc/rust/typecheck/rust-hir-const-fold.cc          |   20 +-
 gcc/rust/typecheck/rust-hir-const-fold.h           |   88 +-
 gcc/rust/typecheck/rust-hir-path-probe.h           |   30 +-
 gcc/rust/typecheck/rust-hir-trait-resolve.cc       |    2 +-
 gcc/rust/typecheck/rust-hir-trait-resolve.h        |   26 +
 gcc/rust/typecheck/rust-hir-type-check-base.h      |    2 +-
 gcc/rust/typecheck/rust-hir-type-check-expr.h      |  292 +++-
 gcc/rust/typecheck/rust-hir-type-check-implitem.h  |   23 +-
 gcc/rust/typecheck/rust-hir-type-check-item.h      |    8 +-
 gcc/rust/typecheck/rust-hir-type-check-stmt.h      |    3 +-
 gcc/rust/typecheck/rust-hir-type-check-util.h      |    2 +-
 gcc/rust/typecheck/rust-hir-type-check.h           |   90 +-
 gcc/rust/typecheck/rust-substitution-mapper.cc     |   49 +
 gcc/rust/typecheck/rust-substitution-mapper.h      |    8 +-
 gcc/rust/typecheck/rust-tyctx.cc                   |   13 +-
 gcc/rust/typecheck/rust-tyty-call.h                |    9 +-
 gcc/rust/typecheck/rust-tyty.cc                    |    2 +
 gcc/rust/typecheck/rust-tyty.h                     |   16 +-
 gcc/rust/util/rust-hir-map.cc                      |    6 +-
 gcc/rust/util/rust-hir-map.h                       |  201 ++-
 gcc/rust/util/rust-mapping-common.h                |   25 +-
 gcc/testsuite/rust/compile/torture/issue-808.rs    |   22 +
 gcc/testsuite/rust/compile/torture/traits11.rs     |    1 -
 gcc/testsuite/rust/compile/torture/traits4.rs      |    2 -
 gcc/testsuite/rust/compile/torture/traits5.rs      |    2 -
 gcc/testsuite/rust/compile/torture/traits6.rs      |    1 -
 .../rust/execute/torture/operator_overload_1.rs    |   39 +
 .../rust/execute/torture/operator_overload_2.rs    |   41 +
 .../rust/execute/torture/operator_overload_3.rs    |   58 +
 .../rust/execute/torture/operator_overload_4.rs    |   35 +
 .../rust/execute/torture/operator_overload_5.rs    |   35 +
 71 files changed, 2836 insertions(+), 2000 deletions(-)


                 reply	other threads:[~2022-06-08 11:53 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220608115301.05DFF39960DC@sourceware.org \
    --to=tschwinge@gcc.gnu.org \
    --cc=gcc-cvs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).