summaryrefslogtreecommitdiff
path: root/llvm/test/Transforms/InstCombine/switch-truncate-crash.ll
blob: 625955aa73723f935f0e92f4a954f0d54a418188 (plain)
1
2
3
4
5
6
7
; RUN: opt -passes=instcombine < %s

define void @test() {
  switch i32 0, label %out [i32 0, label %out]
out:
  ret void
}