blob: d3559d8c7511d2dfb7e1c1b3be0ae9ce8f7b51ff [file] [log] [blame]
; 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
}