]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_codegen_cranelift/src/base.rs
Rollup merge of #101753 - oli-obk:tait_closure_args, r=compiler-errors
[rust.git] / compiler / rustc_codegen_cranelift / src / base.rs
index 2aa11ac2eeaa653d1c0b2243afbf31e62effc467..399474d79e3b6c30d20f0d8f3921af1185bbf987 100644 (file)
@@ -701,6 +701,10 @@ fn is_fat_ptr<'tcx>(fx: &FunctionCx<'_, '_, 'tcx>, ty: Ty<'tcx>) -> bool {
                     let operand = codegen_operand(fx, operand);
                     operand.unsize_value(fx, lval);
                 }
+                Rvalue::Cast(CastKind::DynStar, _, _) => {
+                    // FIXME(dyn-star)
+                    unimplemented!()
+                }
                 Rvalue::Discriminant(place) => {
                     let place = codegen_place(fx, place);
                     let value = place.to_cvalue(fx);