[llvm] [SandboxIR] Added setVolatile member function to LoadInst and StoreInst (PR #101284)
Julius Alexandre via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 31 18:05:19 PDT 2024
================
@@ -664,6 +672,15 @@ void LoadInst::dump() const {
dbgs() << "\n";
}
#endif // NDEBUG
+
+void StoreInst::setVolatile(bool V) {
+ auto &Tracker = Ctx.getTracker();
+ if (Tracker.isTracking())
+ Tracker.track(
+ std::make_unique<SetVolatile>(cast<Instruction>(this), Tracker));
----------------
medievalghoul wrote:
Yeah, that's more sensible.
https://github.com/llvm/llvm-project/pull/101284
More information about the llvm-commits
mailing list