@@ -279,13 +279,23 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
279
279
}
280
280
Entry :: Occupied ( mut entry) => {
281
281
debug ! ( " - composing on top of {:?}" , entry. get( ) ) ;
282
- match ( & entry. get ( ) [ ..] , & adj[ ..] ) {
283
- // Applying any adjustment on top of a NeverToAny
284
- // is a valid NeverToAny adjustment, because it can't
285
- // be reached.
286
- ( & [ Adjustment { kind : Adjust :: NeverToAny , .. } ] , _) => return ,
282
+ match ( & mut entry. get_mut ( ) [ ..] , & adj[ ..] ) {
287
283
(
288
- & [
284
+ [ Adjustment { kind : Adjust :: NeverToAny , target } ] ,
285
+ & [ .., Adjustment { target : new_target, .. } ] ,
286
+ ) => {
287
+ // NeverToAny coercion can target any type, so instead of adding a new
288
+ // adjustment on top we can change the target.
289
+ //
290
+ // This is required for things like `a == a` (where `a: !`) to produce
291
+ // valid MIR -- we need borrow adjustment from things like `==` to change
292
+ // the type to `&!` (or `&()` depending on the fallback). This might be
293
+ // relevant even in unreachable code.
294
+ * target = new_target;
295
+ }
296
+
297
+ (
298
+ & mut [
289
299
Adjustment { kind : Adjust :: Deref ( _) , .. } ,
290
300
Adjustment { kind : Adjust :: Borrow ( AutoBorrow :: Ref ( ..) ) , .. } ,
291
301
] ,
@@ -294,11 +304,13 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
294
304
.., // Any following adjustments are allowed.
295
305
] ,
296
306
) => {
297
- // A reborrow has no effect before a dereference.
307
+ // A reborrow has no effect before a dereference, so we can safely replace adjustments.
308
+ * entry. get_mut ( ) = adj;
298
309
}
299
- // FIXME: currently we never try to compose autoderefs
300
- // and ReifyFnPointer/UnsafeFnPointer, but we could.
310
+
301
311
_ => {
312
+ // FIXME: currently we never try to compose autoderefs
313
+ // and ReifyFnPointer/UnsafeFnPointer, but we could.
302
314
self . dcx ( ) . span_delayed_bug (
303
315
expr. span ,
304
316
format ! (
@@ -308,9 +320,10 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
308
320
adj
309
321
) ,
310
322
) ;
323
+
324
+ * entry. get_mut ( ) = adj;
311
325
}
312
326
}
313
- * entry. get_mut ( ) = adj;
314
327
}
315
328
}
316
329
0 commit comments