[Lldb-commits] [lldb] [llvm] [mlir] [IR] Split Br into UncondBr and CondBr (PR #184027)
Alexis Engelke via lldb-commits
lldb-commits at lists.llvm.org
Mon Mar 2 06:20:06 PST 2026
================
@@ -83,6 +83,9 @@ Changes to LLVM infrastructure
* Removed `bugpoint`. Usage has been replaced by `llvm-reduce` and
`llvm/utils/reduce_pipeline.py`.
+* The ``Br`` opcode got split into two opcodes separating unconditional
+ (``UncondBr``) and conditional (``CondBr``) branches.
----------------
aengelke wrote:
We also have IndirectBr and CallBr in LLVM IR, so I find CondBr more consistent with other opcode names. Our consistency story is not great due to history, but making it consistent in whatever direction is going to cause a lot of churn for little benefit.
https://github.com/llvm/llvm-project/pull/184027
More information about the lldb-commits
mailing list