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 381e0614388 Merge #1597 new 0a52177612f Add check for recursive trait cycles new 9ecbc900874 Merge #1602 new 41eb78512b3 rust: Implement TARGET_RUST_OS_INFO for *-*-freebsd* new 320d13e50fa rust: Implement TARGET_RUST_OS_INFO for *-*-netbsd* new 47ad158d218 rust: Implement TARGET_RUST_OS_INFO for *-*-openbsd* new 587d78dbfed rust: Implement TARGET_RUST_OS_INFO for *-*-solaris2*. new 1fc003cb99d rust: Implement TARGET_RUST_OS_INFO for *-*-dragonfly* new cbea188073c rust: Implement TARGET_RUST_OS_INFO for *-*-vxworks* new ff87a2fbd01 rust: Implement TARGET_RUST_OS_INFO for *-*-fuchsia*. new 89babdf7914 rust: Implement TARGET_RUST_OS_INFO for i[34567]86-*-mingw* [...] new a02750e8dd5 rust: Implement TARGET_RUST_OS_INFO for *-*-*linux*. new 3cedc655c29 Merge #1596
The 12 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/config.gcc | 24 ++++++++++++++++ gcc/config/{darwin-rust.cc => dragonfly-rust.cc} | 16 ++++------- gcc/config/{darwin-rust.cc => freebsd-rust.cc} | 16 ++++------- gcc/config/{darwin-rust.cc => fuchsia-rust.cc} | 16 ++++------- gcc/config/{darwin-rust.cc => linux-rust.cc} | 35 ++++++++++++++++-------- gcc/config/{darwin-rust.cc => netbsd-rust.cc} | 16 ++++------- gcc/config/{darwin-rust.cc => openbsd-rust.cc} | 16 ++++------- gcc/config/{darwin-rust.cc => sol2-rust.cc} | 16 ++++------- gcc/config/t-dragonfly | 4 +++ gcc/config/t-freebsd | 4 +++ gcc/config/{t-freebsd => t-fuchsia} | 4 +-- gcc/config/t-linux | 4 +++ gcc/config/t-netbsd | 4 +++ gcc/config/t-openbsd | 5 ++++ gcc/config/t-sol2 | 5 ++++ gcc/config/t-vxworks | 4 +++ gcc/config/t-winnt | 4 +++ gcc/config/{default-rust.cc => vxworks-rust.cc} | 19 ++++++++++--- gcc/config/{default-rust.cc => winnt-rust.cc} | 19 ++++++++++--- gcc/rust/typecheck/rust-hir-trait-resolve.cc | 12 +++++++- gcc/rust/typecheck/rust-hir-type-check.h | 29 ++++++++++++++++++++ gcc/testsuite/rust/compile/issue-1589.rs | 5 ++++ 22 files changed, 195 insertions(+), 82 deletions(-) copy gcc/config/{darwin-rust.cc => dragonfly-rust.cc} (67%) copy gcc/config/{darwin-rust.cc => freebsd-rust.cc} (67%) copy gcc/config/{darwin-rust.cc => fuchsia-rust.cc} (67%) copy gcc/config/{darwin-rust.cc => linux-rust.cc} (56%) copy gcc/config/{darwin-rust.cc => netbsd-rust.cc} (67%) copy gcc/config/{darwin-rust.cc => openbsd-rust.cc} (67%) copy gcc/config/{darwin-rust.cc => sol2-rust.cc} (67%) copy gcc/config/{t-freebsd => t-fuchsia} (87%) copy gcc/config/{default-rust.cc => vxworks-rust.cc} (65%) copy gcc/config/{default-rust.cc => winnt-rust.cc} (65%) create mode 100644 gcc/testsuite/rust/compile/issue-1589.rs