[llvm] [SandboxIR] Implement UnreachableInst (PR #101856)
Julius Alexandre via llvm-commits
llvm-commits at lists.llvm.org
Sun Aug 4 19:05:54 PDT 2024
================
@@ -747,6 +747,38 @@ void StoreInst::dump() const {
}
#endif // NDEBUG
+UnreachableInst *UnreachableInst::create(Instruction *InsertBefore,
+ Context &Ctx) {
+ auto &Builder = Ctx.getLLVMIRBuilder();
+ Builder.SetInsertPoint(cast<llvm::Instruction>(InsertBefore->Val));
----------------
medievalghoul wrote:
and this change is only for the create functions with the InsertBefore param?
https://github.com/llvm/llvm-project/pull/101856
More information about the llvm-commits
mailing list