1
0
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:
Chris Lattner 2004-04-02 18:12:49 +00:00
parent 27ed33c309
commit 872356f472

View 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
}