mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-05-08 20:56:13 +00:00
aot: Disable musttail for mips (#2457)
Fixes https://github.com/bytecodealliance/wasm-micro-runtime/issues/2412
This commit is contained in:
parent
a9bd6af0ac
commit
0f18051e66
|
@ -146,6 +146,13 @@ aot_target_precheck_can_use_musttail(const AOTCompContext *comp_ctx)
|
||||||
*/
|
*/
|
||||||
return false;
|
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
|
* x86-64/i386: true
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue
Block a user