about summary refs log tree commit diff
path: root/tests/codegen/issues
diff options
context:
space:
mode:
authorclubby789 <jamie@hill-daniel.co.uk>2024-10-19 10:05:07 +0000
committerclubby789 <jamie@hill-daniel.co.uk>2024-10-19 10:05:25 +0000
commitaa299a9bdfc64b02404d05fe1984fd1571aa224d (patch)
tree0d9bb2b501d9020fd82982f69c79c2cb2eaf395b /tests/codegen/issues
parentf7b5e5471b79a556dfd758a25265a777fbdad7ac (diff)
downloadrust-aa299a9bdfc64b02404d05fe1984fd1571aa224d.tar.gz
rust-aa299a9bdfc64b02404d05fe1984fd1571aa224d.zip
Add codegen test for branchy bool match
Diffstat (limited to 'tests/codegen/issues')
-rw-r--r--tests/codegen/issues/issue-108395-branchy-bool-match.rs27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/codegen/issues/issue-108395-branchy-bool-match.rs b/tests/codegen/issues/issue-108395-branchy-bool-match.rs
new file mode 100644
index 00000000000..24f5c0f6635
--- /dev/null
+++ b/tests/codegen/issues/issue-108395-branchy-bool-match.rs
@@ -0,0 +1,27 @@
+//@ compile-flags: -O -Zmerge-functions=disabled
+//! Test for <https://github.com/rust-lang/rust/issues/108395>. Check that
+//! matching on two bools with wildcards does not produce branches.
+#![crate_type = "lib"]
+
+// CHECK-LABEL: @wildcard(
+#[no_mangle]
+pub fn wildcard(a: u16, b: u16, v: u16) -> u16 {
+    // CHECK-NOT: br
+    match (a == v, b == v) {
+        (true, false) => 0,
+        (false, true) => u16::MAX,
+        _ => 1 << 15, // half
+    }
+}
+
+// CHECK-LABEL: @exhaustive(
+#[no_mangle]
+pub fn exhaustive(a: u16, b: u16, v: u16) -> u16 {
+    // CHECK-NOT: br
+    match (a == v, b == v) {
+        (true, false) => 0,
+        (false, true) => u16::MAX,
+        (true, true) => 1 << 15,
+        (false, false) => 1 << 15,
+    }
+}