wasm-micro-runtime/core
Wenyong Huang 177aa4fc79
Fix aot rotl/rotr 0 issue (#1285)
Fix the issue reported in #1282.
When i32/i64 rotate (rotl/rotr) with 0, the LLVM IRs translated are:
left<<0 | left>>64 and left >>0 | left<<64
The value of left >> 64 and left <<64 in LLVM are treated as poison,
which causes invalid result when executing the aot function.

Directly return left when right is 0 to fix the issue.
2022-07-12 13:43:56 +08:00
..
app-framework Fix return value not checked issue reported by Coverity (#1156) 2022-05-07 19:22:00 +08:00
app-mgr Fix some issues reported by Coverity (#1150) 2022-05-07 16:51:43 +08:00
deps Fix littlevgl link error issues (#1006) 2022-02-15 08:41:36 +08:00
iwasm Fix aot rotl/rotr 0 issue (#1285) 2022-07-12 13:43:56 +08:00
shared Don't suppress prev signal handler in hw bound check (#1268) 2022-07-06 16:53:05 +08:00
config.h Support emit specified custom sections into AoT file (#1207) 2022-06-10 21:51:13 +08:00