[llvm] [SandboxIR][Tracker] Track InsertIntoBB (PR #101595)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 2 17:01:49 PDT 2024
================
@@ -291,6 +291,22 @@ class MoveInstr : public IRChangeBase {
#endif // NDEBUG
};
+class InsertIntoBB final : public IRChangeBase {
+ Instruction *InsertedI = nullptr;
+
+public:
+ InsertIntoBB(Instruction *InsertedI, Tracker &Tracker);
+ void revert() final;
+ void accept() final {}
+#ifndef NDEBUG
+ void dump(raw_ostream &OS) const final {
----------------
vporpo wrote:
Yeah I have to fix both these dumps and the Value dumps.
https://github.com/llvm/llvm-project/pull/101595
More information about the llvm-commits
mailing list