Skip to content

Commit ac59637

Browse files
authored
Add support for OP_FCONV_TO_I to mini-arm64.c. (#20548)
Partial backport of #20100. Should fix #20533. Also see: dotnet/runtime#35008 (comment)
1 parent 392fe5b commit ac59637

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

mono/mini/mini-arm64.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4175,6 +4175,7 @@ mono_arch_output_basic_block (MonoCompile *cfg, MonoBasicBlock *bb)
41754175
arm_uxthw (code, dreg, dreg);
41764176
break;
41774177
case OP_FCONV_TO_I4:
4178+
case OP_FCONV_TO_I:
41784179
arm_fcvtzs_dx (code, dreg, sreg1);
41794180
arm_sxtwx (code, dreg, dreg);
41804181
break;

0 commit comments

Comments
 (0)