From: Jan Dupej <109523496+jandupej@users.noreply.github.com> Date: Fri, 24 Mar 2023 14:53:46 +0000 (+0100) Subject: Disabled SIMD operator intrinsics. (#83888) X-Git-Tag: accepted/tizen/unified/riscv/20231226.055536~3311 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9bf28fe5a0bc2344bac261e07b27e6c55033318f;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Disabled SIMD operator intrinsics. (#83888) --- diff --git a/src/mono/mono/mini/simd-intrinsics.c b/src/mono/mono/mini/simd-intrinsics.c index e7a100d..d76f00b 100644 --- a/src/mono/mono/mini/simd-intrinsics.c +++ b/src/mono/mono/mini/simd-intrinsics.c @@ -1939,7 +1939,8 @@ emit_vector64_vector128_t (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSign // FIXME: This limitation could be removed once everything here are supported by mini JIT on arm64 #ifdef TARGET_ARM64 if (!COMPILE_LLVM (cfg)) { - if (size != 16) + return NULL; + /*if (size != 16) return NULL; switch (id) { case SN_get_One: @@ -1957,7 +1958,7 @@ emit_vector64_vector128_t (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSign break; default: return NULL; - } + }*/ } #endif