llvm-6502/test/Transforms/LoopDeletion/2007-07-23-InfiniteLoop.ll
2008-04-30 07:17:22 +00:00

14 lines
299 B
LLVM

; RUN: llvm-as < %s | opt -loop-deletion | 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
]
}