- // MIR for `unchecked` before LowerIntrinsics + // MIR for `unchecked` after LowerIntrinsics fn unchecked(_1: i32, _2: i32) -> () { debug a => _1; debug b => _2; let mut _0: (); let _3: i32; let mut _4: i32; let mut _5: i32; let mut _7: i32; let mut _8: i32; scope 1 { debug _x => _3; let _6: i32; scope 2 { debug _y => _6; } } bb0: { StorageLive(_3); StorageLive(_4); _4 = _1; StorageLive(_5); _5 = _2; - _3 = unchecked_div::(move _4, move _5) -> [return: bb1, unwind unreachable]; + _3 = Div(move _4, move _5); + goto -> bb1; } bb1: { StorageDead(_5); StorageDead(_4); StorageLive(_6); StorageLive(_7); _7 = _1; StorageLive(_8); _8 = _2; - _6 = unchecked_rem::(move _7, move _8) -> [return: bb2, unwind unreachable]; + _6 = Rem(move _7, move _8); + goto -> bb2; } bb2: { StorageDead(_8); StorageDead(_7); _0 = const (); StorageDead(_6); StorageDead(_3); return; } }