blob: 6678e4b3bd2e31ea653cd019cb202cf2631839ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Test that MatchBranchSimplification doesn't ICE on a SwitchInt where
// one of the targets is the block that the SwitchInt terminates.
#![crate_type = "lib"]
#![feature(core_intrinsics, custom_mir)]
use std::intrinsics::mir::*;
// EMIT_MIR switch_to_self.test.MatchBranchSimplification.diff
#[custom_mir(dialect = "runtime", phase = "post-cleanup")]
pub fn test(x: bool) {
mir!(
{
Goto(bb0)
}
bb0 = {
match x { false => bb0, _ => bb1 }
}
bb1 = {
match x { false => bb0, _ => bb1 }
}
)
}
|