Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit c127548

Browse files
authored
Merge pull request #17560 from fiigii/fixcvt
Fix extra register-dependency on mem-form of vcvtsd/s2ss
2 parents 1d406b1 + f3d0eb7 commit c127548

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/jit/emitxarch.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,8 @@ bool emitter::IsDstDstSrcAVXInstruction(instruction ins)
9595
case INS_cmpss:
9696
case INS_cvtsi2sd:
9797
case INS_cvtsi2ss:
98+
case INS_cvtsd2ss:
99+
case INS_cvtss2sd:
98100
case INS_divpd:
99101
case INS_divps:
100102
case INS_divsd:
@@ -251,8 +253,6 @@ bool emitter::IsDstSrcSrcAVXInstruction(instruction ins)
251253
{
252254
switch (ins)
253255
{
254-
case INS_cvtsd2ss:
255-
case INS_cvtss2sd:
256256
case INS_movhpd:
257257
case INS_movhps:
258258
case INS_movlpd:

0 commit comments

Comments
 (0)