| Age | Commit message (Collapse) | Author | Lines |
|
|
|
|
|
bumping from v1.6.0 -> v1.7.0 since we added support for let-chains
|
|
|
|
|
|
sync subtree
|
|
|
|
|
|
|
|
|
|
Add test for rust-lang#114912
Closes #114912
|
|
Rollup of 4 pull requests
Successful merges:
- #116985 (Use gdb.ValuePrinter tag class)
- #116989 (Skip test if Unix sockets are unsupported)
- #117034 (Don't crash on empty match in the `nonexhaustive_omitted_patterns` lint)
- #117037 (rustdoc book doc example error)
r? `@ghost`
`@rustbot` modify labels: rollup
|
|
r=notriddle
rustdoc book doc example error
closes #117036
This is the minimal change required to make the second what-to-include.md example valid.
Another more modern solution could be considered:
```
/// Example
/// ```rust
/// let fortytwo = "42".parse::<u32>()?;
/// println!("{} + 10 = {}", fortytwo, fortytwo+10);
/// # Ok::<(), <u32 as std::str::FromStr>::Err>(())
/// ```
```
|
|
Don't crash on empty match in the `nonexhaustive_omitted_patterns` lint
Oops
Fixes https://github.com/rust-lang/rust/issues/117033
|
|
Skip test if Unix sockets are unsupported
Fixes https://github.com/rust-lang/rust/pull/116683#issuecomment-1772314187
The test will be skipped if `AF_UNIX` is not supported. In that case [`WSASocketW` returns `WSAEAFNOSUPPORT`](https://learn.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-wsasocketw#return-value).
It will never skip the test when run in CI but maybe this is me being too defensive since the error code is narrowly scoped to just the af family parameter being unsupported?
Also fixed a minor typo.
r? `@Mark-Simulacrum`
|
|
Use gdb.ValuePrinter tag class
GDB 14 has a "gdb.ValuePrinter" tag class that was introduced to let GDB evolve the pretty-printer API. Users of this tag are required to hide any local attributes or methods. This patch makes this change to the Rust pretty-printers. At present this is just a cleanup, providing the basis for any future changes.
|
|
ci: add a runner for vanilla LLVM 17
For CI cost, this can be seen as replacing the llvm-14 runner we dropped in #114148.
Also, I've set `IS_NOT_LATEST_LLVM` in the llvm-16 runner, since that's not the latest anymore.
|
|
Update hashbrown to 0.14.2
Fixes #116880
|
|
Fix x86_64-gnu-llvm-15 CI tests
The CI script was broken - if there was a test failure in the first command chain (inside the `if`), CI would not report the failure.
It happened because there were two command chains separated by `&&` in the script, and since `set -e` doesn't exit for chained commands, if the first chain has failed, the script would happily continue forward, ignoring any test failures.
This could be fixed e.g. by adding some `|| exit 1` to the first chain, but I suppose that the `&&` chaining is unnecessary here anyway.
Reported [on Zulip](https://rust-lang.zulipchat.com/#narrow/stream/242791-t-infra/topic/test.20failure.20didn't.20stop.20CI).
Fixes: https://github.com/rust-lang/rust/issues/116867
|
|
Fixes the second example in the Examples section of what-to-include.md by marking main as a function.
|
|
Sync rustc_codegen_cranelift
The main highlights this time is new support for riscv64 linux enabled by a cranelift update. I have also updated some of the crates built as part of cg_clif's test suite which enabled removing several patches for them. And finally I have fixed a couple of tests in rustc's test suite with cg_clif.
r? `@ghost`
`@rustbot` label +A-codegen +A-cranelift +T-compiler +subtree-sync
|
|
|
|
Rollup of 7 pull requests
Successful merges:
- #116312 (Initiate the inner usage of `cfg_match` (Compiler))
- #116928 (fix bootstrap paths in triagebot.toml)
- #116955 (Updated README with expandable table of content.)
- #116981 (update the registers of csky target)
- #116992 (Mention the syntax for `use` on `mod foo;` if `foo` doesn't exist)
- #117026 (Fix broken link to Ayu theme in the rustdoc book)
- #117028 (Remove unnecessary `all` in Box)
r? `@ghost`
`@rustbot` modify labels: rollup
|
|
sync_cg_clif-2023-10-21
|
|
Remove unnecessary `all` in Box
|
|
Fix broken link to Ayu theme in the rustdoc book
Fixes #116977
|
|
Mention the syntax for `use` on `mod foo;` if `foo` doesn't exist
Newcomers might get confused that `mod` is the only way of defining scopes, and that it can be used as if it were `use`.
Fix #69492.
|
|
update the registers of csky target
|
|
Updated README with expandable table of content.
Make it easier to navigate in the rather large README file.
|
|
fix bootstrap paths in triagebot.toml
ref #https://github.com/rust-lang/rust/pull/116881#issuecomment-1769730250
|
|
Initiate the inner usage of `cfg_match` (Compiler)
cc #115585
Dogfood to test the implementation and remove dependencies.
|
|
This allows removing the CFG_VIRTUAL_RUST_SOURCE_BASE_DIR hack and
re-enabling a fair amount of tests.
|
|
Use GitHub Actions M1 builder for aarch64-apple-darwin
r? `@ghost`
|
|
Add riscv64 linux support
|
|
|
|
|
|
|
|
coverage: Emit mappings for unused functions without generating stubs
For a while I've been annoyed by the fact that generating coverage maps for unused functions involves generating a stub function at the LLVM level.
As I suspected, generating that stub function isn't actually necessary, as long as we specifically tell LLVM about the symbol names of all the functions that have coverage mappings but weren't codegenned (due to being unused).
---
There is some helper code that gets moved around in the follow-up patches, so look at the first patch to see the most important functional changes.
---
`@rustbot` label +A-code-coverage
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Newcomers might get confused that `mod` is the only way of defining
scopes, and that it can be used as if it were `use`.
Fix #69492.
|
|
|
|
Clippy subtree update
r? `@Manishearth`
|
|
Rollup of 3 pull requests
Successful merges:
- #106601 (Suggest `;` after bare `match` expression E0308)
- #116975 (Move `invalid-llvm-passes` test to `invalid-compile-flags` folder)
- #117019 (fix spans for removing `.await` on `for` expressions)
r? `@ghost`
`@rustbot` modify labels: rollup
|
|
|
|
|