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 authored and github-actions committed Aug 22, 2022
commit bd9cba1635668efbe96b7759e3e85a4b2641b4e9
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