rust/tests/mir-opt/building/enum_cast.foo.built.after.mir

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

18 lines
322 B
Rust
Raw Normal View History

// MIR for `foo` after built
fn foo(_1: Foo) -> usize {
2023-06-06 08:47:00 -05:00
debug foo => _1;
let mut _0: usize;
let _2: Foo;
let mut _3: isize;
bb0: {
2023-06-06 08:47:00 -05:00
StorageLive(_2);
_2 = move _1;
_3 = discriminant(_2);
_0 = move _3 as usize (IntToInt);
StorageDead(_2);
return;
}
}