Skip to content

Commit 8e22ec0

Browse files
committed
omit unused args warnings for intrinsics without body
1 parent 65d7296 commit 8e22ec0

File tree

3 files changed

+28
-14
lines changed

3 files changed

+28
-14
lines changed

compiler/rustc_passes/src/liveness.rs

+8
Original file line numberDiff line numberDiff line change
@@ -1521,6 +1521,14 @@ impl<'tcx> Liveness<'_, 'tcx> {
15211521
}
15221522

15231523
fn warn_about_unused_args(&self, body: &hir::Body<'_>, entry_ln: LiveNode) {
1524+
if let Some(intrinsic) =
1525+
self.ir.tcx.intrinsic(self.ir.tcx.hir().body_owner_def_id(body.id()))
1526+
{
1527+
if intrinsic.must_be_overridden {
1528+
return;
1529+
}
1530+
}
1531+
15241532
for p in body.params {
15251533
self.check_unused_vars_in_pat(
15261534
p.pat,

tests/ui/liveness/liveness-unused.rs

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
#![deny(unused_variables)]
33
#![deny(unused_assignments)]
44
#![allow(dead_code, non_camel_case_types, trivial_numeric_casts, dropping_copy_types)]
5+
#![feature(intrinsics)]
56

67
use std::ops::AddAssign;
78

@@ -137,5 +138,10 @@ fn f7() {
137138
drop(a);
138139
}
139140

141+
// unused params warnings are not needed for intrinsic functions without bodies
142+
#[rustc_intrinsic]
143+
unsafe fn simd_shuffle<T, I, U>(a: T, b: T, i: I) -> U;
144+
145+
140146
fn main() {
141147
}

tests/ui/liveness/liveness-unused.stderr

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
warning: unreachable statement
2-
--> $DIR/liveness-unused.rs:92:9
2+
--> $DIR/liveness-unused.rs:93:9
33
|
44
LL | continue;
55
| -------- any code following this expression is unreachable
@@ -14,7 +14,7 @@ LL | #![warn(unused)]
1414
= note: `#[warn(unreachable_code)]` implied by `#[warn(unused)]`
1515

1616
error: unused variable: `x`
17-
--> $DIR/liveness-unused.rs:8:7
17+
--> $DIR/liveness-unused.rs:9:7
1818
|
1919
LL | fn f1(x: isize) {
2020
| ^ help: if this is intentional, prefix it with an underscore: `_x`
@@ -26,33 +26,33 @@ LL | #![deny(unused_variables)]
2626
| ^^^^^^^^^^^^^^^^
2727

2828
error: unused variable: `x`
29-
--> $DIR/liveness-unused.rs:12:8
29+
--> $DIR/liveness-unused.rs:13:8
3030
|
3131
LL | fn f1b(x: &mut isize) {
3232
| ^ help: if this is intentional, prefix it with an underscore: `_x`
3333

3434
error: unused variable: `x`
35-
--> $DIR/liveness-unused.rs:20:9
35+
--> $DIR/liveness-unused.rs:21:9
3636
|
3737
LL | let x: isize;
3838
| ^ help: if this is intentional, prefix it with an underscore: `_x`
3939

4040
error: unused variable: `x`
41-
--> $DIR/liveness-unused.rs:25:9
41+
--> $DIR/liveness-unused.rs:26:9
4242
|
4343
LL | let x = 3;
4444
| ^ help: if this is intentional, prefix it with an underscore: `_x`
4545

4646
error: variable `x` is assigned to, but never used
47-
--> $DIR/liveness-unused.rs:30:13
47+
--> $DIR/liveness-unused.rs:31:13
4848
|
4949
LL | let mut x = 3;
5050
| ^
5151
|
5252
= note: consider using `_x` instead
5353

5454
error: value assigned to `x` is never read
55-
--> $DIR/liveness-unused.rs:32:5
55+
--> $DIR/liveness-unused.rs:33:5
5656
|
5757
LL | x += 4;
5858
| ^
@@ -65,47 +65,47 @@ LL | #![deny(unused_assignments)]
6565
| ^^^^^^^^^^^^^^^^^^
6666

6767
error: variable `z` is assigned to, but never used
68-
--> $DIR/liveness-unused.rs:37:13
68+
--> $DIR/liveness-unused.rs:38:13
6969
|
7070
LL | let mut z = 3;
7171
| ^
7272
|
7373
= note: consider using `_z` instead
7474

7575
error: unused variable: `i`
76-
--> $DIR/liveness-unused.rs:59:12
76+
--> $DIR/liveness-unused.rs:60:12
7777
|
7878
LL | Some(i) => {
7979
| ^ help: if this is intentional, prefix it with an underscore: `_i`
8080

8181
error: unused variable: `x`
82-
--> $DIR/liveness-unused.rs:79:9
82+
--> $DIR/liveness-unused.rs:80:9
8383
|
8484
LL | for x in 1..10 { }
8585
| ^ help: if this is intentional, prefix it with an underscore: `_x`
8686

8787
error: unused variable: `x`
88-
--> $DIR/liveness-unused.rs:84:10
88+
--> $DIR/liveness-unused.rs:85:10
8989
|
9090
LL | for (x, _) in [1, 2, 3].iter().enumerate() { }
9191
| ^ help: if this is intentional, prefix it with an underscore: `_x`
9292

9393
error: unused variable: `x`
94-
--> $DIR/liveness-unused.rs:89:13
94+
--> $DIR/liveness-unused.rs:90:13
9595
|
9696
LL | for (_, x) in [1, 2, 3].iter().enumerate() {
9797
| ^ help: if this is intentional, prefix it with an underscore: `_x`
9898

9999
error: variable `x` is assigned to, but never used
100-
--> $DIR/liveness-unused.rs:112:9
100+
--> $DIR/liveness-unused.rs:113:9
101101
|
102102
LL | let x;
103103
| ^
104104
|
105105
= note: consider using `_x` instead
106106

107107
error: value assigned to `x` is never read
108-
--> $DIR/liveness-unused.rs:116:9
108+
--> $DIR/liveness-unused.rs:117:9
109109
|
110110
LL | x = 0;
111111
| ^

0 commit comments

Comments
 (0)