summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/frontend/ir/microinstruction.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/shader_recompiler/frontend/ir/microinstruction.cpp')
-rw-r--r--src/shader_recompiler/frontend/ir/microinstruction.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/ir/microinstruction.cpp b/src/shader_recompiler/frontend/ir/microinstruction.cpp
index 701746a0c..e3350931b 100644
--- a/src/shader_recompiler/frontend/ir/microinstruction.cpp
+++ b/src/shader_recompiler/frontend/ir/microinstruction.cpp
@@ -279,8 +279,10 @@ void Inst::ClearArgs() {
279 if (!value.IsImmediate()) { 279 if (!value.IsImmediate()) {
280 UndoUse(value); 280 UndoUse(value);
281 } 281 }
282 value = {};
283 } 282 }
283 // Reset arguments to null
284 // std::memset was measured to be faster on MSVC than std::ranges:fill
285 std::memset(&args, 0, sizeof(args));
284 } 286 }
285} 287}
286 288