Skip to content

Commit 028f340

Browse files
ouz-aMark-Simulacrum
authored andcommitted
Remove assert that checks type equality
1 parent 82f6044 commit 028f340

File tree

3 files changed

+53
-4
lines changed

3 files changed

+53
-4
lines changed

compiler/rustc_codegen_ssa/src/mir/locals.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ use rustc_index::IndexVec;
77
use rustc_middle::mir;
88
use rustc_middle::ty::print::with_no_trimmed_paths;
99
use std::ops::{Index, IndexMut};
10-
1110
pub(super) struct Locals<'tcx, V> {
1211
values: IndexVec<mir::Local, LocalRef<'tcx, V>>,
1312
}
@@ -36,17 +35,18 @@ impl<'tcx, V> Locals<'tcx, V> {
3635
impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
3736
pub(super) fn initialize_locals(&mut self, values: Vec<LocalRef<'tcx, Bx::Value>>) {
3837
assert!(self.locals.values.is_empty());
39-
38+
// FIXME(#115215): After #115025 get's merged this might not be necessary
4039
for (local, value) in values.into_iter().enumerate() {
4140
match value {
4241
LocalRef::Place(_) | LocalRef::UnsizedPlace(_) | LocalRef::PendingOperand => (),
4342
LocalRef::Operand(op) => {
4443
let local = mir::Local::from_usize(local);
4544
let expected_ty = self.monomorphize(self.mir.local_decls[local].ty);
46-
assert_eq!(expected_ty, op.layout.ty, "unexpected initial operand type");
45+
if expected_ty != op.layout.ty {
46+
warn!("Unexpected initial operand type. See the issues/114858");
47+
}
4748
}
4849
}
49-
5050
self.locals.values.push(value);
5151
}
5252
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
// ignore-pass
2+
// build-pass
3+
// edition:2021
4+
use std::future::Future;
5+
use std::pin::Pin;
6+
7+
type BoxFuture<T> = Pin<Box<dyn Future<Output = T>>>;
8+
9+
fn main() {
10+
let _ = wrapper_call(handler);
11+
}
12+
13+
async fn wrapper_call(handler: impl Handler) {
14+
handler.call().await;
15+
}
16+
async fn handler() {
17+
f(&()).await;
18+
}
19+
async fn f<'a>(db: impl Acquire<'a>) {
20+
db.acquire().await;
21+
}
22+
23+
trait Handler {
24+
type Future: Future;
25+
fn call(self) -> Self::Future;
26+
}
27+
28+
impl<Fut, F> Handler for F
29+
where
30+
F: Fn() -> Fut,
31+
Fut: Future,
32+
{
33+
type Future = Fut;
34+
fn call(self) -> Self::Future {
35+
loop {}
36+
}
37+
}
38+
39+
trait Acquire<'a> {
40+
type Connection;
41+
fn acquire(self) -> BoxFuture<Self::Connection>;
42+
}
43+
impl<'a> Acquire<'a> for &'a () {
44+
type Connection = Self;
45+
fn acquire(self) -> BoxFuture<Self> {
46+
loop {}
47+
}
48+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
WARN rustc_codegen_ssa::mir::locals Unexpected initial operand type. See the issues/114858

0 commit comments

Comments
 (0)