-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Master bootstrap update #137237
Master bootstrap update #137237
Conversation
(cherry picked from commit e4840ce)
Some changes occurred to the intrinsics. Make sure the CTFE / Miri interpreter cc @rust-lang/miri, @rust-lang/wg-const-eval The Miri subtree was changed cc @rust-lang/miri Some changes occurred in src/tools/compiletest cc @jieyouxu This PR modifies If appropriate, please update |
If it's not too annoying could you also cleanup the different Lines 155 to 156 in 3b022d8
Line 33 in 3b022d8
Replacing the values them with |
I can update it -- but what's the reason to leave an empty placeholder? Shouldn't we just remove them? |
We can remove them, I just think that leaving the placeholders might help people not familiar with the code base know they are in the right direction, I don't have strong opinion, either is fine. |
Some changes occurred to the intrinsics. Make sure the CTFE / Miri interpreter cc @rust-lang/miri, @rust-lang/wg-const-eval This PR modifies If appropriate, please update The Miri subtree was changed cc @rust-lang/miri Some changes occurred in src/tools/compiletest cc @jieyouxu |
@@ -3622,7 +3619,7 @@ impl Step for TestFloatParse { | |||
let bootstrap_host = builder.config.build; | |||
let compiler = builder.compiler(builder.top_stage, bootstrap_host); | |||
let path = self.path.to_str().unwrap(); | |||
let crate_name = self.path.components().last().unwrap().as_os_str().to_str().unwrap(); | |||
let crate_name = self.path.iter().next_back().unwrap().to_str().unwrap(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What happened here? Just drive-by cleanup? Clippy complaints?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Clippy complained about last()
, and then yes, the rest is a drive-by cleanup.
@bors r+ |
@bors rollup=never |
@bors p=1 |
☀️ Test successful - checks-actions |
Finished benchmarking commit (b880760): comparison URL. Overall result: ❌ regressions - no action needed@rustbot label: -perf-regression Instruction countThis is the most reliable metric that we have; it was used to determine the overall result at the top of this comment. However, even this metric can sometimes exhibit noise.
Max RSS (memory usage)Results (primary 1.2%)This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesResults (secondary 1.6%)This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 770.867s -> 772.144s (0.17%) |
https://forge.rust-lang.org/release/process.html#master-bootstrap-update-tuesday
r? @Mark-Simulacrum