From a8875c2c6f371335edbea175568b307b1f02aff0 Mon Sep 17 00:00:00 2001 From: offtkp Date: Wed, 9 Jul 2025 12:21:46 +0300 Subject: [PATCH] Clang-format --- src/core/cpu_patches.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/core/cpu_patches.cpp b/src/core/cpu_patches.cpp index a82ec4ff2..85ed86fba 100644 --- a/src/core/cpu_patches.cpp +++ b/src/core/cpu_patches.cpp @@ -177,7 +177,8 @@ static void GenerateEXTRQ(void* /* address */, const ZydisDecodedOperand* operan c.mov(scratch2, mask); c.and_(scratch1, scratch2); - // Writeback to xmm register, extrq instruction says top 64-bits are undefined but zeroed on AMD CPUs + // Writeback to xmm register, extrq instruction says top 64-bits are undefined but zeroed on + // AMD CPUs c.vmovq(xmm_dst, scratch1); c.pop(scratch2); @@ -306,7 +307,8 @@ static void GenerateINSERTQ(void* /* address */, const ZydisDecodedOperand* oper // dst |= src c.or_(scratch2, scratch1); - // Insert scratch2 into low 64 bits of dst, upper 64 bits are undefined but zeroed on AMD CPUs + // Insert scratch2 into low 64 bits of dst, upper 64 bits are undefined but zeroed on AMD + // CPUs c.vmovq(xmm_dst, scratch2); c.pop(mask);