Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
4c5e954
Add `rust_analyzer` as a predefined tool
Veykril May 18, 2024
ff9efea
Resolve Clippy `f16` and `f128` `unimplemented!`/`FIXME`s
tgross35 Jun 18, 2024
477e9e8
Update float tests to include `f16` and `f128`
tgross35 Jun 18, 2024
35c65a8
Make Option::as_[mut_]slice const
GKFX Jun 19, 2024
09006d6
Convert some module-level `//` and `///` comments to `//!`.
nnethercote Jun 19, 2024
665821c
Add blank lines after module-level `//!` comments.
nnethercote Jun 19, 2024
b104fbe
Add blank lines after module-level `//` comments.
nnethercote Jun 19, 2024
9981d61
Remove useless `tidy-alphabetical` markers.
nnethercote Jun 19, 2024
b5a5647
Move an `EMIT_MIR` comment.
nnethercote Jun 19, 2024
19b7192
Fix assertion failure for some `Expect` diagnostics.
nnethercote Jun 20, 2024
388aea4
More status-quo tests for the `#[coverage(..)]` attribute
Zalathar Jun 19, 2024
ebb3aa0
Also test that yes/no must be bare words
Zalathar Jun 19, 2024
53f10b9
Add opaque type test
oli-obk Jun 20, 2024
1795b29
Rollup merge of #125241 - Veykril:tool-rust-analyzer, r=davidtwco
matthiaskrgr Jun 20, 2024
147adde
Rollup merge of #126636 - tgross35:clippy-f16-f128-fixme, r=flip1995
matthiaskrgr Jun 20, 2024
f5ba4d5
Rollup merge of #126659 - Zalathar:test-coverage-attr, r=cjgillot
matthiaskrgr Jun 20, 2024
84ed3cf
Rollup merge of #126711 - GKFX:const-option-as-slice, r=oli-obk
matthiaskrgr Jun 20, 2024
b9015fe
Rollup merge of #126717 - nnethercote:rustfmt-use-pre-cleanups, r=jie…
matthiaskrgr Jun 20, 2024
db85e4d
Rollup merge of #126719 - nnethercote:fix-126521, r=oli-obk
matthiaskrgr Jun 20, 2024
b381c3c
Rollup merge of #126730 - oli-obk:opaque_type_diff_next_solver, r=lcnr
matthiaskrgr Jun 20, 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
Move an EMIT_MIR comment.
This belongs on a function, not a `use` declaration.
  • Loading branch information
nnethercote committed Jun 19, 2024
commit b5a5647ee0f8af226fcc44a3e6b054fc758a785e
2 changes: 1 addition & 1 deletion tests/mir-opt/issue_76432.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
//@ compile-flags: -Zmir-enable-passes=-NormalizeArrayLen
// Check that we do not insert StorageDead at each target if StorageDead was never seen

// EMIT_MIR issue_76432.test.SimplifyComparisonIntegral.diff
use std::fmt::Debug;

// EMIT_MIR issue_76432.test.SimplifyComparisonIntegral.diff
fn test<T: Copy + Debug + PartialEq>(x: T) {
let v: &[T] = &[x, x, x];
match v {
Expand Down