llvm-project/llvm/test/Transforms/InstCombine/switch-truncate-crash.ll
Bjorn Pettersson acdc419c89 [test] Use -passes=instcombine instead of -instcombine in lots of tests. NFC
Another step moving away from the deprecated syntax of specifying
pass pipeline in opt.

Differential Revision: https://reviews.llvm.org/D119081
2022-02-07 14:26:59 +01:00

8 lines
124 B
LLVM

; RUN: opt -passes=instcombine < %s
define void @test() {
switch i32 0, label %out [i32 0, label %out]
out:
ret void
}