[clang] [llvm] [mlir] [polly] [IR][NFC] Update IRBuilder to use InsertPosition (PR #96497)

Stephen Tozer via llvm-commits llvm-commits at lists.llvm.org
Mon Jun 24 12:40:27 PDT 2024


SLTozer wrote:

> Looks like using InsertPosition in IRBuilder has some overhead: 

Hm, we're adding an extra pointer chase when we give up passing a basicblock - I think then it makes sense to keep the option to pass BB+It, and do so when the caller already knows the BB (while removing the need to pass the BB around for functions that only need an insert point).

https://github.com/llvm/llvm-project/pull/96497


More information about the llvm-commits mailing list