Issue #3049 - Enable loongarch64 wasm runtime and Ion patching

This commit is contained in:
Basilisk-Dev 2026-04-24 16:22:59 -04:00 committed by wuggy
commit f796b3f7f1
9 changed files with 63 additions and 27 deletions

View file

@ -1421,10 +1421,8 @@ ReloadPrefsCallback(const char* pref, void* data)
bool useNativeRegExp = Preferences::GetBool(JS_OPTIONS_DOT_STR "native_regexp") && !safeMode;
#if defined(JS_CODEGEN_LOONGARCH64)
// asm.js, wasm, and native regexp JIT are still disabled on loongarch64.
// asm.js and native regexp JIT are still disabled on loongarch64.
useAsmJS = false;
useWasm = false;
useWasmBaseline = false;
useNativeRegExp = false;
#endif