mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
ba1a33e105
Currently we pick "weird" numbers like `1114112` for `None::<char>`. While that's not *wrong*, it's kinda *unnatural* -- a human wouldn't make that choice. This PR instead picks `-1` for thinge like `None::<char>` -- like clang's `WEOF` -- and `None::<bool>` and such. Any enums with more than one niched value (so not `Result` nor `Option`) remain as they were before.
96 lines
2.1 KiB
Rust
96 lines
2.1 KiB
Rust
//@ compile-flags: -Copt-level=3 -Zmerge-functions=disabled
|
|
#![crate_type = "lib"]
|
|
|
|
extern crate core;
|
|
use core::cmp::Ordering;
|
|
use core::num::NonZero;
|
|
use core::ptr::NonNull;
|
|
|
|
// CHECK-LABEL: @non_zero_eq
|
|
#[no_mangle]
|
|
pub fn non_zero_eq(l: Option<NonZero<u32>>, r: Option<NonZero<u32>>) -> bool {
|
|
// CHECK: start:
|
|
// CHECK-NEXT: icmp eq i32
|
|
// CHECK-NEXT: ret i1
|
|
l == r
|
|
}
|
|
|
|
// CHECK-LABEL: @non_zero_signed_eq
|
|
#[no_mangle]
|
|
pub fn non_zero_signed_eq(l: Option<NonZero<i64>>, r: Option<NonZero<i64>>) -> bool {
|
|
// CHECK: start:
|
|
// CHECK-NEXT: icmp eq i64
|
|
// CHECK-NEXT: ret i1
|
|
l == r
|
|
}
|
|
|
|
// FIXME(#49892)
|
|
// This currently relies on a manual implementation of `PartialOrd`/`Ord` for `Option`
|
|
// Once LLVM is better able to optimize this pattern, we can return to using a derive.
|
|
// CHECK-LABEL: @non_zero_ord
|
|
#[no_mangle]
|
|
pub fn non_zero_ord(a: Option<NonZero<u32>>, b: Option<NonZero<u32>>) -> bool {
|
|
// CHECK: start:
|
|
// CHECK-NEXT: icmp ult i32
|
|
// CHECK-NEXT: ret i1
|
|
a < b
|
|
}
|
|
|
|
// CHECK-LABEL: @non_null_eq
|
|
#[no_mangle]
|
|
pub fn non_null_eq(l: Option<NonNull<u8>>, r: Option<NonNull<u8>>) -> bool {
|
|
// CHECK: start:
|
|
// CHECK-NEXT: icmp eq ptr
|
|
// CHECK-NEXT: ret i1
|
|
l == r
|
|
}
|
|
|
|
// CHECK-LABEL: @ordering_eq
|
|
#[no_mangle]
|
|
pub fn ordering_eq(l: Option<Ordering>, r: Option<Ordering>) -> bool {
|
|
// CHECK: start:
|
|
// CHECK-NEXT: icmp eq i8
|
|
// CHECK-NEXT: ret i1
|
|
l == r
|
|
}
|
|
|
|
#[derive(PartialEq)]
|
|
pub enum EnumWithNiche {
|
|
A,
|
|
B,
|
|
C,
|
|
D,
|
|
E,
|
|
F,
|
|
G,
|
|
}
|
|
|
|
// CHECK-LABEL: @niche_eq
|
|
#[no_mangle]
|
|
pub fn niche_eq(l: Option<EnumWithNiche>, r: Option<EnumWithNiche>) -> bool {
|
|
// CHECK: start:
|
|
// CHECK-NEXT: icmp eq i8
|
|
// CHECK-NEXT: ret i1
|
|
l == r
|
|
}
|
|
|
|
// CHECK-LABEL: @bool_eq
|
|
#[no_mangle]
|
|
pub fn bool_eq(l: Option<bool>, r: Option<bool>) -> bool {
|
|
// CHECK: start:
|
|
// CHECK-NEXT: icmp eq i8
|
|
// CHECK-NEXT: ret i1
|
|
l == r
|
|
}
|
|
|
|
// CHECK-LABEL: @bool_ref_eq
|
|
#[no_mangle]
|
|
pub fn bool_ref_eq(l: &Option<bool>, r: &Option<bool>) -> bool {
|
|
// CHECK: start:
|
|
// CHECK-NEXT: load i8
|
|
// CHECK-NEXT: load i8
|
|
// CHECK-NEXT: icmp eq i8
|
|
// CHECK-NEXT: ret i1
|
|
l == r
|
|
}
|