aot: Disable musttail for mips (#2457)

Fixes https://github.com/bytecodealliance/wasm-micro-runtime/issues/2412
This commit is contained in:
YAMAMOTO Takashi 2023-08-15 12:15:45 +09:00 committed by GitHub
parent a9bd6af0ac
commit 0f18051e66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -146,6 +146,13 @@ aot_target_precheck_can_use_musttail(const AOTCompContext *comp_ctx)
*/
return false;
}
if (!strcmp(comp_ctx->target_arch, "mips")) {
/*
* cf.
* https://github.com/bytecodealliance/wasm-micro-runtime/issues/2412
*/
return false;
}
/*
* x86-64/i386: true
*