about summary refs log tree commit diff
path: root/tests/codegen/comparison-operators-2-tuple.rs
AgeCommit message (Collapse)AuthorLines
2023-07-27Update the minimum external LLVM to 15Josh Stone-1/+0
2023-02-16Use `partial_cmp` to implement tuple `lt`/`le`/`ge`/`gt`Scott McMurray-2/+5
2023-02-16Add a codegen test for comparisons of 2-tuples of primitivesScott McMurray-0/+118
The operators are all overridden in full for tuples, so those parts pass easily, but they're worth pinning. Going via `Ord::cmp`, though, doesn't optimize away for anything but `cmp`+`is_le`. So this leaves `FIXME`s in the tests for the others.