summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/frontend/ir/microinstruction.cpp
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2021-04-21 02:43:44 -0300
committerGravatar ameerj2021-07-22 21:51:28 -0400
commitf66851e37682ce538172b0945908227ada8d21ac (patch)
tree2e102ea36e034d7be86abae1165010a1b9612ce7 /src/shader_recompiler/frontend/ir/microinstruction.cpp
parentshader: Inline common Value functions into the header (diff)
downloadyuzu-f66851e37682ce538172b0945908227ada8d21ac.tar.gz
yuzu-f66851e37682ce538172b0945908227ada8d21ac.tar.xz
yuzu-f66851e37682ce538172b0945908227ada8d21ac.zip
shader: Use memset to reset instruction arguments
Diffstat (limited to '')
-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