Skip to content

Rollup of 7 pull requests #123708

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 24 commits into from
Apr 10, 2024
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
65df93b
move exit-code to rmake
5225225 Mar 25, 2024
bbd82ff
Store all args in the unsupported Command implementation
bjorn3 Apr 8, 2024
f19c48e
Set target-abi module flag for RISC-V targets
kxxt Jan 28, 2024
adec1a2
Convert tests/run-make/cross-lang-lto-riscv-abi to rmake
kxxt Apr 9, 2024
33db209
Pass value and valueLen to create a StringRef
kxxt Apr 9, 2024
688e531
Split out a complex if condition into a named function
oli-obk Apr 9, 2024
626fd4b
prefer `expect` over `let else bug!`
oli-obk Apr 9, 2024
f014e91
Shrink a loop to its looping part and move out the part that runs aft…
oli-obk Apr 9, 2024
c7e77be
driver: unconditionally show update nightly hint
jieyouxu Apr 8, 2024
b4a395b
Fix dead code warning
bjorn3 Apr 9, 2024
09dab38
tests: bless ui and rustdoc-ui tests for ICE messages
jieyouxu Apr 9, 2024
a439eb2
Don't use bytepos offsets when computing semicolon span for removal
compiler-errors Apr 7, 2024
3253c02
Add a helper for extending a span to include any trailing whitespace
compiler-errors Apr 7, 2024
de79a6c
run-make: make arg take AsRef<OsStr> instead of str
5225225 Apr 9, 2024
bf497b8
Add a FIXME
oli-obk Apr 9, 2024
e14e795
Iterate over parent captures first, as there is a 1:N mapping of pare…
oli-obk Apr 9, 2024
cbf1501
remove does-nothing.rs
Oneirical Apr 6, 2024
a79b243
Rollup merge of #121884 - 5225225:rmake-exit-code, r=jieyouxu
matthiaskrgr Apr 10, 2024
7dd24d8
Rollup merge of #122200 - jieyouxu:unconditional-nightly-update-hint,…
matthiaskrgr Apr 10, 2024
c14b468
Rollup merge of #123568 - Oneirical:delete-tests, r=wesleywiser
matthiaskrgr Apr 10, 2024
4bc891a
Rollup merge of #123609 - compiler-errors:greek-question-mark, r=jiey…
matthiaskrgr Apr 10, 2024
2ddf984
Rollup merge of #123612 - kxxt:riscv-target-abi, r=jieyouxu,nikic,DianQK
matthiaskrgr Apr 10, 2024
a3f10a4
Rollup merge of #123633 - bjorn3:unsupported_command_data, r=jhpratt
matthiaskrgr Apr 10, 2024
df068db
Rollup merge of #123668 - oli-obk:by_move_body_golfing, r=compiler-er…
matthiaskrgr Apr 10, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix dead code warning
  • Loading branch information
bjorn3 committed Apr 9, 2024
commit b4a395bcce38cc92bd84306bb8c494bef4ad24e7
1 change: 1 addition & 0 deletions library/std/src/sys/pal/unsupported/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ pub enum Stdio {
MakePipe,
ParentStdout,
ParentStderr,
#[allow(dead_code)] // This variant exists only for the Debug impl
InheritFile(File),
}

Expand Down