-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
Enforce formatting for rustc_codegen_cranelift #92438
Conversation
Some changes occured to rustc_codegen_cranelift cc @bjorn3 |
(rust-highfive has picked a reviewer for you, use r? to override) |
No longer blocked, just needs rebase now. @rustbot author |
0a17442
to
bffe880
Compare
Rebased |
@bors r+ Seems OK to me, though note that the rustfmt used in rust-lang/rust CI is from a pinned nightly, bumped alongside the bootstrap compiler. |
📌 Commit bffe880 has been approved by |
Is there an issue filed for the breakage rustfmt causes with |
…askrgr Rollup of 7 pull requests Successful merges: - rust-lang#84083 (Clarify the guarantees that ThreadId does and doesn't make.) - rust-lang#91593 (Remove unnecessary bounds for some Hash{Map,Set} methods) - rust-lang#92297 (Reduce compile time of rustbuild) - rust-lang#92332 (Add test for where clause order) - rust-lang#92438 (Enforce formatting for rustc_codegen_cranelift) - rust-lang#92463 (Remove pronunciation guide from Vec<T>) - rust-lang#92468 (Emit an error for `--cfg=)`) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
The breakage to y.rs isn't rustfmt's fault. It starts with: #!/usr/bin/env bash
#![allow()] /*This line is ignored by bash
# This block is ignored by rustc Rustfmt puts the comment on a newline, but this causes it to be interpreted as command by bash rather than as comment. |
No description provided.