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
Next Next commit
Interpret all (non-R2R) on Apple mobile
  • Loading branch information
elinor-fung committed Nov 20, 2025
commit 14264d2a907ff0eca18db6ada9e267e8af9c4b8c
4 changes: 2 additions & 2 deletions src/coreclr/interpreter/eeinterp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ CorJitResult CILInterp::compileMethod(ICorJitInfo* compHnd,
break;
}

#ifdef TARGET_WASM
// interpret everything on wasm
#if defined(TARGET_WASM) || defined(TARGET_IOS) || defined(TARGET_TVOS) || defined(TARGET_MACCATALYST)
// interpret everything on wasm and Apple mobile platforms
doInterpret = true;
#else
// NOTE: We do this check even if doInterpret==true in order to populate g_interpModule
Expand Down