mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
16 lines
288 B
Diff
16 lines
288 B
Diff
- // MIR for `valid_char` before ConstProp
|
|
+ // MIR for `valid_char` after ConstProp
|
|
|
|
fn valid_char() -> char {
|
|
let mut _0: char;
|
|
scope 1 {
|
|
}
|
|
|
|
bb0: {
|
|
- _0 = const 82_u32 as char (Transmute);
|
|
+ _0 = const 'R';
|
|
return;
|
|
}
|
|
}
|
|
|