mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
0a86aa9915
llvm-svn: 15021
13 lines
222 B
LLVM
13 lines
222 B
LLVM
;RUN: llvm-as < %s | opt -simplifycfg | llvm-dis | not grep 'br label'
|
|
void %test(bool %C) {
|
|
br bool %C, label %A, label %B
|
|
A:
|
|
call void %test(bool %C)
|
|
br label %X
|
|
B:
|
|
call void %test(bool %C)
|
|
br label %X
|
|
X:
|
|
unwind
|
|
}
|