Skip to content

Commit 09ee704

Browse files
authored
Rollup merge of #106100 - scottmcm:derived-less-than-test, r=compiler-errors
Codegen test for derived `<` on trivial newtype [TEST ONLY] I originally wrote this for #106065, but the libcore changes there aren't necessarily a win. So I pulled out this test to be its own PR since it's important (see #105840 (comment)) and well-intentioned changes to core or the derive could accidentally break it without that being obvious (other than by massive unexplained perf changes).
2 parents edb2b71 + 4cb7bd3 commit 09ee704

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
// The `derive(PartialOrd)` for a newtype doesn't override `lt`/`le`/`gt`/`ge`.
2+
// This double-checks that the `Option<Ordering>` intermediate values used
3+
// in the operators for such a type all optimize away.
4+
5+
// compile-flags: -C opt-level=1
6+
// min-llvm-version: 15.0
7+
8+
#![crate_type = "lib"]
9+
10+
use std::cmp::Ordering;
11+
12+
#[derive(PartialOrd, PartialEq)]
13+
pub struct Foo(u16);
14+
15+
// CHECK-LABEL: @check_lt
16+
// CHECK-SAME: (i16 %[[A:.+]], i16 %[[B:.+]])
17+
#[no_mangle]
18+
pub fn check_lt(a: Foo, b: Foo) -> bool {
19+
// CHECK: %[[R:.+]] = icmp ult i16 %[[A]], %[[B]]
20+
// CHECK-NEXT: ret i1 %[[R]]
21+
a < b
22+
}
23+
24+
// CHECK-LABEL: @check_le
25+
// CHECK-SAME: (i16 %[[A:.+]], i16 %[[B:.+]])
26+
#[no_mangle]
27+
pub fn check_le(a: Foo, b: Foo) -> bool {
28+
// CHECK: %[[R:.+]] = icmp ule i16 %[[A]], %[[B]]
29+
// CHECK-NEXT: ret i1 %[[R]]
30+
a <= b
31+
}
32+
33+
// CHECK-LABEL: @check_gt
34+
// CHECK-SAME: (i16 %[[A:.+]], i16 %[[B:.+]])
35+
#[no_mangle]
36+
pub fn check_gt(a: Foo, b: Foo) -> bool {
37+
// CHECK: %[[R:.+]] = icmp ugt i16 %[[A]], %[[B]]
38+
// CHECK-NEXT: ret i1 %[[R]]
39+
a > b
40+
}
41+
42+
// CHECK-LABEL: @check_ge
43+
// CHECK-SAME: (i16 %[[A:.+]], i16 %[[B:.+]])
44+
#[no_mangle]
45+
pub fn check_ge(a: Foo, b: Foo) -> bool {
46+
// CHECK: %[[R:.+]] = icmp uge i16 %[[A]], %[[B]]
47+
// CHECK-NEXT: ret i1 %[[R]]
48+
a >= b
49+
}

0 commit comments

Comments
 (0)