We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e67e997 commit 1db2101Copy full SHA for 1db2101
src/mono/mono/mini/intrinsics.c
@@ -743,6 +743,7 @@ MONO_RESTORE_WARNING
743
else if (tfrom_type == MONO_TYPE_U)
744
tfrom_type = MONO_TYPE_U8;
745
#endif
746
+#if TARGET_SIZEOF_VOID_P == 8 || defined(TARGET_WASM)
747
if ((tfrom_type == MONO_TYPE_R8) && ((tto_type == MONO_TYPE_I8) || (tto_type == MONO_TYPE_U8))) {
748
opcode = OP_MOVE_F_TO_I8;
749
tto_stack = STACK_I8;
@@ -753,6 +754,9 @@ MONO_RESTORE_WARNING
753
754
opcode = OP_MOVE;
755
756
}
757
+#else
758
+ return NULL;
759
+#endif
760
761
} else if (mini_class_is_simd (cfg, tfrom_klass) && mini_class_is_simd (cfg, tto_klass)) {
762
#if TARGET_SIZEOF_VOID_P == 8 || defined(TARGET_WASM)
0 commit comments