Skip to content

Commit

Permalink
CodeGen: Fix a typo in X64 (dis)assembler (#1238)
Browse files Browse the repository at this point in the history
  • Loading branch information
zeux committed Apr 26, 2024
1 parent 259e509 commit af15c3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CodeGen/src/AssemblyBuilderX64.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,7 @@ void AssemblyBuilderX64::vcvtss2sd(OperandX64 dst, OperandX64 src1, OperandX64 s
else
CODEGEN_ASSERT(src2.memSize == SizeX64::dword);

placeAvx("vcvtsd2ss", dst, src1, src2, 0x5a, false, AVX_0F, AVX_F3);
placeAvx("vcvtss2sd", dst, src1, src2, 0x5a, false, AVX_0F, AVX_F3);
}

void AssemblyBuilderX64::vroundsd(OperandX64 dst, OperandX64 src1, OperandX64 src2, RoundingModeX64 roundingMode)
Expand Down

0 comments on commit af15c3c

Please sign in to comment.