mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-16 18:46:05 +00:00
10 lines
144 B
LLVM
10 lines
144 B
LLVM
; test unconditional branch
|
|
int %main() {
|
|
br label %Test
|
|
Test:
|
|
%X = seteq int 0, 4
|
|
br bool %X, label %Test, label %Label
|
|
Label:
|
|
ret int 0
|
|
}
|