xref: /aosp_15_r20/external/llvm/test/Transforms/InstCombine/switch-truncate-crash.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1; RUN: opt -instcombine < %s
2
3define void @test() {
4  switch i32 0, label %out [i32 0, label %out]
5out:
6  ret void
7}
8