diff options
| author | Ben Kimock <kimockb@gmail.com> | 2023-02-24 16:32:59 -0500 |
|---|---|---|
| committer | Ben Kimock <kimockb@gmail.com> | 2023-03-18 14:29:13 -0400 |
| commit | 2a628bd99c39b69e88b24c622e3d246dd5573353 (patch) | |
| tree | fb44fcfc03e7e5c6d89d7a13b40f0239a679ebe4 /tests/mir-opt/instcombine_duplicate_switch_targets.rs | |
| parent | 41eda69516dd3ee217ae07c0efa369d31f630405 (diff) | |
| download | rust-2a628bd99c39b69e88b24c622e3d246dd5573353.tar.gz rust-2a628bd99c39b69e88b24c622e3d246dd5573353.zip | |
Remove duplicate switch targets
Diffstat (limited to 'tests/mir-opt/instcombine_duplicate_switch_targets.rs')
| -rw-r--r-- | tests/mir-opt/instcombine_duplicate_switch_targets.rs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/mir-opt/instcombine_duplicate_switch_targets.rs b/tests/mir-opt/instcombine_duplicate_switch_targets.rs new file mode 100644 index 00000000000..ef3b487afa3 --- /dev/null +++ b/tests/mir-opt/instcombine_duplicate_switch_targets.rs @@ -0,0 +1,27 @@ +#![feature(custom_mir, core_intrinsics)] +#![crate_type = "lib"] + +use std::intrinsics::mir::*; + +// unit-test: InstCombine + +// EMIT_MIR instcombine_duplicate_switch_targets.assert_zero.InstCombine.diff +#[custom_mir(dialect = "runtime", phase = "post-cleanup")] +pub unsafe fn assert_zero(x: u8) -> u8 { + mir!( + { + match x { + 0 => retblock, + 1 => unreachable, + _ => unreachable, + } + } + unreachable = { + Unreachable() + } + retblock = { + RET = x; + Return() + } + ) +} |
