mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 13:11:39 +01:00
f8c80ca156
llvm-svn: 50474
14 lines
299 B
LLVM
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
|
|
]
|
|
}
|