about summary refs log tree commit diff
path: root/tests/codegen
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2024-10-19 22:00:58 +0200
committerGitHub <noreply@github.com>2024-10-19 22:00:58 +0200
commit91e46844c8713c06d1e0f0cb61e25a982dd92152 (patch)
treecaced11003bc8eaec81a39ab5c00e5eecdc87c32 /tests/codegen
parent559f8ce726340150e2581f64500247987c482b89 (diff)
parentaa299a9bdfc64b02404d05fe1984fd1571aa224d (diff)
downloadrust-91e46844c8713c06d1e0f0cb61e25a982dd92152.tar.gz
rust-91e46844c8713c06d1e0f0cb61e25a982dd92152.zip
Rollup merge of #131920 - clubby789:108395-test, r=jieyouxu
Add codegen test for branchy bool match

Closes #108395
Diffstat (limited to 'tests/codegen')
-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,
+    }
+}