Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/wasmi/src/engine/translator/func/instr_encoder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,7 @@ impl InstrEncoder {
///
/// Returns
///
/// - `Ok(true)` if the intruction fusion was successful.
/// - `Ok(true)` if the instruction fusion was successful.
/// - `Ok(false)` if instruction fusion could not be applied.
/// - `Err(_)` if an error occurred.
pub fn fuse_eqz<T: WasmInteger>(
Expand Down Expand Up @@ -877,7 +877,7 @@ impl InstrEncoder {
///
/// Returns
///
/// - `Ok(true)` if the intruction fusion was successful.
/// - `Ok(true)` if the instruction fusion was successful.
/// - `Ok(false)` if instruction fusion could not be applied.
/// - `Err(_)` if an error occurred.
pub fn fuse_nez<T: WasmInteger>(
Expand Down
2 changes: 1 addition & 1 deletion docs/developement.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Benchmarks in Wasmi are structured in the following way:
- `execute`: test cases that primarily benchmark Wasmi's execution performance
- `call`: call based testcases
- `tiny_keccak`, `regex_redux`, `reverse_complement`: compiled from optimized Rust sources
- `fibonacci`: variety of fibonacci tests (recusion, tail-recursion and iteration)
- `fibonacci`: variety of fibonacci tests (recursion, tail-recursion and iteration)
- `memory`: test cases benchmarking memory accesses (load, store, bulk-ops)
- many more ..
- `overhead`: test cases that benchmark Wasmi call performance overhead
Expand Down
Loading