rust/tests/codegen/match-optimizes-away.rs

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

34 lines
653 B
Rust
Raw Normal View History

2017-11-14 07:24:30 +08:00
//
// compile-flags: -O
#![crate_type="lib"]
pub enum Three { A, B, C }
2017-11-14 07:24:30 +08:00
#[repr(u16)]
pub enum Four { A, B, C, D }
2017-11-14 07:24:30 +08:00
#[no_mangle]
pub fn three_valued(x: Three) -> Three {
// CHECK-LABEL: @three_valued
// CHECK-NEXT: {{^.*:$}}
// CHECK-NEXT: ret i8 %0
match x {
Three::A => Three::A,
Three::B => Three::B,
Three::C => Three::C,
2017-11-14 07:24:30 +08:00
}
}
#[no_mangle]
pub fn four_valued(x: Four) -> Four {
// CHECK-LABEL: @four_valued
// CHECK-NEXT: {{^.*:$}}
// CHECK-NEXT: ret i16 %0
2017-11-14 07:24:30 +08:00
match x {
Four::A => Four::A,
Four::B => Four::B,
Four::C => Four::C,
Four::D => Four::D,
2017-11-14 07:24:30 +08:00
}
}