1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 06:22:51 +01:00
llvm-mirror/test/Regression/Jello/test-branch.ll
Chris Lattner e8386a7e44 Add main functions to benchmarks
llvm-svn: 4915
2002-12-04 17:15:07 +00:00

10 lines
144 B
LLVM

; test unconditional branch
void %main() {
br label %Test
Test:
%X = setne int 0, 4
br bool %X, label %Test, label %Label
Label:
ret void
}