wasm-micro-runtime/core/iwasm
Wenyong Huang ea78b89965
Fix wamrc build issues with LLVM 13 and LLVM 16 (#2313)
Fix some build errors when building wamrc with LLVM-13, reported in #2311
Fix some build warnings when building wamrc with LLVM-16:
```
  core/iwasm/compilation/aot_llvm_extra2.cpp:26:26: warning:
  ‘llvm::None’ is deprecated: Use std::nullopt instead. [-Wdeprecated-declarations]
     26 |             return llvm::None;
```
Fix a maybe-uninitialized compile warning:
```
  core/iwasm/compilation/aot_llvm.c:413:9: warning:
  ‘update_top_block’ may be used uninitialized in this function [-Wmaybe-uninitialized]
    413 |         LLVMPositionBuilderAtEnd(b, update_top_block);
```
2023-06-27 08:59:49 +08:00
..
aot Enable windows x86-32 AOT relocations (#2285) 2023-06-16 11:48:12 +08:00
common Implement AOT static PGO (#2243) 2023-06-05 09:17:39 +08:00
compilation Fix wamrc build issues with LLVM 13 and LLVM 16 (#2313) 2023-06-27 08:59:49 +08:00
doc Add architecture diagram for wasm globals and classic-interp stack frame (#2058) 2023-03-25 09:39:20 +08:00
fast-jit Implement Fast JIT multi-threading feature (#2134) 2023-04-20 10:09:34 +08:00
include Implement AOT static PGO (#2243) 2023-06-05 09:17:39 +08:00
interpreter Fix fast-interp issue of LAST_OP_OUTPUT_I32/64 check (#2295) 2023-06-16 10:00:24 +08:00
libraries wasi-nn: Improve tests paths for local dev (#2309) 2023-06-27 08:07:30 +08:00
README.md Add architecture diagram for wasm globals and classic-interp stack frame (#2058) 2023-03-25 09:39:20 +08:00