1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-27 22:12:47 +01:00
llvm-mirror/test/Regression/Transforms/SimplifyCFG/basictest.ll
Chris Lattner 77c333368c Update run line
llvm-svn: 2693
2002-05-21 19:33:17 +00:00

28 lines
333 B
LLVM

; Test CFG simplify removal of branch instructions...
;
; RUN: if as < %s | opt -simplifycfg | dis | grep br
; RUN: then exit 1
; RUN: else exit 0
; RUN: fi
void "test1"() {
br label %BB1
BB1:
ret void
}
void "test2"() {
ret void
BB1:
ret void
}
void "test3"(bool %T) {
br bool %T, label %BB1, label %BB1
BB1:
ret void
}