mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-03 09:21:02 +00:00
6cc83750b8
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12383 91177308-0d34-0410-b5e6-96231b3b80d8
22 lines
452 B
LLVM
22 lines
452 B
LLVM
; RUN: llvm-as < %s | opt -lowerswitch -disable-output
|
|
|
|
void %solve() {
|
|
entry:
|
|
%targetBlock = call ushort %solve_code( ) ; <ushort> [#uses=1]
|
|
br label %codeReplTail
|
|
|
|
then.1: ; preds = %codeReplTail
|
|
ret void
|
|
|
|
loopexit.0: ; preds = %codeReplTail
|
|
ret void
|
|
|
|
codeReplTail: ; preds = %entry, %codeReplTail
|
|
switch ushort %targetBlock, label %codeReplTail [
|
|
ushort 0, label %loopexit.0
|
|
ushort 1, label %then.1
|
|
]
|
|
}
|
|
|
|
declare ushort %solve_code()
|