In LLVM, how can I have generate a branch instruction that jumps directly, rather than having if-else. I know there is LLVM::BranchInst class, but don’t know how to use it for this purpose, or do I need to use some other class?
In LLVM, how can I have generate a branch instruction that jumps directly, rather
Share
You need an unconditional branch: