Skip to content

Commit e7f11b6

Browse files
committedAug 25, 2024
Removes dead code from the compiler
1 parent f167efa commit e7f11b6

File tree

6 files changed

+2
-25
lines changed

6 files changed

+2
-25
lines changed
 

‎compiler/rustc_incremental/messages.ftl

-2
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,4 @@ incremental_unrecognized_depnode = unrecognized `DepNode` variant: {$name}
9999
100100
incremental_unrecognized_depnode_label = dep-node label `{$label}` not recognized
101101
102-
incremental_write_dep_graph = failed to write dependency graph to `{$path}`: {$err}
103-
104102
incremental_write_new = failed to write {$name} to `{$path}`: {$err}

‎compiler/rustc_incremental/src/errors.rs

-7
Original file line numberDiff line numberDiff line change
@@ -272,13 +272,6 @@ pub struct LoadDepGraph {
272272
pub err: std::io::Error,
273273
}
274274

275-
#[derive(Diagnostic)]
276-
#[diag(incremental_write_dep_graph)]
277-
pub struct WriteDepGraph<'a> {
278-
pub path: &'a Path,
279-
pub err: std::io::Error,
280-
}
281-
282275
#[derive(Diagnostic)]
283276
#[diag(incremental_move_dep_graph)]
284277
pub struct MoveDepGraph<'a> {

‎compiler/rustc_passes/messages.ftl

-4
Original file line numberDiff line numberDiff line change
@@ -481,10 +481,6 @@ passes_must_not_suspend =
481481
`must_not_suspend` attribute should be applied to a struct, enum, union, or trait
482482
.label = is not a struct, enum, union, or trait
483483
484-
passes_must_use_async =
485-
`must_use` attribute on `async` functions applies to the anonymous `Future` returned by the function, not the value within
486-
.label = this attribute does nothing, the `Future`s returned by async functions are already `must_use`
487-
488484
passes_must_use_no_effect =
489485
`#[must_use]` has no effect when applied to {$article} {$target}
490486

‎compiler/rustc_passes/src/errors.rs

-7
Original file line numberDiff line numberDiff line change
@@ -371,13 +371,6 @@ pub struct FfiConstInvalidTarget {
371371
pub attr_span: Span,
372372
}
373373

374-
#[derive(LintDiagnostic)]
375-
#[diag(passes_must_use_async)]
376-
pub struct MustUseAsync {
377-
#[label]
378-
pub span: Span,
379-
}
380-
381374
#[derive(LintDiagnostic)]
382375
#[diag(passes_must_use_no_effect)]
383376
pub struct MustUseNoEffect {

‎compiler/rustc_transmute/src/maybe_transmutable/query_context.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ use crate::layout;
44
pub(crate) trait QueryContext {
55
type Def: layout::Def;
66
type Ref: layout::Ref;
7-
type Scope: Copy;
87
}
98

109
#[cfg(test)]
@@ -28,20 +27,17 @@ pub(crate) mod test {
2827
impl QueryContext for UltraMinimal {
2928
type Def = Def;
3029
type Ref = !;
31-
type Scope = ();
3230
}
3331
}
3432

3533
#[cfg(feature = "rustc")]
3634
mod rustc {
37-
use rustc_middle::ty::{Ty, TyCtxt};
35+
use rustc_middle::ty::TyCtxt;
3836

3937
use super::*;
4038

4139
impl<'tcx> super::QueryContext for TyCtxt<'tcx> {
4240
type Def = layout::rustc::Def<'tcx>;
4341
type Ref = layout::rustc::Ref<'tcx>;
44-
45-
type Scope = Ty<'tcx>;
4642
}
4743
}

‎library/alloc/tests/boxed.rs

+1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ fn box_deref_lval() {
5959
assert_eq!(x.get(), 1000);
6060
}
6161

62+
#[allow(unused)]
6263
pub struct ConstAllocator;
6364

6465
unsafe impl Allocator for ConstAllocator {

0 commit comments

Comments
 (0)