summaryrefslogtreecommitdiffstats
path: root/src/test/codegen/match-optimizes-away.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/codegen/match-optimizes-away.rs
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/codegen/match-optimizes-away.rs')
-rw-r--r--src/test/codegen/match-optimizes-away.rs34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/test/codegen/match-optimizes-away.rs b/src/test/codegen/match-optimizes-away.rs
deleted file mode 100644
index 8f66c518c..000000000
--- a/src/test/codegen/match-optimizes-away.rs
+++ /dev/null
@@ -1,34 +0,0 @@
-//
-// no-system-llvm
-// compile-flags: -O
-#![crate_type="lib"]
-
-pub enum Three { A, B, C }
-
-#[repr(u16)]
-pub enum Four { A, B, C, D }
-
-#[no_mangle]
-pub fn three_valued(x: Three) -> Three {
- // CHECK-LABEL: @three_valued
- // CHECK-NEXT: {{^.*:$}}
- // CHECK-NEXT: ret i8 %0
- match x {
- Three::A => Three::A,
- Three::B => Three::B,
- Three::C => Three::C,
- }
-}
-
-#[no_mangle]
-pub fn four_valued(x: Four) -> Four {
- // CHECK-LABEL: @four_valued
- // CHECK-NEXT: {{^.*:$}}
- // CHECK-NEXT: ret i16 %0
- match x {
- Four::A => Four::A,
- Four::B => Four::B,
- Four::C => Four::C,
- Four::D => Four::D,
- }
-}