mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
72800d3b89
Except for `simd-intrinsic/`, which has a lot of files containing multiple types like `u8x64` which really are better when hand-formatted. There is a surprising amount of two-space indenting in this directory. Non-trivial changes: - `rustfmt::skip` needed in `debug-column.rs` to preserve meaning of the test. - `rustfmt::skip` used in a few places where hand-formatting read more nicely: `enum/enum-match.rs` - Line number adjustments needed for the expected output of `debug-column.rs` and `coroutine-debug.rs`.
39 lines
1.2 KiB
Rust
39 lines
1.2 KiB
Rust
//@ compile-flags: -O
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
|
|
pub struct Int(u32);
|
|
|
|
const A: Int = Int(201);
|
|
const B: Int = Int(270);
|
|
const C: Int = Int(153);
|
|
|
|
// The code is from https://github.com/rust-lang/rust/issues/119520.
|
|
// This code will basically turn into `matches!(x.partial_cmp(&A), Some(Greater | Equal))`.
|
|
// The otherwise branch must be `Less`.
|
|
// CHECK-LABEL: @implicit_match(
|
|
// CHECK-SAME: [[TMP0:%.*]])
|
|
// CHECK-NEXT: start:
|
|
// CHECK-NEXT: [[TMP1:%.*]] = add i32 [[TMP0]], -201
|
|
// CHECK-NEXT: icmp ult i32 [[TMP1]], 70
|
|
// CHECK-NEXT: icmp eq i32 [[TMP0]], 153
|
|
// CHECK-NEXT: [[SPEC_SELECT:%.*]] = or i1
|
|
// CHECK-NEXT: ret i1 [[SPEC_SELECT]]
|
|
#[no_mangle]
|
|
pub fn implicit_match(x: Int) -> bool {
|
|
(x >= A && x <= B) || x == C
|
|
}
|
|
|
|
// The code is from https://github.com/rust-lang/rust/issues/110097.
|
|
// We expect it to generate the same optimized code as a full match.
|
|
// CHECK-LABEL: @if_let(
|
|
// CHECK-NEXT: start:
|
|
// CHECK-NEXT: insertvalue
|
|
// CHECK-NEXT: insertvalue
|
|
// CHECK-NEXT: ret
|
|
#[no_mangle]
|
|
pub fn if_let(val: Result<i32, ()>) -> Result<i32, ()> {
|
|
if let Ok(x) = val { Ok(x) } else { Err(()) }
|
|
}
|