mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2026-03-27 05:01:35 +00:00
Fix missing paranthesis
This commit is contained in:
parent
9ceefb2c17
commit
f40eef40b8
1 changed files with 1 additions and 1 deletions
|
|
@ -2202,7 +2202,7 @@ bool Recompiler::Recompile(
|
|||
print("\t_mm_store_si128((__m128i*){}.u8, ", v(insn.operands[0]));
|
||||
|
||||
if (insn.operands[1] != insn.operands[2])
|
||||
println("_mm_andnot_si128(_mm_or_si128(_mm_load_si128((__m128i*){}.u8), _mm_load_si128((__m128i*){}.u8)), _mm_set1_epi8(0xFF));", v(insn.operands[1]), v(insn.operands[2]));
|
||||
println("_mm_andnot_si128(_mm_or_si128(_mm_load_si128((__m128i*){}.u8), _mm_load_si128((__m128i*){}.u8)), _mm_set1_epi8(0xFF)));", v(insn.operands[1]), v(insn.operands[2]));
|
||||
else
|
||||
println("_mm_setzero_si128());");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue