Skip to content
Merged

Rustup #11250

Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
fdb2e36
refactor(rustc_middle): Substs -> GenericArg
mdibaiee Jul 11, 2023
d6d530f
Merge commit 'd9c24d1b1ee61f276e550b967409c9f155eac4e3' into clippyup
flip1995 Jul 17, 2023
2feb9a5
Another fix for incorrect_impls
flip1995 Jul 17, 2023
d1e1dcb
Rename arg_iter to iter_instantiated
compiler-errors Jul 17, 2023
cbca8f9
On nightly, dump ICE backtraces to disk
estebank Mar 3, 2023
5a6c4d7
XSimplifiedType to SimplifiedType::X
lcnr Jul 18, 2023
a147372
clippy: `env!` invocations can't be b"" literals
davidtwco Jul 25, 2023
2b16c37
bless more
RalfJung Jul 24, 2023
3fb714d
Use a builder instead of boolean/option arguments
oli-obk Jul 25, 2023
f20a174
Make everything builtin!
compiler-errors Jul 24, 2023
2cc44cf
Auto merge of #113393 - compiler-errors:next-solver-unsize-rhs, r=lcnr
bors Jul 25, 2023
0f3a149
Rollup merge of #114014 - davidtwco:issue-114010-env-rawstr, r=cjgillot
matthiaskrgr Jul 25, 2023
61e0aac
Auto merge of #114063 - matthiaskrgr:rollup-c90czu6, r=matthiaskrgr
bors Jul 25, 2023
0404b6b
Add `sym::iter_mut` + `sym::as_mut_ptr`
blyxyas Jul 25, 2023
ed2ec81
Auto merge of #114054 - oli-obk:cleanups, r=estebank
bors Jul 26, 2023
8615595
Rollup merge of #114070 - blyxyas:iter_mut_symbol, r=oli-obk
matthiaskrgr Jul 26, 2023
6ca6be6
Unite bless environment variables under `RUSTC_BLESS`
tgross35 Jul 3, 2023
42d3370
Auto merge of #113298 - tgross35:update-bless-envs, r=oli-obk
bors Jul 27, 2023
3d60241
Merge remote-tracking branch 'upstream/master' into rustup
flip1995 Jul 28, 2023
65c5afd
Bump nightly version -> 2023-07-28
flip1995 Jul 28, 2023
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
On nightly, dump ICE backtraces to disk
Implement rust-lang/compiler-team#578.

When an ICE is encountered on nightly releases, the new rustc panic
handler will also write the contents of the backtrace to disk. If any
`delay_span_bug`s are encountered, their backtrace is also added to the
file. The platform and rustc version will also be collected.
  • Loading branch information
estebank committed Jul 19, 2023
commit cbca8f9908fd4c4d66d83f0f54221f809db8b1c0
2 changes: 1 addition & 1 deletion clippy_lints/src/doc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@ fn check_code(cx: &LateContext<'_>, text: &str, edition: Edition, span: Span) {
false,
TerminalUrl::No,
);
let handler = Handler::with_emitter(false, None, Box::new(emitter));
let handler = Handler::with_emitter(false, None, Box::new(emitter), None);
let sess = ParseSess::with_span_handler(handler, sm);

let mut parser = match maybe_new_parser_from_source_str(&sess, filename, code) {
Expand Down