mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
New testcase
llvm-svn: 12616
This commit is contained in:
parent
27ed33c309
commit
872356f472
18
test/Regression/Transforms/SimplifyCFG/return-merge.ll
Normal file
18
test/Regression/Transforms/SimplifyCFG/return-merge.ll
Normal file
@ -0,0 +1,18 @@
|
||||
; RUN: llvm-as < %s | opt -simplifycfg | llvm-dis | not grep br
|
||||
|
||||
int %test1(bool %C) {
|
||||
entry:
|
||||
br bool %C, label %T, label %F
|
||||
T:
|
||||
ret int 1
|
||||
F:
|
||||
ret int 0
|
||||
}
|
||||
|
||||
void %test2(bool %C) {
|
||||
br bool %C, label %T, label %F
|
||||
T:
|
||||
ret void
|
||||
F:
|
||||
ret void
|
||||
}
|
Loading…
Reference in New Issue
Block a user