We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02fc469 commit 13c2571Copy full SHA for 13c2571
src/librustc_mir/transform/add_retag.rs
@@ -86,7 +86,7 @@ impl<'tcx> MirPass<'tcx> for AddRetag {
86
.filter(needs_retag)
87
.collect::<Vec<_>>();
88
// Emit their retags.
89
- basic_blocks[START_BLOCK].statements.splice(0..0,
+ let _ = basic_blocks[START_BLOCK].statements.splice(0..0,
90
places.into_iter().map(|place| Statement {
91
source_info,
92
kind: StatementKind::Retag(RetagKind::FnEntry, box(place)),
0 commit comments