This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch devel/rust/master in repository gcc.
from 205096066a5 Merge #1417 new 0bf54ff4682 util: Add StackedContext class new 2160d34c5ff hir: Add mappings to ArrayElems new 1d86619909e const: Add basic const context checking new 69430668781 unsafe: Take references on mappings and name resolver inste [...] new add0846629c Merge #1419
The 5 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gcc/rust/Make-lang.in | 1 + gcc/rust/checks/errors/rust-const-checker.cc | 803 +++++++++++++++++++++ ...{rust-unsafe-checker.h => rust-const-checker.h} | 43 +- gcc/rust/checks/errors/rust-unsafe-checker.h | 4 +- gcc/rust/hir/rust-ast-lower-expr.h | 18 +- gcc/rust/hir/tree/rust-hir-expr.h | 20 +- gcc/rust/rust-session-manager.cc | 5 +- gcc/rust/util/rust-stacked-contexts.h | 86 +++ gcc/testsuite/rust/compile/const1.rs | 6 + gcc/testsuite/rust/compile/const2.rs | 7 + gcc/testsuite/rust/compile/const3.rs | 7 + 11 files changed, 958 insertions(+), 42 deletions(-) create mode 100644 gcc/rust/checks/errors/rust-const-checker.cc copy gcc/rust/checks/errors/{rust-unsafe-checker.h => rust-const-checker.h} (90%) create mode 100644 gcc/rust/util/rust-stacked-contexts.h create mode 100644 gcc/testsuite/rust/compile/const1.rs create mode 100644 gcc/testsuite/rust/compile/const2.rs create mode 100644 gcc/testsuite/rust/compile/const3.rs