mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
95f870ece4
- Also, switch tests to not using llvm-as. They run 20% faster now, not that it matters. llvm-svn: 118952
13 lines
235 B
LLVM
13 lines
235 B
LLVM
; RUN: lli %s > /dev/null
|
|
|
|
; test unconditional branch
|
|
define i32 @main() {
|
|
br label %Test
|
|
Test: ; preds = %Test, %0
|
|
%X = icmp eq i32 0, 4 ; <i1> [#uses=1]
|
|
br i1 %X, label %Test, label %Label
|
|
Label: ; preds = %Test
|
|
ret i32 0
|
|
}
|
|
|