Skip to content

Commit

Permalink
Disabled SIMD operator intrinsics. (#83889)
Browse files Browse the repository at this point in the history
Co-authored-by: Jan Dupej <jandupej@microsoft.com>
  • Loading branch information
github-actions[bot] and jandupej committed Mar 24, 2023
1 parent 00a1a9a commit 47bad71
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/mono/mono/mini/simd-intrinsics.c
Expand Up @@ -1895,7 +1895,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:
Expand All @@ -1911,7 +1912,7 @@ emit_vector64_vector128_t (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSign
break;
default:
return NULL;
}
}*/
}
#endif

Expand Down

0 comments on commit 47bad71

Please sign in to comment.