llvm-6502/test/Transforms/ADCE/2007-07-23-InfiniteLoop.ll
2007-07-24 01:02:25 +00:00

14 lines
292 B
LLVM

; RUN: llvm-as < %s | opt -adce | llvm-dis | grep switch
; PR 1564
define fastcc void @out() {
start:
br label %loop
unreachable:
unreachable
loop:
switch i32 0, label %unreachable [
i32 0, label %loop
]
}