xref: /aosp_15_r20/external/llvm/test/Transforms/LowerSwitch/2003-08-23-EmptySwitch.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1; RUN: opt < %s -lowerswitch
2
3define void @test() {
4	switch i32 0, label %Next [
5	]
6Next:		; preds = %0
7	ret void
8}
9
10