rust/tests/mir-opt/single_use_consts.never_used_debug.SingleUseConsts.panic-unwind.diff

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
489 B
Diff
Raw Normal View History

2024-06-03 02:41:00 +00:00
- // MIR for `never_used_debug` before SingleUseConsts
+ // MIR for `never_used_debug` after SingleUseConsts
fn never_used_debug() -> () {
let mut _0: ();
let _1: i32;
scope 1 {
- debug my_int => _1;
+ debug my_int => const <T as MyTrait>::ASSOC_INT;
}
bb0: {
StorageLive(_1);
- _1 = const <T as MyTrait>::ASSOC_INT;
+ nop;
_0 = const ();
StorageDead(_1);
return;
}
}