rust/tests/codegen/option-niche-eq.rs

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

74 lines
1.6 KiB
Rust
Raw Permalink Normal View History

//@ compile-flags: -O -Zmerge-functions=disabled
#![crate_type = "lib"]
extern crate core;
use core::cmp::Ordering;
2024-02-22 07:59:52 -06:00
use core::num::NonZero;
use core::ptr::NonNull;
2024-05-11 05:09:21 -05:00
// CHECK-LABEL: @non_zero_eq
#[no_mangle]
2024-02-22 07:59:52 -06:00
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
}
2024-05-11 05:09:21 -05:00
// CHECK-LABEL: @non_zero_signed_eq
#[no_mangle]
2024-02-22 07:59:52 -06:00
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
}
2024-05-11 05:09:21 -05:00
// CHECK-LABEL: @non_null_eq
#[no_mangle]
pub fn non_null_eq(l: Option<NonNull<u8>>, r: Option<NonNull<u8>>) -> bool {
// CHECK: start:
2023-07-27 16:44:13 -05:00
// CHECK-NEXT: icmp eq ptr
// CHECK-NEXT: ret i1
l == r
}
2024-03-05 07:26:47 -06:00
2024-05-11 05:09:21 -05:00
// CHECK-LABEL: @ordering_eq
2024-03-05 07:26:47 -06:00
#[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,
}
2024-05-11 05:09:21 -05:00
// CHECK-LABEL: @niche_eq
2024-03-05 07:26:47 -06:00
#[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
}
// FIXME: This should work too
2024-05-11 05:09:21 -05:00
// // FIXME-CHECK-LABEL: @bool_eq
2024-03-05 07:26:47 -06:00
// #[no_mangle]
// pub fn bool_eq(l: Option<bool>, r: Option<bool>) -> bool {
// // FIXME-CHECK: start:
// // FIXME-CHECK-NEXT: icmp eq i8
// // FIXME-CHECK-NEXT: ret i1
// l == r
// }