Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Make sure AOT doesn't fall back to interpreter
  • Loading branch information
fanyang-mono committed Aug 22, 2022
commit 708d72d7bc47b30fae0b7582656f50f79986068e
3 changes: 1 addition & 2 deletions src/mono/mono/mini/simd-intrinsics.c
Original file line number Diff line number Diff line change
Expand Up @@ -720,10 +720,9 @@ emit_hardware_intrinsics (
id = info->id;

#ifdef TARGET_ARM64
if (!(cfg->compile_aot && cfg->full_aot)) {
if (!(cfg->compile_aot && cfg->full_aot && !cfg->interp) && !intrin_group->jit_supported) {
goto support_probe_complete;
}

#endif

// Hardware intrinsics are LLVM-only.
Expand Down